<?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: LS1028A boot (only) RCW from I2C, ATF and u-boot from FSPI in Layerscape</title>
    <link>https://community.nxp.com/t5/Layerscape/LS1028A-boot-only-RCW-from-I2C-ATF-and-u-boot-from-FSPI/m-p/1995468#M15103</link>
    <description>&lt;P&gt;Added this to the rcw, created a bin and wrote that to the I2C EEPROM at 0x50 on the LS1028ARDB board.&lt;/P&gt;&lt;P&gt;The set the bootswitches to 1010 for I2C boot (also tried 0101 in case I got the orientation wrong).&lt;/P&gt;&lt;P&gt;When I turn on the board the RESET LED turns of, but nothing else happens.&lt;/P&gt;&lt;P&gt;If I set the switches to 1111 for FSPI boot it boots fine.&lt;/P&gt;</description>
    <pubDate>Fri, 15 Nov 2024 12:50:31 GMT</pubDate>
    <dc:creator>mikelooijmans</dc:creator>
    <dc:date>2024-11-15T12:50:31Z</dc:date>
    <item>
      <title>LS1028A boot (only) RCW from I2C, ATF and u-boot from FSPI</title>
      <link>https://community.nxp.com/t5/Layerscape/LS1028A-boot-only-RCW-from-I2C-ATF-and-u-boot-from-FSPI/m-p/1990045#M15070</link>
      <description>&lt;P&gt;I've seen some tips on this forum to boot and load the BL2 stage from I2C.&lt;/P&gt;&lt;P&gt;Want we want to do is load the RCW from I2C, and load the remainder from FSPI NOR flash. (Question #1: Is this even possible?)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried using the following PBI part in the RCW on the LS1028ARDB:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;/* Copy 64k image from FSPI NOR offset 0x9000 to OCRAM (at 0x100000) */
.pbi
blockcopy 0x0f,0x00100000,0x00100000,0x00009000
.end&lt;/LI-CODE&gt;&lt;P&gt;flashed the resulting .bin into the EEPROM at 0x50.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The FSPI NOR is bootable by itself.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The reason is that we want to switch between low and high power modes (low power means PCIe limited to gen1 and platform bus at 300MHz, while high power runs PCIe at gen3 and platform at 400MHz), and the only way to do so is to change the RCW and reboot.&lt;BR /&gt;Doing this in FSPI is doable, but if something goes wrong writing to FSPI the board will be bricked. So we want to put the RCW in I2C EEPROM, so that if things fail, we can always revert to FSPI boot which would always have a working RCW.&lt;/P&gt;</description>
      <pubDate>Thu, 07 Nov 2024 09:32:31 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Layerscape/LS1028A-boot-only-RCW-from-I2C-ATF-and-u-boot-from-FSPI/m-p/1990045#M15070</guid>
      <dc:creator>mikelooijmans</dc:creator>
      <dc:date>2024-11-07T09:32:31Z</dc:date>
    </item>
    <item>
      <title>Re: LS1028A boot (only) RCW from I2C, ATF and u-boot from FSPI</title>
      <link>https://community.nxp.com/t5/Layerscape/LS1028A-boot-only-RCW-from-I2C-ATF-and-u-boot-from-FSPI/m-p/1990068#M15071</link>
      <description>&lt;P&gt;I copied the wrong code, this is what I actually tried:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;/* Copy 64k image from FSPI NOR offset 0x9000 to OCRAM (at 0x100000) */
