1
6
7
8
9
10
11
12
13
14
15
16
17
24
25
28
29
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
80
81
82
86
87
88
94
95
96
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
118
119
120
121
122
123
127
128
129
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
158
159
160
166
167
168
172
173
174
178
179
180
183
184
185
186
187
188
189
190
191
194
195
196
199
200
201
204
205
206
207
214
/* ... */
#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;
typedef struct {
uint32_t idle_timeout;
uint32_t chip_erase_timeout;
uint32_t block_erase_timeout;
uint32_t sector_erase_timeout;
uint32_t page_program_timeout;
}{ ... } 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),
SPI_FLASH_CHIP_CAP_32MB_SUPPORT = BIT(1),
SPI_FLASH_CHIP_CAP_UNIQUE_ID = BIT(2),
}{ ... } spi_flash_caps_t;
/* ... */
struct spi_flash_chip_t {
const char *name;
const flash_chip_op_timeout_t *timeout;
/* ... */
esp_err_t (*probe)(esp_flash_t *chip, uint32_t flash_id);
esp_err_t (*reset)(esp_flash_t *chip);
/* ... */
esp_err_t (*detect_size)(esp_flash_t *chip, uint32_t *size);
/* ... */
esp_err_t (*erase_chip)(esp_flash_t *chip);
/* ... */
esp_err_t (*erase_sector)(esp_flash_t *chip, uint32_t sector_address);
/* ... */
esp_err_t (*erase_block)(esp_flash_t *chip, uint32_t block_address);
uint32_t sector_size;
uint32_t block_erase_size;
esp_err_t (*get_chip_write_protect)(esp_flash_t *chip, bool *out_write_protected);
esp_err_t (*set_chip_write_protect)(esp_flash_t *chip, bool chip_write_protect);
uint8_t num_protectable_regions;
const esp_flash_region_t *protectable_regions;
/* ... */
esp_err_t (*get_protected_regions)(esp_flash_t *chip, uint64_t *regions);
esp_err_t (*set_protected_regions)(esp_flash_t *chip, uint64_t regions);
/* ... */
esp_err_t (*read)(esp_flash_t *chip, void *buffer, uint32_t address, uint32_t length);
/* ... */
esp_err_t (*write)(esp_flash_t *chip, const void *buffer, uint32_t address, uint32_t length);
/* ... */
esp_err_t (*program_page)(esp_flash_t *chip, const void *buffer, uint32_t address, uint32_t length);
uint32_t page_size;
esp_err_t (*write_encrypted)(esp_flash_t *chip, const void *buffer, uint32_t address, uint32_t length);
/* ... */
esp_err_t (*wait_idle)(esp_flash_t *chip, uint32_t timeout_us);
/* ... */
esp_err_t (*set_io_mode)(esp_flash_t *chip);
/* ... */
esp_err_t (*get_io_mode)(esp_flash_t *chip, esp_flash_io_mode_t* out_io_mode);
/* ... */
esp_err_t (*read_id)(esp_flash_t *chip, uint32_t* out_chip_id);
/* ... */
esp_err_t (*read_reg)(esp_flash_t *chip, spi_flash_register_t reg_id, uint32_t* out_reg);
esp_err_t (*yield)(esp_flash_t *chip, uint32_t wip);
esp_err_t (*sus_setup)(esp_flash_t *chip);
/* ... */
esp_err_t (*read_unique_id)(esp_flash_t *chip, uint64_t* flash_unique_id);
/* ... */
spi_flash_caps_t (*get_chip_caps)(esp_flash_t *chip);
/* ... */
esp_err_t (*config_host_io_mode)(esp_flash_t *chip, uint32_t flags);
}{ ... };
/* ... */
extern const spi_flash_chip_t **esp_flash_registered_chips;