LS1043ARDB - How to update DPAA1 FMan microcode (ucode) image in NOR flash

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

LS1043ARDB - How to update DPAA1 FMan microcode (ucode) image in NOR flash

LS1043ARDB - How to update DPAA1 FMan microcode (ucode) image in NOR flash

Follow these steps to update the DPAA1 FMan ucode image in NOR flash. 

cpld reset boots the board from NOR bank 0 and cpld reset altbank boots the board from the NOR bank  4.

 0x64000000 is the location of RCW in the alternate NOR bank, that is NOR bank 4.  0x60000000 is the location of RCW in the NOR bank 0.

 

Obtaining DPAA1 FMan ucode image

Clone the qoriq-fm-ucode repository.

  1. git clone https://github.com/NXP/qoriq-fm-ucode.git
  2. $ cd qoriq-fm-ucode
  3. $ git checkout LSDK-<LSDK version>For example, $ git checkout LSDK-19.06

The prebuilt FMan ucode images, fsl_fman_ucode_ls1043_r1.1_<microcode version>.bin, are at qoriq-fm-ucode/. In the binary file, ls1043_r1.1 refers to the LS1043A silicon revision 1.1. See qoriq-fm-ucode/readme for a description of the ucode version numbers.

Programming FMan ucode image to NOR flash

FMan ucode image can be loaded to LS1043ARDB from a TFTP server or from a mass storage device (SD, USB, or SATA).

Option 1: Load image from the TFTP server

  1. Boot LS1043ARDB from NOR flash. Ensure that the switches are set to boot the board from NOR bank 0. For booting from NOR bank 0, switch settings are as follows:
    • SW3[1:8] = 10110011
    • SW4[1:8] = 00010010
    • SW5[1:8] = 10100010
  2. Boot from NOR bank 0: => cpld reset

    For LS1043ARDB, in boot log, you'll see:

    Board: LS1043ARDB, boot from vBank 0

Set up Ethernet connection

When board boots up, U-Boot prints a list of enabled Ethernet interfaces.

FM1@DTSEC1, FM1@DTSEC2, FM1@DTSEC3 [PRIME], FM1@DTSEC4, FM1@DTSEC5

  1. Set server IP address to the IP address of the host machine on which you have configured the TFTP server. 

    => setenv serverip <ipaddress1>

  2. Set ethact and ethprime as the Ethernet interface connected to the TFTP server.

    See LS1043ARDB Ethernet and FMC port mapping for the mapping of Ethernet port names appearing on the chassis front panel with the port names in U-Boot and Linux.

    => setenv ethprime <name of interface connected to TFTP server>

    For example:

    => setenv ethprime FM1@DTSEC4

    => setenv ethact <name of interface connected to TFTP server>

    For example:

    => setenv ethact FM1@DTSEC4

  3. Set IP address of the board. You can set a static IP address or, if the board can connect to a dhcp server, you can use the dhcp command. 

    Static IP address assignment:
    => setenv ipaddr <ipaddress>
    => setenv netmask <subnet mask>

    Dynamic IP address assignment:
    => dhcp

  4. Save the settings. => saveenv
  5. Check the connection between the board and the TFTP server.

=> ping $serverip

Using FM1@DTSEC4 device

host 192.168.1.1 is alive

Load FMan ucode image from the TFTP server

  1. Load FMan ucode image in DDR memory:
    1. => tftp a0000000 <path to FMan ucode>/fsl_fman_ucode_ls1043_r1.1_<ucode version>.bin
  2. Program the FMan ucode image to NOR bank 4: => erase 64900000 +$filesize && cp.b a0000000 64900000 $filesize

    Address  0x64900000 is the location of the FMan ucode image in NOR bank 4.  Refer Flash layout for new boot flow with TF-A for the complete flash memory layout.

  3. Boot from NOR bank 4 and press Enter to stop the autoboot: => cpld reset altbank

    In boot log, you’ll see:

    Board: LS1043ARDB, boot from vBank 4

    You can check the following code line in the boot log to confirm that the DPAA1 FMan ucode image in NOR bank 4 is updated.

    Fman1: Uploading microcode version 106.4.18

  4. Ensure that SD card, USB flash drive, or SCSI hard disk installed with NXP LSDK userland is plugged into the board to boot the board to the LSDK userland. 

    => cpld reset altbank

    NXP LSDK 1906 main
    localhost login: root

    [ OK ] Stopped Serial Getty on ttyS0.
    [ OK ] Started Serial Getty on ttyS0.

    NXP LSDK 1906 main
    localhost login: root
    Password:
    Last login: Fri Feb 22 04:29:12 UTC 2019 on ttyS0
    Welcome to NXP LSDK 1906 main (GNU/Linux 4.19.46 aarch64)

    * Support: https://www.nxp.com/lsdk
    * Documentation: https://lsdk.github.io/document
    * Licensing: https://lsdk.github.io/eula
    root@localhost:~#

Option 2: Load image from partition on mass storage device (SD, USB, or SATA)

  1. Boot LS1043ARDB from NOR flash. Ensure that the switches are set to boot the board from NOR bank 0. For booting from NOR bank 0, switch settings are as follows:
    • SW3[1:8] = 10110011
    • SW4[1:8] = 00010010
    • SW5[1:8] = 10100010
  2. Boot from NOR bank 0: => cpld reset

     

    For LS1043ARDB, in boot log, you'll see:

    Board: LS1043ARDB, boot from vBank 0

  3. Select mass storage device to use.
    => mmc rescan
    => mmc info

    Or

    => usb start
    => usb info

    Or

    => scsi scan

    => scsi info

  4. Optional – List files on storage device

    => ls mmc <device:partition>

    For example:

    => ls mmc 0:3
    System Volume Information/
    32604 fsl_fman_ucode_ls1043_r1.1_106_4_18.bin

    1 file(s), 1 dir(s)

    Or

    => ls usb <device:partition>

    For example:

    => ls usb 0:1

    Or

    => ls scsi <device:partition>

    For example:

    => ls scsi 0:2

    If the ls command fails to run, check that U-Boot in NOR bank 0 supports the command by typing ls at the U-Boot prompt:

    => ls ls - lists files in a directory (default)

    Usage: ls <interface> [<dev[:part]> [directory]]

    - Lists files in directory [directory] of partition [part] on device type [interface] and instance [dev].

    If U-Boot does not support this command, then update the composite firmware image in NOR bank 0.

    For steps to update composite firmware image in NOR flash, see Layerscape Software Development Kit User Guide.

  5. Load FMan ucode image from the storage device.

    => load mmc <device:partition> 80000000 <image name>

    => print filesize

    For example:

    => load mmc 0:3 80000000 fsl_fman_ucode_ls1043_r1.1_106_4_18.bin
    32604 bytes read in 18 ms (1.8 MiB/s)
    => print filesize
    filesize=7f5c

    Or

    => load usb <device:partition> 80000000 <image name>

    => print filesize

    Or

    => load scsi <device:partition> 80000000 <image name>

    => print filesize

  6. Program the FMan ucode image to NOR bank 4: => erase 64900000 +$filesize && cp.b 80000000 64900000 $filesize

    Address  0x64900000 is the location of the FMan ucode image in NOR bank 4.  Refer Flash layout for new boot flow with TF-A for the complete flash memory layout.

  7. Boot from NOR bank 4 and press Enter to stop the autoboot: => cpld reset altbank

    In boot log, you’ll see:

    Board: LS1043ARDB, boot from vBank 4

    You can check the following code line in the boot log to confirm that the DPAA1 FMan ucode image in NOR bank 4 is updated.

    Fman1: Uploading microcode version 106.4.18

  8. Ensure that SD card, USB flash drive, or SCSI hard disk installed with NXP LSDK userland is plugged into the board to boot the board to the LSDK userland

    => cpld reset altbank

    NXP LSDK 1906 main
    localhost login: root

    [ OK ] Stopped Serial Getty on ttyS0.
    [ OK ] Started Serial Getty on ttyS0.

    NXP LSDK 1906 main
    localhost login: root
    Password:
    Last login: Fri Feb 22 04:29:12 UTC 2019 on ttyS0
    Welcome to NXP LSDK 1906 main (GNU/Linux 4.19.46 aarch64)

    * Support: https://www.nxp.com/lsdk
    * Documentation: https://lsdk.github.io/document
    * Licensing: https://lsdk.github.io/eula
    root@localhost:~#

