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