diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2012-04-19 21:32:05 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2012-04-19 21:32:05 +0000 |
commit | d83124454ab9f1a86a2133fa2b86f5694154e97c (patch) | |
tree | 71a1b0bcb5c85fadaf5851259f84c0f7ad14c8cd /target/linux/ar71xx/patches-3.2/009-MIPS-ath79-Add-AR933X-specific-IRQ-initialization.patch | |
parent | f41d93b307a2cad46ee787ff7cf12a798bb7c66e (diff) | |
download | upstream-d83124454ab9f1a86a2133fa2b86f5694154e97c.tar.gz upstream-d83124454ab9f1a86a2133fa2b86f5694154e97c.tar.bz2 upstream-d83124454ab9f1a86a2133fa2b86f5694154e97c.zip |
ar71xx: nuke 3.2 support
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31360 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ar71xx/patches-3.2/009-MIPS-ath79-Add-AR933X-specific-IRQ-initialization.patch')
-rw-r--r-- | target/linux/ar71xx/patches-3.2/009-MIPS-ath79-Add-AR933X-specific-IRQ-initialization.patch | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/target/linux/ar71xx/patches-3.2/009-MIPS-ath79-Add-AR933X-specific-IRQ-initialization.patch b/target/linux/ar71xx/patches-3.2/009-MIPS-ath79-Add-AR933X-specific-IRQ-initialization.patch deleted file mode 100644 index aad961e7d8..0000000000 --- a/target/linux/ar71xx/patches-3.2/009-MIPS-ath79-Add-AR933X-specific-IRQ-initialization.patch +++ /dev/null @@ -1,51 +0,0 @@ -From f2963f6a811da75e2531fd1312aa124cd73f15d5 Mon Sep 17 00:00:00 2001 -From: Gabor Juhos <juhosg@openwrt.org> -Date: Mon, 20 Jun 2011 21:26:06 +0200 -Subject: [PATCH 09/27] MIPS: ath79: Add AR933X specific IRQ initialization - -Signed-off-by: Gabor Juhos <juhosg@openwrt.org> -Cc: linux-mips@linux-mips.org -Cc: Kathy Giori <kgiori@qca.qualcomm.com> -Cc: "Luis R. Rodriguez" <rodrigue@qca.qualcomm.com> -Patchwork: https://patchwork.linux-mips.org/patch/2530/ -Signed-off-by: Ralf Baechle <ralf@linux-mips.org> ---- - arch/mips/ath79/irq.c | 5 ++++- - arch/mips/include/asm/mach-ath79/ar71xx_regs.h | 5 +++++ - 2 files changed, 9 insertions(+), 1 deletions(-) - ---- a/arch/mips/ath79/irq.c -+++ b/arch/mips/ath79/irq.c -@@ -129,7 +129,7 @@ static void __init ath79_misc_irq_init(v - - if (soc_is_ar71xx() || soc_is_ar913x()) - ath79_misc_irq_chip.irq_mask_ack = ar71xx_misc_irq_mask; -- else if (soc_is_ar724x()) -+ else if (soc_is_ar724x() || soc_is_ar933x()) - ath79_misc_irq_chip.irq_ack = ar724x_misc_irq_ack; - else - BUG(); -@@ -186,6 +186,9 @@ void __init arch_init_irq(void) - } else if (soc_is_ar913x()) { - ath79_ip2_flush_reg = AR913X_DDR_REG_FLUSH_WMAC; - ath79_ip3_flush_reg = AR913X_DDR_REG_FLUSH_USB; -+ } else if (soc_is_ar933x()) { -+ ath79_ip2_flush_reg = AR933X_DDR_REG_FLUSH_WMAC; -+ ath79_ip3_flush_reg = AR933X_DDR_REG_FLUSH_USB; - } else - BUG(); - ---- a/arch/mips/include/asm/mach-ath79/ar71xx_regs.h -+++ b/arch/mips/include/asm/mach-ath79/ar71xx_regs.h -@@ -82,6 +82,11 @@ - #define AR913X_DDR_REG_FLUSH_USB 0x84 - #define AR913X_DDR_REG_FLUSH_WMAC 0x88 - -+#define AR933X_DDR_REG_FLUSH_GE0 0x7c -+#define AR933X_DDR_REG_FLUSH_GE1 0x80 -+#define AR933X_DDR_REG_FLUSH_USB 0x84 -+#define AR933X_DDR_REG_FLUSH_WMAC 0x88 -+ - /* - * PLL block - */ |