samsung: Enable device tree for smdkc100
Change this board to add a device tree. Signed-off-by: Simon Glass <sjg@chromium.org> Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
This commit is contained in:
parent
311757be27
commit
93327f6976
|
@ -432,9 +432,6 @@ config RMOBILE
|
|||
config TARGET_CM_FX6
|
||||
bool "Support cm_fx6"
|
||||
|
||||
config TARGET_SMDKC100
|
||||
bool "Support smdkc100"
|
||||
|
||||
config TARGET_SOCFPGA_CYCLONE5
|
||||
bool "Support socfpga_cyclone5"
|
||||
|
||||
|
@ -660,7 +657,6 @@ source "board/ronetix/pm9261/Kconfig"
|
|||
source "board/ronetix/pm9263/Kconfig"
|
||||
source "board/ronetix/pm9g45/Kconfig"
|
||||
source "board/samsung/smdk2410/Kconfig"
|
||||
source "board/samsung/smdkc100/Kconfig"
|
||||
source "board/sandisk/sansa_fuze_plus/Kconfig"
|
||||
source "board/scb9328/Kconfig"
|
||||
source "board/schulercontrol/sc_sps_1/Kconfig"
|
||||
|
|
|
@ -7,6 +7,10 @@ config TARGET_S5P_GONI
|
|||
bool "S5P Goni board"
|
||||
select OF_CONTROL if !SPL_BUILD
|
||||
|
||||
config TARGET_SMDKC100
|
||||
bool "Support smdkc100 board"
|
||||
select OF_CONTROL if !SPL_BUILD
|
||||
|
||||
endchoice
|
||||
|
||||
config SYS_CPU
|
||||
|
@ -16,5 +20,6 @@ config SYS_SOC
|
|||
default "s5pc1xx"
|
||||
|
||||
source "board/samsung/goni/Kconfig"
|
||||
source "board/samsung/smdkc100/Kconfig"
|
||||
|
||||
endif
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
dtb-$(CONFIG_S5PC100) += s5pc1xx-smdkc100.dtb
|
||||
dtb-$(CONFIG_S5PC110) += s5pc1xx-goni.dtb
|
||||
dtb-$(CONFIG_EXYNOS4) += exynos4210-origen.dtb \
|
||||
exynos4210-smdkv310.dtb \
|
||||
|
|
|
@ -0,0 +1,29 @@
|
|||
/*
|
||||
* Samsung's Exynos4210-based SMDKV310 board device tree source
|
||||
*
|
||||
* Copyright (c) 2014 Google, Inc
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-2.0+
|
||||
*/
|
||||
|
||||
/dts-v1/;
|
||||
|
||||
#include "skeleton.dtsi"
|
||||
|
||||
/ {
|
||||
model = "Samsung SMDKC100 based on S5PC100";
|
||||
compatible = "samsung,smdkc100", "samsung,s5pc100";
|
||||
|
||||
aliases {
|
||||
serial0 = "/serial@ec000000";
|
||||
console = "/serial@ec000000";
|
||||
};
|
||||
|
||||
serial@ec000000 {
|
||||
compatible = "samsung,exynos4210-uart";
|
||||
reg = <0xec000000 0x100>;
|
||||
interrupts = <0 51 0>;
|
||||
id = <0>;
|
||||
};
|
||||
|
||||
};
|
|
@ -1,2 +1,4 @@
|
|||
CONFIG_ARM=y
|
||||
CONFIG_TARGET_SMDKC100=y
|
||||
CONFIG_ARCH_S5PC1XX=y
|
||||
CONFIG_DEFAULT_DEVICE_TREE="s5pc1xx-smdkc100"
|
||||
|
|
|
@ -217,4 +217,6 @@
|
|||
#define CONFIG_ENV_SROM_BANK 3 /* Select SROM Bank-3 for Ethernet*/
|
||||
#endif /* CONFIG_CMD_NET */
|
||||
|
||||
#define CONFIG_OF_LIBFDT
|
||||
|
||||
#endif /* __CONFIG_H */
|
||||
|
|
Loading…
Reference in New Issue