u-boot-brain/drivers/Kconfig
Simon Glass 6c51df6859 dm: Add support for RAM drivers
Add support for a driver which sets up DRAM and can return information about
the amount of RAM available. This is a first step towards moving RAM init
to driver model.

Signed-off-by: Simon Glass <sjg@chromium.org>
2015-07-21 17:39:27 -06:00

70 lines
1.2 KiB
Plaintext

menu "Device Drivers"
source "drivers/core/Kconfig"
source "drivers/cpu/Kconfig"
source "drivers/demo/Kconfig"
source "drivers/pci/Kconfig"
source "drivers/pcmcia/Kconfig"
source "drivers/mtd/Kconfig"
source "drivers/block/Kconfig"
source "drivers/misc/Kconfig"
source "drivers/net/Kconfig"
source "drivers/input/Kconfig"
source "drivers/led/Kconfig"
source "drivers/serial/Kconfig"
source "drivers/tpm/Kconfig"
source "drivers/i2c/Kconfig"
source "drivers/spi/Kconfig"
source "drivers/gpio/Kconfig"
source "drivers/power/Kconfig"
source "drivers/ram/Kconfig"
source "drivers/hwmon/Kconfig"
source "drivers/watchdog/Kconfig"
source "drivers/video/Kconfig"
source "drivers/sound/Kconfig"
source "drivers/usb/Kconfig"
source "drivers/dfu/Kconfig"
source "drivers/mmc/Kconfig"
source "drivers/rtc/Kconfig"
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.