Labels (1)
%3CLINGO-SUB%20id%3D%22lingo-sub-1105483%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ELS1043ARDB%20-%20How%20to%20update%20DPAA1%20FMan%20microcode%20(ucode)%20image%20in%20NOR%20flash%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1105483%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%20style%3D%22color%3A%20%2351626f%3B%20background-color%3A%20%23ffffff%3B%20border%3A%200px%3B%22%3EFollow%20these%20steps%20to%20update%20the%20DPAA1%20FMan%20ucode%20image%20in%20NOR%20flash.%26nbsp%3B%3C%2FP%3E%3CDIV%3E%3CPRE%20__default_attr%3D%22info%22%20__jive_macro_name%3D%22alert%22%20alert%3D%22info%22%20class%3D%22jive_text_macro%20jive_macro_alert%22%3E%3CP%3E%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3Ecpld%20reset%3C%2FSPAN%3E%20boots%20the%20board%20from%20NOR%20bank%200%20and%20%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3Ecpld%20reset%20altbank%3C%2FSPAN%3E%26nbsp%3Bboots%20the%20board%20from%20the%20NOR%20bank%26nbsp%3B%204.%3C%2FP%3E%3C%2FPRE%3E%3C%2FDIV%3E%3CDIV%3E%3CPRE%20__default_attr%3D%22info%22%20__jive_macro_name%3D%22alert%22%20alert%3D%22info%22%20class%3D%22jive_text_macro%20jive_macro_alert%22%3E%3CP%3E%26nbsp%3B%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3E0x64000000%3C%2FSPAN%3E%20is%20the%20location%20of%20RCW%20in%20the%20alternate%20NOR%20bank%2C%20that%20is%20NOR%20bank%204.%26nbsp%3B%20%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3E0x60000000%3C%2FSPAN%3E%20is%20the%20location%20of%20RCW%20in%20the%20NOR%20bank%200.%3C%2FP%3E%3C%2FPRE%3E%3C%2FDIV%3E%3CP%20style%3D%22color%3A%20%2351626f%3B%20background-color%3A%20%23ffffff%3B%20border%3A%200px%3B%22%3E%26nbsp%3B%3C%2FP%3E%3CH1%20id%3D%22toc-hId-380638025%22%20style%3D%22color%3A%20%23646464%3B%20background-color%3A%20%23ffffff%3B%20border%3A%200px%3B%20font-weight%3A%20600%3B%20font-size%3A%2026px%3B%22%20id%3D%22toc-hId-380638025%22%20id%3D%22toc-hId-1297603119%22%3EObtaining%26nbsp%3BDPAA1%20FMan%20ucode%20image%3C%2FH1%3E%3CP%20style%3D%22color%3A%20%2351626f%3B%20background-color%3A%20%23ffffff%3B%20border%3A%200px%3B%22%3EClone%20the%26nbsp%3B%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3Eqoriq-fm-ucode%3C%2FSPAN%3E%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%22%3E%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%22%3E%26nbsp%3B%3C%2FSPAN%3Erepository.%3C%2FSPAN%3E%3C%2FP%3E%3COL%20style%3D%22color%3A%20%2351626f%3B%20background-color%3A%20%23ffffff%3B%20border%3A%200px%3B%20padding%3A%200px%200px%200px%2030px%3B%22%3E%3CLI%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20margin%3A%200.2em%200px%3B%22%3E%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2015.3333px%3B%22%3E%24%26nbsp%3B%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2015.3333px%3B%20font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3Egit%20clone%26nbsp%3B%3CA%20class%3D%22unlinked%22%20target%3D%22_blank%22%3Ehttps%3A%2F%2Fgithub.com%2FNXP%2Fqoriq-fm-ucode.git%3C%2FA%3E%3C%2FSPAN%3E%3C%2FSPAN%3E%3C%2FLI%3E%3CLI%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20margin%3A%200.2em%200px%3B%22%3E%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2011.5pt%3B%22%3E%24%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2015.3333px%3B%22%3E%26nbsp%3B%3C%2FSPAN%3E%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2015.3333px%3B%20font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3Ecd%20qoriq-fm-ucode%3C%2FSPAN%3E%3C%2FSPAN%3E%3C%2FLI%3E%3CLI%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20margin%3A%200.2em%200px%3B%22%3E%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2015.3333px%3B%22%3E%24%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2015.3333px%3B%22%3E%26nbsp%3B%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2015.3333px%3B%20font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3E%3CSPAN%20class%3D%22%22%20lang%3D%22EN-US%22%20style%3D%22color%3A%20%233d3d3d%3B%20font-size%3A%2011.5pt%3B%22%3E%3CSPAN%20class%3D%22%22%20style%3D%22background-color%3A%20inherit%3B%22%3Egit%20checkout%26nbsp%3B%3C%2FSPAN%3E%3C%2FSPAN%3E%3CSPAN%20class%3D%22%22%20lang%3D%22EN-US%22%20style%3D%22color%3A%20%233d3d3d%3B%20font-size%3A%2011.5pt%3B%22%3E%3CSPAN%20class%3D%22%22%20style%3D%22background-color%3A%20inherit%3B%22%3ELSDK-%3CLSDK%20version%3D%22%22%3E%3C%2FLSDK%3E%3C%2FSPAN%3E%3C%2FSPAN%3E%3CSPAN%20style%3D%22font-family%3A%20arial%2C%20helvetica%2C%20sans-serif%3B%22%3E.%26nbsp%3B%3C%2FSPAN%3E%3CSPAN%20class%3D%22%22%20lang%3D%22EN-US%22%20style%3D%22color%3A%20%233d3d3d%3B%20font-size%3A%2011.5pt%3B%20margin%3A%200px%3B%22%3E%3CSPAN%20class%3D%22%22%20style%3D%22background-color%3A%20inherit%3B%20margin%3A%200px%3B%22%3E%3CSPAN%20style%3D%22font-family%3A%20arial%2C%20helvetica%2C%20sans-serif%3B%22%3EFor%20example%2C%3C%2FSPAN%3E%E2%80%AF%24%E2%80%AF%3C%2FSPAN%3E%3C%2FSPAN%3E%3CSPAN%20class%3D%22%22%20lang%3D%22EN-US%22%20style%3D%22color%3A%20%233d3d3d%3B%20font-size%3A%2011.5pt%3B%20margin%3A%200px%3B%22%3E%3CSPAN%20class%3D%22%22%20style%3D%22background-color%3A%20inherit%3B%20margin%3A%200px%3B%22%3Egit%20checkout%26nbsp%3B%3C%2FSPAN%3E%3C%2FSPAN%3E%3C%2FSPAN%3E%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3E%3CSPAN%20lang%3D%22EN-US%22%3ELSDK-19.06%3C%2FSPAN%3E%3C%2FSPAN%3E%3C%2FSPAN%3E%3C%2FSPAN%3E%3C%2FLI%3E%3C%2FOL%3E%3CP%20style%3D%22color%3A%20%2351626f%3B%20background-color%3A%20%23ffffff%3B%20border%3A%200px%3B%22%3E%3CSPAN%3EThe%20prebuilt%20FMan%20ucode%20images%2C%26nbsp%3B%3C%2FSPAN%3E%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3Efsl_fman_ucode_ls1043_r1.1_%3CMICROCODE%20version%3D%22%22%3E.bin%3C%2FMICROCODE%3E%3C%2FSPAN%3E%3CSPAN%3E%2C%20are%20at%26nbsp%3B%3C%2FSPAN%3E%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3Eqoriq-fm-ucode%2F.%3C%2FSPAN%3E%3CSPAN%3E%3CSPAN%3E%26nbsp%3B%3C%2FSPAN%3EIn%20the%20binary%20file%2C%3CSPAN%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FSPAN%3E%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3Els1043_r1.1%3C%2FSPAN%3E%3CSPAN%3E%3CSPAN%3E%26nbsp%3B%3C%2FSPAN%3Erefers%20to%20the%20LS1043A%20silicon%20revision%201.1.%20See%3CSPAN%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FSPAN%3E%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3Eqoriq-fm-ucode%2Freadme%3C%2FSPAN%3E%3CSPAN%3E%3CSPAN%3E%26nbsp%3B%3C%2FSPAN%3Efor%20a%20description%20of%20the%20ucode%20version%20numbers.%3C%2FSPAN%3E%3C%2FP%3E%3CP%20style%3D%22color%3A%20%2351626f%3B%20background-color%3A%20%23ffffff%3B%20border%3A%200px%3B%22%3E%3C%2FP%3E%3CH1%20id%3D%22toc-hId--1426816438%22%20style%3D%22color%3A%20%23646464%3B%20background-color%3A%20%23ffffff%3B%20border%3A%200px%3B%20font-weight%3A%20600%3B%20font-size%3A%2026px%3B%22%20id%3D%22toc-hId--1426816438%22%20id%3D%22toc-hId--509851344%22%3EProgramming%26nbsp%3BFMan%20ucode%20image%26nbsp%3Bto%20NOR%20flash%3C%2FH1%3E%3CP%3E%3CSPAN%20style%3D%22color%3A%20%2351626f%3B%20background-color%3A%20%23ffffff%3B%22%3EFMan%20ucode%20image%3C%2FSPAN%3E%20can%20be%20loaded%20to%20LS1043ARDB%20from%20a%20TFTP%20server%20or%20from%20a%20mass%20storage%20device%20(SD%2C%20USB%2C%20or%20SATA).%3C%2FP%3E%3CH2%20id%3D%22toc-hId--736254964%22%20style%3D%22color%3A%20%23646464%3B%20border%3A%200px%3B%20font-weight%3A%20600%3B%20font-size%3A%2022px%3B%22%20id%3D%22toc-hId--736254964%22%20id%3D%22toc-hId-180710130%22%3EOption%201%3A%20Load%20image%20from%26nbsp%3Bthe%20TFTP%20server%3C%2FH2%3E%3COL%20style%3D%22padding%3A%200px%200px%200px%2030px%3B%22%3E%3CLI%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20margin%3A%200.5ex%200px%3B%22%3E%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2011pt%3B%22%3EBoot%20LS1043ARDB%20from%20NOR%20flash.%20Ensure%20that%20the%20switches%20are%20set%20to%20boot%20the%20board%20from%26nbsp%3B%3C%2FSPAN%3E%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2011pt%3B%20padding%3A%200px%3B%22%3ENOR%20bank%200.%26nbsp%3B%3C%2FSPAN%3E%3CSPAN%20style%3D%22background-color%3A%20%23ffffff%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2011pt%3B%20padding%3A%200px%3B%22%3EFor%20booting%20from%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2014.6667px%3B%20padding%3A%200px%3B%22%3E%3CSPAN%3E%26nbsp%3B%3C%2FSPAN%3ENOR%20bank%200%3C%2FSPAN%3E%2C%20switch%20settings%20are%20as%20follows%3A%3C%2FSPAN%3E%3CUL%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%22%3E%3CLI%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20margin%3A%200.5ex%200px%3B%20padding%3A%200px%3B%22%3E%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20padding%3A%200px%3B%20font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3ESW3%5B1%3A8%5D%20%3D%26nbsp%3B10110011%3C%2FSPAN%3E%3C%2FLI%3E%3CLI%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20margin%3A%200.5ex%200px%3B%20padding%3A%200px%3B%22%3E%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20padding%3A%200px%3B%20font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3ESW4%5B1%3A8%5D%20%3D%26nbsp%3B00010010%3C%2FSPAN%3E%3C%2FLI%3E%3CLI%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20margin%3A%200.5ex%200px%3B%20padding%3A%200px%3B%22%3E%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20padding%3A%200px%3B%20font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3ESW5%5B1%3A8%5D%20%3D%26nbsp%3B10100010%3C%2FSPAN%3E%3C%2FLI%3E%3C%2FUL%3E%3C%2FLI%3E%3CLI%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20margin%3A%200.5ex%200px%3B%20padding%3A%200px%3B%22%3EBoot%20from%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20padding%3A%200px%3B%22%3E%26nbsp%3BNOR%26nbsp%3Bbank%26nbsp%3B%3C%2FSPAN%3E%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20padding%3A%200px%3B%22%3E0%3A%26nbsp%3B%3C%2FSPAN%3E%3D%26gt%3B%20%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3Ecpld%20reset%3C%2FSPAN%3E%3CP%20style%3D%22background-color%3A%20%23ffffff%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20padding%3A%200px%3B%22%3EFor%20LS1043ARDB%2C%20in%20boot%20log%2C%20you'll%20see%3A%3C%2FP%3E%3CP%20style%3D%22background-color%3A%20%23ffffff%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20padding%3A%200px%3B%22%3E%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20padding%3A%200px%3B%20font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3EBoard%3A%20LS1043ARDB%2C%20boot%20from%20vBank%200%3C%2FSPAN%3E%3C%2FP%3E%3C%2FLI%3E%3C%2FOL%3E%3CH3%20id%3D%22toc-hId--45693490%22%20style%3D%22color%3A%20%23646464%3B%20border%3A%200px%3B%20font-weight%3A%20600%3B%20font-size%3A%2018px%3B%22%20id%3D%22toc-hId--45693490%22%20id%3D%22toc-hId-871271604%22%3ESet%20up%20Ethernet%20connection%3C%2FH3%3E%3CP%20style%3D%22color%3A%20%2351626f%3B%20background-color%3A%20%23ffffff%3B%20border%3A%200px%3B%22%3EWhen%20board%20boots%20up%2C%20U-Boot%20prints%20a%20list%20of%20enabled%20Ethernet%20interfaces.%3C%2FP%3E%3CP%20style%3D%22color%3A%20%2351626f%3B%20background%3A%20white%3B%20border%3A%200px%3B%20margin%3A%200in%200in%200.0001pt%200.25in%3B%22%3E%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3EFM1%40DTSEC1%2C%20FM1%40DTSEC2%2C%20FM1%40DTSEC3%20%5BPRIME%5D%2C%20FM1%40DTSEC4%2C%20FM1%40DTSEC5%3C%2FSPAN%3E%3C%2FP%3E%3COL%20style%3D%22color%3A%20%2351626f%3B%20background-color%3A%20%23ffffff%3B%20border%3A%200px%3B%20padding%3A%200px%200px%200px%2030px%3B%22%3E%3CLI%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20margin%3A%200.5ex%200px%3B%22%3E%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2011.5pt%3B%22%3ESet%20server%20IP%20address%20to%20the%20IP%20address%20of%20the%20host%20machine%20on%20which%20you%20have%20configured%20the%20TFTP%20server.%26nbsp%3B%3C%2FSPAN%3E%3CP%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20margin%3A%200.5ex%200px%3B%22%3E%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2011.5pt%3B%22%3E%3D%26gt%3B%20%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3Esetenv%20serverip%20%3CIPADDRESS1%3E%3C%2FIPADDRESS1%3E%3C%2FSPAN%3E%3C%2FSPAN%3E%3C%2FP%3E%3C%2FLI%3E%3CLI%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20margin%3A%200.5ex%200px%3B%22%3E%3CP%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%22%3ESet%3CSPAN%3E%26nbsp%3B%3C%2FSPAN%3E%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%22%3Eethact%3C%2FSPAN%3E%3CSPAN%3E%26nbsp%3B%3C%2FSPAN%3Eand%3CSPAN%3E%26nbsp%3B%3C%2FSPAN%3E%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%22%3Eethprime%3C%2FSPAN%3E%3CSPAN%3E%26nbsp%3B%3C%2FSPAN%3Eas%20the%20Ethernet%20interface%26nbsp%3Bconnected%20to%20the%20TFTP%20server.%3C%2FP%3E%3CP%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%22%3E%3C%2FP%3E%3CPRE%20__default_attr%3D%22info%22%20__jive_macro_name%3D%22alert%22%20alert%3D%22info%22%20class%3D%22jive_text_macro%20jive_macro_alert%22%3E%3CP%3ESee%26nbsp%3B%3CA%20_jive_internal%3D%22true%22%20data-containerid%3D%2211685%22%20data-containertype%3D%2214%22%20data-content-finding%3D%22Community%22%20data-objectid%3D%22343516%22%20data-objecttype%3D%22102%22%20href%3D%22https%3A%2F%2Fcommunity.nxp.com%2Fdocs%2FDOC-343516%22%20target%3D%22_blank%22%3ELS1043ARDB%20Ethernet%20and%20FMC%20port%20mapping%3C%2FA%3E%26nbsp%3Bfor%26nbsp%3Bthe%26nbsp%3Bmapping%20of%20Ethernet%20port%20names%20appearing%20on%20the%20chassis%20front%20panel%20with%20the%20port%20names%20in%20U-Boot%20and%20Linux.%3C%2FP%3E%3C%2FPRE%3E%3CP%20style%3D%22background%3A%20white%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20margin%3A%200in%200in%200.0001pt%200.25in%3B%22%3E%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2011.5pt%3B%22%3E%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2015.3333px%3B%22%3E%3D%26gt%3B%26nbsp%3B%3C%2FSPAN%3E%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2015.3333px%3B%20font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3Esetenv%20ethprime%20%3CNAME%20of%3D%22%22%20interface%3D%22%22%3E%3C%2FNAME%3E%3C%2FSPAN%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%20style%3D%22background%3A%20white%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20margin%3A%200in%200in%200.0001pt%200.25in%3B%22%3E%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2011.5pt%3B%22%3EFor%20example%3A%3C%2FSPAN%3E%3C%2FP%3E%3CP%20style%3D%22background%3A%20white%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20margin%3A%200in%200in%200.0001pt%200.25in%3B%22%3E%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%22%3E%3D%26gt%3B%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%22%3E%26nbsp%3B%3C%2FSPAN%3E%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3Esetenv%20ethprime%20FM1%40DTSEC4%3C%2FSPAN%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%20style%3D%22background%3A%20white%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20margin%3A%200in%200in%200.0001pt%200.25in%3B%22%3E%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2011.5pt%3B%22%3E%3D%26gt%3B%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2015.3333px%3B%22%3E%26nbsp%3B%3C%2FSPAN%3E%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2015.3333px%3B%20font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3Esetenv%20ethact%20%3CNAME%20of%3D%22%22%20interface%3D%22%22%20connected%3D%22%22%3E%3C%2FNAME%3E%3C%2FSPAN%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%20style%3D%22background%3A%20white%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20margin%3A%200in%200in%200.0001pt%200.25in%3B%22%3E%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2011.5pt%3B%22%3EFor%20example%3A%3C%2FSPAN%3E%3C%2FP%3E%3CP%20style%3D%22background%3A%20white%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20margin%3A%200in%200in%200.0001pt%200.25in%3B%22%3E%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2011.5pt%3B%22%3E%3D%26gt%3B%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2015.3333px%3B%22%3E%26nbsp%3B%3C%2FSPAN%3E%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2015.3333px%3B%20font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3Esetenv%20ethact%20FM1%40DTSEC4%3C%2FSPAN%3E%3C%2FSPAN%3E%3C%2FP%3E%3C%2FLI%3E%3CLI%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20margin%3A%200.5ex%200px%3B%22%3E%3CSPAN%20style%3D%22color%3A%20%2351626f%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2011.5pt%3B%22%3ESet%20IP%20address%20of%20the%20board.%20You%20can%20set%20a%20static%20IP%20address%20or%2C%20if%20the%20board%20can%20connect%20to%20a%20dhcp%20server%2C%20you%20can%26nbsp%3Buse%20the%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2015.3333px%3B%22%3E%26nbsp%3B%3C%2FSPAN%3E%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3E%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2015.3333px%3B%22%3Edhcp%3C%2FSPAN%3E%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2015.3333px%3B%22%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FSPAN%3Ecommand.%26nbsp%3B%3C%2FSPAN%3E%3CP%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%22%3EStatic%20IP%20address%20assignment%3A%3CBR%20%2F%3E%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%22%3E%3D%26gt%3B%20%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3Esetenv%20ipaddr%20%3CIPADDRESS%3E%3C%2FIPADDRESS%3E%3C%2FSPAN%3E%3C%2FSPAN%3E%3CBR%20%2F%3E%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%22%3E%3D%26gt%3B%20%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3Esetenv%20netmask%20%3CSUBNET%20mask%3D%22%22%3E%3C%2FSUBNET%3E%3C%2FSPAN%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%22%3EDynamic%20IP%20address%20assignment%3A%3CBR%20%2F%3E%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%22%3E%3D%26gt%3B%20%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3Edhcp%3C%2FSPAN%3E%3C%2FSPAN%3E%3C%2FP%3E%3C%2FLI%3E%3CLI%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20margin%3A%200.5ex%200px%3B%22%3ESave%20the%20settings.%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%22%3E%26nbsp%3B%3C%2FSPAN%3E%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%22%3E%3D%26gt%3B%26nbsp%3B%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3Esaveenv%3C%2FSPAN%3E%3C%2FSPAN%3E%3C%2FLI%3E%3CLI%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20margin%3A%200.5ex%200px%3B%22%3ECheck%20the%20connection%20between%20the%20board%20and%20the%20TFTP%20server.%3C%2FLI%3E%3C%2FOL%3E%3CP%20style%3D%22color%3A%20%2351626f%3B%20background%3A%20white%3B%20border%3A%200px%3B%20margin%3A%200in%200in%200.0001pt%200.25in%3B%22%3E%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2011.5pt%3B%22%3E%3D%26gt%3B%20%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3Eping%20%24serverip%3C%2FSPAN%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%20style%3D%22color%3A%20%2351626f%3B%20background%3A%20white%3B%20border%3A%200px%3B%20margin%3A%200in%200in%200.0001pt%200.25in%3B%22%3E%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2011.5pt%3B%20font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3EUsing%20FM1%40DTSEC4%20device%3C%2FSPAN%3E%3C%2FP%3E%3CP%20style%3D%22color%3A%20%2351626f%3B%20background%3A%20white%3B%20border%3A%200px%3B%20margin%3A%200in%200in%200.0001pt%200.25in%3B%22%3E%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2011.5pt%3B%20font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3Ehost%20192.168.1.1%20is%20alive%3C%2FSPAN%3E%3C%2FP%3E%3CP%20style%3D%22color%3A%20%2351626f%3B%20background-color%3A%20%23ffffff%3B%20border%3A%200px%3B%22%3E%3C%2FP%3E%3CH3%20id%3D%22toc-hId--1853147953%22%20id%3D%22toc-hId--1853147953%22%20id%3D%22toc-hId--936182859%22%3ELoad%20FMan%20ucode%20image%20from%26nbsp%3Bthe%20TFTP%20server%3C%2FH3%3E%3COL%20style%3D%22color%3A%20%2351626f%3B%20background-color%3A%20%23ffffff%3B%20border%3A%200px%3B%20padding%3A%200px%200px%200px%2030px%3B%22%3E%3CLI%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20margin%3A%200.5ex%200px%3B%22%3ELoad%26nbsp%3B%3CSPAN%20style%3D%22background-color%3A%20%23ffffff%3B%22%3EFMan%20ucode%20image%20in%20DDR%20memory%3C%2FSPAN%3E%3A%3CBR%20%2F%3E%3COL%20style%3D%22list-style-type%3A%20lower-alpha%3B%22%3E%3CLI%3E%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3E%3D%26gt%3B%20tftp%20a0000000%20%3CPATH%20to%3D%22%22%20fman%3D%22%22%20ucode%3D%22%22%3E%2Ffsl_fman_ucode_ls1043_r1.1_%3CUCODE%3E.bin%3C%2FUCODE%3E%3C%2FPATH%3E%3C%2FSPAN%3E%3C%2FLI%3E%3C%2FOL%3E%3C%2FLI%3E%3CLI%3E%3CSPAN%20style%3D%22background-color%3A%20%23ffffff%3B%22%3EProgram%20the%26nbsp%3B%3CSPAN%3EFMan%20ucode%3C%2FSPAN%3E%20image%20to%20NOR%20bank%204%3A%26nbsp%3B%3C%2FSPAN%3E%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3E%3D%26gt%3B%20erase%2064%3CSPAN%20style%3D%22background-color%3A%20%23ffffff%3B%22%3E900000%3C%2FSPAN%3E%20%2B%24filesize%20%26amp%3B%26amp%3B%20cp.b%26nbsp%3Ba0000000%2064%3CSPAN%20style%3D%22background-color%3A%20%23ffffff%3B%22%3E900000%3C%2FSPAN%3E%20%24filesize%3C%2FSPAN%3E%3CP%3E%3CSPAN%20lang%3D%22EN-US%22%3E%3CSPAN%20lang%3D%22EN-US%22%3EAddress%26nbsp%3B%3C%2FSPAN%3E%3C%2FSPAN%3E%3CSPAN%20lang%3D%22EN-US%22%3E%3CSPAN%20lang%3D%22EN-US%22%3E%20%3C%2FSPAN%3E%3C%2FSPAN%3E%3CSPAN%20lang%3D%22EN-US%22%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3E%3CSPAN%20lang%3D%22EN-US%22%3E0x64900000%3C%2FSPAN%3E%3C%2FSPAN%3E%3CSPAN%20lang%3D%22EN-US%22%3E%3CSPAN%20lang%3D%22EN-US%22%3E%26nbsp%3Bis%20the%20location%20of%26nbsp%3Bthe%26nbsp%3B%3CSPAN%3EFMan%20ucode%3C%2FSPAN%3E%3CSPAN%20style%3D%22background-color%3A%20%23ffffff%3B%22%3E%3CSPAN%3E%26nbsp%3B%3C%2FSPAN%3Eimage%3C%2FSPAN%3E%20in%20NOR%20bank%204.%26nbsp%3B%26nbsp%3B%3C%2FSPAN%3E%3CSPAN%20lang%3D%22EN-US%22%3ERefer%20%3CA%20_jive_internal%3D%22true%22%20href%3D%22https%3A%2F%2Fcommunity.nxp.com%2Fdocs%2FDOC-342651%22%20style%3D%22color%3A%20%232989c5%3B%20text-decoration%3A%20none%3B%22%20target%3D%22_blank%22%3EFlash%20layout%20for%20new%20boot%20flow%20with%20TF-A%3C%2FA%3E%26nbsp%3B%3C%2FSPAN%3E%3CSPAN%20lang%3D%22EN-US%22%3Efor%26nbsp%3B%3C%2FSPAN%3E%3CSPAN%20lang%3D%22EN-US%22%3Et%3C%2FSPAN%3E%3CSPAN%20lang%3D%22EN-US%22%3Ehe%26nbsp%3Bcomplete%20flash%20memory%20layout.%3C%2FSPAN%3E%3C%2FSPAN%3E%3C%2FP%3E%3C%2FLI%3E%3CLI%3EBoot%20from%20NOR%26nbsp%3Bbank%204%20and%20press%20Enter%20to%20stop%20the%20autoboot%3A%26nbsp%3B%3D%26gt%3B%20%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3Ecpld%20reset%26nbsp%3Baltbank%3C%2FSPAN%3E%3CP%20style%3D%22padding-left%3A%2030px%3B%22%3EIn%20boot%20log%2C%20you%E2%80%99ll%20see%3A%3C%2FP%3E%3CP%20style%3D%22padding-left%3A%2030px%3B%22%3E%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3EBoard%3A%20LS1043ARDB%2C%20boot%20from%20vBank%204%3C%2FSPAN%3E%3C%2FP%3E%3CP%20style%3D%22background-color%3A%20%23ffffff%3B%20border%3A%200px%3B%20padding%3A%200px%200px%200px%2030px%3B%22%3E%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%22%3EYou%20can%20check%20the%20following%20code%20line%20in%20the%20boot%20log%20to%20confirm%20that%20the%26nbsp%3B%3C%2FSPAN%3EDPAA1%20FMan%20ucode%20image%26nbsp%3Bin%20NOR%20bank%204%20is%20updated.%3C%2FP%3E%3CP%20style%3D%22background-color%3A%20%23ffffff%3B%20border%3A%200px%3B%20padding%3A%200px%200px%200px%2030px%3B%22%3E%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3EFman1%3A%20Uploading%20microcode%20version%20106.4.18%3C%2FSPAN%3E%3C%2FP%3E%3C%2FLI%3E%3CLI%3E%3CSPAN%20style%3D%22color%3A%20%233d3d3d%3B%22%3EEnsure%20that%20SD%20card%2C%20USB%20flash%20drive%2C%20or%20SCSI%20hard%20disk%20installed%20with%26nbsp%3BNXP%20LSDK%20userland%20is%20plugged%20into%20the%20board%20to%20boot%20the%20board%20to%20the%20LSDK%20userland.%26nbsp%3B%3C%2FSPAN%3E%3CP%20style%3D%22color%3A%20%2351626f%3B%20background-color%3A%20%23ffffff%3B%22%3E%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3E%3CSPAN%20style%3D%22color%3A%20%2351626f%3B%20background-color%3A%20%23ffffff%3B%22%3E%3D%26gt%3B%3CSPAN%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FSPAN%3Ecpld%20reset%26nbsp%3Baltbank%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3ENXP%20LSDK%201906%20main%3C%2FSPAN%3E%3CBR%20%2F%3E%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3Elocalhost%20login%3A%20root%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3E%5B%20OK%20%5D%20Stopped%20Serial%20Getty%20on%20ttyS0.%3C%2FSPAN%3E%3CBR%20%2F%3E%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3E%5B%20OK%20%5D%20Started%20Serial%20Getty%20on%20ttyS0.%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3ENXP%20LSDK%201906%20main%3C%2FSPAN%3E%3CBR%20%2F%3E%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3Elocalhost%20login%3A%20root%3C%2FSPAN%3E%3CBR%20%2F%3E%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3EPassword%3A%3C%2FSPAN%3E%3CBR%20%2F%3E%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3ELast%20login%3A%20Fri%20Feb%2022%2004%3A29%3A12%20UTC%202019%20on%20ttyS0%3C%2FSPAN%3E%3CBR%20%2F%3E%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3EWelcome%20to%20NXP%20LSDK%201906%20main%20(GNU%2FLinux%204.19.46%20aarch64)%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3E*%20Support%3A%20%3CA%20href%3D%22https%3A%2F%2Fwww.nxp.com%2Flsdk%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22test_blank%22%3Ehttps%3A%2F%2Fwww.nxp.com%2Flsdk%3C%2FA%3E%3C%2FSPAN%3E%3CBR%20%2F%3E%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3E%20*%20Documentation%3A%20%3CA%20href%3D%22https%3A%2F%2Flsdk.github.io%2Fdocument%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22test_blank%22%3Ehttps%3A%2F%2Flsdk.github.io%2Fdocument%3C%2FA%3E%3C%2FSPAN%3E%3CBR%20%2F%3E%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3E%20*%20Licensing%3A%20%3CA%20href%3D%22https%3A%2F%2Flsdk.github.io%2Feula%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22test_blank%22%3Ehttps%3A%2F%2Flsdk.github.io%2Feula%3C%2FA%3E%3C%2FSPAN%3E%3CBR%20%2F%3E%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3Eroot%40localhost%3A~%23%3C%2FSPAN%3E%3C%2FP%3E%3C%2FLI%3E%3C%2FOL%3E%3CH2%20id%3D%22toc-hId--1863651057%22%20style%3D%22color%3A%20%23646464%3B%20background-color%3A%20%23ffffff%3B%20border%3A%200px%3B%20font-weight%3A%20bold%3B%20font-size%3A%2020px%3B%22%20id%3D%22toc-hId--1863651057%22%20id%3D%22toc-hId--946685963%22%3EOption%202%3A%20Load%20image%20from%20partition%20on%20mass%20storage%20device%20(SD%2C%20USB%2C%20or%20SATA)%3C%2FH2%3E%3COL%20style%3D%22padding%3A%200px%200px%200px%2030px%3B%22%3E%3CLI%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20margin%3A%200.5ex%200px%3B%22%3E%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2011pt%3B%22%3EBoot%20LS1043ARDB%20from%20NOR%20flash.%26nbsp%3B%3C%2FSPAN%3E%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2011pt%3B%20padding%3A%200px%3B%22%3EEnsure%20that%20the%20switches%20are%20set%20to%20boot%20the%20board%20from%20NOR%20bank%200.%26nbsp%3B%3C%2FSPAN%3E%3CSPAN%20style%3D%22background-color%3A%20%23ffffff%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2011pt%3B%20padding%3A%200px%3B%22%3EFor%20booting%20from%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2014.6667px%3B%20padding%3A%200px%3B%22%3E%3CSPAN%3E%26nbsp%3B%3C%2FSPAN%3ENOR%20bank%200%3C%2FSPAN%3E%2C%20switch%20settings%20are%20as%20follows%3A%3C%2FSPAN%3E%3CUL%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%22%3E%3CLI%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20margin%3A%200.5ex%200px%3B%20padding%3A%200px%3B%22%3E%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20padding%3A%200px%3B%20font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3ESW3%5B1%3A8%5D%20%3D%26nbsp%3B10110011%3C%2FSPAN%3E%3C%2FLI%3E%3CLI%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20margin%3A%200.5ex%200px%3B%20padding%3A%200px%3B%22%3E%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20padding%3A%200px%3B%20font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3ESW4%5B1%3A8%5D%20%3D%26nbsp%3B00010010%3C%2FSPAN%3E%3C%2FLI%3E%3CLI%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20margin%3A%200.5ex%200px%3B%20padding%3A%200px%3B%22%3E%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20padding%3A%200px%3B%20font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3ESW5%5B1%3A8%5D%20%3D%26nbsp%3B10100010%3C%2FSPAN%3E%3C%2FLI%3E%3C%2FUL%3E%3C%2FLI%3E%3CLI%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20margin%3A%200.5ex%200px%3B%20padding%3A%200px%3B%22%3EBoot%20from%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20padding%3A%200px%3B%22%3E%26nbsp%3BNOR%26nbsp%3Bbank%26nbsp%3B%3C%2FSPAN%3E%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20padding%3A%200px%3B%22%3E0%3A%26nbsp%3B%3D%26gt%3B%20%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3Ecpld%20reset%3C%2FSPAN%3E%3C%2FSPAN%3E%3CP%20style%3D%22background-color%3A%20%23ffffff%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20padding%3A%200px%3B%22%3E%26nbsp%3B%3C%2FP%3E%3CP%20style%3D%22background-color%3A%20%23ffffff%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20padding%3A%200px%3B%22%3EFor%20LS1043ARDB%2C%20in%20boot%20log%2C%20you'll%20see%3A%3C%2FP%3E%3CP%20style%3D%22background-color%3A%20%23ffffff%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20padding%3A%200px%3B%22%3E%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20padding%3A%200px%3B%20font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3EBoard%3A%20LS1043ARDB%2C%20boot%20from%20vBank%200%3C%2FSPAN%3E%3C%2FP%3E%3C%2FLI%3E%3CLI%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20margin%3A%200.5ex%200px%3B%22%3E%3CSPAN%20style%3D%22color%3A%20%2351626f%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2011.5pt%3B%22%3ESelect%20mass%20storage%20device%20to%20use.%3C%2FSPAN%3E%3CPRE%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%22%3E%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3E%3D%26gt%3B%20mmc%20rescan%3C%2FSPAN%3E%3C%2FPRE%3E%3CPRE%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%22%3E%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3E%3D%26gt%3B%20mmc%20info%3C%2FSPAN%3E%3C%2FPRE%3E%3CP%20style%3D%22background%3A%20white%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20margin%3A%200px%200px%200.0001pt%3B%22%3E%3CSPAN%20style%3D%22color%3A%20%2351626f%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2011.5pt%3B%22%3EOr%3C%2FSPAN%3E%3C%2FP%3E%3CPRE%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%22%3E%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3E%3D%26gt%3B%20usb%20start%3C%2FSPAN%3E%0A%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3E%3D%26gt%3B%20usb%20info%3C%2FSPAN%3E%3C%2FPRE%3E%3CP%20style%3D%22background%3A%20white%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20margin%3A%200px%200px%200.0001pt%3B%22%3E%3CSPAN%20style%3D%22color%3A%20%2351626f%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2011.5pt%3B%22%3EOr%3C%2FSPAN%3E%3C%2FP%3E%3CP%20style%3D%22background%3A%20white%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20margin%3A%200px%200px%200.0001pt%3B%22%3E%3CSPAN%20style%3D%22color%3A%20%2351626f%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2011.5pt%3B%20font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3E%3D%26gt%3B%20scsi%20scan%3C%2FSPAN%3E%3C%2FP%3E%3CP%20style%3D%22background%3A%20white%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20margin%3A%200px%200px%200.0001pt%3B%22%3E%3CSPAN%20style%3D%22color%3A%20%2351626f%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2011.5pt%3B%20font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3E%3D%26gt%3B%20scsi%20info%3C%2FSPAN%3E%3C%2FP%3E%3C%2FLI%3E%3CLI%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20margin%3A%200.5ex%200px%3B%22%3E%3CSPAN%20style%3D%22color%3A%20%2351626f%3B%20background%3A%20white%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2011.5pt%3B%22%3EOptional%20%E2%80%93%20List%20files%20on%20storage%20device%3C%2FSPAN%3E%3CP%20style%3D%22background%3A%20white%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20margin%3A%200px%200px%200.0001pt%3B%22%3E%3CSPAN%20style%3D%22color%3A%20%2351626f%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2011.5pt%3B%20font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3E%3D%26gt%3B%20ls%20mmc%20%3CPARTITION%3E%3C%2FPARTITION%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%20style%3D%22background%3A%20white%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20margin%3A%200px%200px%200.0001pt%3B%22%3E%3CSPAN%20style%3D%22color%3A%20%2351626f%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2011.5pt%3B%22%3EFor%20example%3A%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3E%3D%26gt%3B%20ls%20mmc%200%3A3%3C%2FSPAN%3E%3CBR%20%2F%3E%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3E%20System%20Volume%20Information%2F%3C%2FSPAN%3E%3CBR%20%2F%3E%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3E32604%26nbsp%3Bfsl_fman_ucode_ls1043_r1.1_106_4_18.bin%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3E1%20file(s)%2C%201%20dir(s)%3C%2FSPAN%3E%3C%2FP%3E%3CP%20style%3D%22background%3A%20white%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20margin%3A%200px%200px%200.0001pt%3B%22%3E%3CSPAN%20style%3D%22color%3A%20%2351626f%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2011.5pt%3B%22%3EOr%3C%2FSPAN%3E%3C%2FP%3E%3CP%20style%3D%22background%3A%20white%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20margin%3A%200px%200px%200.0001pt%3B%22%3E%3CSPAN%20style%3D%22color%3A%20%2351626f%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2011.5pt%3B%20font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3E%3D%26gt%3B%20ls%20usb%20%3CPARTITION%3E%3C%2FPARTITION%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%20style%3D%22background%3A%20white%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20margin%3A%200px%200px%200.0001pt%3B%22%3E%3CSPAN%20style%3D%22color%3A%20%2351626f%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2011.5pt%3B%22%3EFor%20example%3A%3C%2FSPAN%3E%3C%2FP%3E%3CP%20style%3D%22background%3A%20white%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20margin%3A%200px%200px%200.0001pt%3B%22%3E%3CSPAN%20style%3D%22color%3A%20%2351626f%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2011.5pt%3B%20font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3E%3D%26gt%3B%20ls%20usb%200%3A1%3C%2FSPAN%3E%3C%2FP%3E%3CP%20style%3D%22background%3A%20white%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20margin%3A%200px%200px%200.0001pt%3B%22%3E%3CSPAN%20style%3D%22color%3A%20%2351626f%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2011.5pt%3B%22%3EOr%3C%2FSPAN%3E%3C%2FP%3E%3CP%20style%3D%22background%3A%20white%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20margin%3A%200px%200px%200.0001pt%3B%22%3E%3CSPAN%20style%3D%22color%3A%20%2351626f%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2011.5pt%3B%20font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3E%3D%26gt%3B%20ls%20scsi%20%3CPARTITION%3E%3C%2FPARTITION%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%20style%3D%22background%3A%20white%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20margin%3A%200px%200px%200.0001pt%3B%22%3E%3CSPAN%20style%3D%22color%3A%20%2351626f%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2011.5pt%3B%22%3EFor%20example%3A%3C%2FSPAN%3E%3C%2FP%3E%3CP%20style%3D%22background%3A%20white%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20margin%3A%200px%200px%200.0001pt%3B%22%3E%3CSPAN%20style%3D%22color%3A%20%2351626f%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2011.5pt%3B%20font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3E%3D%26gt%3B%20ls%20scsi%200%3A2%3C%2FSPAN%3E%3C%2FP%3E%3CPRE%20__default_attr%3D%22info%22%20__jive_macro_name%3D%22alert%22%20alert%3D%22info%22%20class%3D%22jive_text_macro%20jive_macro_alert%22%3E%3CP%3EIf%20the%3CSPAN%3E%26nbsp%3B%3C%2FSPAN%3E%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3Els%3C%2FSPAN%3E%3CSPAN%3E%26nbsp%3B%3C%2FSPAN%3Ecommand%20fails%20to%20run%2C%20check%20that%20U-Boot%20in%20NOR%20bank%200%20supports%20the%20command%20by%20typing%3CSPAN%3E%26nbsp%3B%3C%2FSPAN%3E%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3Els%3C%2FSPAN%3E%3CSPAN%3E%26nbsp%3B%3C%2FSPAN%3Eat%20the%20U-Boot%20prompt%3A%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3E%3D%26gt%3B%20ls%3C%2FSPAN%3E%0Als%20-%20lists%20files%20in%20a%20directory%20(default)%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EUsage%3A%0A%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3Els%20%3CINTERFACE%3E%20%5B%3CDEV%3E%20%5Bdirectory%5D%5D%3C%2FDEV%3E%3C%2FINTERFACE%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%3E-%20Lists%20files%20in%20directory%26nbsp%3B%3C%2FSPAN%3E%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3E%5Bdirectory%5D%3C%2FSPAN%3E%3CSPAN%3E%3CSPAN%3E%26nbsp%3B%3C%2FSPAN%3Eof%20partition%3CSPAN%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FSPAN%3E%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3E%5Bpart%5D%3C%2FSPAN%3E%3CSPAN%3E%3CSPAN%3E%26nbsp%3B%3C%2FSPAN%3Eon%26nbsp%3Bdevice%20type%3CSPAN%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FSPAN%3E%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3E%5Binterface%5D%3C%2FSPAN%3E%3CSPAN%3E%3CSPAN%3E%26nbsp%3B%3C%2FSPAN%3Eand%20instance%3CSPAN%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FSPAN%3E%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3E%5Bdev%5D%3C%2FSPAN%3E%3CSPAN%3E.%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EIf%20U-Boot%20does%20not%20support%20this%20command%2C%20then%20update%20the%20composite%20firmware%20image%20in%20NOR%20bank%200.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EFor%20steps%20to%26nbsp%3Bupdate%20composite%20firmware%20image%20in%20NOR%20flash%2C%20see%20%3CA%20href%3D%22https%3A%2F%2Fwww.nxp.com%2Fsupport%2Fdeveloper-resources%2Frun-time-software%2Flinux-software-and-development-tools%2Flayerscape-software-development-kit-v19.06%3ALAYERSCAPE-SDK%3Ftab%3DDocumentation_Tab%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22_blank%22%3ELayerscape%20Software%20Development%20Kit%20User%20Guide%3C%2FA%3E.%3C%2FP%3E%3C%2FPRE%3E%3C%2FLI%3E%3CLI%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20margin%3A%200.5ex%200px%3B%22%3E%3CSPAN%20style%3D%22border%3A%200px%3B%20color%3A%20%2351626f%3B%20background%3A%20white%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2011.5pt%3B%22%3ELoad%20FMan%20ucode%26nbsp%3B%3C%2FSPAN%3E%3CSPAN%20style%3D%22color%3A%20%2351626f%3B%20background%3A%20white%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-size%3A%2011.5pt%3B%22%3Eimage%20from%20the%20storage%20device.%3C%2FSPAN%3E%3CP%20style%3D%22background%3A%20white%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20margin%3A%200px%200px%200.0001pt%3B%22%3E%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3E%3D%26gt%3B%20load%20mmc%3CSPAN%3E%26nbsp%3B%3C%2FSPAN%3E%3CSPAN%20style%3D%22background-color%3A%20%23ffffff%3B%22%3E%3CPARTITION%3E%3C%2FPARTITION%3E%3C%2FSPAN%3E%3CSPAN%3E%26nbsp%3B8%3C%2FSPAN%3E0000000%20%3CIMAGE%20name%3D%22%22%3E%3C%2FIMAGE%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%20style%3D%22background%3A%20white%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20margin%3A%200px%200px%200.0001pt%3B%22%3E%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3E%3D%26gt%3B%20print%20filesize%3C%2FSPAN%3E%3C%2FP%3E%3CP%20style%3D%22background%3A%20white%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20margin%3A%200px%200px%200.0001pt%3B%22%3EFor%20example%3A%3C%2FP%3E%3CP%20style%3D%22background%3A%20white%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20margin%3A%200px%200px%200.0001pt%3B%22%3E%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3E%3D%26gt%3B%20load%20mmc%200%3A3%20%3CSPAN%20style%3D%22color%3A%20%233d3d3d%3B%22%3E8%3C%2FSPAN%3E%3CSPAN%20style%3D%22color%3A%20%233d3d3d%3B%22%3E0000000%3C%2FSPAN%3E%26nbsp%3B%3CSPAN%3Efsl_fman_ucode_ls1043_r1.1_106_4_18.bin%3C%2FSPAN%3E%3CBR%20%2F%3E32604%20bytes%20read%20in%2018%20ms%20(1.8%20MiB%2Fs)%3CBR%20%2F%3E%3D%26gt%3B%20print%20filesize%3CBR%20%2F%3Efilesize%3D7f5c%3C%2FSPAN%3E%3C%2FP%3E%3CP%20style%3D%22background%3A%20white%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20margin%3A%200px%200px%200.0001pt%3B%22%3EOr%3C%2FP%3E%3CP%20style%3D%22background%3A%20white%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20margin%3A%200px%200px%200.0001pt%3B%22%3E%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3E%3D%26gt%3B%20load%20usb%3CSPAN%3E%26nbsp%3B%3C%2FSPAN%3E%3CSPAN%20style%3D%22background-color%3A%20%23ffffff%3B%22%3E%3CPARTITION%3E%3C%2FPARTITION%3E%3C%2FSPAN%3E%3CSPAN%3E%26nbsp%3B8%3C%2FSPAN%3E0000000%20%3CIMAGE%20name%3D%22%22%3E%3C%2FIMAGE%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%20style%3D%22background%3A%20white%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20margin%3A%200px%200px%200.0001pt%3B%22%3E%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3E%3D%26gt%3B%20print%20filesize%3C%2FSPAN%3E%3C%2FP%3E%3CP%20style%3D%22background%3A%20white%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20margin%3A%200px%200px%200.0001pt%3B%22%3EOr%3C%2FP%3E%3CP%20style%3D%22background%3A%20white%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20margin%3A%200px%200px%200.0001pt%3B%22%3E%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3E%3D%26gt%3B%20load%20scsi%3CSPAN%3E%26nbsp%3B%3C%2FSPAN%3E%3CSPAN%20style%3D%22background-color%3A%20%23ffffff%3B%22%3E%3CPARTITION%3E%3C%2FPARTITION%3E%3C%2FSPAN%3E%3CSPAN%3E%26nbsp%3B8%3C%2FSPAN%3E0000000%20%3CIMAGE%20name%3D%22%22%3E%3C%2FIMAGE%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%20style%3D%22background%3A%20white%3B%20border%3A%200px%3B%20font-weight%3A%20inherit%3B%20margin%3A%200px%200px%200.0001pt%3B%22%3E%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3E%3D%26gt%3B%20print%20filesize%3C%2FSPAN%3E%3C%2FP%3E%3C%2FLI%3E%3CLI%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20margin%3A%200.5ex%200px%3B%22%3EProgram%20the%26nbsp%3BFMan%20ucode%26nbsp%3Bimage%20to%20NOR%20bank%204%3A%26nbsp%3B%3CSPAN%20style%3D%22background-color%3A%20%23ffffff%3B%20border%3A%200px%3B%20color%3A%20%2351626f%3B%20font-weight%3A%20inherit%3B%20font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3E%3D%26gt%3B%3CSPAN%3E%26nbsp%3B%3CSPAN%20style%3D%22background-color%3A%20%23ffffff%3B%22%3Eerase%2064%3C%2FSPAN%3E%3CSPAN%20style%3D%22background-color%3A%20%23ffffff%3B%22%3E900000%3C%2FSPAN%3E%3CSPAN%20style%3D%22background-color%3A%20%23ffffff%3B%22%3E%3CSPAN%3E%26nbsp%3B%3C%2FSPAN%3E%2B%24filesize%20%26amp%3B%26amp%3B%20cp.b%20%3CSPAN%20style%3D%22color%3A%20%233d3d3d%3B%22%3E8%3C%2FSPAN%3E%3CSPAN%20style%3D%22color%3A%20%233d3d3d%3B%22%3E0000000%3C%2FSPAN%3E%2064%3C%2FSPAN%3E%3CSPAN%20style%3D%22background-color%3A%20%23ffffff%3B%22%3E900000%3C%2FSPAN%3E%3CSPAN%20style%3D%22background-color%3A%20%23ffffff%3B%22%3E%3CSPAN%3E%26nbsp%3B%3C%2FSPAN%3E%24filesize%3C%2FSPAN%3E%3C%2FSPAN%3E%3C%2FSPAN%3E%3CP%20style%3D%22color%3A%20%2351626f%3B%20background-color%3A%20%23ffffff%3B%22%3E%3CSPAN%20lang%3D%22EN-US%22%3E%3CSPAN%20lang%3D%22EN-US%22%3EAddress%26nbsp%3B%3C%2FSPAN%3E%3C%2FSPAN%3E%3CSPAN%20lang%3D%22EN-US%22%3E%3CSPAN%20lang%3D%22EN-US%22%3E%3CSPAN%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FSPAN%3E%3C%2FSPAN%3E%3CSPAN%20lang%3D%22EN-US%22%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3E%3CSPAN%20lang%3D%22EN-US%22%3E0x64900000%3C%2FSPAN%3E%3C%2FSPAN%3E%3CSPAN%20lang%3D%22EN-US%22%3E%3CSPAN%20lang%3D%22EN-US%22%3E%26nbsp%3Bis%20the%20location%20of%26nbsp%3Bthe%26nbsp%3B%3CSPAN%3EFMan%20ucode%3C%2FSPAN%3E%3CSPAN%20style%3D%22background-color%3A%20%23ffffff%3B%22%3E%3CSPAN%3E%26nbsp%3B%3C%2FSPAN%3Eimage%3C%2FSPAN%3E%3CSPAN%3E%26nbsp%3B%3C%2FSPAN%3Ein%20NOR%20bank%204.%26nbsp%3B%26nbsp%3B%3C%2FSPAN%3E%3CSPAN%20lang%3D%22EN-US%22%3ERefer%20%3CA%20_jive_internal%3D%22true%22%20href%3D%22https%3A%2F%2Fcommunity.nxp.com%2Fdocs%2FDOC-342651%22%20style%3D%22text-decoration%3A%20none%3B%22%20target%3D%22_blank%22%3EFlash%20layout%20for%20new%20boot%20flow%20with%20TF-A%3C%2FA%3E%3C%2FSPAN%3E%3CSPAN%20lang%3D%22EN-US%22%3E%26nbsp%3Bfor%26nbsp%3B%3C%2FSPAN%3E%3CSPAN%20lang%3D%22EN-US%22%3Et%3C%2FSPAN%3E%3CSPAN%20lang%3D%22EN-US%22%3Ehe%26nbsp%3Bcomplete%20flash%20memory%20layout.%3C%2FSPAN%3E%3C%2FSPAN%3E%3C%2FP%3E%3C%2FLI%3E%3CLI%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20margin%3A%200.5ex%200px%3B%22%3E%3CSPAN%20lang%3D%22EN-US%22%3E%3CSPAN%20lang%3D%22EN-US%22%3E%3CSPAN%20style%3D%22color%3A%20%2351626f%3B%20background-color%3A%20%23ffffff%3B%22%3EBoot%20from%20NOR%20bank%204%20and%20press%20Enter%20to%20stop%20the%20autoboot%3A%26nbsp%3B%3D%26gt%3B%3CSPAN%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FSPAN%3E%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3Ecpld%20reset%26nbsp%3Baltbank%3C%2FSPAN%3E%3C%2FSPAN%3E%3C%2FSPAN%3E%3CP%20style%3D%22padding-left%3A%2030px%3B%22%3EIn%20boot%20log%2C%20you%E2%80%99ll%20see%3A%3C%2FP%3E%3CP%20style%3D%22padding-left%3A%2030px%3B%22%3E%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3EBoard%3A%20LS1043ARDB%2C%20boot%20from%20vBank%204%3C%2FSPAN%3E%3C%2FP%3E%3CP%20style%3D%22background-color%3A%20%23ffffff%3B%20border%3A%200px%3B%20padding%3A%200px%200px%200px%2030px%3B%22%3E%3CSPAN%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%22%3EYou%20can%20check%20the%20following%20code%20line%20in%20the%20boot%20log%20to%20confirm%20that%20the%26nbsp%3B%3C%2FSPAN%3EDPAA1%20FMan%20ucode%20image%26nbsp%3Bin%20NOR%26nbsp%3Bbank%204%20is%20updated.%3C%2FP%3E%3CP%20style%3D%22background-color%3A%20%23ffffff%3B%20border%3A%200px%3B%20padding%3A%200px%200px%200px%2030px%3B%22%3E%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3EFman1%3A%20Uploading%20microcode%20version%20106.4.18%3C%2FSPAN%3E%3C%2FP%3E%3C%2FLI%3E%3CLI%20style%3D%22border%3A%200px%3B%20font-weight%3A%20inherit%3B%20margin%3A%200.5ex%200px%3B%22%3EEnsure%20that%20SD%20card%2C%20USB%20flash%20drive%2C%20or%20SCSI%20hard%20disk%20installed%20with%26nbsp%3B%3CSPAN%20style%3D%22background-color%3A%20%23ffffff%3B%22%3ENXP%20LSDK%20userland%3CSPAN%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FSPAN%3Eis%20plugged%20into%20the%20board%20to%20boot%20the%20board%20to%20the%20%3CSPAN%20style%3D%22background-color%3A%20%23ffffff%3B%22%3ELSDK%20userland%3C%2FSPAN%3E.%26nbsp%3B%3CP%20style%3D%22color%3A%20%2351626f%3B%20background-color%3A%20%23ffffff%3B%22%3E%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3E%3CSPAN%20style%3D%22color%3A%20%2351626f%3B%20background-color%3A%20%23ffffff%3B%22%3E%3D%26gt%3B%3CSPAN%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FSPAN%3E%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3Ecpld%20reset%26nbsp%3Baltbank%3C%2FSPAN%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%20style%3D%22color%3A%20%2351626f%3B%20background-color%3A%20%23ffffff%3B%20margin%3A%200px%3B%22%3E%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3ENXP%20LSDK%201906%20main%3C%2FSPAN%3E%3CBR%20%2F%3E%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3Elocalhost%20login%3A%20root%3C%2FSPAN%3E%3C%2FP%3E%3CP%20style%3D%22color%3A%20%2351626f%3B%20background-color%3A%20%23ffffff%3B%20margin%3A%200px%3B%22%3E%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3E%5B%20OK%20%5D%20Stopped%20Serial%20Getty%20on%20ttyS0.%3C%2FSPAN%3E%3CBR%20%2F%3E%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3E%5B%20OK%20%5D%20Started%20Serial%20Getty%20on%20ttyS0.%3C%2FSPAN%3E%3C%2FP%3E%3CP%20style%3D%22color%3A%20%2351626f%3B%20background-color%3A%20%23ffffff%3B%20margin%3A%200px%3B%22%3E%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3ENXP%20LSDK%201906%20main%3C%2FSPAN%3E%3CBR%20%2F%3E%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3Elocalhost%20login%3A%20root%3C%2FSPAN%3E%3CBR%20%2F%3E%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3EPassword%3A%3C%2FSPAN%3E%3CBR%20%2F%3E%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3ELast%20login%3A%20Fri%20Feb%2022%2004%3A29%3A12%20UTC%202019%20on%20ttyS0%3C%2FSPAN%3E%3CBR%20%2F%3E%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3EWelcome%20to%20NXP%20LSDK%201906%20main%20(GNU%2FLinux%204.19.46%20aarch64)%3C%2FSPAN%3E%3C%2FP%3E%3CP%20style%3D%22color%3A%20%2351626f%3B%20background-color%3A%20%23ffffff%3B%20margin%3A%200px%3B%22%3E%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3E*%20Support%3A%20%3CA%20href%3D%22https%3A%2F%2Fwww.nxp.com%2Flsdk%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22test_blank%22%3Ehttps%3A%2F%2Fwww.nxp.com%2Flsdk%3C%2FA%3E%3C%2FSPAN%3E%3CBR%20%2F%3E%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3E*%20Documentation%3A%20%3CA%20href%3D%22https%3A%2F%2Flsdk.github.io%2Fdocument%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22test_blank%22%3Ehttps%3A%2F%2Flsdk.github.io%2Fdocument%3C%2FA%3E%3C%2FSPAN%3E%3CBR%20%2F%3E%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3E*%20Licensing%3A%20%3CA%20href%3D%22https%3A%2F%2Flsdk.github.io%2Feula%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22test_blank%22%3Ehttps%3A%2F%2Flsdk.github.io%2Feula%3C%2FA%3E%3C%2FSPAN%3E%3CBR%20%2F%3E%3CSPAN%20style%3D%22font-family%3A%20'courier%20new'%2C%20courier%2C%20monospace%3B%22%3Eroot%40localhost%3A~%23%3C%2FSPAN%3E%3C%2FP%3E%3CP%20style%3D%22color%3A%20%2351626f%3B%20background-color%3A%20%23ffffff%3B%22%3E%3C%2FP%3E%3C%2FLI%3E%3C%2FOL%3E%3C%2FLINGO-BODY%3E%3CLINGO-LABS%20id%3D%22lingo-labs-1105483%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CLINGO-LABEL%3EQorIQ%20LS1%20Devices%3C%2FLINGO-LABEL%3E%3C%2FLINGO-LABS%3E
No ratings
Version history
Last update:
‎09-10-2020 01:55 AM
Updated by: