sys_io.h 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361
  1. /* Port and memory mapped registers I/O operations */
  2. /*
  3. * Copyright (c) 2015 Intel Corporation.
  4. *
  5. * SPDX-License-Identifier: Apache-2.0
  6. */
  7. #ifndef ZEPHYR_INCLUDE_SYS_SYS_IO_H_
  8. #define ZEPHYR_INCLUDE_SYS_SYS_IO_H_
  9. #include <zephyr/types.h>
  10. #include <stddef.h>
  11. #ifdef __cplusplus
  12. extern "C" {
  13. #endif
  14. typedef uint32_t io_port_t;
  15. typedef uintptr_t mm_reg_t;
  16. typedef uintptr_t mem_addr_t;
  17. /* Port I/O functions */
  18. /**
  19. * @fn static inline void sys_out8(uint8_t data, io_port_t port);
  20. * @brief Output a byte to an I/O port
  21. *
  22. * This function writes a byte to the given port.
  23. *
  24. * @param data the byte to write
  25. * @param port the port address where to write the byte
  26. */
  27. /**
  28. * @fn static inline uint8_t sys_in8(io_port_t port);
  29. * @brief Input a byte from an I/O port
  30. *
  31. * This function reads a byte from the port.
  32. *
  33. * @param port the port address from where to read the byte
  34. *
  35. * @return the byte read
  36. */
  37. /**
  38. * @fn static inline void sys_out16(uint16_t data, io_port_t port);
  39. * @brief Output a 16 bits to an I/O port
  40. *
  41. * This function writes a 16 bits to the given port.
  42. *
  43. * @param data the 16 bits to write
  44. * @param port the port address where to write the 16 bits
  45. */
  46. /**
  47. * @fn static inline uint16_t sys_in16(io_port_t port);
  48. * @brief Input 16 bits from an I/O port
  49. *
  50. * This function reads 16 bits from the port.
  51. *
  52. * @param port the port address from where to read the 16 bits
  53. *
  54. * @return the 16 bits read
  55. */
  56. /**
  57. * @fn static inline void sys_out32(uint32_t data, io_port_t port);
  58. * @brief Output 32 bits to an I/O port
  59. *
  60. * This function writes 32 bits to the given port.
  61. *
  62. * @param data the 32 bits to write
  63. * @param port the port address where to write the 32 bits
  64. */
  65. /**
  66. * @fn static inline uint32_t sys_in32(io_port_t port);
  67. * @brief Input 32 bits from an I/O port
  68. *
  69. * This function reads 32 bits from the port.
  70. *
  71. * @param port the port address from where to read the 32 bits
  72. *
  73. * @return the 32 bits read
  74. */
  75. /**
  76. * @fn static inline void sys_io_set_bit(io_port_t port, unsigned int bit)
  77. * @brief Set the designated bit from port to 1
  78. *
  79. * This functions takes the designated bit starting from port and sets it to 1.
  80. *
  81. * @param port the port address from where to look for the bit
  82. * @param bit the designated bit to set (from 0 to n)
  83. */
  84. /**
  85. * @fn static inline void sys_io_clear_bit(io_port_t port, unsigned int bit)
  86. * @brief Clear the designated bit from port to 0
  87. *
  88. * This functions takes the designated bit starting from port and sets it to 0.
  89. *
  90. * @param port the port address from where to look for the bit
  91. * @param bit the designated bit to clear (from 0 to n)
  92. */
  93. /**
  94. * @fn static inline int sys_io_test_bit(io_port_t port, unsigned int bit)
  95. * @brief Test the bit from port if it is set or not
  96. *
  97. * This functions takes the designated bit starting from port and tests its
  98. * current setting. It will return the current setting.
  99. *
  100. * @param port the port address from where to look for the bit
  101. * @param bit the designated bit to test (from 0 to n)
  102. *
  103. * @return 1 if it is set, 0 otherwise
  104. */
  105. /**
  106. * @fn static inline int sys_io_test_and_set_bit(io_port_t port, unsigned int bit)
  107. * @brief Test the bit from port and set it
  108. *
  109. * This functions takes the designated bit starting from port, tests its
  110. * current setting and sets it. It will return the previous setting.
  111. *
  112. * @param port the port address from where to look for the bit
  113. * @param bit the designated bit to test and set (from 0 to n)
  114. *
  115. * @return 1 if it was set, 0 otherwise
  116. */
  117. /**
  118. * @fn static inline int sys_io_test_and_clear_bit(io_port_t port, unsigned int bit)
  119. * @brief Test the bit from port and clear it
  120. *
  121. * This functions takes the designated bit starting from port, tests its
  122. * current setting and clears it. It will return the previous setting.
  123. *
  124. * @param port the port address from where to look for the bit
  125. * @param bit the designated bit to test and clear (from 0 to n)
  126. *
  127. * @return 0 if it was clear, 1 otherwise
  128. */
  129. /* Memory mapped registers I/O functions */
  130. /**
  131. * @fn static inline void sys_write8(uint8_t data, mm_reg_t addr);
  132. * @brief Write a byte to a memory mapped register
  133. *
  134. * This function writes a byte to the given memory mapped register.
  135. *
  136. * @param data the byte to write
  137. * @param addr the memory mapped register address where to write the byte
  138. */
  139. /**
  140. * @fn static inline uint8_t sys_read8(mm_reg_t addr);
  141. * @brief Read a byte from a memory mapped register
  142. *
  143. * This function reads a byte from the given memory mapped register.
  144. *
  145. * @param addr the memory mapped register address from where to read the byte
  146. *
  147. * @return the byte read
  148. */
  149. /**
  150. * @fn static inline void sys_write16(uint16_t data, mm_reg_t addr);
  151. * @brief Write 16 bits to a memory mapped register
  152. *
  153. * This function writes 16 bits to the given memory mapped register.
  154. *
  155. * @param data the 16 bits to write
  156. * @param addr the memory mapped register address where to write the 16 bits
  157. */
  158. /**
  159. * @fn static inline uint16_t sys_read16(mm_reg_t addr);
  160. * @brief Read 16 bits from a memory mapped register
  161. *
  162. * This function reads 16 bits from the given memory mapped register.
  163. *
  164. * @param addr the memory mapped register address from where to read
  165. * the 16 bits
  166. *
  167. * @return the 16 bits read
  168. */
  169. /**
  170. * @fn static inline void sys_write32(uint32_t data, mm_reg_t addr);
  171. * @brief Write 32 bits to a memory mapped register
  172. *
  173. * This function writes 32 bits to the given memory mapped register.
  174. *
  175. * @param data the 32 bits to write
  176. * @param addr the memory mapped register address where to write the 32 bits
  177. */
  178. /**
  179. * @fn static inline uint32_t sys_read32(mm_reg_t addr);
  180. * @brief Read 32 bits from a memory mapped register
  181. *
  182. * This function reads 32 bits from the given memory mapped register.
  183. *
  184. * @param addr the memory mapped register address from where to read
  185. * the 32 bits
  186. *
  187. * @return the 32 bits read
  188. */
  189. /**
  190. * @fn static inline void sys_write64(uint64_t data, mm_reg_t addr);
  191. * @brief Write 64 bits to a memory mapped register
  192. *
  193. * This function writes 64 bits to the given memory mapped register.
  194. *
  195. * @param data the 64 bits to write
  196. * @param addr the memory mapped register address where to write the 64 bits
  197. */
  198. /**
  199. * @fn static inline uint64_t sys_read64(mm_reg_t addr);
  200. * @brief Read 64 bits from a memory mapped register
  201. *
  202. * This function reads 64 bits from the given memory mapped register.
  203. *
  204. * @param addr the memory mapped register address from where to read
  205. * the 64 bits
  206. *
  207. * @return the 64 bits read
  208. */
  209. /* Memory bits manipulation functions */
  210. /**
  211. * @fn static inline void sys_set_bit(mem_addr_t addr, unsigned int bit)
  212. * @brief Set the designated bit from addr to 1
  213. *
  214. * This functions takes the designated bit starting from addr and sets it to 1.
  215. *
  216. * @param addr the memory address from where to look for the bit
  217. * @param bit the designated bit to set (from 0 to 31)
  218. */
  219. /**
  220. * @fn static inline void sys_clear_bit(mem_addr_t addr, unsigned int bit)
  221. * @brief Clear the designated bit from addr to 0
  222. *
  223. * This functions takes the designated bit starting from addr and sets it to 0.
  224. *
  225. * @param addr the memory address from where to look for the bit
  226. * @param bit the designated bit to clear (from 0 to 31)
  227. */
  228. /**
  229. * @fn static inline int sys_test_bit(mem_addr_t addr, unsigned int bit)
  230. * @brief Test the bit if it is set or not
  231. *
  232. * This functions takes the designated bit starting from addr and tests its
  233. * current setting. It will return the current setting.
  234. *
  235. * @param addr the memory address from where to look for the bit
  236. * @param bit the designated bit to test (from 0 to 31)
  237. *
  238. * @return 1 if it is set, 0 otherwise
  239. */
  240. /**
  241. * @fn static inline int sys_test_and_set_bit(mem_addr_t addr, unsigned int bit)
  242. * @brief Test the bit and set it
  243. *
  244. * This functions takes the designated bit starting from addr, tests its
  245. * current setting and sets it. It will return the previous setting.
  246. *
  247. * @param addr the memory address from where to look for the bit
  248. * @param bit the designated bit to test and set (from 0 to 31)
  249. *
  250. * @return 1 if it was set, 0 otherwise
  251. */
  252. /**
  253. * @fn static inline int sys_test_and_clear_bit(mem_addr_t addr, unsigned int bit)
  254. * @brief Test the bit and clear it
  255. *
  256. * This functions takes the designated bit starting from addr, test its
  257. * current setting and clears it. It will return the previous setting.
  258. *
  259. * @param addr the memory address from where to look for the bit
  260. * @param bit the designated bit to test and clear (from 0 to 31)
  261. *
  262. * @return 0 if it was clear, 1 otherwise
  263. */
  264. /**
  265. * @fn static inline void sys_bitfield_set_bit(mem_addr_t addr, unsigned int bit)
  266. * @brief Set the designated bit from addr to 1
  267. *
  268. * This functions takes the designated bit starting from addr and sets it to 1.
  269. *
  270. * @param addr the memory address from where to look for the bit
  271. * @param bit the designated bit to set (arbitrary)
  272. */
  273. /**
  274. * @fn static inline void sys_bitfield_clear_bit(mem_addr_t addr, unsigned int bit)
  275. * @brief Clear the designated bit from addr to 0
  276. *
  277. * This functions takes the designated bit starting from addr and sets it to 0.
  278. *
  279. * @param addr the memory address from where to look for the bit
  280. * @param bit the designated bit to clear (arbitrary)
  281. */
  282. /**
  283. * @fn static inline int sys_bitfield_test_bit(mem_addr_t addr, unsigned int bit)
  284. * @brief Test the bit if it is set or not
  285. *
  286. * This functions takes the designated bit starting from addr and tests its
  287. * current setting. It will return the current setting.
  288. *
  289. * @param addr the memory address from where to look for the bit
  290. * @param bit the designated bit to test (arbitrary
  291. *
  292. * @return 1 if it is set, 0 otherwise
  293. */
  294. /**
  295. * @fn static inline int sys_bitfield_test_and_set_bit(mem_addr_t addr, unsigned int bit)
  296. * @brief Test the bit and set it
  297. *
  298. * This functions takes the designated bit starting from addr, tests its
  299. * current setting and sets it. It will return the previous setting.
  300. *
  301. * @param addr the memory address from where to look for the bit
  302. * @param bit the designated bit to test and set (arbitrary)
  303. *
  304. * @return 1 if it was set, 0 otherwise
  305. */
  306. /**
  307. * @fn static inline int sys_bitfield_test_and_clear_bit(mem_addr_t addr, unsigned int bit)
  308. * @brief Test the bit and clear it
  309. *
  310. * This functions takes the designated bit starting from addr, test its
  311. * current setting and clears it. It will return the previous setting.
  312. *
  313. * @param addr the memory address from where to look for the bit
  314. * @param bit the designated bit to test and clear (arbitrary)
  315. *
  316. * @return 0 if it was clear, 1 otherwise
  317. */
  318. #ifdef __cplusplus
  319. }
  320. #endif
  321. #endif /* ZEPHYR_INCLUDE_SYS_SYS_IO_H_ */