forked from Freescale/linux-fslc
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MIPS: BCM63xx: Add support for the Broadcom BCM63xx family of SOCs.
Signed-off-by: Maxime Bizon <mbizon@freebox.fr> Signed-off-by: Florian Fainelli <florian@openwrt.org> Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
- Loading branch information
1 parent
0de663e
commit e7300d0
Showing
40 changed files
with
5,896 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
menu "CPU support" | ||
depends on BCM63XX | ||
|
||
config BCM63XX_CPU_6338 | ||
bool "support 6338 CPU" | ||
select HW_HAS_PCI | ||
select USB_ARCH_HAS_OHCI | ||
select USB_OHCI_BIG_ENDIAN_DESC | ||
select USB_OHCI_BIG_ENDIAN_MMIO | ||
|
||
config BCM63XX_CPU_6345 | ||
bool "support 6345 CPU" | ||
select USB_OHCI_BIG_ENDIAN_DESC | ||
select USB_OHCI_BIG_ENDIAN_MMIO | ||
|
||
config BCM63XX_CPU_6348 | ||
bool "support 6348 CPU" | ||
select HW_HAS_PCI | ||
|
||
config BCM63XX_CPU_6358 | ||
bool "support 6358 CPU" | ||
select HW_HAS_PCI | ||
endmenu | ||
|
||
source "arch/mips/bcm63xx/boards/Kconfig" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
obj-y += clk.o cpu.o cs.o gpio.o irq.o prom.o setup.o timer.o \ | ||
dev-dsp.o | ||
obj-$(CONFIG_EARLY_PRINTK) += early_printk.o | ||
|
||
obj-y += boards/ | ||
|
||
EXTRA_CFLAGS += -Werror |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
choice | ||
prompt "Board support" | ||
depends on BCM63XX | ||
default BOARD_BCM963XX | ||
|
||
config BOARD_BCM963XX | ||
bool "Generic Broadcom 963xx boards" | ||
select SSB | ||
help | ||
|
||
endchoice |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
obj-$(CONFIG_BOARD_BCM963XX) += board_bcm963xx.o | ||
|
||
EXTRA_CFLAGS += -Werror |
Oops, something went wrong.