2011-11-06 05:54:56 +01:00
|
|
|
# arch/arm/mach-exynos/Kconfig
|
2010-07-16 05:15:38 +02:00
|
|
|
#
|
2011-02-14 07:05:27 +01:00
|
|
|
# Copyright (c) 2010-2011 Samsung Electronics Co., Ltd.
|
2010-07-16 05:15:38 +02:00
|
|
|
# http://www.samsung.com/
|
|
|
|
#
|
|
|
|
# Licensed under GPLv2
|
|
|
|
|
2011-02-14 07:05:27 +01:00
|
|
|
# Configuration options for the EXYNOS4
|
2010-07-16 05:15:38 +02:00
|
|
|
|
2011-11-06 05:54:56 +01:00
|
|
|
if ARCH_EXYNOS
|
|
|
|
|
|
|
|
menu "SAMSUNG EXYNOS SoCs Support"
|
|
|
|
|
|
|
|
config ARCH_EXYNOS4
|
|
|
|
bool "SAMSUNG EXYNOS4"
|
2012-03-13 15:44:39 +01:00
|
|
|
default y
|
2013-10-08 00:02:12 +02:00
|
|
|
select ARM_AMBA
|
|
|
|
select CLKSRC_OF
|
|
|
|
select CLKSRC_SAMSUNG_PWM if CPU_EXYNOS4210
|
|
|
|
select CPU_EXYNOS4210
|
2013-06-18 18:26:42 +02:00
|
|
|
select GIC_NON_BANKED
|
2013-10-08 00:02:12 +02:00
|
|
|
select KEYBOARD_SAMSUNG if INPUT_KEYBOARD
|
2013-02-28 00:28:14 +01:00
|
|
|
select HAVE_ARM_SCU if SMP
|
2011-12-07 16:38:04 +01:00
|
|
|
select HAVE_SMP
|
2011-11-29 16:56:19 +01:00
|
|
|
select MIGHT_HAVE_CACHE_L2X0
|
2013-06-10 11:26:53 +02:00
|
|
|
select PINCTRL
|
2014-03-17 23:28:10 +01:00
|
|
|
select PM_GENERIC_DOMAINS if PM_RUNTIME
|
2013-10-08 00:02:12 +02:00
|
|
|
select S5P_DEV_MFC
|
2011-11-06 05:54:56 +01:00
|
|
|
help
|
|
|
|
Samsung EXYNOS4 SoCs based systems
|
|
|
|
|
2012-03-13 15:44:39 +01:00
|
|
|
config ARCH_EXYNOS5
|
|
|
|
bool "SAMSUNG EXYNOS5"
|
2013-10-08 00:02:12 +02:00
|
|
|
select ARM_AMBA
|
|
|
|
select CLKSRC_OF
|
2013-02-28 00:28:14 +01:00
|
|
|
select HAVE_ARM_SCU if SMP
|
2012-03-13 15:44:39 +01:00
|
|
|
select HAVE_SMP
|
2013-06-10 11:26:53 +02:00
|
|
|
select PINCTRL
|
2012-03-13 15:44:39 +01:00
|
|
|
help
|
|
|
|
Samsung EXYNOS5 (Cortex-A15) SoC based systems
|
2011-11-06 05:54:56 +01:00
|
|
|
|
|
|
|
comment "EXYNOS SoCs"
|
2010-07-16 05:15:38 +02:00
|
|
|
|
2011-02-14 07:05:27 +01:00
|
|
|
config CPU_EXYNOS4210
|
2011-11-06 05:54:56 +01:00
|
|
|
bool "SAMSUNG EXYNOS4210"
|
|
|
|
default y
|
|
|
|
depends on ARCH_EXYNOS4
|
2013-07-24 07:30:29 +02:00
|
|
|
select ARCH_HAS_BANDGAP
|
2014-03-17 23:28:10 +01:00
|
|
|
select ARM_CPU_SUSPEND if PM_SLEEP
|
2013-06-10 11:26:53 +02:00
|
|
|
select PINCTRL_EXYNOS
|
ARM: config: sort select statements alphanumerically
As suggested by Andrew Morton:
This is a pet peeve of mine. Any time there's a long list of items
(header file inclusions, kconfig entries, array initalisers, etc) and
someone wants to add a new item, they *always* go and stick it at the
end of the list.
Guys, don't do this. Either put the new item into a randomly-chosen
position or, probably better, alphanumerically sort the list.
lets sort all our select statements alphanumerically. This commit was
created by the following perl:
while (<>) {
while (/\\\s*$/) {
$_ .= <>;
}
undef %selects if /^\s*config\s+/;
if (/^\s+select\s+(\w+).*/) {
if (defined($selects{$1})) {
if ($selects{$1} eq $_) {
print STDERR "Warning: removing duplicated $1 entry\n";
} else {
print STDERR "Error: $1 differently selected\n".
"\tOld: $selects{$1}\n".
"\tNew: $_\n";
exit 1;
}
}
$selects{$1} = $_;
next;
}
if (%selects and (/^\s*$/ or /^\s+help/ or /^\s+---help---/ or
/^endif/ or /^endchoice/)) {
foreach $k (sort (keys %selects)) {
print "$selects{$k}";
}
undef %selects;
}
print;
}
if (%selects) {
foreach $k (sort (keys %selects)) {
print "$selects{$k}";
}
}
It found two duplicates:
Warning: removing duplicated S5P_SETUP_MIPIPHY entry
Warning: removing duplicated HARDIRQS_SW_RESEND entry
and they are identical duplicates, hence the shrinkage in the diffstat
of two lines.
We have four testers reporting success of this change (Tony, Stephen,
Linus and Sekhar.)
Acked-by: Jason Cooper <jason@lakedaemon.net>
Acked-by: Tony Lindgren <tony@atomide.com>
Acked-by: Stephen Warren <swarren@nvidia.com>
Acked-by: Linus Walleij <linus.walleij@linaro.org>
Acked-by: Sekhar Nori <nsekhar@ti.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
2012-10-06 18:12:25 +02:00
|
|
|
select SAMSUNG_DMADEV
|
2010-07-16 05:15:38 +02:00
|
|
|
help
|
2011-02-14 07:05:27 +01:00
|
|
|
Enable EXYNOS4210 CPU support
|
2010-07-16 05:15:38 +02:00
|
|
|
|
2011-08-24 10:25:09 +02:00
|
|
|
config SOC_EXYNOS4212
|
2011-11-06 05:54:56 +01:00
|
|
|
bool "SAMSUNG EXYNOS4212"
|
|
|
|
default y
|
|
|
|
depends on ARCH_EXYNOS4
|
2013-07-24 07:30:29 +02:00
|
|
|
select ARCH_HAS_BANDGAP
|
2013-06-10 11:26:53 +02:00
|
|
|
select PINCTRL_EXYNOS
|
ARM: config: sort select statements alphanumerically
As suggested by Andrew Morton:
This is a pet peeve of mine. Any time there's a long list of items
(header file inclusions, kconfig entries, array initalisers, etc) and
someone wants to add a new item, they *always* go and stick it at the
end of the list.
Guys, don't do this. Either put the new item into a randomly-chosen
position or, probably better, alphanumerically sort the list.
lets sort all our select statements alphanumerically. This commit was
created by the following perl:
while (<>) {
while (/\\\s*$/) {
$_ .= <>;
}
undef %selects if /^\s*config\s+/;
if (/^\s+select\s+(\w+).*/) {
if (defined($selects{$1})) {
if ($selects{$1} eq $_) {
print STDERR "Warning: removing duplicated $1 entry\n";
} else {
print STDERR "Error: $1 differently selected\n".
"\tOld: $selects{$1}\n".
"\tNew: $_\n";
exit 1;
}
}
$selects{$1} = $_;
next;
}
if (%selects and (/^\s*$/ or /^\s+help/ or /^\s+---help---/ or
/^endif/ or /^endchoice/)) {
foreach $k (sort (keys %selects)) {
print "$selects{$k}";
}
undef %selects;
}
print;
}
if (%selects) {
foreach $k (sort (keys %selects)) {
print "$selects{$k}";
}
}
It found two duplicates:
Warning: removing duplicated S5P_SETUP_MIPIPHY entry
Warning: removing duplicated HARDIRQS_SW_RESEND entry
and they are identical duplicates, hence the shrinkage in the diffstat
of two lines.
We have four testers reporting success of this change (Tony, Stephen,
Linus and Sekhar.)
Acked-by: Jason Cooper <jason@lakedaemon.net>
Acked-by: Tony Lindgren <tony@atomide.com>
Acked-by: Stephen Warren <swarren@nvidia.com>
Acked-by: Linus Walleij <linus.walleij@linaro.org>
Acked-by: Sekhar Nori <nsekhar@ti.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
2012-10-06 18:12:25 +02:00
|
|
|
select SAMSUNG_DMADEV
|
2011-08-24 10:25:09 +02:00
|
|
|
help
|
|
|
|
Enable EXYNOS4212 SoC support
|
|
|
|
|
2011-10-04 10:08:56 +02:00
|
|
|
config SOC_EXYNOS4412
|
2011-11-06 05:54:56 +01:00
|
|
|
bool "SAMSUNG EXYNOS4412"
|
|
|
|
default y
|
|
|
|
depends on ARCH_EXYNOS4
|
2013-07-24 07:30:29 +02:00
|
|
|
select ARCH_HAS_BANDGAP
|
2013-06-10 11:26:53 +02:00
|
|
|
select PINCTRL_EXYNOS
|
2012-02-15 05:16:15 +01:00
|
|
|
select SAMSUNG_DMADEV
|
2011-10-04 10:08:56 +02:00
|
|
|
help
|
|
|
|
Enable EXYNOS4412 SoC support
|
|
|
|
|
2012-03-13 15:44:39 +01:00
|
|
|
config SOC_EXYNOS5250
|
|
|
|
bool "SAMSUNG EXYNOS5250"
|
|
|
|
default y
|
|
|
|
depends on ARCH_EXYNOS5
|
2013-07-24 07:30:29 +02:00
|
|
|
select ARCH_HAS_BANDGAP
|
2013-06-10 11:26:53 +02:00
|
|
|
select PINCTRL_EXYNOS
|
2014-03-17 23:28:10 +01:00
|
|
|
select PM_GENERIC_DOMAINS if PM_RUNTIME
|
2012-10-23 15:51:33 +02:00
|
|
|
select S5P_DEV_MFC
|
ARM: config: sort select statements alphanumerically
As suggested by Andrew Morton:
This is a pet peeve of mine. Any time there's a long list of items
(header file inclusions, kconfig entries, array initalisers, etc) and
someone wants to add a new item, they *always* go and stick it at the
end of the list.
Guys, don't do this. Either put the new item into a randomly-chosen
position or, probably better, alphanumerically sort the list.
lets sort all our select statements alphanumerically. This commit was
created by the following perl:
while (<>) {
while (/\\\s*$/) {
$_ .= <>;
}
undef %selects if /^\s*config\s+/;
if (/^\s+select\s+(\w+).*/) {
if (defined($selects{$1})) {
if ($selects{$1} eq $_) {
print STDERR "Warning: removing duplicated $1 entry\n";
} else {
print STDERR "Error: $1 differently selected\n".
"\tOld: $selects{$1}\n".
"\tNew: $_\n";
exit 1;
}
}
$selects{$1} = $_;
next;
}
if (%selects and (/^\s*$/ or /^\s+help/ or /^\s+---help---/ or
/^endif/ or /^endchoice/)) {
foreach $k (sort (keys %selects)) {
print "$selects{$k}";
}
undef %selects;
}
print;
}
if (%selects) {
foreach $k (sort (keys %selects)) {
print "$selects{$k}";
}
}
It found two duplicates:
Warning: removing duplicated S5P_SETUP_MIPIPHY entry
Warning: removing duplicated HARDIRQS_SW_RESEND entry
and they are identical duplicates, hence the shrinkage in the diffstat
of two lines.
We have four testers reporting success of this change (Tony, Stephen,
Linus and Sekhar.)
Acked-by: Jason Cooper <jason@lakedaemon.net>
Acked-by: Tony Lindgren <tony@atomide.com>
Acked-by: Stephen Warren <swarren@nvidia.com>
Acked-by: Linus Walleij <linus.walleij@linaro.org>
Acked-by: Sekhar Nori <nsekhar@ti.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
2012-10-06 18:12:25 +02:00
|
|
|
select SAMSUNG_DMADEV
|
2012-03-13 15:44:39 +01:00
|
|
|
help
|
|
|
|
Enable EXYNOS5250 SoC support
|
|
|
|
|
2014-05-25 21:28:17 +02:00
|
|
|
config SOC_EXYNOS5260
|
|
|
|
bool "SAMSUNG EXYNOS5260"
|
|
|
|
default y
|
|
|
|
depends on ARCH_EXYNOS5
|
|
|
|
|
2013-06-18 17:29:34 +02:00
|
|
|
config SOC_EXYNOS5420
|
|
|
|
bool "SAMSUNG EXYNOS5420"
|
|
|
|
default y
|
|
|
|
depends on ARCH_EXYNOS5
|
2014-03-17 23:28:10 +01:00
|
|
|
select PM_GENERIC_DOMAINS if PM_RUNTIME
|
2013-06-18 17:29:34 +02:00
|
|
|
help
|
|
|
|
Enable EXYNOS5420 SoC support
|
|
|
|
|
2012-11-15 07:48:56 +01:00
|
|
|
config SOC_EXYNOS5440
|
|
|
|
bool "SAMSUNG EXYNOS5440"
|
|
|
|
default y
|
|
|
|
depends on ARCH_EXYNOS5
|
2013-07-16 05:42:59 +02:00
|
|
|
select ARCH_DMA_ADDR_T_64BIT if ARM_LPAE
|
2013-07-24 07:30:29 +02:00
|
|
|
select ARCH_HAS_BANDGAP
|
2013-04-08 10:17:37 +02:00
|
|
|
select ARCH_HAS_OPP
|
2013-03-20 14:57:38 +01:00
|
|
|
select HAVE_ARM_ARCH_TIMER
|
2012-11-15 07:48:56 +01:00
|
|
|
select AUTO_ZRELADDR
|
2013-06-21 09:25:29 +02:00
|
|
|
select MIGHT_HAVE_PCI
|
|
|
|
select PCI_DOMAINS if PCI
|
2012-12-27 18:19:08 +01:00
|
|
|
select PINCTRL_EXYNOS5440
|
2013-04-08 10:17:37 +02:00
|
|
|
select PM_OPP
|
2012-11-15 07:48:56 +01:00
|
|
|
help
|
|
|
|
Enable EXYNOS5440 SoC support
|
|
|
|
|
2014-05-25 21:16:11 +02:00
|
|
|
config SOC_EXYNOS5800
|
|
|
|
bool "SAMSUNG EXYNOS5800"
|
|
|
|
default y
|
|
|
|
depends on SOC_EXYNOS5420
|
|
|
|
|
2010-10-06 04:09:42 +02:00
|
|
|
endmenu
|
|
|
|
|
2010-07-16 05:15:38 +02:00
|
|
|
endif
|