2019-05-19 12:07:45 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
2007-09-18 19:12:50 +00:00
|
|
|
config SSB_POSSIBLE
|
|
|
|
bool
|
2008-06-20 09:50:29 +00:00
|
|
|
depends on HAS_IOMEM && HAS_DMA
|
2007-09-18 19:12:50 +00:00
|
|
|
default y
|
|
|
|
|
2017-12-04 22:27:44 +00:00
|
|
|
menuconfig SSB
|
2007-09-18 19:12:50 +00:00
|
|
|
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.
|
|
|
|
|
2017-12-04 22:27:44 +00:00
|
|
|
if SSB
|
|
|
|
|
2008-03-10 16:26:32 +00:00
|
|
|
# Common SPROM support routines
|
|
|
|
config SSB_SPROM
|
|
|
|
bool
|
|
|
|
|
2008-04-02 17:46:56 +00:00
|
|
|
# Support for Block-I/O. SELECT this from the driver that needs it.
|
|
|
|
config SSB_BLOCKIO
|
|
|
|
bool
|
|
|
|
depends on SSB
|
|
|
|
|
2007-09-18 19:12:50 +00:00
|
|
|
config SSB_PCIHOST_POSSIBLE
|
|
|
|
bool
|
2018-01-26 09:38:01 +00:00
|
|
|
depends on SSB && (PCI = y || PCI = SSB) && (PCI_DRIVERS_LEGACY || !MIPS)
|
2007-09-18 19:12:50 +00:00
|
|
|
default y
|
|
|
|
|
|
|
|
config SSB_PCIHOST
|
|
|
|
bool "Support for SSB on PCI-bus host"
|
|
|
|
depends on SSB_PCIHOST_POSSIBLE
|
2008-03-10 16:26:32 +00:00
|
|
|
select SSB_SPROM
|
2007-09-18 19:12:50 +00:00
|
|
|
default y
|
|
|
|
help
|
|
|
|
Support for a Sonics Silicon Backplane on top
|
|
|
|
of a PCI device.
|
|
|
|
|
|
|
|
If unsure, say Y
|
|
|
|
|
2008-02-23 09:59:26 +00:00
|
|
|
config SSB_B43_PCI_BRIDGE
|
|
|
|
bool
|
|
|
|
depends on SSB_PCIHOST
|
|
|
|
default n
|
|
|
|
|
2007-09-18 19:12:50 +00:00
|
|
|
config SSB_PCMCIAHOST_POSSIBLE
|
|
|
|
bool
|
2009-03-20 15:43:20 +00:00
|
|
|
depends on SSB && (PCMCIA = y || PCMCIA = SSB)
|
2007-09-18 19:12:50 +00:00
|
|
|
default y
|
|
|
|
|
|
|
|
config SSB_PCMCIAHOST
|
2009-03-20 15:43:20 +00:00
|
|
|
bool "Support for SSB on PCMCIA-bus host"
|
2007-09-18 19:12:50 +00:00
|
|
|
depends on SSB_PCMCIAHOST_POSSIBLE
|
2008-03-10 16:26:32 +00:00
|
|
|
select SSB_SPROM
|
2007-09-18 19:12:50 +00:00
|
|
|
help
|
|
|
|
Support for a Sonics Silicon Backplane on top
|
|
|
|
of a PCMCIA device.
|
|
|
|
|
|
|
|
If unsure, say N
|
|
|
|
|
2009-09-08 17:30:12 +00:00
|
|
|
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
|
|
|
|
|
2015-10-25 18:32:43 +00:00
|
|
|
config SSB_HOST_SOC
|
|
|
|
bool "Support for SSB bus on SoC"
|
2015-12-09 22:36:51 +00:00
|
|
|
depends on SSB && BCM47XX_NVRAM
|
2016-02-25 20:57:43 +00:00
|
|
|
select SSB_SPROM
|
2015-10-25 18:32:43 +00:00
|
|
|
help
|
|
|
|
Host interface for a SSB directly mapped into memory. This is
|
|
|
|
for some Broadcom SoCs from the BCM47xx and BCM53xx lines.
|
|
|
|
|
|
|
|
If unsure, say N
|
|
|
|
|
2007-09-18 19:12:50 +00:00
|
|
|
config SSB_SERIAL
|
|
|
|
bool
|
|
|
|
depends on SSB
|
|
|
|
# ChipCommon and ExtIf serial support routines.
|
|
|
|
|
|
|
|
config SSB_DRIVER_PCICORE_POSSIBLE
|
|
|
|
bool
|
2018-05-11 09:17:14 +00:00
|
|
|
depends on SSB_PCIHOST
|
2007-09-18 19:12:50 +00:00
|
|
|
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
|
2009-03-20 15:43:20 +00:00
|
|
|
bool "Hostmode support for SSB PCI core"
|
2018-05-11 09:17:15 +00:00
|
|
|
depends on SSB_DRIVER_PCICORE && SSB_DRIVER_MIPS && SSB = y
|
2007-09-18 19:12:50 +00:00
|
|
|
help
|
|
|
|
PCIcore hostmode operation (external PCI bus).
|
|
|
|
|
|
|
|
config SSB_DRIVER_MIPS
|
2009-03-20 15:43:20 +00:00
|
|
|
bool "SSB Broadcom MIPS core driver"
|
|
|
|
depends on SSB && MIPS
|
2007-09-18 19:12:50 +00:00
|
|
|
select SSB_SERIAL
|
2015-03-25 15:31:42 +00:00
|
|
|
select SSB_SFLASH
|
2007-09-18 19:12:50 +00:00
|
|
|
help
|
|
|
|
Driver for the Sonics Silicon Backplane attached
|
|
|
|
Broadcom MIPS core.
|
|
|
|
|
|
|
|
If unsure, say N
|
|
|
|
|
2013-01-06 20:48:50 +00:00
|
|
|
config SSB_SFLASH
|
|
|
|
bool "SSB serial flash support"
|
2013-06-25 08:13:46 +00:00
|
|
|
depends on SSB_DRIVER_MIPS
|
2013-01-06 20:48:50 +00:00
|
|
|
default y
|
|
|
|
|
2008-02-19 11:41:30 +00:00
|
|
|
# Assumption: We are on embedded, if we compile the MIPS core.
|
|
|
|
config SSB_EMBEDDED
|
|
|
|
bool
|
2023-10-12 22:08:55 +00:00
|
|
|
depends on SSB_DRIVER_MIPS
|
|
|
|
depends on PCI=n || SSB_PCICORE_HOSTMODE
|
2008-02-19 11:41:30 +00:00
|
|
|
default y
|
|
|
|
|
2007-09-18 19:12:50 +00:00
|
|
|
config SSB_DRIVER_EXTIF
|
2009-03-20 15:43:20 +00:00
|
|
|
bool "SSB Broadcom EXTIF core driver"
|
|
|
|
depends on SSB_DRIVER_MIPS
|
2007-09-18 19:12:50 +00:00
|
|
|
help
|
|
|
|
Driver for the Sonics Silicon Backplane attached
|
|
|
|
Broadcom EXTIF core.
|
|
|
|
|
|
|
|
If unsure, say N
|
|
|
|
|
2008-02-29 10:36:12 +00:00
|
|
|
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
|
|
|
|
|
2012-11-20 22:24:33 +00:00
|
|
|
config SSB_DRIVER_GPIO
|
|
|
|
bool "SSB GPIO driver"
|
2012-12-16 15:35:36 +00:00
|
|
|
depends on SSB && GPIOLIB
|
2014-01-13 18:56:08 +00:00
|
|
|
select IRQ_DOMAIN if SSB_EMBEDDED
|
2012-11-20 22:24:33 +00:00
|
|
|
help
|
|
|
|
Driver to provide access to the GPIO pins on the bus.
|
|
|
|
|
|
|
|
If unsure, say N
|
|
|
|
|
2017-12-04 22:27:44 +00:00
|
|
|
endif # SSB
|