diff options
Diffstat (limited to 'board')
-rw-r--r-- | board/st/stih410-b2260/Kconfig | 19 | ||||
-rw-r--r-- | board/st/stih410-b2260/MAINTAINERS | 7 | ||||
-rw-r--r-- | board/st/stih410-b2260/Makefile | 8 | ||||
-rw-r--r-- | board/st/stih410-b2260/board.c | 28 |
4 files changed, 62 insertions, 0 deletions
diff --git a/board/st/stih410-b2260/Kconfig b/board/st/stih410-b2260/Kconfig new file mode 100644 index 0000000000..590add05fe --- /dev/null +++ b/board/st/stih410-b2260/Kconfig @@ -0,0 +1,19 @@ +if TARGET_STIH410_B2260 + +config SYS_BOARD + string + default "stih410-b2260" + +config SYS_VENDOR + string + default "st" + +config SYS_SOC + string + default "stih410" + +config SYS_CONFIG_NAME + string + default "stih410-b2260" + +endif diff --git a/board/st/stih410-b2260/MAINTAINERS b/board/st/stih410-b2260/MAINTAINERS new file mode 100644 index 0000000000..4f557ac7d9 --- /dev/null +++ b/board/st/stih410-b2260/MAINTAINERS @@ -0,0 +1,7 @@ +STIH410-B2260 BOARD +M: Patrice Chotard <patrice.chotard@st.com> +S: Maintained +F: board/st/stih410-b2260/ +F: include/configs/stih410-b2260.h +F: configs/stih410-b2260_defconfig +F: arch/arm/dts/stih* diff --git a/board/st/stih410-b2260/Makefile b/board/st/stih410-b2260/Makefile new file mode 100644 index 0000000000..68a7903712 --- /dev/null +++ b/board/st/stih410-b2260/Makefile @@ -0,0 +1,8 @@ +# +# (C) Copyright 2017 +# Patrice Chotard, <patrice.chotard@st.com> +# +# SPDX-License-Identifier: GPL-2.0+ +# + +obj-y = board.o diff --git a/board/st/stih410-b2260/board.c b/board/st/stih410-b2260/board.c new file mode 100644 index 0000000000..0c06bcaa61 --- /dev/null +++ b/board/st/stih410-b2260/board.c @@ -0,0 +1,28 @@ +/* + * Board init file for STiH410-B2260 + * + * (C) Copyright 2017 Patrice Chotard <patrice.chotard@st.com> + * + * SPDX-License-Identifier: GPL-2.0+ + */ + +#include <common.h> + +DECLARE_GLOBAL_DATA_PTR; + +int dram_init(void) +{ + gd->ram_size = PHYS_SDRAM_1_SIZE; + return 0; +} + +void dram_init_banksize(void) +{ + gd->bd->bi_dram[0].start = PHYS_SDRAM_1; + gd->bd->bi_dram[0].size = PHYS_SDRAM_1_SIZE; +} + +int board_init(void) +{ + return 0; +} |