From ba43aef11f1e18d6a579cb234a8a78baedae1161 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Mon, 2 May 2005 13:44:13 +0000 Subject: [PATCH] split b44 patches, add performance patch from oleg, need more testing on some other hardware then asus wl500g/wrt54gsv10 SVN-Revision: 786 --- ...port.patch => 309-drivers_net_b44_c.patch} | 35 ++----------------- .../314-drivers_net_b44_h.patch | 11 ++++++ .../315-include_linux_pci_ids_h.patch | 10 ++++++ 3 files changed, 24 insertions(+), 32 deletions(-) rename openwrt/package/linux/kernel-patches/{309-b44-bcm47xx-support.patch => 309-drivers_net_b44_c.patch} (83%) create mode 100644 openwrt/package/linux/kernel-patches/314-drivers_net_b44_h.patch create mode 100644 openwrt/package/linux/kernel-patches/315-include_linux_pci_ids_h.patch diff --git a/openwrt/package/linux/kernel-patches/309-b44-bcm47xx-support.patch b/openwrt/package/linux/kernel-patches/309-drivers_net_b44_c.patch similarity index 83% rename from openwrt/package/linux/kernel-patches/309-b44-bcm47xx-support.patch rename to openwrt/package/linux/kernel-patches/309-drivers_net_b44_c.patch index d803fc96fa..2794706260 100644 --- a/openwrt/package/linux/kernel-patches/309-b44-bcm47xx-support.patch +++ b/openwrt/package/linux/kernel-patches/309-drivers_net_b44_c.patch @@ -1,11 +1,5 @@ -This patch adds BCM47xx support for the B44 driver. It has been backported -from Florian Schirmer's 2.6 port. - -Imre Kaloz - -diff -Nur linux-2.4.29/drivers/net/b44.c linux-2.4.29-b44/drivers/net/b44.c ---- linux-2.4.29/drivers/net/b44.c 2004-08-08 01:26:05.000000000 +0200 -+++ linux-2.4.29-b44/drivers/net/b44.c 2005-04-09 10:17:33.000000000 +0200 +--- linux-2.4.30/drivers/net/b44.c 2004-08-08 01:26:05.000000000 +0200 ++++ openwrt/build_mipsel/linux-2.4.30/drivers/net/b44.c 2005-05-01 20:10:19.193354917 +0200 @@ -1,7 +1,8 @@ /* b44.c: Broadcom 4400 device driver. * @@ -175,7 +169,7 @@ diff -Nur linux-2.4.29/drivers/net/b44.c linux-2.4.29-b44/drivers/net/b44.c - ssb_pci_setup(bp, (bp->core_unit == 0 ? - SBINTVEC_ENET0 : - SBINTVEC_ENET1)); -+ if (bp->pdev->device != PCI_DEVICE_ID_BCM4713) ++ /*if (bp->pdev->device != PCI_DEVICE_ID_BCM4713)*/ + ssb_pci_setup(bp, (bp->core_unit == 0 ? + SBINTVEC_ENET0 : + SBINTVEC_ENET1)); @@ -276,26 +270,3 @@ diff -Nur linux-2.4.29/drivers/net/b44.c linux-2.4.29-b44/drivers/net/b44.c for (i = 0; i < 6; i++) printk("%2.2x%c", dev->dev_addr[i], i == 5 ? '\n' : ':'); -diff -Nur linux-2.4.29/drivers/net/b44.h linux-2.4.29-b44/drivers/net/b44.h ---- linux-2.4.29/drivers/net/b44.h 2003-08-25 13:44:42.000000000 +0200 -+++ linux-2.4.29-b44/drivers/net/b44.h 2005-04-09 10:13:55.000000000 +0200 -@@ -461,6 +461,8 @@ - }; - - #define B44_MCAST_TABLE_SIZE 32 -+#define B44_PHY_ADDR_NO_PHY 30 -+#define B44_MDC_RATIO 5000000 - - /* SW copy of device statistics, kept up to date by periodic timer - * which probes HW values. Must have same relative layout as HW -diff -Nur linux-2.4.29/include/linux/pci_ids.h linux-2.4.29-b44/include/linux/pci_ids.h ---- linux-2.4.29/include/linux/pci_ids.h 2005-01-19 15:10:12.000000000 +0100 -+++ linux-2.4.29-b44/include/linux/pci_ids.h 2005-04-09 10:13:55.000000000 +0200 -@@ -1735,6 +1735,7 @@ - #define PCI_DEVICE_ID_TIGON3_5901_2 0x170e - #define PCI_DEVICE_ID_BCM4401 0x4401 - #define PCI_DEVICE_ID_BCM4401B0 0x4402 -+#define PCI_DEVICE_ID_BCM4713 0x4713 - - #define PCI_VENDOR_ID_ENE 0x1524 - #define PCI_DEVICE_ID_ENE_1211 0x1211 diff --git a/openwrt/package/linux/kernel-patches/314-drivers_net_b44_h.patch b/openwrt/package/linux/kernel-patches/314-drivers_net_b44_h.patch new file mode 100644 index 0000000000..992c66ef89 --- /dev/null +++ b/openwrt/package/linux/kernel-patches/314-drivers_net_b44_h.patch @@ -0,0 +1,11 @@ +--- linux-2.4.30/drivers/net/b44.h 2003-08-25 13:44:42.000000000 +0200 ++++ openwrt/build_mipsel/linux-2.4.30/drivers/net/b44.h 2005-05-01 14:43:20.000000000 +0200 +@@ -461,6 +461,8 @@ + }; + + #define B44_MCAST_TABLE_SIZE 32 ++#define B44_PHY_ADDR_NO_PHY 30 ++#define B44_MDC_RATIO 5000000 + + /* SW copy of device statistics, kept up to date by periodic timer + * which probes HW values. Must have same relative layout as HW diff --git a/openwrt/package/linux/kernel-patches/315-include_linux_pci_ids_h.patch b/openwrt/package/linux/kernel-patches/315-include_linux_pci_ids_h.patch new file mode 100644 index 0000000000..88e56979f3 --- /dev/null +++ b/openwrt/package/linux/kernel-patches/315-include_linux_pci_ids_h.patch @@ -0,0 +1,10 @@ +--- linux-2.4.30/include/linux/pci_ids.h 2005-04-04 03:42:20.000000000 +0200 ++++ openwrt/build_mipsel/linux-2.4.30/include/linux/pci_ids.h 2005-05-01 14:43:20.000000000 +0200 +@@ -1735,6 +1735,7 @@ + #define PCI_DEVICE_ID_TIGON3_5901_2 0x170e + #define PCI_DEVICE_ID_BCM4401 0x4401 + #define PCI_DEVICE_ID_BCM4401B0 0x4402 ++#define PCI_DEVICE_ID_BCM4713 0x4713 + + #define PCI_VENDOR_ID_ENE 0x1524 + #define PCI_DEVICE_ID_ENE_1211 0x1211 -- 2.30.2