<?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>P-SeriesのトピックRe: Parallel NOR flash booting</title>
    <link>https://community.nxp.com/t5/P-Series/Parallel-NOR-flash-booting/m-p/295672#M1024</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The parameter TEXT_BASE is incorrect either, this should be u-boot start address on flash, if your flash is from 0xe8000000 to 0xefffffff, and u-boot is put at the last section(as P2020RDB design), TEXT_BASE should be 0xeff80000 and RESET_VECTOR_ADDRESS should be 0xeffffffc, the same with P2020RDB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;Yiping Wang&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 28 May 2014 09:49:42 GMT</pubDate>
    <dc:creator>yipingwang</dc:creator>
    <dc:date>2014-05-28T09:49:42Z</dc:date>
    <item>
      <title>Parallel NOR flash booting</title>
      <link>https://community.nxp.com/t5/P-Series/Parallel-NOR-flash-booting/m-p/295666#M1018</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What changes needed in uboot - p1_p2_rdb.h file to boot from parallel NOR flash?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my board, i defined LAWs for NOR flash as: size is 128MB, CS0, flash start address 0xf0000000&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0xff700C88&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0x000F0000&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ;LAWBAR4 : @0xF0000000&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0xff700C90&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0x8040001A&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ;LAWAR4&amp;nbsp; : NOR FLASH 128M&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At present I am booting my board from SDcard, and programming u-boot.bin file (separately build for NOR) into NOR flash, removing SDcard and powering on. I could not see boot prompt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need help on parallel-NOR flash boot configuration settings for P1011 processor in uboot. I am using u-boot2009.11&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 May 2014 12:55:14 GMT</pubDate>
      <guid>https://community.nxp.com/t5/P-Series/Parallel-NOR-flash-booting/m-p/295666#M1018</guid>
      <dc:creator>sekharbabu</dc:creator>
      <dc:date>2014-05-12T12:55:14Z</dc:date>
    </item>
    <item>
      <title>Re: Parallel NOR flash booting</title>
      <link>https://community.nxp.com/t5/P-Series/Parallel-NOR-flash-booting/m-p/295667#M1019</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;First please configure the hardware switch setting on your target board to boot from NOR Flash.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the file include/configs/P1_P2_RDB.h&lt;/P&gt;&lt;P&gt;please pay attention to the following setting in memory map section.&lt;/P&gt;&lt;P&gt;#define CONFIG_SYS_FLASH_BASE&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0xef000000&lt;/P&gt;&lt;P&gt;You also could define variables TEXT_BASE and RESET_VECTOR_ADDRESS in this header file, please refer to these variables definition in board/freescale/p1_p2_rdb/config.mk.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In addition, you also need to modify law.c and tlb.c in board/freescale/p1_p2_rdb to make it suitable for your target.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 May 2014 09:06:29 GMT</pubDate>
      <guid>https://community.nxp.com/t5/P-Series/Parallel-NOR-flash-booting/m-p/295667#M1019</guid>
      <dc:creator>yipingwang</dc:creator>
      <dc:date>2014-05-16T09:06:29Z</dc:date>
    </item>
    <item>
      <title>Re: Parallel NOR flash booting</title>
      <link>https://community.nxp.com/t5/P-Series/Parallel-NOR-flash-booting/m-p/295668#M1020</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Wang,&lt;/P&gt;&lt;P&gt;Thanks for the reply. Well, I made the changes on TEXT_BASE and RESET_VECTOR_ADDRESS in the header file as 0xe8000000 and 0xf8fffffc respectively.&amp;nbsp; And also i made the changes in law.c &amp;amp; tlb.c accordingly. I biuld the uboot and observed the u-boot.bin file size 217MB. For the RAMBOOT build the u-boot.bin file size comes to 512kB . Looks like something wrong with my configuration. Can you help me, Please?&lt;/P&gt;&lt;P&gt;Please note that my NOR flash size is 128MB, so i have defined flash starting address as 0xe8000000&lt;/P&gt;&lt;P&gt;#define CONFIG_SYS_FLASH_BASE&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0xe8000000&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 May 2014 16:04:02 GMT</pubDate>
      <guid>https://community.nxp.com/t5/P-Series/Parallel-NOR-flash-booting/m-p/295668#M1020</guid>
      <dc:creator>sekharbabu</dc:creator>
      <dc:date>2014-05-16T16:04:02Z</dc:date>
    </item>
    <item>
      <title>Re: Parallel NOR flash booting</title>
      <link>https://community.nxp.com/t5/P-Series/Parallel-NOR-flash-booting/m-p/295669#M1021</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Babu,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I think the &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;RESET_VECTOR_ADDRESS&lt;/SPAN&gt; should be set as 0xefff_fffc ,and &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;CONFIG_SYS_FLASH_BASE&amp;nbsp; 0xe8000000&lt;/SPAN&gt; , of course, you need to make &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt; law.c &amp;amp; tlb.c accordingly.&lt;/SPAN&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 May 2014 02:52:56 GMT</pubDate>
      <guid>https://community.nxp.com/t5/P-Series/Parallel-NOR-flash-booting/m-p/295669#M1021</guid>
      <dc:creator>JasonWang_TW</dc:creator>
      <dc:date>2014-05-19T02:52:56Z</dc:date>
    </item>
    <item>
      <title>Re: Parallel NOR flash booting</title>
      <link>https://community.nxp.com/t5/P-Series/Parallel-NOR-flash-booting/m-p/295670#M1022</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jason,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have done the changes as you suggested on RESET_VECTOR_ADDRESS and CONFIG_SYS_FLASH_BASE. I compliled the uboot, I am getting u-boot.bin file size as 128MB, is this right file size? it suppose to be 512KB. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 May 2014 14:14:33 GMT</pubDate>
      <guid>https://community.nxp.com/t5/P-Series/Parallel-NOR-flash-booting/m-p/295670#M1022</guid>
      <dc:creator>sekharbabu</dc:creator>
      <dc:date>2014-05-27T14:14:33Z</dc:date>
    </item>
    <item>
      <title>Re: Parallel NOR flash booting</title>
      <link>https://community.nxp.com/t5/P-Series/Parallel-NOR-flash-booting/m-p/295671#M1023</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Babu,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I didn't try it before, but the size of uboot 128MB is not right, it should be 512KB, no matter what flash size is.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Have you try not modify the &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;CONFIG_SYS_FLASH_BASE and &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;RESET_VECTOR_ADDRESS &lt;/SPAN&gt;, means &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;#define CONFIG_SYS_FLASH_BASE&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0xeff800000&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #define &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;RESET_VECTOR_ADDRESS&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0xeffffffc&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; My idea is although your flash size is 128MB, the upper address lines (A27 above) are not connected, P2020 start fetching code from 0xffff_fffc, it will have the same mapping with 0xefff_fffc, By doing that, we probably get 512KB uboot size.&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 May 2014 02:23:26 GMT</pubDate>
      <guid>https://community.nxp.com/t5/P-Series/Parallel-NOR-flash-booting/m-p/295671#M1023</guid>
      <dc:creator>JasonWang_TW</dc:creator>
      <dc:date>2014-05-28T02:23:26Z</dc:date>
    </item>
    <item>
      <title>Re: Parallel NOR flash booting</title>
      <link>https://community.nxp.com/t5/P-Series/Parallel-NOR-flash-booting/m-p/295672#M1024</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The parameter TEXT_BASE is incorrect either, this should be u-boot start address on flash, if your flash is from 0xe8000000 to 0xefffffff, and u-boot is put at the last section(as P2020RDB design), TEXT_BASE should be 0xeff80000 and RESET_VECTOR_ADDRESS should be 0xeffffffc, the same with P2020RDB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;Yiping Wang&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 May 2014 09:49:42 GMT</pubDate>
      <guid>https://community.nxp.com/t5/P-Series/Parallel-NOR-flash-booting/m-p/295672#M1024</guid>
      <dc:creator>yipingwang</dc:creator>
      <dc:date>2014-05-28T09:49:42Z</dc:date>
    </item>
    <item>
      <title>Re: Parallel NOR flash booting</title>
      <link>https://community.nxp.com/t5/P-Series/Parallel-NOR-flash-booting/m-p/295673#M1025</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jason,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes, changed flash base and reset vector address, now the u-boot.bin file size is 512KB. I have programmed u-boot.bin file into the NOR flash location 0xeff80000 using BDI3000. I removed the BDI3000 and put the board in NOR boot mode (CFG_ROM_LOC(0:3) = 1111, but i am not getting the prompt in the console.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I could probe NOR flash chip select (CS0) is toggeling once. By the way i am using P1011 not P2020&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 May 2014 11:10:45 GMT</pubDate>
      <guid>https://community.nxp.com/t5/P-Series/Parallel-NOR-flash-booting/m-p/295673#M1025</guid>
      <dc:creator>sekharbabu</dc:creator>
      <dc:date>2014-05-28T11:10:45Z</dc:date>
    </item>
    <item>
      <title>Re: Parallel NOR flash booting</title>
      <link>https://community.nxp.com/t5/P-Series/Parallel-NOR-flash-booting/m-p/295674#M1026</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Wang,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Well, I did the changes again as Flash base 0xe8000000 and text_base 0xeff80000 and reset_vector 0xeffffffc. Programmed the u-boot.bin in the flash location 0xeff80000 but not booting, not getting the prompt.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 May 2014 11:23:54 GMT</pubDate>
      <guid>https://community.nxp.com/t5/P-Series/Parallel-NOR-flash-booting/m-p/295674#M1026</guid>
      <dc:creator>sekharbabu</dc:creator>
      <dc:date>2014-05-28T11:23:54Z</dc:date>
    </item>
    <item>
      <title>Re: Parallel NOR flash booting</title>
      <link>https://community.nxp.com/t5/P-Series/Parallel-NOR-flash-booting/m-p/295675#M1027</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Babu,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; There is no difference for P1010 (I am guessing its typo, FSL do not have P1011 part)&amp;nbsp; and P2020, the NOR boot mechanism is the same.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; There is my fault , there is the typo in my previous reply , it should be :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;#define CONFIG_SYS_FLASH_BASE&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0xe800_0000&amp;nbsp; // this is for 128MB flash &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #define &lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;RESET_VECTOR_ADDRESS&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0xefff_fffc&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #define CONFIG_SYS_TEXT_BASE&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt; 0xeff8_0000&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; you should observe several toggling of CS with probe , BDI tool also can be used for the debugging, you can see where the uboot code stuck. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 May 2014 12:52:25 GMT</pubDate>
      <guid>https://community.nxp.com/t5/P-Series/Parallel-NOR-flash-booting/m-p/295675#M1027</guid>
      <dc:creator>JasonWang_TW</dc:creator>
      <dc:date>2014-05-28T12:52:25Z</dc:date>
    </item>
    <item>
      <title>Re: Parallel NOR flash booting</title>
      <link>https://community.nxp.com/t5/P-Series/Parallel-NOR-flash-booting/m-p/295676#M1028</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jason,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;No, CS0 is toggeling only for 16 times. To make the board in NOR flash boot, CFG_ROM_LOC(0:3) should be 1111, any other configuration settings to be considered?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 May 2014 17:58:14 GMT</pubDate>
      <guid>https://community.nxp.com/t5/P-Series/Parallel-NOR-flash-booting/m-p/295676#M1028</guid>
      <dc:creator>sekharbabu</dc:creator>
      <dc:date>2014-05-28T17:58:14Z</dc:date>
    </item>
    <item>
      <title>Re: Parallel NOR flash booting</title>
      <link>https://community.nxp.com/t5/P-Series/Parallel-NOR-flash-booting/m-p/295677#M1029</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Babu,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; The hardware config pin associated with Boot Location is only CFG_ROM_LOC(0:3) , so your config is correct &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Have you changed law.c and tlb.c accordingly ? due to the flash base and size has changed.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Due to you have probe the CS toggeling , means CPU start to fetch code from NOR, but stuck somewhere else in uboot code.you can use debugging tool (such as Codewarrior or the BDI you used ) to see what's going on on your system.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 May 2014 06:27:29 GMT</pubDate>
      <guid>https://community.nxp.com/t5/P-Series/Parallel-NOR-flash-booting/m-p/295677#M1029</guid>
      <dc:creator>JasonWang_TW</dc:creator>
      <dc:date>2014-05-29T06:27:29Z</dc:date>
    </item>
    <item>
      <title>Re: Parallel NOR flash booting</title>
      <link>https://community.nxp.com/t5/P-Series/Parallel-NOR-flash-booting/m-p/295678#M1030</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please also pay attention to other NOR Flash related configuration parameters in the header file.&lt;/P&gt;&lt;P&gt;For example OR(AM) and BR registers, please check the values of these registers according to P1020RM and your target FLASH.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;#define CONFIG_FLASH_BR_PRELIM&amp;nbsp; (BR_PHYS_ADDR(CONFIG_SYS_FLASH_BASE_PHYS) | \&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; BR_PS_16 | BR_V)&lt;/P&gt;&lt;P&gt;#define CONFIG_FLASH_OR_PRELIM&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0xff000ff7&lt;/P&gt;&lt;P&gt;#define CONFIG_SYS_MAX_FLASH_BANKS&amp;nbsp; 1&amp;nbsp;&amp;nbsp; /* number of banks */&lt;/P&gt;&lt;P&gt;#define CONFIG_SYS_MAX_FLASH_SECT&amp;nbsp;&amp;nbsp; 128 /* sectors per device */&lt;/P&gt;&lt;P&gt;#undef&amp;nbsp; CONFIG_SYS_FLASH_CHECKSUM&lt;/P&gt;&lt;P&gt;#define CONFIG_SYS_FLASH_ERASE_TOUT 60000&amp;nbsp;&amp;nbsp; /* Flash Erase Timeout (ms) */&lt;/P&gt;&lt;P&gt;#define CONFIG_SYS_FLASH_WRITE_TOUT 500 /* Flash Write Timeout (ms) */&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 May 2014 07:04:24 GMT</pubDate>
      <guid>https://community.nxp.com/t5/P-Series/Parallel-NOR-flash-booting/m-p/295678#M1030</guid>
      <dc:creator>yipingwang</dc:creator>
      <dc:date>2014-05-29T07:04:24Z</dc:date>
    </item>
    <item>
      <title>Re: Parallel NOR flash booting</title>
      <link>https://community.nxp.com/t5/P-Series/Parallel-NOR-flash-booting/m-p/295679#M1031</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, all Flash definitions been defined in the header file properly. BR and OR registers are proper as I am see the CS0 toggeling.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 May 2014 11:10:43 GMT</pubDate>
      <guid>https://community.nxp.com/t5/P-Series/Parallel-NOR-flash-booting/m-p/295679#M1031</guid>
      <dc:creator>sekharbabu</dc:creator>
      <dc:date>2014-05-29T11:10:43Z</dc:date>
    </item>
  </channel>
</rss>

