diff options
author | Siew Chin Lim | 2021-08-10 11:26:39 +0800 |
---|---|---|
committer | Tien Fong Chee | 2021-08-25 14:50:50 +0800 |
commit | d1b2e4bd2949e8fda96b3b5e9b90375e084815f1 (patch) | |
tree | 4decca732c0290cefc4cb233f7856d9fde6955ba /board | |
parent | 00a990e9a9622772e05efcf4688e2b9c162f10a3 (diff) |
board: intel: Add socdk board support for Intel N5X device
Add N5X SoC devkit board.
Signed-off-by: Siew Chin Lim <elly.siew.chin.lim@intel.com>
Diffstat (limited to 'board')
-rw-r--r-- | board/intel/n5x-socdk/MAINTAINERS | 7 | ||||
-rw-r--r-- | board/intel/n5x-socdk/Makefile | 7 | ||||
-rw-r--r-- | board/intel/n5x-socdk/socfpga.c | 7 |
3 files changed, 21 insertions, 0 deletions
diff --git a/board/intel/n5x-socdk/MAINTAINERS b/board/intel/n5x-socdk/MAINTAINERS new file mode 100644 index 00000000000..c1059f092cc --- /dev/null +++ b/board/intel/n5x-socdk/MAINTAINERS @@ -0,0 +1,7 @@ +SOCFPGA BOARD +M: Chee Tien Fong <tien.fong.chee@intel.com> +M: Lim Siew Chin <elly.siew.chin.lim@intel.com> +S: Maintained +F: board/intel/n5x-socdk/ +F: include/configs/socfpga_n5x_socdk.h +F: configs/socfpga_n5x_atf_defconfig diff --git a/board/intel/n5x-socdk/Makefile b/board/intel/n5x-socdk/Makefile new file mode 100644 index 00000000000..accfdcddcb4 --- /dev/null +++ b/board/intel/n5x-socdk/Makefile @@ -0,0 +1,7 @@ +# +# Copyright (C) 2020-2021 Intel Corporation <www.intel.com> +# +# SPDX-License-Identifier: GPL-2.0 +# + +obj-y := socfpga.o diff --git a/board/intel/n5x-socdk/socfpga.c b/board/intel/n5x-socdk/socfpga.c new file mode 100644 index 00000000000..985ba190d03 --- /dev/null +++ b/board/intel/n5x-socdk/socfpga.c @@ -0,0 +1,7 @@ +// SPDX-License-Identifier: GPL-2.0 +/* + * Copyright (C) 2020-2021 Intel Corporation <www.intel.com> + * + */ + +#include <common.h> |