<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How can I initialize HyperRAM connecting to FlexSPI1 in i.MX RT Crossover MCUs</title>
    <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/How-can-I-initialize-HyperRAM-connecting-to-FlexSPI1/m-p/1654555#M25142</link>
    <description>&lt;P&gt;I have tried linking the xmcd to 0x1040 and also doesn't work.&lt;/P&gt;&lt;P&gt;Pin config is as same as the reference manual mentions below:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="1.png" style="width: 980px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/224169i441DA98BA06C8631/image-size/large?v=v2&amp;amp;px=999" role="button" title="1.png" alt="1.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Link script:&lt;/P&gt;&lt;P&gt;It seems MCUXpresso IDE won't change the link script if I set `XIP_BOOT_HEADER_DCD_ENABLE=0` and `XIP_BOOT_HEADER_XMCD_ENABLE=1`.I have to change it manually.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;.boot_hdr : ALIGN(4)
{
	FILL(0xff)
	. = 0x400 ;
	__boot_hdr_start__ = ABSOLUTE(.) ;
	KEEP(*(.boot_hdr.conf))
	. = 0x1000 ;
	__boot_hdr_ivt_loadaddr__  =  ABSOLUTE(.) ;
	KEEP(*(.boot_hdr.ivt))
	. = 0x1020 ;
	__boot_hdr_boot_data_loadaddr__ = ABSOLUTE(.) ;
	KEEP(*(.boot_hdr.boot_data))
	. = 0x1030 ;
	__boot_hdr_dcd_loadaddr__ = ABSOLUTE(.) ;
	. = 0x1040 ;
	KEEP(*(.boot_hdr.xmcd_data))
	__boot_hdr_end__ = ABSOLUTE(.) ;
	. = 0x2000 ;
} &amp;gt;BOARD_FLASH&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;binary:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="bin.jpg" style="width: 967px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/224171i3A5F63A67822B58C/image-size/large?v=v2&amp;amp;px=999" role="button" title="bin.jpg" alt="bin.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;MPU:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;MPU-&amp;gt;RBAR = ARM_MPU_RBAR(2, 0x30000000U);&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;MPU-&amp;gt;RASR = ARM_MPU_RASR(0, ARM_MPU_AP_FULL, 2, 0, 0, 0, 0, ARM_MPU_REGION_SIZE_64MB);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Testify:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;uint32_t *hyperram = (uint32_t *)(0x30000000U);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;hyperram[0] = 0x12345678;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;if(hyperram[0] == 0x12345678) PRINTF("PASS");&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Anything else I should pay attention to?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
    <pubDate>Mon, 22 May 2023 08:17:46 GMT</pubDate>
    <dc:creator>Vinos</dc:creator>
    <dc:date>2023-05-22T08:17:46Z</dc:date>
    <item>
      <title>How can I initialize HyperRAM connecting to FlexSPI1</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/How-can-I-initialize-HyperRAM-connecting-to-FlexSPI1/m-p/1653707#M25119</link>
      <description>&lt;P&gt;Chip:RT1176&lt;/P&gt;&lt;P&gt;IDE:MCUXPresso IDE&lt;/P&gt;&lt;P&gt;FlexSPI2 is connected to NOR Flash,and FlexSPI1 is connected to HyperRAM on my board.&lt;/P&gt;&lt;P&gt;Do you have DCD configuration example for hyperRAM please?&lt;/P&gt;&lt;P&gt;--------&lt;/P&gt;&lt;P&gt;Chapter 10.8.2.3 in reference manual mentions XMCD could configure HyperRAM .&lt;/P&gt;&lt;P&gt;So I add the `xmcd` component,and change the xmcd_data array as below:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;const uint32_t xmcd_data[] = {
    0xC0000008,
	0xC0000700
};&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But it doesn't work.&lt;/P&gt;&lt;P&gt;I find that the section `__attribute__((section(".boot_hdr.xmcd_data"), used))` declared in xmcd.c is not defined in evkbmimxrt1170_freertos_hello_cm7_Debug.ld.&lt;/P&gt;&lt;P&gt;The reference manual saids "The XMCD header resides at the fixed offset 0x40 from the IVT header",so I change evkbmimxrt1170_freertos_hello_cm7_Debug.ld manually as below:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;    .boot_hdr : ALIGN(4)
    {
        FILL(0xff)
		. = 0x40 ;
		KEEP(*(.boot_hdr.xmcd_data))
        . = 0x400 ;
        __boot_hdr_start__ = ABSOLUTE(.) ;
        KEEP(*(.boot_hdr.conf))
        . = 0x1000 ;
        __boot_hdr_ivt_loadaddr__  =  ABSOLUTE(.) ;
        KEEP(*(.boot_hdr.ivt))
        . = 0x1020 ;
        __boot_hdr_boot_data_loadaddr__ = ABSOLUTE(.) ;
        KEEP(*(.boot_hdr.boot_data))
        . = 0x1030 ;
        __boot_hdr_dcd_loadaddr__ = ABSOLUTE(.) ;
        KEEP(*(.boot_hdr.dcd_data))
        __boot_hdr_end__ = ABSOLUTE(.) ;
        . = 0x2000 ;
    } &amp;gt;BOARD_FLASH&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But the hyperRAM also doesn't work.&lt;/P&gt;&lt;P&gt;How can I initialize the hyperRAM?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 22 May 2023 07:49:11 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/How-can-I-initialize-HyperRAM-connecting-to-FlexSPI1/m-p/1653707#M25119</guid>
      <dc:creator>Vinos</dc:creator>
      <dc:date>2023-05-22T07:49:11Z</dc:date>
    </item>
    <item>
      <title>Re: How can I initialize HyperRAM connecting to FlexSPI1</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/How-can-I-initialize-HyperRAM-connecting-to-FlexSPI1/m-p/1654524#M25141</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/215805"&gt;@Vinos&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;"The XMCD header resides at the fixed offset 0x40 from the&lt;STRONG&gt; IVT header&lt;/STRONG&gt;".&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;IVT is start from 0x1000. So, XMCD is at 0x1040. That means if you have DCD, you can't have XMCD.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Jing&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 22 May 2023 07:38:13 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/How-can-I-initialize-HyperRAM-connecting-to-FlexSPI1/m-p/1654524#M25141</guid>
      <dc:creator>jingpan</dc:creator>
      <dc:date>2023-05-22T07:38:13Z</dc:date>
    </item>
    <item>
      <title>Re: How can I initialize HyperRAM connecting to FlexSPI1</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/How-can-I-initialize-HyperRAM-connecting-to-FlexSPI1/m-p/1654555#M25142</link>
      <description>&lt;P&gt;I have tried linking the xmcd to 0x1040 and also doesn't work.&lt;/P&gt;&lt;P&gt;Pin config is as same as the reference manual mentions below:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="1.png" style="width: 980px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/224169i441DA98BA06C8631/image-size/large?v=v2&amp;amp;px=999" role="button" title="1.png" alt="1.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Link script:&lt;/P&gt;&lt;P&gt;It seems MCUXpresso IDE won't change the link script if I set `XIP_BOOT_HEADER_DCD_ENABLE=0` and `XIP_BOOT_HEADER_XMCD_ENABLE=1`.I have to change it manually.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;.boot_hdr : ALIGN(4)
{
	FILL(0xff)
	. = 0x400 ;
	__boot_hdr_start__ = ABSOLUTE(.) ;
	KEEP(*(.boot_hdr.conf))
	. = 0x1000 ;
	__boot_hdr_ivt_loadaddr__  =  ABSOLUTE(.) ;
	KEEP(*(.boot_hdr.ivt))
	. = 0x1020 ;
	__boot_hdr_boot_data_loadaddr__ = ABSOLUTE(.) ;
	KEEP(*(.boot_hdr.boot_data))
	. = 0x1030 ;
	__boot_hdr_dcd_loadaddr__ = ABSOLUTE(.) ;
	. = 0x1040 ;
	KEEP(*(.boot_hdr.xmcd_data))
	__boot_hdr_end__ = ABSOLUTE(.) ;
	. = 0x2000 ;
} &amp;gt;BOARD_FLASH&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;binary:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="bin.jpg" style="width: 967px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/224171i3A5F63A67822B58C/image-size/large?v=v2&amp;amp;px=999" role="button" title="bin.jpg" alt="bin.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;MPU:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;MPU-&amp;gt;RBAR = ARM_MPU_RBAR(2, 0x30000000U);&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;MPU-&amp;gt;RASR = ARM_MPU_RASR(0, ARM_MPU_AP_FULL, 2, 0, 0, 0, 0, ARM_MPU_REGION_SIZE_64MB);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Testify:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;uint32_t *hyperram = (uint32_t *)(0x30000000U);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;hyperram[0] = 0x12345678;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;if(hyperram[0] == 0x12345678) PRINTF("PASS");&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Anything else I should pay attention to?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 22 May 2023 08:17:46 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/How-can-I-initialize-HyperRAM-connecting-to-FlexSPI1/m-p/1654555#M25142</guid>
      <dc:creator>Vinos</dc:creator>
      <dc:date>2023-05-22T08:17:46Z</dc:date>
    </item>
    <item>
      <title>Re: How can I initialize HyperRAM connecting to FlexSPI1</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/How-can-I-initialize-HyperRAM-connecting-to-FlexSPI1/m-p/1654627#M25147</link>
      <description>&lt;P&gt;Initializing HyperRAM and connecting it to FlexSPI1 involves a few steps. The exact implementation may vary depending on the specific microcontroller or development board you are using. However, I can provide you with a general outline of the process:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;Configure the FlexSPI1 Controller: First, you need to configure the FlexSPI1 controller on your microcontroller. This typically involves setting up the necessary pins, clock configuration, and control registers. Consult the reference manual or datasheet of your microcontroller for specific instructions on configuring the FlexSPI1 controller.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Configure HyperRAM Mode: HyperRAM can operate in different modes, such as Octal SPI, Quad SPI, or HyperBus mode. Determine the mode supported by your HyperRAM and configure the FlexSPI1 controller to operate in that mode. This includes setting the appropriate command and data protocols, addressing mode, and timing parameters.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Initialize the FlexSPI1 Controller: Initialize the FlexSPI1 controller by setting up its control registers, clock configuration, and command settings. This typically involves configuring registers such as MCR0 (Module Control Register 0), MCR1 (Module Control Register 1), IPCR0 (IP Control Register 0), IPCR1 (IP Control Register 1), and others. Refer to the microcontroller's reference manual for the specific registers and configurations required.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Configure HyperRAM Parameters: Configure the HyperRAM parameters, such as the number of address bytes, data bus width, burst length, and timing requirements. These parameters should match the specifications of your HyperRAM device. Refer to the HyperRAM datasheet or technical documentation for the correct values and timing diagrams.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Enable FlexSPI1 Interrupts (Optional): If you want to utilize interrupts for data transfer or status handling, enable the relevant interrupts for FlexSPI1. This allows your microcontroller to receive interrupts when specific events occur, such as completion of data transfers or errors.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&amp;nbsp;&lt;/LI&gt;&lt;/OL&gt;</description>
      <pubDate>Mon, 22 May 2023 09:05:36 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/How-can-I-initialize-HyperRAM-connecting-to-FlexSPI1/m-p/1654627#M25147</guid>
      <dc:creator>trevorholmes</dc:creator>
      <dc:date>2023-05-22T09:05:36Z</dc:date>
    </item>
    <item>
      <title>Re: How can I initialize HyperRAM connecting to FlexSPI1</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/How-can-I-initialize-HyperRAM-connecting-to-FlexSPI1/m-p/1654670#M25149</link>
      <description>Please don't reply using ChatGPT.</description>
      <pubDate>Mon, 22 May 2023 09:31:34 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/How-can-I-initialize-HyperRAM-connecting-to-FlexSPI1/m-p/1654670#M25149</guid>
      <dc:creator>Vinos</dc:creator>
      <dc:date>2023-05-22T09:31:34Z</dc:date>
    </item>
    <item>
      <title>Re: How can I initialize HyperRAM connecting to FlexSPI1</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/How-can-I-initialize-HyperRAM-connecting-to-FlexSPI1/m-p/1655300#M25163</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/215805"&gt;@Vinos&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Here is a demo shows the correct XMCD address.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.nxp.com/t5/i-MX-RT/XMCD-setting-sample-program/td-p/1420419" target="_blank" rel="noopener"&gt;https://community.nxp.com/t5/i-MX-RT/XMCD-setting-sample-program/td-p/1420419&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;I can't find a hyperRAM demo. What is your HyperRAM? I guess there is configuration problem.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Jing&lt;/P&gt;</description>
      <pubDate>Tue, 23 May 2023 06:34:51 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/How-can-I-initialize-HyperRAM-connecting-to-FlexSPI1/m-p/1655300#M25163</guid>
      <dc:creator>jingpan</dc:creator>
      <dc:date>2023-05-23T06:34:51Z</dc:date>
    </item>
    <item>
      <title>Re: How can I initialize HyperRAM connecting to FlexSPI1</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/How-can-I-initialize-HyperRAM-connecting-to-FlexSPI1/m-p/1655413#M25168</link>
      <description>&lt;P&gt;I've seen that post,but that's SEMC interface for SDRAM.&lt;/P&gt;&lt;P&gt;This is the reference manual:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="option.jpg" style="width: 950px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/224379i1BCDDF9480933502/image-size/large?v=v2&amp;amp;px=999" role="button" title="option.jpg" alt="option.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;const uint32_t xmcd_data[] = {
