From 5de6aed42c3519f819b913a8b218adb5ea827872 Mon Sep 17 00:00:00 2001 From: Pawel Dembicki Date: Sun, 30 Dec 2018 07:38:45 +0000 Subject: mpc85xx: add support for Freescale (NXP) P2020RDB This commit add initial support for Freescale (NXP) P2020RDB Hardware: SoC: P2020 2x1GHz DRAM: 512-1GB DDR3 2 + 4 GBE (2 separate ports and four in VSC7385) Flash: 16MB NOR, 32MB NAND, 16MB SPI-NOR PCIE x1 and mPCIE x1 SD Reader Interfaces: GBE RJ45 x6 USB2.0 x1 UART x2 I2C x2 JTAG x1 SD x1 PCIE x2 (PCIE and mPCIE) Flash instructions: Place sysupgrade image to 0x80000 address in NOR. Eg. (no brakelines in setenv command): setenv 'firmware_flash tftpboot $loadaddr $firmwarefile; protect off $norfdtaddr +$filesize; erase $norfdtaddr +$filesize; cp.b $loadaddr $norfdtaddr $filesize; protect on $norfdtaddr +$filesize; cmp.b $loadaddr $norfdtaddr $filesize' setenv firmwarefile firmware.bin run firmware_flash Boot (no brakeline in setenv command): setenv bootcmd 'setenv bootargs root=/dev/mtdblock3 rw console=$consoledev, $baudrate rootfstype=squashfs $othbootargs; bootm $norfdtaddr' saveenv boot Known issues: -Switch is unmanaged (VSC 7385 is connected via eLBC, driver uses SPI) -No SD reader support Signed-off-by: Pawel Dembicki Signed-off-by: Christian Lamparter [refreshed patches] --- target/linux/mpc85xx/p2020/profiles/00-default.mk | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 target/linux/mpc85xx/p2020/profiles/00-default.mk (limited to 'target/linux/mpc85xx/p2020/profiles/00-default.mk') diff --git a/target/linux/mpc85xx/p2020/profiles/00-default.mk b/target/linux/mpc85xx/p2020/profiles/00-default.mk new file mode 100644 index 0000000000..c9ea67df08 --- /dev/null +++ b/target/linux/mpc85xx/p2020/profiles/00-default.mk @@ -0,0 +1,15 @@ +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# + +define Profile/Default + NAME:=Default Profile + PRIORITY:=1 +endef + +define Profile/Default/Description + Default package set compatible with most P2020 boards. +endef + +$(eval $(call Profile,Default)) -- cgit v1.2.3