From 67953f30f375886e61feffaa6a9852f17219671a Mon Sep 17 00:00:00 2001 From: John Crispin Date: Wed, 23 Dec 2015 14:44:44 +0000 Subject: ar71xx: update QCA956x support - separate qca956x and tp9343 (they use different IDs) - rename qca9561->qca956x for consistency - add missing bits (device reset, gpio output select) - fix wmac setup Signed-off-by: Roman Yeryomin SVN-Revision: 47981 --- .../739-MIPS-ath79-add-gpio-func-register-for-QCA955x-SoC.patch | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'target/linux/ar71xx/patches-4.1/739-MIPS-ath79-add-gpio-func-register-for-QCA955x-SoC.patch') diff --git a/target/linux/ar71xx/patches-4.1/739-MIPS-ath79-add-gpio-func-register-for-QCA955x-SoC.patch b/target/linux/ar71xx/patches-4.1/739-MIPS-ath79-add-gpio-func-register-for-QCA955x-SoC.patch index 23425dca65..e60cd44bb4 100644 --- a/target/linux/ar71xx/patches-4.1/739-MIPS-ath79-add-gpio-func-register-for-QCA955x-SoC.patch +++ b/target/linux/ar71xx/patches-4.1/739-MIPS-ath79-add-gpio-func-register-for-QCA955x-SoC.patch @@ -1,6 +1,6 @@ --- a/arch/mips/ath79/gpio.c +++ b/arch/mips/ath79/gpio.c -@@ -221,15 +221,27 @@ void __init ath79_gpio_output_select(uns +@@ -221,15 +221,30 @@ void __init ath79_gpio_output_select(uns { void __iomem *base = ath79_gpio_base; unsigned long flags; @@ -9,7 +9,7 @@ + unsigned long gpio_count; u32 t, s; -- BUG_ON(!soc_is_ar934x() && !soc_is_qca953x()); +- BUG_ON(!soc_is_ar934x() && !soc_is_qca953x() && !soc_is_qca956x()); + if (soc_is_ar934x()) { + gpio_count = AR934X_GPIO_COUNT; + reg_base = AR934X_GPIO_REG_OUT_FUNC0; @@ -19,6 +19,9 @@ + } else if (soc_is_qca955x()) { + gpio_count = QCA955X_GPIO_COUNT; + reg_base = QCA955X_GPIO_REG_OUT_FUNC0; ++ } else if (soc_is_qca956x()) { ++ gpio_count = QCA956X_GPIO_COUNT; ++ reg_base = QCA956X_GPIO_REG_OUT_FUNC0; + } else { + BUG(); + } -- cgit v1.2.3