0xC000000C,  //[4:0] means 2 option
0xC0000700,
0x00110000,  //or 0x10110000 both doesn't work
};&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Or do you have hyperram(FlexSPI1 NOR/NAND Secondary Pin Group) initilizing code please?I've no idea to initialize hyperram through this interface.&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jun 2023 03:57:35 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/How-can-I-initialize-HyperRAM-connecting-to-FlexSPI1/m-p/1655413#M25168</guid>
      <dc:creator>Vinos</dc:creator>
      <dc:date>2023-06-09T03:57:35Z</dc:date>
    </item>
    <item>
      <title>Re: How can I initialize HyperRAM connecting to FlexSPI1</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/How-can-I-initialize-HyperRAM-connecting-to-FlexSPI1/m-p/1657455#M25214</link>
      <description>&lt;P&gt;The system can't boot from flash when I fill the 0x1040 region with XMCD.&lt;/P&gt;&lt;P&gt;Now I try to configure hyperRAM in the program.Here is the code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jun 2023 03:56:31 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/How-can-I-initialize-HyperRAM-connecting-to-FlexSPI1/m-p/1657455#M25214</guid>
      <dc:creator>Vinos</dc:creator>
      <dc:date>2023-06-09T03:56:31Z</dc:date>
    </item>
    <item>
      <title>Re: How can I initialize HyperRAM connecting to FlexSPI1</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/How-can-I-initialize-HyperRAM-connecting-to-FlexSPI1/m-p/1666074#M25419</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/215805"&gt;@Vinos&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Can the application boot from flash if not use XMCD?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Jing&lt;/P&gt;</description>
      <pubDate>Thu, 08 Jun 2023 09:40:00 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/How-can-I-initialize-HyperRAM-connecting-to-FlexSPI1/m-p/1666074#M25419</guid>
      <dc:creator>jingpan</dc:creator>
      <dc:date>2023-06-08T09:40:00Z</dc:date>
    </item>
    <item>
      <title>Re: How can I initialize HyperRAM connecting to FlexSPI1</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/How-can-I-initialize-HyperRAM-connecting-to-FlexSPI1/m-p/1666096#M25420</link>
      <description>&lt;P&gt;Yes,NOR flash in FlexSPI2 works.&lt;/P&gt;&lt;P&gt;The program won't run after reset if I fill the XMCD region in 0x1040,instead,rom bootloader goes to serial downloader mode.I didn't find the reason.&lt;/P&gt;&lt;P&gt;But I think this ISIS hyperRAM should be initialized by XMCD through its "Full Configuration Block" mode(fill the LUT table myself) instead of "Simplified Configuration Option Block".&lt;/P&gt;&lt;P&gt;Now I'm testing initializing hyperRAM through code,and finally read out the vendor id successfully just now,but read/write timing may be wrong.I'll have more tries.&lt;/P&gt;&lt;P&gt;I'll try initializing through XMCD If it works.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Thu, 08 Jun 2023 10:03:41 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/How-can-I-initialize-HyperRAM-connecting-to-FlexSPI1/m-p/1666096#M25420</guid>
      <dc:creator>Vinos</dc:creator>
      <dc:date>2023-06-08T10:03:41Z</dc:date>
    </item>
    <item>
      <title>Re: How can I initialize HyperRAM connecting to FlexSPI1</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/How-can-I-initialize-HyperRAM-connecting-to-FlexSPI1/m-p/1666108#M25421</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/215805"&gt;@Vinos&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;I guess XMCD cause the system jumping to serial download mode is because some badly fault happened and the system is reset.&lt;/P&gt;
