ar71xx: merge board specific patches into one
[openwrt.git] / target / linux / ar71xx / patches-3.14 / 707-MIPS-ath79-add-support-for-QCA953x-SoC.patch
1 From 5300a7cd7ed2f88488ddba62947b9c6bb9663777 Mon Sep 17 00:00:00 2001
2 Message-Id: <5300a7cd7ed2f88488ddba62947b9c6bb9663777.1396122227.git.mschiffer@universe-factory.net>
3 From: Matthias Schiffer <mschiffer@universe-factory.net>
4 Date: Sat, 29 Mar 2014 20:26:08 +0100
5 Subject: [PATCH 1/2] MIPS: ath79: add support for QCA953x SoC
6
7 Note that the clock calculation looks very similar to the QCA955x, but the
8 meaning of the bits CPUCLK_FROM_CPUPLL and DDRCLK_FROM_DDRPLL is reversed.
9 ---
10  arch/mips/ath79/Kconfig                        |  6 +-
11  arch/mips/ath79/clock.c                        | 78 ++++++++++++++++++++++++++
12  arch/mips/ath79/common.c                       |  4 ++
13  arch/mips/ath79/dev-common.c                   |  1 +
14  arch/mips/ath79/dev-wmac.c                     | 20 +++++++
15  arch/mips/ath79/early_printk.c                 |  1 +
16  arch/mips/ath79/gpio.c                         |  4 +-
17  arch/mips/ath79/irq.c                          |  4 ++
18  arch/mips/ath79/setup.c                        |  8 ++-
19  arch/mips/include/asm/mach-ath79/ar71xx_regs.h | 48 ++++++++++++++++
20  arch/mips/include/asm/mach-ath79/ath79.h       | 11 ++++
21  11 files changed, 182 insertions(+), 3 deletions(-)
22
23 --- a/arch/mips/ath79/Kconfig
24 +++ b/arch/mips/ath79/Kconfig
25 @@ -1165,6 +1165,10 @@ config SOC_AR934X
26         select PCI_AR724X if PCI
27         def_bool n
28  
29 +config SOC_QCA953X
30 +       select USB_ARCH_HAS_EHCI
31 +       def_bool n
32 +
33  config SOC_QCA955X
34         select USB_ARCH_HAS_EHCI
35         select HW_HAS_PCI
36 @@ -1208,7 +1212,7 @@ config ATH79_DEV_USB
37         def_bool n
38  
39  config ATH79_DEV_WMAC
40 -       depends on (SOC_AR913X || SOC_AR933X || SOC_AR934X || SOC_QCA955X)
41 +       depends on (SOC_AR913X || SOC_AR933X || SOC_AR934X || SOC_QCA953X || SOC_QCA955X)
42         def_bool n
43  
44  config ATH79_NVRAM
45 --- a/arch/mips/ath79/clock.c
46 +++ b/arch/mips/ath79/clock.c
47 @@ -350,6 +350,91 @@ static void __init ar934x_clocks_init(vo
48         iounmap(dpll_base);
49  }
50  
51 +static void __init qca953x_clocks_init(void)
52 +{
53 +       unsigned long ref_rate;
54 +       unsigned long cpu_rate;
55 +       unsigned long ddr_rate;
56 +       unsigned long ahb_rate;
57 +       u32 pll, out_div, ref_div, nint, frac, clk_ctrl, postdiv;
58 +       u32 cpu_pll, ddr_pll;
59 +       u32 bootstrap;
60 +
61 +       bootstrap = ath79_reset_rr(QCA953X_RESET_REG_BOOTSTRAP);
62 +       if (bootstrap & QCA953X_BOOTSTRAP_REF_CLK_40)
63 +               ref_rate = 40 * 1000 * 1000;
64 +       else
65 +               ref_rate = 25 * 1000 * 1000;
66 +
67 +       pll = ath79_pll_rr(QCA953X_PLL_CPU_CONFIG_REG);
68 +       out_div = (pll >> QCA953X_PLL_CPU_CONFIG_OUTDIV_SHIFT) &
69 +                 QCA953X_PLL_CPU_CONFIG_OUTDIV_MASK;
70 +       ref_div = (pll >> QCA953X_PLL_CPU_CONFIG_REFDIV_SHIFT) &
71 +                 QCA953X_PLL_CPU_CONFIG_REFDIV_MASK;
72 +       nint = (pll >> QCA953X_PLL_CPU_CONFIG_NINT_SHIFT) &
73 +              QCA953X_PLL_CPU_CONFIG_NINT_MASK;
74 +       frac = (pll >> QCA953X_PLL_CPU_CONFIG_NFRAC_SHIFT) &
75 +              QCA953X_PLL_CPU_CONFIG_NFRAC_MASK;
76 +
77 +       cpu_pll = nint * ref_rate / ref_div;
78 +       cpu_pll += frac * (ref_rate >> 6) / ref_div;
79 +       cpu_pll /= (1 << out_div);
80 +
81 +       pll = ath79_pll_rr(QCA953X_PLL_DDR_CONFIG_REG);
82 +       out_div = (pll >> QCA953X_PLL_DDR_CONFIG_OUTDIV_SHIFT) &
83 +                 QCA953X_PLL_DDR_CONFIG_OUTDIV_MASK;
84 +       ref_div = (pll >> QCA953X_PLL_DDR_CONFIG_REFDIV_SHIFT) &
85 +                 QCA953X_PLL_DDR_CONFIG_REFDIV_MASK;
86 +       nint = (pll >> QCA953X_PLL_DDR_CONFIG_NINT_SHIFT) &
87 +              QCA953X_PLL_DDR_CONFIG_NINT_MASK;
88 +       frac = (pll >> QCA953X_PLL_DDR_CONFIG_NFRAC_SHIFT) &
89 +              QCA953X_PLL_DDR_CONFIG_NFRAC_MASK;
90 +
91 +       ddr_pll = nint * ref_rate / ref_div;
92 +       ddr_pll += frac * (ref_rate >> 6) / (ref_div << 4);
93 +       ddr_pll /= (1 << out_div);
94 +
95 +       clk_ctrl = ath79_pll_rr(QCA953X_PLL_CLK_CTRL_REG);
96 +
97 +       postdiv = (clk_ctrl >> QCA953X_PLL_CLK_CTRL_CPU_POST_DIV_SHIFT) &
98 +                 QCA953X_PLL_CLK_CTRL_CPU_POST_DIV_MASK;
99 +
100 +       if (clk_ctrl & QCA953X_PLL_CLK_CTRL_CPU_PLL_BYPASS)
101 +               cpu_rate = ref_rate;
102 +       else if (clk_ctrl & QCA953X_PLL_CLK_CTRL_CPUCLK_FROM_CPUPLL)
103 +               cpu_rate = cpu_pll / (postdiv + 1);
104 +       else
105 +               cpu_rate = ddr_pll / (postdiv + 1);
106 +
107 +       postdiv = (clk_ctrl >> QCA953X_PLL_CLK_CTRL_DDR_POST_DIV_SHIFT) &
108 +                 QCA953X_PLL_CLK_CTRL_DDR_POST_DIV_MASK;
109 +
110 +       if (clk_ctrl & QCA953X_PLL_CLK_CTRL_DDR_PLL_BYPASS)
111 +               ddr_rate = ref_rate;
112 +       else if (clk_ctrl & QCA953X_PLL_CLK_CTRL_DDRCLK_FROM_DDRPLL)
113 +               ddr_rate = ddr_pll / (postdiv + 1);
114 +       else
115 +               ddr_rate = cpu_pll / (postdiv + 1);
116 +
117 +       postdiv = (clk_ctrl >> QCA953X_PLL_CLK_CTRL_AHB_POST_DIV_SHIFT) &
118 +                 QCA953X_PLL_CLK_CTRL_AHB_POST_DIV_MASK;
119 +
120 +       if (clk_ctrl & QCA953X_PLL_CLK_CTRL_AHB_PLL_BYPASS)
121 +               ahb_rate = ref_rate;
122 +       else if (clk_ctrl & QCA953X_PLL_CLK_CTRL_AHBCLK_FROM_DDRPLL)
123 +               ahb_rate = ddr_pll / (postdiv + 1);
124 +       else
125 +               ahb_rate = cpu_pll / (postdiv + 1);
126 +
127 +       ath79_add_sys_clkdev("ref", ref_rate);
128 +       ath79_add_sys_clkdev("cpu", cpu_rate);
129 +       ath79_add_sys_clkdev("ddr", ddr_rate);
130 +       ath79_add_sys_clkdev("ahb", ahb_rate);
131 +
132 +       clk_add_alias("wdt", NULL, "ref", NULL);
133 +       clk_add_alias("uart", NULL, "ref", NULL);
134 +}
135 +
136  static void __init qca955x_clocks_init(void)
137  {
138         unsigned long ref_rate;
139 @@ -447,6 +532,8 @@ void __init ath79_clocks_init(void)
140                 ar933x_clocks_init();
141         else if (soc_is_ar934x())
142                 ar934x_clocks_init();
143 +       else if (soc_is_qca953x())
144 +               qca953x_clocks_init();
145         else if (soc_is_qca955x())
146                 qca955x_clocks_init();
147         else
148 --- a/arch/mips/ath79/common.c
149 +++ b/arch/mips/ath79/common.c
150 @@ -73,6 +73,8 @@ void ath79_device_reset_set(u32 mask)
151                 reg = AR933X_RESET_REG_RESET_MODULE;
152         else if (soc_is_ar934x())
153                 reg = AR934X_RESET_REG_RESET_MODULE;
154 +       else if (soc_is_qca953x())
155 +               reg = QCA953X_RESET_REG_RESET_MODULE;
156         else if (soc_is_qca955x())
157                 reg = QCA955X_RESET_REG_RESET_MODULE;
158         else
159 @@ -101,6 +103,8 @@ void ath79_device_reset_clear(u32 mask)
160                 reg = AR933X_RESET_REG_RESET_MODULE;
161         else if (soc_is_ar934x())
162                 reg = AR934X_RESET_REG_RESET_MODULE;
163 +       else if (soc_is_qca953x())
164 +               reg = QCA953X_RESET_REG_RESET_MODULE;
165         else if (soc_is_qca955x())
166                 reg = QCA955X_RESET_REG_RESET_MODULE;
167         else
168 --- a/arch/mips/ath79/dev-common.c
169 +++ b/arch/mips/ath79/dev-common.c
170 @@ -93,6 +93,7 @@ void __init ath79_register_uart(void)
171             soc_is_ar724x() ||
172             soc_is_ar913x() ||
173             soc_is_ar934x() ||
174 +           soc_is_qca953x() ||
175             soc_is_qca955x()) {
176                 ath79_uart_data[0].uartclk = uart_clk_rate;
177                 platform_device_register(&ath79_uart_device);
178 --- a/arch/mips/ath79/dev-wmac.c
179 +++ b/arch/mips/ath79/dev-wmac.c
180 @@ -101,7 +101,7 @@ static int ar933x_wmac_reset(void)
181         return -ETIMEDOUT;
182  }
183  
184 -static int ar933x_r1_get_wmac_revision(void)
185 +static int ar93xx_get_soc_revision(void)
186  {
187         return ath79_soc_rev;
188  }
189 @@ -126,7 +126,7 @@ static void __init ar933x_wmac_setup(voi
190                 ath79_wmac_data.is_clk_25mhz = true;
191  
192         if (ath79_soc_rev == 1)
193 -               ath79_wmac_data.get_mac_revision = ar933x_r1_get_wmac_revision;
194 +               ath79_wmac_data.get_mac_revision = ar93xx_get_soc_revision;
195  
196         ath79_wmac_data.external_reset = ar933x_wmac_reset;
197  }
198 @@ -149,6 +149,26 @@ static void ar934x_wmac_setup(void)
199                 ath79_wmac_data.is_clk_25mhz = true;
200  }
201  
202 +static void qca953x_wmac_setup(void)
203 +{
204 +       u32 t;
205 +
206 +       ath79_wmac_device.name = "qca953x_wmac";
207 +
208 +       ath79_wmac_resources[0].start = QCA953X_WMAC_BASE;
209 +       ath79_wmac_resources[0].end = QCA953X_WMAC_BASE + QCA953X_WMAC_SIZE - 1;
210 +       ath79_wmac_resources[1].start = ATH79_CPU_IRQ(2);
211 +       ath79_wmac_resources[1].end = ATH79_CPU_IRQ(2);
212 +
213 +       t = ath79_reset_rr(QCA953X_RESET_REG_BOOTSTRAP);
214 +       if (t & QCA953X_BOOTSTRAP_REF_CLK_40)
215 +               ath79_wmac_data.is_clk_25mhz = false;
216 +       else
217 +               ath79_wmac_data.is_clk_25mhz = true;
218 +
219 +       ath79_wmac_data.get_mac_revision = ar93xx_get_soc_revision;
220 +}
221 +
222  static void qca955x_wmac_setup(void)
223  {
224         u32 t;
225 @@ -366,6 +386,8 @@ void __init ath79_register_wmac(u8 *cal_
226                 ar933x_wmac_setup();
227         else if (soc_is_ar934x())
228                 ar934x_wmac_setup();
229 +       else if (soc_is_qca953x())
230 +               qca953x_wmac_setup();
231         else if (soc_is_qca955x())
232                 qca955x_wmac_setup();
233         else
234 --- a/arch/mips/ath79/early_printk.c
235 +++ b/arch/mips/ath79/early_printk.c
236 @@ -114,6 +114,7 @@ static void prom_putchar_init(void)
237         case REV_ID_MAJOR_AR9341:
238         case REV_ID_MAJOR_AR9342:
239         case REV_ID_MAJOR_AR9344:
240 +       case REV_ID_MAJOR_QCA9533:
241         case REV_ID_MAJOR_QCA9556:
242         case REV_ID_MAJOR_QCA9558:
243                 _prom_putchar = prom_putchar_ar71xx;
244 --- a/arch/mips/ath79/gpio.c
245 +++ b/arch/mips/ath79/gpio.c
246 @@ -224,6 +224,8 @@ void __init ath79_gpio_init(void)
247                 ath79_gpio_count = AR933X_GPIO_COUNT;
248         else if (soc_is_ar934x())
249                 ath79_gpio_count = AR934X_GPIO_COUNT;
250 +       else if (soc_is_qca953x())
251 +               ath79_gpio_count = QCA953X_GPIO_COUNT;
252         else if (soc_is_qca955x())
253                 ath79_gpio_count = QCA955X_GPIO_COUNT;
254         else
255 @@ -231,7 +233,7 @@ void __init ath79_gpio_init(void)
256  
257         ath79_gpio_base = ioremap_nocache(AR71XX_GPIO_BASE, AR71XX_GPIO_SIZE);
258         ath79_gpio_chip.ngpio = ath79_gpio_count;
259 -       if (soc_is_ar934x() || soc_is_qca955x()) {
260 +       if (soc_is_ar934x() || soc_is_qca953x() || soc_is_qca955x()) {
261                 ath79_gpio_chip.direction_input = ar934x_gpio_direction_input;
262                 ath79_gpio_chip.direction_output = ar934x_gpio_direction_output;
263         }
264 --- a/arch/mips/ath79/irq.c
265 +++ b/arch/mips/ath79/irq.c
266 @@ -106,6 +106,7 @@ static void __init ath79_misc_irq_init(v
267         else if (soc_is_ar724x() ||
268                  soc_is_ar933x() ||
269                  soc_is_ar934x() ||
270 +                soc_is_qca953x() ||
271                  soc_is_qca955x())
272                 ath79_misc_irq_chip.irq_ack = ar724x_misc_irq_ack;
273         else
274 @@ -352,6 +353,9 @@ void __init arch_init_irq(void)
275         } else if (soc_is_ar934x()) {
276                 ath79_ip2_handler = ath79_default_ip2_handler;
277                 ath79_ip3_handler = ar934x_ip3_handler;
278 +       } else if (soc_is_qca953x()) {
279 +               ath79_ip2_handler = ath79_default_ip2_handler;
280 +               ath79_ip3_handler = ath79_default_ip3_handler;
281         } else if (soc_is_qca955x()) {
282                 ath79_ip2_handler = ath79_default_ip2_handler;
283                 ath79_ip3_handler = ath79_default_ip3_handler;
284 --- a/arch/mips/ath79/setup.c
285 +++ b/arch/mips/ath79/setup.c
286 @@ -151,6 +151,12 @@ static void __init ath79_detect_sys_type
287                 rev = id & AR934X_REV_ID_REVISION_MASK;
288                 break;
289  
290 +       case REV_ID_MAJOR_QCA9533:
291 +               ath79_soc = ATH79_SOC_QCA9533;
292 +               chip = "9533";
293 +               rev = id & QCA953X_REV_ID_REVISION_MASK;
294 +               break;
295 +
296         case REV_ID_MAJOR_QCA9556:
297                 ath79_soc = ATH79_SOC_QCA9556;
298                 chip = "9556";
299 @@ -169,7 +175,7 @@ static void __init ath79_detect_sys_type
300  
301         ath79_soc_rev = rev;
302  
303 -       if (soc_is_qca955x())
304 +       if (soc_is_qca953x() || soc_is_qca955x())
305                 sprintf(ath79_sys_type, "Qualcomm Atheros QCA%s rev %u",
306                         chip, rev);
307         else
308 --- a/arch/mips/include/asm/mach-ath79/ar71xx_regs.h
309 +++ b/arch/mips/include/asm/mach-ath79/ar71xx_regs.h
310 @@ -105,6 +105,9 @@
311  #define AR934X_SRIF_BASE       (AR71XX_APB_BASE + 0x00116000)
312  #define AR934X_SRIF_SIZE       0x1000
313  
314 +#define QCA953X_WMAC_BASE      (AR71XX_APB_BASE + 0x00100000)
315 +#define QCA953X_WMAC_SIZE      0x20000
316 +
317  #define QCA955X_PCI_MEM_BASE0  0x10000000
318  #define QCA955X_PCI_MEM_BASE1  0x12000000
319  #define QCA955X_PCI_MEM_SIZE   0x02000000
320 @@ -279,6 +282,43 @@
321  
322  #define AR934X_PLL_SWITCH_CLOCK_CONTROL_MDIO_CLK_SEL   BIT(6)
323  
324 +#define QCA953X_PLL_CPU_CONFIG_REG             0x00
325 +#define QCA953X_PLL_DDR_CONFIG_REG             0x04
326 +#define QCA953X_PLL_CLK_CTRL_REG               0x08
327 +#define QCA953X_PLL_ETH_XMII_CONTROL_REG       0x2c
328 +#define QCA953X_PLL_ETH_SGMII_CONTROL_REG      0x48
329 +
330 +#define QCA953X_PLL_CPU_CONFIG_NFRAC_SHIFT     0
331 +#define QCA953X_PLL_CPU_CONFIG_NFRAC_MASK      0x3f
332 +#define QCA953X_PLL_CPU_CONFIG_NINT_SHIFT      6
333 +#define QCA953X_PLL_CPU_CONFIG_NINT_MASK       0x3f
334 +#define QCA953X_PLL_CPU_CONFIG_REFDIV_SHIFT    12
335 +#define QCA953X_PLL_CPU_CONFIG_REFDIV_MASK     0x1f
336 +#define QCA953X_PLL_CPU_CONFIG_OUTDIV_SHIFT    19
337 +#define QCA953X_PLL_CPU_CONFIG_OUTDIV_MASK     0x3
338 +
339 +#define QCA953X_PLL_DDR_CONFIG_NFRAC_SHIFT     0
340 +#define QCA953X_PLL_DDR_CONFIG_NFRAC_MASK      0x3ff
341 +#define QCA953X_PLL_DDR_CONFIG_NINT_SHIFT      10
342 +#define QCA953X_PLL_DDR_CONFIG_NINT_MASK       0x3f
343 +#define QCA953X_PLL_DDR_CONFIG_REFDIV_SHIFT    16
344 +#define QCA953X_PLL_DDR_CONFIG_REFDIV_MASK     0x1f
345 +#define QCA953X_PLL_DDR_CONFIG_OUTDIV_SHIFT    23
346 +#define QCA953X_PLL_DDR_CONFIG_OUTDIV_MASK     0x7
347 +
348 +#define QCA953X_PLL_CLK_CTRL_CPU_PLL_BYPASS            BIT(2)
349 +#define QCA953X_PLL_CLK_CTRL_DDR_PLL_BYPASS            BIT(3)
350 +#define QCA953X_PLL_CLK_CTRL_AHB_PLL_BYPASS            BIT(4)
351 +#define QCA953X_PLL_CLK_CTRL_CPU_POST_DIV_SHIFT                5
352 +#define QCA953X_PLL_CLK_CTRL_CPU_POST_DIV_MASK         0x1f
353 +#define QCA953X_PLL_CLK_CTRL_DDR_POST_DIV_SHIFT                10
354 +#define QCA953X_PLL_CLK_CTRL_DDR_POST_DIV_MASK         0x1f
355 +#define QCA953X_PLL_CLK_CTRL_AHB_POST_DIV_SHIFT                15
356 +#define QCA953X_PLL_CLK_CTRL_AHB_POST_DIV_MASK         0x1f
357 +#define QCA953X_PLL_CLK_CTRL_CPUCLK_FROM_CPUPLL                BIT(20)
358 +#define QCA953X_PLL_CLK_CTRL_DDRCLK_FROM_DDRPLL                BIT(21)
359 +#define QCA953X_PLL_CLK_CTRL_AHBCLK_FROM_DDRPLL                BIT(24)
360 +
361  #define QCA955X_PLL_CPU_CONFIG_REG             0x00
362  #define QCA955X_PLL_DDR_CONFIG_REG             0x04
363  #define QCA955X_PLL_CLK_CTRL_REG               0x08
364 @@ -355,6 +395,10 @@
365  #define AR934X_RESET_REG_BOOTSTRAP             0xb0
366  #define AR934X_RESET_REG_PCIE_WMAC_INT_STATUS  0xac
367  
368 +#define QCA953X_RESET_REG_RESET_MODULE         0x1c
369 +#define QCA953X_RESET_REG_BOOTSTRAP            0xb0
370 +#define QCA953X_RESET_REG_EXT_INT_STATUS       0xac
371 +
372  #define QCA955X_RESET_REG_RESET_MODULE         0x1c
373  #define QCA955X_RESET_REG_BOOTSTRAP            0xb0
374  #define QCA955X_RESET_REG_EXT_INT_STATUS       0xac
375 @@ -503,6 +547,8 @@
376  #define AR934X_BOOTSTRAP_SDRAM_DISABLED BIT(1)
377  #define AR934X_BOOTSTRAP_DDR1          BIT(0)
378  
379 +#define QCA953X_BOOTSTRAP_REF_CLK_40   BIT(4)
380 +
381  #define QCA955X_BOOTSTRAP_REF_CLK_40   BIT(4)
382  
383  #define AR934X_PCIE_WMAC_INT_WMAC_MISC         BIT(0)
384 @@ -565,6 +611,7 @@
385  #define REV_ID_MAJOR_AR9341            0x0120
386  #define REV_ID_MAJOR_AR9342            0x1120
387  #define REV_ID_MAJOR_AR9344            0x2120
388 +#define REV_ID_MAJOR_QCA9533           0x0140
389  #define REV_ID_MAJOR_QCA9556           0x0130
390  #define REV_ID_MAJOR_QCA9558           0x1130
391  
392 @@ -587,6 +634,8 @@
393  
394  #define AR934X_REV_ID_REVISION_MASK    0xf
395  
396 +#define QCA953X_REV_ID_REVISION_MASK   0xf
397 +
398  #define QCA955X_REV_ID_REVISION_MASK   0xf
399  
400  /*
401 @@ -640,6 +689,7 @@
402  #define AR913X_GPIO_COUNT              22
403  #define AR933X_GPIO_COUNT              30
404  #define AR934X_GPIO_COUNT              23
405 +#define QCA953X_GPIO_COUNT             24
406  #define QCA955X_GPIO_COUNT             24
407  
408  /*
409 --- a/arch/mips/include/asm/mach-ath79/ath79.h
410 +++ b/arch/mips/include/asm/mach-ath79/ath79.h
411 @@ -32,6 +32,7 @@ enum ath79_soc_type {
412         ATH79_SOC_AR9341,
413         ATH79_SOC_AR9342,
414         ATH79_SOC_AR9344,
415 +       ATH79_SOC_QCA9533,
416         ATH79_SOC_QCA9556,
417         ATH79_SOC_QCA9558,
418  };
419 @@ -100,6 +101,16 @@ static inline int soc_is_ar934x(void)
420         return soc_is_ar9341() || soc_is_ar9342() || soc_is_ar9344();
421  }
422  
423 +static inline int soc_is_qca9533(void)
424 +{
425 +       return ath79_soc == ATH79_SOC_QCA9533;
426 +}
427 +
428 +static inline int soc_is_qca953x(void)
429 +{
430 +       return soc_is_qca9533();
431 +}
432 +
433  static inline int soc_is_qca9556(void)
434  {
435         return ath79_soc == ATH79_SOC_QCA9556;