X-Git-Url: https://git.kernelconcepts.de/?p=karo-tx-uboot.git;a=blobdiff_plain;f=drivers%2FKconfig;h=092bc02b304ef6dc9f8cfd6230a5c1ebbf653618;hp=128736dae3d97d4b53ed01dcf40306c9d32b1522;hb=4ace9bb52864de73b4a092e7110129fb38b1e451;hpb=3cc83f9d08a80fddf4c1e8e766eff8273f30814c diff --git a/drivers/Kconfig b/drivers/Kconfig index 128736dae3..092bc02b30 100644 --- a/drivers/Kconfig +++ b/drivers/Kconfig @@ -1,7 +1,13 @@ menu "Device Drivers" +source "drivers/clk/Kconfig" + source "drivers/core/Kconfig" +source "drivers/cpu/Kconfig" + +source "drivers/demo/Kconfig" + source "drivers/pci/Kconfig" source "drivers/pcmcia/Kconfig" @@ -16,6 +22,8 @@ source "drivers/net/Kconfig" source "drivers/input/Kconfig" +source "drivers/led/Kconfig" + source "drivers/serial/Kconfig" source "drivers/tpm/Kconfig" @@ -28,6 +36,8 @@ source "drivers/gpio/Kconfig" source "drivers/power/Kconfig" +source "drivers/ram/Kconfig" + source "drivers/hwmon/Kconfig" source "drivers/watchdog/Kconfig" @@ -48,4 +58,14 @@ source "drivers/dma/Kconfig" 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.