Select one of the symbols to view example projects that use it.
 
Outline
#include "esp_flash.h"
#include "esp_attr.h"
esp_flash_t
esp_flash_t
spi_flash_chip_t
flash_chip_op_timeout_t
spi_flash_register_t
spi_flash_caps_t
spi_flash_chip_t
esp_flash_registered_chips;
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/spi_flash/include/spi_flash_chip_driver.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2015-2023 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #pragma once #include "esp_flash.h" #include "esp_attr.h" struct esp_flash_t; typedef struct esp_flash_t esp_flash_t; typedef struct spi_flash_chip_t spi_flash_chip_t; /** Timeout configurations for flash operations, all in us */ typedef struct { uint32_t idle_timeout; ///< Default timeout for other commands to be sent by host and get done by flash uint32_t chip_erase_timeout; ///< Timeout for chip erase operation uint32_t block_erase_timeout; ///< Timeout for block erase operation uint32_t sector_erase_timeout; ///< Timeout for sector erase operation uint32_t page_program_timeout; ///< Timeout for page program operation }{ ... } flash_chip_op_timeout_t; typedef enum { SPI_FLASH_REG_STATUS = 1, }{ ... } spi_flash_register_t; typedef enum { SPI_FLASH_CHIP_CAP_SUSPEND = BIT(0), ///< Flash chip support suspend feature. SPI_FLASH_CHIP_CAP_32MB_SUPPORT = BIT(1), ///< Flash chip driver support flash size larger than 32M Bytes. SPI_FLASH_CHIP_CAP_UNIQUE_ID = BIT(2), ///< Flash chip driver support read the flash unique id. }{ ... } spi_flash_caps_t; /** @brief SPI flash chip driver definition structure. * * The chip driver structure contains chip-specific pointers to functions to perform SPI flash operations, and some * chip-specific numeric values. * * @note This is not a public API. These functions are called from the public API (declared in * esp_flash.h). They assume the caller has already validated arguments and enabled relevant protections * (disabling flash cache, prevent concurrent SPI access, etc.) * * Do not call chip driver functions directly in other contexts. * * A generic driver for generic chips and its related operations are defined in * spi_flash_chip_generic.h which can be used as building blocks for written * new/specific SPI flash chip drivers. * * @note All of these functions may be called with SPI flash cache disabled, so must only ever access IRAM/DRAM/ROM. *//* ... */ struct spi_flash_chip_t { const char *name; ///< Name of the chip driver const flash_chip_op_timeout_t *timeout; ///< Timeout configuration for this chip /* Probe to detect if a supported SPI flash chip is found. * * Attempts to configure 'chip' with these operations and probes for a matching SPI flash chip. * * Auto-detection of a SPI flash chip calls this function in turn on each registered driver (see esp_flash_registered_flash_drivers). * * ID - as read by spi_flash_generic_read_id() - is supplied so each probe * function doesn't need to unnecessarily read ID, but probe is permitted * to interrogate flash in any non-destructive way. * * It is permissible for the driver to modify the 'chip' structure if probing succeeds (specifically, to assign something to the * driver_data pointer if that is useful for the driver.) * * @return ESP_OK if probing was successful, an error otherwise. Driver may * assume that returning ESP_OK means it has claimed this chip. *//* ... */ esp_err_t (*probe)(esp_flash_t *chip, uint32_t flash_id); esp_err_t (*reset)(esp_flash_t *chip); /* Detect SPI flash size * * Interrogate the chip to detect its size. *//* ... */ esp_err_t (*detect_size)(esp_flash_t *chip, uint32_t *size); /* Erase the entire chip Caller has verified the chip is not write protected. *//* ... */ esp_err_t (*erase_chip)(esp_flash_t *chip); /* Erase a sector of the chip. Sector size is specified in the 'sector_size' field. sector_address is an offset in bytes. Caller has verified that this sector should be non-write-protected. *//* ... */ esp_err_t (*erase_sector)(esp_flash_t *chip, uint32_t sector_address); /* Erase a multi-sector block of the chip. Block size is specified in the 'block_erase_size' field. sector_address is an offset in bytes. Caller has verified that this block should be non-write-protected. *//* ... */ esp_err_t (*erase_block)(esp_flash_t *chip, uint32_t block_address); uint32_t sector_size; /* Sector is minimum erase size */ uint32_t block_erase_size; /* Optimal (fastest) block size for multi-sector erases on this chip */ /* Read the write protect status of the entire chip. */ esp_err_t (*get_chip_write_protect)(esp_flash_t *chip, bool *out_write_protected); /* Set the write protect status of the entire chip. */ esp_err_t (*set_chip_write_protect)(esp_flash_t *chip, bool chip_write_protect); /* Number of individually write protectable regions on this chip. Range 0-63. */ uint8_t num_protectable_regions; /* Pointer to an array describing each protectable region. Should have num_protectable_regions elements. */ const esp_flash_region_t *protectable_regions; /* Get a bitmask describing all protectable regions on the chip. Each bit represents one entry in the protectable_regions array, ie bit (1<<N) is set then the region at array entry N is write protected. *//* ... */ esp_err_t (*get_protected_regions)(esp_flash_t *chip, uint64_t *regions); /* Set protectable regions on the chip. Each bit represents on entry in the protectable regions array. */ esp_err_t (*set_protected_regions)(esp_flash_t *chip, uint64_t regions); /* Read data from the chip. * * Before calling this function, the caller will have called chip->drv->set_read_mode(chip) in order to configure the chip's read mode correctly. *//* ... */ esp_err_t (*read)(esp_flash_t *chip, void *buffer, uint32_t address, uint32_t length); /* Write any amount of data to the chip. *//* ... */ esp_err_t (*write)(esp_flash_t *chip, const void *buffer, uint32_t address, uint32_t length); /* Use the page program command to write data to the chip. * * This function is expected to be called by chip->drv->write (if the * chip->drv->write implementation doesn't call it then it can be left as NULL.) * * - The length argument supplied to this function is at most 'page_size' bytes. * * - The region between 'address' and 'address + length' will not cross a page_size aligned boundary (the write * implementation is expected to split such a write into two before calling page_program.) *//* ... */ esp_err_t (*program_page)(esp_flash_t *chip, const void *buffer, uint32_t address, uint32_t length); /* Page size as written by the page_program function. Usually 256 bytes. */ uint32_t page_size; /* Perform an encrypted write to the chip, using internal flash encryption hardware. */ esp_err_t (*write_encrypted)(esp_flash_t *chip, const void *buffer, uint32_t address, uint32_t length); /* Wait for the SPI flash chip to be idle (any write operation to be complete.) This function is both called from the higher-level API functions, and from other functions in this structure. timeout_ms should be a timeout (in milliseconds) before the function returns ESP_ERR_TIMEOUT. This is useful to avoid hanging if the chip is otherwise unresponsive (ie returns all 0xFF or similar.) *//* ... */ esp_err_t (*wait_idle)(esp_flash_t *chip, uint32_t timeout_us); /* Configure both the SPI host and the chip for the read mode specified in chip->read_mode. * * This function is called by the higher-level API before the 'read' function is called. * * Can return ESP_ERR_FLASH_UNSUPPORTED_HOST or ESP_ERR_FLASH_UNSUPPORTED_CHIP if the specified mode is unsupported. *//* ... */ esp_err_t (*set_io_mode)(esp_flash_t *chip); /* * Get whether the Quad Enable (QE) is set. (*out_io_mode)=SPI_FLASH_QOUT if * enabled, otherwise disabled *//* ... */ esp_err_t (*get_io_mode)(esp_flash_t *chip, esp_flash_io_mode_t* out_io_mode); /* * Read the chip ID. Called when chip driver is set, but we want to know the exact chip id (to * get the size, etc.). *//* ... */ esp_err_t (*read_id)(esp_flash_t *chip, uint32_t* out_chip_id); /* * Read the requested register (status, etc.). *//* ... */ esp_err_t (*read_reg)(esp_flash_t *chip, spi_flash_register_t reg_id, uint32_t* out_reg); /** Yield to other tasks. Called during erase operations. */ esp_err_t (*yield)(esp_flash_t *chip, uint32_t wip); /** Setup flash suspend configuration. */ esp_err_t (*sus_setup)(esp_flash_t *chip); /** * Read the chip unique ID. *//* ... */ esp_err_t (*read_unique_id)(esp_flash_t *chip, uint64_t* flash_unique_id); /** * Get the capabilities of the flash chip. See SPI_FLASH_CHIP_CAP_* macros as reference. *//* ... */ spi_flash_caps_t (*get_chip_caps)(esp_flash_t *chip); /** * Configure the host registers to use the specified read mode set in the ``chip->read_mode``. *//* ... */ esp_err_t (*config_host_io_mode)(esp_flash_t *chip, uint32_t flags); }{ ... }; /* Pointer to an array of pointers to all known drivers for flash chips. This array is used by esp_flash_init() to detect the flash chip driver, if none is supplied by the caller. Array is terminated with a NULL pointer. This pointer can be overwritten with a pointer to a new array, to update the list of known flash chips. *//* ... */ extern const spi_flash_chip_t **esp_flash_registered_chips;
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.