Masahiro Yamada | ed36323 | 2014-09-16 16:32:58 +0900 | [diff] [blame] | 1 | menu "Device Drivers" |
| 2 | |
Simon Glass | f26c8a8 | 2015-06-23 15:39:15 -0600 | [diff] [blame] | 3 | source "drivers/clk/Kconfig" |
| 4 | |
Masahiro Yamada | ed36323 | 2014-09-16 16:32:58 +0900 | [diff] [blame] | 5 | source "drivers/core/Kconfig" |
| 6 | |
Simon Glass | 11f4dc1 | 2015-04-28 20:25:09 -0600 | [diff] [blame] | 7 | source "drivers/cpu/Kconfig" |
| 8 | |
Simon Glass | 2a4eead | 2015-02-05 21:41:34 -0700 | [diff] [blame] | 9 | source "drivers/demo/Kconfig" |
| 10 | |
Masahiro Yamada | ed36323 | 2014-09-16 16:32:58 +0900 | [diff] [blame] | 11 | source "drivers/pci/Kconfig" |
| 12 | |
| 13 | source "drivers/pcmcia/Kconfig" |
| 14 | |
| 15 | source "drivers/mtd/Kconfig" |
| 16 | |
| 17 | source "drivers/block/Kconfig" |
| 18 | |
| 19 | source "drivers/misc/Kconfig" |
| 20 | |
| 21 | source "drivers/net/Kconfig" |
| 22 | |
| 23 | source "drivers/input/Kconfig" |
| 24 | |
Simon Glass | 5917112 | 2015-06-23 15:38:45 -0600 | [diff] [blame] | 25 | source "drivers/led/Kconfig" |
| 26 | |
Masahiro Yamada | ed36323 | 2014-09-16 16:32:58 +0900 | [diff] [blame] | 27 | source "drivers/serial/Kconfig" |
| 28 | |
| 29 | source "drivers/tpm/Kconfig" |
| 30 | |
| 31 | source "drivers/i2c/Kconfig" |
| 32 | |
| 33 | source "drivers/spi/Kconfig" |
| 34 | |
| 35 | source "drivers/gpio/Kconfig" |
| 36 | |
| 37 | source "drivers/power/Kconfig" |
| 38 | |
Simon Glass | 6c51df6 | 2015-06-23 15:39:04 -0600 | [diff] [blame] | 39 | source "drivers/ram/Kconfig" |
| 40 | |
Masahiro Yamada | ed36323 | 2014-09-16 16:32:58 +0900 | [diff] [blame] | 41 | source "drivers/hwmon/Kconfig" |
| 42 | |
| 43 | source "drivers/watchdog/Kconfig" |
| 44 | |
| 45 | source "drivers/video/Kconfig" |
| 46 | |
| 47 | source "drivers/sound/Kconfig" |
| 48 | |
| 49 | source "drivers/usb/Kconfig" |
| 50 | |
| 51 | source "drivers/dfu/Kconfig" |
| 52 | |
| 53 | source "drivers/mmc/Kconfig" |
| 54 | |
| 55 | source "drivers/rtc/Kconfig" |
| 56 | |
| 57 | source "drivers/dma/Kconfig" |
| 58 | |
| 59 | source "drivers/crypto/Kconfig" |
| 60 | |
Simon Glass | f94a1be | 2015-02-05 21:41:35 -0700 | [diff] [blame] | 61 | source "drivers/thermal/Kconfig" |
| 62 | |
Masahiro Yamada | ed36323 | 2014-09-16 16:32:58 +0900 | [diff] [blame] | 63 | endmenu |
Stephen Warren | 927c1fa | 2015-03-24 20:07:33 -0600 | [diff] [blame] | 64 | |
| 65 | config PHYS_TO_BUS |
Joe Hershberger | c9bb942 | 2015-06-22 16:15:29 -0500 | [diff] [blame] | 66 | bool "Custom physical to bus address mapping" |
Stephen Warren | 927c1fa | 2015-03-24 20:07:33 -0600 | [diff] [blame] | 67 | help |
| 68 | Some SoCs use a different address map for CPU physical addresses and |
| 69 | peripheral DMA master accesses. If yours does, select this option in |
| 70 | your platform's Kconfig, and implement the appropriate mapping |
| 71 | functions in your platform's support code. |