.pbi
blockcopy 0x0f,0x00009000,0x00100000,0x00010000
.end&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The previous post had the source and size field exchanged.&lt;/P&gt;</description>
      <pubDate>Thu, 07 Nov 2024 09:53:21 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Layerscape/LS1028A-boot-only-RCW-from-I2C-ATF-and-u-boot-from-FSPI/m-p/1990068#M15071</guid>
      <dc:creator>mikelooijmans</dc:creator>
      <dc:date>2024-11-07T09:53:21Z</dc:date>
    </item>
    <item>
      <title>Re: LS1028A boot (only) RCW from I2C, ATF and u-boot from FSPI</title>
      <link>https://community.nxp.com/t5/Layerscape/LS1028A-boot-only-RCW-from-I2C-ATF-and-u-boot-from-FSPI/m-p/1991812#M15085</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Change the switch settings and wait for some secs as I2C is lower as compared to Flexspi.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here are the updated steps:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;1. Add the following commands at the end in rcw_1500_gpu600.rcw file&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;.pbi&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;write 0x01e00400,0x1800d000&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;blockcopy 0xa,0x400,0x1800d000,0x9435&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;.end&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;CCSR write command:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;setting boot location pointer to 0x1800d000 in Boot location pointer low-order address (BOOTLOCPTRL) register present in DCFG.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;block copy command:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;blockcopy 0x0a,0x400,0x00100000,0x9400&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Source : I2C EEPROM = 0xa&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Source address: 0x400&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Destination address: OCRAM (0x100000)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Block size : size of BL2 binary in bytes&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;2. Generate the files and program at the respective locations:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;3. RCW+PBI binary -- I2C EEPROM at 0x0 (rcw_1500_gpu600.bin)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;nxf65210@lsv03611:~/data/work/ls_series/flexbuild_lsdk2108/components/firmware/rcw/ls1028ardb$ make&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;python3 ../rcw.py -i R_SQPP_0x85bb/rcw_1500_gpu600.rcw -o R_SQPP_0x85bb/rcw_1500_gpu600.bin&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;(for flexbuild versions before 2108: &amp;lt;flexbuild_dir&amp;gt;/packages/firmware/rcw/ls1028ardb/ R_SQPP_0x85bb/)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;4. BL2 binary -- I2C EEPROM at 0x400&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;nxf65210@lsv03611:~/data/work/ls_series/flexbuild_lsdk2108/components/firmware/atf$ export ARCH=arm64&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;nxf65210@lsv03611:~/data/work/ls_series/flexbuild_lsdk2108/components/firmware/atf$ export CROSS_COMPILE=aarch64-linux-gnu-&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;nxf65210@lsv03611:~/data/work/ls_series/flexbuild_lsdk2108/components/firmware/atf$ make distclean&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;REALCLEAN&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;nxf65210@lsv03611:~/data/work/ls_series/flexbuild_lsdk2108/components/firmware/atf$ make PLAT=ls1028ardb BOOT_MODE=flexspi_nor pbl RCW=/home/nxf65210/data/work/ls_series/flexbuild_lsdk2108/components/firmware/rcw/ls1028ardb/R_SQPP_0x85bb/rcw_1500_gpu600.bin&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;bl2.bin present in /flexbuild_lsdk2108/components/firmware/atf/build/ls1028ardb/release/bl2.bin&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;(for flexbuild versions before 2108: &amp;lt;flexbuild_dir&amp;gt;/packages/firmware/atf/build/ls1028ardb/release)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;5. FIP binary -- NOR flash at 0x100000&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;nxf65210@lsv03611:~/data/work/ls_series/flexbuild_lsdk2108$ flex-builder -c atf -m ls1028ardb -b xspi&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;(flexbuild_lsdk2004_update_290520/build/firmware/atf/ls1028ardb/fip_uboot.bin)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;(for flexbuild versions before 2108: fip.bin present in &amp;lt;flexbuild_dir&amp;gt;/build/firmware/atf/ls1028ardb/)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Programming EEPROM using I2C on U-Boot on LS1028ARDB&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;=&amp;gt; i2c probe&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Valid chip addresses: 00 50 52 53 57 66 67 77 7C&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;=&amp;gt; i2c write 0xa0000000 0x50 0.2 0x11c&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;=&amp;gt; i2c read 0x50 0.2 0x114 0xc0000000&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;=&amp;gt; i2c write 0xa0000000 0x50 0x400.2 &amp;lt;size of bl2.bin&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Nov 2024 08:21:16 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Layerscape/LS1028A-boot-only-RCW-from-I2C-ATF-and-u-boot-from-FSPI/m-p/1991812#M15085</guid>
      <dc:creator>yipingwang</dc:creator>
      <dc:date>2024-11-11T08:21:16Z</dc:date>
    </item>
    <item>
      <title>Re: LS1028A boot (only) RCW from I2C, ATF and u-boot from FSPI</title>
      <link>https://community.nxp.com/t5/Layerscape/LS1028A-boot-only-RCW-from-I2C-ATF-and-u-boot-from-FSPI/m-p/1992172#M15089</link>
      <description>&lt;P&gt;This appears to also load the BL2 from the I2C EEPROM, which is not what I want.&lt;/P&gt;&lt;P&gt;Our purpose was to only get the RCW from I2C and then load the BL2 from the SPI NOR flash.&lt;/P&gt;</description>
      <pubDate>Mon, 11 Nov 2024 18:09:30 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Layerscape/LS1028A-boot-only-RCW-from-I2C-ATF-and-u-boot-from-FSPI/m-p/1992172#M15089</guid>
      <dc:creator>mikelooijmans</dc:creator>
      <dc:date>2024-11-11T18:09:30Z</dc:date>
    </item>
    <item>
      <title>Re: LS1028A boot (only) RCW from I2C, ATF and u-boot from FSPI</title>
      <link>https://community.nxp.com/t5/Layerscape/LS1028A-boot-only-RCW-from-I2C-ATF-and-u-boot-from-FSPI/m-p/1992748#M15092</link>
      <description>&lt;P&gt;Document AN12028 states:&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;2. When booting from I2C, refer LS1028A CE document for I2C A-010650.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;I've been unable to locate said document "A-010650" anywhere.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Nov 2024 09:48:38 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Layerscape/LS1028A-boot-only-RCW-from-I2C-ATF-and-u-boot-from-FSPI/m-p/1992748#M15092</guid>
      <dc:creator>mikelooijmans</dc:creator>
      <dc:date>2024-11-12T09:48:38Z</dc:date>
    </item>
    <item>
      <title>Re: LS1028A boot (only) RCW from I2C, ATF and u-boot from FSPI</title>
      <link>https://community.nxp.com/t5/Layerscape/LS1028A-boot-only-RCW-from-I2C-ATF-and-u-boot-from-FSPI/m-p/1995428#M15100</link>
      <description>&lt;P&gt;Please add the following PBI commands in RCW configuration&lt;/P&gt;
