mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-22 15:02:32 +00:00
3a3d998c12
Re-add support for NXP FRDM-LS1012A, which mimics the flash layout of the rest boards supported by LSDK. 0x000000000000-0x000000100000 : "bl2" 0x000000100000-0x000000500000 : "fip" 0x000000500000-0x000000600000 : "u-boot-env" 0x000000600000-0x000000a00000 : "reserved-1" 0x000000a00000-0x000000d00000 : "pfe" 0x000000d00000-0x000000f00000 : "reserved-2" 0x000000f00000-0x000001000000 : "dtb" 0x000001000000-0x000002000000 : "kernel" 0x000002000000-0x000004000000 : "ubifs" Specification SoC: LS1012A single core 800MHz RAM: 512 MB DDR3 Flash: 64 MB QSPI NOR Ethernet: 2x 10/100/1000 Mbps Connectors: µUSB 3.0 OTG µUSB 2.0 (debugging & power input) 2x 3.5mm jack for microphone & headphone (SGTL5000) Arduino Shield expansion with I2C, SPI, UART, and GPIO JTAG LEDS: 3x (non-configurable) Buttons: 1x (reset, non-configurable) Be advised that erasing or writing 64MB flash takes some time to finish. Do not reset the board until all operations end with success, otherwise You'll need external tools to re-program the flash chip. Installation Follow the QSPI programing procedure for LS1012AFRWY board in target/linux/layerscape/README, point 3.3. Don't forget about updating U-Boot environment with MAC addresses of ethernet interfaces, variable 'ethaddr' for eth0 and 'eth1addr' for eth1. As the LSDK images do not support sysupgrade, nor do changes in this commit, it's planed in upcoming submissions. Signed-off-by: Tomasz Maciej Nowak <tomek_n@o2.pl>
291 lines
8.8 KiB
Makefile
291 lines
8.8 KiB
Makefile
#
|
|
# Copyright 2018 NXP
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
define Device/Default
|
|
PROFILES := Default
|
|
IMAGES := firmware.bin
|
|
FILESYSTEMS := ubifs
|
|
MKUBIFS_OPTS := -m 1 -e 262016 -c 128
|
|
KERNEL := kernel-bin | gzip | uImage gzip
|
|
KERNEL_LOADADDR := 0x80080000
|
|
KERNEL_ENTRY_POINT := 0x80080000
|
|
endef
|
|
|
|
define Device/ls1012afrdm
|
|
DEVICE_VENDOR := NXP
|
|
DEVICE_MODEL := FRDM-LS1012A
|
|
DEVICE_PACKAGES += \
|
|
layerscape-ppfe \
|
|
tfa-ls1012afrdm \
|
|
kmod-ppfe
|
|
DEVICE_DTS := freescale/fsl-ls1012a-frdm
|
|
UBINIZE_OPTS := -E 5
|
|
BLOCKSIZE := 256KiB
|
|
PAGESIZE := 1
|
|
IMAGE/firmware.bin := \
|
|
ls-clean | \
|
|
ls-append $(1)-bl2.pbl | pad-to 1M | \
|
|
ls-append $(1)-fip.bin | pad-to 5M | \
|
|
ls-append $(1)-uboot-env.bin | pad-to 10M | \
|
|
ls-append pfe.itb | pad-to 15M | \
|
|
ls-append-dtb $$(DEVICE_DTS) | pad-to 16M | \
|
|
append-kernel | pad-to 32M | \
|
|
append-ubi | check-size 67108865
|
|
endef
|
|
TARGET_DEVICES += ls1012afrdm
|
|
|
|
define Device/ls1012ardb
|
|
DEVICE_VENDOR := NXP
|
|
DEVICE_MODEL := LS1012A-RDB
|
|
DEVICE_PACKAGES += \
|
|
layerscape-ppfe \
|
|
tfa-ls1012ardb \
|
|
kmod-ppfe
|
|
DEVICE_DTS := freescale/fsl-ls1012a-rdb
|
|
UBINIZE_OPTS := -E 5
|
|
BLOCKSIZE := 256KiB
|
|
PAGESIZE := 1
|
|
IMAGE/firmware.bin := \
|
|
ls-clean | \
|
|
ls-append $(1)-bl2.pbl | pad-to 1M | \
|
|
ls-append $(1)-fip.bin | pad-to 5M | \
|
|
ls-append $(1)-uboot-env.bin | pad-to 10M | \
|
|
ls-append pfe.itb | pad-to 15M | \
|
|
ls-append-dtb $$(DEVICE_DTS) | pad-to 16M | \
|
|
append-kernel | pad-to 32M | \
|
|
append-ubi | check-size 67108865
|
|
endef
|
|
TARGET_DEVICES += ls1012ardb
|
|
|
|
define Device/ls1012afrwy
|
|
DEVICE_VENDOR := NXP
|
|
DEVICE_MODEL := FRWY-LS1012A
|
|
DEVICE_PACKAGES += \
|
|
layerscape-ppfe \
|
|
tfa-ls1012afrwy \
|
|
kmod-ppfe
|
|
DEVICE_DTS := freescale/fsl-ls1012a-frwy
|
|
FILESYSTEMS := ext4
|
|
IMAGES := firmware.bin sdcard.img
|
|
IMAGE/firmware.bin := \
|
|
ls-clean | \
|
|
ls-append $(1)-bl2.pbl | pad-to 128K | \
|
|
ls-append pfe.itb | pad-to 384K | \
|
|
ls-append $(1)-fip.bin | pad-to 1856K | \
|
|
ls-append $(1)-uboot-env.bin | pad-to 2048K | \
|
|
check-size 2097153
|
|
IMAGE/sdcard.img := \
|
|
ls-clean | \
|
|
ls-append-sdhead $(1) | pad-to 15M | \
|
|
ls-append-dtb $$(DEVICE_DTS) | pad-to 16M | \
|
|
append-kernel | pad-to $(LS_SD_ROOTFSPART_OFFSET)M | \
|
|
append-rootfs | check-size $(LS_SD_IMAGE_SIZE)
|
|
endef
|
|
TARGET_DEVICES += ls1012afrwy
|
|
|
|
define Device/ls1043ardb
|
|
DEVICE_VENDOR := NXP
|
|
DEVICE_MODEL := LS1043A-RDB
|
|
DEVICE_VARIANT := Default
|
|
DEVICE_PACKAGES += \
|
|
layerscape-fman-ls1043ardb \
|
|
tfa-ls1043ardb \
|
|
fmc fmc-eth-config
|
|
DEVICE_DTS := freescale/fsl-ls1043a-rdb-sdk
|
|
FILESYSTEMS := squashfs
|
|
IMAGE/firmware.bin := \
|
|
ls-clean | \
|
|
ls-append $(1)-bl2.pbl | pad-to 1M | \
|
|
ls-append $(1)-fip.bin | pad-to 5M | \
|
|
ls-append $(1)-uboot-env.bin | pad-to 9M | \
|
|
ls-append $(1)-fman.bin | pad-to 15M | \
|
|
ls-append-dtb $$(DEVICE_DTS) | pad-to 16M | \
|
|
append-kernel | pad-to 32M | \
|
|
append-rootfs | pad-rootfs | check-size 67108865
|
|
endef
|
|
TARGET_DEVICES += ls1043ardb
|
|
|
|
define Device/ls1043ardb-sdboot
|
|
DEVICE_VENDOR := NXP
|
|
DEVICE_MODEL := LS1043A-RDB
|
|
DEVICE_VARIANT := SD Card Boot
|
|
DEVICE_PACKAGES += \
|
|
layerscape-fman-ls1043ardb \
|
|
tfa-ls1043ardb-sdboot \
|
|
fmc fmc-eth-config
|
|
DEVICE_DTS := freescale/fsl-ls1043a-rdb-sdk
|
|
FILESYSTEMS := ext4
|
|
IMAGES := sdcard.img
|
|
IMAGE/sdcard.img := \
|
|
ls-clean | \
|
|
ls-append-sdhead $(1) | pad-to 4K | \
|
|
ls-append $(1)-bl2.pbl | pad-to 1M | \
|
|
ls-append $(1)-fip.bin | pad-to 5M | \
|
|
ls-append $(1)-uboot-env.bin | pad-to 9M | \
|
|
ls-append ls1043ardb-fman.bin | pad-to 15M | \
|
|
ls-append-dtb $$(DEVICE_DTS) | pad-to 16M | \
|
|
append-kernel | pad-to $(LS_SD_ROOTFSPART_OFFSET)M | \
|
|
append-rootfs | check-size $(LS_SD_IMAGE_SIZE)
|
|
endef
|
|
TARGET_DEVICES += ls1043ardb-sdboot
|
|
|
|
define Device/ls1046ardb
|
|
DEVICE_VENDOR := NXP
|
|
DEVICE_MODEL := LS1046A-RDB
|
|
DEVICE_VARIANT := Default
|
|
DEVICE_PACKAGES += \
|
|
layerscape-fman-ls1046ardb \
|
|
tfa-ls1046ardb \
|
|
fmc fmc-eth-config
|
|
DEVICE_DTS := freescale/fsl-ls1046a-rdb-sdk
|
|
UBINIZE_OPTS := -E 5
|
|
BLOCKSIZE := 256KiB
|
|
PAGESIZE := 1
|
|
IMAGE/firmware.bin := \
|
|
ls-clean | \
|
|
ls-append $(1)-bl2.pbl | pad-to 1M | \
|
|
ls-append $(1)-fip.bin | pad-to 5M | \
|
|
ls-append $(1)-uboot-env.bin | pad-to 9M | \
|
|
ls-append $(1)-fman.bin | pad-to 15M | \
|
|
ls-append-dtb $$(DEVICE_DTS) | pad-to 16M | \
|
|
append-kernel | pad-to 32M | \
|
|
append-ubi | check-size 67108865
|
|
endef
|
|
TARGET_DEVICES += ls1046ardb
|
|
|
|
define Device/ls1046ardb-sdboot
|
|
DEVICE_VENDOR := NXP
|
|
DEVICE_MODEL := LS1046A-RDB
|
|
DEVICE_VARIANT := SD Card Boot
|
|
DEVICE_PACKAGES += \
|
|
layerscape-fman-ls1046ardb \
|
|
tfa-ls1046ardb-sdboot \
|
|
fmc fmc-eth-config
|
|
DEVICE_DTS := freescale/fsl-ls1046a-rdb-sdk
|
|
FILESYSTEMS := ext4
|
|
IMAGES := sdcard.img
|
|
IMAGE/sdcard.img := \
|
|
ls-clean | \
|
|
ls-append-sdhead $(1) | pad-to 4K | \
|
|
ls-append $(1)-bl2.pbl | pad-to 1M | \
|
|
ls-append $(1)-fip.bin | pad-to 5M | \
|
|
ls-append $(1)-uboot-env.bin | pad-to 9M | \
|
|
ls-append ls1046ardb-fman.bin | pad-to 15M | \
|
|
ls-append-dtb $$(DEVICE_DTS) | pad-to 16M | \
|
|
append-kernel | pad-to $(LS_SD_ROOTFSPART_OFFSET)M | \
|
|
append-rootfs | check-size $(LS_SD_IMAGE_SIZE)
|
|
endef
|
|
TARGET_DEVICES += ls1046ardb-sdboot
|
|
|
|
define Device/ls1088ardb
|
|
DEVICE_VENDOR := NXP
|
|
DEVICE_MODEL := LS1088A-RDB
|
|
DEVICE_VARIANT := Default
|
|
DEVICE_PACKAGES += \
|
|
layerscape-mc-ls1088ardb \
|
|
layerscape-dpl-ls1088ardb \
|
|
tfa-ls1088ardb \
|
|
restool
|
|
DEVICE_DTS := freescale/fsl-ls1088a-rdb
|
|
UBINIZE_OPTS := -E 5
|
|
BLOCKSIZE := 256KiB
|
|
PAGESIZE := 1
|
|
IMAGE/firmware.bin := \
|
|
ls-clean | \
|
|
ls-append $(1)-bl2.pbl | pad-to 1M | \
|
|
ls-append $(1)-fip.bin | pad-to 5M | \
|
|
ls-append $(1)-uboot-env.bin | pad-to 10M | \
|
|
ls-append $(1)-mc.itb | pad-to 13M | \
|
|
ls-append $(1)-dpl.dtb | pad-to 14M | \
|
|
ls-append $(1)-dpc.dtb | pad-to 15M | \
|
|
ls-append-dtb $$(DEVICE_DTS) | pad-to 16M | \
|
|
append-kernel | pad-to 32M | \
|
|
append-ubi | check-size 67108865
|
|
endef
|
|
TARGET_DEVICES += ls1088ardb
|
|
|
|
define Device/ls1088ardb-sdboot
|
|
DEVICE_VENDOR := NXP
|
|
DEVICE_MODEL := LS1088A-RDB
|
|
DEVICE_VARIANT := SD Card Boot
|
|
DEVICE_PACKAGES += \
|
|
layerscape-mc-ls1088ardb \
|
|
layerscape-dpl-ls1088ardb \
|
|
tfa-ls1088ardb-sdboot \
|
|
restool
|
|
DEVICE_DTS := freescale/fsl-ls1088a-rdb
|
|
FILESYSTEMS := ext4
|
|
IMAGES := sdcard.img
|
|
IMAGE/sdcard.img := \
|
|
ls-clean | \
|
|
ls-append-sdhead $(1) | pad-to 4K | \
|
|
ls-append $(1)-bl2.pbl | pad-to 1M | \
|
|
ls-append $(1)-fip.bin | pad-to 5M | \
|
|
ls-append $(1)-uboot-env.bin | pad-to 10M | \
|
|
ls-append ls1088ardb-mc.itb | pad-to 13M | \
|
|
ls-append ls1088ardb-dpl.dtb | pad-to 14M | \
|
|
ls-append ls1088ardb-dpc.dtb | pad-to 15M | \
|
|
ls-append-dtb $$(DEVICE_DTS) | pad-to 16M | \
|
|
append-kernel | pad-to $(LS_SD_ROOTFSPART_OFFSET)M | \
|
|
append-rootfs | check-size $(LS_SD_IMAGE_SIZE)
|
|
endef
|
|
TARGET_DEVICES += ls1088ardb-sdboot
|
|
|
|
define Device/ls2088ardb
|
|
DEVICE_VENDOR := NXP
|
|
DEVICE_MODEL := LS2088ARDB
|
|
DEVICE_PACKAGES += \
|
|
layerscape-mc-ls2088ardb \
|
|
layerscape-dpl-ls2088ardb \
|
|
tfa-ls2088ardb \
|
|
restool
|
|
DEVICE_DTS := freescale/fsl-ls2088a-rdb
|
|
FILESYSTEMS := squashfs
|
|
IMAGE/firmware.bin := \
|
|
ls-clean | \
|
|
ls-append $(1)-bl2.pbl | pad-to 1M | \
|
|
ls-append $(1)-fip.bin | pad-to 5M | \
|
|
ls-append $(1)-uboot-env.bin | pad-to 10M | \
|
|
ls-append $(1)-mc.itb | pad-to 13M | \
|
|
ls-append $(1)-dpl.dtb | pad-to 14M | \
|
|
ls-append $(1)-dpc.dtb | pad-to 15M | \
|
|
ls-append-dtb $$(DEVICE_DTS) | pad-to 16M | \
|
|
append-kernel | pad-to 32M | \
|
|
append-rootfs | pad-rootfs | check-size 67108865
|
|
endef
|
|
TARGET_DEVICES += ls2088ardb
|
|
|
|
define Device/traverse-ls1043
|
|
DEVICE_VENDOR := Traverse
|
|
DEVICE_MODEL := LS1043 Boards
|
|
KERNEL_NAME := Image
|
|
KERNEL_SUFFIX := -kernel.itb
|
|
KERNEL_INSTALL := 1
|
|
FDT_LOADADDR = 0x90000000
|
|
FILESYSTEMS := ubifs
|
|
DEVICE_PACKAGES += \
|
|
layerscape-fman-ls1043ardb \
|
|
uboot-envtools \
|
|
kmod-i2c-core kmod-i2c-mux-pca954x \
|
|
kmod-hwmon-core \
|
|
kmod-gpio-pca953x kmod-input-gpio-keys-polled \
|
|
kmod-rtc-isl1208
|
|
DEVICE_DESCRIPTION = \
|
|
Build images for Traverse LS1043 boards. This generates a single image \
|
|
capable of booting on any of the boards in this family.
|
|
DEVICE_DTS = freescale/traverse-ls1043s
|
|
DEVICE_DTS_DIR = $(LINUX_DIR)/arch/arm64/boot/dts
|
|
DEVICE_DTS_CONFIG = ls1043s
|
|
KERNEL := kernel-bin | gzip | traverse-fit gzip $$(DTS_DIR)/$$(DEVICE_DTS).dtb $$(FDT_LOADADDR)
|
|
KERNEL_INITRAMFS := kernel-bin | gzip | fit gzip $$(DTS_DIR)/$$(DEVICE_DTS).dtb $$(FDT_LOADADDR)
|
|
IMAGES = root sysupgrade.bin
|
|
IMAGE/root = append-rootfs
|
|
IMAGE/sysupgrade.bin = sysupgrade-tar | append-metadata
|
|
MKUBIFS_OPTS := -m 2048 -e 124KiB -c 4096
|
|
endef
|
|
TARGET_DEVICES += traverse-ls1043
|