diff options
author | Simon Glass <sjg@chromium.org> | 2014-10-07 22:01:50 -0600 |
---|---|---|
committer | Minkyu Kang <mk7.kang@samsung.com> | 2014-10-08 17:25:47 +0900 |
commit | 311757be275c1d592ff357e9faedca4c967a3064 (patch) | |
tree | 45366e5bf7c5dc072d2b0c3e071229b1b3186ac2 /arch/arm/cpu/armv7 | |
parent | 1d5511000367e94d5edce7d9c3720bd9097912a7 (diff) | |
download | u-boot-imx-311757be275c1d592ff357e9faedca4c967a3064.zip u-boot-imx-311757be275c1d592ff357e9faedca4c967a3064.tar.gz u-boot-imx-311757be275c1d592ff357e9faedca4c967a3064.tar.bz2 |
samsung: Enable device tree for s5p_goni
Change this board to add a device tree.
This also adds a pinmux header file although it is not used as yet.
Signed-off-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
Diffstat (limited to 'arch/arm/cpu/armv7')
-rw-r--r-- | arch/arm/cpu/armv7/s5pc1xx/Kconfig | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/arch/arm/cpu/armv7/s5pc1xx/Kconfig b/arch/arm/cpu/armv7/s5pc1xx/Kconfig new file mode 100644 index 0000000..1a8941d --- /dev/null +++ b/arch/arm/cpu/armv7/s5pc1xx/Kconfig @@ -0,0 +1,20 @@ +if ARCH_S5PC1XX + +choice + prompt "S5PC1XX board select" + +config TARGET_S5P_GONI + bool "S5P Goni board" + select OF_CONTROL if !SPL_BUILD + +endchoice + +config SYS_CPU + default "armv7" + +config SYS_SOC + default "s5pc1xx" + +source "board/samsung/goni/Kconfig" + +endif |