&lt;P&gt;.pbi&lt;BR /&gt;write 0x01e00400,0x1800d000&lt;BR /&gt;blockcopy 0xf,0x9000,0x1800d000,0x10000&lt;BR /&gt;.end&lt;/P&gt;
&lt;P&gt;For the errata document, please create an internal ticket to require it, you need to sign NDA.&lt;/P&gt;</description>
      <pubDate>Fri, 15 Nov 2024 11:48:55 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Layerscape/LS1028A-boot-only-RCW-from-I2C-ATF-and-u-boot-from-FSPI/m-p/1995428#M15100</guid>
      <dc:creator>yipingwang</dc:creator>
      <dc:date>2024-11-15T11:48:55Z</dc:date>
    </item>
    <item>
      <title>Re: LS1028A boot (only) RCW from I2C, ATF and u-boot from FSPI</title>
      <link>https://community.nxp.com/t5/Layerscape/LS1028A-boot-only-RCW-from-I2C-ATF-and-u-boot-from-FSPI/m-p/1995468#M15103</link>
      <description>&lt;P&gt;Added this to the rcw, created a bin and wrote that to the I2C EEPROM at 0x50 on the LS1028ARDB board.&lt;/P&gt;&lt;P&gt;The set the bootswitches to 1010 for I2C boot (also tried 0101 in case I got the orientation wrong).&lt;/P&gt;&lt;P&gt;When I turn on the board the RESET LED turns of, but nothing else happens.&lt;/P&gt;&lt;P&gt;If I set the switches to 1111 for FSPI boot it boots fine.&lt;/P&gt;</description>
      <pubDate>Fri, 15 Nov 2024 12:50:31 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Layerscape/LS1028A-boot-only-RCW-from-I2C-ATF-and-u-boot-from-FSPI/m-p/1995468#M15103</guid>
      <dc:creator>mikelooijmans</dc:creator>
      <dc:date>2024-11-15T12:50:31Z</dc:date>
    </item>
    <item>
      <title>Re: LS1028A boot (only) RCW from I2C, ATF and u-boot from FSPI</title>
      <link>https://community.nxp.com/t5/Layerscape/LS1028A-boot-only-RCW-from-I2C-ATF-and-u-boot-from-FSPI/m-p/1995904#M15105</link>
      <description>&lt;P&gt;Please only program RCW binary file to&amp;nbsp;&lt;SPAN&gt;I2C EEPROM.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Please deploy&amp;nbsp;bl2_flexspi_nor.pbl at offset 0 on&amp;nbsp;FSPI NOR flash.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Nov 2024 02:27:49 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Layerscape/LS1028A-boot-only-RCW-from-I2C-ATF-and-u-boot-from-FSPI/m-p/1995904#M15105</guid>
      <dc:creator>yipingwang</dc:creator>
      <dc:date>2024-11-18T02:27:49Z</dc:date>
    </item>
    <item>
      <title>Re: LS1028A boot (only) RCW from I2C, ATF and u-boot from FSPI</title>
      <link>https://community.nxp.com/t5/Layerscape/LS1028A-boot-only-RCW-from-I2C-ATF-and-u-boot-from-FSPI/m-p/1996010#M15108</link>
      <description>Yes, that's what I did.</description>
      <pubDate>Mon, 18 Nov 2024 06:07:06 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Layerscape/LS1028A-boot-only-RCW-from-I2C-ATF-and-u-boot-from-FSPI/m-p/1996010#M15108</guid>
      <dc:creator>mikelooijmans</dc:creator>
      <dc:date>2024-11-18T06:07:06Z</dc:date>
    </item>
    <item>
      <title>Re: LS1028A boot (only) RCW from I2C, ATF and u-boot from FSPI</title>
      <link>https://community.nxp.com/t5/Layerscape/LS1028A-boot-only-RCW-from-I2C-ATF-and-u-boot-from-FSPI/m-p/2003962#M15125</link>
      <description>&lt;P&gt;&lt;SPAN&gt;You can check the POR Status Register where RCW source is selected as I2C, and the contents on OCRAM at 0x18020000 are matched with the RCW+PBI commands of I2C EEPROM. Here is my ccs log:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;(bin) 56 % ccs::config_chain {ls1028a dap}&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;(bin) 57 % display ::ccs::get_config_chain&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Chain Position 0: LS1028A&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Chain Position 1: CoreSight ATB Funnel&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Chain Position 2: CoreSight TMC&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Chain Position 3: CoreSight TMC&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Chain Position 4: CoreSight ATB Funnel&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Chain Position 5: CoreSight ATB Funnel&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Chain Position 6: CoreSight ATB Funnel&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Chain Position 7: CoreSight ATB Funnel&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Chain Position 8: CoreSight CTI&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Chain Position 9: CoreSight CTI&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Chain Position 10: Cortex-A5&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Chain Position 11: Cortex-A5 PMU&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Chain Position 12: Cortex-A72&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Chain Position 13: CoreSight CTI&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Chain Position 14: Cortex-A72 PMU&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Chain Position 15: Cortex-A72 ETM&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Chain Position 16: Cortex-A72&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Chain Position 17: CoreSight CTI&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Chain Position 18: Cortex-A72 PMU&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Chain Position 19: Cortex-A72 ETM&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Chain Position 20: DAP&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Chain Position 21: SAP2&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;(bin) 58 % display ::ccs::read_mem 21 0x1E00000 4 0 0x10&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; +0 +4 +8 +C&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[0x01E00000] 05720FFF DF0FFFFF 00000000 00000000&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[0x01E00010] 00000000 00000000 00000000 00000000&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[0x01E00020] 000000FF 00000000 00000000 00000000&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[0x01E00030] 00000000 00000000 00000000 00000000&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;(bin) 59 % display ::ccs::read_mem 21 0x18020000 4 0 0x50&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; +0 +4 +8 +C&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[0x18020000] AA55AA55 80100000 3C004010 00000030&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[0x18020010] 00000000 00000000 00000000 018F0000&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[0x18020020] 0030C000 00000000 00A033A0 00002580&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[0x18020030] 00000000 00003296 00000000 00000010&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[0x18020040] 00000000 00000000 00000000 00000000&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[0x18020050] 00000000 00000000 00000000 00000000&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[0x18020060] 00000000 00000000 00000000 00000000&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[0x18020070] 000E7000 00000000 BB580000 00000000&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[0x18020080] 00000000 00000000 242CA65B 31E00900&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[0x18020090] 00000004 31E00400 1800D000 8000000A&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[0x180200A0] 00000000 18020000 00000400 80FF0000&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[0x180200B0] 00000000 33500890 00800401 334008BC&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[0x180200C0] 00000001 33400154 47474747 33400158&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[0x180200D0] 47474747 335008BC 00000001 33500154&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[0x180200E0] 47474747 33500158 47474747 334008BC&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[0x180200F0] 00000000 335008BC 00000000 31E00900&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[0x18020100] 00000004 80FF0000 00000000 FFFFFFFF&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[0x18020110] FFFFFFFF FFFFFFFF FFFFFFFF FFFFFFFF&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[0x18020120] FFFFFFFF FFFFFFFF FFFFFFFF FFFFFFFF&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[0x18020130] FFFFFFFF FFFFFFFF FFFFFFFF FFFFFFFF&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 29 Nov 2024 01:13:53 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Layerscape/LS1028A-boot-only-RCW-from-I2C-ATF-and-u-boot-from-FSPI/m-p/2003962#M15125</guid>
      <dc:creator>yipingwang</dc:creator>
      <dc:date>2024-11-29T01:13:53Z</dc:date>
    </item>
    <item>
      <title>Re: LS1028A boot (only) RCW from I2C, ATF and u-boot from FSPI</title>
      <link>https://community.nxp.com/t5/Layerscape/LS1028A-boot-only-RCW-from-I2C-ATF-and-u-boot-from-FSPI/m-p/2005051#M15133</link>
      <description>&lt;P&gt;How do I do that? I get the impression that I need some specific hardware and/or software?&lt;/P&gt;&lt;P&gt;Would it be possible to have a pre-built I2C RCW binary that works on the LS1028ARDB board? Then I can look at the binaries, find the differences and work from there...&lt;/P&gt;</description>
      <pubDate>Mon, 02 Dec 2024 09:55:21 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Layerscape/LS1028A-boot-only-RCW-from-I2C-ATF-and-u-boot-from-FSPI/m-p/2005051#M15133</guid>
      <dc:creator>mikelooijmans</dc:creator>
      <dc:date>2024-12-02T09:55:21Z</dc:date>
    </item>
    <item>
      <title>Re: LS1028A boot (only) RCW from I2C, ATF and u-boot from FSPI</title>
      <link>https://community.nxp.com/t5/Layerscape/LS1028A-boot-only-RCW-from-I2C-ATF-and-u-boot-from-FSPI/m-p/2008699#M15148</link>
      <description>&lt;P&gt;Please use&amp;nbsp;&lt;SPAN&gt;i2c_ls1028a.zip and procedure in my previous post, we have verified it on ls1028ardb previously.&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;We don't have good method if not programming BL2.bin in I2C eeprom.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Dec 2024 02:06:45 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Layerscape/LS1028A-boot-only-RCW-from-I2C-ATF-and-u-boot-from-FSPI/m-p/2008699#M15148</guid>
      <dc:creator>yipingwang</dc:creator>
      <dc:date>2024-12-06T02:06:45Z</dc:date>
    </item>
    <item>
      <title>Re: LS1028A boot (only) RCW from I2C, ATF and u-boot from FSPI</title>
      <link>https://community.nxp.com/t5/Layerscape/LS1028A-boot-only-RCW-from-I2C-ATF-and-u-boot-from-FSPI/m-p/2009215#M15156</link>
      <description>&lt;P&gt;Now that we found that booting from FSPI won't work anyway with the low-power devices, we'll have to switch to eMMC and the I2C+FSPI boot idea no longer applies..&lt;/P&gt;</description>
      <pubDate>Fri, 06 Dec 2024 15:07:46 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Layerscape/LS1028A-boot-only-RCW-from-I2C-ATF-and-u-boot-from-FSPI/m-p/2009215#M15156</guid>
      <dc:creator>mikelooijmans</dc:creator>
      <dc:date>2024-12-06T15:07:46Z</dc:date>
    </item>
  </channel>
</rss>

