]>
Commit | Line | Data |
---|---|---|
ed36323f MY |
1 | menu "Device Drivers" |
2 | ||
3 | source "drivers/core/Kconfig" | |
4 | ||
11f4dc15 SG |
5 | source "drivers/cpu/Kconfig" |
6 | ||
2a4eeadd SG |
7 | source "drivers/demo/Kconfig" |
8 | ||
ed36323f MY |
9 | source "drivers/pci/Kconfig" |
10 | ||
11 | source "drivers/pcmcia/Kconfig" | |
12 | ||
13 | source "drivers/mtd/Kconfig" | |
14 | ||
15 | source "drivers/block/Kconfig" | |
16 | ||
17 | source "drivers/misc/Kconfig" | |
18 | ||
19 | source "drivers/net/Kconfig" | |
20 | ||
21 | source "drivers/input/Kconfig" | |
22 | ||
23 | source "drivers/serial/Kconfig" | |
24 | ||
25 | source "drivers/tpm/Kconfig" | |
26 | ||
27 | source "drivers/i2c/Kconfig" | |
28 | ||
29 | source "drivers/spi/Kconfig" | |
30 | ||
31 | source "drivers/gpio/Kconfig" | |
32 | ||
33 | source "drivers/power/Kconfig" | |
34 | ||
35 | source "drivers/hwmon/Kconfig" | |
36 | ||
37 | source "drivers/watchdog/Kconfig" | |
38 | ||
39 | source "drivers/video/Kconfig" | |
40 | ||
41 | source "drivers/sound/Kconfig" | |
42 | ||
43 | source "drivers/usb/Kconfig" | |
44 | ||
45 | source "drivers/dfu/Kconfig" | |
46 | ||
47 | source "drivers/mmc/Kconfig" | |
48 | ||
49 | source "drivers/rtc/Kconfig" | |
50 | ||
51 | source "drivers/dma/Kconfig" | |
52 | ||
53 | source "drivers/crypto/Kconfig" | |
54 | ||
f94a1bed SG |
55 | source "drivers/thermal/Kconfig" |
56 | ||
ed36323f | 57 | endmenu |
927c1fa2 SW |
58 | |
59 | config PHYS_TO_BUS | |
c9bb942e | 60 | bool "Custom physical to bus address mapping" |
927c1fa2 SW |
61 | help |
62 | Some SoCs use a different address map for CPU physical addresses and | |
63 | peripheral DMA master accesses. If yours does, select this option in | |
64 | your platform's Kconfig, and implement the appropriate mapping | |
65 | functions in your platform's support code. |