X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=drivers%2FKconfig;h=5ebc89da9129c0e43b2bce4e581a7d8acd43cd1c;hb=1169299135d7793dcea5f05a959a9c38d78a0ee1;hp=128736dae3d97d4b53ed01dcf40306c9d32b1522;hpb=1454ba8e56d88a8b95ac8050cde2c07c651cd0ae;p=oweals%2Fu-boot.git diff --git a/drivers/Kconfig b/drivers/Kconfig index 128736dae3..5ebc89da91 100644 --- a/drivers/Kconfig +++ b/drivers/Kconfig @@ -2,6 +2,10 @@ menu "Device Drivers" source "drivers/core/Kconfig" +source "drivers/cpu/Kconfig" + +source "drivers/demo/Kconfig" + source "drivers/pci/Kconfig" source "drivers/pcmcia/Kconfig" @@ -16,6 +20,8 @@ source "drivers/net/Kconfig" source "drivers/input/Kconfig" +source "drivers/led/Kconfig" + source "drivers/serial/Kconfig" source "drivers/tpm/Kconfig" @@ -48,4 +54,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.