diff options
| author | Tom Rini <[email protected]> | 2024-02-20 08:02:49 -0500 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-02-20 08:02:49 -0500 |
| commit | bebf916f9eb13aaf5bbf83fbd33204df5c6c9f8e (patch) | |
| tree | ce68a4801a1f9c82516aec08e641c3d29cb45c2e /board | |
| parent | 3e6f2a94bfc25f1782ce2d45db27f47ec781feb1 (diff) | |
| parent | 1e81d12e34e874319e041652198a4ba561d751ab (diff) | |
Merge https://gitlab.denx.de/u-boot/custodians/u-boot-samsung
Diffstat (limited to 'board')
| -rw-r--r-- | board/samsung/e850-96/Kconfig | 16 | ||||
| -rw-r--r-- | board/samsung/e850-96/MAINTAINERS | 9 | ||||
| -rw-r--r-- | board/samsung/e850-96/Makefile | 6 | ||||
| -rw-r--r-- | board/samsung/e850-96/e850-96.c | 22 |
4 files changed, 53 insertions, 0 deletions
diff --git a/board/samsung/e850-96/Kconfig b/board/samsung/e850-96/Kconfig new file mode 100644 index 00000000000..f891a906959 --- /dev/null +++ b/board/samsung/e850-96/Kconfig @@ -0,0 +1,16 @@ +if TARGET_E850_96 + +config EXYNOS850 + bool "Exynos850 SoC support" + default y + +config SYS_BOARD + default "e850-96" + +config SYS_VENDOR + default "samsung" + +config SYS_CONFIG_NAME + default "e850-96" + +endif diff --git a/board/samsung/e850-96/MAINTAINERS b/board/samsung/e850-96/MAINTAINERS new file mode 100644 index 00000000000..e8b9365eea8 --- /dev/null +++ b/board/samsung/e850-96/MAINTAINERS @@ -0,0 +1,9 @@ +WINLINK E850-96 BOARD +M: Sam Protsenko <[email protected]> +S: Maintained +F: arch/arm/dts/exynos850-e850-96-u-boot.dtsi +F: arch/arm/dts/exynos850-e850-96.dts +F: board/samsung/e850-96/ +F: configs/e850-96_defconfig +F: doc/board/samsung/e850-96.rst +F: include/configs/e850-96.h diff --git a/board/samsung/e850-96/Makefile b/board/samsung/e850-96/Makefile new file mode 100644 index 00000000000..301c2233711 --- /dev/null +++ b/board/samsung/e850-96/Makefile @@ -0,0 +1,6 @@ +# SPDX-License-Identifier: GPL-2.0+ +# +# Copyright (C) 2020, Linaro Limited +# Sam Protsenko <[email protected]> + +obj-y := e850-96.o diff --git a/board/samsung/e850-96/e850-96.c b/board/samsung/e850-96/e850-96.c new file mode 100644 index 00000000000..a00d81b5d4c --- /dev/null +++ b/board/samsung/e850-96/e850-96.c @@ -0,0 +1,22 @@ +// SPDX-License-Identifier: GPL-2.0+ +/* + * Copyright (C) 2020, Linaro Limited + * Sam Protsenko <[email protected]> + */ + +#include <init.h> + +int dram_init(void) +{ + return fdtdec_setup_mem_size_base(); +} + +int dram_init_banksize(void) +{ + return fdtdec_setup_memory_banksize(); +} + +int board_init(void) +{ + return 0; +} |
