device_mmio.h 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679
  1. /*
  2. * Copyright (c) 2020 Intel Corporation.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Definitions and helper macros for managing driver memory-mapped
  7. * input/output (MMIO) regions appropriately in either RAM or ROM.
  8. *
  9. * In most cases drivers will just want to include device.h, but
  10. * including this separately may be needed for arch-level driver code
  11. * which uses the DEVICE_MMIO_TOPLEVEL variants and including the
  12. * main device.h would introduce header dependency loops due to that
  13. * header's reliance on kernel.h.
  14. */
  15. #ifndef ZEPHYR_INCLUDE_SYS_DEVICE_MMIO_H
  16. #define ZEPHYR_INCLUDE_SYS_DEVICE_MMIO_H
  17. #include <toolchain/common.h>
  18. #include <linker/sections.h>
  19. /**
  20. * @defgroup device-mmio Device memory-mapped IO management
  21. * @ingroup device-model
  22. * @{
  23. */
  24. /* Storing MMIO addresses in RAM is a system-wide decision based on
  25. * configuration. This is just used to simplify some other definitions.
  26. *
  27. * If we have an MMU enabled, all physical MMIO regions must be mapped into
  28. * the kernel's virtual address space at runtime, this is a hard requirement.
  29. *
  30. * If we have PCIE enabled, this does mean that non-PCIE drivers may waste
  31. * a bit of RAM, but systems with PCI express are not RAM constrained.
  32. */
  33. #if defined(CONFIG_MMU) || defined(CONFIG_PCIE)
  34. #define DEVICE_MMIO_IS_IN_RAM
  35. #endif
  36. #ifndef _ASMLANGUAGE
  37. #include <stdint.h>
  38. #include <stddef.h>
  39. #include <sys/mem_manage.h>
  40. #include <sys/sys_io.h>
  41. #ifdef DEVICE_MMIO_IS_IN_RAM
  42. /* Store the physical address and size from DTS, we'll memory
  43. * map into the virtual address space at runtime. This is not applicable
  44. * to PCIe devices, which must query the bus for BAR information.
  45. */
  46. struct z_device_mmio_rom {
  47. /** MMIO physical address */
  48. uintptr_t phys_addr;
  49. /** MMIO region size */
  50. size_t size;
  51. };
  52. #define Z_DEVICE_MMIO_ROM_INITIALIZER(node_id) \
  53. { \
  54. .phys_addr = DT_REG_ADDR(node_id), \
  55. .size = DT_REG_SIZE(node_id) \
  56. }
  57. /**
  58. * Set linear address for device MMIO access
  59. *
  60. * This function sets the `virt_addr` parameter to the correct linear
  61. * address for the MMIO region.
  62. *
  63. * If the MMU is enabled, mappings may be created in the page tables.
  64. *
  65. * Normally, only a caching mode needs to be set for the 'flags' parameter.
  66. * The mapped linear address will have read-write access to supervisor mode.
  67. *
  68. * @see k_map()
  69. *
  70. * @param virt_addr [out] Output linear address storage location, most
  71. * users will want some DEVICE_MMIO_RAM_PTR() value
  72. * @param phys_addr Physical address base of the MMIO region
  73. * @param size Size of the MMIO region
  74. * @param flags Caching mode and access flags, see K_MEM_CACHE_* and
  75. * K_MEM_PERM_* macros
  76. */
  77. __boot_func
  78. static inline void device_map(mm_reg_t *virt_addr, uintptr_t phys_addr,
  79. size_t size, uint32_t flags)
  80. {
  81. #ifdef CONFIG_MMU
  82. /* Pass along flags and add that we want supervisor mode
  83. * read-write access.
  84. */
  85. z_phys_map((uint8_t **)virt_addr, phys_addr, size,
  86. flags | K_MEM_PERM_RW);
  87. #else
  88. ARG_UNUSED(size);
  89. ARG_UNUSED(flags);
  90. *virt_addr = phys_addr;
  91. #endif /* CONFIG_MMU */
  92. }
  93. #else
  94. /* No MMU or PCIe. Just store the address from DTS and treat as a linear
  95. * address
  96. */
  97. struct z_device_mmio_rom {
  98. /** MMIO linear address */
  99. mm_reg_t addr;
  100. };
  101. #define Z_DEVICE_MMIO_ROM_INITIALIZER(node_id) \
  102. { \
  103. .addr = DT_REG_ADDR(node_id) \
  104. }
  105. #endif /* DEVICE_MMIO_IS_IN_RAM */
  106. #endif /* !_ASMLANGUAGE */
  107. /** @} */
  108. /**
  109. * @defgroup device-mmio-single Single MMIO region macros
  110. * @ingroup device-mmio
  111. *
  112. * For drivers which need to manage just one MMIO region, the most common
  113. * case.
  114. *
  115. * @{
  116. */
  117. /**
  118. * @def DEVICE_MMIO_RAM
  119. *
  120. * Declare storage for MMIO information within a device's dev_data struct.
  121. *
  122. * This gets accessed by the DEVICE_MMIO_MAP() and DEVICE_MMIO_GET() macros.
  123. *
  124. * Depending on configuration, no memory may be reserved at all.
  125. * This must be the first member of the data struct.
  126. *
  127. * There must be a corresponding DEVICE_MMIO_ROM in config_info if the
  128. * physical address is known at build time, but may be omitted if not (such
  129. * as with PCIe)
  130. *
  131. * Example for a driver named "foo":
  132. *
  133. * struct foo_driver_data {
  134. * DEVICE_MMIO_RAM;
  135. * int wibble;
  136. * ...
  137. * }
  138. *
  139. * No build-time initialization of this memory is necessary; it
  140. * will be set up in the init function by DEVICE_MMIO_MAP().
  141. *
  142. * A pointer to this memory may be obtained with DEVICE_MMIO_RAM_PTR().
  143. */
  144. #ifdef DEVICE_MMIO_IS_IN_RAM
  145. #define DEVICE_MMIO_RAM mm_reg_t _mmio
  146. #else
  147. #define DEVICE_MMIO_RAM
  148. #endif
  149. #ifdef DEVICE_MMIO_IS_IN_RAM
  150. /**
  151. * @def DEVICE_MMIO_RAM_PTR(device)
  152. *
  153. * Return a pointer to the RAM-based storage area for a device's MMIO
  154. * address.
  155. *
  156. * This is useful for the target MMIO address location when using
  157. * device_map() directly.
  158. *
  159. * @param device device node_id object
  160. * @retval mm_reg_t pointer to storage location
  161. */
  162. #define DEVICE_MMIO_RAM_PTR(device) (mm_reg_t *)((device)->data)
  163. #endif /* DEVICE_MMIO_IS_IN_RAM */
  164. /**
  165. * @def DEVICE_MMIO_ROM
  166. *
  167. * @brief Declare storage for MMIO data within a device's config struct
  168. *
  169. * This gets accessed by DEVICE_MMIO_MAP() and DEVICE_MMIO_GET() macros.
  170. *
  171. * What gets stored here varies considerably by configuration.
  172. * This must be the first member of the config struct. There must be
  173. * a corresponding DEVICE_MMIO_RAM in data.
  174. *
  175. * This storage is not used if the device is PCIe and may be omitted.
  176. *
  177. * This should be initialized at build time with information from DTS
  178. * using DEVICE_MMIO_ROM_INIT().
  179. *
  180. * A pointer to this memory may be obtained with DEVICE_MMIO_ROM_PTR().
  181. *
  182. * Example for a driver named "foo":
  183. *
  184. * struct foo_config {
  185. * DEVICE_MMIO_ROM;
  186. * int baz;
  187. * ...
  188. * }
  189. *
  190. * @see DEVICE_MMIO_ROM_INIT()
  191. */
  192. #define DEVICE_MMIO_ROM struct z_device_mmio_rom _mmio
  193. /**
  194. * @def DEVICE_MMIO_ROM_PTR(dev)
  195. *
  196. * Return a pointer to the ROM-based storage area for a device's MMIO
  197. * information. This macro will not work properly if the ROM storage
  198. * was omitted from the config struct declaration, and should not
  199. * be used in this case.
  200. *
  201. * @param dev device instance object
  202. * @retval struct device_mmio_rom * pointer to storage location
  203. */
  204. #define DEVICE_MMIO_ROM_PTR(dev) \
  205. ((struct z_device_mmio_rom *)((dev)->config))
  206. /**
  207. * @def DEVICE_MMIO_ROM_INIT(node_id)
  208. *
  209. * @brief Initialize a DEVICE_MMIO_ROM member
  210. *
  211. * Initialize MMIO-related information within a specific instance of
  212. * a device config struct, using information from DTS.
  213. *
  214. * Example for a driver belonging to the "foo" subsystem:
  215. *
  216. * struct foo_config my_config = {
  217. * DEVICE_MMIO_ROM_INIT(DT_DRV_INST(...)),
  218. * .baz = 2;
  219. * ...
  220. * }
  221. *
  222. * @see DEVICE_MMIO_ROM()
  223. *
  224. * @param node_id DTS node_id
  225. */
  226. #define DEVICE_MMIO_ROM_INIT(node_id) \
  227. ._mmio = Z_DEVICE_MMIO_ROM_INITIALIZER(node_id)
  228. /**
  229. * @def DEVICE_MMIO_MAP(device, flags)
  230. *
  231. * @brief Map MMIO memory into the address space
  232. *
  233. * This is not intended for PCIe devices; these must be probed at runtime
  234. * and you will want to make a device_map() call directly, using
  235. * DEVICE_MMIO_RAM_PTR() as the target virtual address location.
  236. *
  237. * The flags argument is currently used for caching mode, which should be
  238. * one of the DEVICE_CACHE_* macros. Unused bits are reserved for future
  239. * expansion.
  240. *
  241. * @param dev Device object instance
  242. * @param flags cache mode flags
  243. */
  244. #ifdef DEVICE_MMIO_IS_IN_RAM
  245. #define DEVICE_MMIO_MAP(dev, flags) \
  246. device_map(DEVICE_MMIO_RAM_PTR(dev), \
  247. DEVICE_MMIO_ROM_PTR(dev)->phys_addr, \
  248. DEVICE_MMIO_ROM_PTR(dev)->size, \
  249. (flags))
  250. #else
  251. #define DEVICE_MMIO_MAP(dev, flags) do { } while (0)
  252. #endif
  253. /**
  254. * @def DEVICE_MMIO_GET(dev)
  255. *
  256. * @brief Obtain the MMIO address for a device
  257. *
  258. * For most microcontrollers MMIO addresses can be fixed values known at
  259. * build time, and we can store this in device->config, residing in ROM.
  260. *
  261. * However, some devices can only know their MMIO addresses at runtime,
  262. * because they need to be memory-mapped into the address space, enumerated
  263. * from PCI, or both.
  264. *
  265. * This macro returns the linear address of the driver's MMIO region.
  266. * This is for drivers which have exactly one MMIO region.
  267. * A call must have been made to device_map() in the driver init function.
  268. *
  269. * @param dev Device object
  270. * @return mm_reg_t linear address of the MMIO region
  271. */
  272. #ifdef DEVICE_MMIO_IS_IN_RAM
  273. #define DEVICE_MMIO_GET(dev) (*DEVICE_MMIO_RAM_PTR(dev))
  274. #else
  275. #define DEVICE_MMIO_GET(dev) (DEVICE_MMIO_ROM_PTR(dev)->addr)
  276. #endif
  277. /** @} */
  278. /**
  279. * @defgroup device-mmio-named Named MMIO region macros
  280. * @ingroup device-mmio
  281. *
  282. * For drivers which need to manage multiple MMIO regions, which will
  283. * be referenced by name.
  284. *
  285. * @{
  286. */
  287. /**
  288. * @def DEVICE_MMIO_NAMED_RAM(name)
  289. *
  290. * @brief Declare storage for MMIO data within a device's dev_data struct
  291. *
  292. * This gets accessed by the DEVICE_MMIO_NAMED_MAP() and
  293. * DEVICE_MMIO_NAMED_GET() macros.
  294. *
  295. * Depending on configuration, no memory may be reserved at all.
  296. * Multiple named regions may be declared.
  297. *
  298. * There must be a corresponding DEVICE_MMIO_ROM in config if the
  299. * physical address is known at build time, but may be omitted if not (such
  300. * as with PCIe.
  301. *
  302. * Example for a driver named "foo":
  303. *
  304. * struct foo_driver_data {
  305. * int blarg;
  306. * DEVICE_MMIO_NAMED_RAM(corge);
  307. * DEVICE_MMIO_NAMED_RAM(grault);
  308. * int wibble;
  309. * ...
  310. * }
  311. *
  312. * No build-time initialization of this memory is necessary; it
  313. * will be set up in the init function by DEVICE_MMIO_NAMED_MAP().
  314. *
  315. * @param name Member name to use to store within dev_data.
  316. */
  317. #ifdef DEVICE_MMIO_IS_IN_RAM
  318. #define DEVICE_MMIO_NAMED_RAM(name) mm_reg_t name
  319. #else
  320. #define DEVICE_MMIO_NAMED_RAM(name)
  321. #endif /* DEVICE_MMIO_IS_IN_RAM */
  322. #ifdef DEVICE_MMIO_IS_IN_RAM
  323. /**
  324. * @def DEVICE_MMIO_NAMED_RAM_PTR(dev, name)
  325. *
  326. * @brief Return a pointer to the RAM storage for a device's named MMIO address
  327. *
  328. * This macro requires that the macro DEV_DATA is locally defined and returns
  329. * a properly typed pointer to the particular dev_data struct for this driver.
  330. *
  331. * @param dev device instance object
  332. * @param name Member name within dev_data
  333. * @retval mm_reg_t pointer to storage location
  334. */
  335. #define DEVICE_MMIO_NAMED_RAM_PTR(dev, name) \
  336. (&(DEV_DATA(dev)->name))
  337. #endif /* DEVICE_MMIO_IS_IN_RAM */
  338. /**
  339. * @def DEVICE_MMIO_NAMED_ROM(name)
  340. *
  341. * @brief Declare storage for MMIO data within a device's config struct.
  342. *
  343. * This gets accessed by DEVICE_MMIO_NAMED_MAP() and
  344. * DEVICE_MMIO_NAMED_GET() macros.
  345. *
  346. * What gets stored here varies considerably by configuration. Multiple named
  347. * regions may be declared. There must be corresponding entries in the dev_data
  348. * struct.
  349. *
  350. * This storage is not used if the device is PCIe and may be omitted.
  351. *
  352. * If used, this must be initialized at build time with information from DTS
  353. * using DEVICE_MMIO_NAMED_ROM_INIT()
  354. *
  355. * A pointer to this memory may be obtained with DEVICE_MMIO_NAMED_ROM_PTR().
  356. *
  357. * Example for a driver named "foo":
  358. *
  359. * struct foo_config {
  360. * int bar;
  361. * DEVICE_MMIO_NAMED_ROM(corge);
  362. * DEVICE_MMIO_NAMED_ROM(grault);
  363. * int baz;
  364. * ...
  365. * }
  366. *
  367. * @see DEVICE_MMIO_NAMED_ROM_INIT()
  368. *
  369. * @param name Member name to store within config
  370. */
  371. #define DEVICE_MMIO_NAMED_ROM(name) struct z_device_mmio_rom name
  372. /**
  373. * @def DEVICE_MMIO_NAMED_ROM_PTR(dev, name)
  374. *
  375. * Return a pointer to the ROM-based storage area for a device's MMIO
  376. * information.
  377. *
  378. * This macro requires that the macro DEV_CFG is locally defined and returns
  379. * a properly typed pointer to the particular config struct for this
  380. * driver.
  381. *
  382. * @param dev device instance object
  383. * @param name Member name within config
  384. * @retval struct device_mmio_rom * pointer to storage location
  385. */
  386. #define DEVICE_MMIO_NAMED_ROM_PTR(dev, name) (&(DEV_CFG(dev)->name))
  387. /**
  388. * @def DEVICE_MMIO_NAMED_ROM_INIT(name, node_id)
  389. *
  390. * @brief Initialize a named DEVICE_MMIO_NAMED_ROM member
  391. *
  392. * Initialize MMIO-related information within a specific instance of
  393. * a device config struct, using information from DTS.
  394. *
  395. * Example for an instance of a driver belonging to the "foo" subsystem
  396. * that will have two regions named 'corge' and 'grault':
  397. *
  398. * struct foo_config my_config = {
  399. * bar = 7;
  400. * DEVICE_MMIO_NAMED_ROM_INIT(corge, DT_DRV_INST(...));
  401. * DEVICE_MMIO_NAMED_ROM_INIT(grault, DT_DRV_INST(...));
  402. * baz = 2;
  403. * ...
  404. * }
  405. *
  406. * @see DEVICE_MMIO_NAMED_ROM()
  407. *
  408. * @param name Member name within config for the MMIO region
  409. * @param node_id DTS node identifier
  410. */
  411. #define DEVICE_MMIO_NAMED_ROM_INIT(name, node_id) \
  412. .name = Z_DEVICE_MMIO_ROM_INITIALIZER(node_id)
  413. /**
  414. * @def DEVICE_MMIO_NAMED_MAP(dev, name, flags)
  415. *
  416. * @brief Set up memory for a named MMIO region
  417. *
  418. * This performs the necessary PCI probing and/or MMU virtual memory mapping
  419. * such that DEVICE_MMIO_GET(name) returns a suitable linear memory address
  420. * for the MMIO region.
  421. *
  422. * If such operations are not required by the target hardware, this expands
  423. * to nothing.
  424. *
  425. * This should be called from the driver's init function, once for each
  426. * MMIO region that needs to be mapped.
  427. *
  428. * This macro requires that the macros DEV_DATA and DEV_CFG are locally
  429. * defined and return properly typed pointers to the particular dev_data
  430. * and config structs for this driver.
  431. *
  432. * The flags argument is currently used for caching mode, which should be
  433. * one of the DEVICE_CACHE_* macros. Unused bits are reserved for future
  434. * expansion.
  435. *
  436. * @param dev Device object
  437. * @param name Member name for MMIO information, as declared with
  438. * DEVICE_MMIO_NAMED_RAM/DEVICE_MMIO_NAMED_ROM
  439. * @param flags One of the DEVICE_CACHE_* caching modes
  440. */
  441. #ifdef DEVICE_MMIO_IS_IN_RAM
  442. #define DEVICE_MMIO_NAMED_MAP(dev, name, flags) \
  443. device_map(DEVICE_MMIO_NAMED_RAM_PTR((dev), name), \
  444. (DEVICE_MMIO_NAMED_ROM_PTR((dev), name)->phys_addr), \
  445. (DEVICE_MMIO_NAMED_ROM_PTR((dev), name)->size), \
  446. (flags))
  447. #else
  448. #define DEVICE_MMIO_NAMED_MAP(dev, name, flags) do { } while (0)
  449. #endif
  450. /**
  451. * @def DEVICE_MMIO_NAMED_GET(dev, name)
  452. *
  453. * @brief Obtain a named MMIO address for a device
  454. *
  455. * This macro returns the MMIO base address for a named region from the
  456. * appropriate place within the device object's linked data structures.
  457. *
  458. * This is for drivers which have multiple MMIO regions.
  459. *
  460. * This macro requires that the macros DEV_DATA and DEV_CFG are locally
  461. * defined and return properly typed pointers to the particular dev_data
  462. * and config structs for this driver.
  463. *
  464. * @see DEVICE_MMIO_GET
  465. *
  466. * @param dev Device object
  467. * @param name Member name for MMIO information, as declared with
  468. * DEVICE_MMIO_NAMED_RAM/DEVICE_MMIO_NAMED_ROM
  469. * @return mm_reg_t linear address of the MMIO region
  470. */
  471. #ifdef DEVICE_MMIO_IS_IN_RAM
  472. #define DEVICE_MMIO_NAMED_GET(dev, name) \
  473. (*DEVICE_MMIO_NAMED_RAM_PTR((dev), name))
  474. #else
  475. #define DEVICE_MMIO_NAMED_GET(dev, name) \
  476. ((DEVICE_MMIO_NAMED_ROM_PTR((dev), name))->addr)
  477. #endif /* DEVICE_MMIO_IS_IN_RAM */
  478. /** @} */
  479. /**
  480. * @defgroup device-mmio-toplevel Top-level MMIO region macros
  481. * @ingroup device-mmio
  482. *
  483. * For drivers which do not use Zephyr's driver model and do not
  484. * associate struct device with a driver instance. Top-level storage
  485. * is used instead, with either global or static scope.
  486. *
  487. * This is often useful for interrupt controller and timer drivers.
  488. *
  489. * Currently PCIe devices are not well-supported with this set of macros.
  490. * Either use Zephyr's driver model for these kinds of devices, or
  491. * manage memory manually with calls to device_map().
  492. *
  493. * @{
  494. */
  495. #define Z_TOPLEVEL_ROM_NAME(name) _CONCAT(z_mmio_rom__, name)
  496. #define Z_TOPLEVEL_RAM_NAME(name) _CONCAT(z_mmio_ram__, name)
  497. /**
  498. * @def DEVICE_MMIO_TOPLEVEL(name, node_id)
  499. *
  500. * @brief Declare top-level storage for MMIO information, global scope
  501. *
  502. * This is intended for drivers which do not use Zephyr's driver model
  503. * of config/dev_data linked to a struct device.
  504. *
  505. * Instead, this is a top-level declaration for the driver's C file.
  506. * The scope of this declaration is global and may be referenced by
  507. * other C files, using DEVICE_MMIO_TOPLEVEL_DECLARE.
  508. *
  509. * @param name Base symbol name
  510. * @param node_id Device-tree node identifier for this region
  511. */
  512. #ifdef DEVICE_MMIO_IS_IN_RAM
  513. #define DEVICE_MMIO_TOPLEVEL(name, node_id) \
  514. __pinned_bss \
  515. mm_reg_t Z_TOPLEVEL_RAM_NAME(name); \
  516. __pinned_rodata \
  517. const struct z_device_mmio_rom Z_TOPLEVEL_ROM_NAME(name) = \
  518. Z_DEVICE_MMIO_ROM_INITIALIZER(node_id)
  519. #else
  520. #define DEVICE_MMIO_TOPLEVEL(name, node_id) \
  521. __pinned_rodata \
  522. const struct z_device_mmio_rom Z_TOPLEVEL_ROM_NAME(name) = \
  523. Z_DEVICE_MMIO_ROM_INITIALIZER(node_id)
  524. #endif /* DEVICE_MMIO_IS_IN_RAM */
  525. /**
  526. * @def DEVICE_MMIO_TOPLEVEL_DECLARE(name)
  527. *
  528. * Provide an extern reference to a top-level MMIO region
  529. *
  530. * If a top-level MMIO region defined with DEVICE_MMIO_DEFINE needs to be
  531. * referenced from other C files, this macro provides the necessary extern
  532. * definitions.
  533. *
  534. * @see DEVICE_MMIO_TOPLEVEL
  535. *
  536. * @param name Name of the top-level MMIO region
  537. */
  538. #ifdef DEVICE_MMIO_IS_IN_RAM
  539. #define DEVICE_MMIO_TOPLEVEL_DECLARE(name) \
  540. extern mm_reg_t Z_TOPLEVEL_RAM_NAME(name); \
  541. extern const struct z_device_mmio_rom Z_TOPLEVEL_ROM_NAME(name)
  542. #else
  543. #define DEVICE_MMIO_TOPLEVEL_DECLARE(name) \
  544. extern const struct z_device_mmio_rom Z_TOPLEVEL_ROM_NAME(name)
  545. #endif /* DEVICE_MMIO_IS_IN_RAM */
  546. /**
  547. * @def DEVICE_MMIO_TOPLEVEL_STATIC(name, node_id)
  548. *
  549. * @brief Declare top-level storage for MMIO information, static scope
  550. *
  551. * This is intended for drivers which do not use Zephyr's driver model
  552. * of config/dev_data linked to a struct device.
  553. *
  554. * Instead, this is a top-level declaration for the driver's C file.
  555. * The scope of this declaration is static.
  556. *
  557. * @param name Name of the top-level MMIO region
  558. * @param node_id Device-tree node identifier for this region
  559. */
  560. #ifdef DEVICE_MMIO_IS_IN_RAM
  561. #define DEVICE_MMIO_TOPLEVEL_STATIC(name, node_id) \
  562. __pinned_bss \
  563. static mm_reg_t Z_TOPLEVEL_RAM_NAME(name); \
  564. __pinned_rodata \
  565. static const struct z_device_mmio_rom Z_TOPLEVEL_ROM_NAME(name) = \
  566. Z_DEVICE_MMIO_ROM_INITIALIZER(node_id)
  567. #else
  568. #define DEVICE_MMIO_TOPLEVEL_STATIC(name, node_id) \
  569. __pinned_rodata \
  570. static const struct z_device_mmio_rom Z_TOPLEVEL_ROM_NAME(name) = \
  571. Z_DEVICE_MMIO_ROM_INITIALIZER(node_id)
  572. #endif /* DEVICE_MMIO_IS_IN_RAM */
  573. #ifdef DEVICE_MMIO_IS_IN_RAM
  574. /**
  575. * @def DEVICE_MMIO_TOPLEVEL_RAM_PTR(name)
  576. *
  577. * @brief Return a pointer to the RAM storage for a device's toplevel MMIO
  578. * address.
  579. *
  580. * @param name Name of toplevel MMIO region
  581. * @retval mm_reg_t pointer to storage location
  582. */
  583. #define DEVICE_MMIO_TOPLEVEL_RAM_PTR(name) &Z_TOPLEVEL_RAM_NAME(name)
  584. #endif /* DEVICE_MMIO_IS_IN_RAM */
  585. /**
  586. * @def DEVICE_MMIO_TOPLEVEL_ROM_PTR(name)
  587. *
  588. * Return a pointer to the ROM-based storage area for a toplevel MMIO region.
  589. *
  590. * @param name MMIO region name
  591. * @retval struct device_mmio_rom * pointer to storage location
  592. */
  593. #define DEVICE_MMIO_TOPLEVEL_ROM_PTR(name) &Z_TOPLEVEL_ROM_NAME(name)
  594. /**
  595. * @def DEVICE_MMIO_TOPLEVEL_MAP(name, flags)
  596. *
  597. * @brief Set up memory for a driver'sMMIO region
  598. *
  599. * This performs the necessary MMU virtual memory mapping
  600. * such that DEVICE_MMIO_GET() returns a suitable linear memory address
  601. * for the MMIO region.
  602. *
  603. * If such operations are not required by the target hardware, this expands
  604. * to nothing.
  605. *
  606. * This should be called once from the driver's init function.
  607. *
  608. * The flags argument is currently used for caching mode, which should be
  609. * one of the DEVICE_CACHE_* macros. Unused bits are reserved for future
  610. * expansion.
  611. *
  612. * @param name Name of the top-level MMIO region
  613. * @param flags One of the DEVICE_CACHE_* caching modes
  614. */
  615. #ifdef DEVICE_MMIO_IS_IN_RAM
  616. #define DEVICE_MMIO_TOPLEVEL_MAP(name, flags) \
  617. device_map(&Z_TOPLEVEL_RAM_NAME(name), \
  618. Z_TOPLEVEL_ROM_NAME(name).phys_addr, \
  619. Z_TOPLEVEL_ROM_NAME(name).size, flags)
  620. #else
  621. #define DEVICE_MMIO_TOPLEVEL_MAP(name, flags) do { } while (0)
  622. #endif
  623. /**
  624. * @def DEVICE_MMIO_TOPLEVEL_GET(name)
  625. *
  626. * @brief Obtain the MMIO address for a device declared top-level
  627. *
  628. * @see DEVICE_MMIO_GET
  629. *
  630. * @param name Name of the top-level MMIO region
  631. * @return mm_reg_t linear address of the MMIO region
  632. */
  633. #ifdef DEVICE_MMIO_IS_IN_RAM
  634. #define DEVICE_MMIO_TOPLEVEL_GET(name) \
  635. ((mm_reg_t)Z_TOPLEVEL_RAM_NAME(name))
  636. #else
  637. #define DEVICE_MMIO_TOPLEVEL_GET(name) \
  638. ((mm_reg_t)Z_TOPLEVEL_ROM_NAME(name).addr)
  639. #endif
  640. /** @} */
  641. #endif /* ZEPHYR_INCLUDE_SYS_DEVICE_MMIO_H */