Linux Audio

Check our new training course

Yocto / OpenEmbedded training

Mar 24-27, 2025, special US time zones
Register
Loading...
v3.5.6
 
 1if BCM47XX
 2
 3config BCM47XX_SSB
 4	bool "SSB Support for Broadcom BCM47XX"
 5	select SYS_HAS_CPU_MIPS32_R1
 6	select SSB
 
 7	select SSB_DRIVER_MIPS
 8	select SSB_DRIVER_EXTIF
 9	select SSB_EMBEDDED
 
10	select SSB_B43_PCI_BRIDGE if PCI
 
11	select SSB_PCICORE_HOSTMODE if PCI
 
12	default y
13	help
14	 Add support for old Broadcom BCM47xx boards with Sonics Silicon Backplane support.
15
16	 This will generate an image with support for SSB and MIPS32 R1 instruction set.
17
18config BCM47XX_BCMA
19	bool "BCMA Support for Broadcom BCM47XX"
20	select SYS_HAS_CPU_MIPS32_R2
 
 
21	select BCMA
22	select BCMA_HOST_SOC
23	select BCMA_DRIVER_MIPS
24	select BCMA_HOST_PCI if PCI
25	select BCMA_DRIVER_PCI_HOSTMODE if PCI
 
26	default y
27	help
28	 Add support for new Broadcom BCM47xx boards with Broadcom specific Advanced Microcontroller Bus.
29
30	 This will generate an image with support for BCMA and MIPS32 R2 instruction set.
31
32endif
v6.13.7
 1# SPDX-License-Identifier: GPL-2.0
 2if BCM47XX
 3
 4config BCM47XX_SSB
 5	bool "SSB Support for Broadcom BCM47XX"
 6	select SYS_HAS_CPU_BMIPS32_3300
 7	select SSB
 8	select SSB_HOST_SOC
 9	select SSB_DRIVER_MIPS
10	select SSB_DRIVER_EXTIF
11	select SSB_EMBEDDED
12	select SSB_PCIHOST if PCI
13	select SSB_B43_PCI_BRIDGE if PCI
14	select SSB_DRIVER_PCICORE if PCI
15	select SSB_PCICORE_HOSTMODE if PCI
16	select SSB_DRIVER_GPIO
17	default y
18	help
19	  Add support for old Broadcom BCM47xx boards with Sonics Silicon Backplane support.
20
21	  This will generate an image with support for SSB and MIPS32 R1 instruction set.
22
23config BCM47XX_BCMA
24	bool "BCMA Support for Broadcom BCM47XX"
25	select SYS_HAS_CPU_MIPS32_R2
26	select SYS_SUPPORTS_HIGHMEM
27	select CPU_MIPSR2_IRQ_VI
28	select BCMA
29	select BCMA_HOST_SOC
30	select BCMA_DRIVER_MIPS
31	select BCMA_DRIVER_PCI if PCI
32	select BCMA_DRIVER_PCI_HOSTMODE if PCI
33	select BCMA_DRIVER_GPIO
34	default y
35	help
36	  Add support for new Broadcom BCM47xx boards with Broadcom specific Advanced Microcontroller Bus.
37
38	  This will generate an image with support for BCMA and MIPS32 R2 instruction set.
39
40endif