硬汉嵌入式论坛

 找回密码
 立即注册
查看: 4217|回复: 4
收起左侧

[Flashloader] 请教 FlexSPI Configuration block中Lookup table数据格式

[复制链接]

760

主题

1052

回帖

3337

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
3337
发表于 2018-2-19 00:14:54 | 显示全部楼层 |阅读模式

关于这个配置块,其他字段在RM中都解释了,基本都能理解。Lookup table查询表这个字段(256字节)没有看明白(标注红框的)。
有网友研究过没有,这个Lookup table 的具体格式,以及和LUT Sequence的关系。

这是有elftosb.exe工具生成的数据块。
bootdata.png
bootdata-2.png
回复

使用道具 举报

1万

主题

7万

回帖

11万

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
117530
QQ
发表于 2018-2-19 01:54:56 | 显示全部楼层
NXP官方的资料做的不完善,用户得费很大的劲才可以找到资料,花了2个小时找到了一个配置实例,但是还不够详细,需要官方后面出专门的文档才行。
1. 安装找个软件包
QQ截图20180219015403.png

2. 在安装路径的的XIP文件夹里面有四个文件,D:\Keil_v525pre2\ARM\PACK\Keil\iMXRT1052_DevelopersKit_BSP\1.0.0\SDK\devices\MIMXRT1052\xip
其中
fsl_flexspi_nor_flash.c配置实例
fsl_flexspi_nor_flash.h详细配置和注释说明。
QQ截图20180219015627.png

