flash.h 16 KB

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