Select one of the symbols to view example projects that use it.
 
Outline
#include <stdint.h>
#include "esp_flash.h"
#include "spi_flash_chip_driver.h"
spi_flash_chip_generic_probe(esp_flash_t *, uint32_t);
spi_flash_chip_generic_reset(esp_flash_t *);
spi_flash_chip_generic_detect_size(esp_flash_t *, uint32_t *);
spi_flash_chip_generic_erase_chip(esp_flash_t *);
spi_flash_chip_generic_erase_sector(esp_flash_t *, uint32_t);
spi_flash_chip_generic_erase_block(esp_flash_t *, uint32_t);
spi_flash_chip_generic_read(esp_flash_t *, void *, uint32_t, uint32_t);
spi_flash_chip_generic_page_program(esp_flash_t *, const void *, uint32_t, uint32_t);
spi_flash_chip_generic_write(esp_flash_t *, const void *, uint32_t, uint32_t);
spi_flash_chip_generic_write_encrypted(esp_flash_t *, const void *, uint32_t, uint32_t);
spi_flash_chip_generic_set_write_protect(esp_flash_t *, bool);
spi_flash_chip_generic_get_write_protect(esp_flash_t *, bool *);
#define ESP_FLASH_CHIP_GENERIC_NO_TIMEOUT
spi_flash_chip_generic_read_reg(esp_flash_t *, spi_flash_register_t, uint32_t *);
spi_flash_chip_generic_wait_idle(esp_flash_t *, uint32_t);
spi_flash_chip_generic_set_io_mode(esp_flash_t *);
spi_flash_chip_generic_get_io_mode(esp_flash_t *, esp_flash_io_mode_t *);
spi_flash_chip_generic_read_unique_id(esp_flash_t *, uint64_t *);
esp_flash_chip_generic;
esp_flash_rdsr_func_t
spi_flash_common_read_status_16b_rdsr_rdsr2(esp_flash_t *, uint32_t *);
spi_flash_common_read_status_8b_rdsr2(esp_flash_t *, uint32_t *);
spi_flash_common_read_status_8b_rdsr(esp_flash_t *, uint32_t *);
esp_flash_wrsr_func_t
spi_flash_common_write_status_8b_wrsr(esp_flash_t *, uint32_t);
spi_flash_common_write_status_16b_wrsr(esp_flash_t *, uint32_t);
spi_flash_common_write_status_8b_wrsr2(esp_flash_t *, uint32_t);
spi_flash_common_set_io_mode(esp_flash_t *, esp_flash_wrsr_func_t, esp_flash_rdsr_func_t, uint32_t);
spi_flash_chip_generic_config_host_io_mode(esp_flash_t *, uint32_t);
#define SPI_FLASH_CONFIG_IO_MODE_32B_ADDR
spi_flash_chip_generic_yield(esp_flash_t *, uint32_t);
spi_flash_chip_generic_suspend_cmd_conf(esp_flash_t *);
spi_flash_chip_generic_read_unique_id_none(esp_flash_t *, uint64_t *);
spi_flash_chip_generic_timeout;
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/spi_flash/include/spi_flash_chip_generic.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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
// Copyright 2015-2019 Espressif Systems (Shanghai) PTE LTD // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. #pragma once #include <stdint.h> #include "esp_flash.h" #include "spi_flash_chip_driver.h" /* * The 'chip_generic' SPI flash operations are a lowest common subset of SPI * flash commands, that work across most chips. * * These can be used as-is via the esp_flash_common_chip_driver chip_drv, or * they can be used as "base chip_drv" functions when creating a new * spi_flash_host_driver_t chip_drv structure. * * All of the functions in this header are internal functions, not part of a * public API. See esp_flash.h for the public API. *//* ... */ /** * @brief Generic probe function * * @param chip Pointer to SPI flash chip to use. If NULL, esp_flash_default_chip is substituted. * @param flash_id expected manufacture id. * * @return ESP_OK if the id read from chip->drv_read_id matches (always). *//* ... */ esp_err_t spi_flash_chip_generic_probe(esp_flash_t *chip, uint32_t flash_id); /** * @brief Generic reset function * * @param chip Pointer to SPI flash chip to use. If NULL, esp_flash_default_chip is substituted. * * @return ESP_OK if sending success, or error code passed from ``common_command`` or ``wait_idle`` functions of host driver. *//* ... */ esp_err_t spi_flash_chip_generic_reset(esp_flash_t *chip); /** * @brief Generic size detection function * * Tries to detect the size of chip by using the lower 4 bits of the chip->drv->read_id result = N, and assuming size is 2 ^ N. * * @param chip Pointer to SPI flash chip to use. If NULL, esp_flash_default_chip is substituted. * @param size Output of the detected size * * @return * - ESP_OK if success * - ESP_ERR_FLASH_UNSUPPORTED_CHIP if the manufacturer id is not correct, which may means an error in the reading * - or other error passed from the ``read_id`` function of host driver *//* ... */ esp_err_t spi_flash_chip_generic_detect_size(esp_flash_t *chip, uint32_t *size); /** * @brief Erase chip by using the generic erase chip command. * * @param chip Pointer to SPI flash chip to use. If NULL, esp_flash_default_chip is substituted. * * @return * - ESP_OK if success * - ESP_ERR_NOT_SUPPORTED if the chip is not able to perform the operation. This is indicated by WREN = 1 after the command is sent. * - or other error passed from the ``set_write_protect``, ``wait_idle`` or ``erase_chip`` function of host driver *//* ... */ esp_err_t spi_flash_chip_generic_erase_chip(esp_flash_t *chip); /** * @brief Erase sector by using the generic sector erase command. * * @param chip Pointer to SPI flash chip to use. If NULL, esp_flash_default_chip is substituted. * @param start_address Start address of the sector to erase * * @return * - ESP_OK if success * - ESP_ERR_NOT_SUPPORTED if the chip is not able to perform the operation. This is indicated by WREN = 1 after the command is sent. * - or other error passed from the ``set_write_protect``, ``wait_idle`` or ``erase_sector`` function of host driver *//* ... */ esp_err_t spi_flash_chip_generic_erase_sector(esp_flash_t *chip, uint32_t start_address); /** * @brief Erase block by the generic 64KB block erase command * * @param chip Pointer to SPI flash chip to use. If NULL, esp_flash_default_chip is substituted. * @param start_address Start address of the block to erase * * @return * - ESP_OK if success * - ESP_ERR_NOT_SUPPORTED if the chip is not able to perform the operation. This is indicated by WREN = 1 after the command is sent. * - or other error passed from the ``set_write_protect``, ``wait_idle`` or ``erase_block`` function of host driver *//* ... */ esp_err_t spi_flash_chip_generic_erase_block(esp_flash_t *chip, uint32_t start_address); /** * @brief Read from flash by using a read command that matches the programmed * read mode. * * @param chip Pointer to SPI flash chip to use. If NULL, esp_flash_default_chip is substituted. * @param buffer Buffer to hold the data read from flash * @param address Start address of the data on the flash * @param length Length to read * * @return always ESP_OK currently *//* ... */ esp_err_t spi_flash_chip_generic_read(esp_flash_t *chip, void *buffer, uint32_t address, uint32_t length); /** * @brief Perform a page program using the page program command. * * @note Length of each call should not excced the limitation in * ``chip->host->max_write_bytes``. This function is called in * ``spi_flash_chip_generic_write`` recursively until the whole page is * programmed. Strongly suggest to call ``spi_flash_chip_generic_write`` * instead. * * @param chip Pointer to SPI flash chip to use. If NULL, esp_flash_default_chip is substituted. * @param buffer Buffer holding the data to program * @param address Start address to write to flash * @param length Length to write, no longer than ``chip->host->max_write_bytes``. * * @return * - ESP_OK if success * - ESP_ERR_NOT_SUPPORTED if the chip is not able to perform the operation. This is indicated by WREN = 1 after the command is sent. * - or other error passed from the ``wait_idle`` or ``program_page`` function of host driver *//* ... */ esp_err_t spi_flash_chip_generic_page_program(esp_flash_t *chip, const void *buffer, uint32_t address, uint32_t length); /** * @brief Perform a generic write. Split the write buffer into page program * operations, and call chip->chip_drv->page-program() for each. * * @param chip Pointer to SPI flash chip to use. If NULL, esp_flash_default_chip is substituted. * @param buffer Buffer holding the data to program * @param address Start address to write to flash * @param length Length to write * * @return * - ESP_OK if success * - or other error passed from the ``wait_idle`` or ``program_page`` function of host driver *//* ... */ esp_err_t spi_flash_chip_generic_write(esp_flash_t *chip, const void *buffer, uint32_t address, uint32_t length); /** * @brief Perform a write using on-chip flash encryption. Not implemented yet. * * @param chip Pointer to SPI flash chip to use. If NULL, esp_flash_default_chip is substituted. * @param buffer Buffer holding the data to program * @param address Start address to write to flash * @param length Length to write * * @return always ESP_ERR_FLASH_UNSUPPORTED_HOST. *//* ... */ esp_err_t spi_flash_chip_generic_write_encrypted(esp_flash_t *chip, const void *buffer, uint32_t address, uint32_t length); /** * @brief Send the write enable or write disable command and verify the expected bit (1) in * the status register is set. * * @param chip Pointer to SPI flash chip to use. If NULL, esp_flash_default_chip is substituted. * @param write_protect true to enable write protection, false to send write enable. * * @return * - ESP_OK if success * - or other error passed from the ``wait_idle``, ``read_status`` or * ``set_write_protect`` function of host driver *//* ... */ esp_err_t spi_flash_chip_generic_set_write_protect(esp_flash_t *chip, bool write_protect); /** * @brief Check whether WEL (write enable latch) bit is set in the Status Register read from RDSR. * * @param chip Pointer to SPI flash chip to use. If NULL, esp_flash_default_chip is substituted. * @param out_write_protect Output of whether the write protect is set. * * @return * - ESP_OK if success * - or other error passed from the ``read_status`` function of host driver *//* ... */ esp_err_t spi_flash_chip_generic_get_write_protect(esp_flash_t *chip, bool *out_write_protect); #define ESP_FLASH_CHIP_GENERIC_NO_TIMEOUT -1 /** * @brief Send commands to read one of the reg of the chip * * @param chip Pointer to SPI flash chip to use. If NULL, esp_flash_default_chip is substituted. * @param reg_id Type of the register to read * @param out_reg Output of the register value * @return esp_err_t Error code passed from the ``read_status`` function of host driver. *//* ... */ esp_err_t spi_flash_chip_generic_read_reg(esp_flash_t* chip, spi_flash_register_t reg_id, uint32_t* out_reg); /** * @brief Read flash status via the RDSR command and wait for bit 0 (write in * progress bit) to be cleared. * * @param chip Pointer to SPI flash chip to use. If NULL, esp_flash_default_chip is substituted. * @param timeout_us Time to wait before timeout, in us. * * @return * - ESP_OK if success * - ESP_ERR_TIMEOUT if not idle before timeout * - or other error passed from the ``wait_idle`` or ``read_status`` function of host driver *//* ... */ esp_err_t spi_flash_chip_generic_wait_idle(esp_flash_t *chip, uint32_t timeout_us); /** * @brief Set the specified SPI read mode according to the data in the chip * context. Set quad enable status register bit if needed. * * @param chip Pointer to SPI flash chip to use. If NULL, esp_flash_default_chip is substituted. * * @return * - ESP_OK if success * - ESP_ERR_TIMEOUT if not idle before timeout * - or other error passed from the ``set_write_protect`` or ``common_command`` function of host driver *//* ... */ esp_err_t spi_flash_chip_generic_set_io_mode(esp_flash_t *chip); /** * Get whether the Quad Enable (QE) is set. * * @param chip Pointer to SPI flash chip to use. If NULL, esp_flash_default_chip is substituted. * @param out_quad_mode Pointer to store the output mode. * - SPI_FLASH_QOUT: QE is enabled * - otherwise: QE is disabled * * @return * - ESP_OK if success * - or other error passed from the ``common_command`` function of host driver *//* ... */ esp_err_t spi_flash_chip_generic_get_io_mode(esp_flash_t *chip, esp_flash_io_mode_t* out_quad_mode); /** * @brief Read the chip unique ID. * * @param chip Pointer to SPI flash chip to use. If NULL, esp_flash_default_chip is substituted. * @param flash_unique_id Pointer to store output unique id. * * @return * - ESP_OK if success * - ESP_ERR_NOT_SUPPORTED if the chip doesn't support read id. *//* ... */ esp_err_t spi_flash_chip_generic_read_unique_id(esp_flash_t *chip, uint64_t* flash_unique_id); /** * Generic SPI flash chip_drv, uses all the above functions for its operations. * In default autodetection, this is used as a catchall if a more specific * chip_drv is not found. *//* ... */ extern const spi_flash_chip_t esp_flash_chip_generic; /******************************************************************************* * Utilities *******************************************************************************//* ... */ /// Function pointer type for reading status register with QE bit. typedef esp_err_t (*esp_flash_rdsr_func_t)(esp_flash_t* chip, uint32_t* out_sr); /** * Use RDSR2 (35H) to read bit 15-8 of the SR, and RDSR (05H) to read bit 7-0. * * @param chip Pointer to SPI flash chip to use. * @param out_sr Pointer to buffer to hold the status register, 16 bits. * * @return ESP_OK if success, otherwise error code passed from the * `common_command` function of the host driver. *//* ... */ esp_err_t spi_flash_common_read_status_16b_rdsr_rdsr2(esp_flash_t* chip, uint32_t* out_sr); /** * Use RDSR2 (35H) to read bit 15-8 of the SR. * * @param chip Pointer to SPI flash chip to use. * @param out_sr Pointer to buffer to hold the status register, 8 bits. * * @return ESP_OK if success, otherwise error code passed from the * `common_command` function of the host driver. *//* ... */ esp_err_t spi_flash_common_read_status_8b_rdsr2(esp_flash_t* chip, uint32_t* out_sr); /** * Use RDSR (05H) to read bit 7-0 of the SR. * * @param chip Pointer to SPI flash chip to use. * @param out_sr Pointer to buffer to hold the status register, 8 bits. * * @return ESP_OK if success, otherwise error code passed from the * `common_command` function of the host driver. *//* ... */ esp_err_t spi_flash_common_read_status_8b_rdsr(esp_flash_t* chip, uint32_t* out_sr); /// Function pointer type for writing status register with QE bit. typedef esp_err_t (*esp_flash_wrsr_func_t)(esp_flash_t* chip, uint32_t sr); /** * Use WRSR (01H) to write bit 7-0 of the SR. * * @param chip Pointer to SPI flash chip to use. * @param sr Value of the status register to write, 8 bits. * * @return ESP_OK if success, otherwise error code passed from the * `common_command` function of the host driver. *//* ... */ esp_err_t spi_flash_common_write_status_8b_wrsr(esp_flash_t* chip, uint32_t sr); /** * Use WRSR (01H) to write bit 15-0 of the SR. * * @param chip Pointer to SPI flash chip to use. * @param sr Value of the status register to write, 16 bits. * * @return ESP_OK if success, otherwise error code passed from the * `common_command` function of the host driver. *//* ... */ esp_err_t spi_flash_common_write_status_16b_wrsr(esp_flash_t* chip, uint32_t sr); /** * Use WRSR2 (31H) to write bit 15-8 of the SR. * * @param chip Pointer to SPI flash chip to use. * @param sr Value of the status register to write, 8 bits. * * @return ESP_OK if success, otherwise error code passed from the * `common_command` function of the host driver. *//* ... */ esp_err_t spi_flash_common_write_status_8b_wrsr2(esp_flash_t* chip, uint32_t sr); /** * @brief Utility function for set_read_mode chip_drv function. If required, * set and check the QE bit in the flash chip to enable the QIO/QOUT mode. * * Most chip QE enable follows a common pattern, though commands to read/write * the status register may be different, as well as the position of QE bit. * * Registers to actually do Quad transtions and command to be sent in reading * should also be configured via * spi_flash_chip_generic_config_host_io_mode(). * * Note that the bit length and qe position of wrsr_func, rdsr_func and * qe_sr_bit should be consistent. * * @param chip Pointer to SPI flash chip to use. * @param wrsr_func Function pointer for writing the status register * @param rdsr_func Function pointer for reading the status register * @param qe_sr_bit status with the qe bit only. * * @return always ESP_OK (currently). *//* ... */ esp_err_t spi_flash_common_set_io_mode(esp_flash_t *chip, esp_flash_wrsr_func_t wrsr_func, esp_flash_rdsr_func_t rdsr_func, uint32_t qe_sr_bit); /** * @brief Configure the host registers to use the specified read mode set in * the ``chip->read_mode``. * * Usually called in chip_drv read() functions before actual reading * transactions. Also prepare the command to be sent in read functions. * * @param chip Pointer to SPI flash chip to use. If NULL, esp_flash_default_chip is substituted. * @param flags Special rules to configure io mode, (i.e. Whether 32 bit commands will be used (Currently only W25Q256 and GD25Q256 are supported)) * * @return * - ESP_OK if success * - ESP_ERR_FLASH_NOT_INITIALISED if chip not initialized properly * - or other error passed from the ``configure_host_mode`` function of host driver *//* ... */ esp_err_t spi_flash_chip_generic_config_host_io_mode(esp_flash_t *chip, uint32_t flags); #define SPI_FLASH_CONFIG_IO_MODE_32B_ADDR BIT(0) /** * @brief Handle explicit yield requests * * @param chip Pointer to SPI flash chip to use. If NULL, esp_flash_default_chip is substituted. * @param wip Write (erase) in progress, `true` if this function is called during waiting idle of a erase/write command; else `false`. * @return ESP_OK if success, otherwise failed. *//* ... */ esp_err_t spi_flash_chip_generic_yield(esp_flash_t* chip, uint32_t wip); /** * @brief Setup for flash suspend command configuration. * * @param chip Pointer to SPI flash chip to use. If NULL, esp_flash_default_chip is substituted. * @return ESP_OK *//* ... */ esp_err_t spi_flash_chip_generic_suspend_cmd_conf(esp_flash_t *chip); /** * * @brief Read the chip unique ID unsupported function. * * @param chip Pointer to SPI flash chip to use. * @param flash_unique_id Pointer to store output unique id (Although this function is an unsupported function, but the parameter should be kept for the consistence of the function pointer). * @return Always ESP_ERR_NOT_SUPPORTED. *//* ... */ esp_err_t spi_flash_chip_generic_read_unique_id_none(esp_flash_t *chip, uint64_t* flash_unique_id); /// Default timeout configuration used by most chips extern const flash_chip_op_timeout_t spi_flash_chip_generic_timeout;
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.