[U-Boot] [PATCH 2/2 v2] board: freescale: ls1012afrwy: Add LS1012A-FRWY board support.

Add board support for LS1012A-FRWY board, sharing many common functionalities with LS1012A-FRDM.
Signed-off-by: Pramod Kumar pramod.kumar_1@nxp.com --- Depends on: http://patchwork.ozlabs.org/patch/918935/ http://patchwork.ozlabs.org/patch/918933/ http://patchwork.ozlabs.org/patch/918932/
Changes for v2: - Rebased patch to above dependency patches
board/freescale/ls1012afrwy/Kconfig | 31 ++++++++++++++++++++++ board/freescale/ls1012afrwy/MAINTAINERS | 10 +++++++ .../{ls1012afrdm => ls1012afrwy}/Makefile | 0 .../freescale/{ls1012afrdm => ls1012afrwy}/README | 2 +- 4 files changed, 42 insertions(+), 1 deletion(-) create mode 100644 board/freescale/ls1012afrwy/Kconfig create mode 100644 board/freescale/ls1012afrwy/MAINTAINERS copy board/freescale/{ls1012afrdm => ls1012afrwy}/Makefile (100%) copy board/freescale/{ls1012afrdm => ls1012afrwy}/README (96%)
diff --git a/board/freescale/ls1012afrwy/Kconfig b/board/freescale/ls1012afrwy/Kconfig new file mode 100644 index 0000000..ccad7f0 --- /dev/null +++ b/board/freescale/ls1012afrwy/Kconfig @@ -0,0 +1,31 @@ +if TARGET_LS1012AFRWY + +config SYS_BOARD + default "ls1012afrwy" + +config SYS_VENDOR + default "freescale" + +config SYS_SOC + default "fsl-layerscape" + +config SYS_CONFIG_NAME + default "ls1012afrwy" + +config SYS_LS_PFE_FW_ADDR + hex "Flash address of PFE firmware" + default 0x40020000 + +config SYS_LS_PPA_FW_ADDR + hex "PPA Firmware Addr" + default 0x40060000 + +config SYS_LS_PPA_ESBC_ADDR + hex "PPA Firmware HDR Addr" + default 0x401f4000 + +config SYS_LS_PFE_ESBC_ADDR + hex "PFE Firmware HDR Addr" + default 0x401f8000 + +endif diff --git a/board/freescale/ls1012afrwy/MAINTAINERS b/board/freescale/ls1012afrwy/MAINTAINERS new file mode 100644 index 0000000..1638ef8 --- /dev/null +++ b/board/freescale/ls1012afrwy/MAINTAINERS @@ -0,0 +1,10 @@ +LS1012AFRWY BOARD +M: Bhaskar Upadhaya bhaskar.upadhaya@nxp.com +S: Maintained +F: board/freescale/ls1012afrwy/ +F: include/configs/ls1012afrwy.h +F: configs/ls1012afrwy_qspi_defconfig + +M: Vinitha V Pillai vinitha.pillai@nxp.com +S: Maintained +F: configs/ls1012afrwy_qspi_SECURE_BOOT_defconfig diff --git a/board/freescale/ls1012afrdm/Makefile b/board/freescale/ls1012afrwy/Makefile similarity index 100% copy from board/freescale/ls1012afrdm/Makefile copy to board/freescale/ls1012afrwy/Makefile diff --git a/board/freescale/ls1012afrdm/README b/board/freescale/ls1012afrwy/README similarity index 96% copy from board/freescale/ls1012afrdm/README copy to board/freescale/ls1012afrwy/README index 181c461..d95961e 100644 --- a/board/freescale/ls1012afrdm/README +++ b/board/freescale/ls1012afrwy/README @@ -1,6 +1,6 @@ Overview -------- -QorIQ LS1012A FREEDOM (LS1012AFRDM) is a high-performance development +QorIQ LS1012A FREEWAY (LS1012AFRWY) is a high-performance development platform, with a complete debugging environment. The LS1012AFRDM board supports the QorIQ LS1012A processor and is optimized to support the high-bandwidth DDR3L memory and a full complement of high-speed SerDes ports.
participants (1)
-
Pramod Kumar