diff options
author | Ley Foon Tan <ley.foon.tan@intel.com> | 2017-04-25 18:44:47 (GMT) |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2017-05-18 09:33:19 (GMT) |
commit | 9b21de78116ccb4c47dc82daae9598e19060f669 (patch) | |
tree | 00a1b2d49d7d0a78eb67029fa71d29fedee29f67 /board/altera/arria10-socdk | |
parent | 1b2594030d765ae2c7b5949eee2f6e3f20642241 (diff) | |
download | u-boot-fsl-qoriq-9b21de78116ccb4c47dc82daae9598e19060f669.tar.xz |
arm: socfpga: Add board files for the Arria10
Add support for the Arria10 SoCDK.
Signed-off-by: Tien Fong Chee <tien.fong.chee@intel.com>
Signed-off-by: Ley Foon Tan <ley.foon.tan@intel.com>
Diffstat (limited to 'board/altera/arria10-socdk')
-rw-r--r-- | board/altera/arria10-socdk/Kconfig | 18 | ||||
-rw-r--r-- | board/altera/arria10-socdk/Makefile | 7 | ||||
-rw-r--r-- | board/altera/arria10-socdk/socfpga.c | 7 |
3 files changed, 32 insertions, 0 deletions
diff --git a/board/altera/arria10-socdk/Kconfig b/board/altera/arria10-socdk/Kconfig new file mode 100644 index 0000000..b80cc6d --- /dev/null +++ b/board/altera/arria10-socdk/Kconfig @@ -0,0 +1,18 @@ +if TARGET_SOCFPGA_ARRIA10 + +config SYS_CPU + default "armv7" + +config SYS_BOARD + default "socfpga_arria10" + +config SYS_VENDOR + default "altera" + +config SYS_SOC + default "socfpga_arria10" + +config SYS_CONFIG_NAME + default "socfpga_arria10" + +endif diff --git a/board/altera/arria10-socdk/Makefile b/board/altera/arria10-socdk/Makefile new file mode 100644 index 0000000..1d885ce --- /dev/null +++ b/board/altera/arria10-socdk/Makefile @@ -0,0 +1,7 @@ +# +# Copyright (C) 2015 Altera Corporation <www.altera.com> +# +# SPDX-License-Identifier: GPL-2.0 +# + +obj-y := socfpga.o diff --git a/board/altera/arria10-socdk/socfpga.c b/board/altera/arria10-socdk/socfpga.c new file mode 100644 index 0000000..8516633 --- /dev/null +++ b/board/altera/arria10-socdk/socfpga.c @@ -0,0 +1,7 @@ +/* + * Copyright (C) 2015 Altera Corporation <www.altera.com> + * + * SPDX-License-Identifier: GPL-2.0 + */ + +#include <common.h> |