flash.h 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550
  1. /*
  2. * Copyright (c) 2017 Nordic Semiconductor ASA
  3. * Copyright (c) 2016 Intel Corporation
  4. *
  5. * SPDX-License-Identifier: Apache-2.0
  6. */
  7. /**
  8. * @file
  9. * @brief Public API for FLASH drivers
  10. */
  11. #ifndef ZEPHYR_INCLUDE_DRIVERS_FLASH_H_
  12. #define ZEPHYR_INCLUDE_DRIVERS_FLASH_H_
  13. /**
  14. * @brief FLASH internal Interface
  15. * @defgroup flash_internal_interface FLASH internal Interface
  16. * @ingroup io_interfaces
  17. * @{
  18. */
  19. #include <zephyr/types.h>
  20. #include <stddef.h>
  21. #include <sys/types.h>
  22. #include <device.h>
  23. #include <tracing/tracing.h>
  24. #ifdef __cplusplus
  25. extern "C" {
  26. #endif
  27. #if defined(CONFIG_FLASH_PAGE_LAYOUT)
  28. struct flash_pages_layout {
  29. size_t pages_count; /* count of pages sequence of the same size */
  30. size_t pages_size;
  31. };
  32. #endif /* CONFIG_FLASH_PAGE_LAYOUT */
  33. /**
  34. * @}
  35. */
  36. /**
  37. * @brief FLASH Interface
  38. * @defgroup flash_interface FLASH Interface
  39. * @ingroup io_interfaces
  40. * @{
  41. */
  42. /**
  43. * Flash memory parameters. Contents of this structure suppose to be
  44. * filled in during flash device initialization and stay constant
  45. * through a runtime.
  46. */
  47. struct flash_parameters {
  48. const size_t write_block_size;
  49. uint8_t erase_value; /* Byte value of erased flash */
  50. };
  51. /**
  52. * @}
  53. */
  54. /**
  55. * @addtogroup flash_internal_interface
  56. * @{
  57. */
  58. typedef int (*flash_api_read)(const struct device *dev, uint64_t offset,
  59. void *data,
  60. uint64_t len);
  61. /**
  62. * @brief Flash write implementation handler type
  63. *
  64. * @note Any necessary write protection management must be performed by
  65. * the driver, with the driver responsible for ensuring the "write-protect"
  66. * after the operation completes (successfully or not) matches the write-protect
  67. * state when the operation was started.
  68. */
  69. typedef int (*flash_api_write)(const struct device *dev, uint64_t offset,
  70. const void *data, uint64_t len);
  71. /**
  72. * @brief Flash erase implementation handler type
  73. *
  74. * @note Any necessary erase protection management must be performed by
  75. * the driver, with the driver responsible for ensuring the "erase-protect"
  76. * after the operation completes (successfully or not) matches the erase-protect
  77. * state when the operation was started.
  78. */
  79. typedef int (*flash_api_erase)(const struct device *dev, uint64_t offset,
  80. uint64_t size);
  81. /* This API is deprecated and will be removed in Zephyr 2.8. */
  82. typedef int (*flash_api_write_protection)(const struct device *dev,
  83. bool enable);
  84. typedef const struct flash_parameters* (*flash_api_get_parameters)(const struct device *dev);
  85. #if defined(CONFIG_FLASH_PAGE_LAYOUT)
  86. /**
  87. * @brief Retrieve a flash device's layout.
  88. *
  89. * A flash device layout is a run-length encoded description of the
  90. * pages on the device. (Here, "page" means the smallest erasable
  91. * area on the flash device.)
  92. *
  93. * For flash memories which have uniform page sizes, this routine
  94. * returns an array of length 1, which specifies the page size and
  95. * number of pages in the memory.
  96. *
  97. * Layouts for flash memories with nonuniform page sizes will be
  98. * returned as an array with multiple elements, each of which
  99. * describes a group of pages that all have the same size. In this
  100. * case, the sequence of array elements specifies the order in which
  101. * these groups occur on the device.
  102. *
  103. * @param dev Flash device whose layout to retrieve.
  104. * @param layout The flash layout will be returned in this argument.
  105. * @param layout_size The number of elements in the returned layout.
  106. */
  107. typedef void (*flash_api_pages_layout)(const struct device *dev,
  108. const struct flash_pages_layout **layout,
  109. size_t *layout_size);
  110. #endif /* CONFIG_FLASH_PAGE_LAYOUT */
  111. /**
  112. * @brief Flash flush implementation handler type
  113. *
  114. * @note flush the last pagesize to spinand flash at once.
  115. * @param dev Flash device whose layout to retrieve.
  116. * @param efficient Flush the last one page or flush all page and tbls.
  117. * Flush the last one page will be more efficient.
  118. */
  119. typedef int (*flash_api_flush)(const struct device *dev, bool efficient);
  120. typedef int (*flash_api_sfdp_read)(const struct device *dev, int64_t offset,
  121. void *data, uint64_t len);
  122. typedef int (*flash_api_read_jedec_id)(const struct device *dev, uint8_t *id);
  123. __subsystem struct flash_driver_api {
  124. flash_api_read read;
  125. flash_api_write write;
  126. flash_api_erase erase;
  127. flash_api_write_protection write_protection;
  128. flash_api_get_parameters get_parameters;
  129. #if defined(CONFIG_FLASH_PAGE_LAYOUT)
  130. flash_api_pages_layout page_layout;
  131. #endif /* CONFIG_FLASH_PAGE_LAYOUT */
  132. #if defined(CONFIG_FLASH_JESD216_API)
  133. flash_api_sfdp_read sfdp_read;
  134. flash_api_read_jedec_id read_jedec_id;
  135. #endif /* CONFIG_FLASH_JESD216_API */
  136. flash_api_flush flush;
  137. };
  138. /**
  139. * @}
  140. */
  141. /**
  142. * @addtogroup flash_interface
  143. * @{
  144. */
  145. /**
  146. * @brief Read data from flash
  147. *
  148. * All flash drivers support reads without alignment restrictions on
  149. * the read offset, the read size, or the destination address.
  150. *
  151. * @param dev : flash dev
  152. * @param offset : Offset (byte aligned) to read
  153. * @param data : Buffer to store read data
  154. * @param len : Number of bytes to read.
  155. *
  156. * @return 0 on success, negative errno code on fail.
  157. */
  158. __syscall int flash_read(const struct device *dev, uint64_t offset, void *data,
  159. size_t len);
  160. static inline int z_impl_flash_read(const struct device *dev, uint64_t offset,
  161. void *data,
  162. size_t len)
  163. {
  164. const struct flash_driver_api *api =
  165. (const struct flash_driver_api *)dev->api;
  166. int ret;
  167. sys_trace_u32x3(SYS_TRACE_ID_FLASH_READ, (uint32_t)dev, offset, len);
  168. ret = api->read(dev, offset, data, len);
  169. sys_trace_end_call_u32(SYS_TRACE_ID_FLASH_READ, (uint32_t)dev);
  170. return ret;
  171. }
  172. /**
  173. * @brief Write buffer into flash memory.
  174. *
  175. * All flash drivers support a source buffer located either in RAM or
  176. * SoC flash, without alignment restrictions on the source address.
  177. * Write size and offset must be multiples of the minimum write block size
  178. * supported by the driver.
  179. *
  180. * Any necessary write protection management is performed by the driver
  181. * write implementation itself.
  182. *
  183. * @param dev : flash device
  184. * @param offset : starting offset for the write
  185. * @param data : data to write
  186. * @param len : Number of bytes to write
  187. *
  188. * @return 0 on success, negative errno code on fail.
  189. */
  190. __syscall int flash_write(const struct device *dev, uint64_t offset,
  191. const void *data,
  192. size_t len);
  193. static inline int z_impl_flash_write(const struct device *dev, uint64_t offset,
  194. const void *data, size_t len)
  195. {
  196. const struct flash_driver_api *api =
  197. (const struct flash_driver_api *)dev->api;
  198. int rc;
  199. /* write protection management in this function exists for keeping
  200. * compatibility with out-of-tree drivers which are not aligned jet
  201. * with write-protection API depreciation.
  202. * This will be removed with flash_api_write_protection handler type.
  203. */
  204. //if (api->write_protection != NULL) {
  205. // rc = api->write_protection(dev, false);
  206. // if (rc) {
  207. // return rc;
  208. // }
  209. //}
  210. sys_trace_u32x3(SYS_TRACE_ID_FLASH_WRITE, (uint32_t)dev, offset, len);
  211. rc = api->write(dev, offset, data, len);
  212. sys_trace_end_call_u32(SYS_TRACE_ID_FLASH_READ, (uint32_t)dev);
  213. //if (api->write_protection != NULL) {
  214. //(void) api->write_protection(dev, true);
  215. //}
  216. return rc;
  217. }
  218. /**
  219. * @brief Erase part or all of a flash memory
  220. *
  221. * Acceptable values of erase size and offset are subject to
  222. * hardware-specific multiples of page size and offset. Please check
  223. * the API implemented by the underlying sub driver, for example by
  224. * using flash_get_page_info_by_offs() if that is supported by your
  225. * flash driver.
  226. *
  227. * Any necessary erase protection management is performed by the driver
  228. * erase implementation itself.
  229. *
  230. * @param dev : flash device
  231. * @param offset : erase area starting offset
  232. * @param size : size of area to be erased
  233. *
  234. * @return 0 on success, negative errno code on fail.
  235. *
  236. * @see flash_get_page_info_by_offs()
  237. * @see flash_get_page_info_by_idx()
  238. */
  239. __syscall int flash_erase(const struct device *dev, uint64_t offset, size_t size);
  240. static inline int z_impl_flash_erase(const struct device *dev, uint64_t offset,
  241. size_t size)
  242. {
  243. const struct flash_driver_api *api =
  244. (const struct flash_driver_api *)dev->api;
  245. int rc;
  246. /* write protection management in this function exists for keeping
  247. * compatibility with out-of-tree drivers which are not aligned jet
  248. * with write-protection API depreciation.
  249. * This will be removed with flash_api_write_protection handler type.
  250. */
  251. //if (api->write_protection != NULL) {
  252. //rc = api->write_protection(dev, false);
  253. //if (rc) {
  254. // return rc;
  255. //}
  256. //}
  257. sys_trace_u32x3(SYS_TRACE_ID_FLASH_ERASE, (uint32_t)dev, offset, size);
  258. rc = api->erase(dev, offset, size);
  259. sys_trace_end_call_u32(SYS_TRACE_ID_FLASH_ERASE, (uint32_t)dev);
  260. //if (api->write_protection != NULL) {
  261. //(void) api->write_protection(dev, true);
  262. //}
  263. return rc;
  264. }
  265. /**
  266. * @brief Enable or disable write protection for a flash memory
  267. *
  268. * This API is deprecated and will be removed in Zephyr 2.8.
  269. * It will be keep as No-Operation until removal.
  270. * Flash write/erase protection management has been moved to write and erase
  271. * operations implementations in flash driver shims. For Out-of-tree drivers
  272. * which are not updated yet flash write/erase protection management is done
  273. * in flash_erase() and flash_write() using deprecated <p>write_protection</p>
  274. * shim handler.
  275. *
  276. * @param dev : flash device
  277. * @param enable : enable or disable flash write protection
  278. *
  279. * @return 0 on success, negative errno code on fail.
  280. */
  281. __syscall int flash_write_protection_set(const struct device *dev,
  282. bool enable);
  283. static inline int z_impl_flash_write_protection_set(const struct device *dev,
  284. bool enable)
  285. {
  286. const struct flash_driver_api *api =
  287. (const struct flash_driver_api *)dev->api;
  288. if (api->write_protection != NULL) {
  289. api->write_protection(dev, enable);
  290. }
  291. return 0;
  292. }
  293. struct flash_pages_info {
  294. off_t start_offset; /* offset from the base of flash address */
  295. size_t size;
  296. uint32_t index;
  297. };
  298. #if defined(CONFIG_FLASH_PAGE_LAYOUT)
  299. /**
  300. * @brief Get the size and start offset of flash page at certain flash offset.
  301. *
  302. * @param dev flash device
  303. * @param offset Offset within the page
  304. * @param info Page Info structure to be filled
  305. *
  306. * @return 0 on success, -EINVAL if page of the offset doesn't exist.
  307. */
  308. __syscall int flash_get_page_info_by_offs(const struct device *dev,
  309. off_t offset,
  310. struct flash_pages_info *info);
  311. /**
  312. * @brief Get the size and start offset of flash page of certain index.
  313. *
  314. * @param dev flash device
  315. * @param page_index Index of the page. Index are counted from 0.
  316. * @param info Page Info structure to be filled
  317. *
  318. * @return 0 on success, -EINVAL if page of the index doesn't exist.
  319. */
  320. __syscall int flash_get_page_info_by_idx(const struct device *dev,
  321. uint32_t page_index,
  322. struct flash_pages_info *info);
  323. /**
  324. * @brief Get the total number of flash pages.
  325. *
  326. * @param dev flash device
  327. *
  328. * @return Number of flash pages.
  329. */
  330. __syscall size_t flash_get_page_count(const struct device *dev);
  331. /**
  332. * @brief Callback type for iterating over flash pages present on a device.
  333. *
  334. * The callback should return true to continue iterating, and false to halt.
  335. *
  336. * @param info Information for current page
  337. * @param data Private data for callback
  338. * @return True to continue iteration, false to halt iteration.
  339. * @see flash_page_foreach()
  340. */
  341. typedef bool (*flash_page_cb)(const struct flash_pages_info *info, void *data);
  342. /**
  343. * @brief Iterate over all flash pages on a device
  344. *
  345. * This routine iterates over all flash pages on the given device,
  346. * ordered by increasing start offset. For each page, it invokes the
  347. * given callback, passing it the page's information and a private
  348. * data object.
  349. *
  350. * @param dev Device whose pages to iterate over
  351. * @param cb Callback to invoke for each flash page
  352. * @param data Private data for callback function
  353. */
  354. void flash_page_foreach(const struct device *dev, flash_page_cb cb,
  355. void *data);
  356. #endif /* CONFIG_FLASH_PAGE_LAYOUT */
  357. #if defined(CONFIG_FLASH_JESD216_API)
  358. /**
  359. * @brief Read data from Serial Flash Discoverable Parameters
  360. *
  361. * This routine reads data from a serial flash device compatible with
  362. * the JEDEC JESD216 standard for encoding flash memory
  363. * characteristics.
  364. *
  365. * Availability of this API is conditional on selecting
  366. * @c CONFIG_FLASH_JESD216_API and support of that functionality in
  367. * the driver underlying @p dev.
  368. *
  369. * @param dev device from which parameters will be read
  370. * @param offset address within the SFDP region containing data of interest
  371. * @param data where the data to be read will be placed
  372. * @param len the number of bytes of data to be read
  373. *
  374. * @retval 0 on success
  375. * @retval -ENOTSUP if the flash driver does not support SFDP access
  376. * @retval negative values for other errors.
  377. */
  378. __syscall int flash_sfdp_read(const struct device *dev, off_t offset,
  379. void *data, size_t len);
  380. static inline int z_impl_flash_sfdp_read(const struct device *dev,
  381. off_t offset,
  382. void *data, size_t len)
  383. {
  384. int rv = -ENOTSUP;
  385. const struct flash_driver_api *api =
  386. (const struct flash_driver_api *)dev->api;
  387. if (api->sfdp_read != NULL) {
  388. rv = api->sfdp_read(dev, offset, data, len);
  389. }
  390. return rv;
  391. }
  392. /**
  393. * @brief Read the JEDEC ID from a compatible flash device.
  394. *
  395. * @param dev device from which id will be read
  396. * @param id pointer to a buffer of at least 3 bytes into which id
  397. * will be stored
  398. *
  399. * @retval 0 on successful store of 3-byte JEDEC id
  400. * @retval -ENOTSUP if flash driver doesn't support this function
  401. * @retval negative values for other errors
  402. */
  403. __syscall int flash_read_jedec_id(const struct device *dev, uint8_t *id);
  404. static inline int z_impl_flash_read_jedec_id(const struct device *dev,
  405. uint8_t *id)
  406. {
  407. int rv = -ENOTSUP;
  408. const struct flash_driver_api *api =
  409. (const struct flash_driver_api *)dev->api;
  410. if (api->read_jedec_id != NULL) {
  411. rv = api->read_jedec_id(dev, id);
  412. }
  413. return rv;
  414. }
  415. #endif /* CONFIG_FLASH_JESD216_API */
  416. /**
  417. * @brief Flash flush operation
  418. *
  419. * Flush operate should be excuted after flash_write. It can save the last page
  420. * in cache to spinand immediately.
  421. *
  422. * @param dev Flash device whose layout to retrieve.
  423. * @param efficient Flush the last one page or flush all page and tbls.
  424. * Flush the last one page will be more efficient.
  425. * @return 0 on success, negative errno code on fail.
  426. */
  427. __syscall int flash_flush(const struct device *dev, bool efficient);
  428. static inline int z_impl_flash_flush(const struct device *dev, bool efficient)
  429. {
  430. int rv = -ENOTSUP;
  431. const struct flash_driver_api *api =
  432. (const struct flash_driver_api *)dev->api;
  433. if (api->flush != NULL) {
  434. sys_trace_u32x2(SYS_TRACE_ID_FLASH_FLUSH, (uint32_t)dev, efficient);
  435. rv = api->flush(dev, efficient);
  436. sys_trace_end_call_u32(SYS_TRACE_ID_FLASH_FLUSH, (uint32_t)dev);
  437. }
  438. return rv;
  439. }
  440. /**
  441. * @brief Get the minimum write block size supported by the driver
  442. *
  443. * The write block size supported by the driver might differ from the write
  444. * block size of memory used because the driver might implements write-modify
  445. * algorithm.
  446. *
  447. * @param dev flash device
  448. *
  449. * @return write block size in bytes.
  450. */
  451. __syscall size_t flash_get_write_block_size(const struct device *dev);
  452. static inline size_t z_impl_flash_get_write_block_size(const struct device *dev)
  453. {
  454. const struct flash_driver_api *api =
  455. (const struct flash_driver_api *)dev->api;
  456. return api->get_parameters(dev)->write_block_size;
  457. }
  458. /**
  459. * @brief Get pointer to flash_parameters structure
  460. *
  461. * Returned pointer points to a structure that should be considered
  462. * constant through a runtime, regardless if it is defined in RAM or
  463. * Flash.
  464. * Developer is free to cache the structure pointer or copy its contents.
  465. *
  466. * @return pointer to flash_parameters structure characteristic for
  467. * the device.
  468. */
  469. __syscall const struct flash_parameters *flash_get_parameters(const struct device *dev);
  470. static inline const struct flash_parameters *z_impl_flash_get_parameters(const struct device *dev)
  471. {
  472. const struct flash_driver_api *api =
  473. (const struct flash_driver_api *)dev->api;
  474. return api->get_parameters(dev);
  475. }
  476. #ifdef __cplusplus
  477. }
  478. #endif
  479. /**
  480. * @}
  481. */
  482. #include <syscalls/flash.h>
  483. #endif /* ZEPHYR_INCLUDE_DRIVERS_FLASH_H_ */