diff options
author | Peter Denison <openwrt@marshadder.org> | 2007-07-01 22:44:05 +0000 |
---|---|---|
committer | Peter Denison <openwrt@marshadder.org> | 2007-07-01 22:44:05 +0000 |
commit | 46d194834b736d53a61a3ef3b7b2e0a521f73384 (patch) | |
tree | 71a8d15f23545a3eb32b0223c4cbbac4cb7969cb /target/linux/generic-2.6/files/drivers/ssb/Kconfig | |
parent | 6497e3b7689cd1502ff0f67893527f820b455bf4 (diff) | |
download | mtk-20170518-46d194834b736d53a61a3ef3b7b2e0a521f73384.zip mtk-20170518-46d194834b736d53a61a3ef3b7b2e0a521f73384.tar.gz mtk-20170518-46d194834b736d53a61a3ef3b7b2e0a521f73384.tar.bz2 |
Move SSB out of brcm47xx target into generic-2.6 target
SVN-Revision: 7844
Diffstat (limited to 'target/linux/generic-2.6/files/drivers/ssb/Kconfig')
-rw-r--r-- | target/linux/generic-2.6/files/drivers/ssb/Kconfig | 93 |
1 files changed, 93 insertions, 0 deletions
diff --git a/target/linux/generic-2.6/files/drivers/ssb/Kconfig b/target/linux/generic-2.6/files/drivers/ssb/Kconfig new file mode 100644 index 0000000..03c4945 --- /dev/null +++ b/target/linux/generic-2.6/files/drivers/ssb/Kconfig @@ -0,0 +1,93 @@ +menu "Sonics Silicon Backplane" + +config SSB + tristate "Sonics Silicon Backplane support" + depends on EXPERIMENTAL + help + Support for the Sonics Silicon Backplane bus + + The module will be called ssb + + If unsure, say M + +config SSB_PCIHOST + bool "Support for SSB on PCI-bus host" + depends on SSB && PCI + default y + help + Support for a Sonics Silicon Backplane on top + of a PCI device. + + If unsure, say Y + +config SSB_PCMCIAHOST + bool "Support for SSB on PCMCIA-bus host" + depends on SSB && PCMCIA + help + Support for a Sonics Silicon Backplane on top + of a PCMCIA device. + + If unsure, say N + +config SSB_SILENT + bool "No SSB kernel messages" + depends on SSB + 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 + bool "SSB PCI core driver" + depends on SSB && SSB_PCIHOST + default y + help + Driver for the Sonics Silicon Backplane attached + Broadcom PCI core. + + If unsure, say Y + +config SSB_PCICORE_HOSTMODE + bool "Hostmode support for SSB PCI core" + depends on SSB_DRIVER_PCICORE && SSB_DRIVER_MIPS + help + PCIcore hostmode operation (external PCI bus). + +config SSB_DRIVER_MIPS + bool "SSB Broadcom MIPS core driver" + depends on SSB && MIPS + select SSB_SERIAL + help + Driver for the Sonics Silicon Backplane attached + Broadcom MIPS core. + + If unsure, say N + +config SSB_DRIVER_EXTIF + bool "SSB Broadcom EXTIF core driver" + depends on SSB_DRIVER_MIPS + help + Driver for the Sonics Silicon Backplane attached + Broadcom EXTIF core. + + If unsure, say N + +endmenu |