summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/arm/Kconfig2
-rw-r--r--arch/nios2/Kconfig1
-rw-r--r--arch/openrisc/Kconfig1
-rw-r--r--arch/ppc/Kconfig1
-rw-r--r--common/Kconfig16
-rw-r--r--drivers/ata/Kconfig1
-rw-r--r--drivers/input/Kconfig2
-rw-r--r--drivers/net/Kconfig4
-rw-r--r--drivers/regulator/Kconfig1
-rw-r--r--drivers/usb/host/Kconfig1
-rw-r--r--drivers/video/imx-ipu-v3/Kconfig1
11 files changed, 30 insertions, 1 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig
index 8465d4a7f7..3af01970e3 100644
--- a/arch/arm/Kconfig
+++ b/arch/arm/Kconfig
@@ -2,6 +2,8 @@ config ARM
bool
select HAS_KALLSYMS
select HAS_MODULES
+ select HAS_DMA
+ select HAS_CACHE
select HAVE_CONFIGURABLE_TEXT_BASE
select HAVE_PBL_IMAGE
select HAVE_IMAGE_COMPRESSION
diff --git a/arch/nios2/Kconfig b/arch/nios2/Kconfig
index 70a7562709..199540ba74 100644
--- a/arch/nios2/Kconfig
+++ b/arch/nios2/Kconfig
@@ -2,6 +2,7 @@ config NIOS2
bool
select HAS_KALLSYMS
select HAS_MODULES
+ select HAS_CACHE
select HAVE_CONFIGURABLE_MEMORY_LAYOUT
select GENERIC_FIND_NEXT_BIT
default y
diff --git a/arch/openrisc/Kconfig b/arch/openrisc/Kconfig
index e21010bd60..23c6a71f3a 100644
--- a/arch/openrisc/Kconfig
+++ b/arch/openrisc/Kconfig
@@ -1,5 +1,6 @@
config OPENRISC
bool
+ select HAS_CACHE
select HAVE_CONFIGURABLE_MEMORY_LAYOUT
select HAVE_DEFAULT_ENVIRONMENT_NEW
select GENERIC_FIND_NEXT_BIT
diff --git a/arch/ppc/Kconfig b/arch/ppc/Kconfig
index 7ebfa863b4..97e6c00689 100644
--- a/arch/ppc/Kconfig
+++ b/arch/ppc/Kconfig
@@ -3,6 +3,7 @@ config PPC
select HAVE_CONFIGURABLE_TEXT_BASE
select HAS_KALLSYMS
select HAS_MODULES
+ select HAS_CACHE
select GENERIC_FIND_NEXT_BIT
select OFTREE
default y
diff --git a/common/Kconfig b/common/Kconfig
index eeb3faf35e..6aa0aac991 100644
--- a/common/Kconfig
+++ b/common/Kconfig
@@ -25,6 +25,22 @@ config ENV_HANDLING
select CRC32
bool
+config HAS_CACHE
+ bool
+ help
+ This allows you do run "make ARCH=sandbox allyesconfig".
+
+ Drivers that depend on a cache implementation can depend on this
+ config, so that you don't get a compilation error.
+
+config HAS_DMA
+ bool
+ help
+ This allows you do run "make ARCH=sandbox allyesconfig".
+
+ Drivers that depend on a DMA implementation can depend on this
+ config, so that you don't get a compilation error.
+
config GENERIC_GPIO
bool
diff --git a/drivers/ata/Kconfig b/drivers/ata/Kconfig
index 9830cc07a8..7850e4a9c9 100644
--- a/drivers/ata/Kconfig
+++ b/drivers/ata/Kconfig
@@ -34,6 +34,7 @@ config DISK_ATA
config DISK_AHCI
bool "AHCI support"
+ depends on HAS_DMA
select DISK_ATA
config DISK_AHCI_IMX
diff --git a/drivers/input/Kconfig b/drivers/input/Kconfig
index 3d9016b3fa..07545ed310 100644
--- a/drivers/input/Kconfig
+++ b/drivers/input/Kconfig
@@ -32,7 +32,7 @@ config KEYBOARD_IMX_KEYPAD
config KEYBOARD_QT1070
tristate "Atmel AT42QT1070 Touch Sensor Chip"
- depends on I2C
+ depends on I2C && GENERIC_GPIO
select POLLER
help
Say Y here if you want to use Atmel AT42QT1070 QTouch
diff --git a/drivers/net/Kconfig b/drivers/net/Kconfig
index 5f0c41b151..ffce40a506 100644
--- a/drivers/net/Kconfig
+++ b/drivers/net/Kconfig
@@ -34,6 +34,7 @@ config DRIVER_NET_AR231X
config DRIVER_NET_ARC_EMAC
bool "ARC Ethernet MAC driver"
+ depends on HAS_DMA
select PHYLIB
help
This option enables support for the ARC EMAC ethernet
@@ -46,6 +47,7 @@ config DRIVER_NET_AT91_ETHER
config DRIVER_NET_CALXEDA_XGMAC
bool "Calxeda xgmac"
+ depends on HAS_DMA
config DRIVER_NET_CS8900
bool "cs8900 ethernet driver"
@@ -63,6 +65,7 @@ config DRIVER_NET_DAVINCI_EMAC
config DRIVER_NET_DESIGNWARE
bool "Designware Universal MAC ethernet driver"
+ depends on HAS_DMA
select PHYLIB
help
This option enables support for the Synopsys
@@ -94,6 +97,7 @@ config DRIVER_NET_EP93XX
config DRIVER_NET_ETHOC
bool "OpenCores ethernet MAC driver"
+ depends on HAS_CACHE
select PHYLIB
help
This option enables support for the OpenCores 10/100 Mbps
diff --git a/drivers/regulator/Kconfig b/drivers/regulator/Kconfig
index 55f87a45ba..493b18a898 100644
--- a/drivers/regulator/Kconfig
+++ b/drivers/regulator/Kconfig
@@ -6,6 +6,7 @@ if REGULATOR
config REGULATOR_FIXED
bool "fixed/gpio regulator"
+ depends on GENERIC_GPIO
help
This enables a simple fixed regulator. It is used for regulators
which are not software controllable or controllable via gpio.
diff --git a/drivers/usb/host/Kconfig b/drivers/usb/host/Kconfig
index 5a3ce40705..a69e758910 100644
--- a/drivers/usb/host/Kconfig
+++ b/drivers/usb/host/Kconfig
@@ -1,5 +1,6 @@
config USB_EHCI
bool "EHCI driver"
+ depends on HAS_DMA
config USB_EHCI_OMAP
depends on ARCH_OMAP3
diff --git a/drivers/video/imx-ipu-v3/Kconfig b/drivers/video/imx-ipu-v3/Kconfig
index 3d656e5193..368167bfb6 100644
--- a/drivers/video/imx-ipu-v3/Kconfig
+++ b/drivers/video/imx-ipu-v3/Kconfig
@@ -1,5 +1,6 @@
config DRIVER_VIDEO_IMX_IPUV3
bool "i.MX IPUv3 driver"
+ depends on ARCH_IMX
help
Support the IPUv3 found on Freescale i.MX51/53/6 SoCs