blob: 7e08b4064414334219f678a6fbfd40b69d9244af (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# 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
|