On 02/15/2017 07:08 AM, Ashish Kumar wrote: > LS1088A is an ARMv8 implementation. The LS1088ARDB is an evaluatoin > platform that supports the LS1088A family SoCs. This patch add basic > support of the platform. > > Signed-off-by: Alison Wang <[email protected]> > Signed-off-by: Prabhakar Kushwaha <[email protected]> > Signed-off-by: Ashish Kumar <[email protected]> > Signed-off-by: Raghav Dogra <[email protected]> > Signed-off-by: Shaohui Xie <[email protected]> > --- > arch/arm/Kconfig | 12 + > arch/arm/cpu/armv8/Kconfig | 1 + > arch/arm/cpu/armv8/fsl-layerscape/Kconfig | 31 +- > arch/arm/cpu/armv8/fsl-layerscape/cpu.c | 1 + > arch/arm/cpu/armv8/fsl-layerscape/lowlevel.S | 6 +- > arch/arm/cpu/armv8/fsl-layerscape/soc.c | 4 + > arch/arm/dts/Makefile | 3 +- > arch/arm/dts/fsl-ls1088a-rdb.dts | 40 +++ > arch/arm/dts/fsl-ls1088a.dtsi | 78 +++++ > arch/arm/include/asm/arch-fsl-layerscape/config.h | 68 ++++- > .../include/asm/arch-fsl-layerscape/fsl_serdes.h | 2 +- > .../asm/arch-fsl-layerscape/ls1088a_stream_id.h | 57 ++++ > board/freescale/ls1088a/Kconfig | 15 + > board/freescale/ls1088a/MAINTAINERS | 9 + > board/freescale/ls1088a/Makefile | 9 + > board/freescale/ls1088a/ddr.c | 243 +++++++++++++++ > board/freescale/ls1088a/ddr.h | 46 +++ > board/freescale/ls1088a/eth_ls1088ardb.c | 102 +++++++ > board/freescale/ls1088a/ls1088a.c | 334 > +++++++++++++++++++++ > board/freescale/ls1088a/ls1088a_qixis.h | 34 +++ > configs/ls1088ardb_defconfig | 25 ++ > configs/ls1088ardb_qspi_defconfig | 33 ++ > drivers/ddr/fsl/util.c | 2 +- > include/configs/ls1088a_common.h | 199 ++++++++++++ > include/configs/ls1088ardb.h | 327 ++++++++++++++++++++ > 25 files changed, 1673 insertions(+), 8 deletions(-) > create mode 100644 arch/arm/dts/fsl-ls1088a-rdb.dts > create mode 100644 arch/arm/dts/fsl-ls1088a.dtsi > create mode 100644 > arch/arm/include/asm/arch-fsl-layerscape/ls1088a_stream_id.h > create mode 100644 board/freescale/ls1088a/Kconfig > create mode 100644 board/freescale/ls1088a/MAINTAINERS > create mode 100644 board/freescale/ls1088a/Makefile > create mode 100644 board/freescale/ls1088a/ddr.c > create mode 100644 board/freescale/ls1088a/ddr.h > create mode 100644 board/freescale/ls1088a/eth_ls1088ardb.c > create mode 100644 board/freescale/ls1088a/ls1088a.c > create mode 100644 board/freescale/ls1088a/ls1088a_qixis.h > create mode 100644 configs/ls1088ardb_defconfig > create mode 100644 configs/ls1088ardb_qspi_defconfig > create mode 100644 include/configs/ls1088a_common.h > create mode 100644 include/configs/ls1088ardb.h >
You are mixing board patch and SoC patch. Please separate the SoC patch and squash with your patch #1. York _______________________________________________ U-Boot mailing list [email protected] https://lists.denx.de/listinfo/u-boot

