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-06-18 18:26:42 +02:00
|
|
|
select GIC_NON_BANKED
|
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
|
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-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
|
2011-10-01 21:09:39 +02:00
|
|
|
select ARM_CPU_SUSPEND if PM
|
2013-06-10 11:26:53 +02:00
|
|
|
select PINCTRL_EXYNOS
|
2013-06-17 09:56:42 +02:00
|
|
|
select PM_GENERIC_DOMAINS if PM
|
2011-10-04 13:25:51 +02:00
|
|
|
select S5P_PM if PM
|
2011-10-04 13:25:51 +02:00
|
|
|
select S5P_SLEEP if PM
|
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
|
2013-08-18 22:05:16 +02:00
|
|
|
select PM_GENERIC_DOMAINS if PM
|
2011-10-04 13:25:51 +02:00
|
|
|
select S5P_PM if PM
|
2011-10-04 13:25:51 +02:00
|
|
|
select S5P_SLEEP if PM
|
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
|
2013-08-18 22:05:16 +02:00
|
|
|
select PM_GENERIC_DOMAINS if PM
|
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
|
2013-02-13 00:27:43 +01:00
|
|
|
select PM_GENERIC_DOMAINS if PM
|
2012-02-17 04:23:51 +01:00
|
|
|
select S5P_PM if PM
|
|
|
|
select S5P_SLEEP if PM
|
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
|
|
|
|
|
2013-06-18 17:29:34 +02:00
|
|
|
config SOC_EXYNOS5420
|
|
|
|
bool "SAMSUNG EXYNOS5420"
|
|
|
|
default y
|
|
|
|
depends on ARCH_EXYNOS5
|
|
|
|
select PM_GENERIC_DOMAINS if PM
|
|
|
|
select S5P_PM if PM
|
|
|
|
select S5P_SLEEP if PM
|
|
|
|
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
|
|
|
|
|
2012-02-10 05:13:15 +01:00
|
|
|
comment "Flattened Device Tree based board for EXYNOS SoCs"
|
2011-11-06 17:24:27 +01:00
|
|
|
|
|
|
|
config MACH_EXYNOS4_DT
|
|
|
|
bool "Samsung Exynos4 Machine using device tree"
|
2013-06-10 11:15:23 +02:00
|
|
|
default y
|
2012-04-14 16:53:51 +02:00
|
|
|
depends on ARCH_EXYNOS4
|
2011-11-06 17:24:27 +01:00
|
|
|
select ARM_AMBA
|
2013-03-09 08:10:03 +01:00
|
|
|
select CLKSRC_OF
|
2013-05-24 23:27:29 +02:00
|
|
|
select CLKSRC_SAMSUNG_PWM if CPU_EXYNOS4210
|
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 CPU_EXYNOS4210
|
2013-03-13 11:59:32 +01:00
|
|
|
select KEYBOARD_SAMSUNG if INPUT_KEYBOARD
|
2013-02-08 22:58:17 +01:00
|
|
|
select S5P_DEV_MFC
|
2011-11-06 17:24:27 +01:00
|
|
|
help
|
|
|
|
Machine support for Samsung Exynos4 machine with device tree enabled.
|
|
|
|
Select this if a fdt blob is available for the Exynos4 SoC based board.
|
|
|
|
Note: This is under development and not all peripherals can be supported
|
|
|
|
with this machine file.
|
|
|
|
|
2012-02-10 05:13:15 +01:00
|
|
|
config MACH_EXYNOS5_DT
|
|
|
|
bool "SAMSUNG EXYNOS5 Machine using device tree"
|
2012-11-15 07:48:56 +01:00
|
|
|
default y
|
2012-04-14 16:53:51 +02:00
|
|
|
depends on ARCH_EXYNOS5
|
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 ARM_AMBA
|
2013-03-09 08:10:03 +01:00
|
|
|
select CLKSRC_OF
|
2013-04-10 12:38:41 +02:00
|
|
|
select USB_ARCH_HAS_XHCI
|
2012-02-10 05:13:15 +01:00
|
|
|
help
|
2012-08-28 20:40:06 +02:00
|
|
|
Machine support for Samsung EXYNOS5 machine with device tree enabled.
|
|
|
|
Select this if a fdt blob is available for the EXYNOS5 SoC based board.
|
2012-02-10 05:13:15 +01:00
|
|
|
|
2010-10-06 04:09:42 +02:00
|
|
|
endmenu
|
|
|
|
|
2010-07-16 05:15:38 +02:00
|
|
|
endif
|