mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-04 04:54:18 +00:00
4eba86820f
Refreshed all patches. Fixes: - CVE-2019-14896 - CVE-2019-14897 Remove upstreamed: - 023-0007-crypto-crypto4xx-Fix-wrong-ppc4xx_trng_probe-ppc4xx_.patch Altered patches: - 102-MIPS-BCM63XX-move-code-touching-the-USB-private-regi.patch - 105-MIPS-BCM63XX-add-support-for-the-on-chip-OHCI-contro.patch - 106-MIPS-BCM63XX-register-OHCI-controller-if-board-enabl.patch - 108-MIPS-BCM63XX-add-support-for-the-on-chip-EHCI-contro.patch - 207-MIPS-BCM63XX-move-device-registration-code-into-its-.patch - 350-MIPS-BCM63XX-support-settings-num-usbh-ports.patch - 356-MIPS-BCM63XX-move-fallback-sprom-support-into-its-ow.patch - 390-MIPS-BCM63XX-do-not-register-SPI-controllers.patch - 391-MIPS-BCM63XX-do-not-register-uart.patch - 392-MIPS-BCM63XX-remove-leds-and-buttons.patch - 416-BCM63XX-add-a-fixup-for-ath9k-devices.patch - 422-BCM63XX-add-a-fixup-for-rt2x00-devices.patch - Compile-tested on: brcm63xx, cns3xxx Runtime-tested on: cns3xxx Signed-off-by: Koen Vandeputte <koen.vandeputte@ncentric.com>
141 lines
3.8 KiB
Diff
141 lines
3.8 KiB
Diff
From 83131acbfb59760a19f3711c09526e191c8aad54 Mon Sep 17 00:00:00 2001
|
|
From: Jonas Gorski <jogo@openwrt.org>
|
|
Date: Tue, 29 Jul 2014 21:52:56 +0200
|
|
Subject: [PATCH 03/10] MIPS: BCM63XX: make fallback sprom optional
|
|
|
|
Some devices do not provide enough mac addresses to populate wifi in
|
|
addition to ethernet.
|
|
|
|
Use having pci enabled as a rough heuristic which boards should have it
|
|
enabled.
|
|
|
|
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
|
|
---
|
|
arch/mips/bcm63xx/boards/board_bcm963xx.c | 12 ++++++++++++
|
|
arch/mips/bcm63xx/boards/board_common.c | 5 +++--
|
|
arch/mips/include/asm/mach-bcm63xx/board_bcm963xx.h | 1 +
|
|
3 files changed, 16 insertions(+), 2 deletions(-)
|
|
|
|
--- a/arch/mips/bcm63xx/boards/board_bcm963xx.c
|
|
+++ b/arch/mips/bcm63xx/boards/board_bcm963xx.c
|
|
@@ -70,6 +70,7 @@ static struct board_info __initdata boar
|
|
.has_uart0 = 1,
|
|
.has_pci = 1,
|
|
.has_usbd = 0,
|
|
+ .use_fallback_sprom = 1,
|
|
|
|
.usbd = {
|
|
.use_fullspeed = 0,
|
|
@@ -219,6 +220,7 @@ static struct board_info __initdata boar
|
|
.has_uart0 = 1,
|
|
.has_enet0 = 1,
|
|
.has_pci = 1,
|
|
+ .use_fallback_sprom = 1,
|
|
|
|
.enet0 = {
|
|
.has_phy = 1,
|
|
@@ -264,6 +266,7 @@ static struct board_info __initdata boar
|
|
.has_enet0 = 1,
|
|
.has_enet1 = 1,
|
|
.has_pci = 1,
|
|
+ .use_fallback_sprom = 1,
|
|
|
|
.enet0 = {
|
|
.has_phy = 1,
|
|
@@ -316,6 +319,7 @@ static struct board_info __initdata boar
|
|
.has_enet0 = 1,
|
|
.has_enet1 = 1,
|
|
.has_pci = 1,
|
|
+ .use_fallback_sprom = 1,
|
|
|
|
.enet0 = {
|
|
.has_phy = 1,
|
|
@@ -370,6 +374,7 @@ static struct board_info __initdata boar
|
|
.has_enet0 = 1,
|
|
.has_enet1 = 1,
|
|
.has_pci = 1,
|
|
+ .use_fallback_sprom = 1,
|
|
|
|
.enet0 = {
|
|
.has_phy = 1,
|
|
@@ -420,6 +425,7 @@ static struct board_info __initdata boar
|
|
.has_enet0 = 1,
|
|
.has_enet1 = 1,
|
|
.has_pci = 1,
|
|
+ .use_fallback_sprom = 1,
|
|
|
|
.enet0 = {
|
|
.has_phy = 1,
|
|
@@ -443,6 +449,7 @@ static struct board_info __initdata boar
|
|
.has_enet0 = 1,
|
|
.has_enet1 = 1,
|
|
.has_pci = 1,
|
|
+ .use_fallback_sprom = 1,
|
|
|
|
.enet0 = {
|
|
.has_phy = 1,
|
|
@@ -461,6 +468,7 @@ static struct board_info __initdata boar
|
|
|
|
.has_uart0 = 1,
|
|
.has_pci = 1,
|
|
+ .use_fallback_sprom = 1,
|
|
.has_ohci0 = 1,
|
|
|
|
.has_enet0 = 1,
|
|
@@ -483,6 +491,7 @@ static struct board_info __initdata boar
|
|
.has_enet0 = 1,
|
|
.has_enet1 = 1,
|
|
.has_pci = 1,
|
|
+ .use_fallback_sprom = 1,
|
|
|
|
.enet0 = {
|
|
.has_phy = 1,
|
|
@@ -509,6 +518,7 @@ static struct board_info __initdata boar
|
|
.has_enet0 = 1,
|
|
.has_enet1 = 1,
|
|
.has_pci = 1,
|
|
+ .use_fallback_sprom = 1,
|
|
|
|
.enet0 = {
|
|
.has_phy = 1,
|
|
@@ -561,6 +571,7 @@ static struct board_info __initdata boar
|
|
.has_enet0 = 1,
|
|
.has_enet1 = 1,
|
|
.has_pci = 1,
|
|
+ .use_fallback_sprom = 1,
|
|
|
|
.enet0 = {
|
|
.has_phy = 1,
|
|
@@ -632,6 +643,7 @@ static struct board_info __initdata boar
|
|
.has_enet0 = 1,
|
|
.has_enet1 = 1,
|
|
.has_pci = 1,
|
|
+ .use_fallback_sprom = 1,
|
|
|
|
.enet0 = {
|
|
.has_phy = 1,
|
|
--- a/arch/mips/bcm63xx/boards/board_common.c
|
|
+++ b/arch/mips/bcm63xx/boards/board_common.c
|
|
@@ -187,8 +187,9 @@ int __init board_register_devices(void)
|
|
* do this after registering enet devices
|
|
*/
|
|
|
|
- if (board_get_mac_address(board.fallback_sprom.mac_addr) ||
|
|
- bcm63xx_register_fallback_sprom(&board.fallback_sprom))
|
|
+ if (board.use_fallback_sprom &&
|
|
+ (board_get_mac_address(board.fallback_sprom.mac_addr) ||
|
|
+ bcm63xx_register_fallback_sprom(&board.fallback_sprom)))
|
|
pr_err(PFX "failed to register fallback SPROM\n");
|
|
|
|
bcm63xx_spi_register();
|
|
--- a/arch/mips/include/asm/mach-bcm63xx/board_bcm963xx.h
|
|
+++ b/arch/mips/include/asm/mach-bcm63xx/board_bcm963xx.h
|
|
@@ -33,6 +33,7 @@ struct board_info {
|
|
unsigned int has_usbd:1;
|
|
unsigned int has_uart0:1;
|
|
unsigned int has_uart1:1;
|
|
+ unsigned int use_fallback_sprom:1;
|
|
|
|
/* ethernet config */
|
|
struct bcm63xx_enet_platform_data enet0;
|