generic.h 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. #ifndef _LINUX_BYTEORDER_GENERIC_H
  2. #define _LINUX_BYTEORDER_GENERIC_H
  3. /*
  4. * linux/byteorder/generic.h
  5. * Generic Byte-reordering support
  6. *
  7. * The "... p" macros, like le64_to_cpup, can be used with pointers
  8. * to unaligned data, but there will be a performance penalty on
  9. * some architectures. Use get_unaligned for unaligned data.
  10. *
  11. * Francois-Rene Rideau <fare@tunes.org> 19970707
  12. * gathered all the good ideas from all asm-foo/byteorder.h into one file,
  13. * cleaned them up.
  14. * I hope it is compliant with non-GCC compilers.
  15. * I decided to put __BYTEORDER_HAS_U64__ in byteorder.h,
  16. * because I wasn't sure it would be ok to put it in types.h
  17. * Upgraded it to 2.1.43
  18. * Francois-Rene Rideau <fare@tunes.org> 19971012
  19. * Upgraded it to 2.1.57
  20. * to please Linus T., replaced huge #ifdef's between little/big endian
  21. * by nestedly #include'd files.
  22. * Francois-Rene Rideau <fare@tunes.org> 19971205
  23. * Made it to 2.1.71; now a facelift:
  24. * Put files under include/linux/byteorder/
  25. * Split swab from generic support.
  26. *
  27. * TODO:
  28. * = Regular kernel maintainers could also replace all these manual
  29. * byteswap macros that remain, disseminated among drivers,
  30. * after some grep or the sources...
  31. * = Linus might want to rename all these macros and files to fit his taste,
  32. * to fit his personal naming scheme.
  33. * = it seems that a few drivers would also appreciate
  34. * nybble swapping support...
  35. * = every architecture could add their byteswap macro in asm/byteorder.h
  36. * see how some architectures already do (i386, alpha, ppc, etc)
  37. * = cpu_to_beXX and beXX_to_cpu might some day need to be well
  38. * distinguished throughout the kernel. This is not the case currently,
  39. * since little endian, big endian, and pdp endian machines needn't it.
  40. * But this might be the case for, say, a port of Linux to 20/21 bit
  41. * architectures (and F21 Linux addict around?).
  42. */
  43. /*
  44. * The following macros are to be defined by <asm/byteorder.h>:
  45. *
  46. * Conversion of long and short int between network and host format
  47. * ntohl(__u32 x)
  48. * ntohs(__u16 x)
  49. * htonl(__u32 x)
  50. * htons(__u16 x)
  51. * It seems that some programs (which? where? or perhaps a standard? POSIX?)
  52. * might like the above to be functions, not macros (why?).
  53. * if that's true, then detect them, and take measures.
  54. * Anyway, the measure is: define only ___ntohl as a macro instead,
  55. * and in a separate file, have
  56. * unsigned long inline ntohl(x){return ___ntohl(x);}
  57. *
  58. * The same for constant arguments
  59. * __constant_ntohl(__u32 x)
  60. * __constant_ntohs(__u16 x)
  61. * __constant_htonl(__u32 x)
  62. * __constant_htons(__u16 x)
  63. *
  64. * Conversion of XX-bit integers (16- 32- or 64-)
  65. * between native CPU format and little/big endian format
  66. * 64-bit stuff only defined for proper architectures
  67. * cpu_to_[bl]eXX(__uXX x)
  68. * [bl]eXX_to_cpu(__uXX x)
  69. *
  70. * The same, but takes a pointer to the value to convert
  71. * cpu_to_[bl]eXXp(__uXX x)
  72. * [bl]eXX_to_cpup(__uXX x)
  73. *
  74. * The same, but change in situ
  75. * cpu_to_[bl]eXXs(__uXX x)
  76. * [bl]eXX_to_cpus(__uXX x)
  77. *
  78. * See asm-foo/byteorder.h for examples of how to provide
  79. * architecture-optimized versions
  80. *
  81. */
  82. #define cpu_to_le64 __cpu_to_le64
  83. #define le64_to_cpu __le64_to_cpu
  84. #define cpu_to_le32 __cpu_to_le32
  85. #define le32_to_cpu __le32_to_cpu
  86. #define cpu_to_le16 __cpu_to_le16
  87. #define le16_to_cpu __le16_to_cpu
  88. #define cpu_to_be64 __cpu_to_be64
  89. #define be64_to_cpu __be64_to_cpu
  90. #define cpu_to_be32 __cpu_to_be32
  91. #define be32_to_cpu __be32_to_cpu
  92. #define cpu_to_be16 __cpu_to_be16
  93. #define be16_to_cpu __be16_to_cpu
  94. #define cpu_to_le64p __cpu_to_le64p
  95. #define le64_to_cpup __le64_to_cpup
  96. #define cpu_to_le32p __cpu_to_le32p
  97. #define le32_to_cpup __le32_to_cpup
  98. #define cpu_to_le16p __cpu_to_le16p
  99. #define le16_to_cpup __le16_to_cpup
  100. #define cpu_to_be64p __cpu_to_be64p
  101. #define be64_to_cpup __be64_to_cpup
  102. #define cpu_to_be32p __cpu_to_be32p
  103. #define be32_to_cpup __be32_to_cpup
  104. #define cpu_to_be16p __cpu_to_be16p
  105. #define be16_to_cpup __be16_to_cpup
  106. #define cpu_to_le64s __cpu_to_le64s
  107. #define le64_to_cpus __le64_to_cpus
  108. #define cpu_to_le32s __cpu_to_le32s
  109. #define le32_to_cpus __le32_to_cpus
  110. #define cpu_to_le16s __cpu_to_le16s
  111. #define le16_to_cpus __le16_to_cpus
  112. #define cpu_to_be64s __cpu_to_be64s
  113. #define be64_to_cpus __be64_to_cpus
  114. #define cpu_to_be32s __cpu_to_be32s
  115. #define be32_to_cpus __be32_to_cpus
  116. #define cpu_to_be16s __cpu_to_be16s
  117. #define be16_to_cpus __be16_to_cpus
  118. /*
  119. * They have to be macros in order to do the constant folding
  120. * correctly - if the argument passed into a inline function
  121. * it is no longer constant according to gcc..
  122. */
  123. #undef ntohl
  124. #undef ntohs
  125. #undef htonl
  126. #undef htons
  127. #define ___htonl(x) __cpu_to_be32(x)
  128. #define ___htons(x) __cpu_to_be16(x)
  129. #define ___ntohl(x) __be32_to_cpu(x)
  130. #define ___ntohs(x) __be16_to_cpu(x)
  131. #define htonl(x) ___htonl(x)
  132. #define ntohl(x) ___ntohl(x)
  133. #define htons(x) ___htons(x)
  134. #define ntohs(x) ___ntohs(x)
  135. static inline void le16_add_cpu(__le16 *var, u16 val)
  136. {
  137. *var = cpu_to_le16(le16_to_cpu(*var) + val);
  138. }
  139. static inline void le32_add_cpu(__le32 *var, u32 val)
  140. {
  141. *var = cpu_to_le32(le32_to_cpu(*var) + val);
  142. }
  143. static inline void le64_add_cpu(__le64 *var, u64 val)
  144. {
  145. *var = cpu_to_le64(le64_to_cpu(*var) + val);
  146. }
  147. static inline void be16_add_cpu(__be16 *var, u16 val)
  148. {
  149. *var = cpu_to_be16(be16_to_cpu(*var) + val);
  150. }
  151. static inline void be32_add_cpu(__be32 *var, u32 val)
  152. {
  153. *var = cpu_to_be32(be32_to_cpu(*var) + val);
  154. }
  155. static inline void be64_add_cpu(__be64 *var, u64 val)
  156. {
  157. *var = cpu_to_be64(be64_to_cpu(*var) + val);
  158. }
  159. #endif /* _LINUX_BYTEORDER_GENERIC_H */