&lt;P&gt;Yes, it's better to test on flexspi driver example first. You can try to slow down clock speed under 60Mhz.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Jing&lt;/P&gt;</description>
      <pubDate>Thu, 08 Jun 2023 10:25:21 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/How-can-I-initialize-HyperRAM-connecting-to-FlexSPI1/m-p/1666108#M25421</guid>
      <dc:creator>jingpan</dc:creator>
      <dc:date>2023-06-08T10:25:21Z</dc:date>
    </item>
    <item>
      <title>Re: How can I initialize HyperRAM connecting to FlexSPI1</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/How-can-I-initialize-HyperRAM-connecting-to-FlexSPI1/m-p/1666114#M25423</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/215805"&gt;@Vinos&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Have you read&amp;nbsp;AN12239.pdf for how to config hyperRAM?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;</description>
      <pubDate>Thu, 08 Jun 2023 10:34:15 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/How-can-I-initialize-HyperRAM-connecting-to-FlexSPI1/m-p/1666114#M25423</guid>
      <dc:creator>jingpan</dc:creator>
      <dc:date>2023-06-08T10:34:15Z</dc:date>
    </item>
    <item>
      <title>Re: How can I initialize HyperRAM connecting to FlexSPI1</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/How-can-I-initialize-HyperRAM-connecting-to-FlexSPI1/m-p/1666608#M25432</link>
      <description>Yes,I've read all the relevant documents before.&lt;BR /&gt;I initialized hyperram successfully just now,the reference manual said that FlexSPI1 secondary group has a limit flash frequency under 100MHz on page 265.It's same for hyperram.</description>
      <pubDate>Fri, 09 Jun 2023 03:55:27 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/How-can-I-initialize-HyperRAM-connecting-to-FlexSPI1/m-p/1666608#M25432</guid>
      <dc:creator>Vinos</dc:creator>
      <dc:date>2023-06-09T03:55:27Z</dc:date>
    </item>
    <item>
      <title>Re: How can I initialize HyperRAM connecting to FlexSPI1</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/How-can-I-initialize-HyperRAM-connecting-to-FlexSPI1/m-p/1666630#M25436</link>
      <description>&lt;P&gt;I have another issue now,help me please&amp;nbsp;&lt;A href="https://community.nxp.com/t5/i-MX-RT/How-can-I-link-variable-to-HyperRAM-in-debug-mode/td-p/1666624" target="_self"&gt;https://community.nxp.com/t5/i-MX-RT/How-can-I-link-variable-to-HyperRAM-in-debug-mode/td-p/1666624&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jun 2023 04:51:16 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/How-can-I-initialize-HyperRAM-connecting-to-FlexSPI1/m-p/1666630#M25436</guid>
      <dc:creator>Vinos</dc:creator>
      <dc:date>2023-06-09T04:51:16Z</dc:date>
    </item>
    <item>
      <title>Re: How can I initialize HyperRAM connecting to FlexSPI1</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/How-can-I-initialize-HyperRAM-connecting-to-FlexSPI1/m-p/1740570#M27239</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/215805"&gt;@Vinos&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;Can you please tell me how you did it? I have a very similar problem.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;In my case Hyperram is connected to FLEXSPI2 and QSPI NOR FLash to FLEXSPI1.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;Thank you very much.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;Patricio&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 16 Oct 2023 16:58:43 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/How-can-I-initialize-HyperRAM-connecting-to-FlexSPI1/m-p/1740570#M27239</guid>
      <dc:creator>patriciocohen</dc:creator>
      <dc:date>2023-10-16T16:58:43Z</dc:date>
    </item>
  </channel>
</rss>

