1 /*
2  * Copyright (c) 2019, MADMACHINE LIMITED
3  *
4  * refer to hal_nxp board file
5  *
6  * SPDX-License-Identifier: Apache-2.0
7  */
8 
9 #ifndef __FLEXSPI_NOR_CONFIG__
10 #define __FLEXSPI_NOR_CONFIG__
11 
12 #include <zephyr/types.h>
13 #include "fsl_common.h"
14 
15 #define FLEXSPI_CFG_BLK_TAG     (0x42464346UL)
16 #define FLEXSPI_CFG_BLK_VERSION (0x56010400UL)
17 #define FLEXSPI_CFG_BLK_SIZE    (512)
18 
19 #define FLEXSPI_FEATURE_HAS_PARALLEL_MODE 1
20 
21 #define CMD_INDEX_READ        0
22 #define CMD_INDEX_READSTATUS  1
23 #define CMD_INDEX_WRITEENABLE 2
24 #define CMD_INDEX_WRITE       4
25 
26 #define CMD_LUT_SEQ_IDX_READ        0
27 #define CMD_LUT_SEQ_IDX_READSTATUS  1
28 #define CMD_LUT_SEQ_IDX_WRITEENABLE 3
29 #define CMD_LUT_SEQ_IDX_WRITE       9
30 
31 #define CMD_SDR        0x01
32 #define CMD_DDR        0x21
33 #define RADDR_SDR      0x02
34 #define RADDR_DDR      0x22
35 #define CADDR_SDR      0x03
36 #define CADDR_DDR      0x23
37 #define MODE1_SDR      0x04
38 #define MODE1_DDR      0x24
39 #define MODE2_SDR      0x05
40 #define MODE2_DDR      0x25
41 #define MODE4_SDR      0x06
42 #define MODE4_DDR      0x26
43 #define MODE8_SDR      0x07
44 #define MODE8_DDR      0x27
45 #define WRITE_SDR      0x08
46 #define WRITE_DDR      0x28
47 #define READ_SDR       0x09
48 #define READ_DDR       0x29
49 #define LEARN_SDR      0x0A
50 #define LEARN_DDR      0x2A
51 #define DATSZ_SDR      0x0B
52 #define DATSZ_DDR      0x2B
53 #define DUMMY_SDR      0x0C
54 #define DUMMY_DDR      0x2C
55 #define DUMMY_RWDS_SDR 0x0D
56 #define DUMMY_RWDS_DDR 0x2D
57 #define JMP_ON_CS      0x1F
58 #define STOP           0
59 
60 #define FLEXSPI_1PAD 0
61 #define FLEXSPI_2PAD 1
62 #define FLEXSPI_4PAD 2
63 #define FLEXSPI_8PAD 3
64 
65 #define FLEXSPI_LUT_SEQ(cmd0, pad0, op0, cmd1, pad1, op1)                                          \
66 	(FLEXSPI_LUT_OPERAND0(op0) | FLEXSPI_LUT_NUM_PADS0(pad0) | FLEXSPI_LUT_OPCODE0(cmd0) |     \
67 	 FLEXSPI_LUT_OPERAND1(op1) | FLEXSPI_LUT_NUM_PADS1(pad1) | FLEXSPI_LUT_OPCODE1(cmd1))
68 
69 /* For flexspi_mem_config.serialClkFreq */
70 #if defined(CONFIG_SOC_MIMXRT1011)
71 enum {
72 	kFlexSpiSerialClk_30MHz = 1,
73 	kFlexSpiSerialClk_50MHz = 2,
74 	kFlexSpiSerialClk_60MHz = 3,
75 	kFlexSpiSerialClk_75MHz = 4,
76 	kFlexSpiSerialClk_80MHz = 5,
77 	kFlexSpiSerialClk_100MHz = 6,
78 	kFlexSpiSerialClk_120MHz = 7,
79 	kFlexSpiSerialClk_133MHz = 8,
80 };
81 #elif defined(CONFIG_SOC_MIMXRT1015) || defined(CONFIG_SOC_MIMXRT1021) ||                          \
82 	defined(CONFIG_SOC_MIMXRT1024)
83 enum {
84 	kFlexSpiSerialClk_30MHz = 1,
85 	kFlexSpiSerialClk_50MHz = 2,
86 	kFlexSpiSerialClk_60MHz = 3,
87 	kFlexSpiSerialClk_75MHz = 4,
88 	kFlexSpiSerialClk_80MHz = 5,
89 	kFlexSpiSerialClk_100MHz = 6,
90 	kFlexSpiSerialClk_133MHz = 7,
91 };
92 #elif defined(CONFIG_SOC_MIMXRT1052) || defined(CONFIG_SOC_SERIES_IMXRT11XX)
93 enum {
94 	kFlexSpiSerialClk_30MHz = 1,
95 	kFlexSpiSerialClk_50MHz = 2,
96 	kFlexSpiSerialClk_60MHz = 3,
97 	kFlexSpiSerialClk_75MHz = 4,
98 	kFlexSpiSerialClk_80MHz = 5,
99 	kFlexSpiSerialClk_100MHz = 6,
100 	kFlexSpiSerialClk_133MHz = 7,
101 	kFlexSpiSerialClk_166MHz = 8,
102 	kFlexSpiSerialClk_200MHz = 9,
103 };
104 #elif defined(CONFIG_SOC_MIMXRT1062) || defined(CONFIG_SOC_MIMXRT1064)
105 enum {
106 	kFlexSpiSerialClk_30MHz = 1,
107 	kFlexSpiSerialClk_50MHz = 2,
108 	kFlexSpiSerialClk_60MHz = 3,
109 	kFlexSpiSerialClk_75MHz = 4,
110 	kFlexSpiSerialClk_80MHz = 5,
111 	kFlexSpiSerialClk_100MHz = 6,
112 	kFlexSpiSerialClk_120MHz = 7,
113 	kFlexSpiSerialClk_133MHz = 8,
114 	kFlexSpiSerialClk_166MHz = 9,
115 };
116 #else
117 #error "kFlexSpiSerialClk is not defined for this SoC"
118 #endif
119 
120 /* For flexspi_mem_config.controllerMiscOption */
121 enum {
122 	kFlexSpiClk_SDR,
123 	kFlexSpiClk_DDR,
124 };
125 
126 /* For flexspi_mem_config.readSampleClkSrc */
127 enum {
128 	kFlexSPIReadSampleClk_LoopbackInternally = 0,
129 	kFlexSPIReadSampleClk_LoopbackFromDqsPad = 1,
130 	kFlexSPIReadSampleClk_LoopbackFromSckPad = 2,
131 	kFlexSPIReadSampleClk_ExternalInputFromDqsPad = 3,
132 };
133 
134 /* For flexspi_mem_config.controllerMiscOption */
135 enum {
136 	/* !< Bit for Differential clock enable */
137 	kFlexSpiMiscOffset_DiffClkEnable = 0,
138 	/* !< Bit for CK2 enable */
139 	kFlexSpiMiscOffset_Ck2Enable = 1,
140 	/* !< Bit for Parallel mode enable */
141 	kFlexSpiMiscOffset_ParallelEnable = 2,
142 	/* !< Bit for Word Addressable enable */
143 	kFlexSpiMiscOffset_WordAddressableEnable = 3,
144 	/* !< Bit for Safe Configuration Frequency enable */
145 	kFlexSpiMiscOffset_SafeConfigFreqEnable = 4,
146 	/* !< Bit for Pad setting override enable */
147 	kFlexSpiMiscOffset_PadSettingOverrideEnable = 5,
148 	/* !< Bit for DDR clock configuration indication. */
149 	kFlexSpiMiscOffset_DdrModeEnable = 6,
150 };
151 
152 /* For flexspi_mem_config.deviceType */
153 enum {
154 	/* !< Flash devices are Serial NOR */
155 	kFlexSpiDeviceType_SerialNOR = 1,
156 	/* !< Flash devices are Serial NAND */
157 	kFlexSpiDeviceType_SerialNAND = 2,
158 	/* !< Flash devices are Serial RAM/HyperFLASH */
159 	kFlexSpiDeviceType_SerialRAM = 3,
160 	/* !< Flash device is MCP device, A1 is Serial NOR, A2 is Serial NAND */
161 	kFlexSpiDeviceType_MCP_NOR_NAND = 0x12,
162 	/* !< Flash device is MCP device, A1 is Serial NOR, A2 is Serial RAMs */
163 	kFlexSpiDeviceType_MCP_NOR_RAM = 0x13,
164 };
165 
166 /* For flexspi_mem_config.sflashPadType */
167 enum {
168 	kSerialFlash_1Pad = 1,
169 	kSerialFlash_2Pads = 2,
170 	kSerialFlash_4Pads = 4,
171 	kSerialFlash_8Pads = 8,
172 };
173 
174 enum {
175 	/* !< Generic command, for example: configure dummy cycles, drive strength, etc */
176 	kDeviceConfigCmdType_Generic,
177 	/* !< Quad Enable command */
178 	kDeviceConfigCmdType_QuadEnable,
179 	/* !< Switch from SPI to DPI/QPI/OPI mode */
180 	kDeviceConfigCmdType_Spi2Xpi,
181 	/* !< Switch from DPI/QPI/OPI to SPI mode */
182 	kDeviceConfigCmdType_Xpi2Spi,
183 	/* !< Switch to 0-4-4/0-8-8 mode */
184 	kDeviceConfigCmdType_Spi2NoCmd,
185 	/* !< Reset device command */
186 	kDeviceConfigCmdType_Reset,
187 };
188 
189 struct flexspi_lut_seq_t {
190 	uint8_t seqNum;
191 	uint8_t seqId;
192 	uint16_t reserved;
193 };
194 
195 struct flexspi_mem_config_t {
196 	/* !< [0x000-0x003] Tag, fixed value 0x42464346UL */
197 	uint32_t tag;
198 	/* !< [0x004-0x007] Version,[31:24] -'V', [23:16] - Major, [15:8] - Minor, [7:0] - bugfix */
199 	uint32_t version;
200 	/* !< [0x008-0x00b] Reserved for future use */
201 	uint32_t reserved0;
202 	/* !< [0x00c-0x00c] Read Sample Clock Source, valid value: 0/1/3 */
203 	uint8_t readSampleClkSrc;
204 	/* !< [0x00d-0x00d] CS hold time, default value: 3 */
205 	uint8_t csHoldTime;
206 	/* !< [0x00e-0x00e] CS setup time, default value: 3 */
207 	uint8_t csSetupTime;
208 	/* !< [0x00f-0x00f] Column Address with, for HyperBus protocol, it is fixed to 3, For */
209 	uint8_t columnAddressWidth;
210 	/* ! Serial NAND, need to refer to datasheet */
211 	/* !< [0x010-0x010] Device Mode Configure enable flag, 1 - Enable, 0 - Disable */
212 	uint8_t deviceModeCfgEnable;
213 	/* !< [0x011-0x011] Specify the configuration command
214 	 * type:Quad Enable, DPI/QPI/OPI switch,
215 	 */
216 	uint8_t deviceModeType;
217 	/* ! Generic configuration, etc. */
218 	/* !< [0x012-0x013] Wait time for all configuration commands, unit: 100us, Used for */
219 	uint16_t waitTimeCfgCommands;
220 	/* ! DPI/QPI/OPI switch or reset command */
221 	/* !< [0x014-0x017] Device mode sequence info, [7:0] - LUT sequence id, [15:8] - LUt */
222 	struct flexspi_lut_seq_t deviceModeSeq;
223 	/* ! sequence number, [31:16] Reserved */
224 	/* !< [0x018-0x01b] Argument/Parameter for device configuration */
225 	uint32_t deviceModeArg;
226 	/* !< [0x01c-0x01c] Configure command Enable Flag, 1 - Enable, 0 - Disable */
227 	uint8_t configCmdEnable;
228 	/* !< [0x01d-0x01f] Configure Mode Type, similar as deviceModeTpe */
229 	uint8_t configModeType[3];
230 	/* !< [0x020-0x02b] Sequence info for Device Configuration command, similar as
231 	 * deviceModeSeq
232 	 */
233 	struct flexspi_lut_seq_t configCmdSeqs[3];
234 	/* !< [0x02c-0x02f] Reserved for future use */
235 	uint32_t reserved1;
236 	/* !< [0x030-0x03b] Arguments/Parameters for device Configuration commands */
237 	uint32_t configCmdArgs[3];
238 	/* !< [0x03c-0x03f] Reserved for future use */
239 	uint32_t reserved2;
240 	/* !< [0x040-0x043] Controller Misc Options, see Misc feature bit definitions for more */
241 	uint32_t controllerMiscOption;
242 	/* ! details */
243 	/* !< [0x044-0x044] Device Type:  See Flash Type Definition for more details */
244 	uint8_t deviceType;
245 	/* !< [0x045-0x045] Serial Flash Pad Type: 1 - Single, 2 - Dual, 4 - Quad, 8 - Octal */
246 	uint8_t sflashPadType;
247 	/* !< [0x046-0x046] Serial Flash Frequency, device specific definitions, See System Boot */
248 	uint8_t serialClkFreq;
249 	/* ! Chapter for more details */
250 	/* !< [0x047-0x047] LUT customization Enable, it is required if the program/erase cannot */
251 	uint8_t lutCustomSeqEnable;
252 	/* ! be done using 1 LUT sequence, currently, only applicable to HyperFLASH */
253 	/* !< [0x048-0x04f] Reserved for future use */
254 	uint32_t reserved3[2];
255 	/* !< [0x050-0x053] Size of Flash connected to A1 */
256 	uint32_t sflashA1Size;
257 	/* !< [0x054-0x057] Size of Flash connected to A2 */
258 	uint32_t sflashA2Size;
259 	/* !< [0x058-0x05b] Size of Flash connected to B1 */
260 	uint32_t sflashB1Size;
261 	/* !< [0x05c-0x05f] Size of Flash connected to B2 */
262 	uint32_t sflashB2Size;
263 	/* !< [0x060-0x063] CS pad setting override value */
264 	uint32_t csPadSettingOverride;
265 	/* !< [0x064-0x067] SCK pad setting override value */
266 	uint32_t sclkPadSettingOverride;
267 	/* !< [0x068-0x06b] data pad setting override value */
268 	uint32_t dataPadSettingOverride;
269 	/* !< [0x06c-0x06f] DQS pad setting override value */
270 	uint32_t dqsPadSettingOverride;
271 	/* !< [0x070-0x073] Timeout threshold for read status command */
272 	uint32_t timeoutInMs;
273 	/* !< [0x074-0x077] CS deselect interval between two commands */
274 	uint32_t commandInterval;
275 	/* !< [0x078-0x07b] CLK edge to data valid time for PORT A and PORT B, in terms of 0.1ns */
276 	uint16_t dataValidTime[2];
277 	/* !< [0x07c-0x07d] Busy offset, valid value: 0-31 */
278 	uint16_t busyOffset;
279 	/* !< [0x07e-0x07f] Busy flag polarity, 0 - busy flag is 1 when flash device is busy, 1 - */
280 	uint16_t busyBitPolarity;
281 	/* ! busy flag is 0 when flash device is busy */
282 	/* !< [0x080-0x17f] Lookup table holds Flash command sequences */
283 	uint32_t lookupTable[64];
284 	/* !< [0x180-0x1af] Customizable LUT Sequences */
285 	struct flexspi_lut_seq_t lutCustomSeq[12];
286 	/* !< [0x1b0-0x1bf] Reserved for future use */
287 	uint32_t reserved4[4];
288 };
289 
290 #define NOR_CMD_INDEX_READ        CMD_INDEX_READ
291 #define NOR_CMD_INDEX_READSTATUS  CMD_INDEX_READSTATUS
292 #define NOR_CMD_INDEX_WRITEENABLE CMD_INDEX_WRITEENABLE
293 #define NOR_CMD_INDEX_ERASESECTOR 3
294 #define NOR_CMD_INDEX_PAGEPROGRAM CMD_INDEX_WRITE
295 #define NOR_CMD_INDEX_CHIPERASE   5
296 #define NOR_CMD_INDEX_DUMMY       6
297 #define NOR_CMD_INDEX_ERASEBLOCK  7
298 
299 #define NOR_CMD_LUT_SEQ_IDX_READ            CMD_LUT_SEQ_IDX_READ
300 #define NOR_CMD_LUT_SEQ_IDX_READSTATUS      CMD_LUT_SEQ_IDX_READSTATUS
301 #define NOR_CMD_LUT_SEQ_IDX_READSTATUS_XPI  2
302 #define NOR_CMD_LUT_SEQ_IDX_WRITEENABLE     CMD_LUT_SEQ_IDX_WRITEENABLE
303 #define NOR_CMD_LUT_SEQ_IDX_WRITEENABLE_XPI 4
304 #define NOR_CMD_LUT_SEQ_IDX_ERASESECTOR     5
305 #define NOR_CMD_LUT_SEQ_IDX_ERASEBLOCK      8
306 #define NOR_CMD_LUT_SEQ_IDX_PAGEPROGRAM     CMD_LUT_SEQ_IDX_WRITE
307 #define NOR_CMD_LUT_SEQ_IDX_CHIPERASE       11
308 #define NOR_CMD_LUT_SEQ_IDX_READ_SFDP       13
309 #define NOR_CMD_LUT_SEQ_IDX_RESTORE_NOCMD   14
310 #define NOR_CMD_LUT_SEQ_IDX_EXIT_NOCMD      15
311 
312 struct flexspi_nor_config_t {
313 	/* !< Common memory configuration info via FlexSPI */
314 	struct flexspi_mem_config_t memConfig;
315 	/* !< Page size of Serial NOR */
316 	uint32_t pageSize;
317 	/* !< Sector size of Serial NOR */
318 	uint32_t sectorSize;
319 	/* !< Clock frequency for IP command */
320 	uint8_t ipcmdSerialClkFreq;
321 	/* !< Sector/Block size is the same */
322 	uint8_t isUniformBlockSize;
323 	/* !< Reserved for future use */
324 	uint8_t reserved0[2];
325 	/* !< Serial NOR Flash type: 0/1/2/3 */
326 	uint8_t serialNorType;
327 	/* !< Need to exit NoCmd mode before other IP command */
328 	uint8_t needExitNoCmdMode;
329 	/* !< Half the Serial Clock for non-read command: true/false */
330 	uint8_t halfClkForNonReadCmd;
331 	/* !< Need to Restore NoCmd mode after IP command execution */
332 	uint8_t needRestoreNoCmdMode;
333 	/* !< Block size */
334 	uint32_t blockSize;
335 	/* !< Reserved for future use */
336 	uint32_t reserve2[11];
337 };
338 
339 #ifdef __cplusplus
340 extern "C" {
341 #endif
342 
343 #ifdef __cplusplus
344 }
345 #endif
346 #endif
347