diff options
author | Wojciech Dubowik <Wojciech.Dubowik@protonmail.ch> | 2022-07-19 13:35:12 +0200 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2023-05-07 14:50:50 +0200 |
commit | 924a5aabc708d2ab84ae9c05a580db75b188534f (patch) | |
tree | a5a43ef85849c900121213b45943b910bee6c2b7 /target/linux/layerscape/README | |
parent | 7700a6f8266cb12fbfd32456a3ae8181bc1cf347 (diff) | |
download | upstream-924a5aabc708d2ab84ae9c05a580db75b188534f.tar.gz upstream-924a5aabc708d2ab84ae9c05a580db75b188534f.tar.bz2 upstream-924a5aabc708d2ab84ae9c05a580db75b188534f.zip |
layerscape: Add ls1028ardb support
Add support for NXP LS1028ARDB reference board. It's a dual core
Coretex-A53 board with 4G RAM and 5 Eternet ports (4 ports are
connected to MSCC Felix switch).
The original layout of NXP board has been kept but firmware
images are adapted to be more sysupgrade friendly. At the moment
NOR and SD boots are supported.
NOR flash instructions:
* make sd card with sdboot image
* boot
* write firmware image to spi flash
$ mtd write /tmp/openwrt-layerscape-armv8_64b-fsl_ls1028a-rdb-
squashfs-firmware.bin /dev/mtd0
* change jumper to NOR boot and reset
V3:
* Added board specific network defaults for lan/wan
v2:
* Added INA220 curent monitor, PCF2129 RTC clock and NXP
SA56004ED temperature sensor to default packages
* removed compat fixups for thist board
Signed-off-by: Wojciech Dubowik <Wojciech.Dubowik@protonmail.ch>
Diffstat (limited to 'target/linux/layerscape/README')
-rw-r--r-- | target/linux/layerscape/README | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/target/linux/layerscape/README b/target/linux/layerscape/README index a8d1846468..1e3f707b4f 100644 --- a/target/linux/layerscape/README +++ b/target/linux/layerscape/README @@ -12,6 +12,7 @@ users can bring up the board without difficulty. LS1012ARDB (QSPI NOR boot) LS1012AFRDM (QSPI NOR boot) LS1012AFRWY (QSPI NOR boot) + LS1028ARDB (QSPI NOR boot | SD card boot) LS1043ARDB (NOR boot | SD card boot) LS1046ARDB (QSPI NOR boot | SD card boot) LS1046AFRWY (QSPI NOR boot | SD card boot) @@ -95,6 +96,15 @@ from SD card. (sdcard.img images are gz-iped to save space. Please extract them => sf write a0000000 0 $filesize => reset +* LS1028ARDB + Board has only one bank. Those commands will replace stock bootloader + and firmware. + => tftp a0000000 <firmware_name>-firmware.bin + => sf probe 0:0 + => sf erase 0 +$filesize + => sf write a0000000 0 $filesize + => reset + * LS1043ARDB Start up from bank0, and program firmware to bank4 with below commands. Switch to bank4 to start up OpenWrt. |