forked from micropython/micropython
-
Notifications
You must be signed in to change notification settings - Fork 2
/
octospi.c
363 lines (298 loc) · 13.7 KB
/
octospi.c
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
/*
* This file is part of the MicroPython project, http://micropython.org/
*
* The MIT License (MIT)
*
* Copyright (c) 2023 Damien P. George
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
// This OCTOSPI driver is currently configured to run in 1-line (SPI) mode.
// It uses the mp_qspi_proto_t QSPI protocol and translates quad-commands
// into 1-line commands.
#include "py/mperrno.h"
#include "py/mphal.h"
#include "octospi.h"
#include "pin_static_af.h"
#if defined(MICROPY_HW_OSPIFLASH_SIZE_BITS_LOG2)
#ifndef MICROPY_HW_OSPI_PRESCALER
#define MICROPY_HW_OSPI_PRESCALER (3) // F_CLK = F_AHB/3
#endif
#ifndef MICROPY_HW_OSPI_CS_HIGH_CYCLES
#define MICROPY_HW_OSPI_CS_HIGH_CYCLES (2) // nCS stays high for 2 cycles
#endif
void octospi_init(void) {
// Configure OCTOSPI pins (allows 1, 2, 4 or 8 line configuration).
mp_hal_pin_config_alt_static_speed(MICROPY_HW_OSPIFLASH_CS, MP_HAL_PIN_MODE_ALT, MP_HAL_PIN_PULL_NONE, MP_HAL_PIN_SPEED_VERY_HIGH, STATIC_AF_OCTOSPI1_NCS);
mp_hal_pin_config_alt_static_speed(MICROPY_HW_OSPIFLASH_SCK, MP_HAL_PIN_MODE_ALT, MP_HAL_PIN_PULL_NONE, MP_HAL_PIN_SPEED_VERY_HIGH, STATIC_AF_OCTOSPI1_CLK);
mp_hal_pin_config_alt_static_speed(MICROPY_HW_OSPIFLASH_IO0, MP_HAL_PIN_MODE_ALT, MP_HAL_PIN_PULL_NONE, MP_HAL_PIN_SPEED_VERY_HIGH, STATIC_AF_OCTOSPI1_IO0);
#if defined(MICROPY_HW_OSPIFLASH_IO1)
mp_hal_pin_config_alt_static_speed(MICROPY_HW_OSPIFLASH_IO1, MP_HAL_PIN_MODE_ALT, MP_HAL_PIN_PULL_NONE, MP_HAL_PIN_SPEED_VERY_HIGH, STATIC_AF_OCTOSPI1_IO1);
#if defined(MICROPY_HW_OSPIFLASH_IO2)
mp_hal_pin_config_alt_static_speed(MICROPY_HW_OSPIFLASH_IO2, MP_HAL_PIN_MODE_ALT, MP_HAL_PIN_PULL_NONE, MP_HAL_PIN_SPEED_VERY_HIGH, STATIC_AF_OCTOSPI1_IO2);
mp_hal_pin_config_alt_static_speed(MICROPY_HW_OSPIFLASH_IO3, MP_HAL_PIN_MODE_ALT, MP_HAL_PIN_PULL_NONE, MP_HAL_PIN_SPEED_VERY_HIGH, STATIC_AF_OCTOSPI1_IO3);
#if defined(MICROPY_HW_OSPIFLASH_IO4)
mp_hal_pin_config_alt_static_speed(MICROPY_HW_OSPIFLASH_IO4, MP_HAL_PIN_MODE_ALT, MP_HAL_PIN_PULL_NONE, MP_HAL_PIN_SPEED_VERY_HIGH, STATIC_AF_OCTOSPI1_IO4);
mp_hal_pin_config_alt_static_speed(MICROPY_HW_OSPIFLASH_IO5, MP_HAL_PIN_MODE_ALT, MP_HAL_PIN_PULL_NONE, MP_HAL_PIN_SPEED_VERY_HIGH, STATIC_AF_OCTOSPI1_IO5);
mp_hal_pin_config_alt_static_speed(MICROPY_HW_OSPIFLASH_IO6, MP_HAL_PIN_MODE_ALT, MP_HAL_PIN_PULL_NONE, MP_HAL_PIN_SPEED_VERY_HIGH, STATIC_AF_OCTOSPI1_IO6);
mp_hal_pin_config_alt_static_speed(MICROPY_HW_OSPIFLASH_IO7, MP_HAL_PIN_MODE_ALT, MP_HAL_PIN_PULL_NONE, MP_HAL_PIN_SPEED_VERY_HIGH, STATIC_AF_OCTOSPI1_IO7);
#endif
#endif
#endif
// Reset and turn on the OCTOSPI peripheral.
__HAL_RCC_OSPI1_CLK_ENABLE();
__HAL_RCC_OSPI1_FORCE_RESET();
__HAL_RCC_OSPI1_RELEASE_RESET();
// Configure the OCTOSPI peripheral.
OCTOSPI1->CR =
3 << OCTOSPI_CR_FTHRES_Pos // 4 bytes must be available to read/write
| 0 << OCTOSPI_CR_MSEL_Pos // FLASH 0 selected
| 0 << OCTOSPI_CR_DMM_Pos // dual-memory mode disabled
;
OCTOSPI1->DCR1 =
(MICROPY_HW_OSPIFLASH_SIZE_BITS_LOG2 - 3 - 1) << OCTOSPI_DCR1_DEVSIZE_Pos
| (MICROPY_HW_OSPI_CS_HIGH_CYCLES - 1) << OCTOSPI_DCR1_CSHT_Pos
| 0 << OCTOSPI_DCR1_CKMODE_Pos // CLK idles at low state
;
OCTOSPI1->DCR2 =
(MICROPY_HW_OSPI_PRESCALER - 1) << OCTOSPI_DCR2_PRESCALER_Pos
;
OCTOSPI1->DCR3 = 0;
OCTOSPI1->DCR4 = 0;
// Enable the OCTOSPI peripheral.
OCTOSPI1->CR |= OCTOSPI_CR_EN;
}
STATIC int octospi_ioctl(void *self_in, uint32_t cmd) {
(void)self_in;
switch (cmd) {
case MP_QSPI_IOCTL_INIT:
octospi_init();
break;
case MP_QSPI_IOCTL_BUS_ACQUIRE:
// Abort any ongoing transfer if peripheral is busy.
if (OCTOSPI1->SR & OCTOSPI_SR_BUSY) {
OCTOSPI1->CR |= OCTOSPI_CR_ABORT;
while (OCTOSPI1->CR & OCTOSPI_CR_ABORT) {
}
}
break;
case MP_QSPI_IOCTL_BUS_RELEASE:
break;
}
return 0; // success
}
STATIC int octospi_write_cmd_data(void *self_in, uint8_t cmd, size_t len, uint32_t data) {
(void)self_in;
OCTOSPI1->FCR = OCTOSPI_FCR_CTCF; // clear TC flag
OCTOSPI1->CR = (OCTOSPI1->CR & ~OCTOSPI_CR_FMODE_Msk) | 0 << OCTOSPI_CR_FMODE_Pos; // indirect write mode
if (len == 0) {
OCTOSPI1->CCR =
0 << OCTOSPI_CCR_DDTR_Pos // DD mode disabled
| 0 << OCTOSPI_CCR_SIOO_Pos // send instruction every transaction
| 0 << OCTOSPI_CCR_DMODE_Pos // no data
| 0 << OCTOSPI_CCR_ABMODE_Pos // no alternate byte
| 0 << OCTOSPI_CCR_ADMODE_Pos // no address
| 1 << OCTOSPI_CCR_IMODE_Pos // instruction on 1 line
;
OCTOSPI1->TCR = 0 << OCTOSPI_TCR_DCYC_Pos; // 0 dummy cycles
// This triggers the start of the operation.
OCTOSPI1->IR = cmd << OCTOSPI_IR_INSTRUCTION_Pos; // write opcode
} else {
OCTOSPI1->DLR = len - 1;
OCTOSPI1->CCR =
0 << OCTOSPI_CCR_DDTR_Pos // DD mode disabled
| 0 << OCTOSPI_CCR_SIOO_Pos // send instruction every transaction
| 1 << OCTOSPI_CCR_DMODE_Pos // data on 1 line
| 0 << OCTOSPI_CCR_ABMODE_Pos // no alternate byte
| 0 << OCTOSPI_CCR_ADMODE_Pos // no address
| 1 << OCTOSPI_CCR_IMODE_Pos // instruction on 1 line
;
OCTOSPI1->TCR = 0 << OCTOSPI_TCR_DCYC_Pos; // 0 dummy cycles
OCTOSPI1->IR = cmd << OCTOSPI_IR_INSTRUCTION_Pos; // write opcode
// Wait for at least 1 free byte location in the FIFO.
while (!(OCTOSPI1->SR & OCTOSPI_SR_FTF)) {
}
// This triggers the start of the operation.
// This assumes len==2
*(uint16_t *)&OCTOSPI1->DR = data;
}
// Wait for write to finish
while (!(OCTOSPI1->SR & OCTOSPI_SR_TCF)) {
if (OCTOSPI1->SR & OCTOSPI_SR_TEF) {
return -MP_EIO;
}
}
OCTOSPI1->FCR = OCTOSPI_FCR_CTCF; // clear TC flag
return 0;
}
STATIC int octospi_write_cmd_addr_data(void *self_in, uint8_t cmd, uint32_t addr, size_t len, const uint8_t *src) {
(void)self_in;
uint8_t adsize = MICROPY_HW_SPI_ADDR_IS_32BIT(addr) ? 3 : 2;
OCTOSPI1->FCR = OCTOSPI_FCR_CTCF; // clear TC flag
OCTOSPI1->CR = (OCTOSPI1->CR & ~OCTOSPI_CR_FMODE_Msk) | 0 << OCTOSPI_CR_FMODE_Pos; // indirect write mode
if (len == 0) {
OCTOSPI1->CCR =
0 << OCTOSPI_CCR_DDTR_Pos // DD mode disabled
| 0 << OCTOSPI_CCR_SIOO_Pos // send instruction every transaction
| 0 << OCTOSPI_CCR_DMODE_Pos // no data
| 0 << OCTOSPI_CCR_ABMODE_Pos // no alternate byte
| adsize << OCTOSPI_CCR_ADSIZE_Pos // 32/24-bit address size
| 1 << OCTOSPI_CCR_ADMODE_Pos // address on 1 line
| 1 << OCTOSPI_CCR_IMODE_Pos // instruction on 1 line
;
OCTOSPI1->TCR = 0 << OCTOSPI_TCR_DCYC_Pos; // 0 dummy cycles
OCTOSPI1->IR = cmd << OCTOSPI_IR_INSTRUCTION_Pos; // write opcode
// This triggers the start of the operation.
OCTOSPI1->AR = addr;
} else {
OCTOSPI1->DLR = len - 1;
OCTOSPI1->CCR =
0 << OCTOSPI_CCR_DDTR_Pos // DD mode disabled
| 0 << OCTOSPI_CCR_SIOO_Pos // send instruction every transaction
| 1 << OCTOSPI_CCR_DMODE_Pos // data on 1 line
| 0 << OCTOSPI_CCR_ABMODE_Pos // no alternate byte
| adsize << OCTOSPI_CCR_ADSIZE_Pos // 32/24-bit address size
| 1 << OCTOSPI_CCR_ADMODE_Pos // address on 1 line
| 1 << OCTOSPI_CCR_IMODE_Pos // instruction on 1 line
;
OCTOSPI1->TCR = 0 << OCTOSPI_TCR_DCYC_Pos; // 0 dummy cycles
OCTOSPI1->IR = cmd << OCTOSPI_IR_INSTRUCTION_Pos; // write opcode
OCTOSPI1->AR = addr;
// Write out the data 1 byte at a time
// This triggers the start of the operation.
while (len) {
while (!(OCTOSPI1->SR & OCTOSPI_SR_FTF)) {
if (OCTOSPI1->SR & OCTOSPI_SR_TEF) {
return -MP_EIO;
}
}
*(volatile uint8_t *)&OCTOSPI1->DR = *src++;
--len;
}
}
// Wait for write to finish
while (!(OCTOSPI1->SR & OCTOSPI_SR_TCF)) {
if (OCTOSPI1->SR & OCTOSPI_SR_TEF) {
return -MP_EIO;
}
}
OCTOSPI1->FCR = OCTOSPI_FCR_CTCF; // clear TC flag
return 0;
}
STATIC int octospi_read_cmd(void *self_in, uint8_t cmd, size_t len, uint32_t *dest) {
(void)self_in;
OCTOSPI1->FCR = OCTOSPI_FCR_CTCF; // clear TC flag
OCTOSPI1->DLR = len - 1; // number of bytes to read
OCTOSPI1->CR = (OCTOSPI1->CR & ~OCTOSPI_CR_FMODE_Msk) | 1 << OCTOSPI_CR_FMODE_Pos; // indirect read mode
OCTOSPI1->CCR =
0 << OCTOSPI_CCR_DDTR_Pos // DD mode disabled
| 0 << OCTOSPI_CCR_SIOO_Pos // send instruction every transaction
| 1 << OCTOSPI_CCR_DMODE_Pos // data on 1 line
| 0 << OCTOSPI_CCR_ABMODE_Pos // no alternate byte
| 0 << OCTOSPI_CCR_ADMODE_Pos // no address
| 1 << OCTOSPI_CCR_IMODE_Pos // instruction on 1 line
;
OCTOSPI1->TCR = 0 << OCTOSPI_TCR_DCYC_Pos; // 0 dummy cycles
// This triggers the start of the operation.
OCTOSPI1->IR = cmd << OCTOSPI_IR_INSTRUCTION_Pos; // read opcode
// Wait for read to finish
while (!(OCTOSPI1->SR & OCTOSPI_SR_TCF)) {
if (OCTOSPI1->SR & OCTOSPI_SR_TEF) {
return -MP_EIO;
}
}
OCTOSPI1->FCR = OCTOSPI_FCR_CTCF; // clear TC flag
// Read result
*dest = OCTOSPI1->DR;
return 0;
}
STATIC int octospi_read_cmd_qaddr_qdata(void *self_in, uint8_t cmd, uint32_t addr, size_t len, uint8_t *dest) {
(void)self_in;
#if defined(MICROPY_HW_OSPIFLASH_IO1) && !defined(MICROPY_HW_OSPIFLASH_IO2) && !defined(MICROPY_HW_OSPIFLASH_IO4)
// Use 2-line address, 2-line data.
uint32_t adsize = MICROPY_HW_SPI_ADDR_IS_32BIT(addr) ? 3 : 2;
uint32_t dmode = 2; // data on 2-lines
uint32_t admode = 2; // address on 2-lines
uint32_t dcyc = 4; // 4 dummy cycles
if (cmd == 0xeb || cmd == 0xec) {
// Convert to 2-line command.
cmd = MICROPY_HW_SPI_ADDR_IS_32BIT(addr) ? 0xbc : 0xbb;
}
#else
// Fallback to use 1-line address, 1-line data.
uint32_t adsize = MICROPY_HW_SPI_ADDR_IS_32BIT(addr) ? 3 : 2;
uint32_t dmode = 1; // data on 1-line
uint32_t admode = 1; // address on 1-line
uint32_t dcyc = 0; // 0 dummy cycles
if (cmd == 0xeb || cmd == 0xec) {
// Convert to 1-line command.
cmd = MICROPY_HW_SPI_ADDR_IS_32BIT(addr) ? 0x13 : 0x03;
}
#endif
OCTOSPI1->FCR = OCTOSPI_FCR_CTCF; // clear TC flag
OCTOSPI1->DLR = len - 1; // number of bytes to read
OCTOSPI1->CR = (OCTOSPI1->CR & ~OCTOSPI_CR_FMODE_Msk) | 1 << OCTOSPI_CR_FMODE_Pos; // indirect read mode
OCTOSPI1->CCR =
0 << OCTOSPI_CCR_DDTR_Pos // DD mode disabled
| 0 << OCTOSPI_CCR_SIOO_Pos // send instruction every transaction
| dmode << OCTOSPI_CCR_DMODE_Pos // data on n lines
| 0 << OCTOSPI_CCR_ABSIZE_Pos // 8-bit alternate byte
| 0 << OCTOSPI_CCR_ABMODE_Pos // no alternate byte
| adsize << OCTOSPI_CCR_ADSIZE_Pos // 32 or 24-bit address size
| admode << OCTOSPI_CCR_ADMODE_Pos // address on n lines
| 1 << OCTOSPI_CCR_IMODE_Pos // instruction on 1 line
;
OCTOSPI1->TCR = dcyc << OCTOSPI_TCR_DCYC_Pos; // n dummy cycles
OCTOSPI1->IR = cmd << OCTOSPI_IR_INSTRUCTION_Pos; // quad read opcode
// This triggers the start of the operation.
OCTOSPI1->AR = addr; // address to read from
// Read in the data 4 bytes at a time if dest is aligned
if (((uintptr_t)dest & 3) == 0) {
while (len >= 4) {
while (!(OCTOSPI1->SR & OCTOSPI_SR_FTF)) {
if (OCTOSPI1->SR & OCTOSPI_SR_TEF) {
return -MP_EIO;
}
}
*(uint32_t *)dest = OCTOSPI1->DR;
dest += 4;
len -= 4;
}
}
// Read in remaining data 1 byte at a time
while (len) {
while (!((OCTOSPI1->SR >> OCTOSPI_SR_FLEVEL_Pos) & 0x3f)) {
if (OCTOSPI1->SR & OCTOSPI_SR_TEF) {
return -MP_EIO;
}
}
*dest++ = *(volatile uint8_t *)&OCTOSPI1->DR;
--len;
}
OCTOSPI1->FCR = OCTOSPI_FCR_CTCF; // clear TC flag
return 0;
}
const mp_qspi_proto_t octospi_proto = {
.ioctl = octospi_ioctl,
.write_cmd_data = octospi_write_cmd_data,
.write_cmd_addr_data = octospi_write_cmd_addr_data,
.read_cmd = octospi_read_cmd,
.read_cmd_qaddr_qdata = octospi_read_cmd_qaddr_qdata,
};
#endif // defined(MICROPY_HW_OSPIFLASH_SIZE_BITS_LOG2)