From: Ting Liu <[email protected]> The T1023 Reference Design Board (RDB) system is a hardware board featuring the Freescale QorIQ T1023 processor with two Power e5500 cores and speed up to 1.4 GHz.
T1023RDB board Overview ----------------------- - CoreNet fabric supporting coherent and noncoherent transactions with prioritization and bandwidth allocation - Memory: 2GB Micron MT40A512M8HX unbuffered 32-bit fixed DDR4 without ECC - Accelerator: DPAA components consist of FMan, BMan, QMan, DCE and SEC - Ethernet interfaces: - one 1G RGMII port on-board(RTL8211F PHY) - one 1G SGMII port on-board(RTL8211F PHY) - one 2.5G SGMII port on-board(AQR105 PHY) - PCIe: Two Mini-PCIe connectors on-board. - SerDes: 4 lanes up to 10.3125GHz - NOR: 128MB S29GL01GS110TFIV10 Spansion NOR Flash - NAND: 512MB S34MS04G200BFI000 Spansion NAND Flash - eSPI: 64MB S25FL512SAGMFI010 Spansion SPI flash. - USB: one Type-A USB 2.0 port with internal PHY - eSDHC: support SD/MMC card and eMMC on-board - 256Kbit M24256 I2C EEPROM - RTC: Real-time clock DS1339 on I2C bus - UART: one serial port on-board with RJ45 connector - Debugging: JTAG/COP for T1023 debugging Signed-off-by: Ting Liu <[email protected]> --- conf/machine/t1023rdb-64b.conf | 15 +++++++++++++++ conf/machine/t1023rdb.conf | 15 +++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 conf/machine/t1023rdb-64b.conf create mode 100644 conf/machine/t1023rdb.conf diff --git a/conf/machine/t1023rdb-64b.conf b/conf/machine/t1023rdb-64b.conf new file mode 100644 index 0000000..4cbfac0 --- /dev/null +++ b/conf/machine/t1023rdb-64b.conf @@ -0,0 +1,15 @@ +#@TYPE: Machine +#@NAME: Freescale T1023RDB +#@SOC: t1023 +#@DESCRIPTION: Machine configuration for running T1023RDB in 64-bit mode +#@MAINTAINER: Chunrong Guo <[email protected]> + +require conf/machine/include/e5500-64b.inc + +SOC_FAMILY = "t1:t1023" +UBOOT_MACHINES ?= "T1023RDB_NAND T1023RDB_SDCARD T1023RDB_SPIFLASH" +KERNEL_DEVICETREE ?= "t1023rdb.dtb t1023rdb-usdpaa.dtb t1023rdb-usdpaa-shared-interfaces.dtb" +KERNEL_DEFCONFIG ?= "${S}/arch/powerpc/configs/corenet64_fmanv3l_smp_defconfig" + +JFFS2_ERASEBLOCK = "0x10000" + diff --git a/conf/machine/t1023rdb.conf b/conf/machine/t1023rdb.conf new file mode 100644 index 0000000..c895868 --- /dev/null +++ b/conf/machine/t1023rdb.conf @@ -0,0 +1,15 @@ +#@TYPE: Machine +#@NAME: Freescale T1023RDB +#@SOC: t1023 +#@DESCRIPTION: Machine configuration for running T1023RDB in 32-bit mode +#@MAINTAINER: Chunrong Guo <[email protected]> + +require conf/machine/include/e5500.inc + +SOC_FAMILY = "t1:t1023" +UBOOT_MACHINES ?= "T1023RDB_NAND T1023RDB_SDCARD T1023RDB_SPIFLASH" +KERNEL_DEVICETREE ?= "t1023rdb.dtb t1023rdb-usdpaa.dtb t1023rdb-usdpaa-shared-interfaces.dtb" +KERNEL_DEFCONFIG ?= "${S}/arch/powerpc/configs/corenet32_fmanv3l_smp_defconfig" + +JFFS2_ERASEBLOCK = "0x10000" + -- 1.9.1 -- _______________________________________________ meta-freescale mailing list [email protected] https://lists.yoctoproject.org/listinfo/meta-freescale
