fsl_flexspi_nor_flash.h 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299
  1. /*
  2. * The Clear BSD License
  3. * Copyright (c) 2016, Freescale Semiconductor, Inc.
  4. * Copyright 2016-2017 NXP
  5. * All rights reserved.
  6. *
  7. * Redistribution and use in source and binary forms, with or without
  8. * modification,
  9. * are permitted (subject to the limitations in the disclaimer below) provided
  10. * that the following conditions are met:
  11. *
  12. * o Redistributions of source code must retain the above copyright notice, this
  13. * list
  14. * of conditions and the following disclaimer.
  15. *
  16. * o Redistributions in binary form must reproduce the above copyright notice,
  17. * this
  18. * list of conditions and the following disclaimer in the documentation and/or
  19. * other materials provided with the distribution.
  20. *
  21. * o Neither the name of Freescale Semiconductor, Inc. nor the names of its
  22. * contributors may be used to endorse or promote products derived from this
  23. * software without specific prior written permission.
  24. *
  25. * NO EXPRESS OR IMPLIED LICENSES TO ANY PARTY'S PATENT RIGHTS ARE GRANTED BY THIS LICENSE.
  26. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  27. * AND
  28. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  29. * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  30. * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
  31. * FOR
  32. * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  33. * DAMAGES
  34. * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  35. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  36. * ON
  37. * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  38. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  39. * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  40. */
  41. #ifndef __FLEXSPI_NOR_FLASH_H__
  42. #define __FLEXSPI_NOR_FLASH_H__
  43. #include <stdint.h>
  44. #include <stdbool.h>
  45. #include "fsl_common.h"
  46. /* FLEXSPI memory config block related defintions */
  47. #define FLEXSPI_CFG_BLK_TAG (0x42464346UL) // ascii "FCFB" Big Endian
  48. #define FLEXSPI_CFG_BLK_VERSION (0x56010400UL) // V1.4.0
  49. #define FLEXSPI_CFG_BLK_SIZE (512)
  50. /* FLEXSPI Feature related definitions */
  51. #define FLEXSPI_FEATURE_HAS_PARALLEL_MODE 1
  52. /* Lookup table related defintions */
  53. #define CMD_INDEX_READ 0
  54. #define CMD_INDEX_READSTATUS 1
  55. #define CMD_INDEX_WRITEENABLE 2
  56. #define CMD_INDEX_WRITE 4
  57. #define CMD_LUT_SEQ_IDX_READ 0
  58. #define CMD_LUT_SEQ_IDX_READSTATUS 1
  59. #define CMD_LUT_SEQ_IDX_WRITEENABLE 3
  60. #define CMD_LUT_SEQ_IDX_WRITE 9
  61. #define CMD_SDR 0x01
  62. #define CMD_DDR 0x21
  63. #define RADDR_SDR 0x02
  64. #define RADDR_DDR 0x22
  65. #define CADDR_SDR 0x03
  66. #define CADDR_DDR 0x23
  67. #define MODE1_SDR 0x04
  68. #define MODE1_DDR 0x24
  69. #define MODE2_SDR 0x05
  70. #define MODE2_DDR 0x25
  71. #define MODE4_SDR 0x06
  72. #define MODE4_DDR 0x26
  73. #define MODE8_SDR 0x07
  74. #define MODE8_DDR 0x27
  75. #define WRITE_SDR 0x08
  76. #define WRITE_DDR 0x28
  77. #define READ_SDR 0x09
  78. #define READ_DDR 0x29
  79. #define LEARN_SDR 0x0A
  80. #define LEARN_DDR 0x2A
  81. #define DATSZ_SDR 0x0B
  82. #define DATSZ_DDR 0x2B
  83. #define DUMMY_SDR 0x0C
  84. #define DUMMY_DDR 0x2C
  85. #define DUMMY_RWDS_SDR 0x0D
  86. #define DUMMY_RWDS_DDR 0x2D
  87. #define JMP_ON_CS 0x1F
  88. #define STOP 0
  89. #define FLEXSPI_1PAD 0
  90. #define FLEXSPI_2PAD 1
  91. #define FLEXSPI_4PAD 2
  92. #define FLEXSPI_8PAD 3
  93. #define FLEXSPI_LUT_SEQ(cmd0, pad0, op0, cmd1, pad1, op1) \
  94. (FLEXSPI_LUT_OPERAND0(op0) | FLEXSPI_LUT_NUM_PADS0(pad0) | FLEXSPI_LUT_OPCODE0(cmd0) | FLEXSPI_LUT_OPERAND1(op1) | \
  95. FLEXSPI_LUT_NUM_PADS1(pad1) | FLEXSPI_LUT_OPCODE1(cmd1))
  96. //!@brief Definitions for FlexSPI Serial Clock Frequency
  97. typedef enum _FlexSpiSerialClockFreq
  98. {
  99. kFlexSpiSerialClk_30MHz = 1,
  100. kFlexSpiSerialClk_50MHz = 2,
  101. kFlexSpiSerialClk_60MHz = 3,
  102. kFlexSpiSerialClk_75MHz = 4,
  103. kFlexSpiSerialClk_80MHz = 5,
  104. kFlexSpiSerialClk_100MHz = 6,
  105. kFlexSpiSerialClk_133MHz = 7,
  106. kFlexSpiSerialClk_166MHz = 8,
  107. kFlexSpiSerialClk_200MHz = 9,
  108. } flexspi_serial_clk_freq_t;
  109. //!@brief FlexSPI clock configuration type
  110. enum
  111. {
  112. kFlexSpiClk_SDR, //!< Clock configure for SDR mode
  113. kFlexSpiClk_DDR, //!< Clock configurat for DDR mode
  114. };
  115. //!@brief FlexSPI Read Sample Clock Source definition
  116. typedef enum _FlashReadSampleClkSource
  117. {
  118. kFlexSPIReadSampleClk_LoopbackInternally = 0,
  119. kFlexSPIReadSampleClk_LoopbackFromDqsPad = 1,
  120. kFlexSPIReadSampleClk_LoopbackFromSckPad = 2,
  121. kFlexSPIReadSampleClk_ExternalInputFromDqsPad = 3,
  122. } flexspi_read_sample_clk_t;
  123. //!@brief Misc feature bit definitions
  124. enum
  125. {
  126. kFlexSpiMiscOffset_DiffClkEnable = 0, //!< Bit for Differential clock enable
  127. kFlexSpiMiscOffset_Ck2Enable = 1, //!< Bit for CK2 enable
  128. kFlexSpiMiscOffset_ParallelEnable = 2, //!< Bit for Parallel mode enable
  129. kFlexSpiMiscOffset_WordAddressableEnable = 3, //!< Bit for Word Addressable enable
  130. kFlexSpiMiscOffset_SafeConfigFreqEnable = 4, //!< Bit for Safe Configuration Frequency enable
  131. kFlexSpiMiscOffset_PadSettingOverrideEnable = 5, //!< Bit for Pad setting override enable
  132. kFlexSpiMiscOffset_DdrModeEnable = 6, //!< Bit for DDR clock confiuration indication.
  133. };
  134. //!@brief Flash Type Definition
  135. enum
  136. {
  137. kFlexSpiDeviceType_SerialNOR = 1, //!< Flash devices are Serial NOR
  138. kFlexSpiDeviceType_SerialNAND = 2, //!< Flash devices are Serial NAND
  139. kFlexSpiDeviceType_SerialRAM = 3, //!< Flash devices are Serial RAM/HyperFLASH
  140. kFlexSpiDeviceType_MCP_NOR_NAND = 0x12, //!< Flash device is MCP device, A1 is Serial NOR, A2 is Serial NAND
  141. kFlexSpiDeviceType_MCP_NOR_RAM = 0x13, //!< Flash deivce is MCP device, A1 is Serial NOR, A2 is Serial RAMs
  142. };
  143. //!@brief Flash Pad Definitions
  144. enum
  145. {
  146. kSerialFlash_1Pad = 1,
  147. kSerialFlash_2Pads = 2,
  148. kSerialFlash_4Pads = 4,
  149. kSerialFlash_8Pads = 8,
  150. };
  151. //!@brief FlexSPI LUT Sequence structure
  152. typedef struct _lut_sequence
  153. {
  154. uint8_t seqNum; //!< Sequence Number, valid number: 1-16
  155. uint8_t seqId; //!< Sequence Index, valid number: 0-15
  156. uint16_t reserved;
  157. } flexspi_lut_seq_t;
  158. //!@brief Flash Configuration Command Type
  159. enum
  160. {
  161. kDeviceConfigCmdType_Generic, //!< Generic command, for example: configure dummy cycles, drive strength, etc
  162. kDeviceConfigCmdType_QuadEnable, //!< Quad Enable command
  163. kDeviceConfigCmdType_Spi2Xpi, //!< Switch from SPI to DPI/QPI/OPI mode
  164. kDeviceConfigCmdType_Xpi2Spi, //!< Switch from DPI/QPI/OPI to SPI mode
  165. kDeviceConfigCmdType_Spi2NoCmd, //!< Switch to 0-4-4/0-8-8 mode
  166. kDeviceConfigCmdType_Reset, //!< Reset device command
  167. };
  168. //!@brief FlexSPI Memory Configuration Block
  169. typedef struct _FlexSPIConfig
  170. {
  171. uint32_t tag; //!< [0x000-0x003] Tag, fixed value 0x42464346UL
  172. uint32_t version; //!< [0x004-0x007] Version,[31:24] -'V', [23:16] - Major, [15:8] - Minor, [7:0] - bugfix
  173. uint32_t reserved0; //!< [0x008-0x00b] Reserved for future use
  174. uint8_t readSampleClkSrc; //!< [0x00c-0x00c] Read Sample Clock Source, valid value: 0/1/3
  175. uint8_t csHoldTime; //!< [0x00d-0x00d] CS hold time, default value: 3
  176. uint8_t csSetupTime; //!< [0x00e-0x00e] CS setup time, default value: 3
  177. uint8_t columnAddressWidth; //!< [0x00f-0x00f] Column Address with, for HyperBus protocol, it is fixed to 3, For
  178. //! Serial NAND, need to refer to datasheet
  179. uint8_t deviceModeCfgEnable; //!< [0x010-0x010] Device Mode Configure enable flag, 1 - Enable, 0 - Disable
  180. uint8_t deviceModeType; //!< [0x011-0x011] Specify the configuration command type:Quad Enable, DPI/QPI/OPI switch,
  181. //! Generic configuration, etc.
  182. uint16_t waitTimeCfgCommands; //!< [0x012-0x013] Wait time for all configuration commands, unit: 100us, Used for
  183. //! DPI/QPI/OPI switch or reset command
  184. flexspi_lut_seq_t deviceModeSeq; //!< [0x014-0x017] Device mode sequence info, [7:0] - LUT sequence id, [15:8] - LUt
  185. //! sequence number, [31:16] Reserved
  186. uint32_t deviceModeArg; //!< [0x018-0x01b] Argument/Parameter for device configuration
  187. uint8_t configCmdEnable; //!< [0x01c-0x01c] Configure command Enable Flag, 1 - Enable, 0 - Disable
  188. uint8_t configModeType[3]; //!< [0x01d-0x01f] Configure Mode Type, similar as deviceModeTpe
  189. flexspi_lut_seq_t
  190. configCmdSeqs[3]; //!< [0x020-0x02b] Sequence info for Device Configuration command, similar as deviceModeSeq
  191. uint32_t reserved1; //!< [0x02c-0x02f] Reserved for future use
  192. uint32_t configCmdArgs[3]; //!< [0x030-0x03b] Arguments/Parameters for device Configuration commands
  193. uint32_t reserved2; //!< [0x03c-0x03f] Reserved for future use
  194. uint32_t controllerMiscOption; //!< [0x040-0x043] Controller Misc Options, see Misc feature bit definitions for more
  195. //! details
  196. uint8_t deviceType; //!< [0x044-0x044] Device Type: See Flash Type Definition for more details
  197. uint8_t sflashPadType; //!< [0x045-0x045] Serial Flash Pad Type: 1 - Single, 2 - Dual, 4 - Quad, 8 - Octal
  198. uint8_t serialClkFreq; //!< [0x046-0x046] Serial Flash Frequencey, device specific definitions, See System Boot
  199. //! Chapter for more details
  200. uint8_t lutCustomSeqEnable; //!< [0x047-0x047] LUT customization Enable, it is required if the program/erase cannot
  201. //! be done using 1 LUT sequence, currently, only applicable to HyperFLASH
  202. uint32_t reserved3[2]; //!< [0x048-0x04f] Reserved for future use
  203. uint32_t sflashA1Size; //!< [0x050-0x053] Size of Flash connected to A1
  204. uint32_t sflashA2Size; //!< [0x054-0x057] Size of Flash connected to A2
  205. uint32_t sflashB1Size; //!< [0x058-0x05b] Size of Flash connected to B1
  206. uint32_t sflashB2Size; //!< [0x05c-0x05f] Size of Flash connected to B2
  207. uint32_t csPadSettingOverride; //!< [0x060-0x063] CS pad setting override value
  208. uint32_t sclkPadSettingOverride; //!< [0x064-0x067] SCK pad setting override value
  209. uint32_t dataPadSettingOverride; //!< [0x068-0x06b] data pad setting override value
  210. uint32_t dqsPadSettingOverride; //!< [0x06c-0x06f] DQS pad setting override value
  211. uint32_t timeoutInMs; //!< [0x070-0x073] Timeout threshold for read status command
  212. uint32_t commandInterval; //!< [0x074-0x077] CS deselect interval between two commands
  213. uint16_t dataValidTime[2]; //!< [0x078-0x07b] CLK edge to data valid time for PORT A and PORT B, in terms of 0.1ns
  214. uint16_t busyOffset; //!< [0x07c-0x07d] Busy offset, valid value: 0-31
  215. uint16_t busyBitPolarity; //!< [0x07e-0x07f] Busy flag polarity, 0 - busy flag is 1 when flash device is busy, 1 -
  216. //! busy flag is 0 when flash device is busy
  217. uint32_t lookupTable[64]; //!< [0x080-0x17f] Lookup table holds Flash command sequences
  218. flexspi_lut_seq_t lutCustomSeq[12]; //!< [0x180-0x1af] Customizable LUT Sequences
  219. uint32_t reserved4[4]; //!< [0x1b0-0x1bf] Reserved for future use
  220. } flexspi_mem_config_t;
  221. /* */
  222. #define NOR_CMD_INDEX_READ CMD_INDEX_READ //!< 0
  223. #define NOR_CMD_INDEX_READSTATUS CMD_INDEX_READSTATUS //!< 1
  224. #define NOR_CMD_INDEX_WRITEENABLE CMD_INDEX_WRITEENABLE //!< 2
  225. #define NOR_CMD_INDEX_ERASESECTOR 3 //!< 3
  226. #define NOR_CMD_INDEX_PAGEPROGRAM CMD_INDEX_WRITE //!< 4
  227. #define NOR_CMD_INDEX_CHIPERASE 5 //!< 5
  228. #define NOR_CMD_INDEX_DUMMY 6 //!< 6
  229. #define NOR_CMD_INDEX_ERASEBLOCK 7 //!< 7
  230. #define NOR_CMD_LUT_SEQ_IDX_READ CMD_LUT_SEQ_IDX_READ //!< 0 READ LUT sequence id in lookupTable stored in config block
  231. #define NOR_CMD_LUT_SEQ_IDX_READSTATUS \
  232. CMD_LUT_SEQ_IDX_READSTATUS //!< 1 Read Status LUT sequence id in lookupTable stored in config block
  233. #define NOR_CMD_LUT_SEQ_IDX_READSTATUS_XPI \
  234. 2 //!< 2 Read status DPI/QPI/OPI sequence id in lookupTable stored in config block
  235. #define NOR_CMD_LUT_SEQ_IDX_WRITEENABLE \
  236. CMD_LUT_SEQ_IDX_WRITEENABLE //!< 3 Write Enable sequence id in lookupTable stored in config block
  237. #define NOR_CMD_LUT_SEQ_IDX_WRITEENABLE_XPI \
  238. 4 //!< 4 Write Enable DPI/QPI/OPI sequence id in lookupTable stored in config block
  239. #define NOR_CMD_LUT_SEQ_IDX_ERASESECTOR 5 //!< 5 Erase Sector sequence id in lookupTable stored in config block
  240. #define NOR_CMD_LUT_SEQ_IDX_ERASEBLOCK 8 //!< 8 Erase Block sequence id in lookupTable stored in config block
  241. #define NOR_CMD_LUT_SEQ_IDX_PAGEPROGRAM \
  242. CMD_LUT_SEQ_IDX_WRITE //!< 9 Program sequence id in lookupTable stored in config block
  243. #define NOR_CMD_LUT_SEQ_IDX_CHIPERASE 11 //!< 11 Chip Erase sequence in lookupTable id stored in config block
  244. #define NOR_CMD_LUT_SEQ_IDX_READ_SFDP 13 //!< 13 Read SFDP sequence in lookupTable id stored in config block
  245. #define NOR_CMD_LUT_SEQ_IDX_RESTORE_NOCMD \
  246. 14 //!< 14 Restore 0-4-4/0-8-8 mode sequence id in lookupTable stored in config block
  247. #define NOR_CMD_LUT_SEQ_IDX_EXIT_NOCMD \
  248. 15 //!< 15 Exit 0-4-4/0-8-8 mode sequence id in lookupTable stored in config blobk
  249. /*
  250. * Serial NOR configuration block
  251. */
  252. typedef struct _flexspi_nor_config
  253. {
  254. flexspi_mem_config_t memConfig; //!< Common memory configuration info via FlexSPI
  255. uint32_t pageSize; //!< Page size of Serial NOR
  256. uint32_t sectorSize; //!< Sector size of Serial NOR
  257. uint8_t ipcmdSerialClkFreq; //!< Clock frequency for IP command
  258. uint8_t isUniformBlockSize; //!< Sector/Block size is the same
  259. uint8_t reserved0[2]; //!< Reserved for future use
  260. uint8_t serialNorType; //!< Serial NOR Flash type: 0/1/2/3
  261. uint8_t needExitNoCmdMode; //!< Need to exit NoCmd mode before other IP command
  262. uint8_t halfClkForNonReadCmd; //!< Half the Serial Clock for non-read command: true/false
  263. uint8_t needRestoreNoCmdMode; //!< Need to Restore NoCmd mode after IP commmand execution
  264. uint32_t blockSize; //!< Block size
  265. uint32_t reserve2[11]; //!< Reserved for future use
  266. } flexspi_nor_config_t;
  267. #ifdef __cplusplus
  268. extern "C" {
  269. #endif
  270. #ifdef __cplusplus
  271. }
  272. #endif
  273. #endif // __FLEXSPI_NOR_FLASH_H__