byteorder.h 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568
  1. /** @file
  2. * @brief Byte order helpers.
  3. */
  4. /*
  5. * Copyright (c) 2015-2016, Intel Corporation.
  6. *
  7. * SPDX-License-Identifier: Apache-2.0
  8. */
  9. #ifndef ZEPHYR_INCLUDE_SYS_BYTEORDER_H_
  10. #define ZEPHYR_INCLUDE_SYS_BYTEORDER_H_
  11. #include <zephyr/types.h>
  12. #include <stddef.h>
  13. #include <sys/__assert.h>
  14. #include <toolchain.h>
  15. /* Internal helpers only used by the sys_* APIs further below */
  16. #define __bswap_16(x) ((uint16_t) ((((x) >> 8) & 0xff) | (((x) & 0xff) << 8)))
  17. #define __bswap_24(x) ((uint32_t) ((((x) >> 16) & 0xff) | \
  18. (((x)) & 0xff00) | \
  19. (((x) & 0xff) << 16)))
  20. #define __bswap_32(x) ((uint32_t) ((((x) >> 24) & 0xff) | \
  21. (((x) >> 8) & 0xff00) | \
  22. (((x) & 0xff00) << 8) | \
  23. (((x) & 0xff) << 24)))
  24. #define __bswap_48(x) ((uint64_t) ((((x) >> 40) & 0xff) | \
  25. (((x) >> 24) & 0xff00) | \
  26. (((x) >> 8) & 0xff0000) | \
  27. (((x) & 0xff0000) << 8) | \
  28. (((x) & 0xff00) << 24) | \
  29. (((x) & 0xff) << 40)))
  30. #define __bswap_64(x) ((uint64_t) ((((x) >> 56) & 0xff) | \
  31. (((x) >> 40) & 0xff00) | \
  32. (((x) >> 24) & 0xff0000) | \
  33. (((x) >> 8) & 0xff000000) | \
  34. (((x) & 0xff000000) << 8) | \
  35. (((x) & 0xff0000) << 24) | \
  36. (((x) & 0xff00) << 40) | \
  37. (((x) & 0xff) << 56)))
  38. /** @def sys_le16_to_cpu
  39. * @brief Convert 16-bit integer from little-endian to host endianness.
  40. *
  41. * @param val 16-bit integer in little-endian format.
  42. *
  43. * @return 16-bit integer in host endianness.
  44. */
  45. /** @def sys_cpu_to_le16
  46. * @brief Convert 16-bit integer from host endianness to little-endian.
  47. *
  48. * @param val 16-bit integer in host endianness.
  49. *
  50. * @return 16-bit integer in little-endian format.
  51. */
  52. /** @def sys_le24_to_cpu
  53. * @brief Convert 24-bit integer from little-endian to host endianness.
  54. *
  55. * @param val 24-bit integer in little-endian format.
  56. *
  57. * @return 24-bit integer in host endianness.
  58. */
  59. /** @def sys_cpu_to_le24
  60. * @brief Convert 24-bit integer from host endianness to little-endian.
  61. *
  62. * @param val 24-bit integer in host endianness.
  63. *
  64. * @return 24-bit integer in little-endian format.
  65. */
  66. /** @def sys_le32_to_cpu
  67. * @brief Convert 32-bit integer from little-endian to host endianness.
  68. *
  69. * @param val 32-bit integer in little-endian format.
  70. *
  71. * @return 32-bit integer in host endianness.
  72. */
  73. /** @def sys_cpu_to_le32
  74. * @brief Convert 32-bit integer from host endianness to little-endian.
  75. *
  76. * @param val 32-bit integer in host endianness.
  77. *
  78. * @return 32-bit integer in little-endian format.
  79. */
  80. /** @def sys_le48_to_cpu
  81. * @brief Convert 48-bit integer from little-endian to host endianness.
  82. *
  83. * @param val 48-bit integer in little-endian format.
  84. *
  85. * @return 48-bit integer in host endianness.
  86. */
  87. /** @def sys_cpu_to_le48
  88. * @brief Convert 48-bit integer from host endianness to little-endian.
  89. *
  90. * @param val 48-bit integer in host endianness.
  91. *
  92. * @return 48-bit integer in little-endian format.
  93. */
  94. /** @def sys_be16_to_cpu
  95. * @brief Convert 16-bit integer from big-endian to host endianness.
  96. *
  97. * @param val 16-bit integer in big-endian format.
  98. *
  99. * @return 16-bit integer in host endianness.
  100. */
  101. /** @def sys_cpu_to_be16
  102. * @brief Convert 16-bit integer from host endianness to big-endian.
  103. *
  104. * @param val 16-bit integer in host endianness.
  105. *
  106. * @return 16-bit integer in big-endian format.
  107. */
  108. /** @def sys_be24_to_cpu
  109. * @brief Convert 24-bit integer from big-endian to host endianness.
  110. *
  111. * @param val 24-bit integer in big-endian format.
  112. *
  113. * @return 24-bit integer in host endianness.
  114. */
  115. /** @def sys_cpu_to_be24
  116. * @brief Convert 24-bit integer from host endianness to big-endian.
  117. *
  118. * @param val 24-bit integer in host endianness.
  119. *
  120. * @return 24-bit integer in big-endian format.
  121. */
  122. /** @def sys_be32_to_cpu
  123. * @brief Convert 32-bit integer from big-endian to host endianness.
  124. *
  125. * @param val 32-bit integer in big-endian format.
  126. *
  127. * @return 32-bit integer in host endianness.
  128. */
  129. /** @def sys_cpu_to_be32
  130. * @brief Convert 32-bit integer from host endianness to big-endian.
  131. *
  132. * @param val 32-bit integer in host endianness.
  133. *
  134. * @return 32-bit integer in big-endian format.
  135. */
  136. /** @def sys_be48_to_cpu
  137. * @brief Convert 48-bit integer from big-endian to host endianness.
  138. *
  139. * @param val 48-bit integer in big-endian format.
  140. *
  141. * @return 48-bit integer in host endianness.
  142. */
  143. /** @def sys_cpu_to_be48
  144. * @brief Convert 48-bit integer from host endianness to big-endian.
  145. *
  146. * @param val 48-bit integer in host endianness.
  147. *
  148. * @return 48-bit integer in big-endian format.
  149. */
  150. #if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
  151. #define sys_le16_to_cpu(val) (val)
  152. #define sys_cpu_to_le16(val) (val)
  153. #define sys_le24_to_cpu(val) (val)
  154. #define sys_cpu_to_le24(val) (val)
  155. #define sys_le32_to_cpu(val) (val)
  156. #define sys_cpu_to_le32(val) (val)
  157. #define sys_le48_to_cpu(val) (val)
  158. #define sys_cpu_to_le48(val) (val)
  159. #define sys_le64_to_cpu(val) (val)
  160. #define sys_cpu_to_le64(val) (val)
  161. #define sys_be16_to_cpu(val) __bswap_16(val)
  162. #define sys_cpu_to_be16(val) __bswap_16(val)
  163. #define sys_be24_to_cpu(val) __bswap_24(val)
  164. #define sys_cpu_to_be24(val) __bswap_24(val)
  165. #define sys_be32_to_cpu(val) __bswap_32(val)
  166. #define sys_cpu_to_be32(val) __bswap_32(val)
  167. #define sys_be48_to_cpu(val) __bswap_48(val)
  168. #define sys_cpu_to_be48(val) __bswap_48(val)
  169. #define sys_be64_to_cpu(val) __bswap_64(val)
  170. #define sys_cpu_to_be64(val) __bswap_64(val)
  171. #elif __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
  172. #define sys_le16_to_cpu(val) __bswap_16(val)
  173. #define sys_cpu_to_le16(val) __bswap_16(val)
  174. #define sys_le24_to_cpu(val) __bswap_24(val)
  175. #define sys_cpu_to_le24(val) __bswap_24(val)
  176. #define sys_le32_to_cpu(val) __bswap_32(val)
  177. #define sys_cpu_to_le32(val) __bswap_32(val)
  178. #define sys_le48_to_cpu(val) __bswap_48(val)
  179. #define sys_cpu_to_le48(val) __bswap_48(val)
  180. #define sys_le64_to_cpu(val) __bswap_64(val)
  181. #define sys_cpu_to_le64(val) __bswap_64(val)
  182. #define sys_be16_to_cpu(val) (val)
  183. #define sys_cpu_to_be16(val) (val)
  184. #define sys_be24_to_cpu(val) (val)
  185. #define sys_cpu_to_be24(val) (val)
  186. #define sys_be32_to_cpu(val) (val)
  187. #define sys_cpu_to_be32(val) (val)
  188. #define sys_be48_to_cpu(val) (val)
  189. #define sys_cpu_to_be48(val) (val)
  190. #define sys_be64_to_cpu(val) (val)
  191. #define sys_cpu_to_be64(val) (val)
  192. #else
  193. #error "Unknown byte order"
  194. #endif
  195. /**
  196. * @brief Put a 16-bit integer as big-endian to arbitrary location.
  197. *
  198. * Put a 16-bit integer, originally in host endianness, to a
  199. * potentially unaligned memory location in big-endian format.
  200. *
  201. * @param val 16-bit integer in host endianness.
  202. * @param dst Destination memory address to store the result.
  203. */
  204. static inline void sys_put_be16(uint16_t val, uint8_t dst[2])
  205. {
  206. dst[0] = val >> 8;
  207. dst[1] = val;
  208. }
  209. /**
  210. * @brief Put a 24-bit integer as big-endian to arbitrary location.
  211. *
  212. * Put a 24-bit integer, originally in host endianness, to a
  213. * potentially unaligned memory location in big-endian format.
  214. *
  215. * @param val 24-bit integer in host endianness.
  216. * @param dst Destination memory address to store the result.
  217. */
  218. static inline void sys_put_be24(uint32_t val, uint8_t dst[3])
  219. {
  220. dst[0] = val >> 16;
  221. sys_put_be16(val, &dst[1]);
  222. }
  223. /**
  224. * @brief Put a 32-bit integer as big-endian to arbitrary location.
  225. *
  226. * Put a 32-bit integer, originally in host endianness, to a
  227. * potentially unaligned memory location in big-endian format.
  228. *
  229. * @param val 32-bit integer in host endianness.
  230. * @param dst Destination memory address to store the result.
  231. */
  232. static inline void sys_put_be32(uint32_t val, uint8_t dst[4])
  233. {
  234. sys_put_be16(val >> 16, dst);
  235. sys_put_be16(val, &dst[2]);
  236. }
  237. /**
  238. * @brief Put a 48-bit integer as big-endian to arbitrary location.
  239. *
  240. * Put a 48-bit integer, originally in host endianness, to a
  241. * potentially unaligned memory location in big-endian format.
  242. *
  243. * @param val 48-bit integer in host endianness.
  244. * @param dst Destination memory address to store the result.
  245. */
  246. static inline void sys_put_be48(uint64_t val, uint8_t dst[6])
  247. {
  248. sys_put_be16(val >> 32, dst);
  249. sys_put_be32(val, &dst[2]);
  250. }
  251. /**
  252. * @brief Put a 64-bit integer as big-endian to arbitrary location.
  253. *
  254. * Put a 64-bit integer, originally in host endianness, to a
  255. * potentially unaligned memory location in big-endian format.
  256. *
  257. * @param val 64-bit integer in host endianness.
  258. * @param dst Destination memory address to store the result.
  259. */
  260. static inline void sys_put_be64(uint64_t val, uint8_t dst[8])
  261. {
  262. sys_put_be32(val >> 32, dst);
  263. sys_put_be32(val, &dst[4]);
  264. }
  265. /**
  266. * @brief Put a 16-bit integer as little-endian to arbitrary location.
  267. *
  268. * Put a 16-bit integer, originally in host endianness, to a
  269. * potentially unaligned memory location in little-endian format.
  270. *
  271. * @param val 16-bit integer in host endianness.
  272. * @param dst Destination memory address to store the result.
  273. */
  274. static inline void sys_put_le16(uint16_t val, uint8_t dst[2])
  275. {
  276. dst[0] = val;
  277. dst[1] = val >> 8;
  278. }
  279. /**
  280. * @brief Put a 24-bit integer as little-endian to arbitrary location.
  281. *
  282. * Put a 24-bit integer, originally in host endianness, to a
  283. * potentially unaligned memory location in littel-endian format.
  284. *
  285. * @param val 24-bit integer in host endianness.
  286. * @param dst Destination memory address to store the result.
  287. */
  288. static inline void sys_put_le24(uint32_t val, uint8_t dst[3])
  289. {
  290. sys_put_le16(val, dst);
  291. dst[2] = val >> 16;
  292. }
  293. /**
  294. * @brief Put a 32-bit integer as little-endian to arbitrary location.
  295. *
  296. * Put a 32-bit integer, originally in host endianness, to a
  297. * potentially unaligned memory location in little-endian format.
  298. *
  299. * @param val 32-bit integer in host endianness.
  300. * @param dst Destination memory address to store the result.
  301. */
  302. static inline void sys_put_le32(uint32_t val, uint8_t dst[4])
  303. {
  304. sys_put_le16(val, dst);
  305. sys_put_le16(val >> 16, &dst[2]);
  306. }
  307. /**
  308. * @brief Put a 48-bit integer as little-endian to arbitrary location.
  309. *
  310. * Put a 48-bit integer, originally in host endianness, to a
  311. * potentially unaligned memory location in little-endian format.
  312. *
  313. * @param val 48-bit integer in host endianness.
  314. * @param dst Destination memory address to store the result.
  315. */
  316. static inline void sys_put_le48(uint64_t val, uint8_t dst[6])
  317. {
  318. sys_put_le32(val, dst);
  319. sys_put_le16(val >> 32, &dst[4]);
  320. }
  321. /**
  322. * @brief Put a 64-bit integer as little-endian to arbitrary location.
  323. *
  324. * Put a 64-bit integer, originally in host endianness, to a
  325. * potentially unaligned memory location in little-endian format.
  326. *
  327. * @param val 64-bit integer in host endianness.
  328. * @param dst Destination memory address to store the result.
  329. */
  330. static inline void sys_put_le64(uint64_t val, uint8_t dst[8])
  331. {
  332. sys_put_le32(val, dst);
  333. sys_put_le32(val >> 32, &dst[4]);
  334. }
  335. /**
  336. * @brief Get a 16-bit integer stored in big-endian format.
  337. *
  338. * Get a 16-bit integer, stored in big-endian format in a potentially
  339. * unaligned memory location, and convert it to the host endianness.
  340. *
  341. * @param src Location of the big-endian 16-bit integer to get.
  342. *
  343. * @return 16-bit integer in host endianness.
  344. */
  345. static inline uint16_t sys_get_be16(const uint8_t src[2])
  346. {
  347. return ((uint16_t)src[0] << 8) | src[1];
  348. }
  349. /**
  350. * @brief Get a 24-bit integer stored in big-endian format.
  351. *
  352. * Get a 24-bit integer, stored in big-endian format in a potentially
  353. * unaligned memory location, and convert it to the host endianness.
  354. *
  355. * @param src Location of the big-endian 24-bit integer to get.
  356. *
  357. * @return 24-bit integer in host endianness.
  358. */
  359. static inline uint32_t sys_get_be24(const uint8_t src[3])
  360. {
  361. return ((uint32_t)src[0] << 16) | sys_get_be16(&src[1]);
  362. }
  363. /**
  364. * @brief Get a 32-bit integer stored in big-endian format.
  365. *
  366. * Get a 32-bit integer, stored in big-endian format in a potentially
  367. * unaligned memory location, and convert it to the host endianness.
  368. *
  369. * @param src Location of the big-endian 32-bit integer to get.
  370. *
  371. * @return 32-bit integer in host endianness.
  372. */
  373. static inline uint32_t sys_get_be32(const uint8_t src[4])
  374. {
  375. return ((uint32_t)sys_get_be16(&src[0]) << 16) | sys_get_be16(&src[2]);
  376. }
  377. /**
  378. * @brief Get a 48-bit integer stored in big-endian format.
  379. *
  380. * Get a 48-bit integer, stored in big-endian format in a potentially
  381. * unaligned memory location, and convert it to the host endianness.
  382. *
  383. * @param src Location of the big-endian 48-bit integer to get.
  384. *
  385. * @return 48-bit integer in host endianness.
  386. */
  387. static inline uint64_t sys_get_be48(const uint8_t src[6])
  388. {
  389. return ((uint64_t)sys_get_be32(&src[0]) << 16) | sys_get_be16(&src[4]);
  390. }
  391. /**
  392. * @brief Get a 64-bit integer stored in big-endian format.
  393. *
  394. * Get a 64-bit integer, stored in big-endian format in a potentially
  395. * unaligned memory location, and convert it to the host endianness.
  396. *
  397. * @param src Location of the big-endian 64-bit integer to get.
  398. *
  399. * @return 64-bit integer in host endianness.
  400. */
  401. static inline uint64_t sys_get_be64(const uint8_t src[8])
  402. {
  403. return ((uint64_t)sys_get_be32(&src[0]) << 32) | sys_get_be32(&src[4]);
  404. }
  405. /**
  406. * @brief Get a 16-bit integer stored in little-endian format.
  407. *
  408. * Get a 16-bit integer, stored in little-endian format in a potentially
  409. * unaligned memory location, and convert it to the host endianness.
  410. *
  411. * @param src Location of the little-endian 16-bit integer to get.
  412. *
  413. * @return 16-bit integer in host endianness.
  414. */
  415. static inline uint16_t sys_get_le16(const uint8_t src[2])
  416. {
  417. return ((uint16_t)src[1] << 8) | src[0];
  418. }
  419. /**
  420. * @brief Get a 24-bit integer stored in big-endian format.
  421. *
  422. * Get a 24-bit integer, stored in big-endian format in a potentially
  423. * unaligned memory location, and convert it to the host endianness.
  424. *
  425. * @param src Location of the big-endian 24-bit integer to get.
  426. *
  427. * @return 24-bit integer in host endianness.
  428. */
  429. static inline uint32_t sys_get_le24(const uint8_t src[3])
  430. {
  431. return ((uint32_t)src[2] << 16) | sys_get_le16(&src[0]);
  432. }
  433. /**
  434. * @brief Get a 32-bit integer stored in little-endian format.
  435. *
  436. * Get a 32-bit integer, stored in little-endian format in a potentially
  437. * unaligned memory location, and convert it to the host endianness.
  438. *
  439. * @param src Location of the little-endian 32-bit integer to get.
  440. *
  441. * @return 32-bit integer in host endianness.
  442. */
  443. static inline uint32_t sys_get_le32(const uint8_t src[4])
  444. {
  445. return ((uint32_t)sys_get_le16(&src[2]) << 16) | sys_get_le16(&src[0]);
  446. }
  447. /**
  448. * @brief Get a 48-bit integer stored in little-endian format.
  449. *
  450. * Get a 48-bit integer, stored in little-endian format in a potentially
  451. * unaligned memory location, and convert it to the host endianness.
  452. *
  453. * @param src Location of the little-endian 48-bit integer to get.
  454. *
  455. * @return 48-bit integer in host endianness.
  456. */
  457. static inline uint64_t sys_get_le48(const uint8_t src[6])
  458. {
  459. return ((uint64_t)sys_get_le32(&src[2]) << 16) | sys_get_le16(&src[0]);
  460. }
  461. /**
  462. * @brief Get a 64-bit integer stored in little-endian format.
  463. *
  464. * Get a 64-bit integer, stored in little-endian format in a potentially
  465. * unaligned memory location, and convert it to the host endianness.
  466. *
  467. * @param src Location of the little-endian 64-bit integer to get.
  468. *
  469. * @return 64-bit integer in host endianness.
  470. */
  471. static inline uint64_t sys_get_le64(const uint8_t src[8])
  472. {
  473. return ((uint64_t)sys_get_le32(&src[4]) << 32) | sys_get_le32(&src[0]);
  474. }
  475. /**
  476. * @brief Swap one buffer content into another
  477. *
  478. * Copy the content of src buffer into dst buffer in reversed order,
  479. * i.e.: src[n] will be put in dst[end-n]
  480. * Where n is an index and 'end' the last index in both arrays.
  481. * The 2 memory pointers must be pointing to different areas, and have
  482. * a minimum size of given length.
  483. *
  484. * @param dst A valid pointer on a memory area where to copy the data in
  485. * @param src A valid pointer on a memory area where to copy the data from
  486. * @param length Size of both dst and src memory areas
  487. */
  488. static inline void sys_memcpy_swap(void *dst, const void *src, size_t length)
  489. {
  490. uint8_t *pdst = (uint8_t *)dst;
  491. const uint8_t *psrc = (const uint8_t *)src;
  492. __ASSERT(((psrc < pdst && (psrc + length) <= pdst) ||
  493. (psrc > pdst && (pdst + length) <= psrc)),
  494. "Source and destination buffers must not overlap");
  495. psrc += length - 1;
  496. for (; length > 0; length--) {
  497. *pdst++ = *psrc--;
  498. }
  499. }
  500. /**
  501. * @brief Swap buffer content
  502. *
  503. * In-place memory swap, where final content will be reversed.
  504. * I.e.: buf[n] will be put in buf[end-n]
  505. * Where n is an index and 'end' the last index of buf.
  506. *
  507. * @param buf A valid pointer on a memory area to swap
  508. * @param length Size of buf memory area
  509. */
  510. static inline void sys_mem_swap(void *buf, size_t length)
  511. {
  512. size_t i;
  513. for (i = 0; i < (length/2); i++) {
  514. uint8_t tmp = ((uint8_t *)buf)[i];
  515. ((uint8_t *)buf)[i] = ((uint8_t *)buf)[length - 1 - i];
  516. ((uint8_t *)buf)[length - 1 - i] = tmp;
  517. }
  518. }
  519. #endif /* ZEPHYR_INCLUDE_SYS_BYTEORDER_H_ */