From: Gabor Juhos Date: Thu, 1 Jul 2010 18:07:46 +0000 (+0000) Subject: backfire: rt2x00: cleanup patches (backport of r21975) X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;hb=91f85fd45981346611cd72ace15d223d00914d46 backfire: rt2x00: cleanup patches (backport of r21975) Remove 601-rt2x00-remove-mcu-requests-for-soc.patch as an equivalent patch is already included in upstream. Add 601-rt2x00-fix-hang-on-ifdown.patch which is not suitable for upstream inclusion but fixes a hang on ifdown under some circumstances and thus also fixes AP mode operation in OpenWRT. Signed-off-by: Helmut Schaa SVN-Revision: 22021 --- diff --git a/package/mac80211/Makefile b/package/mac80211/Makefile index 5ba92e4ec8..02759e1dcb 100644 --- a/package/mac80211/Makefile +++ b/package/mac80211/Makefile @@ -11,7 +11,7 @@ include $(INCLUDE_DIR)/kernel.mk PKG_NAME:=mac80211 PKG_VERSION:=2010-06-10 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE_URL:=http://mirror2.openwrt.org/sources # http://www.orbit-lab.org/kernel/compat-wireless-2.6/2010/11 \ # http://wireless.kernel.org/download/compat-wireless-2.6 diff --git a/package/mac80211/patches/601-rt2x00-fix-hang-on-ifdown.patch b/package/mac80211/patches/601-rt2x00-fix-hang-on-ifdown.patch new file mode 100644 index 0000000000..a584d00098 --- /dev/null +++ b/package/mac80211/patches/601-rt2x00-fix-hang-on-ifdown.patch @@ -0,0 +1,34 @@ +From 27ed5ec6924c17b76d65b697a162bafee7bd8e4e Mon Sep 17 00:00:00 2001 +From: Helmut Schaa +Date: Mon, 21 Jun 2010 10:03:05 +0200 +Subject: [PATCH] rt2x00: fix rt2800pci hang on ifdown + +rt2800pci hangs the system on rt305x SoC devices on ifdown. Work around +this issue by disabling TX DMA prior to restting the TX queue indices. + +This patch is not suitable for upstream inclusion but is just meant as +a workaround until a proper solution is implemented. + +Signed-off-by: Helmut Schaa +--- + drivers/net/wireless/rt2x00/rt2800pci.c | 4 ++++ + 1 files changed, 4 insertions(+), 0 deletions(-) + +diff --git a/drivers/net/wireless/rt2x00/rt2800pci.c b/drivers/net/wireless/rt2x00/rt2800pci.c +index 165da7b..bb35350 100644 +--- a/drivers/net/wireless/rt2x00/rt2800pci.c ++++ b/drivers/net/wireless/rt2x00/rt2800pci.c +@@ -737,6 +737,10 @@ static void rt2800pci_kill_tx_queue(struct rt2x00_dev *rt2x00dev, + rt2800_register_write(rt2x00dev, BCN_TIME_CFG, 0); + return; + } ++ ++ rt2800_register_read(rt2x00dev, WPDMA_GLO_CFG, ®); ++ rt2x00_set_field32(®, WPDMA_GLO_CFG_ENABLE_TX_DMA, 0); ++ rt2800_register_write(rt2x00dev, WPDMA_GLO_CFG, reg); + + rt2800_register_read(rt2x00dev, WPDMA_RST_IDX, ®); + rt2x00_set_field32(®, WPDMA_RST_IDX_DTX_IDX0, (qid == QID_AC_BE)); +-- +1.6.4.2 + diff --git a/package/mac80211/patches/601-rt2x00-remove-mcu-requests-for-soc.patch b/package/mac80211/patches/601-rt2x00-remove-mcu-requests-for-soc.patch deleted file mode 100644 index e743af3d30..0000000000 --- a/package/mac80211/patches/601-rt2x00-remove-mcu-requests-for-soc.patch +++ /dev/null @@ -1,29 +0,0 @@ -From f18d4463d092162f34a8bd226505627ceeac3e8a Mon Sep 17 00:00:00 2001 -From: Luis Correia -Date: Sat, 3 Apr 2010 12:49:53 +0100 -Subject: [PATCH] rt2x00: remove MCU requests for SoC platforms - -The ralink SoC platforms do not have an MCU. - -Signed-off-by: Luis Correia -Acked-by: Ivo van Doorn -Signed-off-by: Gertjan van Wingerde ---- - drivers/net/wireless/rt2x00/rt2800pci.c | 6 ++++++ - 1 files changed, 6 insertions(+), 0 deletions(-) - ---- a/drivers/net/wireless/rt2x00/rt2800pci.c -+++ b/drivers/net/wireless/rt2x00/rt2800pci.c -@@ -66,6 +66,12 @@ static void rt2800pci_mcu_status(struct - if (rt2x00_is_soc(rt2x00dev)) - return; - -+ /* -+ * SOC devices don't support MCU requests. -+ */ -+ if (rt2x00_is_soc(rt2x00dev)) -+ return; -+ - for (i = 0; i < 200; i++) { - rt2800_register_read(rt2x00dev, H2M_MAILBOX_CID, ®); -