Zephyr API Documentation  3.6.0
A Scalable Open Source RTOS
3.6.0
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
flash.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2017 Nordic Semiconductor ASA
3 * Copyright (c) 2016 Intel Corporation
4 *
5 * SPDX-License-Identifier: Apache-2.0
6 */
7
13#ifndef ZEPHYR_INCLUDE_DRIVERS_FLASH_H_
14#define ZEPHYR_INCLUDE_DRIVERS_FLASH_H_
15
23#include <errno.h>
24
25#include <zephyr/types.h>
26#include <stddef.h>
27#include <sys/types.h>
28#include <zephyr/device.h>
29
30#ifdef __cplusplus
31extern "C" {
32#endif
33
34#if defined(CONFIG_FLASH_PAGE_LAYOUT)
36 size_t pages_count; /* count of pages sequence of the same size */
37 size_t pages_size;
38};
39#endif /* CONFIG_FLASH_PAGE_LAYOUT */
40
58 const size_t write_block_size;
59 uint8_t erase_value; /* Byte value of erased flash */
60};
61
71typedef int (*flash_api_read)(const struct device *dev, off_t offset,
72 void *data,
73 size_t len);
82typedef int (*flash_api_write)(const struct device *dev, off_t offset,
83 const void *data, size_t len);
84
93typedef int (*flash_api_erase)(const struct device *dev, off_t offset,
94 size_t size);
95
96typedef const struct flash_parameters* (*flash_api_get_parameters)(const struct device *dev);
97
98#if defined(CONFIG_FLASH_PAGE_LAYOUT)
120typedef void (*flash_api_pages_layout)(const struct device *dev,
121 const struct flash_pages_layout **layout,
122 size_t *layout_size);
123#endif /* CONFIG_FLASH_PAGE_LAYOUT */
124
125typedef int (*flash_api_sfdp_read)(const struct device *dev, off_t offset,
126 void *data, size_t len);
127typedef int (*flash_api_read_jedec_id)(const struct device *dev, uint8_t *id);
128typedef int (*flash_api_ex_op)(const struct device *dev, uint16_t code,
129 const uintptr_t in, void *out);
130
131__subsystem struct flash_driver_api {
136#if defined(CONFIG_FLASH_PAGE_LAYOUT)
138#endif /* CONFIG_FLASH_PAGE_LAYOUT */
139#if defined(CONFIG_FLASH_JESD216_API)
142#endif /* CONFIG_FLASH_JESD216_API */
143#if defined(CONFIG_FLASH_EX_OP_ENABLED)
144 flash_api_ex_op ex_op;
145#endif /* CONFIG_FLASH_EX_OP_ENABLED */
146};
147
170__syscall int flash_read(const struct device *dev, off_t offset, void *data,
171 size_t len);
172
173static inline int z_impl_flash_read(const struct device *dev, off_t offset,
174 void *data,
175 size_t len)
176{
177 const struct flash_driver_api *api =
178 (const struct flash_driver_api *)dev->api;
179
180 return api->read(dev, offset, data, len);
181}
182
201__syscall int flash_write(const struct device *dev, off_t offset,
202 const void *data,
203 size_t len);
204
205static inline int z_impl_flash_write(const struct device *dev, off_t offset,
206 const void *data, size_t len)
207{
208 const struct flash_driver_api *api =
209 (const struct flash_driver_api *)dev->api;
210 int rc;
211
212 rc = api->write(dev, offset, data, len);
213
214 return rc;
215}
216
238__syscall int flash_erase(const struct device *dev, off_t offset, size_t size);
239
240static inline int z_impl_flash_erase(const struct device *dev, off_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
247 rc = api->erase(dev, offset, size);
248
249 return rc;
250}
251
253 off_t start_offset; /* offset from the base of flash address */
254 size_t size;
256};
257
258#if defined(CONFIG_FLASH_PAGE_LAYOUT)
268__syscall int flash_get_page_info_by_offs(const struct device *dev,
269 off_t offset,
270 struct flash_pages_info *info);
271
281__syscall int flash_get_page_info_by_idx(const struct device *dev,
282 uint32_t page_index,
283 struct flash_pages_info *info);
284
292__syscall size_t flash_get_page_count(const struct device *dev);
293
304typedef bool (*flash_page_cb)(const struct flash_pages_info *info, void *data);
305
318void flash_page_foreach(const struct device *dev, flash_page_cb cb,
319 void *data);
320#endif /* CONFIG_FLASH_PAGE_LAYOUT */
321
322#if defined(CONFIG_FLASH_JESD216_API)
343__syscall int flash_sfdp_read(const struct device *dev, off_t offset,
344 void *data, size_t len);
345
346static inline int z_impl_flash_sfdp_read(const struct device *dev,
347 off_t offset,
348 void *data, size_t len)
349{
350 int rv = -ENOTSUP;
351 const struct flash_driver_api *api =
352 (const struct flash_driver_api *)dev->api;
353
354 if (api->sfdp_read != NULL) {
355 rv = api->sfdp_read(dev, offset, data, len);
356 }
357 return rv;
358}
359
371__syscall int flash_read_jedec_id(const struct device *dev, uint8_t *id);
372
373static inline int z_impl_flash_read_jedec_id(const struct device *dev,
374 uint8_t *id)
375{
376 int rv = -ENOTSUP;
377 const struct flash_driver_api *api =
378 (const struct flash_driver_api *)dev->api;
379
380 if (api->read_jedec_id != NULL) {
381 rv = api->read_jedec_id(dev, id);
382 }
383 return rv;
384}
385#endif /* CONFIG_FLASH_JESD216_API */
386
398__syscall size_t flash_get_write_block_size(const struct device *dev);
399
400static inline size_t z_impl_flash_get_write_block_size(const struct device *dev)
401{
402 const struct flash_driver_api *api =
403 (const struct flash_driver_api *)dev->api;
404
405 return api->get_parameters(dev)->write_block_size;
406}
407
408
420__syscall const struct flash_parameters *flash_get_parameters(const struct device *dev);
421
422static inline const struct flash_parameters *z_impl_flash_get_parameters(const struct device *dev)
423{
424 const struct flash_driver_api *api =
425 (const struct flash_driver_api *)dev->api;
426
427 return api->get_parameters(dev);
428}
429
455__syscall int flash_ex_op(const struct device *dev, uint16_t code,
456 const uintptr_t in, void *out);
457
458/*
459 * Extended operation interface provides flexible way for supporting flash
460 * controller features. Code space is divided equally into Zephyr codes
461 * (MSb == 0) and vendor codes (MSb == 1). This way we can easily add extended
462 * operations to the drivers without cluttering the API or problems with API
463 * incompatibility. Extended operation can be promoted from vendor codes to
464 * Zephyr codes if the feature is available in most flash controllers and
465 * can be represented in the same way.
466 *
467 * It's not forbidden to have operation in Zephyr codes and vendor codes for
468 * the same functionality. In this case, vendor operation could provide more
469 * specific access when abstraction in Zephyr counterpart is insufficient.
470 */
471#define FLASH_EX_OP_VENDOR_BASE 0x8000
472#define FLASH_EX_OP_IS_VENDOR(c) ((c) & FLASH_EX_OP_VENDOR_BASE)
473
478 /*
479 * Reset flash device.
480 */
482};
483
484static inline int z_impl_flash_ex_op(const struct device *dev, uint16_t code,
485 const uintptr_t in, void *out)
486{
487#if defined(CONFIG_FLASH_EX_OP_ENABLED)
488 const struct flash_driver_api *api =
489 (const struct flash_driver_api *)dev->api;
490
491 if (api->ex_op == NULL) {
492 return -ENOTSUP;
493 }
494
495 return api->ex_op(dev, code, in, out);
496#else
497 ARG_UNUSED(dev);
498 ARG_UNUSED(code);
499 ARG_UNUSED(in);
500 ARG_UNUSED(out);
501
502 return -ENOSYS;
503#endif /* CONFIG_FLASH_EX_OP_ENABLED */
504}
505
506#ifdef __cplusplus
507}
508#endif
509
514#include <syscalls/flash.h>
515
516#endif /* ZEPHYR_INCLUDE_DRIVERS_FLASH_H_ */
Incorrect memory layout
Definition: bindesc.h:288
System error numbers.
int flash_erase(const struct device *dev, off_t offset, size_t size)
Erase part or all of a flash memory.
const struct flash_parameters * flash_get_parameters(const struct device *dev)
Get pointer to flash_parameters structure.
void flash_page_foreach(const struct device *dev, flash_page_cb cb, void *data)
Iterate over all flash pages on a device.
bool(* flash_page_cb)(const struct flash_pages_info *info, void *data)
Callback type for iterating over flash pages present on a device.
Definition: flash.h:304
int flash_ex_op(const struct device *dev, uint16_t code, const uintptr_t in, void *out)
Execute flash extended operation on given device.
int flash_write(const struct device *dev, off_t offset, const void *data, size_t len)
Write buffer into flash memory.
int flash_sfdp_read(const struct device *dev, off_t offset, void *data, size_t len)
Read data from Serial Flash Discoverable Parameters.
int flash_read(const struct device *dev, off_t offset, void *data, size_t len)
Read data from flash.
size_t flash_get_write_block_size(const struct device *dev)
Get the minimum write block size supported by the driver.
int flash_get_page_info_by_idx(const struct device *dev, uint32_t page_index, struct flash_pages_info *info)
Get the size and start offset of flash page of certain index.
int flash_read_jedec_id(const struct device *dev, uint8_t *id)
Read the JEDEC ID from a compatible flash device.
flash_ex_op_types
Enumeration for extra flash operations.
Definition: flash.h:477
size_t flash_get_page_count(const struct device *dev)
Get the total number of flash pages.
int flash_get_page_info_by_offs(const struct device *dev, off_t offset, struct flash_pages_info *info)
Get the size and start offset of flash page at certain flash offset.
@ FLASH_EX_OP_RESET
Definition: flash.h:481
int(* flash_api_read_jedec_id)(const struct device *dev, uint8_t *id)
Definition: flash.h:127
int(* flash_api_erase)(const struct device *dev, off_t offset, size_t size)
Flash erase implementation handler type.
Definition: flash.h:93
const struct flash_parameters *(* flash_api_get_parameters)(const struct device *dev)
Definition: flash.h:96
int(* flash_api_read)(const struct device *dev, off_t offset, void *data, size_t len)
Definition: flash.h:71
void(* flash_api_pages_layout)(const struct device *dev, const struct flash_pages_layout **layout, size_t *layout_size)
Retrieve a flash device's layout.
Definition: flash.h:120
int(* flash_api_sfdp_read)(const struct device *dev, off_t offset, void *data, size_t len)
Definition: flash.h:125
int(* flash_api_ex_op)(const struct device *dev, uint16_t code, const uintptr_t in, void *out)
Definition: flash.h:128
int(* flash_api_write)(const struct device *dev, off_t offset, const void *data, size_t len)
Flash write implementation handler type.
Definition: flash.h:82
#define ENOSYS
Function not implemented.
Definition: errno.h:83
#define ENOTSUP
Unsupported value.
Definition: errno.h:115
__INTPTR_TYPE__ off_t
Definition: types.h:36
#define bool
Definition: stdbool.h:13
__UINT32_TYPE__ uint32_t
Definition: stdint.h:90
__UINT8_TYPE__ uint8_t
Definition: stdint.h:88
__UINTPTR_TYPE__ uintptr_t
Definition: stdint.h:105
__UINT16_TYPE__ uint16_t
Definition: stdint.h:89
Runtime device structure (in ROM) per driver instance.
Definition: device.h:387
void * data
Address of the device instance private data.
Definition: device.h:397
const void * api
Address of the API structure exposed by the device instance.
Definition: device.h:393
Definition: flash.h:131
flash_api_sfdp_read sfdp_read
Definition: flash.h:140
flash_api_get_parameters get_parameters
Definition: flash.h:135
flash_api_pages_layout page_layout
Definition: flash.h:137
flash_api_read read
Definition: flash.h:132
flash_api_write write
Definition: flash.h:133
flash_api_erase erase
Definition: flash.h:134
flash_api_read_jedec_id read_jedec_id
Definition: flash.h:141
Definition: flash.h:252
size_t size
Definition: flash.h:254
off_t start_offset
Definition: flash.h:253
uint32_t index
Definition: flash.h:255
Definition: flash.h:35
size_t pages_size
Definition: flash.h:37
size_t pages_count
Definition: flash.h:36
Flash memory parameters.
Definition: flash.h:57
uint8_t erase_value
Definition: flash.h:59
const size_t write_block_size
Definition: flash.h:58