atheros: update ether addresses handling
[openwrt/staging/chunkeey.git] / target / linux / atheros / patches-3.14 / 100-board.patch
1 --- a/arch/mips/Kconfig
2 +++ b/arch/mips/Kconfig
3 @@ -144,6 +144,19 @@ config BCM63XX
4 help
5 Support for BCM63XX based boards
6
7 +config ATHEROS_AR231X
8 + bool "Atheros 231x/531x SoC support"
9 + select CEVT_R4K
10 + select CSRC_R4K
11 + select DMA_NONCOHERENT
12 + select IRQ_CPU
13 + select SYS_HAS_CPU_MIPS32_R1
14 + select SYS_SUPPORTS_BIG_ENDIAN
15 + select SYS_SUPPORTS_32BIT_KERNEL
16 + select ARCH_REQUIRE_GPIOLIB
17 + help
18 + Support for AR231x and AR531x based boards
19 +
20 config MIPS_COBALT
21 bool "Cobalt Server"
22 select CEVT_R4K
23 @@ -795,6 +808,7 @@ config NLM_XLP_BOARD
24
25 endchoice
26
27 +source "arch/mips/ar231x/Kconfig"
28 source "arch/mips/alchemy/Kconfig"
29 source "arch/mips/ath79/Kconfig"
30 source "arch/mips/bcm47xx/Kconfig"
31 --- a/arch/mips/Kbuild.platforms
32 +++ b/arch/mips/Kbuild.platforms
33 @@ -6,6 +6,7 @@ platforms += ath79
34 platforms += bcm47xx
35 platforms += bcm63xx
36 platforms += cavium-octeon
37 +platforms += ar231x
38 platforms += cobalt
39 platforms += dec
40 platforms += emma
41 --- /dev/null
42 +++ b/arch/mips/ar231x/Platform
43 @@ -0,0 +1,6 @@
44 +#
45 +# Atheros AR531X/AR231X WiSoC
46 +#
47 +platform-$(CONFIG_ATHEROS_AR231X) += ar231x/
48 +cflags-$(CONFIG_ATHEROS_AR231X) += -I$(srctree)/arch/mips/include/asm/mach-ar231x
49 +load-$(CONFIG_ATHEROS_AR231X) += 0xffffffff80041000
50 --- /dev/null
51 +++ b/arch/mips/ar231x/Kconfig
52 @@ -0,0 +1,16 @@
53 +config ATHEROS_AR5312
54 + bool "Atheros 5312/2312+ support"
55 + depends on ATHEROS_AR231X
56 + default y
57 +
58 +config ATHEROS_AR2315
59 + bool "Atheros 2315+ support"
60 + depends on ATHEROS_AR231X
61 + select DMA_NONCOHERENT
62 + select CEVT_R4K
63 + select CSRC_R4K
64 + select IRQ_CPU
65 + select SYS_HAS_CPU_MIPS32_R1
66 + select SYS_SUPPORTS_32BIT_KERNEL
67 + select SYS_SUPPORTS_BIG_ENDIAN
68 + default y
69 --- /dev/null
70 +++ b/arch/mips/ar231x/Makefile
71 @@ -0,0 +1,13 @@
72 +#
73 +# This file is subject to the terms and conditions of the GNU General Public
74 +# License. See the file "COPYING" in the main directory of this archive
75 +# for more details.
76 +#
77 +# Copyright (C) 2006 FON Technology, SL.
78 +# Copyright (C) 2006 Imre Kaloz <kaloz@openwrt.org>
79 +# Copyright (C) 2006-2009 Felix Fietkau <nbd@openwrt.org>
80 +#
81 +
82 +obj-y += board.o prom.o devices.o
83 +obj-$(CONFIG_ATHEROS_AR5312) += ar5312.o
84 +obj-$(CONFIG_ATHEROS_AR2315) += ar2315.o
85 --- /dev/null
86 +++ b/arch/mips/ar231x/board.c
87 @@ -0,0 +1,260 @@
88 +/*
89 + * This file is subject to the terms and conditions of the GNU General Public
90 + * License. See the file "COPYING" in the main directory of this archive
91 + * for more details.
92 + *
93 + * Copyright (C) 2003 Atheros Communications, Inc., All Rights Reserved.
94 + * Copyright (C) 2006 FON Technology, SL.
95 + * Copyright (C) 2006 Imre Kaloz <kaloz@openwrt.org>
96 + * Copyright (C) 2006-2009 Felix Fietkau <nbd@openwrt.org>
97 + */
98 +
99 +#include <generated/autoconf.h>
100 +#include <linux/init.h>
101 +#include <linux/module.h>
102 +#include <linux/types.h>
103 +#include <linux/string.h>
104 +#include <linux/platform_device.h>
105 +#include <linux/kernel.h>
106 +#include <linux/random.h>
107 +#include <linux/etherdevice.h>
108 +#include <linux/irq.h>
109 +#include <linux/io.h>
110 +#include <asm/irq_cpu.h>
111 +#include <asm/reboot.h>
112 +#include <asm/bootinfo.h>
113 +#include <asm/time.h>
114 +
115 +#include <ar231x_platform.h>
116 +#include "devices.h"
117 +#include "ar5312.h"
118 +#include "ar2315.h"
119 +
120 +void (*ar231x_irq_dispatch)(void);
121 +
122 +static inline bool
123 +check_radio_magic(u8 *addr)
124 +{
125 + addr += 0x7a; /* offset for flash magic */
126 + if ((addr[0] == 0x5a) && (addr[1] == 0xa5))
127 + return 1;
128 +
129 + return 0;
130 +}
131 +
132 +static inline bool
133 +check_board_data(u8 *flash_limit, u8 *addr, bool broken)
134 +{
135 + /* config magic found */
136 + if (*((u32 *)addr) == AR231X_BD_MAGIC)
137 + return 1;
138 +
139 + if (!broken)
140 + return 0;
141 +
142 + if (check_radio_magic(addr + 0xf8))
143 + ar231x_board.radio = addr + 0xf8;
144 + if ((addr < flash_limit + 0x10000) &&
145 + check_radio_magic(addr + 0x10000))
146 + ar231x_board.radio = addr + 0x10000;
147 +
148 + if (ar231x_board.radio) {
149 + /* broken board data detected, use radio data to find the
150 + * offset, user will fix this */
151 + return 1;
152 + }
153 + return 0;
154 +}
155 +
156 +static u8 *
157 +find_board_config(u8 *flash_limit, bool broken)
158 +{
159 + u8 *addr;
160 + int found = 0;
161 +
162 + for (addr = flash_limit - 0x1000;
163 + addr >= flash_limit - 0x30000;
164 + addr -= 0x1000) {
165 +
166 + if (check_board_data(flash_limit, addr, broken)) {
167 + found = 1;
168 + break;
169 + }
170 + }
171 +
172 + if (!found)
173 + addr = NULL;
174 +
175 + return addr;
176 +}
177 +
178 +static u8 *
179 +find_radio_config(u8 *flash_limit, u8 *board_config)
180 +{
181 + int found;
182 + u8 *radio_config;
183 +
184 + /*
185 + * Now find the start of Radio Configuration data, using heuristics:
186 + * Search forward from Board Configuration data by 0x1000 bytes
187 + * at a time until we find non-0xffffffff.
188 + */
189 + found = 0;
190 + for (radio_config = board_config + 0x1000;
191 + (radio_config < flash_limit);
192 + radio_config += 0x1000) {
193 + if ((*(u32 *)radio_config != 0xffffffff) &&
194 + check_radio_magic(radio_config)) {
195 + found = 1;
196 + break;
197 + }
198 + }
199 +
200 + /* AR2316 relocates radio config to new location */
201 + if (!found) {
202 + for (radio_config = board_config + 0xf8;
203 + (radio_config < flash_limit - 0x1000 + 0xf8);
204 + radio_config += 0x1000) {
205 + if ((*(u32 *)radio_config != 0xffffffff) &&
206 + check_radio_magic(radio_config)) {
207 + found = 1;
208 + break;
209 + }
210 + }
211 + }
212 +
213 + if (!found) {
214 + pr_warn("WARNING: Could not find Radio Configuration data\n");
215 + radio_config = NULL;
216 + }
217 +
218 + return radio_config;
219 +}
220 +
221 +int __init
222 +ar231x_find_config(u8 *flash_limit)
223 +{
224 + struct ar231x_boarddata *config;
225 + unsigned int rcfg_size;
226 + int broken_boarddata = 0;
227 + u8 *bcfg, *rcfg;
228 + u8 *board_data;
229 + u8 *radio_data;
230 + u8 *mac_addr;
231 + u32 offset;
232 +
233 + ar231x_board.config = NULL;
234 + ar231x_board.radio = NULL;
235 + /* Copy the board and radio data to RAM, because accessing the mapped
236 + * memory of the flash directly after booting is not safe */
237 +
238 + /* Try to find valid board and radio data */
239 + bcfg = find_board_config(flash_limit, false);
240 +
241 + /* If that fails, try to at least find valid radio data */
242 + if (!bcfg) {
243 + bcfg = find_board_config(flash_limit, true);
244 + broken_boarddata = 1;
245 + }
246 +
247 + if (!bcfg) {
248 + pr_warn("WARNING: No board configuration data found!\n");
249 + return -ENODEV;
250 + }
251 +
252 + board_data = kzalloc(BOARD_CONFIG_BUFSZ, GFP_KERNEL);
253 + ar231x_board.config = (struct ar231x_boarddata *)board_data;
254 + memcpy(board_data, bcfg, 0x100);
255 + if (broken_boarddata) {
256 + pr_warn("WARNING: broken board data detected\n");
257 + config = ar231x_board.config;
258 + if (is_zero_ether_addr(config->enet0_mac)) {
259 + pr_info("Fixing up empty mac addresses\n");
260 + config->reset_config_gpio = 0xffff;
261 + config->sys_led_gpio = 0xffff;
262 + random_ether_addr(config->wlan0_mac);
263 + config->wlan0_mac[0] &= ~0x06;
264 + random_ether_addr(config->enet0_mac);
265 + random_ether_addr(config->enet1_mac);
266 + }
267 + }
268 +
269 + /* Radio config starts 0x100 bytes after board config, regardless
270 + * of what the physical layout on the flash chip looks like */
271 +
272 + if (ar231x_board.radio)
273 + rcfg = (u8 *)ar231x_board.radio;
274 + else
275 + rcfg = find_radio_config(flash_limit, bcfg);
276 +
277 + if (!rcfg)
278 + return -ENODEV;
279 +
280 + radio_data = board_data + 0x100 + ((rcfg - bcfg) & 0xfff);
281 + ar231x_board.radio = radio_data;
282 + offset = radio_data - board_data;
283 + pr_info("Radio config found at offset 0x%x (0x%x)\n", rcfg - bcfg,
284 + offset);
285 + rcfg_size = BOARD_CONFIG_BUFSZ - offset;
286 + memcpy(radio_data, rcfg, rcfg_size);
287 +
288 + mac_addr = &radio_data[0x1d * 2];
289 + if (is_broadcast_ether_addr(mac_addr)) {
290 + pr_info("Radio MAC is blank; using board-data\n");
291 + ether_addr_copy(mac_addr, ar231x_board.config->wlan0_mac);
292 + }
293 +
294 + return 0;
295 +}
296 +
297 +static void
298 +ar231x_halt(void)
299 +{
300 + local_irq_disable();
301 + while (1)
302 + ;
303 +}
304 +
305 +void __init
306 +plat_mem_setup(void)
307 +{
308 + _machine_halt = ar231x_halt;
309 + pm_power_off = ar231x_halt;
310 +
311 + ar5312_plat_setup();
312 + ar2315_plat_setup();
313 +
314 + /* Disable data watchpoints */
315 + write_c0_watchlo0(0);
316 +}
317 +
318 +asmlinkage void
319 +plat_irq_dispatch(void)
320 +{
321 + ar231x_irq_dispatch();
322 +}
323 +
324 +void __init
325 +plat_time_init(void)
326 +{
327 + ar5312_time_init();
328 + ar2315_time_init();
329 +}
330 +
331 +unsigned int __cpuinit
332 +get_c0_compare_int(void)
333 +{
334 + return CP0_LEGACY_COMPARE_IRQ;
335 +}
336 +
337 +void __init
338 +arch_init_irq(void)
339 +{
340 + clear_c0_status(ST0_IM);
341 + mips_cpu_irq_init();
342 +
343 + /* Initialize interrupt controllers */
344 + ar5312_irq_init();
345 + ar2315_irq_init();
346 +}
347 +
348 --- /dev/null
349 +++ b/arch/mips/ar231x/prom.c
350 @@ -0,0 +1,37 @@
351 +/*
352 + * This file is subject to the terms and conditions of the GNU General Public
353 + * License. See the file "COPYING" in the main directory of this archive
354 + * for more details.
355 + *
356 + * Copyright MontaVista Software Inc
357 + * Copyright (C) 2003 Atheros Communications, Inc., All Rights Reserved.
358 + * Copyright (C) 2006 FON Technology, SL.
359 + * Copyright (C) 2006 Imre Kaloz <kaloz@openwrt.org>
360 + * Copyright (C) 2006 Felix Fietkau <nbd@openwrt.org>
361 + */
362 +
363 +/*
364 + * Prom setup file for ar231x
365 + */
366 +
367 +#include <linux/init.h>
368 +#include <generated/autoconf.h>
369 +#include <linux/kernel.h>
370 +#include <linux/string.h>
371 +#include <linux/mm.h>
372 +#include <linux/bootmem.h>
373 +
374 +#include <asm/bootinfo.h>
375 +#include <asm/addrspace.h>
376 +#include "ar5312.h"
377 +#include "ar2315.h"
378 +
379 +void __init prom_init(void)
380 +{
381 + ar5312_prom_init();
382 + ar2315_prom_init();
383 +}
384 +
385 +void __init prom_free_prom_memory(void)
386 +{
387 +}
388 --- /dev/null
389 +++ b/arch/mips/include/asm/mach-ar231x/ar231x_platform.h
390 @@ -0,0 +1,85 @@
391 +#ifndef __ASM_MACH_AR231X_PLATFORM_H
392 +#define __ASM_MACH_AR231X_PLATFORM_H
393 +
394 +#include <linux/etherdevice.h>
395 +
396 +/*
397 + * This is board-specific data that is stored in a "fixed" location in flash.
398 + * It is shared across operating systems, so it should not be changed lightly.
399 + * The main reason we need it is in order to extract the ethernet MAC
400 + * address(es).
401 + */
402 +struct ar231x_boarddata {
403 + u32 magic; /* board data is valid */
404 +#define AR231X_BD_MAGIC 0x35333131 /* "5311", for all 531x/231x platforms */
405 + u16 cksum; /* checksum (starting with BD_REV 2) */
406 + u16 rev; /* revision of this struct */
407 +#define BD_REV 4
408 + char board_name[64]; /* Name of board */
409 + u16 major; /* Board major number */
410 + u16 minor; /* Board minor number */
411 + u32 flags; /* Board configuration */
412 +#define BD_ENET0 0x00000001 /* ENET0 is stuffed */
413 +#define BD_ENET1 0x00000002 /* ENET1 is stuffed */
414 +#define BD_UART1 0x00000004 /* UART1 is stuffed */
415 +#define BD_UART0 0x00000008 /* UART0 is stuffed (dma) */
416 +#define BD_RSTFACTORY 0x00000010 /* Reset factory defaults stuffed */
417 +#define BD_SYSLED 0x00000020 /* System LED stuffed */
418 +#define BD_EXTUARTCLK 0x00000040 /* External UART clock */
419 +#define BD_CPUFREQ 0x00000080 /* cpu freq is valid in nvram */
420 +#define BD_SYSFREQ 0x00000100 /* sys freq is set in nvram */
421 +#define BD_WLAN0 0x00000200 /* Enable WLAN0 */
422 +#define BD_MEMCAP 0x00000400 /* CAP SDRAM @ mem_cap for testing */
423 +#define BD_DISWATCHDOG 0x00000800 /* disable system watchdog */
424 +#define BD_WLAN1 0x00001000 /* Enable WLAN1 (ar5212) */
425 +#define BD_ISCASPER 0x00002000 /* FLAG for AR2312 */
426 +#define BD_WLAN0_2G_EN 0x00004000 /* FLAG for radio0_2G */
427 +#define BD_WLAN0_5G_EN 0x00008000 /* FLAG for radio0_2G */
428 +#define BD_WLAN1_2G_EN 0x00020000 /* FLAG for radio0_2G */
429 +#define BD_WLAN1_5G_EN 0x00040000 /* FLAG for radio0_2G */
430 + u16 reset_config_gpio; /* Reset factory GPIO pin */
431 + u16 sys_led_gpio; /* System LED GPIO pin */
432 +
433 + u32 cpu_freq; /* CPU core frequency in Hz */
434 + u32 sys_freq; /* System frequency in Hz */
435 + u32 cnt_freq; /* Calculated C0_COUNT frequency */
436 +
437 + u8 wlan0_mac[ETH_ALEN];
438 + u8 enet0_mac[ETH_ALEN];
439 + u8 enet1_mac[ETH_ALEN];
440 +
441 + u16 pci_id; /* Pseudo PCIID for common code */
442 + u16 mem_cap; /* cap bank1 in MB */
443 +
444 + /* version 3 */
445 + u8 wlan1_mac[ETH_ALEN]; /* (ar5212) */
446 +};
447 +
448 +#define BOARD_CONFIG_BUFSZ 0x1000
449 +
450 +/*
451 + * Platform device information for the Wireless MAC
452 + */
453 +struct ar231x_board_config {
454 + u16 devid;
455 +
456 + /* board config data */
457 + struct ar231x_boarddata *config;
458 +
459 + /* radio calibration data */
460 + const char *radio;
461 +};
462 +
463 +/*
464 + * Platform device information for the Ethernet MAC
465 + */
466 +struct ar231x_eth {
467 + void (*reset_set)(u32);
468 + void (*reset_clear)(u32);
469 + u32 reset_mac;
470 + u32 reset_phy;
471 + struct ar231x_board_config *config;
472 + char *macaddr;
473 +};
474 +
475 +#endif /* __ASM_MACH_AR231X_PLATFORM_H */
476 --- /dev/null
477 +++ b/arch/mips/include/asm/mach-ar231x/cpu-feature-overrides.h
478 @@ -0,0 +1,84 @@
479 +/*
480 + * Atheros AR231x/AR531x SoC specific CPU feature overrides
481 + *
482 + * Copyright (C) 2008 Gabor Juhos <juhosg@openwrt.org>
483 + *
484 + * This file was derived from: include/asm-mips/cpu-features.h
485 + * Copyright (C) 2003, 2004 Ralf Baechle
486 + * Copyright (C) 2004 Maciej W. Rozycki
487 + *
488 + * This program is free software; you can redistribute it and/or modify it
489 + * under the terms of the GNU General Public License version 2 as published
490 + * by the Free Software Foundation.
491 + *
492 + */
493 +#ifndef __ASM_MACH_AR231X_CPU_FEATURE_OVERRIDES_H
494 +#define __ASM_MACH_AR231X_CPU_FEATURE_OVERRIDES_H
495 +
496 +/*
497 + * The Atheros AR531x/AR231x SoCs have MIPS 4Kc/4KEc core.
498 + */
499 +#define cpu_has_tlb 1
500 +#define cpu_has_4kex 1
501 +#define cpu_has_3k_cache 0
502 +#define cpu_has_4k_cache 1
503 +#define cpu_has_tx39_cache 0
504 +#define cpu_has_sb1_cache 0
505 +#define cpu_has_fpu 0
506 +#define cpu_has_32fpr 0
507 +#define cpu_has_counter 1
508 +/* #define cpu_has_watch ? */
509 +/* #define cpu_has_divec ? */
510 +/* #define cpu_has_vce ? */
511 +/* #define cpu_has_cache_cdex_p ? */
512 +/* #define cpu_has_cache_cdex_s ? */
513 +/* #define cpu_has_prefetch ? */
514 +/* #define cpu_has_mcheck ? */
515 +#define cpu_has_ejtag 1
516 +
517 +#if !defined(CONFIG_ATHEROS_AR5312)
518 +# define cpu_has_llsc 1
519 +#else
520 +/*
521 + * The MIPS 4Kc V0.9 core in the AR5312/AR2312 have problems with the
522 + * ll/sc instructions.
523 + */
524 +# define cpu_has_llsc 0
525 +#endif
526 +
527 +#define cpu_has_mips16 0
528 +#define cpu_has_mdmx 0
529 +#define cpu_has_mips3d 0
530 +#define cpu_has_smartmips 0
531 +
532 +/* #define cpu_has_vtag_icache ? */
533 +/* #define cpu_has_dc_aliases ? */
534 +/* #define cpu_has_ic_fills_f_dc ? */
535 +/* #define cpu_has_pindexed_dcache ? */
536 +
537 +/* #define cpu_icache_snoops_remote_store ? */
538 +
539 +#define cpu_has_mips32r1 1
540 +
541 +#if !defined(CONFIG_ATHEROS_AR5312)
542 +# define cpu_has_mips32r2 1
543 +#endif
544 +
545 +#define cpu_has_mips64r1 0
546 +#define cpu_has_mips64r2 0
547 +
548 +#define cpu_has_dsp 0
549 +#define cpu_has_mipsmt 0
550 +
551 +/* #define cpu_has_nofpuex ? */
552 +#define cpu_has_64bits 0
553 +#define cpu_has_64bit_zero_reg 0
554 +#define cpu_has_64bit_gp_regs 0
555 +#define cpu_has_64bit_addresses 0
556 +
557 +/* #define cpu_has_inclusive_pcaches ? */
558 +
559 +/* #define cpu_dcache_line_size() ? */
560 +/* #define cpu_icache_line_size() ? */
561 +
562 +#endif /* __ASM_MACH_AR231X_CPU_FEATURE_OVERRIDES_H */
563 --- /dev/null
564 +++ b/arch/mips/include/asm/mach-ar231x/dma-coherence.h
565 @@ -0,0 +1,78 @@
566 +/*
567 + * This file is subject to the terms and conditions of the GNU General Public
568 + * License. See the file "COPYING" in the main directory of this archive
569 + * for more details.
570 + *
571 + * Copyright (C) 2006 Ralf Baechle <ralf@linux-mips.org>
572 + * Copyright (C) 2007 Felix Fietkau <nbd@openwrt.org>
573 + *
574 + */
575 +#ifndef __ASM_MACH_AR231X_DMA_COHERENCE_H
576 +#define __ASM_MACH_AR231X_DMA_COHERENCE_H
577 +
578 +#define PCI_DMA_OFFSET 0x20000000
579 +
580 +#include <linux/device.h>
581 +
582 +static inline dma_addr_t ar231x_dev_offset(struct device *dev)
583 +{
584 +#ifdef CONFIG_PCI
585 + extern struct bus_type pci_bus_type;
586 +
587 + if (dev && dev->bus == &pci_bus_type)
588 + return PCI_DMA_OFFSET;
589 + else
590 +#endif
591 + return 0;
592 +}
593 +
594 +static inline dma_addr_t
595 +plat_map_dma_mem(struct device *dev, void *addr, size_t size)
596 +{
597 + return virt_to_phys(addr) + ar231x_dev_offset(dev);
598 +}
599 +
600 +static inline dma_addr_t
601 +plat_map_dma_mem_page(struct device *dev, struct page *page)
602 +{
603 + return page_to_phys(page) + ar231x_dev_offset(dev);
604 +}
605 +
606 +static inline unsigned long
607 +plat_dma_addr_to_phys(struct device *dev, dma_addr_t dma_addr)
608 +{
609 + return dma_addr - ar231x_dev_offset(dev);
610 +}
611 +
612 +static inline void
613 +plat_unmap_dma_mem(struct device *dev, dma_addr_t dma_addr, size_t size,
614 + enum dma_data_direction direction)
615 +{
616 +}
617 +
618 +static inline int plat_dma_supported(struct device *dev, u64 mask)
619 +{
620 + return 1;
621 +}
622 +
623 +static inline void plat_extra_sync_for_device(struct device *dev)
624 +{
625 +}
626 +
627 +static inline int plat_dma_mapping_error(struct device *dev,
628 + dma_addr_t dma_addr)
629 +{
630 + return 0;
631 +}
632 +
633 +static inline int plat_device_is_coherent(struct device *dev)
634 +{
635 +#ifdef CONFIG_DMA_COHERENT
636 + return 1;
637 +#endif
638 +#ifdef CONFIG_DMA_NONCOHERENT
639 + return 0;
640 +#endif
641 +}
642 +
643 +#endif /* __ASM_MACH_AR231X_DMA_COHERENCE_H */
644 --- /dev/null
645 +++ b/arch/mips/include/asm/mach-ar231x/gpio.h
646 @@ -0,0 +1,30 @@
647 +#ifndef __ASM_MACH_AR231X_GPIO_H
648 +#define __ASM_MACH_AR231X_GPIO_H
649 +
650 +#include <ar231x.h>
651 +
652 +#define gpio_get_value __gpio_get_value
653 +#define gpio_set_value __gpio_set_value
654 +#define gpio_cansleep __gpio_cansleep
655 +
656 +/*
657 + * Wrappers for the generic GPIO layer
658 + */
659 +
660 +/* not sure if these are used? */
661 +
662 +/* Returns IRQ to attach for gpio. Unchecked function */
663 +static inline int gpio_to_irq(unsigned gpio)
664 +{
665 + return AR231X_GPIO_IRQ(gpio);
666 +}
667 +
668 +/* Returns gpio for IRQ attached. Unchecked function */
669 +static inline int irq_to_gpio(unsigned irq)
670 +{
671 + return irq - AR231X_GPIO_IRQ(0);
672 +}
673 +
674 +#include <asm-generic/gpio.h> /* cansleep wrappers */
675 +
676 +#endif /* __ASM_MACH_AR231X_GPIO_H */
677 --- /dev/null
678 +++ b/arch/mips/include/asm/mach-ar231x/reset.h
679 @@ -0,0 +1,6 @@
680 +#ifndef __ASM_MACH_AR231X_RESET_H
681 +#define __ASM_MACH_AR231X_RESET_H
682 +
683 +void ar231x_disable_reset_button(void);
684 +
685 +#endif /* __ASM_MACH_AR231X_RESET_H */
686 --- /dev/null
687 +++ b/arch/mips/include/asm/mach-ar231x/war.h
688 @@ -0,0 +1,25 @@
689 +/*
690 + * This file is subject to the terms and conditions of the GNU General Public
691 + * License. See the file "COPYING" in the main directory of this archive
692 + * for more details.
693 + *
694 + * Copyright (C) 2008 Felix Fietkau <nbd@openwrt.org>
695 + */
696 +#ifndef __ASM_MACH_AR231X_WAR_H
697 +#define __ASM_MACH_AR231X_WAR_H
698 +
699 +#define R4600_V1_INDEX_ICACHEOP_WAR 0
700 +#define R4600_V1_HIT_CACHEOP_WAR 0
701 +#define R4600_V2_HIT_CACHEOP_WAR 0
702 +#define R5432_CP0_INTERRUPT_WAR 0
703 +#define BCM1250_M3_WAR 0
704 +#define SIBYTE_1956_WAR 0
705 +#define MIPS4K_ICACHE_REFILL_WAR 0
706 +#define MIPS_CACHE_SYNC_WAR 0
707 +#define TX49XX_ICACHE_INDEX_INV_WAR 0
708 +#define RM9000_CDEX_SMP_WAR 0
709 +#define ICACHE_REFILLS_WORKAROUND_WAR 0
710 +#define R10000_LLSC_WAR 0
711 +#define MIPS34K_MISSED_ITLB_WAR 0
712 +
713 +#endif /* __ASM_MACH_AR231X_WAR_H */
714 --- /dev/null
715 +++ b/arch/mips/include/asm/mach-ar231x/ar2315_regs.h
716 @@ -0,0 +1,617 @@
717 +/*
718 + * Register definitions for AR2315+
719 + *
720 + * This file is subject to the terms and conditions of the GNU General Public
721 + * License. See the file "COPYING" in the main directory of this archive
722 + * for more details.
723 + *
724 + * Copyright (C) 2003 Atheros Communications, Inc., All Rights Reserved.
725 + * Copyright (C) 2006 FON Technology, SL.
726 + * Copyright (C) 2006 Imre Kaloz <kaloz@openwrt.org>
727 + * Copyright (C) 2006-2008 Felix Fietkau <nbd@openwrt.org>
728 + */
729 +
730 +#ifndef __ASM_MACH_AR231X_AR2315_REGS_H
731 +#define __ASM_MACH_AR231X_AR2315_REGS_H
732 +
733 +/*
734 + * IRQs
735 + */
736 +#define AR2315_IRQ_MISC_INTRS (MIPS_CPU_IRQ_BASE+2) /* C0_CAUSE: 0x0400 */
737 +#define AR2315_IRQ_WLAN0_INTRS (MIPS_CPU_IRQ_BASE+3) /* C0_CAUSE: 0x0800 */
738 +#define AR2315_IRQ_ENET0_INTRS (MIPS_CPU_IRQ_BASE+4) /* C0_CAUSE: 0x1000 */
739 +#define AR2315_IRQ_LCBUS_PCI (MIPS_CPU_IRQ_BASE+5) /* C0_CAUSE: 0x2000 */
740 +#define AR2315_IRQ_WLAN0_POLL (MIPS_CPU_IRQ_BASE+6) /* C0_CAUSE: 0x4000 */
741 +
742 +
743 +/*
744 + * Miscellaneous interrupts, which share IP2.
745 + */
746 +#define AR2315_MISC_IRQ_NONE (AR231X_MISC_IRQ_BASE+0)
747 +#define AR2315_MISC_IRQ_UART0 (AR231X_MISC_IRQ_BASE+1)
748 +#define AR2315_MISC_IRQ_I2C_RSVD (AR231X_MISC_IRQ_BASE+2)
749 +#define AR2315_MISC_IRQ_SPI (AR231X_MISC_IRQ_BASE+3)
750 +#define AR2315_MISC_IRQ_AHB (AR231X_MISC_IRQ_BASE+4)
751 +#define AR2315_MISC_IRQ_APB (AR231X_MISC_IRQ_BASE+5)
752 +#define AR2315_MISC_IRQ_TIMER (AR231X_MISC_IRQ_BASE+6)
753 +#define AR2315_MISC_IRQ_GPIO (AR231X_MISC_IRQ_BASE+7)
754 +#define AR2315_MISC_IRQ_WATCHDOG (AR231X_MISC_IRQ_BASE+8)
755 +#define AR2315_MISC_IRQ_IR_RSVD (AR231X_MISC_IRQ_BASE+9)
756 +#define AR2315_MISC_IRQ_COUNT 10
757 +
758 +
759 +/*
760 + * Address map
761 + */
762 +#define AR2315_SPI_READ 0x08000000 /* SPI FLASH */
763 +#define AR2315_WLAN0 0x10000000 /* Wireless MMR */
764 +#define AR2315_PCI 0x10100000 /* PCI MMR */
765 +#define AR2315_SDRAMCTL 0x10300000 /* SDRAM MMR */
766 +#define AR2315_LOCAL 0x10400000 /* LOCAL BUS MMR */
767 +#define AR2315_ENET0 0x10500000 /* ETHERNET MMR */
768 +#define AR2315_DSLBASE 0x11000000 /* RESET CONTROL MMR */
769 +#define AR2315_UART0 0x11100000 /* UART MMR */
770 +#define AR2315_SPI_MMR 0x11300000 /* SPI FLASH MMR */
771 +#define AR2315_PCIEXT 0x80000000 /* pci external */
772 +
773 +/* MII registers offset inside Ethernet MMR region */
774 +#define AR2315_ENET0_MII (AR2315_ENET0 + 0x14)
775 +
776 +/*
777 + * Reset Register
778 + */
779 +#define AR2315_COLD_RESET (AR2315_DSLBASE + 0x0000)
780 +
781 +#define AR2315_RESET_COLD_AHB 0x00000001
782 +#define AR2315_RESET_COLD_APB 0x00000002
783 +#define AR2315_RESET_COLD_CPU 0x00000004
784 +#define AR2315_RESET_COLD_CPUWARM 0x00000008
785 +#define AR2315_RESET_SYSTEM \
786 + (RESET_COLD_CPU |\
787 + RESET_COLD_APB |\
788 + RESET_COLD_AHB) /* full system */
789 +#define AR2317_RESET_SYSTEM 0x00000010
790 +
791 +
792 +#define AR2315_RESET (AR2315_DSLBASE + 0x0004)
793 +
794 +/* warm reset WLAN0 MAC */
795 +#define AR2315_RESET_WARM_WLAN0_MAC 0x00000001
796 +/* warm reset WLAN0 BaseBand */
797 +#define AR2315_RESET_WARM_WLAN0_BB 0x00000002
798 +/* warm reset MPEG-TS */
799 +#define AR2315_RESET_MPEGTS_RSVD 0x00000004
800 +/* warm reset PCI ahb/dma */
801 +#define AR2315_RESET_PCIDMA 0x00000008
802 +/* warm reset memory controller */
803 +#define AR2315_RESET_MEMCTL 0x00000010
804 +/* warm reset local bus */
805 +#define AR2315_RESET_LOCAL 0x00000020
806 +/* warm reset I2C bus */
807 +#define AR2315_RESET_I2C_RSVD 0x00000040
808 +/* warm reset SPI interface */
809 +#define AR2315_RESET_SPI 0x00000080
810 +/* warm reset UART0 */
811 +#define AR2315_RESET_UART0 0x00000100
812 +/* warm reset IR interface */
813 +#define AR2315_RESET_IR_RSVD 0x00000200
814 +/* cold reset ENET0 phy */
815 +#define AR2315_RESET_EPHY0 0x00000400
816 +/* cold reset ENET0 mac */
817 +#define AR2315_RESET_ENET0 0x00000800
818 +
819 +/*
820 + * AHB master arbitration control
821 + */
822 +#define AR2315_AHB_ARB_CTL (AR2315_DSLBASE + 0x0008)
823 +
824 +/* CPU, default */
825 +#define AR2315_ARB_CPU 0x00000001
826 +/* WLAN */
827 +#define AR2315_ARB_WLAN 0x00000002
828 +/* MPEG-TS */
829 +#define AR2315_ARB_MPEGTS_RSVD 0x00000004
830 +/* LOCAL */
831 +#define AR2315_ARB_LOCAL 0x00000008
832 +/* PCI */
833 +#define AR2315_ARB_PCI 0x00000010
834 +/* Ethernet */
835 +#define AR2315_ARB_ETHERNET 0x00000020
836 +/* retry policy, debug only */
837 +#define AR2315_ARB_RETRY 0x00000100
838 +
839 +/*
840 + * Config Register
841 + */
842 +#define AR2315_ENDIAN_CTL (AR2315_DSLBASE + 0x000c)
843 +
844 +/* EC - AHB bridge endianess */
845 +#define AR2315_CONFIG_AHB 0x00000001
846 +/* WLAN byteswap */
847 +#define AR2315_CONFIG_WLAN 0x00000002
848 +/* MPEG-TS byteswap */
849 +#define AR2315_CONFIG_MPEGTS_RSVD 0x00000004
850 +/* PCI byteswap */
851 +#define AR2315_CONFIG_PCI 0x00000008
852 +/* Memory controller endianess */
853 +#define AR2315_CONFIG_MEMCTL 0x00000010
854 +/* Local bus byteswap */
855 +#define AR2315_CONFIG_LOCAL 0x00000020
856 +/* Ethernet byteswap */
857 +#define AR2315_CONFIG_ETHERNET 0x00000040
858 +
859 +/* CPU write buffer merge */
860 +#define AR2315_CONFIG_MERGE 0x00000200
861 +/* CPU big endian */
862 +#define AR2315_CONFIG_CPU 0x00000400
863 +#define AR2315_CONFIG_PCIAHB 0x00000800
864 +#define AR2315_CONFIG_PCIAHB_BRIDGE 0x00001000
865 +/* SPI byteswap */
866 +#define AR2315_CONFIG_SPI 0x00008000
867 +#define AR2315_CONFIG_CPU_DRAM 0x00010000
868 +#define AR2315_CONFIG_CPU_PCI 0x00020000
869 +#define AR2315_CONFIG_CPU_MMR 0x00040000
870 +#define AR2315_CONFIG_BIG 0x00000400
871 +
872 +
873 +/*
874 + * NMI control
875 + */
876 +#define AR2315_NMI_CTL (AR2315_DSLBASE + 0x0010)
877 +
878 +#define AR2315_NMI_EN 1
879 +
880 +/*
881 + * Revision Register - Initial value is 0x3010 (WMAC 3.0, AR231X 1.0).
882 + */
883 +#define AR2315_SREV (AR2315_DSLBASE + 0x0014)
884 +
885 +#define AR2315_REV_MAJ 0x00f0
886 +#define AR2315_REV_MAJ_S 4
887 +#define AR2315_REV_MIN 0x000f
888 +#define AR2315_REV_MIN_S 0
889 +#define AR2315_REV_CHIP (AR2315_REV_MAJ|AR2315_REV_MIN)
890 +
891 +/*
892 + * Interface Enable
893 + */
894 +#define AR2315_IF_CTL (AR2315_DSLBASE + 0x0018)
895 +
896 +#define AR2315_IF_MASK 0x00000007
897 +#define AR2315_IF_DISABLED 0
898 +#define AR2315_IF_PCI 1
899 +#define AR2315_IF_TS_LOCAL 2
900 +/* only for emulation with separate pins */
901 +#define AR2315_IF_ALL 3
902 +#define AR2315_IF_LOCAL_HOST 0x00000008
903 +#define AR2315_IF_PCI_HOST 0x00000010
904 +#define AR2315_IF_PCI_INTR 0x00000020
905 +#define AR2315_IF_PCI_CLK_MASK 0x00030000
906 +#define AR2315_IF_PCI_CLK_INPUT 0
907 +#define AR2315_IF_PCI_CLK_OUTPUT_LOW 1
908 +#define AR2315_IF_PCI_CLK_OUTPUT_CLK 2
909 +#define AR2315_IF_PCI_CLK_OUTPUT_HIGH 3
910 +#define AR2315_IF_PCI_CLK_SHIFT 16
911 +
912 +/*
913 + * APB Interrupt control
914 + */
915 +
916 +#define AR2315_ISR (AR2315_DSLBASE + 0x0020)
917 +#define AR2315_IMR (AR2315_DSLBASE + 0x0024)
918 +#define AR2315_GISR (AR2315_DSLBASE + 0x0028)
919 +
920 +#define AR2315_ISR_UART0 0x0001 /* high speed UART */
921 +#define AR2315_ISR_I2C_RSVD 0x0002 /* I2C bus */
922 +#define AR2315_ISR_SPI 0x0004 /* SPI bus */
923 +#define AR2315_ISR_AHB 0x0008 /* AHB error */
924 +#define AR2315_ISR_APB 0x0010 /* APB error */
925 +#define AR2315_ISR_TIMER 0x0020 /* timer */
926 +#define AR2315_ISR_GPIO 0x0040 /* GPIO */
927 +#define AR2315_ISR_WD 0x0080 /* watchdog */
928 +#define AR2315_ISR_IR_RSVD 0x0100 /* IR */
929 +
930 +#define AR2315_GISR_MISC 0x0001
931 +#define AR2315_GISR_WLAN0 0x0002
932 +#define AR2315_GISR_MPEGTS_RSVD 0x0004
933 +#define AR2315_GISR_LOCALPCI 0x0008
934 +#define AR2315_GISR_WMACPOLL 0x0010
935 +#define AR2315_GISR_TIMER 0x0020
936 +#define AR2315_GISR_ETHERNET 0x0040
937 +
938 +/*
939 + * Interrupt routing from IO to the processor IP bits
940 + * Define our inter mask and level
941 + */
942 +#define AR2315_INTR_MISCIO SR_IBIT3
943 +#define AR2315_INTR_WLAN0 SR_IBIT4
944 +#define AR2315_INTR_ENET0 SR_IBIT5
945 +#define AR2315_INTR_LOCALPCI SR_IBIT6
946 +#define AR2315_INTR_WMACPOLL SR_IBIT7
947 +#define AR2315_INTR_COMPARE SR_IBIT8
948 +
949 +/*
950 + * Timers
951 + */
952 +#define AR2315_TIMER (AR2315_DSLBASE + 0x0030)
953 +#define AR2315_RELOAD (AR2315_DSLBASE + 0x0034)
954 +#define AR2315_WD (AR2315_DSLBASE + 0x0038)
955 +#define AR2315_WDC (AR2315_DSLBASE + 0x003c)
956 +
957 +#define AR2315_WDC_IGNORE_EXPIRATION 0x00000000
958 +#define AR2315_WDC_NMI 0x00000001 /* NMI on watchdog */
959 +#define AR2315_WDC_RESET 0x00000002 /* reset on watchdog */
960 +
961 +/*
962 + * CPU Performance Counters
963 + */
964 +#define AR2315_PERFCNT0 (AR2315_DSLBASE + 0x0048)
965 +#define AR2315_PERFCNT1 (AR2315_DSLBASE + 0x004c)
966 +
967 +#define AR2315_PERF0_DATAHIT 0x0001 /* Count Data Cache Hits */
968 +#define AR2315_PERF0_DATAMISS 0x0002 /* Count Data Cache Misses */
969 +#define AR2315_PERF0_INSTHIT 0x0004 /* Count Instruction Cache Hits */
970 +#define AR2315_PERF0_INSTMISS 0x0008 /* Count Instruction Cache Misses */
971 +#define AR2315_PERF0_ACTIVE 0x0010 /* Count Active Processor Cycles */
972 +#define AR2315_PERF0_WBHIT 0x0020 /* Count CPU Write Buffer Hits */
973 +#define AR2315_PERF0_WBMISS 0x0040 /* Count CPU Write Buffer Misses */
974 +
975 +#define AR2315_PERF1_EB_ARDY 0x0001 /* Count EB_ARdy signal */
976 +#define AR2315_PERF1_EB_AVALID 0x0002 /* Count EB_AValid signal */
977 +#define AR2315_PERF1_EB_WDRDY 0x0004 /* Count EB_WDRdy signal */
978 +#define AR2315_PERF1_EB_RDVAL 0x0008 /* Count EB_RdVal signal */
979 +#define AR2315_PERF1_VRADDR 0x0010 /* Count valid read address cycles */
980 +#define AR2315_PERF1_VWADDR 0x0020 /* Count valid write address cycles */
981 +#define AR2315_PERF1_VWDATA 0x0040 /* Count valid write data cycles */
982 +
983 +/*
984 + * AHB Error Reporting.
985 + */
986 +#define AR2315_AHB_ERR0 (AR2315_DSLBASE + 0x0050) /* error */
987 +#define AR2315_AHB_ERR1 (AR2315_DSLBASE + 0x0054) /* haddr */
988 +#define AR2315_AHB_ERR2 (AR2315_DSLBASE + 0x0058) /* hwdata */
989 +#define AR2315_AHB_ERR3 (AR2315_DSLBASE + 0x005c) /* hrdata */
990 +#define AR2315_AHB_ERR4 (AR2315_DSLBASE + 0x0060) /* status */
991 +
992 +#define AHB_ERROR_DET 1 /* AHB Error has been detected, */
993 + /* write 1 to clear all bits in ERR0 */
994 +#define AHB_ERROR_OVR 2 /* AHB Error overflow has been detected */
995 +#define AHB_ERROR_WDT 4 /* AHB Error due to wdt instead of hresp */
996 +
997 +#define AR2315_PROCERR_HMAST 0x0000000f
998 +#define AR2315_PROCERR_HMAST_DFLT 0
999 +#define AR2315_PROCERR_HMAST_WMAC 1
1000 +#define AR2315_PROCERR_HMAST_ENET 2
1001 +#define AR2315_PROCERR_HMAST_PCIENDPT 3
1002 +#define AR2315_PROCERR_HMAST_LOCAL 4
1003 +#define AR2315_PROCERR_HMAST_CPU 5
1004 +#define AR2315_PROCERR_HMAST_PCITGT 6
1005 +
1006 +#define AR2315_PROCERR_HMAST_S 0
1007 +#define AR2315_PROCERR_HWRITE 0x00000010
1008 +#define AR2315_PROCERR_HSIZE 0x00000060
1009 +#define AR2315_PROCERR_HSIZE_S 5
1010 +#define AR2315_PROCERR_HTRANS 0x00000180
1011 +#define AR2315_PROCERR_HTRANS_S 7
1012 +#define AR2315_PROCERR_HBURST 0x00000e00
1013 +#define AR2315_PROCERR_HBURST_S 9
1014 +
1015 +/*
1016 + * Clock Control
1017 + */
1018 +#define AR2315_PLLC_CTL (AR2315_DSLBASE + 0x0064)
1019 +#define AR2315_PLLV_CTL (AR2315_DSLBASE + 0x0068)
1020 +#define AR2315_CPUCLK (AR2315_DSLBASE + 0x006c)
1021 +#define AR2315_AMBACLK (AR2315_DSLBASE + 0x0070)
1022 +#define AR2315_SYNCCLK (AR2315_DSLBASE + 0x0074)
1023 +#define AR2315_DSL_SLEEP_CTL (AR2315_DSLBASE + 0x0080)
1024 +#define AR2315_DSL_SLEEP_DUR (AR2315_DSLBASE + 0x0084)
1025 +
1026 +/* PLLc Control fields */
1027 +#define PLLC_REF_DIV_M 0x00000003
1028 +#define PLLC_REF_DIV_S 0
1029 +#define PLLC_FDBACK_DIV_M 0x0000007C
1030 +#define PLLC_FDBACK_DIV_S 2
1031 +#define PLLC_ADD_FDBACK_DIV_M 0x00000080
1032 +#define PLLC_ADD_FDBACK_DIV_S 7
1033 +#define PLLC_CLKC_DIV_M 0x0001c000
1034 +#define PLLC_CLKC_DIV_S 14
1035 +#define PLLC_CLKM_DIV_M 0x00700000
1036 +#define PLLC_CLKM_DIV_S 20
1037 +
1038 +/* CPU CLK Control fields */
1039 +#define CPUCLK_CLK_SEL_M 0x00000003
1040 +#define CPUCLK_CLK_SEL_S 0
1041 +#define CPUCLK_CLK_DIV_M 0x0000000c
1042 +#define CPUCLK_CLK_DIV_S 2
1043 +
1044 +/* AMBA CLK Control fields */
1045 +#define AMBACLK_CLK_SEL_M 0x00000003
1046 +#define AMBACLK_CLK_SEL_S 0
1047 +#define AMBACLK_CLK_DIV_M 0x0000000c
1048 +#define AMBACLK_CLK_DIV_S 2
1049 +
1050 +/*
1051 + * GPIO
1052 + */
1053 +#define AR2315_GPIO_DI (AR2315_DSLBASE + 0x0088)
1054 +#define AR2315_GPIO_DO (AR2315_DSLBASE + 0x0090)
1055 +#define AR2315_GPIO_DIR (AR2315_DSLBASE + 0x0098)
1056 +#define AR2315_GPIO_INT (AR2315_DSLBASE + 0x00a0)
1057 +
1058 +#define AR2315_GPIO_DIR_M(x) (1 << (x)) /* mask for i/o */
1059 +#define AR2315_GPIO_DIR_O(x) (1 << (x)) /* output */
1060 +#define AR2315_GPIO_DIR_I(x) (0) /* input */
1061 +
1062 +#define AR2315_GPIO_INT_S(x) (x) /* interrupt enable */
1063 +#define AR2315_GPIO_INT_M (0x3F) /* mask for int */
1064 +#define AR2315_GPIO_INT_LVL(x) ((x) << 6) /* interrupt level */
1065 +#define AR2315_GPIO_INT_LVL_M ((0x3) << 6) /* mask for int level */
1066 +
1067 +#define AR2315_GPIO_INT_MAX_Y 1 /* Maximum value of Y for
1068 + * AR2315_GPIO_INT_* macros */
1069 +#define AR2315_GPIO_INT_LVL_OFF 0 /* Triggerring off */
1070 +#define AR2315_GPIO_INT_LVL_LOW 1 /* Low Level Triggered */
1071 +#define AR2315_GPIO_INT_LVL_HIGH 2 /* High Level Triggered */
1072 +#define AR2315_GPIO_INT_LVL_EDGE 3 /* Edge Triggered */
1073 +
1074 +#define AR2315_RESET_GPIO 5
1075 +#define AR2315_NUM_GPIO 22
1076 +
1077 +/*
1078 + * PCI Clock Control
1079 + */
1080 +#define AR2315_PCICLK (AR2315_DSLBASE + 0x00a4)
1081 +
1082 +#define AR2315_PCICLK_INPUT_M 0x3
1083 +#define AR2315_PCICLK_INPUT_S 0
1084 +
1085 +#define AR2315_PCICLK_PLLC_CLKM 0
1086 +#define AR2315_PCICLK_PLLC_CLKM1 1
1087 +#define AR2315_PCICLK_PLLC_CLKC 2
1088 +#define AR2315_PCICLK_REF_CLK 3
1089 +
1090 +#define AR2315_PCICLK_DIV_M 0xc
1091 +#define AR2315_PCICLK_DIV_S 2
1092 +
1093 +#define AR2315_PCICLK_IN_FREQ 0
1094 +#define AR2315_PCICLK_IN_FREQ_DIV_6 1
1095 +#define AR2315_PCICLK_IN_FREQ_DIV_8 2
1096 +#define AR2315_PCICLK_IN_FREQ_DIV_10 3
1097 +
1098 +/*
1099 + * Observation Control Register
1100 + */
1101 +#define AR2315_OCR (AR2315_DSLBASE + 0x00b0)
1102 +#define OCR_GPIO0_IRIN 0x0040
1103 +#define OCR_GPIO1_IROUT 0x0080
1104 +#define OCR_GPIO3_RXCLR 0x0200
1105 +
1106 +/*
1107 + * General Clock Control
1108 + */
1109 +
1110 +#define AR2315_MISCCLK (AR2315_DSLBASE + 0x00b4)
1111 +#define MISCCLK_PLLBYPASS_EN 0x00000001
1112 +#define MISCCLK_PROCREFCLK 0x00000002
1113 +
1114 +/*
1115 + * SDRAM Controller
1116 + * - No read or write buffers are included.
1117 + */
1118 +#define AR2315_MEM_CFG (AR2315_SDRAMCTL + 0x00)
1119 +#define AR2315_MEM_CTRL (AR2315_SDRAMCTL + 0x0c)
1120 +#define AR2315_MEM_REF (AR2315_SDRAMCTL + 0x10)
1121 +
1122 +#define SDRAM_DATA_WIDTH_M 0x00006000
1123 +#define SDRAM_DATA_WIDTH_S 13
1124 +
1125 +#define SDRAM_COL_WIDTH_M 0x00001E00
1126 +#define SDRAM_COL_WIDTH_S 9
1127 +
1128 +#define SDRAM_ROW_WIDTH_M 0x000001E0
1129 +#define SDRAM_ROW_WIDTH_S 5
1130 +
1131 +#define SDRAM_BANKADDR_BITS_M 0x00000018
1132 +#define SDRAM_BANKADDR_BITS_S 3
1133 +
1134 +/*
1135 + * PCI Bus Interface Registers
1136 + */
1137 +#define AR2315_PCI_1MS_REG (AR2315_PCI + 0x0008)
1138 +#define AR2315_PCI_1MS_MASK 0x3FFFF /* # of AHB clk cycles in 1ms */
1139 +
1140 +#define AR2315_PCI_MISC_CONFIG (AR2315_PCI + 0x000c)
1141 +#define AR2315_PCIMISC_TXD_EN 0x00000001 /* Enable TXD for fragments */
1142 +#define AR2315_PCIMISC_CFG_SEL 0x00000002 /* mem or config cycles */
1143 +#define AR2315_PCIMISC_GIG_MASK 0x0000000C /* bits 31-30 for pci req */
1144 +#define AR2315_PCIMISC_RST_MODE 0x00000030
1145 +#define AR2315_PCIRST_INPUT 0x00000000 /* 4:5=0 rst is input */
1146 +#define AR2315_PCIRST_LOW 0x00000010 /* 4:5=1 rst to GND */
1147 +#define AR2315_PCIRST_HIGH 0x00000020 /* 4:5=2 rst to VDD */
1148 +#define AR2315_PCIGRANT_EN 0x00000000 /* 6:7=0 early grant en */
1149 +#define AR2315_PCIGRANT_FRAME 0x00000040 /* 6:7=1 grant waits 4 frame */
1150 +#define AR2315_PCIGRANT_IDLE 0x00000080 /* 6:7=2 grant waits 4 idle */
1151 +#define AR2315_PCIGRANT_GAP 0x00000000 /* 6:7=2 grant waits 4 idle */
1152 +#define AR2315_PCICACHE_DIS 0x00001000 /* PCI external access cache
1153 + * disable */
1154 +
1155 +#define AR2315_PCI_OUT_TSTAMP (AR2315_PCI + 0x0010)
1156 +
1157 +#define AR2315_PCI_UNCACHE_CFG (AR2315_PCI + 0x0014)
1158 +
1159 +#define AR2315_PCI_IN_EN (AR2315_PCI + 0x0100)
1160 +#define AR2315_PCI_IN_EN0 0x01 /* Enable chain 0 */
1161 +#define AR2315_PCI_IN_EN1 0x02 /* Enable chain 1 */
1162 +#define AR2315_PCI_IN_EN2 0x04 /* Enable chain 2 */
1163 +#define AR2315_PCI_IN_EN3 0x08 /* Enable chain 3 */
1164 +
1165 +#define AR2315_PCI_IN_DIS (AR2315_PCI + 0x0104)
1166 +#define AR2315_PCI_IN_DIS0 0x01 /* Disable chain 0 */
1167 +#define AR2315_PCI_IN_DIS1 0x02 /* Disable chain 1 */
1168 +#define AR2315_PCI_IN_DIS2 0x04 /* Disable chain 2 */
1169 +#define AR2315_PCI_IN_DIS3 0x08 /* Disable chain 3 */
1170 +
1171 +#define AR2315_PCI_IN_PTR (AR2315_PCI + 0x0200)
1172 +
1173 +#define AR2315_PCI_OUT_EN (AR2315_PCI + 0x0400)
1174 +#define AR2315_PCI_OUT_EN0 0x01 /* Enable chain 0 */
1175 +
1176 +#define AR2315_PCI_OUT_DIS (AR2315_PCI + 0x0404)
1177 +#define AR2315_PCI_OUT_DIS0 0x01 /* Disable chain 0 */
1178 +
1179 +#define AR2315_PCI_OUT_PTR (AR2315_PCI + 0x0408)
1180 +
1181 +#define AR2315_PCI_INT_STATUS (AR2315_PCI + 0x0500) /* write one to clr */
1182 +#define AR2315_PCI_TXINT 0x00000001 /* Desc In Completed */
1183 +#define AR2315_PCI_TXOK 0x00000002 /* Desc In OK */
1184 +#define AR2315_PCI_TXERR 0x00000004 /* Desc In ERR */
1185 +#define AR2315_PCI_TXEOL 0x00000008 /* Desc In End-of-List */
1186 +#define AR2315_PCI_RXINT 0x00000010 /* Desc Out Completed */
1187 +#define AR2315_PCI_RXOK 0x00000020 /* Desc Out OK */
1188 +#define AR2315_PCI_RXERR 0x00000040 /* Desc Out ERR */
1189 +#define AR2315_PCI_RXEOL 0x00000080 /* Desc Out EOL */
1190 +#define AR2315_PCI_TXOOD 0x00000200 /* Desc In Out-of-Desc */
1191 +#define AR2315_PCI_MASK 0x0000FFFF /* Desc Mask */
1192 +#define AR2315_PCI_EXT_INT 0x02000000
1193 +#define AR2315_PCI_ABORT_INT 0x04000000
1194 +
1195 +#define AR2315_PCI_INT_MASK (AR2315_PCI + 0x0504) /* same as INT_STATUS */
1196 +
1197 +#define AR2315_PCI_INTEN_REG (AR2315_PCI + 0x0508)
1198 +#define AR2315_PCI_INT_DISABLE 0x00 /* disable pci interrupts */
1199 +#define AR2315_PCI_INT_ENABLE 0x01 /* enable pci interrupts */
1200 +
1201 +#define AR2315_PCI_HOST_IN_EN (AR2315_PCI + 0x0800)
1202 +#define AR2315_PCI_HOST_IN_DIS (AR2315_PCI + 0x0804)
1203 +#define AR2315_PCI_HOST_IN_PTR (AR2315_PCI + 0x0810)
1204 +#define AR2315_PCI_HOST_OUT_EN (AR2315_PCI + 0x0900)
1205 +#define AR2315_PCI_HOST_OUT_DIS (AR2315_PCI + 0x0904)
1206 +#define AR2315_PCI_HOST_OUT_PTR (AR2315_PCI + 0x0908)
1207 +
1208 +
1209 +/*
1210 + * Local Bus Interface Registers
1211 + */
1212 +#define AR2315_LB_CONFIG (AR2315_LOCAL + 0x0000)
1213 +#define AR2315_LBCONF_OE 0x00000001 /* =1 OE is low-true */
1214 +#define AR2315_LBCONF_CS0 0x00000002 /* =1 first CS is low-true */
1215 +#define AR2315_LBCONF_CS1 0x00000004 /* =1 2nd CS is low-true */
1216 +#define AR2315_LBCONF_RDY 0x00000008 /* =1 RDY is low-true */
1217 +#define AR2315_LBCONF_WE 0x00000010 /* =1 Write En is low-true */
1218 +#define AR2315_LBCONF_WAIT 0x00000020 /* =1 WAIT is low-true */
1219 +#define AR2315_LBCONF_ADS 0x00000040 /* =1 Adr Strobe is low-true */
1220 +#define AR2315_LBCONF_MOT 0x00000080 /* =0 Intel, =1 Motorola */
1221 +#define AR2315_LBCONF_8CS 0x00000100 /* =1 8 bits CS, 0= 16bits */
1222 +#define AR2315_LBCONF_8DS 0x00000200 /* =1 8 bits Data S, 0=16bits */
1223 +#define AR2315_LBCONF_ADS_EN 0x00000400 /* =1 Enable ADS */
1224 +#define AR2315_LBCONF_ADR_OE 0x00000800 /* =1 Adr cap on OE, WE or DS */
1225 +#define AR2315_LBCONF_ADDT_MUX 0x00001000 /* =1 Adr and Data share bus */
1226 +#define AR2315_LBCONF_DATA_OE 0x00002000 /* =1 Data cap on OE, WE, DS */
1227 +#define AR2315_LBCONF_16DATA 0x00004000 /* =1 Data is 16 bits wide */
1228 +#define AR2315_LBCONF_SWAPDT 0x00008000 /* =1 Byte swap data */
1229 +#define AR2315_LBCONF_SYNC 0x00010000 /* =1 Bus synchronous to clk */
1230 +#define AR2315_LBCONF_INT 0x00020000 /* =1 Intr is low true */
1231 +#define AR2315_LBCONF_INT_CTR0 0x00000000 /* GND high-Z, Vdd is high-Z */
1232 +#define AR2315_LBCONF_INT_CTR1 0x00040000 /* GND drive, Vdd is high-Z */
1233 +#define AR2315_LBCONF_INT_CTR2 0x00080000 /* GND high-Z, Vdd drive */
1234 +#define AR2315_LBCONF_INT_CTR3 0x000C0000 /* GND drive, Vdd drive */
1235 +#define AR2315_LBCONF_RDY_WAIT 0x00100000 /* =1 RDY is negative of WAIT */
1236 +#define AR2315_LBCONF_INT_PULSE 0x00200000 /* =1 Interrupt is a pulse */
1237 +#define AR2315_LBCONF_ENABLE 0x00400000 /* =1 Falcon respond to LB */
1238 +
1239 +#define AR2315_LB_CLKSEL (AR2315_LOCAL + 0x0004)
1240 +#define AR2315_LBCLK_EXT 0x0001 /* use external clk for lb */
1241 +
1242 +#define AR2315_LB_1MS (AR2315_LOCAL + 0x0008)
1243 +#define AR2315_LB1MS_MASK 0x3FFFF /* # of AHB clk cycles in 1ms */
1244 +
1245 +#define AR2315_LB_MISCCFG (AR2315_LOCAL + 0x000C)
1246 +#define AR2315_LBM_TXD_EN 0x00000001 /* Enable TXD for fragments */
1247 +#define AR2315_LBM_RX_INTEN 0x00000002 /* Enable LB ints on RX ready */
1248 +#define AR2315_LBM_MBOXWR_INTEN 0x00000004 /* Enable LB ints on mbox wr */
1249 +#define AR2315_LBM_MBOXRD_INTEN 0x00000008 /* Enable LB ints on mbox rd */
1250 +#define AR2315_LMB_DESCSWAP_EN 0x00000010 /* Byte swap desc enable */
1251 +#define AR2315_LBM_TIMEOUT_MASK 0x00FFFF80
1252 +#define AR2315_LBM_TIMEOUT_SHFT 7
1253 +#define AR2315_LBM_PORTMUX 0x07000000
1254 +
1255 +
1256 +#define AR2315_LB_RXTSOFF (AR2315_LOCAL + 0x0010)
1257 +
1258 +#define AR2315_LB_TX_CHAIN_EN (AR2315_LOCAL + 0x0100)
1259 +#define AR2315_LB_TXEN_0 0x01
1260 +#define AR2315_LB_TXEN_1 0x02
1261 +#define AR2315_LB_TXEN_2 0x04
1262 +#define AR2315_LB_TXEN_3 0x08
1263 +
1264 +#define AR2315_LB_TX_CHAIN_DIS (AR2315_LOCAL + 0x0104)
1265 +#define AR2315_LB_TX_DESC_PTR (AR2315_LOCAL + 0x0200)
1266 +
1267 +#define AR2315_LB_RX_CHAIN_EN (AR2315_LOCAL + 0x0400)
1268 +#define AR2315_LB_RXEN 0x01
1269 +
1270 +#define AR2315_LB_RX_CHAIN_DIS (AR2315_LOCAL + 0x0404)
1271 +#define AR2315_LB_RX_DESC_PTR (AR2315_LOCAL + 0x0408)
1272 +
1273 +#define AR2315_LB_INT_STATUS (AR2315_LOCAL + 0x0500)
1274 +#define AR2315_INT_TX_DESC 0x0001
1275 +#define AR2315_INT_TX_OK 0x0002
1276 +#define AR2315_INT_TX_ERR 0x0004
1277 +#define AR2315_INT_TX_EOF 0x0008
1278 +#define AR2315_INT_RX_DESC 0x0010
1279 +#define AR2315_INT_RX_OK 0x0020
1280 +#define AR2315_INT_RX_ERR 0x0040
1281 +#define AR2315_INT_RX_EOF 0x0080
1282 +#define AR2315_INT_TX_TRUNC 0x0100
1283 +#define AR2315_INT_TX_STARVE 0x0200
1284 +#define AR2315_INT_LB_TIMEOUT 0x0400
1285 +#define AR2315_INT_LB_ERR 0x0800
1286 +#define AR2315_INT_MBOX_WR 0x1000
1287 +#define AR2315_INT_MBOX_RD 0x2000
1288 +
1289 +/* Bit definitions for INT MASK are the same as INT_STATUS */
1290 +#define AR2315_LB_INT_MASK (AR2315_LOCAL + 0x0504)
1291 +
1292 +#define AR2315_LB_INT_EN (AR2315_LOCAL + 0x0508)
1293 +#define AR2315_LB_MBOX (AR2315_LOCAL + 0x0600)
1294 +
1295 +/*
1296 + * IR Interface Registers
1297 + */
1298 +#define AR2315_IR_PKTDATA (AR2315_IR + 0x0000)
1299 +
1300 +#define AR2315_IR_PKTLEN (AR2315_IR + 0x07fc) /* 0 - 63 */
1301 +
1302 +#define AR2315_IR_CONTROL (AR2315_IR + 0x0800)
1303 +#define AR2315_IRCTL_TX 0x00000000 /* use as tranmitter */
1304 +#define AR2315_IRCTL_RX 0x00000001 /* use as receiver */
1305 +#define AR2315_IRCTL_SAMPLECLK_MASK 0x00003ffe /* Sample clk divisor */
1306 +#define AR2315_IRCTL_SAMPLECLK_SHFT 1
1307 +#define AR2315_IRCTL_OUTPUTCLK_MASK 0x03ffc000 /* Output clk div */
1308 +#define AR2315_IRCTL_OUTPUTCLK_SHFT 14
1309 +
1310 +#define AR2315_IR_STATUS (AR2315_IR + 0x0804)
1311 +#define AR2315_IRSTS_RX 0x00000001 /* receive in progress */
1312 +#define AR2315_IRSTS_TX 0x00000002 /* transmit in progress */
1313 +
1314 +#define AR2315_IR_CONFIG (AR2315_IR + 0x0808)
1315 +#define AR2315_IRCFG_INVIN 0x00000001 /* invert in polarity */
1316 +#define AR2315_IRCFG_INVOUT 0x00000002 /* invert out polarity */
1317 +#define AR2315_IRCFG_SEQ_START_WIN_SEL 0x00000004 /* 1 => 28, 0 => 7 */
1318 +#define AR2315_IRCFG_SEQ_START_THRESH 0x000000f0
1319 +#define AR2315_IRCFG_SEQ_END_UNIT_SEL 0x00000100
1320 +#define AR2315_IRCFG_SEQ_END_UNIT_THRESH 0x00007e00
1321 +#define AR2315_IRCFG_SEQ_END_WIN_SEL 0x00008000
1322 +#define AR2315_IRCFG_SEQ_END_WIN_THRESH 0x001f0000
1323 +#define AR2315_IRCFG_NUM_BACKOFF_WORDS 0x01e00000
1324 +
1325 +#define HOST_PCI_DEV_ID 3
1326 +#define HOST_PCI_MBAR0 0x10000000
1327 +#define HOST_PCI_MBAR1 0x20000000
1328 +#define HOST_PCI_MBAR2 0x30000000
1329 +
1330 +#define HOST_PCI_SDRAM_BASEADDR HOST_PCI_MBAR1
1331 +#define PCI_DEVICE_MEM_SPACE 0x800000
1332 +
1333 +#endif /* __ASM_MACH_AR231X_AR2315_REGS_H */
1334 --- /dev/null
1335 +++ b/arch/mips/include/asm/mach-ar231x/ar5312_regs.h
1336 @@ -0,0 +1,253 @@
1337 +/*
1338 + * This file is subject to the terms and conditions of the GNU General Public
1339 + * License. See the file "COPYING" in the main directory of this archive
1340 + * for more details.
1341 + *
1342 + * Copyright (C) 2003 Atheros Communications, Inc., All Rights Reserved.
1343 + * Copyright (C) 2006 Imre Kaloz <kaloz@openwrt.org>
1344 + * Copyright (C) 2006 Felix Fietkau <nbd@openwrt.org>
1345 + */
1346 +
1347 +#ifndef __ASM_MACH_AR231X_AR5312_REGS_H
1348 +#define __ASM_MACH_AR231X_AR5312_REGS_H
1349 +
1350 +#include <asm/addrspace.h>
1351 +
1352 +/*
1353 + * IRQs
1354 + */
1355 +
1356 +#define AR5312_IRQ_WLAN0_INTRS (MIPS_CPU_IRQ_BASE+2) /* C0_CAUSE: 0x0400 */
1357 +#define AR5312_IRQ_ENET0_INTRS (MIPS_CPU_IRQ_BASE+3) /* C0_CAUSE: 0x0800 */
1358 +#define AR5312_IRQ_ENET1_INTRS (MIPS_CPU_IRQ_BASE+4) /* C0_CAUSE: 0x1000 */
1359 +#define AR5312_IRQ_WLAN1_INTRS (MIPS_CPU_IRQ_BASE+5) /* C0_CAUSE: 0x2000 */
1360 +#define AR5312_IRQ_MISC_INTRS (MIPS_CPU_IRQ_BASE+6) /* C0_CAUSE: 0x4000 */
1361 +
1362 +
1363 +/*
1364 + * Miscellaneous interrupts, which share IP6.
1365 + */
1366 +#define AR5312_MISC_IRQ_NONE (AR231X_MISC_IRQ_BASE+0)
1367 +#define AR5312_MISC_IRQ_TIMER (AR231X_MISC_IRQ_BASE+1)
1368 +#define AR5312_MISC_IRQ_AHB_PROC (AR231X_MISC_IRQ_BASE+2)
1369 +#define AR5312_MISC_IRQ_AHB_DMA (AR231X_MISC_IRQ_BASE+3)
1370 +#define AR5312_MISC_IRQ_GPIO (AR231X_MISC_IRQ_BASE+4)
1371 +#define AR5312_MISC_IRQ_UART0 (AR231X_MISC_IRQ_BASE+5)
1372 +#define AR5312_MISC_IRQ_UART0_DMA (AR231X_MISC_IRQ_BASE+6)
1373 +#define AR5312_MISC_IRQ_WATCHDOG (AR231X_MISC_IRQ_BASE+7)
1374 +#define AR5312_MISC_IRQ_LOCAL (AR231X_MISC_IRQ_BASE+8)
1375 +#define AR5312_MISC_IRQ_SPI (AR231X_MISC_IRQ_BASE+9)
1376 +#define AR5312_MISC_IRQ_COUNT 10
1377 +
1378 +
1379 +/* Address Map */
1380 +#define AR5312_WLAN0 0x18000000
1381 +#define AR5312_WLAN1 0x18500000
1382 +#define AR5312_ENET0 0x18100000
1383 +#define AR5312_ENET1 0x18200000
1384 +#define AR5312_SDRAMCTL 0x18300000
1385 +#define AR5312_FLASHCTL 0x18400000
1386 +#define AR5312_APBBASE 0x1c000000
1387 +#define AR5312_UART0 0x1c000000 /* UART MMR */
1388 +#define AR5312_FLASH 0x1e000000
1389 +
1390 +/*
1391 + * AR5312_NUM_ENET_MAC defines the number of ethernet MACs that
1392 + * should be considered available. The AR5312 supports 2 enet MACS,
1393 + * even though many reference boards only actually use 1 of them
1394 + * (i.e. Only MAC 0 is actually connected to an enet PHY or PHY switch.
1395 + * The AR2312 supports 1 enet MAC.
1396 + */
1397 +#define AR5312_NUM_ENET_MAC 2
1398 +
1399 +/*
1400 + * Need these defines to determine true number of ethernet MACs
1401 + */
1402 +#define AR5312_AR5312_REV2 0x0052 /* AR5312 WMAC (AP31) */
1403 +#define AR5312_AR5312_REV7 0x0057 /* AR5312 WMAC (AP30-040) */
1404 +#define AR5312_AR2313_REV8 0x0058 /* AR2313 WMAC (AP43-030) */
1405 +
1406 +/* MII registers offset inside Ethernet MMR region */
1407 +#define AR5312_ENET0_MII (AR5312_ENET0 + 0x14)
1408 +#define AR5312_ENET1_MII (AR5312_ENET1 + 0x14)
1409 +
1410 +/*
1411 + * AR5312_NUM_WMAC defines the number of Wireless MACs that\
1412 + * should be considered available.
1413 + */
1414 +#define AR5312_NUM_WMAC 2
1415 +
1416 +/* Reset/Timer Block Address Map */
1417 +#define AR5312_RESETTMR (AR5312_APBBASE + 0x3000)
1418 +#define AR5312_TIMER (AR5312_RESETTMR + 0x0000) /* countdown timer */
1419 +#define AR5312_WD_CTRL (AR5312_RESETTMR + 0x0008) /* watchdog cntrl */
1420 +#define AR5312_WD_TIMER (AR5312_RESETTMR + 0x000c) /* watchdog timer */
1421 +#define AR5312_ISR (AR5312_RESETTMR + 0x0010) /* Intr Status Reg */
1422 +#define AR5312_IMR (AR5312_RESETTMR + 0x0014) /* Intr Mask Reg */
1423 +#define AR5312_RESET (AR5312_RESETTMR + 0x0020)
1424 +#define AR5312_CLOCKCTL1 (AR5312_RESETTMR + 0x0064)
1425 +#define AR5312_SCRATCH (AR5312_RESETTMR + 0x006c)
1426 +#define AR5312_PROCADDR (AR5312_RESETTMR + 0x0070)
1427 +#define AR5312_PROC1 (AR5312_RESETTMR + 0x0074)
1428 +#define AR5312_DMAADDR (AR5312_RESETTMR + 0x0078)
1429 +#define AR5312_DMA1 (AR5312_RESETTMR + 0x007c)
1430 +#define AR5312_ENABLE (AR5312_RESETTMR + 0x0080) /* interface enb */
1431 +#define AR5312_REV (AR5312_RESETTMR + 0x0090) /* revision */
1432 +
1433 +/* AR5312_WD_CTRL register bit field definitions */
1434 +#define AR5312_WD_CTRL_IGNORE_EXPIRATION 0x0000
1435 +#define AR5312_WD_CTRL_NMI 0x0001
1436 +#define AR5312_WD_CTRL_RESET 0x0002
1437 +
1438 +/* AR5312_ISR register bit field definitions */
1439 +#define AR5312_ISR_NONE 0x0000
1440 +#define AR5312_ISR_TIMER 0x0001
1441 +#define AR5312_ISR_AHBPROC 0x0002
1442 +#define AR5312_ISR_AHBDMA 0x0004
1443 +#define AR5312_ISR_GPIO 0x0008
1444 +#define AR5312_ISR_UART0 0x0010
1445 +#define AR5312_ISR_UART0DMA 0x0020
1446 +#define AR5312_ISR_WD 0x0040
1447 +#define AR5312_ISR_LOCAL 0x0080
1448 +
1449 +/* AR5312_RESET register bit field definitions */
1450 +#define AR5312_RESET_SYSTEM 0x00000001 /* cold reset full system */
1451 +#define AR5312_RESET_PROC 0x00000002 /* cold reset MIPS core */
1452 +#define AR5312_RESET_WLAN0 0x00000004 /* cold reset WLAN MAC and BB */
1453 +#define AR5312_RESET_EPHY0 0x00000008 /* cold reset ENET0 phy */
1454 +#define AR5312_RESET_EPHY1 0x00000010 /* cold reset ENET1 phy */
1455 +#define AR5312_RESET_ENET0 0x00000020 /* cold reset ENET0 mac */
1456 +#define AR5312_RESET_ENET1 0x00000040 /* cold reset ENET1 mac */
1457 +#define AR5312_RESET_UART0 0x00000100 /* cold reset UART0 (high speed) */
1458 +#define AR5312_RESET_WLAN1 0x00000200 /* cold reset WLAN MAC/BB */
1459 +#define AR5312_RESET_APB 0x00000400 /* cold reset APB (ar5312) */
1460 +#define AR5312_RESET_WARM_PROC 0x00001000 /* warm reset MIPS core */
1461 +#define AR5312_RESET_WARM_WLAN0_MAC 0x00002000 /* warm reset WLAN0 MAC */
1462 +#define AR5312_RESET_WARM_WLAN0_BB 0x00004000 /* warm reset WLAN0 BaseBand */
1463 +#define AR5312_RESET_NMI 0x00010000 /* send an NMI to the processor */
1464 +#define AR5312_RESET_WARM_WLAN1_MAC 0x00020000 /* warm reset WLAN1 mac */
1465 +#define AR5312_RESET_WARM_WLAN1_BB 0x00040000 /* warm reset WLAN1 baseband */
1466 +#define AR5312_RESET_LOCAL_BUS 0x00080000 /* reset local bus */
1467 +#define AR5312_RESET_WDOG 0x00100000 /* last reset was a watchdog */
1468 +
1469 +#define AR5312_RESET_WMAC0_BITS \
1470 + (AR5312_RESET_WLAN0 |\
1471 + AR5312_RESET_WARM_WLAN0_MAC |\
1472 + AR5312_RESET_WARM_WLAN0_BB)
1473 +
1474 +#define AR5312_RESET_WMAC1_BITS \
1475 + (AR5312_RESET_WLAN1 |\
1476 + AR5312_RESET_WARM_WLAN1_MAC |\
1477 + AR5312_RESET_WARM_WLAN1_BB)
1478 +
1479 +/* AR5312_CLOCKCTL1 register bit field definitions */
1480 +#define AR5312_CLOCKCTL1_PREDIVIDE_MASK 0x00000030
1481 +#define AR5312_CLOCKCTL1_PREDIVIDE_SHIFT 4
1482 +#define AR5312_CLOCKCTL1_MULTIPLIER_MASK 0x00001f00
1483 +#define AR5312_CLOCKCTL1_MULTIPLIER_SHIFT 8
1484 +#define AR5312_CLOCKCTL1_DOUBLER_MASK 0x00010000
1485 +
1486 +/* Valid for AR5312 and AR2312 */
1487 +#define AR5312_CLOCKCTL1_PREDIVIDE_MASK 0x00000030
1488 +#define AR5312_CLOCKCTL1_PREDIVIDE_SHIFT 4
1489 +#define AR5312_CLOCKCTL1_MULTIPLIER_MASK 0x00001f00
1490 +#define AR5312_CLOCKCTL1_MULTIPLIER_SHIFT 8
1491 +#define AR5312_CLOCKCTL1_DOUBLER_MASK 0x00010000
1492 +
1493 +/* Valid for AR2313 */
1494 +#define AR2313_CLOCKCTL1_PREDIVIDE_MASK 0x00003000
1495 +#define AR2313_CLOCKCTL1_PREDIVIDE_SHIFT 12
1496 +#define AR2313_CLOCKCTL1_MULTIPLIER_MASK 0x001f0000
1497 +#define AR2313_CLOCKCTL1_MULTIPLIER_SHIFT 16
1498 +#define AR2313_CLOCKCTL1_DOUBLER_MASK 0x00000000
1499 +
1500 +
1501 +/* AR5312_ENABLE register bit field definitions */
1502 +#define AR5312_ENABLE_WLAN0 0x0001
1503 +#define AR5312_ENABLE_ENET0 0x0002
1504 +#define AR5312_ENABLE_ENET1 0x0004
1505 +#define AR5312_ENABLE_UART_AND_WLAN1_PIO 0x0008 /* UART, and WLAN1 PIOs */
1506 +#define AR5312_ENABLE_WLAN1_DMA 0x0010 /* WLAN1 DMAs */
1507 +#define AR5312_ENABLE_WLAN1 \
1508 + (AR5312_ENABLE_UART_AND_WLAN1_PIO |\
1509 + AR5312_ENABLE_WLAN1_DMA)
1510 +
1511 +/* AR5312_REV register bit field definitions */
1512 +#define AR5312_REV_WMAC_MAJ 0xf000
1513 +#define AR5312_REV_WMAC_MAJ_S 12
1514 +#define AR5312_REV_WMAC_MIN 0x0f00
1515 +#define AR5312_REV_WMAC_MIN_S 8
1516 +#define AR5312_REV_MAJ 0x00f0
1517 +#define AR5312_REV_MAJ_S 4
1518 +#define AR5312_REV_MIN 0x000f
1519 +#define AR5312_REV_MIN_S 0
1520 +#define AR5312_REV_CHIP (AR5312_REV_MAJ|AR5312_REV_MIN)
1521 +
1522 +/* Major revision numbers, bits 7..4 of Revision ID register */
1523 +#define AR5312_REV_MAJ_AR5312 0x4
1524 +#define AR5312_REV_MAJ_AR2313 0x5
1525 +
1526 +/* Minor revision numbers, bits 3..0 of Revision ID register */
1527 +#define AR5312_REV_MIN_DUAL 0x0 /* Dual WLAN version */
1528 +#define AR5312_REV_MIN_SINGLE 0x1 /* Single WLAN version */
1529 +
1530 +/* AR5312_FLASHCTL register bit field definitions */
1531 +#define FLASHCTL_IDCY 0x0000000f /* Idle cycle turn around time */
1532 +#define FLASHCTL_IDCY_S 0
1533 +#define FLASHCTL_WST1 0x000003e0 /* Wait state 1 */
1534 +#define FLASHCTL_WST1_S 5
1535 +#define FLASHCTL_RBLE 0x00000400 /* Read byte lane enable */
1536 +#define FLASHCTL_WST2 0x0000f800 /* Wait state 2 */
1537 +#define FLASHCTL_WST2_S 11
1538 +#define FLASHCTL_AC 0x00070000 /* Flash address check (added) */
1539 +#define FLASHCTL_AC_S 16
1540 +#define FLASHCTL_AC_128K 0x00000000
1541 +#define FLASHCTL_AC_256K 0x00010000
1542 +#define FLASHCTL_AC_512K 0x00020000
1543 +#define FLASHCTL_AC_1M 0x00030000
1544 +#define FLASHCTL_AC_2M 0x00040000
1545 +#define FLASHCTL_AC_4M 0x00050000
1546 +#define FLASHCTL_AC_8M 0x00060000
1547 +#define FLASHCTL_AC_RES 0x00070000 /* 16MB is not supported */
1548 +#define FLASHCTL_E 0x00080000 /* Flash bank enable (added) */
1549 +#define FLASHCTL_BUSERR 0x01000000 /* Bus transfer error status flag */
1550 +#define FLASHCTL_WPERR 0x02000000 /* Write protect error status flag */
1551 +#define FLASHCTL_WP 0x04000000 /* Write protect */
1552 +#define FLASHCTL_BM 0x08000000 /* Burst mode */
1553 +#define FLASHCTL_MW 0x30000000 /* Memory width */
1554 +#define FLASHCTL_MWx8 0x00000000 /* Memory width x8 */
1555 +#define FLASHCTL_MWx16 0x10000000 /* Memory width x16 */
1556 +#define FLASHCTL_MWx32 0x20000000 /* Memory width x32 (not supported) */
1557 +#define FLASHCTL_ATNR 0x00000000 /* Access type == no retry */
1558 +#define FLASHCTL_ATR 0x80000000 /* Access type == retry every */
1559 +#define FLASHCTL_ATR4 0xc0000000 /* Access type == retry every 4 */
1560 +
1561 +/* ARM Flash Controller -- 3 flash banks with either x8 or x16 devices. */
1562 +#define AR5312_FLASHCTL0 (AR5312_FLASHCTL + 0x00)
1563 +#define AR5312_FLASHCTL1 (AR5312_FLASHCTL + 0x04)
1564 +#define AR5312_FLASHCTL2 (AR5312_FLASHCTL + 0x08)
1565 +
1566 +/* ARM SDRAM Controller -- just enough to determine memory size */
1567 +#define AR5312_MEM_CFG1 (AR5312_SDRAMCTL + 0x04)
1568 +#define MEM_CFG1_AC0 0x00000700 /* bank 0: SDRAM addr check (added) */
1569 +#define MEM_CFG1_AC0_S 8
1570 +#define MEM_CFG1_AC1 0x00007000 /* bank 1: SDRAM addr check (added) */
1571 +#define MEM_CFG1_AC1_S 12
1572 +
1573 +/* GPIO Address Map */
1574 +#define AR5312_GPIO (AR5312_APBBASE + 0x2000)
1575 +#define AR5312_GPIO_DO (AR5312_GPIO + 0x00) /* output register */
1576 +#define AR5312_GPIO_DI (AR5312_GPIO + 0x04) /* intput register */
1577 +#define AR5312_GPIO_CR (AR5312_GPIO + 0x08) /* control register */
1578 +
1579 +/* GPIO Control Register bit field definitions */
1580 +#define AR5312_GPIO_CR_M(x) (1 << (x)) /* mask for i/o */
1581 +#define AR5312_GPIO_CR_O(x) (0 << (x)) /* mask for output */
1582 +#define AR5312_GPIO_CR_I(x) (1 << (x)) /* mask for input */
1583 +#define AR5312_GPIO_CR_INT(x) (1 << ((x)+8)) /* mask for interrupt*/
1584 +#define AR5312_GPIO_CR_UART(x) (1 << ((x)+16)) /* uart multiplex */
1585 +#define AR5312_NUM_GPIO 8
1586 +
1587 +
1588 +#endif /* __ASM_MACH_AR231X_AR5312_REGS_H */
1589 +
1590 --- /dev/null
1591 +++ b/arch/mips/ar231x/ar5312.c
1592 @@ -0,0 +1,542 @@
1593 +/*
1594 + * This file is subject to the terms and conditions of the GNU General Public
1595 + * License. See the file "COPYING" in the main directory of this archive
1596 + * for more details.
1597 + *
1598 + * Copyright (C) 2003 Atheros Communications, Inc., All Rights Reserved.
1599 + * Copyright (C) 2006 FON Technology, SL.
1600 + * Copyright (C) 2006 Imre Kaloz <kaloz@openwrt.org>
1601 + * Copyright (C) 2006-2009 Felix Fietkau <nbd@openwrt.org>
1602 + * Copyright (C) 2012 Alexandros C. Couloumbis <alex@ozo.com>
1603 + */
1604 +
1605 +/*
1606 + * Platform devices for Atheros SoCs
1607 + */
1608 +
1609 +#include <generated/autoconf.h>
1610 +#include <linux/init.h>
1611 +#include <linux/module.h>
1612 +#include <linux/types.h>
1613 +#include <linux/string.h>
1614 +#include <linux/mtd/physmap.h>
1615 +#include <linux/platform_device.h>
1616 +#include <linux/kernel.h>
1617 +#include <linux/reboot.h>
1618 +#include <linux/leds.h>
1619 +#include <linux/gpio.h>
1620 +#include <asm/bootinfo.h>
1621 +#include <asm/reboot.h>
1622 +#include <asm/time.h>
1623 +#include <linux/irq.h>
1624 +#include <linux/io.h>
1625 +
1626 +#include <ar231x_platform.h>
1627 +#include <ar5312_regs.h>
1628 +#include <ar231x.h>
1629 +#include "devices.h"
1630 +#include "ar5312.h"
1631 +
1632 +static void ar5312_misc_irq_handler(unsigned irq, struct irq_desc *desc)
1633 +{
1634 + unsigned int ar231x_misc_intrs = ar231x_read_reg(AR5312_ISR) &
1635 + ar231x_read_reg(AR5312_IMR);
1636 +
1637 + if (ar231x_misc_intrs & AR5312_ISR_TIMER) {
1638 + do_IRQ(AR5312_MISC_IRQ_TIMER);
1639 + (void)ar231x_read_reg(AR5312_TIMER);
1640 + } else if (ar231x_misc_intrs & AR5312_ISR_AHBPROC)
1641 + do_IRQ(AR5312_MISC_IRQ_AHB_PROC);
1642 + else if ((ar231x_misc_intrs & AR5312_ISR_UART0))
1643 + do_IRQ(AR5312_MISC_IRQ_UART0);
1644 + else if (ar231x_misc_intrs & AR5312_ISR_WD)
1645 + do_IRQ(AR5312_MISC_IRQ_WATCHDOG);
1646 + else
1647 + do_IRQ(AR5312_MISC_IRQ_NONE);
1648 +}
1649 +
1650 +static asmlinkage void
1651 +ar5312_irq_dispatch(void)
1652 +{
1653 + int pending = read_c0_status() & read_c0_cause();
1654 +
1655 + if (pending & CAUSEF_IP2)
1656 + do_IRQ(AR5312_IRQ_WLAN0_INTRS);
1657 + else if (pending & CAUSEF_IP3)
1658 + do_IRQ(AR5312_IRQ_ENET0_INTRS);
1659 + else if (pending & CAUSEF_IP4)
1660 + do_IRQ(AR5312_IRQ_ENET1_INTRS);
1661 + else if (pending & CAUSEF_IP5)
1662 + do_IRQ(AR5312_IRQ_WLAN1_INTRS);
1663 + else if (pending & CAUSEF_IP6)
1664 + do_IRQ(AR5312_IRQ_MISC_INTRS);
1665 + else if (pending & CAUSEF_IP7)
1666 + do_IRQ(AR231X_IRQ_CPU_CLOCK);
1667 +}
1668 +
1669 +
1670 +/* Enable the specified AR5312_MISC_IRQ interrupt */
1671 +static void
1672 +ar5312_misc_irq_unmask(struct irq_data *d)
1673 +{
1674 + unsigned int imr;
1675 +
1676 + imr = ar231x_read_reg(AR5312_IMR);
1677 + imr |= (1 << (d->irq - AR231X_MISC_IRQ_BASE - 1));
1678 + ar231x_write_reg(AR5312_IMR, imr);
1679 +}
1680 +
1681 +/* Disable the specified AR5312_MISC_IRQ interrupt */
1682 +static void
1683 +ar5312_misc_irq_mask(struct irq_data *d)
1684 +{
1685 + unsigned int imr;
1686 +
1687 + imr = ar231x_read_reg(AR5312_IMR);
1688 + imr &= ~(1 << (d->irq - AR231X_MISC_IRQ_BASE - 1));
1689 + ar231x_write_reg(AR5312_IMR, imr);
1690 + ar231x_read_reg(AR5312_IMR); /* flush write buffer */
1691 +}
1692 +
1693 +static struct irq_chip ar5312_misc_irq_chip = {
1694 + .name = "AR5312-MISC",
1695 + .irq_unmask = ar5312_misc_irq_unmask,
1696 + .irq_mask = ar5312_misc_irq_mask,
1697 +};
1698 +
1699 +
1700 +static irqreturn_t ar5312_ahb_proc_handler(int cpl, void *dev_id)
1701 +{
1702 + u32 proc1 = ar231x_read_reg(AR5312_PROC1);
1703 + u32 proc_addr = ar231x_read_reg(AR5312_PROCADDR); /* clears error */
1704 + u32 dma1 = ar231x_read_reg(AR5312_DMA1);
1705 + u32 dma_addr = ar231x_read_reg(AR5312_DMAADDR); /* clears error */
1706 +
1707 + pr_emerg("AHB interrupt: PROCADDR=0x%8.8x PROC1=0x%8.8x "
1708 + "DMAADDR=0x%8.8x DMA1=0x%8.8x\n", proc_addr, proc1, dma_addr,
1709 + dma1);
1710 +
1711 + machine_restart("AHB error"); /* Catastrophic failure */
1712 + return IRQ_HANDLED;
1713 +}
1714 +
1715 +
1716 +static struct irqaction ar5312_ahb_proc_interrupt = {
1717 + .handler = ar5312_ahb_proc_handler,
1718 + .name = "ar5312_ahb_proc_interrupt",
1719 +};
1720 +
1721 +
1722 +void __init ar5312_irq_init(void)
1723 +{
1724 + int i;
1725 +
1726 + if (!is_5312())
1727 + return;
1728 +
1729 + ar231x_irq_dispatch = ar5312_irq_dispatch;
1730 + for (i = 0; i < AR5312_MISC_IRQ_COUNT; i++) {
1731 + int irq = AR231X_MISC_IRQ_BASE + i;
1732 +
1733 + irq_set_chip_and_handler(irq, &ar5312_misc_irq_chip,
1734 + handle_level_irq);
1735 + }
1736 + setup_irq(AR5312_MISC_IRQ_AHB_PROC, &ar5312_ahb_proc_interrupt);
1737 + irq_set_chained_handler(AR5312_IRQ_MISC_INTRS, ar5312_misc_irq_handler);
1738 +}
1739 +
1740 +/*
1741 + * gpiolib implementations
1742 + */
1743 +static int
1744 +ar5312_gpio_get_value(struct gpio_chip *chip, unsigned gpio)
1745 +{
1746 + return (ar231x_read_reg(AR5312_GPIO_DI) >> gpio) & 1;
1747 +}
1748 +
1749 +static void
1750 +ar5312_gpio_set_value(struct gpio_chip *chip, unsigned gpio, int value)
1751 +{
1752 + u32 reg = ar231x_read_reg(AR5312_GPIO_DO);
1753 +
1754 + reg = value ? reg | (1 << gpio) : reg & ~(1 << gpio);
1755 + ar231x_write_reg(AR5312_GPIO_DO, reg);
1756 +}
1757 +
1758 +static int
1759 +ar5312_gpio_direction_input(struct gpio_chip *chip, unsigned gpio)
1760 +{
1761 + ar231x_mask_reg(AR5312_GPIO_CR, 0, 1 << gpio);
1762 + return 0;
1763 +}
1764 +
1765 +static int
1766 +ar5312_gpio_direction_output(struct gpio_chip *chip, unsigned gpio, int value)
1767 +{
1768 + ar231x_mask_reg(AR5312_GPIO_CR, 1 << gpio, 0);
1769 + ar5312_gpio_set_value(chip, gpio, value);
1770 + return 0;
1771 +}
1772 +
1773 +static struct gpio_chip ar5312_gpio_chip = {
1774 + .label = "ar5312-gpio",
1775 + .direction_input = ar5312_gpio_direction_input,
1776 + .direction_output = ar5312_gpio_direction_output,
1777 + .set = ar5312_gpio_set_value,
1778 + .get = ar5312_gpio_get_value,
1779 + .base = 0,
1780 + .ngpio = AR5312_NUM_GPIO, /* 8 */
1781 +};
1782 +
1783 +/* end of gpiolib */
1784 +
1785 +static void ar5312_device_reset_set(u32 mask)
1786 +{
1787 + u32 val;
1788 +
1789 + val = ar231x_read_reg(AR5312_RESET);
1790 + ar231x_write_reg(AR5312_RESET, val | mask);
1791 +}
1792 +
1793 +static void ar5312_device_reset_clear(u32 mask)
1794 +{
1795 + u32 val;
1796 +
1797 + val = ar231x_read_reg(AR5312_RESET);
1798 + ar231x_write_reg(AR5312_RESET, val & ~mask);
1799 +}
1800 +
1801 +static struct physmap_flash_data ar5312_flash_data = {
1802 + .width = 2,
1803 +};
1804 +
1805 +static struct resource ar5312_flash_resource = {
1806 + .start = AR5312_FLASH,
1807 + .end = AR5312_FLASH + 0x800000 - 1,
1808 + .flags = IORESOURCE_MEM,
1809 +};
1810 +
1811 +static struct ar231x_eth ar5312_eth0_data = {
1812 + .reset_set = ar5312_device_reset_set,
1813 + .reset_clear = ar5312_device_reset_clear,
1814 + .reset_mac = AR5312_RESET_ENET0,
1815 + .reset_phy = AR5312_RESET_EPHY0,
1816 + .config = &ar231x_board,
1817 +};
1818 +
1819 +static struct ar231x_eth ar5312_eth1_data = {
1820 + .reset_set = ar5312_device_reset_set,
1821 + .reset_clear = ar5312_device_reset_clear,
1822 + .reset_mac = AR5312_RESET_ENET1,
1823 + .reset_phy = AR5312_RESET_EPHY1,
1824 + .config = &ar231x_board,
1825 +};
1826 +
1827 +static struct platform_device ar5312_physmap_flash = {
1828 + .name = "physmap-flash",
1829 + .id = 0,
1830 + .dev.platform_data = &ar5312_flash_data,
1831 + .resource = &ar5312_flash_resource,
1832 + .num_resources = 1,
1833 +};
1834 +
1835 +#ifdef CONFIG_LEDS_GPIO
1836 +static struct gpio_led ar5312_leds[] = {
1837 + { .name = "wlan", .gpio = 0, .active_low = 1, },
1838 +};
1839 +
1840 +static const struct gpio_led_platform_data ar5312_led_data = {
1841 + .num_leds = ARRAY_SIZE(ar5312_leds),
1842 + .leds = (void *)ar5312_leds,
1843 +};
1844 +
1845 +static struct platform_device ar5312_gpio_leds = {
1846 + .name = "leds-gpio",
1847 + .id = -1,
1848 + .dev.platform_data = (void *)&ar5312_led_data,
1849 +};
1850 +#endif
1851 +
1852 +/*
1853 + * NB: This mapping size is larger than the actual flash size,
1854 + * but this shouldn't be a problem here, because the flash
1855 + * will simply be mapped multiple times.
1856 + */
1857 +static char __init *ar5312_flash_limit(void)
1858 +{
1859 + u32 ctl;
1860 + /*
1861 + * Configure flash bank 0.
1862 + * Assume 8M window size. Flash will be aliased if it's smaller
1863 + */
1864 + ctl = FLASHCTL_E |
1865 + FLASHCTL_AC_8M |
1866 + FLASHCTL_RBLE |
1867 + (0x01 << FLASHCTL_IDCY_S) |
1868 + (0x07 << FLASHCTL_WST1_S) |
1869 + (0x07 << FLASHCTL_WST2_S) |
1870 + (ar231x_read_reg(AR5312_FLASHCTL0) & FLASHCTL_MW);
1871 +
1872 + ar231x_write_reg(AR5312_FLASHCTL0, ctl);
1873 +
1874 + /* Disable other flash banks */
1875 + ar231x_write_reg(AR5312_FLASHCTL1,
1876 + ar231x_read_reg(AR5312_FLASHCTL1) &
1877 + ~(FLASHCTL_E | FLASHCTL_AC));
1878 +
1879 + ar231x_write_reg(AR5312_FLASHCTL2,
1880 + ar231x_read_reg(AR5312_FLASHCTL2) &
1881 + ~(FLASHCTL_E | FLASHCTL_AC));
1882 +
1883 + return (char *)KSEG1ADDR(AR5312_FLASH + 0x800000);
1884 +}
1885 +
1886 +int __init ar5312_init_devices(void)
1887 +{
1888 + struct ar231x_boarddata *config;
1889 + u32 fctl = 0;
1890 + u8 *c;
1891 +
1892 + if (!is_5312())
1893 + return 0;
1894 +
1895 + /* Locate board/radio config data */
1896 + ar231x_find_config(ar5312_flash_limit());
1897 + config = ar231x_board.config;
1898 +
1899 + /* AR2313 has CPU minor rev. 10 */
1900 + if ((current_cpu_data.processor_id & 0xff) == 0x0a)
1901 + ar231x_devtype = DEV_TYPE_AR2313;
1902 +
1903 + /* AR2312 shares the same Silicon ID as AR5312 */
1904 + else if (config->flags & BD_ISCASPER)
1905 + ar231x_devtype = DEV_TYPE_AR2312;
1906 +
1907 + /* Everything else is probably AR5312 or compatible */
1908 + else
1909 + ar231x_devtype = DEV_TYPE_AR5312;
1910 +
1911 + /* fixup flash width */
1912 + fctl = ar231x_read_reg(AR5312_FLASHCTL) & FLASHCTL_MW;
1913 + switch (fctl) {
1914 + case FLASHCTL_MWx16:
1915 + ar5312_flash_data.width = 2;
1916 + break;
1917 + case FLASHCTL_MWx8:
1918 + default:
1919 + ar5312_flash_data.width = 1;
1920 + break;
1921 + }
1922 +
1923 + platform_device_register(&ar5312_physmap_flash);
1924 +
1925 +#ifdef CONFIG_LEDS_GPIO
1926 + ar5312_leds[0].gpio = config->sys_led_gpio;
1927 + platform_device_register(&ar5312_gpio_leds);
1928 +#endif
1929 +
1930 + /* Fix up MAC addresses if necessary */
1931 + if (is_broadcast_ether_addr(config->enet0_mac))
1932 + ether_addr_copy(config->enet0_mac, config->enet1_mac);
1933 +
1934 + /* If ENET0 and ENET1 have the same mac address,
1935 + * increment the one from ENET1 */
1936 + if (ether_addr_equal(config->enet0_mac, config->enet1_mac)) {
1937 + c = config->enet1_mac + 5;
1938 + while ((c >= config->enet1_mac) && !(++(*c)))
1939 + c--;
1940 + }
1941 +
1942 + switch (ar231x_devtype) {
1943 + case DEV_TYPE_AR5312:
1944 + ar5312_eth0_data.macaddr = config->enet0_mac;
1945 + ar231x_add_ethernet(0, AR5312_ENET0, "eth0_mii",
1946 + AR5312_ENET0_MII, AR5312_IRQ_ENET0_INTRS,
1947 + &ar5312_eth0_data);
1948 +
1949 + ar5312_eth1_data.macaddr = config->enet1_mac;
1950 + ar231x_add_ethernet(1, AR5312_ENET1, "eth1_mii",
1951 + AR5312_ENET1_MII, AR5312_IRQ_ENET1_INTRS,
1952 + &ar5312_eth1_data);
1953 +
1954 + if (!ar231x_board.radio)
1955 + return 0;
1956 +
1957 + if (!(config->flags & BD_WLAN0))
1958 + break;
1959 +
1960 + ar231x_add_wmac(0, AR5312_WLAN0, AR5312_IRQ_WLAN0_INTRS);
1961 + break;
1962 + /*
1963 + * AR2312/3 ethernet uses the PHY of ENET0, but the MAC
1964 + * of ENET1. Atheros calls it 'twisted' for a reason :)
1965 + */
1966 + case DEV_TYPE_AR2312:
1967 + case DEV_TYPE_AR2313:
1968 + ar5312_eth1_data.reset_phy = ar5312_eth0_data.reset_phy;
1969 + ar5312_eth1_data.macaddr = config->enet0_mac;
1970 + ar231x_add_ethernet(1, AR5312_ENET1, "eth0_mii",
1971 + AR5312_ENET0_MII, AR5312_IRQ_ENET1_INTRS,
1972 + &ar5312_eth1_data);
1973 +
1974 + if (!ar231x_board.radio)
1975 + return 0;
1976 + break;
1977 + default:
1978 + break;
1979 + }
1980 +
1981 + if (config->flags & BD_WLAN1)
1982 + ar231x_add_wmac(1, AR5312_WLAN1, AR5312_IRQ_WLAN1_INTRS);
1983 +
1984 + return 0;
1985 +}
1986 +
1987 +
1988 +static void ar5312_restart(char *command)
1989 +{
1990 + /* reset the system */
1991 + local_irq_disable();
1992 + while (1)
1993 + ar231x_write_reg(AR5312_RESET, AR5312_RESET_SYSTEM);
1994 +}
1995 +
1996 +
1997 +/*
1998 + * This table is indexed by bits 5..4 of the CLOCKCTL1 register
1999 + * to determine the predevisor value.
2000 + */
2001 +static int clockctl1_predivide_table[4] __initdata = { 1, 2, 4, 5 };
2002 +
2003 +
2004 +static int __init
2005 +ar5312_cpu_frequency(void)
2006 +{
2007 + unsigned int scratch;
2008 + unsigned int predivide_mask, predivide_shift;
2009 + unsigned int multiplier_mask, multiplier_shift;
2010 + unsigned int clock_ctl1, predivide_select, predivisor, multiplier;
2011 + unsigned int doubler_mask;
2012 + u16 devid;
2013 +
2014 + /* Trust the bootrom's idea of cpu frequency. */
2015 + scratch = ar231x_read_reg(AR5312_SCRATCH);
2016 + if (scratch)
2017 + return scratch;
2018 +
2019 + devid = ar231x_read_reg(AR5312_REV);
2020 + devid &= AR5312_REV_MAJ;
2021 + devid >>= AR5312_REV_MAJ_S;
2022 + if (devid == AR5312_REV_MAJ_AR2313) {
2023 + predivide_mask = AR2313_CLOCKCTL1_PREDIVIDE_MASK;
2024 + predivide_shift = AR2313_CLOCKCTL1_PREDIVIDE_SHIFT;
2025 + multiplier_mask = AR2313_CLOCKCTL1_MULTIPLIER_MASK;
2026 + multiplier_shift = AR2313_CLOCKCTL1_MULTIPLIER_SHIFT;
2027 + doubler_mask = AR2313_CLOCKCTL1_DOUBLER_MASK;
2028 + } else { /* AR5312 and AR2312 */
2029 + predivide_mask = AR5312_CLOCKCTL1_PREDIVIDE_MASK;
2030 + predivide_shift = AR5312_CLOCKCTL1_PREDIVIDE_SHIFT;
2031 + multiplier_mask = AR5312_CLOCKCTL1_MULTIPLIER_MASK;
2032 + multiplier_shift = AR5312_CLOCKCTL1_MULTIPLIER_SHIFT;
2033 + doubler_mask = AR5312_CLOCKCTL1_DOUBLER_MASK;
2034 + }
2035 +
2036 + /*
2037 + * Clocking is derived from a fixed 40MHz input clock.
2038 + *
2039 + * cpu_freq = input_clock * MULT (where MULT is PLL multiplier)
2040 + * sys_freq = cpu_freq / 4 (used for APB clock, serial,
2041 + * flash, Timer, Watchdog Timer)
2042 + *
2043 + * cnt_freq = cpu_freq / 2 (use for CPU count/compare)
2044 + *
2045 + * So, for example, with a PLL multiplier of 5, we have
2046 + *
2047 + * cpu_freq = 200MHz
2048 + * sys_freq = 50MHz
2049 + * cnt_freq = 100MHz
2050 + *
2051 + * We compute the CPU frequency, based on PLL settings.
2052 + */
2053 +
2054 + clock_ctl1 = ar231x_read_reg(AR5312_CLOCKCTL1);
2055 + predivide_select = (clock_ctl1 & predivide_mask) >> predivide_shift;
2056 + predivisor = clockctl1_predivide_table[predivide_select];
2057 + multiplier = (clock_ctl1 & multiplier_mask) >> multiplier_shift;
2058 +
2059 + if (clock_ctl1 & doubler_mask)
2060 + multiplier = multiplier << 1;
2061 +
2062 + return (40000000 / predivisor) * multiplier;
2063 +}
2064 +
2065 +static inline int
2066 +ar5312_sys_frequency(void)
2067 +{
2068 + return ar5312_cpu_frequency() / 4;
2069 +}
2070 +
2071 +void __init
2072 +ar5312_time_init(void)
2073 +{
2074 + if (!is_5312())
2075 + return;
2076 +
2077 + mips_hpt_frequency = ar5312_cpu_frequency() / 2;
2078 +}
2079 +
2080 +static int __init
2081 +ar5312_gpio_init(void)
2082 +{
2083 + int ret = gpiochip_add(&ar5312_gpio_chip);
2084 +
2085 + if (ret) {
2086 + pr_err("%s: failed to add gpiochip\n", ar5312_gpio_chip.label);
2087 + return ret;
2088 + }
2089 + pr_info("%s: registered %d GPIOs\n", ar5312_gpio_chip.label,
2090 + ar5312_gpio_chip.ngpio);
2091 + return ret;
2092 +}
2093 +
2094 +void __init
2095 +ar5312_prom_init(void)
2096 +{
2097 + u32 memsize, memcfg, bank0AC, bank1AC;
2098 + u32 devid;
2099 +
2100 + if (!is_5312())
2101 + return;
2102 +
2103 + /* Detect memory size */
2104 + memcfg = ar231x_read_reg(AR5312_MEM_CFG1);
2105 + bank0AC = (memcfg & MEM_CFG1_AC0) >> MEM_CFG1_AC0_S;
2106 + bank1AC = (memcfg & MEM_CFG1_AC1) >> MEM_CFG1_AC1_S;
2107 + memsize = (bank0AC ? (1 << (bank0AC+1)) : 0) +
2108 + (bank1AC ? (1 << (bank1AC+1)) : 0);
2109 + memsize <<= 20;
2110 + add_memory_region(0, memsize, BOOT_MEM_RAM);
2111 +
2112 + devid = ar231x_read_reg(AR5312_REV);
2113 + devid >>= AR5312_REV_WMAC_MIN_S;
2114 + devid &= AR5312_REV_CHIP;
2115 + ar231x_board.devid = (u16) devid;
2116 + ar5312_gpio_init();
2117 +}
2118 +
2119 +void __init
2120 +ar5312_plat_setup(void)
2121 +{
2122 + if (!is_5312())
2123 + return;
2124 +
2125 + /* Clear any lingering AHB errors */
2126 + ar231x_read_reg(AR5312_PROCADDR);
2127 + ar231x_read_reg(AR5312_DMAADDR);
2128 + ar231x_write_reg(AR5312_WD_CTRL, AR5312_WD_CTRL_IGNORE_EXPIRATION);
2129 +
2130 + _machine_restart = ar5312_restart;
2131 + ar231x_serial_setup(AR5312_UART0, AR5312_MISC_IRQ_UART0,
2132 + ar5312_sys_frequency());
2133 +}
2134 +
2135 --- /dev/null
2136 +++ b/arch/mips/ar231x/ar2315.c
2137 @@ -0,0 +1,559 @@
2138 +/*
2139 + * This file is subject to the terms and conditions of the GNU General Public
2140 + * License. See the file "COPYING" in the main directory of this archive
2141 + * for more details.
2142 + *
2143 + * Copyright (C) 2003 Atheros Communications, Inc., All Rights Reserved.
2144 + * Copyright (C) 2006 FON Technology, SL.
2145 + * Copyright (C) 2006 Imre Kaloz <kaloz@openwrt.org>
2146 + * Copyright (C) 2006 Felix Fietkau <nbd@openwrt.org>
2147 + * Copyright (C) 2012 Alexandros C. Couloumbis <alex@ozo.com>
2148 + */
2149 +
2150 +/*
2151 + * Platform devices for Atheros SoCs
2152 + */
2153 +
2154 +#include <generated/autoconf.h>
2155 +#include <linux/init.h>
2156 +#include <linux/module.h>
2157 +#include <linux/types.h>
2158 +#include <linux/string.h>
2159 +#include <linux/platform_device.h>
2160 +#include <linux/kernel.h>
2161 +#include <linux/reboot.h>
2162 +#include <linux/delay.h>
2163 +#include <linux/leds.h>
2164 +#include <linux/gpio.h>
2165 +#include <asm/bootinfo.h>
2166 +#include <asm/reboot.h>
2167 +#include <asm/time.h>
2168 +#include <linux/irq.h>
2169 +#include <linux/io.h>
2170 +
2171 +#include <ar231x_platform.h>
2172 +#include <ar2315_regs.h>
2173 +#include <ar231x.h>
2174 +#include "devices.h"
2175 +#include "ar2315.h"
2176 +
2177 +static u32 gpiointmask, gpiointval;
2178 +
2179 +static void ar2315_gpio_irq_handler(unsigned irq, struct irq_desc *desc)
2180 +{
2181 + u32 pend;
2182 + int bit = -1;
2183 +
2184 + /* only do one gpio interrupt at a time */
2185 + pend = (ar231x_read_reg(AR2315_GPIO_DI) ^ gpiointval) & gpiointmask;
2186 +
2187 + if (pend) {
2188 + bit = fls(pend) - 1;
2189 + pend &= ~(1 << bit);
2190 + gpiointval ^= (1 << bit);
2191 + }
2192 +
2193 + if (!pend)
2194 + ar231x_write_reg(AR2315_ISR, AR2315_ISR_GPIO);
2195 +
2196 + /* Enable interrupt with edge detection */
2197 + if ((ar231x_read_reg(AR2315_GPIO_DIR) & AR2315_GPIO_DIR_M(bit)) !=
2198 + AR2315_GPIO_DIR_I(bit))
2199 + return;
2200 +
2201 + if (bit >= 0)
2202 + do_IRQ(AR231X_GPIO_IRQ_BASE + bit);
2203 +}
2204 +
2205 +static void ar2315_misc_irq_handler(unsigned irq, struct irq_desc *desc)
2206 +{
2207 + unsigned int misc_intr = ar231x_read_reg(AR2315_ISR) &
2208 + ar231x_read_reg(AR2315_IMR);
2209 +
2210 + if (misc_intr & AR2315_ISR_SPI)
2211 + do_IRQ(AR2315_MISC_IRQ_SPI);
2212 + else if (misc_intr & AR2315_ISR_TIMER)
2213 + do_IRQ(AR2315_MISC_IRQ_TIMER);
2214 + else if (misc_intr & AR2315_ISR_AHB)
2215 + do_IRQ(AR2315_MISC_IRQ_AHB);
2216 + else if (misc_intr & AR2315_ISR_GPIO)
2217 + do_IRQ(AR2315_MISC_IRQ_GPIO);
2218 + else if (misc_intr & AR2315_ISR_UART0)
2219 + do_IRQ(AR2315_MISC_IRQ_UART0);
2220 + else if (misc_intr & AR2315_ISR_WD) {
2221 + ar231x_write_reg(AR2315_ISR, AR2315_ISR_WD);
2222 + do_IRQ(AR2315_MISC_IRQ_WATCHDOG);
2223 + } else
2224 + do_IRQ(AR2315_MISC_IRQ_NONE);
2225 +}
2226 +
2227 +/*
2228 + * Called when an interrupt is received, this function
2229 + * determines exactly which interrupt it was, and it
2230 + * invokes the appropriate handler.
2231 + *
2232 + * Implicitly, we also define interrupt priority by
2233 + * choosing which to dispatch first.
2234 + */
2235 +static asmlinkage void
2236 +ar2315_irq_dispatch(void)
2237 +{
2238 + int pending = read_c0_status() & read_c0_cause();
2239 +
2240 + if (pending & CAUSEF_IP3)
2241 + do_IRQ(AR2315_IRQ_WLAN0_INTRS);
2242 + else if (pending & CAUSEF_IP4)
2243 + do_IRQ(AR2315_IRQ_ENET0_INTRS);
2244 + else if (pending & CAUSEF_IP2)
2245 + do_IRQ(AR2315_IRQ_MISC_INTRS);
2246 + else if (pending & CAUSEF_IP7)
2247 + do_IRQ(AR231X_IRQ_CPU_CLOCK);
2248 +}
2249 +
2250 +static void ar2315_set_gpiointmask(int gpio, int level)
2251 +{
2252 + u32 reg;
2253 +
2254 + reg = ar231x_read_reg(AR2315_GPIO_INT);
2255 + reg &= ~(AR2315_GPIO_INT_M | AR2315_GPIO_INT_LVL_M);
2256 + reg |= gpio | AR2315_GPIO_INT_LVL(level);
2257 + ar231x_write_reg(AR2315_GPIO_INT, reg);
2258 +}
2259 +
2260 +static void ar2315_gpio_irq_unmask(struct irq_data *d)
2261 +{
2262 + unsigned int gpio = d->irq - AR231X_GPIO_IRQ_BASE;
2263 +
2264 + /* Enable interrupt with edge detection */
2265 + if ((ar231x_read_reg(AR2315_GPIO_DIR) & AR2315_GPIO_DIR_M(gpio)) !=
2266 + AR2315_GPIO_DIR_I(gpio))
2267 + return;
2268 +
2269 + gpiointmask |= (1 << gpio);
2270 + ar2315_set_gpiointmask(gpio, 3);
2271 +}
2272 +
2273 +static void ar2315_gpio_irq_mask(struct irq_data *d)
2274 +{
2275 + unsigned int gpio = d->irq - AR231X_GPIO_IRQ_BASE;
2276 +
2277 + /* Disable interrupt */
2278 + gpiointmask &= ~(1 << gpio);
2279 + ar2315_set_gpiointmask(gpio, 0);
2280 +}
2281 +
2282 +static struct irq_chip ar2315_gpio_irq_chip = {
2283 + .name = "AR2315-GPIO",
2284 + .irq_unmask = ar2315_gpio_irq_unmask,
2285 + .irq_mask = ar2315_gpio_irq_mask,
2286 +};
2287 +
2288 +static void
2289 +ar2315_misc_irq_unmask(struct irq_data *d)
2290 +{
2291 + unsigned int imr;
2292 +
2293 + imr = ar231x_read_reg(AR2315_IMR);
2294 + imr |= 1 << (d->irq - AR231X_MISC_IRQ_BASE - 1);
2295 + ar231x_write_reg(AR2315_IMR, imr);
2296 +}
2297 +
2298 +static void
2299 +ar2315_misc_irq_mask(struct irq_data *d)
2300 +{
2301 + unsigned int imr;
2302 +
2303 + imr = ar231x_read_reg(AR2315_IMR);
2304 + imr &= ~(1 << (d->irq - AR231X_MISC_IRQ_BASE - 1));
2305 + ar231x_write_reg(AR2315_IMR, imr);
2306 +}
2307 +
2308 +static struct irq_chip ar2315_misc_irq_chip = {
2309 + .name = "AR2315-MISC",
2310 + .irq_unmask = ar2315_misc_irq_unmask,
2311 + .irq_mask = ar2315_misc_irq_mask,
2312 +};
2313 +
2314 +static irqreturn_t ar2315_ahb_proc_handler(int cpl, void *dev_id)
2315 +{
2316 + ar231x_write_reg(AR2315_AHB_ERR0, AHB_ERROR_DET);
2317 + ar231x_read_reg(AR2315_AHB_ERR1);
2318 +
2319 + pr_emerg("AHB fatal error\n");
2320 + machine_restart("AHB error"); /* Catastrophic failure */
2321 +
2322 + return IRQ_HANDLED;
2323 +}
2324 +
2325 +static struct irqaction ar2315_ahb_proc_interrupt = {
2326 + .handler = ar2315_ahb_proc_handler,
2327 + .name = "ar2315_ahb_proc_interrupt",
2328 +};
2329 +
2330 +void
2331 +ar2315_irq_init(void)
2332 +{
2333 + int i;
2334 +
2335 + if (!is_2315())
2336 + return;
2337 +
2338 + ar231x_irq_dispatch = ar2315_irq_dispatch;
2339 + gpiointval = ar231x_read_reg(AR2315_GPIO_DI);
2340 + for (i = 0; i < AR2315_MISC_IRQ_COUNT; i++) {
2341 + int irq = AR231X_MISC_IRQ_BASE + i;
2342 +
2343 + irq_set_chip_and_handler(irq, &ar2315_misc_irq_chip,
2344 + handle_level_irq);
2345 + }
2346 + for (i = 0; i < AR2315_NUM_GPIO; i++) {
2347 + int irq = AR231X_GPIO_IRQ_BASE + i;
2348 +
2349 + irq_set_chip_and_handler(irq, &ar2315_gpio_irq_chip,
2350 + handle_level_irq);
2351 + }
2352 + irq_set_chained_handler(AR2315_MISC_IRQ_GPIO, ar2315_gpio_irq_handler);
2353 + setup_irq(AR2315_MISC_IRQ_AHB, &ar2315_ahb_proc_interrupt);
2354 + irq_set_chained_handler(AR2315_IRQ_MISC_INTRS, ar2315_misc_irq_handler);
2355 +}
2356 +
2357 +/*
2358 + * gpiolib implementation
2359 + */
2360 +static int
2361 +ar2315_gpio_get_value(struct gpio_chip *chip, unsigned gpio)
2362 +{
2363 + return (ar231x_read_reg(AR2315_GPIO_DI) >> gpio) & 1;
2364 +}
2365 +
2366 +static void
2367 +ar2315_gpio_set_value(struct gpio_chip *chip, unsigned gpio, int value)
2368 +{
2369 + u32 reg = ar231x_read_reg(AR2315_GPIO_DO);
2370 +
2371 + reg = value ? reg | (1 << gpio) : reg & ~(1 << gpio);
2372 + ar231x_write_reg(AR2315_GPIO_DO, reg);
2373 +}
2374 +
2375 +static int
2376 +ar2315_gpio_direction_input(struct gpio_chip *chip, unsigned gpio)
2377 +{
2378 + ar231x_mask_reg(AR2315_GPIO_DIR, 1 << gpio, 0);
2379 + return 0;
2380 +}
2381 +
2382 +static int
2383 +ar2315_gpio_direction_output(struct gpio_chip *chip, unsigned gpio, int value)
2384 +{
2385 + ar231x_mask_reg(AR2315_GPIO_DIR, 0, 1 << gpio);
2386 + ar2315_gpio_set_value(chip, gpio, value);
2387 + return 0;
2388 +}
2389 +
2390 +static struct gpio_chip ar2315_gpio_chip = {
2391 + .label = "ar2315-gpio",
2392 + .direction_input = ar2315_gpio_direction_input,
2393 + .direction_output = ar2315_gpio_direction_output,
2394 + .set = ar2315_gpio_set_value,
2395 + .get = ar2315_gpio_get_value,
2396 + .base = 0,
2397 + .ngpio = AR2315_NUM_GPIO, /* 22 */
2398 +};
2399 +
2400 +/* end of gpiolib */
2401 +
2402 +static void ar2315_device_reset_set(u32 mask)
2403 +{
2404 + u32 val;
2405 +
2406 + val = ar231x_read_reg(AR2315_RESET);
2407 + ar231x_write_reg(AR2315_RESET, val | mask);
2408 +}
2409 +
2410 +static void ar2315_device_reset_clear(u32 mask)
2411 +{
2412 + u32 val;
2413 +
2414 + val = ar231x_read_reg(AR2315_RESET);
2415 + ar231x_write_reg(AR2315_RESET, val & ~mask);
2416 +}
2417 +
2418 +static struct ar231x_eth ar2315_eth_data = {
2419 + .reset_set = ar2315_device_reset_set,
2420 + .reset_clear = ar2315_device_reset_clear,
2421 + .reset_mac = AR2315_RESET_ENET0,
2422 + .reset_phy = AR2315_RESET_EPHY0,
2423 + .config = &ar231x_board,
2424 +};
2425 +
2426 +static struct resource ar2315_spiflash_res[] = {
2427 + {
2428 + .name = "spiflash_read",
2429 + .flags = IORESOURCE_MEM,
2430 + .start = AR2315_SPI_READ,
2431 + .end = AR2315_SPI_READ + 0x1000000 - 1,
2432 + },
2433 + {
2434 + .name = "spiflash_mmr",
2435 + .flags = IORESOURCE_MEM,
2436 + .start = AR2315_SPI_MMR,
2437 + .end = AR2315_SPI_MMR + 12 - 1,
2438 + },
2439 +};
2440 +
2441 +static struct platform_device ar2315_spiflash = {
2442 + .id = 0,
2443 + .name = "ar2315-spiflash",
2444 + .resource = ar2315_spiflash_res,
2445 + .num_resources = ARRAY_SIZE(ar2315_spiflash_res)
2446 +};
2447 +
2448 +static struct resource ar2315_wdt_res[] = {
2449 + {
2450 + .flags = IORESOURCE_MEM,
2451 + .start = AR2315_WD,
2452 + .end = AR2315_WD + 8 - 1,
2453 + },
2454 + {
2455 + .flags = IORESOURCE_IRQ,
2456 + .start = AR2315_MISC_IRQ_WATCHDOG,
2457 + .end = AR2315_MISC_IRQ_WATCHDOG,
2458 + }
2459 +};
2460 +
2461 +static struct platform_device ar2315_wdt = {
2462 + .id = 0,
2463 + .name = "ar2315-wdt",
2464 + .resource = ar2315_wdt_res,
2465 + .num_resources = ARRAY_SIZE(ar2315_wdt_res)
2466 +};
2467 +
2468 +/*
2469 + * NB: We use mapping size that is larger than the actual flash size,
2470 + * but this shouldn't be a problem here, because the flash will simply
2471 + * be mapped multiple times.
2472 + */
2473 +static u8 __init *ar2315_flash_limit(void)
2474 +{
2475 + return (u8 *)KSEG1ADDR(ar2315_spiflash_res[0].end + 1);
2476 +}
2477 +
2478 +#ifdef CONFIG_LEDS_GPIO
2479 +static struct gpio_led ar2315_leds[6];
2480 +static struct gpio_led_platform_data ar2315_led_data = {
2481 + .leds = (void *)ar2315_leds,
2482 +};
2483 +
2484 +static struct platform_device ar2315_gpio_leds = {
2485 + .name = "leds-gpio",
2486 + .id = -1,
2487 + .dev = {
2488 + .platform_data = (void *)&ar2315_led_data,
2489 + }
2490 +};
2491 +
2492 +static void __init
2493 +ar2315_init_gpio_leds(void)
2494 +{
2495 + static char led_names[6][6];
2496 + int i, led = 0;
2497 +
2498 + ar2315_led_data.num_leds = 0;
2499 + for (i = 1; i < 8; i++) {
2500 + if ((i == AR2315_RESET_GPIO) ||
2501 + (i == ar231x_board.config->reset_config_gpio))
2502 + continue;
2503 +
2504 + if (i == ar231x_board.config->sys_led_gpio)
2505 + strcpy(led_names[led], "wlan");
2506 + else
2507 + sprintf(led_names[led], "gpio%d", i);
2508 +
2509 + ar2315_leds[led].name = led_names[led];
2510 + ar2315_leds[led].gpio = i;
2511 + ar2315_leds[led].active_low = 0;
2512 + led++;
2513 + }
2514 + ar2315_led_data.num_leds = led;
2515 + platform_device_register(&ar2315_gpio_leds);
2516 +}
2517 +#else
2518 +static inline void ar2315_init_gpio_leds(void)
2519 +{
2520 +}
2521 +#endif
2522 +
2523 +int __init
2524 +ar2315_init_devices(void)
2525 +{
2526 + if (!is_2315())
2527 + return 0;
2528 +
2529 + /* Find board configuration */
2530 + ar231x_find_config(ar2315_flash_limit());
2531 + ar2315_eth_data.macaddr = ar231x_board.config->enet0_mac;
2532 +
2533 + ar2315_init_gpio_leds();
2534 + platform_device_register(&ar2315_wdt);
2535 + platform_device_register(&ar2315_spiflash);
2536 + ar231x_add_ethernet(0, AR2315_ENET0, "eth0_mii", AR2315_ENET0_MII,
2537 + AR2315_IRQ_ENET0_INTRS, &ar2315_eth_data);
2538 + ar231x_add_wmac(0, AR2315_WLAN0, AR2315_IRQ_WLAN0_INTRS);
2539 +
2540 + return 0;
2541 +}
2542 +
2543 +static void
2544 +ar2315_restart(char *command)
2545 +{
2546 + void (*mips_reset_vec)(void) = (void *)0xbfc00000;
2547 +
2548 + local_irq_disable();
2549 +
2550 + /* try reset the system via reset control */
2551 + ar231x_write_reg(AR2315_COLD_RESET, AR2317_RESET_SYSTEM);
2552 +
2553 + /* Cold reset does not work on the AR2315/6, use the GPIO reset bits
2554 + * a workaround. Give it some time to attempt a gpio based hardware
2555 + * reset (atheros reference design workaround) */
2556 + gpio_request_one(AR2315_RESET_GPIO, GPIOF_OUT_INIT_LOW, "Reset");
2557 + mdelay(100);
2558 +
2559 + /* Some boards (e.g. Senao EOC-2610) don't implement the reset logic
2560 + * workaround. Attempt to jump to the mips reset location -
2561 + * the boot loader itself might be able to recover the system */
2562 + mips_reset_vec();
2563 +}
2564 +
2565 +
2566 +/*
2567 + * This table is indexed by bits 5..4 of the CLOCKCTL1 register
2568 + * to determine the predevisor value.
2569 + */
2570 +static int clockctl1_predivide_table[4] __initdata = { 1, 2, 4, 5 };
2571 +static int pllc_divide_table[5] __initdata = { 2, 3, 4, 6, 3 };
2572 +
2573 +static unsigned int __init
2574 +ar2315_sys_clk(unsigned int clock_ctl)
2575 +{
2576 + unsigned int pllc_ctrl, cpu_div;
2577 + unsigned int pllc_out, refdiv, fdiv, divby2;
2578 + unsigned int clk_div;
2579 +
2580 + pllc_ctrl = ar231x_read_reg(AR2315_PLLC_CTL);
2581 + refdiv = (pllc_ctrl & PLLC_REF_DIV_M) >> PLLC_REF_DIV_S;
2582 + refdiv = clockctl1_predivide_table[refdiv];
2583 + fdiv = (pllc_ctrl & PLLC_FDBACK_DIV_M) >> PLLC_FDBACK_DIV_S;
2584 + divby2 = (pllc_ctrl & PLLC_ADD_FDBACK_DIV_M) >> PLLC_ADD_FDBACK_DIV_S;
2585 + divby2 += 1;
2586 + pllc_out = (40000000/refdiv)*(2*divby2)*fdiv;
2587 +
2588 + /* clkm input selected */
2589 + switch (clock_ctl & CPUCLK_CLK_SEL_M) {
2590 + case 0:
2591 + case 1:
2592 + clk_div = pllc_divide_table[(pllc_ctrl & PLLC_CLKM_DIV_M) >>
2593 + PLLC_CLKM_DIV_S];
2594 + break;
2595 + case 2:
2596 + clk_div = pllc_divide_table[(pllc_ctrl & PLLC_CLKC_DIV_M) >>
2597 + PLLC_CLKC_DIV_S];
2598 + break;
2599 + default:
2600 + pllc_out = 40000000;
2601 + clk_div = 1;
2602 + break;
2603 + }
2604 +
2605 + cpu_div = (clock_ctl & CPUCLK_CLK_DIV_M) >> CPUCLK_CLK_DIV_S;
2606 + cpu_div = cpu_div * 2 ?: 1;
2607 +
2608 + return pllc_out / (clk_div * cpu_div);
2609 +}
2610 +
2611 +static inline unsigned int
2612 +ar2315_cpu_frequency(void)
2613 +{
2614 + return ar2315_sys_clk(ar231x_read_reg(AR2315_CPUCLK));
2615 +}
2616 +
2617 +static inline unsigned int
2618 +ar2315_apb_frequency(void)
2619 +{
2620 + return ar2315_sys_clk(ar231x_read_reg(AR2315_AMBACLK));
2621 +}
2622 +
2623 +void __init
2624 +ar2315_time_init(void)
2625 +{
2626 + if (!is_2315())
2627 + return;
2628 +
2629 + mips_hpt_frequency = ar2315_cpu_frequency() / 2;
2630 +}
2631 +
2632 +static int __init
2633 +ar2315_gpio_init(void)
2634 +{
2635 + int ret = gpiochip_add(&ar2315_gpio_chip);
2636 +
2637 + if (ret) {
2638 + pr_err("%s: failed to add gpiochip\n", ar2315_gpio_chip.label);
2639 + return ret;
2640 + }
2641 + pr_info("%s: registered %d GPIOs\n", ar2315_gpio_chip.label,
2642 + ar2315_gpio_chip.ngpio);
2643 + return ret;
2644 +}
2645 +
2646 +
2647 +
2648 +void __init
2649 +ar2315_prom_init(void)
2650 +{
2651 + u32 memsize, memcfg, devid;
2652 +
2653 + if (!is_2315())
2654 + return;
2655 +
2656 + memcfg = ar231x_read_reg(AR2315_MEM_CFG);
2657 + memsize = 1 + ((memcfg & SDRAM_DATA_WIDTH_M) >> SDRAM_DATA_WIDTH_S);
2658 + memsize <<= 1 + ((memcfg & SDRAM_COL_WIDTH_M) >> SDRAM_COL_WIDTH_S);
2659 + memsize <<= 1 + ((memcfg & SDRAM_ROW_WIDTH_M) >> SDRAM_ROW_WIDTH_S);
2660 + memsize <<= 3;
2661 + add_memory_region(0, memsize, BOOT_MEM_RAM);
2662 +
2663 + /* Detect the hardware based on the device ID */
2664 + devid = ar231x_read_reg(AR2315_SREV) & AR2315_REV_CHIP;
2665 + switch (devid) {
2666 + case 0x90:
2667 + case 0x91:
2668 + ar231x_devtype = DEV_TYPE_AR2317;
2669 + break;
2670 + default:
2671 + ar231x_devtype = DEV_TYPE_AR2315;
2672 + break;
2673 + }
2674 + ar2315_gpio_init();
2675 + ar231x_board.devid = devid;
2676 +}
2677 +
2678 +void __init
2679 +ar2315_plat_setup(void)
2680 +{
2681 + u32 config;
2682 +
2683 + if (!is_2315())
2684 + return;
2685 +
2686 + /* Clear any lingering AHB errors */
2687 + config = read_c0_config();
2688 + write_c0_config(config & ~0x3);
2689 + ar231x_write_reg(AR2315_AHB_ERR0, AHB_ERROR_DET);
2690 + ar231x_read_reg(AR2315_AHB_ERR1);
2691 + ar231x_write_reg(AR2315_WDC, AR2315_WDC_IGNORE_EXPIRATION);
2692 +
2693 + _machine_restart = ar2315_restart;
2694 + ar231x_serial_setup(AR2315_UART0, AR2315_MISC_IRQ_UART0,
2695 + ar2315_apb_frequency());
2696 +}
2697 --- /dev/null
2698 +++ b/arch/mips/ar231x/ar2315.h
2699 @@ -0,0 +1,37 @@
2700 +#ifndef __AR2315_H
2701 +#define __AR2315_H
2702 +
2703 +#ifdef CONFIG_ATHEROS_AR2315
2704 +
2705 +void ar2315_irq_init(void);
2706 +int ar2315_init_devices(void);
2707 +void ar2315_prom_init(void);
2708 +void ar2315_plat_setup(void);
2709 +void ar2315_time_init(void);
2710 +
2711 +#else
2712 +
2713 +static inline void ar2315_irq_init(void)
2714 +{
2715 +}
2716 +
2717 +static inline int ar2315_init_devices(void)
2718 +{
2719 + return 0;
2720 +}
2721 +
2722 +static inline void ar2315_prom_init(void)
2723 +{
2724 +}
2725 +
2726 +static inline void ar2315_plat_setup(void)
2727 +{
2728 +}
2729 +
2730 +static inline void ar2315_time_init(void)
2731 +{
2732 +}
2733 +
2734 +#endif
2735 +
2736 +#endif
2737 --- /dev/null
2738 +++ b/arch/mips/ar231x/ar5312.h
2739 @@ -0,0 +1,37 @@
2740 +#ifndef __AR5312_H
2741 +#define __AR5312_H
2742 +
2743 +#ifdef CONFIG_ATHEROS_AR5312
2744 +
2745 +void ar5312_irq_init(void);
2746 +int ar5312_init_devices(void);
2747 +void ar5312_prom_init(void);
2748 +void ar5312_plat_setup(void);
2749 +void ar5312_time_init(void);
2750 +
2751 +#else
2752 +
2753 +static inline void ar5312_irq_init(void)
2754 +{
2755 +}
2756 +
2757 +static inline int ar5312_init_devices(void)
2758 +{
2759 + return 0;
2760 +}
2761 +
2762 +static inline void ar5312_prom_init(void)
2763 +{
2764 +}
2765 +
2766 +static inline void ar5312_plat_setup(void)
2767 +{
2768 +}
2769 +
2770 +static inline void ar5312_time_init(void)
2771 +{
2772 +}
2773 +
2774 +#endif
2775 +
2776 +#endif
2777 --- /dev/null
2778 +++ b/arch/mips/include/asm/mach-ar231x/ar231x.h
2779 @@ -0,0 +1,43 @@
2780 +#ifndef __ASM_MACH_AR231X_H
2781 +#define __ASM_MACH_AR231X_H
2782 +
2783 +#include <linux/types.h>
2784 +#include <linux/io.h>
2785 +
2786 +#define AR231X_MISC_IRQ_BASE 0x20
2787 +#define AR231X_GPIO_IRQ_BASE 0x30
2788 +
2789 +/* Software's idea of interrupts handled by "CPU Interrupt Controller" */
2790 +#define AR231X_IRQ_NONE (MIPS_CPU_IRQ_BASE+0)
2791 +#define AR231X_IRQ_CPU_CLOCK (MIPS_CPU_IRQ_BASE+7) /* C0_CAUSE: 0x8000 */
2792 +
2793 +/* GPIO Interrupts, share ARXXXX_MISC_IRQ_GPIO */
2794 +#define AR231X_GPIO_IRQ_NONE (AR231X_GPIO_IRQ_BASE+0)
2795 +#define AR231X_GPIO_IRQ(n) (AR231X_GPIO_IRQ_BASE+n)
2796 +
2797 +static inline u32
2798 +ar231x_read_reg(u32 reg)
2799 +{
2800 + return __raw_readl((void __iomem *)KSEG1ADDR(reg));
2801 +}
2802 +
2803 +static inline void
2804 +ar231x_write_reg(u32 reg, u32 val)
2805 +{
2806 + __raw_writel(val, (void __iomem *)KSEG1ADDR(reg));
2807 +}
2808 +
2809 +static inline u32
2810 +ar231x_mask_reg(u32 reg, u32 mask, u32 val)
2811 +{
2812 + u32 ret;
2813 +
2814 + ret = ar231x_read_reg(reg);
2815 + ret &= ~mask;
2816 + ret |= val;
2817 + ar231x_write_reg(reg, ret);
2818 +
2819 + return ret;
2820 +}
2821 +
2822 +#endif /* __ASM_MACH_AR231X_H */
2823 --- /dev/null
2824 +++ b/arch/mips/ar231x/devices.h
2825 @@ -0,0 +1,38 @@
2826 +#ifndef __AR231X_DEVICES_H
2827 +#define __AR231X_DEVICES_H
2828 +
2829 +enum {
2830 + /* handled by ar5312.c */
2831 + DEV_TYPE_AR2312,
2832 + DEV_TYPE_AR2313,
2833 + DEV_TYPE_AR5312,
2834 +
2835 + /* handled by ar2315.c */
2836 + DEV_TYPE_AR2315,
2837 + DEV_TYPE_AR2316,
2838 + DEV_TYPE_AR2317,
2839 +
2840 + DEV_TYPE_UNKNOWN
2841 +};
2842 +
2843 +extern int ar231x_devtype;
2844 +extern struct ar231x_board_config ar231x_board;
2845 +extern asmlinkage void (*ar231x_irq_dispatch)(void);
2846 +
2847 +int ar231x_find_config(u8 *flash_limit);
2848 +void ar231x_serial_setup(u32 mapbase, int irq, unsigned int uartclk);
2849 +int ar231x_add_wmac(int nr, u32 base, int irq);
2850 +int ar231x_add_ethernet(int nr, u32 base, const char *mii_name, u32 mii_base,
2851 + int irq, void *pdata);
2852 +
2853 +static inline bool is_2315(void)
2854 +{
2855 + return (current_cpu_data.cputype == CPU_4KEC);
2856 +}
2857 +
2858 +static inline bool is_5312(void)
2859 +{
2860 + return !is_2315();
2861 +}
2862 +
2863 +#endif
2864 --- /dev/null
2865 +++ b/arch/mips/ar231x/devices.c
2866 @@ -0,0 +1,182 @@
2867 +#include <linux/kernel.h>
2868 +#include <linux/init.h>
2869 +#include <linux/serial.h>
2870 +#include <linux/serial_core.h>
2871 +#include <linux/serial_8250.h>
2872 +#include <linux/platform_device.h>
2873 +#include <asm/bootinfo.h>
2874 +
2875 +#include <ar231x_platform.h>
2876 +#include <ar231x.h>
2877 +#include "devices.h"
2878 +#include "ar5312.h"
2879 +#include "ar2315.h"
2880 +
2881 +struct ar231x_board_config ar231x_board;
2882 +int ar231x_devtype = DEV_TYPE_UNKNOWN;
2883 +
2884 +static struct resource ar231x_eth0_res[] = {
2885 + {
2886 + .name = "eth0_membase",
2887 + .flags = IORESOURCE_MEM,
2888 + },
2889 + {
2890 + .name = "eth0_mii",
2891 + .flags = IORESOURCE_MEM,
2892 + },
2893 + {
2894 + .name = "eth0_irq",
2895 + .flags = IORESOURCE_IRQ,
2896 + }
2897 +};
2898 +
2899 +static struct resource ar231x_eth1_res[] = {
2900 + {
2901 + .name = "eth1_membase",
2902 + .flags = IORESOURCE_MEM,
2903 + },
2904 + {
2905 + .name = "eth1_mii",
2906 + .flags = IORESOURCE_MEM,
2907 + },
2908 + {
2909 + .name = "eth1_irq",
2910 + .flags = IORESOURCE_IRQ,
2911 + }
2912 +};
2913 +
2914 +static struct platform_device ar231x_eth[] = {
2915 + {
2916 + .id = 0,
2917 + .name = "ar231x-eth",
2918 + .resource = ar231x_eth0_res,
2919 + .num_resources = ARRAY_SIZE(ar231x_eth0_res)
2920 + },
2921 + {
2922 + .id = 1,
2923 + .name = "ar231x-eth",
2924 + .resource = ar231x_eth1_res,
2925 + .num_resources = ARRAY_SIZE(ar231x_eth1_res)
2926 + }
2927 +};
2928 +
2929 +static struct resource ar231x_wmac0_res[] = {
2930 + {
2931 + .name = "wmac0_membase",
2932 + .flags = IORESOURCE_MEM,
2933 + },
2934 + {
2935 + .name = "wmac0_irq",
2936 + .flags = IORESOURCE_IRQ,
2937 + }
2938 +};
2939 +
2940 +static struct resource ar231x_wmac1_res[] = {
2941 + {
2942 + .name = "wmac1_membase",
2943 + .flags = IORESOURCE_MEM,
2944 + },
2945 + {
2946 + .name = "wmac1_irq",
2947 + .flags = IORESOURCE_IRQ,
2948 + }
2949 +};
2950 +
2951 +
2952 +static struct platform_device ar231x_wmac[] = {
2953 + {
2954 + .id = 0,
2955 + .name = "ar231x-wmac",
2956 + .resource = ar231x_wmac0_res,
2957 + .num_resources = ARRAY_SIZE(ar231x_wmac0_res),
2958 + .dev.platform_data = &ar231x_board,
2959 + },
2960 + {
2961 + .id = 1,
2962 + .name = "ar231x-wmac",
2963 + .resource = ar231x_wmac1_res,
2964 + .num_resources = ARRAY_SIZE(ar231x_wmac1_res),
2965 + .dev.platform_data = &ar231x_board,
2966 + },
2967 +};
2968 +
2969 +static const char * const devtype_strings[] = {
2970 + [DEV_TYPE_AR5312] = "Atheros AR5312",
2971 + [DEV_TYPE_AR2312] = "Atheros AR2312",
2972 + [DEV_TYPE_AR2313] = "Atheros AR2313",
2973 + [DEV_TYPE_AR2315] = "Atheros AR2315",
2974 + [DEV_TYPE_AR2316] = "Atheros AR2316",
2975 + [DEV_TYPE_AR2317] = "Atheros AR2317",
2976 + [DEV_TYPE_UNKNOWN] = "Atheros (unknown)",
2977 +};
2978 +
2979 +const char *get_system_type(void)
2980 +{
2981 + if ((ar231x_devtype >= ARRAY_SIZE(devtype_strings)) ||
2982 + !devtype_strings[ar231x_devtype])
2983 + return devtype_strings[DEV_TYPE_UNKNOWN];
2984 + return devtype_strings[ar231x_devtype];
2985 +}
2986 +
2987 +
2988 +int __init
2989 +ar231x_add_ethernet(int nr, u32 base, const char *mii_name, u32 mii_base,
2990 + int irq, void *pdata)
2991 +{
2992 + struct resource *res;
2993 +
2994 + ar231x_eth[nr].dev.platform_data = pdata;
2995 + res = &ar231x_eth[nr].resource[0];
2996 + res->start = base;
2997 + res->end = base + 0x2000 - 1;
2998 + res++;
2999 + res->name = mii_name;
3000 + res->start = mii_base;
3001 + res->end = mii_base + 8 - 1;
3002 + res++;
3003 + res->start = irq;
3004 + res->end = irq;
3005 + return platform_device_register(&ar231x_eth[nr]);
3006 +}
3007 +
3008 +void __init
3009 +ar231x_serial_setup(u32 mapbase, int irq, unsigned int uartclk)
3010 +{
3011 + struct uart_port s;
3012 +
3013 + memset(&s, 0, sizeof(s));
3014 +
3015 + s.flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST | UPF_IOREMAP;
3016 + s.iotype = UPIO_MEM32;
3017 + s.irq = irq;
3018 + s.regshift = 2;
3019 + s.mapbase = mapbase;
3020 + s.uartclk = uartclk;
3021 +
3022 + early_serial_setup(&s);
3023 +}
3024 +
3025 +int __init
3026 +ar231x_add_wmac(int nr, u32 base, int irq)
3027 +{
3028 + struct resource *res;
3029 +
3030 + ar231x_wmac[nr].dev.platform_data = &ar231x_board;
3031 + res = &ar231x_wmac[nr].resource[0];
3032 + res->start = base;
3033 + res->end = base + 0x10000 - 1;
3034 + res++;
3035 + res->start = irq;
3036 + res->end = irq;
3037 + return platform_device_register(&ar231x_wmac[nr]);
3038 +}
3039 +
3040 +static int __init ar231x_register_devices(void)
3041 +{
3042 + ar5312_init_devices();
3043 + ar2315_init_devices();
3044 +
3045 + return 0;
3046 +}
3047 +
3048 +device_initcall(ar231x_register_devices);