Blame view

drivers/ssb/Kconfig 3.42 KB
61e115a56   Michael Buesch   [SSB]: add Sonics...
1
2
  config SSB_POSSIBLE
  	bool
f225763a7   Michael Buesch   ssb, b43, b43lega...
3
  	depends on HAS_IOMEM && HAS_DMA
61e115a56   Michael Buesch   [SSB]: add Sonics...
4
  	default y
958148344   Mike Frysinger   SSB: hide empty s...
5
6
  menu "Sonics Silicon Backplane"
  	depends on SSB_POSSIBLE
61e115a56   Michael Buesch   [SSB]: add Sonics...
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  config SSB
  	tristate "Sonics Silicon Backplane support"
  	depends on SSB_POSSIBLE
  	help
  	  Support for the Sonics Silicon Backplane bus.
  	  You only need to enable this option, if you are
  	  configuring a kernel for an embedded system with
  	  this bus.
  	  It will be auto-selected if needed in other
  	  environments.
  
  	  The module will be called ssb.
  
  	  If unsure, say N.
e7ec2e323   Michael Buesch   ssb: Add SPROM/in...
21
22
23
  # Common SPROM support routines
  config SSB_SPROM
  	bool
d625a29ba   Michael Buesch   ssb: Add support ...
24
25
26
27
  # Support for Block-I/O. SELECT this from the driver that needs it.
  config SSB_BLOCKIO
  	bool
  	depends on SSB
61e115a56   Michael Buesch   [SSB]: add Sonics...
28
29
  config SSB_PCIHOST_POSSIBLE
  	bool
9be4bfb97   Ingo Molnar   [PATCH] ssb: fix ...
30
  	depends on SSB && (PCI = y || PCI = SSB)
61e115a56   Michael Buesch   [SSB]: add Sonics...
31
32
33
34
35
  	default y
  
  config SSB_PCIHOST
  	bool "Support for SSB on PCI-bus host"
  	depends on SSB_PCIHOST_POSSIBLE
e7ec2e323   Michael Buesch   ssb: Add SPROM/in...
36
  	select SSB_SPROM
61e115a56   Michael Buesch   [SSB]: add Sonics...
37
38
39
40
41
42
  	default y
  	help
  	  Support for a Sonics Silicon Backplane on top
  	  of a PCI device.
  
  	  If unsure, say Y
c7084535c   Alexey Zaytsev   Use a separate co...
43
44
45
46
  config SSB_B43_PCI_BRIDGE
  	bool
  	depends on SSB_PCIHOST
  	default n
61e115a56   Michael Buesch   [SSB]: add Sonics...
47
48
  config SSB_PCMCIAHOST_POSSIBLE
  	bool
feeb44454   Michael Buesch   ssb: remove EXPER...
49
  	depends on SSB && (PCMCIA = y || PCMCIA = SSB)
61e115a56   Michael Buesch   [SSB]: add Sonics...
50
51
52
  	default y
  
  config SSB_PCMCIAHOST
feeb44454   Michael Buesch   ssb: remove EXPER...
53
  	bool "Support for SSB on PCMCIA-bus host"
61e115a56   Michael Buesch   [SSB]: add Sonics...
54
  	depends on SSB_PCMCIAHOST_POSSIBLE
e7ec2e323   Michael Buesch   ssb: Add SPROM/in...
55
  	select SSB_SPROM
61e115a56   Michael Buesch   [SSB]: add Sonics...
56
57
58
59
60
  	help
  	  Support for a Sonics Silicon Backplane on top
  	  of a PCMCIA device.
  
  	  If unsure, say N
24ea602e1   Albert Herranz   ssb: Implement SD...
61
62
63
64
65
66
67
68
69
70
71
72
73
  config SSB_SDIOHOST_POSSIBLE
  	bool
  	depends on SSB && (MMC = y || MMC = SSB)
  	default y
  
  config SSB_SDIOHOST
  	bool "Support for SSB on SDIO-bus host"
  	depends on SSB_SDIOHOST_POSSIBLE
  	help
  	  Support for a Sonics Silicon Backplane on top
  	  of a SDIO device.
  
  	  If unsure, say N
