mmc: Add debug() output on read errors
[oweals/u-boot.git] / drivers / Kconfig
index dcce532e2df200ed4f82a4c45f0e14982ee26d1a..5ebc89da9129c0e43b2bce4e581a7d8acd43cd1c 100644 (file)
@@ -2,6 +2,8 @@ menu "Device Drivers"
 
 source "drivers/core/Kconfig"
 
+source "drivers/cpu/Kconfig"
+
 source "drivers/demo/Kconfig"
 
 source "drivers/pci/Kconfig"
@@ -18,6 +20,8 @@ source "drivers/net/Kconfig"
 
 source "drivers/input/Kconfig"
 
+source "drivers/led/Kconfig"
+
 source "drivers/serial/Kconfig"
 
 source "drivers/tpm/Kconfig"
@@ -53,3 +57,11 @@ source "drivers/crypto/Kconfig"
 source "drivers/thermal/Kconfig"
 
 endmenu
+
+config PHYS_TO_BUS
+       bool "Custom physical to bus address mapping"
+       help
+         Some SoCs use a different address map for CPU physical addresses and
+         peripheral DMA master accesses. If yours does, select this option in
+         your platform's Kconfig, and implement the appropriate mapping
+         functions in your platform's support code.