3. fsl_flexspi_nor_flash.h内容
  1. /*
  2. * Copyright (c) 2016, Freescale Semiconductor, Inc.
  3. * Copyright 2016-2017 NXP
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification,
  7. * are permitted provided that the following conditions are met:
  8. *
  9. * o Redistributions of source code must retain the above copyright notice, this
  10. * list
  11. *   of conditions and the following disclaimer.
  12. *
  13. * o Redistributions in binary form must reproduce the above copyright notice,
  14. * this
  15. *   list of conditions and the following disclaimer in the documentation and/or
  16. *   other materials provided with the distribution.
  17. *
  18. * o Neither the name of Freescale Semiconductor, Inc. nor the names of its
  19. *   contributors may be used to endorse or promote products derived from this
  20. *   software without specific prior written permission.
  21. *
  22. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  23. * AND
  24. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  25. * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  26. * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
  27. * FOR
  28. * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  29. * DAMAGES
  30. * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  31. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  32. * ON
  33. * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  34. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  35. * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  36. */

  37. #ifndef __FLEXSPI_NOR_FLASH_H__
  38. #define __FLEXSPI_NOR_FLASH_H__

  39. #include <stdint.h>
  40. #include <stdbool.h>
  41. #include "fsl_common.h"

  42. /* FLEXSPI memory config block related defintions */
  43. #define FLEXSPI_CFG_BLK_TAG (0x42464346UL)     // ascii "FCFB" Big Endian
  44. #define FLEXSPI_CFG_BLK_VERSION (0x56010400UL) // V1.4.0
  45. #define FLEXSPI_CFG_BLK_SIZE (512)

  46. /* FLEXSPI Feature related definitions */
  47. #define FLEXSPI_FEATURE_HAS_PARALLEL_MODE 1

  48. /* Lookup table related defintions */
  49. #define CMD_INDEX_READ 0
  50. #define CMD_INDEX_READSTATUS 1
  51. #define CMD_INDEX_WRITEENABLE 2
  52. #define CMD_INDEX_WRITE 4

  53. #define CMD_LUT_SEQ_IDX_READ 0
  54. #define CMD_LUT_SEQ_IDX_READSTATUS 1
  55. #define CMD_LUT_SEQ_IDX_WRITEENABLE 3
  56. #define CMD_LUT_SEQ_IDX_WRITE 9

  57. #define CMD_SDR 0x01
  58. #define CMD_DDR 0x21
  59. #define RADDR_SDR 0x02
  60. #define RADDR_DDR 0x22
  61. #define CADDR_SDR 0x03
  62. #define CADDR_DDR 0x23
  63. #define MODE1_SDR 0x04
  64. #define MODE1_DDR 0x24
  65. #define MODE2_SDR 0x05
  66. #define MODE2_DDR 0x25
  67. #define MODE4_SDR 0x06
  68. #define MODE4_DDR 0x26
  69. #define MODE8_SDR 0x07
  70. #define MODE8_DDR 0x27
  71. #define WRITE_SDR 0x08
  72. #define WRITE_DDR 0x28
  73. #define READ_SDR 0x09
  74. #define READ_DDR 0x29
  75. #define LEARN_SDR 0x0A
  76. #define LEARN_DDR 0x2A
  77. #define DATSZ_SDR 0x0B
  78. #define DATSZ_DDR 0x2B
  79. #define DUMMY_SDR 0x0C
  80. #define DUMMY_DDR 0x2C
  81. #define DUMMY_RWDS_SDR 0x0D
  82. #define DUMMY_RWDS_DDR 0x2D
  83. #define JMP_ON_CS 0x1F
  84. #define STOP 0

  85. #define FLEXSPI_1PAD 0
  86. #define FLEXSPI_2PAD 1
  87. #define FLEXSPI_4PAD 2
  88. #define FLEXSPI_8PAD 3

  89. #define FLEXSPI_LUT_SEQ(cmd0, pad0, op0, cmd1, pad1, op1)                                                              \
  90.     (FLEXSPI_LUT_OPERAND0(op0) | FLEXSPI_LUT_NUM_PADS0(pad0) | FLEXSPI_LUT_OPCODE0(cmd0) | FLEXSPI_LUT_OPERAND1(op1) | \
  91.      FLEXSPI_LUT_NUM_PADS1(pad1) | FLEXSPI_LUT_OPCODE1(cmd1))

  92. //!@brief Definitions for FlexSPI Serial Clock Frequency
  93. typedef enum _FlexSpiSerialClockFreq
  94. {
  95.     kFlexSpiSerialClk_30MHz = 1,
  96.     kFlexSpiSerialClk_50MHz = 2,
  97.     kFlexSpiSerialClk_60MHz = 3,
  98.     kFlexSpiSerialClk_75MHz = 4,
  99.     kFlexSpiSerialClk_80MHz = 5,
  100.     kFlexSpiSerialClk_100MHz = 6,
  101.     kFlexSpiSerialClk_133MHz = 7,
  102.     kFlexSpiSerialClk_166MHz = 8,
  103.     kFlexSpiSerialClk_200MHz = 9,
  104. } flexspi_serial_clk_freq_t;

  105. //!@brief FlexSPI clock configuration type
  106. enum
  107. {
  108.     kFlexSpiClk_SDR, //!< Clock configure for SDR mode
  109.     kFlexSpiClk_DDR, //!< Clock configurat for DDR mode
  110. };

  111. //!@brief FlexSPI Read Sample Clock Source definition
  112. typedef enum _FlashReadSampleClkSource
  113. {
  114.     kFlexSPIReadSampleClk_LoopbackInternally = 0,
  115.     kFlexSPIReadSampleClk_LoopbackFromDqsPad = 1,
  116.     kFlexSPIReadSampleClk_LoopbackFromSckPad = 2,
  117.     kFlexSPIReadSampleClk_ExternalInputFromDqsPad = 3,
  118. } flexspi_read_sample_clk_t;


  119. //!@brief Misc feature bit definitions
  120. enum
  121. {
  122.     kFlexSpiMiscOffset_DiffClkEnable = 0,            //!< Bit for Differential clock enable
  123.     kFlexSpiMiscOffset_Ck2Enable = 1,                //!< Bit for CK2 enable
  124.     kFlexSpiMiscOffset_ParallelEnable = 2,           //!< Bit for Parallel mode enable
  125.     kFlexSpiMiscOffset_WordAddressableEnable = 3,    //!< Bit for Word Addressable enable
  126.     kFlexSpiMiscOffset_SafeConfigFreqEnable = 4,     //!< Bit for Safe Configuration Frequency enable
  127.     kFlexSpiMiscOffset_PadSettingOverrideEnable = 5, //!< Bit for Pad setting override enable
  128.     kFlexSpiMiscOffset_DdrModeEnable = 6,            //!< Bit for DDR clock confiuration indication.
  129. };

  130. //!@brief Flash Type Definition
  131. enum
  132. {
  133.     kFlexSpiDeviceType_SerialNOR = 1,       //!< Flash devices are Serial NOR
  134.     kFlexSpiDeviceType_SerialNAND = 2,      //!< Flash devices are Serial NAND
  135.     kFlexSpiDeviceType_SerialRAM = 3,       //!< Flash devices are Serial RAM/HyperFLASH
  136.     kFlexSpiDeviceType_MCP_NOR_NAND = 0x12, //!< Flash device is MCP device, A1 is Serial NOR, A2 is Serial NAND
  137.     kFlexSpiDeviceType_MCP_NOR_RAM = 0x13,  //!< Flash deivce is MCP device, A1 is Serial NOR, A2 is Serial RAMs
  138. };

  139. //!@brief Flash Pad Definitions
  140. enum
  141. {
  142.     kSerialFlash_1Pad = 1,
  143.     kSerialFlash_2Pads = 2,
  144.     kSerialFlash_4Pads = 4,
  145.     kSerialFlash_8Pads = 8,
  146. };

  147. //!@brief FlexSPI LUT Sequence structure
  148. typedef struct _lut_sequence
  149. {
  150.     uint8_t seqNum; //!< Sequence Number, valid number: 1-16
  151.     uint8_t seqId;  //!< Sequence Index, valid number: 0-15
  152.     uint16_t reserved;
  153. } flexspi_lut_seq_t;

  154. //!@brief Flash Configuration Command Type
  155. enum
  156. {
  157.     kDeviceConfigCmdType_Generic,    //!< Generic command, for example: configure dummy cycles, drive strength, etc
  158.     kDeviceConfigCmdType_QuadEnable, //!< Quad Enable command
  159.     kDeviceConfigCmdType_Spi2Xpi,    //!< Switch from SPI to DPI/QPI/OPI mode
  160.     kDeviceConfigCmdType_Xpi2Spi,    //!< Switch from DPI/QPI/OPI to SPI mode
  161.     kDeviceConfigCmdType_Spi2NoCmd,  //!< Switch to 0-4-4/0-8-8 mode
  162.     kDeviceConfigCmdType_Reset,      //!< Reset device command
  163. };

  164. //!@brief FlexSPI Memory Configuration Block
  165. typedef struct _FlexSPIConfig
  166. {
  167.     uint32_t tag;               //!< [0x000-0x003] Tag, fixed value 0x42464346UL
  168.     uint32_t version;           //!< [0x004-0x007] Version,[31:24] -'V', [23:16] - Major, [15:8] - Minor, [7:0] - bugfix
  169.     uint32_t reserved0;         //!< [0x008-0x00b] Reserved for future use
  170.     uint8_t readSampleClkSrc;   //!< [0x00c-0x00c] Read Sample Clock Source, valid value: 0/1/3
  171.     uint8_t csHoldTime;       //!< [0x00d-0x00d] CS hold time, default value: 3
  172.     uint8_t csSetupTime;      //!< [0x00e-0x00e] CS setup time, default value: 3
  173.     uint8_t columnAddressWidth; //!< [0x00f-0x00f] Column Address with, for HyperBus protocol, it is fixed to 3, For
  174.     //! Serial NAND, need to refer to datasheet
  175.     uint8_t deviceModeCfgEnable; //!< [0x010-0x010] Device Mode Configure enable flag, 1 - Enable, 0 - Disable
  176.     uint8_t deviceModeType; //!< [0x011-0x011] Specify the configuration command type:Quad Enable, DPI/QPI/OPI switch,
  177.     //! Generic configuration, etc.
  178.     uint16_t waitTimeCfgCommands; //!< [0x012-0x013] Wait time for all configuration commands, unit: 100us, Used for
  179.     //! DPI/QPI/OPI switch or reset command
  180.     flexspi_lut_seq_t deviceModeSeq; //!< [0x014-0x017] Device mode sequence info, [7:0] - LUT sequence id, [15:8] - LUt
  181.     //! sequence number, [31:16] Reserved
  182.     uint32_t deviceModeArg;    //!< [0x018-0x01b] Argument/Parameter for device configuration
  183.     uint8_t configCmdEnable;   //!< [0x01c-0x01c] Configure command Enable Flag, 1 - Enable, 0 - Disable
  184.     uint8_t configModeType[3]; //!< [0x01d-0x01f] Configure Mode Type, similar as deviceModeTpe
  185.     flexspi_lut_seq_t
  186.         configCmdSeqs[3]; //!< [0x020-0x02b] Sequence info for Device Configuration command, similar as deviceModeSeq
  187.     uint32_t reserved1;   //!< [0x02c-0x02f] Reserved for future use
  188.     uint32_t configCmdArgs[3];     //!< [0x030-0x03b] Arguments/Parameters for device Configuration commands
  189.     uint32_t reserved2;            //!< [0x03c-0x03f] Reserved for future use
  190.     uint32_t controllerMiscOption; //!< [0x040-0x043] Controller Misc Options, see Misc feature bit definitions for more
  191.     //! details
  192.     uint8_t deviceType;    //!< [0x044-0x044] Device Type:  See Flash Type Definition for more details
  193.     uint8_t sflashPadType; //!< [0x045-0x045] Serial Flash Pad Type: 1 - Single, 2 - Dual, 4 - Quad, 8 - Octal
  194.     uint8_t serialClkFreq; //!< [0x046-0x046] Serial Flash Frequencey, device specific definitions, See System Boot
  195.     //! Chapter for more details
  196.     uint8_t lutCustomSeqEnable; //!< [0x047-0x047] LUT customization Enable, it is required if the program/erase cannot
  197.     //! be done using 1 LUT sequence, currently, only applicable to HyperFLASH
  198.     uint32_t reserved3[2];           //!< [0x048-0x04f] Reserved for future use
  199.     uint32_t sflashA1Size;           //!< [0x050-0x053] Size of Flash connected to A1
  200.     uint32_t sflashA2Size;           //!< [0x054-0x057] Size of Flash connected to A2
  201.     uint32_t sflashB1Size;           //!< [0x058-0x05b] Size of Flash connected to B1
  202.     uint32_t sflashB2Size;           //!< [0x05c-0x05f] Size of Flash connected to B2
  203.     uint32_t csPadSettingOverride;   //!< [0x060-0x063] CS pad setting override value
  204.     uint32_t sclkPadSettingOverride; //!< [0x064-0x067] SCK pad setting override value
  205.     uint32_t dataPadSettingOverride; //!< [0x068-0x06b] data pad setting override value
  206.     uint32_t dqsPadSettingOverride;  //!< [0x06c-0x06f] DQS pad setting override value
  207.     uint32_t timeoutInMs;            //!< [0x070-0x073] Timeout threshold for read status command
  208.     uint32_t commandInterval;        //!< [0x074-0x077] CS deselect interval between two commands
  209.     uint16_t dataValidTime[2]; //!< [0x078-0x07b] CLK edge to data valid time for PORT A and PORT B, in terms of 0.1ns
  210.     uint16_t busyOffset;       //!< [0x07c-0x07d] Busy offset, valid value: 0-31
  211.     uint16_t busyBitPolarity;  //!< [0x07e-0x07f] Busy flag polarity, 0 - busy flag is 1 when flash device is busy, 1 -
  212.     //! busy flag is 0 when flash device is busy
  213.     uint32_t lookupTable[64];           //!< [0x080-0x17f] Lookup table holds Flash command sequences
  214.     flexspi_lut_seq_t lutCustomSeq[12]; //!< [0x180-0x1af] Customizable LUT Sequences
  215.     uint32_t reserved4[4];              //!< [0x1b0-0x1bf] Reserved for future use
  216. } flexspi_mem_config_t;

  217. /*  */
  218. #define NOR_CMD_INDEX_READ CMD_INDEX_READ               //!< 0
  219. #define NOR_CMD_INDEX_READSTATUS CMD_INDEX_READSTATUS   //!< 1
  220. #define NOR_CMD_INDEX_WRITEENABLE CMD_INDEX_WRITEENABLE //!< 2
  221. #define NOR_CMD_INDEX_ERASESECTOR 3                     //!< 3
  222. #define NOR_CMD_INDEX_PAGEPROGRAM CMD_INDEX_WRITE       //!< 4
  223. #define NOR_CMD_INDEX_CHIPERASE 5                       //!< 5
  224. #define NOR_CMD_INDEX_DUMMY 6                           //!< 6
  225. #define NOR_CMD_INDEX_ERASEBLOCK 7                      //!< 7

  226. #define NOR_CMD_LUT_SEQ_IDX_READ CMD_LUT_SEQ_IDX_READ //!< 0  READ LUT sequence id in lookupTable stored in config block
  227. #define NOR_CMD_LUT_SEQ_IDX_READSTATUS \
  228.     CMD_LUT_SEQ_IDX_READSTATUS //!< 1  Read Status LUT sequence id in lookupTable stored in config block
  229. #define NOR_CMD_LUT_SEQ_IDX_READSTATUS_XPI \
  230.     2 //!< 2  Read status DPI/QPI/OPI sequence id in lookupTable stored in config block
  231. #define NOR_CMD_LUT_SEQ_IDX_WRITEENABLE \
  232.     CMD_LUT_SEQ_IDX_WRITEENABLE //!< 3  Write Enable sequence id in lookupTable stored in config block
  233. #define NOR_CMD_LUT_SEQ_IDX_WRITEENABLE_XPI \
  234.     4 //!< 4  Write Enable DPI/QPI/OPI sequence id in lookupTable stored in config block
  235. #define NOR_CMD_LUT_SEQ_IDX_ERASESECTOR 5 //!< 5  Erase Sector sequence id in lookupTable stored in config block
  236. #define NOR_CMD_LUT_SEQ_IDX_ERASEBLOCK 8  //!< 8 Erase Block sequence id in lookupTable stored in config block
  237. #define NOR_CMD_LUT_SEQ_IDX_PAGEPROGRAM \
  238.     CMD_LUT_SEQ_IDX_WRITE                //!< 9  Program sequence id in lookupTable stored in config block
  239. #define NOR_CMD_LUT_SEQ_IDX_CHIPERASE 11 //!< 11 Chip Erase sequence in lookupTable id stored in config block
  240. #define NOR_CMD_LUT_SEQ_IDX_READ_SFDP 13 //!< 13 Read SFDP sequence in lookupTable id stored in config block
  241. #define NOR_CMD_LUT_SEQ_IDX_RESTORE_NOCMD \
  242.     14 //!< 14 Restore 0-4-4/0-8-8 mode sequence id in lookupTable stored in config block
  243. #define NOR_CMD_LUT_SEQ_IDX_EXIT_NOCMD \
  244.     15 //!< 15 Exit 0-4-4/0-8-8 mode sequence id in lookupTable stored in config blobk


  245. /*
  246. *  Serial NOR configuration block
  247. */
  248. typedef struct _flexspi_nor_config
  249. {
  250.     flexspi_mem_config_t memConfig; //!< Common memory configuration info via FlexSPI
  251.     uint32_t pageSize;              //!< Page size of Serial NOR
  252.     uint32_t sectorSize;            //!< Sector size of Serial NOR
  253.     uint8_t ipcmdSerialClkFreq;     //!< Clock frequency for IP command
  254.     uint8_t isUniformBlockSize;     //!< Sector/Block size is the same
  255.     uint8_t reserved0[2];           //!< Reserved for future use
  256.     uint8_t serialNorType;          //!< Serial NOR Flash type: 0/1/2/3
  257.     uint8_t needExitNoCmdMode;      //!< Need to exit NoCmd mode before other IP command
  258.     uint8_t halfClkForNonReadCmd;   //!< Half the Serial Clock for non-read command: true/false
  259.     uint8_t needRestoreNoCmdMode;   //!< Need to Restore NoCmd mode after IP commmand execution
  260.     uint32_t blockSize;             //!< Block size
  261.     uint32_t reserve2[11];          //!< Reserved for future use
  262. } flexspi_nor_config_t;

  263. #ifdef __cplusplus
  264. extern "C" {
  265. #endif

  266. #ifdef __cplusplus
  267. }
  268. #endif

  269. #endif // __FLEXSPI_NOR_FLASH_H__
