acmacros.h 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539
  1. /******************************************************************************
  2. *
  3. * Name: acmacros.h - C macros for the entire subsystem.
  4. *
  5. *****************************************************************************/
  6. /*
  7. * Copyright (C) 2000 - 2019, Intel Corp.
  8. * All rights reserved.
  9. *
  10. * Redistribution and use in source and binary forms, with or without
  11. * modification, are permitted provided that the following conditions
  12. * are met:
  13. * 1. Redistributions of source code must retain the above copyright
  14. * notice, this list of conditions, and the following disclaimer,
  15. * without modification.
  16. * 2. Redistributions in binary form must reproduce at minimum a disclaimer
  17. * substantially similar to the "NO WARRANTY" disclaimer below
  18. * ("Disclaimer") and any redistribution must be conditioned upon
  19. * including a substantially similar Disclaimer requirement for further
  20. * binary redistribution.
  21. * 3. Neither the names of the above-listed copyright holders nor the names
  22. * of any contributors may be used to endorse or promote products derived
  23. * from this software without specific prior written permission.
  24. *
  25. * Alternatively, this software may be distributed under the terms of the
  26. * GNU General Public License ("GPL") version 2 as published by the Free
  27. * Software Foundation.
  28. *
  29. * NO WARRANTY
  30. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  31. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  32. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
  33. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  34. * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  35. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  36. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  37. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  38. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
  39. * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  40. * POSSIBILITY OF SUCH DAMAGES.
  41. */
  42. #ifndef __ACMACROS_H__
  43. #define __ACMACROS_H__
  44. /*
  45. * Extract data using a pointer. Any more than a byte and we
  46. * get into potential alignment issues -- see the STORE macros below.
  47. * Use with care.
  48. */
  49. #define ACPI_CAST8(ptr) ACPI_CAST_PTR (UINT8, (ptr))
  50. #define ACPI_CAST16(ptr) ACPI_CAST_PTR (UINT16, (ptr))
  51. #define ACPI_CAST32(ptr) ACPI_CAST_PTR (UINT32, (ptr))
  52. #define ACPI_CAST64(ptr) ACPI_CAST_PTR (UINT64, (ptr))
  53. #define ACPI_GET8(ptr) (*ACPI_CAST8 (ptr))
  54. #define ACPI_GET16(ptr) (*ACPI_CAST16 (ptr))
  55. #define ACPI_GET32(ptr) (*ACPI_CAST32 (ptr))
  56. #define ACPI_GET64(ptr) (*ACPI_CAST64 (ptr))
  57. #define ACPI_SET8(ptr, val) (*ACPI_CAST8 (ptr) = (UINT8) (val))
  58. #define ACPI_SET16(ptr, val) (*ACPI_CAST16 (ptr) = (UINT16) (val))
  59. #define ACPI_SET32(ptr, val) (*ACPI_CAST32 (ptr) = (UINT32) (val))
  60. #define ACPI_SET64(ptr, val) (*ACPI_CAST64 (ptr) = (UINT64) (val))
  61. /*
  62. * printf() format helper. This macro is a workaround for the difficulties
  63. * with emitting 64-bit integers and 64-bit pointers with the same code
  64. * for both 32-bit and 64-bit hosts.
  65. */
  66. #define ACPI_FORMAT_UINT64(i) ACPI_HIDWORD(i), ACPI_LODWORD(i)
  67. /*
  68. * Macros for moving data around to/from buffers that are possibly unaligned.
  69. * If the hardware supports the transfer of unaligned data, just do the store.
  70. * Otherwise, we have to move one byte at a time.
  71. */
  72. #ifdef ACPI_BIG_ENDIAN
  73. /*
  74. * Macros for big-endian machines
  75. */
  76. /* These macros reverse the bytes during the move, converting little-endian to big endian */
  77. /* Big Endian <== Little Endian */
  78. /* Hi...Lo Lo...Hi */
  79. /* 16-bit source, 16/32/64 destination */
  80. #define ACPI_MOVE_16_TO_16(d, s) {(( UINT8 *)(void *)(d))[0] = ((UINT8 *)(void *)(s))[1];\
  81. (( UINT8 *)(void *)(d))[1] = ((UINT8 *)(void *)(s))[0];}
  82. #define ACPI_MOVE_16_TO_32(d, s) {(*(UINT32 *)(void *)(d))=0;\
  83. ((UINT8 *)(void *)(d))[2] = ((UINT8 *)(void *)(s))[1];\
  84. ((UINT8 *)(void *)(d))[3] = ((UINT8 *)(void *)(s))[0];}
  85. #define ACPI_MOVE_16_TO_64(d, s) {(*(UINT64 *)(void *)(d))=0;\
  86. ((UINT8 *)(void *)(d))[6] = ((UINT8 *)(void *)(s))[1];\
  87. ((UINT8 *)(void *)(d))[7] = ((UINT8 *)(void *)(s))[0];}
  88. /* 32-bit source, 16/32/64 destination */
  89. #define ACPI_MOVE_32_TO_16(d, s) ACPI_MOVE_16_TO_16(d, s) /* Truncate to 16 */
  90. #define ACPI_MOVE_32_TO_32(d, s) {(( UINT8 *)(void *)(d))[0] = ((UINT8 *)(void *)(s))[3];\
  91. (( UINT8 *)(void *)(d))[1] = ((UINT8 *)(void *)(s))[2];\
  92. (( UINT8 *)(void *)(d))[2] = ((UINT8 *)(void *)(s))[1];\
  93. (( UINT8 *)(void *)(d))[3] = ((UINT8 *)(void *)(s))[0];}
  94. #define ACPI_MOVE_32_TO_64(d, s) {(*(UINT64 *)(void *)(d))=0;\
  95. ((UINT8 *)(void *)(d))[4] = ((UINT8 *)(void *)(s))[3];\
  96. ((UINT8 *)(void *)(d))[5] = ((UINT8 *)(void *)(s))[2];\
  97. ((UINT8 *)(void *)(d))[6] = ((UINT8 *)(void *)(s))[1];\
  98. ((UINT8 *)(void *)(d))[7] = ((UINT8 *)(void *)(s))[0];}
  99. /* 64-bit source, 16/32/64 destination */
  100. #define ACPI_MOVE_64_TO_16(d, s) ACPI_MOVE_16_TO_16(d, s) /* Truncate to 16 */
  101. #define ACPI_MOVE_64_TO_32(d, s) ACPI_MOVE_32_TO_32(d, s) /* Truncate to 32 */
  102. #define ACPI_MOVE_64_TO_64(d, s) {(( UINT8 *)(void *)(d))[0] = ((UINT8 *)(void *)(s))[7];\
  103. (( UINT8 *)(void *)(d))[1] = ((UINT8 *)(void *)(s))[6];\
  104. (( UINT8 *)(void *)(d))[2] = ((UINT8 *)(void *)(s))[5];\
  105. (( UINT8 *)(void *)(d))[3] = ((UINT8 *)(void *)(s))[4];\
  106. (( UINT8 *)(void *)(d))[4] = ((UINT8 *)(void *)(s))[3];\
  107. (( UINT8 *)(void *)(d))[5] = ((UINT8 *)(void *)(s))[2];\
  108. (( UINT8 *)(void *)(d))[6] = ((UINT8 *)(void *)(s))[1];\
  109. (( UINT8 *)(void *)(d))[7] = ((UINT8 *)(void *)(s))[0];}
  110. #else
  111. /*
  112. * Macros for little-endian machines
  113. */
  114. #ifndef ACPI_MISALIGNMENT_NOT_SUPPORTED
  115. /* The hardware supports unaligned transfers, just do the little-endian move */
  116. /* 16-bit source, 16/32/64 destination */
  117. #define ACPI_MOVE_16_TO_16(d, s) *(UINT16 *)(void *)(d) = *(UINT16 *)(void *)(s)
  118. #define ACPI_MOVE_16_TO_32(d, s) *(UINT32 *)(void *)(d) = *(UINT16 *)(void *)(s)
  119. #define ACPI_MOVE_16_TO_64(d, s) *(UINT64 *)(void *)(d) = *(UINT16 *)(void *)(s)
  120. /* 32-bit source, 16/32/64 destination */
  121. #define ACPI_MOVE_32_TO_16(d, s) ACPI_MOVE_16_TO_16(d, s) /* Truncate to 16 */
  122. #define ACPI_MOVE_32_TO_32(d, s) *(UINT32 *)(void *)(d) = *(UINT32 *)(void *)(s)
  123. #define ACPI_MOVE_32_TO_64(d, s) *(UINT64 *)(void *)(d) = *(UINT32 *)(void *)(s)
  124. /* 64-bit source, 16/32/64 destination */
  125. #define ACPI_MOVE_64_TO_16(d, s) ACPI_MOVE_16_TO_16(d, s) /* Truncate to 16 */
  126. #define ACPI_MOVE_64_TO_32(d, s) ACPI_MOVE_32_TO_32(d, s) /* Truncate to 32 */
  127. #define ACPI_MOVE_64_TO_64(d, s) *(UINT64 *)(void *)(d) = *(UINT64 *)(void *)(s)
  128. #else
  129. /*
  130. * The hardware does not support unaligned transfers. We must move the
  131. * data one byte at a time. These macros work whether the source or
  132. * the destination (or both) is/are unaligned. (Little-endian move)
  133. */
  134. /* 16-bit source, 16/32/64 destination */
  135. #define ACPI_MOVE_16_TO_16(d, s) {(( UINT8 *)(void *)(d))[0] = ((UINT8 *)(void *)(s))[0];\
  136. (( UINT8 *)(void *)(d))[1] = ((UINT8 *)(void *)(s))[1];}
  137. #define ACPI_MOVE_16_TO_32(d, s) {(*(UINT32 *)(void *)(d)) = 0; ACPI_MOVE_16_TO_16(d, s);}
  138. #define ACPI_MOVE_16_TO_64(d, s) {(*(UINT64 *)(void *)(d)) = 0; ACPI_MOVE_16_TO_16(d, s);}
  139. /* 32-bit source, 16/32/64 destination */
  140. #define ACPI_MOVE_32_TO_16(d, s) ACPI_MOVE_16_TO_16(d, s) /* Truncate to 16 */
  141. #define ACPI_MOVE_32_TO_32(d, s) {(( UINT8 *)(void *)(d))[0] = ((UINT8 *)(void *)(s))[0];\
  142. (( UINT8 *)(void *)(d))[1] = ((UINT8 *)(void *)(s))[1];\
  143. (( UINT8 *)(void *)(d))[2] = ((UINT8 *)(void *)(s))[2];\
  144. (( UINT8 *)(void *)(d))[3] = ((UINT8 *)(void *)(s))[3];}
  145. #define ACPI_MOVE_32_TO_64(d, s) {(*(UINT64 *)(void *)(d)) = 0; ACPI_MOVE_32_TO_32(d, s);}
  146. /* 64-bit source, 16/32/64 destination */
  147. #define ACPI_MOVE_64_TO_16(d, s) ACPI_MOVE_16_TO_16(d, s) /* Truncate to 16 */
  148. #define ACPI_MOVE_64_TO_32(d, s) ACPI_MOVE_32_TO_32(d, s) /* Truncate to 32 */
  149. #define ACPI_MOVE_64_TO_64(d, s) {(( UINT8 *)(void *)(d))[0] = ((UINT8 *)(void *)(s))[0];\
  150. (( UINT8 *)(void *)(d))[1] = ((UINT8 *)(void *)(s))[1];\
  151. (( UINT8 *)(void *)(d))[2] = ((UINT8 *)(void *)(s))[2];\
  152. (( UINT8 *)(void *)(d))[3] = ((UINT8 *)(void *)(s))[3];\
  153. (( UINT8 *)(void *)(d))[4] = ((UINT8 *)(void *)(s))[4];\
  154. (( UINT8 *)(void *)(d))[5] = ((UINT8 *)(void *)(s))[5];\
  155. (( UINT8 *)(void *)(d))[6] = ((UINT8 *)(void *)(s))[6];\
  156. (( UINT8 *)(void *)(d))[7] = ((UINT8 *)(void *)(s))[7];}
  157. #endif
  158. #endif
  159. /*
  160. * Fast power-of-two math macros for non-optimized compilers
  161. */
  162. #define _ACPI_DIV(value, PowerOf2) ((UINT32) ((value) >> (PowerOf2)))
  163. #define _ACPI_MUL(value, PowerOf2) ((UINT32) ((value) << (PowerOf2)))
  164. #define _ACPI_MOD(value, Divisor) ((UINT32) ((value) & ((Divisor) -1)))
  165. #define ACPI_DIV_2(a) _ACPI_DIV(a, 1)
  166. #define ACPI_MUL_2(a) _ACPI_MUL(a, 1)
  167. #define ACPI_MOD_2(a) _ACPI_MOD(a, 2)
  168. #define ACPI_DIV_4(a) _ACPI_DIV(a, 2)
  169. #define ACPI_MUL_4(a) _ACPI_MUL(a, 2)
  170. #define ACPI_MOD_4(a) _ACPI_MOD(a, 4)
  171. #define ACPI_DIV_8(a) _ACPI_DIV(a, 3)
  172. #define ACPI_MUL_8(a) _ACPI_MUL(a, 3)
  173. #define ACPI_MOD_8(a) _ACPI_MOD(a, 8)
  174. #define ACPI_DIV_16(a) _ACPI_DIV(a, 4)
  175. #define ACPI_MUL_16(a) _ACPI_MUL(a, 4)
  176. #define ACPI_MOD_16(a) _ACPI_MOD(a, 16)
  177. #define ACPI_DIV_32(a) _ACPI_DIV(a, 5)
  178. #define ACPI_MUL_32(a) _ACPI_MUL(a, 5)
  179. #define ACPI_MOD_32(a) _ACPI_MOD(a, 32)
  180. /* Test for ASCII character */
  181. #define ACPI_IS_ASCII(c) ((c) < 0x80)
  182. /* Signed integers */
  183. #define ACPI_SIGN_POSITIVE 0
  184. #define ACPI_SIGN_NEGATIVE 1
  185. /*
  186. * Rounding macros (Power of two boundaries only)
  187. */
  188. #define ACPI_ROUND_DOWN(value, boundary) (((ACPI_SIZE)(value)) & \
  189. (~(((ACPI_SIZE) boundary)-1)))
  190. #define ACPI_ROUND_UP(value, boundary) ((((ACPI_SIZE)(value)) + \
  191. (((ACPI_SIZE) boundary)-1)) & \
  192. (~(((ACPI_SIZE) boundary)-1)))
  193. /* Note: sizeof(ACPI_SIZE) evaluates to either 4 or 8 (32- vs 64-bit mode) */
  194. #define ACPI_ROUND_DOWN_TO_32BIT(a) ACPI_ROUND_DOWN(a, 4)
  195. #define ACPI_ROUND_DOWN_TO_64BIT(a) ACPI_ROUND_DOWN(a, 8)
  196. #define ACPI_ROUND_DOWN_TO_NATIVE_WORD(a) ACPI_ROUND_DOWN(a, sizeof(ACPI_SIZE))
  197. #define ACPI_ROUND_UP_TO_32BIT(a) ACPI_ROUND_UP(a, 4)
  198. #define ACPI_ROUND_UP_TO_64BIT(a) ACPI_ROUND_UP(a, 8)
  199. #define ACPI_ROUND_UP_TO_NATIVE_WORD(a) ACPI_ROUND_UP(a, sizeof(ACPI_SIZE))
  200. #define ACPI_ROUND_BITS_UP_TO_BYTES(a) ACPI_DIV_8((a) + 7)
  201. #define ACPI_ROUND_BITS_DOWN_TO_BYTES(a) ACPI_DIV_8((a))
  202. #define ACPI_ROUND_UP_TO_1K(a) (((a) + 1023) >> 10)
  203. /* Generic (non-power-of-two) rounding */
  204. #define ACPI_ROUND_UP_TO(value, boundary) (((value) + ((boundary)-1)) / (boundary))
  205. #define ACPI_IS_MISALIGNED(value) (((ACPI_SIZE) value) & (sizeof(ACPI_SIZE)-1))
  206. /* Generic bit manipulation */
  207. #ifndef ACPI_USE_NATIVE_BIT_FINDER
  208. #define __ACPI_FIND_LAST_BIT_2(a, r) ((((UINT8) (a)) & 0x02) ? (r)+1 : (r))
  209. #define __ACPI_FIND_LAST_BIT_4(a, r) ((((UINT8) (a)) & 0x0C) ? \
  210. __ACPI_FIND_LAST_BIT_2 ((a)>>2, (r)+2) : \
  211. __ACPI_FIND_LAST_BIT_2 ((a), (r)))
  212. #define __ACPI_FIND_LAST_BIT_8(a, r) ((((UINT8) (a)) & 0xF0) ? \
  213. __ACPI_FIND_LAST_BIT_4 ((a)>>4, (r)+4) : \
  214. __ACPI_FIND_LAST_BIT_4 ((a), (r)))
  215. #define __ACPI_FIND_LAST_BIT_16(a, r) ((((UINT16) (a)) & 0xFF00) ? \
  216. __ACPI_FIND_LAST_BIT_8 ((a)>>8, (r)+8) : \
  217. __ACPI_FIND_LAST_BIT_8 ((a), (r)))
  218. #define __ACPI_FIND_LAST_BIT_32(a, r) ((((UINT32) (a)) & 0xFFFF0000) ? \
  219. __ACPI_FIND_LAST_BIT_16 ((a)>>16, (r)+16) : \
  220. __ACPI_FIND_LAST_BIT_16 ((a), (r)))
  221. #define __ACPI_FIND_LAST_BIT_64(a, r) ((((UINT64) (a)) & 0xFFFFFFFF00000000) ? \
  222. __ACPI_FIND_LAST_BIT_32 ((a)>>32, (r)+32) : \
  223. __ACPI_FIND_LAST_BIT_32 ((a), (r)))
  224. #define ACPI_FIND_LAST_BIT_8(a) ((a) ? __ACPI_FIND_LAST_BIT_8 (a, 1) : 0)
  225. #define ACPI_FIND_LAST_BIT_16(a) ((a) ? __ACPI_FIND_LAST_BIT_16 (a, 1) : 0)
  226. #define ACPI_FIND_LAST_BIT_32(a) ((a) ? __ACPI_FIND_LAST_BIT_32 (a, 1) : 0)
  227. #define ACPI_FIND_LAST_BIT_64(a) ((a) ? __ACPI_FIND_LAST_BIT_64 (a, 1) : 0)
  228. #define __ACPI_FIND_FIRST_BIT_2(a, r) ((((UINT8) (a)) & 0x01) ? (r) : (r)+1)
  229. #define __ACPI_FIND_FIRST_BIT_4(a, r) ((((UINT8) (a)) & 0x03) ? \
  230. __ACPI_FIND_FIRST_BIT_2 ((a), (r)) : \
  231. __ACPI_FIND_FIRST_BIT_2 ((a)>>2, (r)+2))
  232. #define __ACPI_FIND_FIRST_BIT_8(a, r) ((((UINT8) (a)) & 0x0F) ? \
  233. __ACPI_FIND_FIRST_BIT_4 ((a), (r)) : \
  234. __ACPI_FIND_FIRST_BIT_4 ((a)>>4, (r)+4))
  235. #define __ACPI_FIND_FIRST_BIT_16(a, r) ((((UINT16) (a)) & 0x00FF) ? \
  236. __ACPI_FIND_FIRST_BIT_8 ((a), (r)) : \
  237. __ACPI_FIND_FIRST_BIT_8 ((a)>>8, (r)+8))
  238. #define __ACPI_FIND_FIRST_BIT_32(a, r) ((((UINT32) (a)) & 0x0000FFFF) ? \
  239. __ACPI_FIND_FIRST_BIT_16 ((a), (r)) : \
  240. __ACPI_FIND_FIRST_BIT_16 ((a)>>16, (r)+16))
  241. #define __ACPI_FIND_FIRST_BIT_64(a, r) ((((UINT64) (a)) & 0x00000000FFFFFFFF) ? \
  242. __ACPI_FIND_FIRST_BIT_32 ((a), (r)) : \
  243. __ACPI_FIND_FIRST_BIT_32 ((a)>>32, (r)+32))
  244. #define ACPI_FIND_FIRST_BIT_8(a) ((a) ? __ACPI_FIND_FIRST_BIT_8 (a, 1) : 0)
  245. #define ACPI_FIND_FIRST_BIT_16(a) ((a) ? __ACPI_FIND_FIRST_BIT_16 (a, 1) : 0)
  246. #define ACPI_FIND_FIRST_BIT_32(a) ((a) ? __ACPI_FIND_FIRST_BIT_32 (a, 1) : 0)
  247. #define ACPI_FIND_FIRST_BIT_64(a) ((a) ? __ACPI_FIND_FIRST_BIT_64 (a, 1) : 0)
  248. #endif /* ACPI_USE_NATIVE_BIT_FINDER */
  249. /* Generic (power-of-two) rounding */
  250. #define ACPI_ROUND_UP_POWER_OF_TWO_8(a) ((UINT8) \
  251. (((UINT16) 1) << ACPI_FIND_LAST_BIT_8 ((a) - 1)))
  252. #define ACPI_ROUND_DOWN_POWER_OF_TWO_8(a) ((UINT8) \
  253. (((UINT16) 1) << (ACPI_FIND_LAST_BIT_8 ((a)) - 1)))
  254. #define ACPI_ROUND_UP_POWER_OF_TWO_16(a) ((UINT16) \
  255. (((UINT32) 1) << ACPI_FIND_LAST_BIT_16 ((a) - 1)))
  256. #define ACPI_ROUND_DOWN_POWER_OF_TWO_16(a) ((UINT16) \
  257. (((UINT32) 1) << (ACPI_FIND_LAST_BIT_16 ((a)) - 1)))
  258. #define ACPI_ROUND_UP_POWER_OF_TWO_32(a) ((UINT32) \
  259. (((UINT64) 1) << ACPI_FIND_LAST_BIT_32 ((a) - 1)))
  260. #define ACPI_ROUND_DOWN_POWER_OF_TWO_32(a) ((UINT32) \
  261. (((UINT64) 1) << (ACPI_FIND_LAST_BIT_32 ((a)) - 1)))
  262. #define ACPI_IS_ALIGNED(a, s) (((a) & ((s) - 1)) == 0)
  263. #define ACPI_IS_POWER_OF_TWO(a) ACPI_IS_ALIGNED(a, a)
  264. /*
  265. * Bitmask creation
  266. * Bit positions start at zero.
  267. * MASK_BITS_ABOVE creates a mask starting AT the position and above
  268. * MASK_BITS_BELOW creates a mask starting one bit BELOW the position
  269. * MASK_BITS_ABOVE/BELOW accepts a bit offset to create a mask
  270. * MASK_BITS_ABOVE/BELOW_32/64 accepts a bit width to create a mask
  271. * Note: The ACPI_INTEGER_BIT_SIZE check is used to bypass compiler
  272. * differences with the shift operator
  273. */
  274. #define ACPI_MASK_BITS_ABOVE(position) (~((ACPI_UINT64_MAX) << ((UINT32) (position))))
  275. #define ACPI_MASK_BITS_BELOW(position) ((ACPI_UINT64_MAX) << ((UINT32) (position)))
  276. #define ACPI_MASK_BITS_ABOVE_32(width) ((UINT32) ACPI_MASK_BITS_ABOVE(width))
  277. #define ACPI_MASK_BITS_BELOW_32(width) ((UINT32) ACPI_MASK_BITS_BELOW(width))
  278. #define ACPI_MASK_BITS_ABOVE_64(width) ((width) == ACPI_INTEGER_BIT_SIZE ? \
  279. ACPI_UINT64_MAX : \
  280. ACPI_MASK_BITS_ABOVE(width))
  281. #define ACPI_MASK_BITS_BELOW_64(width) ((width) == ACPI_INTEGER_BIT_SIZE ? \
  282. (UINT64) 0 : \
  283. ACPI_MASK_BITS_BELOW(width))
  284. /* Bitfields within ACPI registers */
  285. #define ACPI_REGISTER_PREPARE_BITS(Val, Pos, Mask) \
  286. ((Val << Pos) & Mask)
  287. #define ACPI_REGISTER_INSERT_VALUE(Reg, Pos, Mask, Val) \
  288. Reg = (Reg & (~(Mask))) | ACPI_REGISTER_PREPARE_BITS(Val, Pos, Mask)
  289. #define ACPI_INSERT_BITS(Target, Mask, Source) \
  290. Target = ((Target & (~(Mask))) | (Source & Mask))
  291. /* Generic bitfield macros and masks */
  292. #define ACPI_GET_BITS(SourcePtr, Position, Mask) \
  293. ((*(SourcePtr) >> (Position)) & (Mask))
  294. #define ACPI_SET_BITS(TargetPtr, Position, Mask, Value) \
  295. (*(TargetPtr) |= (((Value) & (Mask)) << (Position)))
  296. #define ACPI_1BIT_MASK 0x00000001
  297. #define ACPI_2BIT_MASK 0x00000003
  298. #define ACPI_3BIT_MASK 0x00000007
  299. #define ACPI_4BIT_MASK 0x0000000F
  300. #define ACPI_5BIT_MASK 0x0000001F
  301. #define ACPI_6BIT_MASK 0x0000003F
  302. #define ACPI_7BIT_MASK 0x0000007F
  303. #define ACPI_8BIT_MASK 0x000000FF
  304. #define ACPI_16BIT_MASK 0x0000FFFF
  305. #define ACPI_24BIT_MASK 0x00FFFFFF
  306. /* Macros to extract flag bits from position zero */
  307. #define ACPI_GET_1BIT_FLAG(Value) ((Value) & ACPI_1BIT_MASK)
  308. #define ACPI_GET_2BIT_FLAG(Value) ((Value) & ACPI_2BIT_MASK)
  309. #define ACPI_GET_3BIT_FLAG(Value) ((Value) & ACPI_3BIT_MASK)
  310. #define ACPI_GET_4BIT_FLAG(Value) ((Value) & ACPI_4BIT_MASK)
  311. /* Macros to extract flag bits from position one and above */
  312. #define ACPI_EXTRACT_1BIT_FLAG(Field, Position) (ACPI_GET_1BIT_FLAG ((Field) >> Position))
  313. #define ACPI_EXTRACT_2BIT_FLAG(Field, Position) (ACPI_GET_2BIT_FLAG ((Field) >> Position))
  314. #define ACPI_EXTRACT_3BIT_FLAG(Field, Position) (ACPI_GET_3BIT_FLAG ((Field) >> Position))
  315. #define ACPI_EXTRACT_4BIT_FLAG(Field, Position) (ACPI_GET_4BIT_FLAG ((Field) >> Position))
  316. /* ACPI Pathname helpers */
  317. #define ACPI_IS_ROOT_PREFIX(c) ((c) == (UINT8) 0x5C) /* Backslash */
  318. #define ACPI_IS_PARENT_PREFIX(c) ((c) == (UINT8) 0x5E) /* Carat */
  319. #define ACPI_IS_PATH_SEPARATOR(c) ((c) == (UINT8) 0x2E) /* Period (dot) */
  320. /*
  321. * An object of type ACPI_NAMESPACE_NODE can appear in some contexts
  322. * where a pointer to an object of type ACPI_OPERAND_OBJECT can also
  323. * appear. This macro is used to distinguish them.
  324. *
  325. * The "DescriptorType" field is the second field in both structures.
  326. */
  327. #define ACPI_GET_DESCRIPTOR_PTR(d) (((ACPI_DESCRIPTOR *)(void *)(d))->Common.CommonPointer)
  328. #define ACPI_SET_DESCRIPTOR_PTR(d, p) (((ACPI_DESCRIPTOR *)(void *)(d))->Common.CommonPointer = (p))
  329. #define ACPI_GET_DESCRIPTOR_TYPE(d) (((ACPI_DESCRIPTOR *)(void *)(d))->Common.DescriptorType)
  330. #define ACPI_SET_DESCRIPTOR_TYPE(d, t) (((ACPI_DESCRIPTOR *)(void *)(d))->Common.DescriptorType = (t))
  331. /*
  332. * Macros for the master AML opcode table
  333. */
  334. #if defined (ACPI_DISASSEMBLER) || defined (ACPI_DEBUG_OUTPUT)
  335. #define ACPI_OP(Name, PArgs, IArgs, ObjType, Class, Type, Flags) \
  336. {Name, (UINT32)(PArgs), (UINT32)(IArgs), (UINT32)(Flags), ObjType, Class, Type}
  337. #else
  338. #define ACPI_OP(Name, PArgs, IArgs, ObjType, Class, Type, Flags) \
  339. {(UINT32)(PArgs), (UINT32)(IArgs), (UINT32)(Flags), ObjType, Class, Type}
  340. #endif
  341. #define ARG_TYPE_WIDTH 5
  342. #define ARG_1(x) ((UINT32)(x))
  343. #define ARG_2(x) ((UINT32)(x) << (1 * ARG_TYPE_WIDTH))
  344. #define ARG_3(x) ((UINT32)(x) << (2 * ARG_TYPE_WIDTH))
  345. #define ARG_4(x) ((UINT32)(x) << (3 * ARG_TYPE_WIDTH))
  346. #define ARG_5(x) ((UINT32)(x) << (4 * ARG_TYPE_WIDTH))
  347. #define ARG_6(x) ((UINT32)(x) << (5 * ARG_TYPE_WIDTH))
  348. #define ARGI_LIST1(a) (ARG_1(a))
  349. #define ARGI_LIST2(a, b) (ARG_1(b)|ARG_2(a))
  350. #define ARGI_LIST3(a, b, c) (ARG_1(c)|ARG_2(b)|ARG_3(a))
  351. #define ARGI_LIST4(a, b, c, d) (ARG_1(d)|ARG_2(c)|ARG_3(b)|ARG_4(a))
  352. #define ARGI_LIST5(a, b, c, d, e) (ARG_1(e)|ARG_2(d)|ARG_3(c)|ARG_4(b)|ARG_5(a))
  353. #define ARGI_LIST6(a, b, c, d, e, f) (ARG_1(f)|ARG_2(e)|ARG_3(d)|ARG_4(c)|ARG_5(b)|ARG_6(a))
  354. #define ARGP_LIST1(a) (ARG_1(a))
  355. #define ARGP_LIST2(a, b) (ARG_1(a)|ARG_2(b))
  356. #define ARGP_LIST3(a, b, c) (ARG_1(a)|ARG_2(b)|ARG_3(c))
  357. #define ARGP_LIST4(a, b, c, d) (ARG_1(a)|ARG_2(b)|ARG_3(c)|ARG_4(d))
  358. #define ARGP_LIST5(a, b, c, d, e) (ARG_1(a)|ARG_2(b)|ARG_3(c)|ARG_4(d)|ARG_5(e))
  359. #define ARGP_LIST6(a, b, c, d, e, f) (ARG_1(a)|ARG_2(b)|ARG_3(c)|ARG_4(d)|ARG_5(e)|ARG_6(f))
  360. #define GET_CURRENT_ARG_TYPE(List) (List & ((UINT32) 0x1F))
  361. #define INCREMENT_ARG_LIST(List) (List >>= ((UINT32) ARG_TYPE_WIDTH))
  362. /*
  363. * Ascii error messages can be configured out
  364. */
  365. #ifndef ACPI_NO_ERROR_MESSAGES
  366. /*
  367. * Error reporting. The callers module and line number are inserted by AE_INFO,
  368. * the plist contains a set of parens to allow variable-length lists.
  369. * These macros are used for both the debug and non-debug versions of the code.
  370. */
  371. #define ACPI_ERROR_NAMESPACE(s, p, e) AcpiUtPrefixedNamespaceError (AE_INFO, s, p, e);
  372. #define ACPI_ERROR_METHOD(s, n, p, e) AcpiUtMethodError (AE_INFO, s, n, p, e);
  373. #define ACPI_WARN_PREDEFINED(plist) AcpiUtPredefinedWarning plist
  374. #define ACPI_INFO_PREDEFINED(plist) AcpiUtPredefinedInfo plist
  375. #define ACPI_BIOS_ERROR_PREDEFINED(plist) AcpiUtPredefinedBiosError plist
  376. #define ACPI_ERROR_ONLY(s) s
  377. #else
  378. /* No error messages */
  379. #define ACPI_ERROR_NAMESPACE(s, p, e)
  380. #define ACPI_ERROR_METHOD(s, n, p, e)
  381. #define ACPI_WARN_PREDEFINED(plist)
  382. #define ACPI_INFO_PREDEFINED(plist)
  383. #define ACPI_BIOS_ERROR_PREDEFINED(plist)
  384. #define ACPI_ERROR_ONLY(s)
  385. #endif /* ACPI_NO_ERROR_MESSAGES */
  386. #if (!ACPI_REDUCED_HARDWARE)
  387. #define ACPI_HW_OPTIONAL_FUNCTION(addr) addr
  388. #else
  389. #define ACPI_HW_OPTIONAL_FUNCTION(addr) NULL
  390. #endif
  391. /*
  392. * Macros used for ACPICA utilities only
  393. */
  394. /* Generate a UUID */
  395. #define ACPI_INIT_UUID(a, b, c, d0, d1, d2, d3, d4, d5, d6, d7) \
  396. (a) & 0xFF, ((a) >> 8) & 0xFF, ((a) >> 16) & 0xFF, ((a) >> 24) & 0xFF, \
  397. (b) & 0xFF, ((b) >> 8) & 0xFF, \
  398. (c) & 0xFF, ((c) >> 8) & 0xFF, \
  399. (d0), (d1), (d2), (d3), (d4), (d5), (d6), (d7)
  400. #define ACPI_IS_OCTAL_DIGIT(d) (((char)(d) >= '0') && ((char)(d) <= '7'))
  401. /*
  402. * Macros used for the ASL-/ASL+ converter utility
  403. */
  404. #ifdef ACPI_ASL_COMPILER
  405. #define ASL_CV_LABEL_FILENODE(a) CvLabelFileNode(a);
  406. #define ASL_CV_CAPTURE_COMMENTS_ONLY(a) CvCaptureCommentsOnly (a);
  407. #define ASL_CV_CAPTURE_COMMENTS(a) CvCaptureComments (a);
  408. #define ASL_CV_TRANSFER_COMMENTS(a) CvTransferComments (a);
  409. #define ASL_CV_CLOSE_PAREN(a,b) CvCloseParenWriteComment(a,b);
  410. #define ASL_CV_CLOSE_BRACE(a,b) CvCloseBraceWriteComment(a,b);
  411. #define ASL_CV_SWITCH_FILES(a,b) CvSwitchFiles(a,b);
  412. #define ASL_CV_CLEAR_OP_COMMENTS(a) CvClearOpComments(a);
  413. #define ASL_CV_PRINT_ONE_COMMENT(a,b,c,d) CvPrintOneCommentType (a,b,c,d);
  414. #define ASL_CV_PRINT_ONE_COMMENT_LIST(a,b) CvPrintOneCommentList (a,b);
  415. #define ASL_CV_FILE_HAS_SWITCHED(a) CvFileHasSwitched(a)
  416. #define ASL_CV_INIT_FILETREE(a,b,c) CvInitFileTree(a,b,c);
  417. #else
  418. #define ASL_CV_LABEL_FILENODE(a)
  419. #define ASL_CV_CAPTURE_COMMENTS_ONLY(a)
  420. #define ASL_CV_CAPTURE_COMMENTS(a)
  421. #define ASL_CV_TRANSFER_COMMENTS(a)
  422. #define ASL_CV_CLOSE_PAREN(a,b) AcpiOsPrintf (")");
  423. #define ASL_CV_CLOSE_BRACE(a,b) AcpiOsPrintf ("}");
  424. #define ASL_CV_SWITCH_FILES(a,b)
  425. #define ASL_CV_CLEAR_OP_COMMENTS(a)
  426. #define ASL_CV_PRINT_ONE_COMMENT(a,b,c,d)
  427. #define ASL_CV_PRINT_ONE_COMMENT_LIST(a,b)
  428. #define ASL_CV_FILE_HAS_SWITCHED(a) 0
  429. #define ASL_CV_INIT_FILETREE(a,b,c)
  430. #endif
  431. #endif /* ACMACROS_H */