61e115a56   Michael Buesch   [SSB]: add Sonics...
74
75
  config SSB_SILENT
  	bool "No SSB kernel messages"
6a108a14f   David Rientjes   kconfig: rename C...
76
  	depends on SSB && EXPERT
61e115a56   Michael Buesch   [SSB]: add Sonics...
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
  	help
  	  This option turns off all Sonics Silicon Backplane printks.
  	  Note that you won't be able to identify problems, once
  	  messages are turned off.
  	  This might only be desired for production kernels on
  	  embedded devices to reduce the kernel size.
  
  	  Say N
  
  config SSB_DEBUG
  	bool "SSB debugging"
  	depends on SSB && !SSB_SILENT
  	help
  	  This turns on additional runtime checks and debugging
  	  messages. Turn this on for SSB troubleshooting.
  
  	  If unsure, say N
  
  config SSB_SERIAL
  	bool
  	depends on SSB
  	# ChipCommon and ExtIf serial support routines.
  
  config SSB_DRIVER_PCICORE_POSSIBLE
  	bool
  	depends on SSB_PCIHOST
  	default y
  
  config SSB_DRIVER_PCICORE
  	bool "SSB PCI core driver"
  	depends on SSB_DRIVER_PCICORE_POSSIBLE
  	help
  	  Driver for the Sonics Silicon Backplane attached
  	  Broadcom PCI core.
  
  	  If unsure, say Y
  
  config SSB_PCICORE_HOSTMODE
feeb44454   Michael Buesch   ssb: remove EXPER...
115
116
  	bool "Hostmode support for SSB PCI core"
  	depends on SSB_DRIVER_PCICORE && SSB_DRIVER_MIPS
61e115a56   Michael Buesch   [SSB]: add Sonics...
117
118
119
120
  	help
  	  PCIcore hostmode operation (external PCI bus).
  
  config SSB_DRIVER_MIPS
feeb44454   Michael Buesch   ssb: remove EXPER...
121
122
  	bool "SSB Broadcom MIPS core driver"
  	depends on SSB && MIPS
61e115a56   Michael Buesch   [SSB]: add Sonics...
123
124
125
126
127
128
  	select SSB_SERIAL
  	help
  	  Driver for the Sonics Silicon Backplane attached
  	  Broadcom MIPS core.
  
  	  If unsure, say N
42bfad4f7   Michael Buesch   ssb: Fix watchdog...
129
130
131
132
133
  # Assumption: We are on embedded, if we compile the MIPS core.
  config SSB_EMBEDDED
  	bool
  	depends on SSB_DRIVER_MIPS
  	default y
61e115a56   Michael Buesch   [SSB]: add Sonics...
134
  config SSB_DRIVER_EXTIF
feeb44454   Michael Buesch   ssb: remove EXPER...
135
136
  	bool "SSB Broadcom EXTIF core driver"
  	depends on SSB_DRIVER_MIPS
61e115a56   Michael Buesch   [SSB]: add Sonics...
137
138
139
140
141
  	help
  	  Driver for the Sonics Silicon Backplane attached
  	  Broadcom EXTIF core.
  
  	  If unsure, say N
aab547ce0   Michael Buesch   ssb: Add Gigabit ...
142
143
144
145
146
147
148
149
  config SSB_DRIVER_GIGE
  	bool "SSB Broadcom Gigabit Ethernet driver"
  	depends on SSB_PCIHOST_POSSIBLE && SSB_EMBEDDED && MIPS
  	help
  	  Driver for the Sonics Silicon Backplane attached
  	  Broadcom Gigabit Ethernet.
  
  	  If unsure, say N
61e115a56   Michael Buesch   [SSB]: add Sonics...
150
  endmenu