复制代码






回复

使用道具 举报

1万

主题

7万

回帖

11万

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
117530
QQ
发表于 2018-2-19 02:25:00 | 显示全部楼层
之前论坛网友给官方评估板做的XIP例子,也是用的这几个文件,可以作为测试对比:
https://forum.anfulai.cn/forum.p ... 9&highlight=xip
回复

使用道具 举报

0

主题

154

回帖

154

积分

初级会员

积分
154
发表于 2018-2-19 09:40:28 | 显示全部楼层
这里面的东西要对照 FlexSPI 这一章去看才能看明白。Lookup table总共支持16组,每组又有8个子序列。对于非HyperFLASH这种的,每组都能表示一个完整的FLASH的操作序列,比如 Write Enable, Page Program, 所以lutCustomEnable以及lutCustomSeq是不需要的,对于HyperFLASH,由于除读之外的命令都需要多个序列才能完成,所以需要用lutCustomSequence来指定需要多少条序列来完成这些操作。
回复

使用道具 举报

1万

主题

7万

回帖

11万

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
117530
QQ
发表于 2018-2-19 16:31:08 | 显示全部楼层
unknownuser 发表于 2018-2-19 09:40
这里面的东西要对照 FlexSPI 这一章去看才能看明白。Lookup table总共支持16组,每组又有8个子序列。对于非 ...

感谢大神告知
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|小黑屋|Archiver|手机版|硬汉嵌入式论坛

GMT+8, 2025-8-12 19:56 , Processed in 0.042983 second(s), 27 queries .

Powered by Discuz! X3.4 Licensed

Copyright © 2001-2023, Tencent Cloud.

快速回复 返回顶部 返回列表