mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-13 00:56:21 +07:00
c4ffccddd5
This patch adds the Kconfig and Makefile for the new S5P6440 machine and platform directories. It also updates arch/arm Kconfig and Makefiles to include the support for the new S5P6440 CPU. Signed-off-by: Kukjin Kim <kgene.kim@samsung.com> Signed-off-by: Ben Dooks <ben-linux@fluff.org>
39 lines
706 B
Plaintext
39 lines
706 B
Plaintext
# arch/arm/plat-s5p/Kconfig
|
|
#
|
|
# Copyright (c) 2009 Samsung Electronics Co., Ltd.
|
|
# http://www.samsung.com/
|
|
#
|
|
# Licensed under GPLv2
|
|
|
|
config PLAT_S5P
|
|
bool
|
|
depends on ARCH_S5P6440
|
|
default y
|
|
select PLAT_S3C
|
|
select ARM_VIC
|
|
select NO_IOPORT
|
|
select ARCH_REQUIRE_GPIOLIB
|
|
select S3C_GPIO_TRACK
|
|
select PLAT_SAMSUNG
|
|
select SAMSUNG_CLKSRC
|
|
select SAMSUNG_IRQ_VIC_TIMER
|
|
select SAMSUNG_IRQ_UART
|
|
help
|
|
Base platform code for Samsung's S5P series SoC.
|
|
|
|
if (PLAT_S5P && ARCH_S5P6440)
|
|
|
|
# Configuration options shared by all S5P64XX implementations
|
|
|
|
config CPU_S5P6440_INIT
|
|
bool
|
|
help
|
|
Initialisation code for the S5P6440.
|
|
|
|
config CPU_S5P6440_CLOCK
|
|
bool
|
|
help
|
|
Clock support code for the S5P6440.
|
|
|
|
endif
|