blob: 9e7daf29b86a49198dbe8a88b15fd1f5217effbe [file] [log] [blame]
Ben Dookscf383672009-11-10 00:14:58 +00001# arch/arm/plat-samsung/Kconfig
2#
3# Copyright 2009 Simtec Electronics
4#
5# Licensed under GPLv2
6
7config PLAT_SAMSUNG
8 bool
9 depends on ARCH_S3C2410 || ARCH_S3C24A0 || ARCH_S3C64XX || ARCH_S5PC1XX
10 default y
11 help
12 Base platform code for all Samsung SoC based systems
13
14if PLAT_SAMSUNG
15
Harald Welteaa9ad6a2009-12-01 01:24:34 +000016config SAMSUNG_CLKSRC
17 bool
18 help
19 Select the clock code for the clksrc implementation
20 used by newer systems such as the S3C64XX.
Ben Dookscf383672009-11-10 00:14:58 +000021
Ben Dooks4f830db2010-01-06 02:28:20 +090022# options for gpio configuration support
23
24config S3C_GPIO_CFG_S3C24XX
25 bool
26 help
27 Internal configuration to enable S3C24XX style GPIO configuration
28 functions.
29
30config S3C_GPIO_CFG_S3C64XX
31 bool
32 help
33 Internal configuration to enable S3C64XX style GPIO configuration
34 functions.
35
36config S5P_GPIO_CFG_S5PC1XX
37 bool
38 help
39 Internal configuration to enable S5PC1XX style GPIO configuration
40 functions.
41
42config S3C_GPIO_PULL_UPDOWN
43 bool
44 help
45 Internal configuration to enable the correct GPIO pull helper
46
47config S3C_GPIO_PULL_DOWN
48 bool
49 help
50 Internal configuration to enable the correct GPIO pull helper
51
52config S3C_GPIO_PULL_UP
53 bool
54 help
55 Internal configuration to enable the correct GPIO pull helper
56
Ben Dooksb6a60412010-01-06 02:45:09 +090057# device definitions to compile in
58
59config S3C_DEV_HSMMC
60 bool
61 help
62 Compile in platform device definitions for HSMMC code
63
64config S3C_DEV_HSMMC1
65 bool
66 help
67 Compile in platform device definitions for HSMMC channel 1
68
69config S3C_DEV_HSMMC2
70 bool
71 help
72 Compile in platform device definitions for HSMMC channel 2
73
74config S3C_DEV_I2C1
75 bool
76 help
77 Compile in platform device definitions for I2C channel 1
78
79config S3C_DEV_FB
80 bool
81 help
82 Compile in platform device definition for framebuffer
83
84config S3C_DEV_USB_HOST
85 bool
86 help
87 Compile in platform device definition for USB host.
88
89config S3C_DEV_USB_HSOTG
90 bool
91 help
92 Compile in platform device definition for USB high-speed OtG
93
94config S3C_DEV_NAND
95 bool
96 help
97 Compile in platform device definition for NAND controller
98
Ben Dookscf383672009-11-10 00:14:58 +000099endif