ssb: Update to latest upstream version of ssb.
[openwrt/openwrt.git] / target / linux / generic-2.6 / files / drivers / ssb / Kconfig
1 menu "Sonics Silicon Backplane"
2
3 config SSB_POSSIBLE
4 bool
5 depends on HAS_IOMEM
6 default y
7
8 config SSB
9 tristate "Sonics Silicon Backplane support"
10 depends on SSB_POSSIBLE
11 help
12 Support for the Sonics Silicon Backplane bus.
13 You only need to enable this option, if you are
14 configuring a kernel for an embedded system with
15 this bus.
16 It will be auto-selected if needed in other
17 environments.
18
19 The module will be called ssb.
20
21 If unsure, say N.
22
23 config SSB_PCIHOST_POSSIBLE
24 bool
25 depends on SSB && (PCI = y || PCI = SSB)
26 default y
27
28 config SSB_PCIHOST
29 bool "Support for SSB on PCI-bus host"
30 depends on SSB_PCIHOST_POSSIBLE
31 default y
32 help
33 Support for a Sonics Silicon Backplane on top
34 of a PCI device.
35
36 If unsure, say Y
37
38 config SSB_PCMCIAHOST_POSSIBLE
39 bool
40 depends on SSB && (PCMCIA = y || PCMCIA = SSB) && EXPERIMENTAL
41 default y
42
43 config SSB_PCMCIAHOST
44 bool "Support for SSB on PCMCIA-bus host (EXPERIMENTAL)"
45 depends on SSB_PCMCIAHOST_POSSIBLE
46 help
47 Support for a Sonics Silicon Backplane on top
48 of a PCMCIA device.
49
50 If unsure, say N
51
52 config SSB_SILENT
53 bool "No SSB kernel messages"
54 depends on SSB && EMBEDDED
55 help
56 This option turns off all Sonics Silicon Backplane printks.
57 Note that you won't be able to identify problems, once
58 messages are turned off.
59 This might only be desired for production kernels on
60 embedded devices to reduce the kernel size.
61
62 Say N
63
64 config SSB_DEBUG
65 bool "SSB debugging"
66 depends on SSB && !SSB_SILENT
67 help
68 This turns on additional runtime checks and debugging
69 messages. Turn this on for SSB troubleshooting.
70
71 If unsure, say N
72
73 config SSB_SERIAL
74 bool
75 depends on SSB
76 # ChipCommon and ExtIf serial support routines.
77
78 config SSB_DRIVER_PCICORE_POSSIBLE
79 bool
80 depends on SSB_PCIHOST
81 default y
82
83 config SSB_DRIVER_PCICORE
84 bool "SSB PCI core driver"
85 depends on SSB_DRIVER_PCICORE_POSSIBLE
86 help
87 Driver for the Sonics Silicon Backplane attached
88 Broadcom PCI core.
89
90 If unsure, say Y
91
92 config SSB_PCICORE_HOSTMODE
93 bool "Hostmode support for SSB PCI core (EXPERIMENTAL)"
94 depends on SSB_DRIVER_PCICORE && SSB_DRIVER_MIPS && EXPERIMENTAL
95 help
96 PCIcore hostmode operation (external PCI bus).
97
98 config SSB_DRIVER_MIPS
99 bool "SSB Broadcom MIPS core driver (EXPERIMENTAL)"
100 depends on SSB && MIPS && EXPERIMENTAL
101 select SSB_SERIAL
102 help
103 Driver for the Sonics Silicon Backplane attached
104 Broadcom MIPS core.
105
106 If unsure, say N
107
108 config SSB_DRIVER_EXTIF
109 bool "SSB Broadcom EXTIF core driver (EXPERIMENTAL)"
110 depends on SSB_DRIVER_MIPS && EXPERIMENTAL
111 help
112 Driver for the Sonics Silicon Backplane attached
113 Broadcom EXTIF core.
114
115 If unsure, say N
116
117 endmenu