1 --- a/arch/mips/Kconfig
2 +++ b/arch/mips/Kconfig
3 @@ -138,6 +138,19 @@ config BCM63XX
5 Support for BCM63XX based boards
8 + bool "Atheros 231x/531x SoC support"
11 + select DMA_NONCOHERENT
13 + select SYS_HAS_CPU_MIPS32_R1
14 + select SYS_SUPPORTS_BIG_ENDIAN
15 + select SYS_SUPPORTS_32BIT_KERNEL
16 + select ARCH_REQUIRE_GPIOLIB
18 + Support for AR231x and AR531x based boards
23 @@ -838,6 +851,7 @@ config NLM_XLP_BOARD
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
36 platforms += cavium-octeon
42 +++ b/arch/mips/ar231x/Platform
45 +# Atheros AR5312/AR2312 WiSoC
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
51 +++ b/arch/mips/ar231x/Kconfig
53 +config ATHEROS_AR5312
54 + bool "Atheros 5312/2312+ support"
55 + depends on ATHEROS_AR231X
58 +config ATHEROS_AR2315
59 + bool "Atheros 2315+ support"
60 + depends on ATHEROS_AR231X
61 + select DMA_NONCOHERENT
65 + select SYS_HAS_CPU_MIPS32_R1
66 + select SYS_SUPPORTS_32BIT_KERNEL
67 + select SYS_SUPPORTS_BIG_ENDIAN
70 +++ b/arch/mips/ar231x/Makefile
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
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>
82 +obj-y += board.o prom.o devices.o
83 +obj-$(CONFIG_ATHEROS_AR5312) += ar5312.o
84 +obj-$(CONFIG_ATHEROS_AR2315) += ar2315.o
86 +++ b/arch/mips/ar231x/board.c
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
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>
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>
113 +#include <ar231x_platform.h>
114 +#include "devices.h"
118 +void (*ar231x_irq_dispatch)(void);
121 +check_radio_magic(u8 *addr)
123 + addr += 0x7a; /* offset for flash magic */
124 + if ((addr[0] == 0x5a) && (addr[1] == 0xa5))
131 +check_board_data(u8 *flash_limit, u8 *addr, bool broken)
133 + /* config magic found */
134 + if (*((u32 *)addr) == AR531X_BD_MAGIC)
140 + if (check_radio_magic(addr + 0xf8))
141 + ar231x_board.radio = addr + 0xf8;
142 + if ((addr < flash_limit + 0x10000) &&
143 + check_radio_magic(addr + 0x10000))
144 + ar231x_board.radio = addr + 0x10000;
146 + if (ar231x_board.radio) {
147 + /* broken board data detected, use radio data to find the
148 + * offset, user will fix this */
155 +find_board_config(u8 *flash_limit, bool broken)
160 + for (addr = flash_limit - 0x1000;
161 + addr >= flash_limit - 0x30000;
164 + if (check_board_data(flash_limit, addr, broken)) {
177 +find_radio_config(u8 *flash_limit, u8 *board_config)
183 + * Now find the start of Radio Configuration data, using heuristics:
184 + * Search forward from Board Configuration data by 0x1000 bytes
185 + * at a time until we find non-0xffffffff.
188 + for (radio_config = board_config + 0x1000;
189 + (radio_config < flash_limit);
190 + radio_config += 0x1000) {
191 + if ((*(u32 *)radio_config != 0xffffffff) &&
192 + check_radio_magic(radio_config)) {
198 + /* AR2316 relocates radio config to new location */
200 + for (radio_config = board_config + 0xf8;
201 + (radio_config < flash_limit - 0x1000 + 0xf8);
202 + radio_config += 0x1000) {
203 + if ((*(u32 *)radio_config != 0xffffffff) &&
204 + check_radio_magic(radio_config)) {
212 + pr_warn("WARNING: Could not find Radio Configuration data\n");
216 + return radio_config;
220 +ar231x_find_config(u8 *flash_limit)
222 + struct ar231x_boarddata *config;
223 + unsigned int rcfg_size;
224 + int broken_boarddata = 0;
231 + ar231x_board.config = NULL;
232 + ar231x_board.radio = NULL;
233 + /* Copy the board and radio data to RAM, because accessing the mapped
234 + * memory of the flash directly after booting is not safe */
236 + /* Try to find valid board and radio data */
237 + bcfg = find_board_config(flash_limit, false);
239 + /* If that fails, try to at least find valid radio data */
241 + bcfg = find_board_config(flash_limit, true);
242 + broken_boarddata = 1;
246 + pr_warn("WARNING: No board configuration data found!\n");
250 + board_data = kzalloc(BOARD_CONFIG_BUFSZ, GFP_KERNEL);
251 + ar231x_board.config = (struct ar231x_boarddata *)board_data;
252 + memcpy(board_data, bcfg, 0x100);
253 + if (broken_boarddata) {
254 + pr_warn("WARNING: broken board data detected\n");
255 + config = ar231x_board.config;
256 + if (!memcmp(config->enet0_mac, "\x00\x00\x00\x00\x00\x00", 6)) {
257 + pr_info("Fixing up empty mac addresses\n");
258 + config->reset_config_gpio = 0xffff;
259 + config->sys_led_gpio = 0xffff;
260 + random_ether_addr(config->wlan0_mac);
261 + config->wlan0_mac[0] &= ~0x06;
262 + random_ether_addr(config->enet0_mac);
263 + random_ether_addr(config->enet1_mac);
268 + /* Radio config starts 0x100 bytes after board config, regardless
269 + * of what the physical layout on the flash chip looks like */
271 + if (ar231x_board.radio)
272 + rcfg = (u8 *)ar231x_board.radio;
274 + rcfg = find_radio_config(flash_limit, bcfg);
279 + radio_data = board_data + 0x100 + ((rcfg - bcfg) & 0xfff);
280 + ar231x_board.radio = radio_data;
281 + offset = radio_data - board_data;
282 + pr_info("Radio config found at offset 0x%x (0x%x)\n", rcfg - bcfg,
284 + rcfg_size = BOARD_CONFIG_BUFSZ - offset;
285 + memcpy(radio_data, rcfg, rcfg_size);
287 + mac_addr = &radio_data[0x1d * 2];
288 + if (is_broadcast_ether_addr(mac_addr)) {
289 + pr_info("Radio MAC is blank; using board-data\n");
290 + memcpy(mac_addr, ar231x_board.config->wlan0_mac, ETH_ALEN);
299 + local_irq_disable();
305 +plat_mem_setup(void)
307 + _machine_halt = ar231x_halt;
308 + pm_power_off = ar231x_halt;
310 + ar5312_plat_setup();
311 + ar2315_plat_setup();
313 + /* Disable data watchpoints */
314 + write_c0_watchlo0(0);
319 +plat_irq_dispatch(void)
321 + ar231x_irq_dispatch();
325 +plat_time_init(void)
327 + ar5312_time_init();
328 + ar2315_time_init();
331 +unsigned int __cpuinit
332 +get_c0_compare_int(void)
334 + return CP0_LEGACY_COMPARE_IRQ;
340 + clear_c0_status(ST0_IM);
341 + mips_cpu_irq_init();
343 + /* Initialize interrupt controllers */
350 +++ b/arch/mips/ar231x/prom.c
353 + * This file is subject to the terms and conditions of the GNU General Public
354 + * License. See the file "COPYING" in the main directory of this archive
355 + * for more details.
357 + * Copyright MontaVista Software Inc
358 + * Copyright (C) 2003 Atheros Communications, Inc., All Rights Reserved.
359 + * Copyright (C) 2006 FON Technology, SL.
360 + * Copyright (C) 2006 Imre Kaloz <kaloz@openwrt.org>
361 + * Copyright (C) 2006 Felix Fietkau <nbd@openwrt.org>
365 + * Prom setup file for ar531x
368 +#include <linux/init.h>
369 +#include <generated/autoconf.h>
370 +#include <linux/kernel.h>
371 +#include <linux/string.h>
372 +#include <linux/mm.h>
373 +#include <linux/bootmem.h>
375 +#include <asm/bootinfo.h>
376 +#include <asm/addrspace.h>
380 +void __init prom_init(void)
382 + ar5312_prom_init();
383 + ar2315_prom_init();
386 +void __init prom_free_prom_memory(void)
390 +++ b/arch/mips/include/asm/mach-ar231x/ar231x_platform.h
392 +#ifndef __AR531X_PLATFORM_H
393 +#define __AR531X_PLATFORM_H
396 + * This is board-specific data that is stored in a "fixed" location in flash.
397 + * It is shared across operating systems, so it should not be changed lightly.
398 + * The main reason we need it is in order to extract the ethernet MAC
401 +struct ar231x_boarddata {
402 + u32 magic; /* board data is valid */
403 +#define AR531X_BD_MAGIC 0x35333131 /* "5311", for all 531x platforms */
404 + u16 cksum; /* checksum (starting with BD_REV 2) */
405 + u16 rev; /* revision of this struct */
407 + char board_name[64]; /* Name of board */
408 + u16 major; /* Board major number */
409 + u16 minor; /* Board minor number */
410 + u32 flags; /* Board configuration */
411 +#define BD_ENET0 0x00000001 /* ENET0 is stuffed */
412 +#define BD_ENET1 0x00000002 /* ENET1 is stuffed */
413 +#define BD_UART1 0x00000004 /* UART1 is stuffed */
414 +#define BD_UART0 0x00000008 /* UART0 is stuffed (dma) */
415 +#define BD_RSTFACTORY 0x00000010 /* Reset factory defaults stuffed */
416 +#define BD_SYSLED 0x00000020 /* System LED stuffed */
417 +#define BD_EXTUARTCLK 0x00000040 /* External UART clock */
418 +#define BD_CPUFREQ 0x00000080 /* cpu freq is valid in nvram */
419 +#define BD_SYSFREQ 0x00000100 /* sys freq is set in nvram */
420 +#define BD_WLAN0 0x00000200 /* Enable WLAN0 */
421 +#define BD_MEMCAP 0x00000400 /* CAP SDRAM @ mem_cap for testing */
422 +#define BD_DISWATCHDOG 0x00000800 /* disable system watchdog */
423 +#define BD_WLAN1 0x00001000 /* Enable WLAN1 (ar5212) */
424 +#define BD_ISCASPER 0x00002000 /* FLAG for AR2312 */
425 +#define BD_WLAN0_2G_EN 0x00004000 /* FLAG for radio0_2G */
426 +#define BD_WLAN0_5G_EN 0x00008000 /* FLAG for radio0_2G */
427 +#define BD_WLAN1_2G_EN 0x00020000 /* FLAG for radio0_2G */
428 +#define BD_WLAN1_5G_EN 0x00040000 /* FLAG for radio0_2G */
429 + u16 reset_config_gpio; /* Reset factory GPIO pin */
430 + u16 sys_led_gpio; /* System LED GPIO pin */
432 + u32 cpu_freq; /* CPU core frequency in Hz */
433 + u32 sys_freq; /* System frequency in Hz */
434 + u32 cnt_freq; /* Calculated C0_COUNT frequency */
440 + u16 pci_id; /* Pseudo PCIID for common code */
441 + u16 mem_cap; /* cap bank1 in MB */
444 + u8 wlan1_mac[6]; /* (ar5212) */
447 +#define BOARD_CONFIG_BUFSZ 0x1000
450 + * Platform device information for the Wireless MAC
452 +struct ar231x_board_config {
455 + /* board config data */
456 + struct ar231x_boarddata *config;
458 + /* radio calibration data */
463 + * Platform device information for the Ethernet MAC
466 + void (*reset_set)(u32);
467 + void (*reset_clear)(u32);
471 + struct ar231x_board_config *config;
475 +#endif /* __AR531X_PLATFORM_H */
477 +++ b/arch/mips/include/asm/mach-ar231x/cpu-feature-overrides.h
480 + * Atheros SoC specific CPU feature overrides
482 + * Copyright (C) 2008 Gabor Juhos <juhosg@openwrt.org>
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
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.
493 +#ifndef __ASM_MACH_ATHEROS_CPU_FEATURE_OVERRIDES_H
494 +#define __ASM_MACH_ATHEROS_CPU_FEATURE_OVERRIDES_H
497 + * The ATHEROS SoCs have MIPS 4Kc/4KEc core.
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
517 +#if !defined(CONFIG_ATHEROS_AR5312)
518 +# define cpu_has_llsc 1
521 + * The MIPS 4Kc V0.9 core in the AR5312/AR2312 have problems with the
522 + * ll/sc instructions.
524 +# define cpu_has_llsc 0
527 +#define cpu_has_mips16 0
528 +#define cpu_has_mdmx 0
529 +#define cpu_has_mips3d 0
530 +#define cpu_has_smartmips 0
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 ? */
537 +/* #define cpu_icache_snoops_remote_store ? */
539 +#define cpu_has_mips32r1 1
541 +#if !defined(CONFIG_ATHEROS_AR5312)
542 +# define cpu_has_mips32r2 1
545 +#define cpu_has_mips64r1 0
546 +#define cpu_has_mips64r2 0
548 +#define cpu_has_dsp 0
549 +#define cpu_has_mipsmt 0
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
557 +/* #define cpu_has_inclusive_pcaches ? */
559 +/* #define cpu_dcache_line_size() ? */
560 +/* #define cpu_icache_line_size() ? */
562 +#endif /* __ASM_MACH_ATHEROS_CPU_FEATURE_OVERRIDES_H */
564 +++ b/arch/mips/include/asm/mach-ar231x/dma-coherence.h
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.
571 + * Copyright (C) 2006 Ralf Baechle <ralf@linux-mips.org>
572 + * Copyright (C) 2007 Felix Fietkau <nbd@openwrt.org>
575 +#ifndef __ASM_MACH_GENERIC_DMA_COHERENCE_H
576 +#define __ASM_MACH_GENERIC_DMA_COHERENCE_H
578 +#define PCI_DMA_OFFSET 0x20000000
580 +#include <linux/device.h>
582 +static inline dma_addr_t ar231x_dev_offset(struct device *dev)
585 + extern struct bus_type pci_bus_type;
587 + if (dev && dev->bus == &pci_bus_type)
588 + return PCI_DMA_OFFSET;
594 +static inline dma_addr_t
595 +plat_map_dma_mem(struct device *dev, void *addr, size_t size)
597 + return virt_to_phys(addr) + ar231x_dev_offset(dev);
600 +static inline dma_addr_t
601 +plat_map_dma_mem_page(struct device *dev, struct page *page)
603 + return page_to_phys(page) + ar231x_dev_offset(dev);
606 +static inline unsigned long
607 +plat_dma_addr_to_phys(struct device *dev, dma_addr_t dma_addr)
609 + return dma_addr - ar231x_dev_offset(dev);
613 +plat_unmap_dma_mem(struct device *dev, dma_addr_t dma_addr, size_t size,
614 + enum dma_data_direction direction)
618 +static inline int plat_dma_supported(struct device *dev, u64 mask)
623 +static inline void plat_extra_sync_for_device(struct device *dev)
628 +static inline int plat_dma_mapping_error(struct device *dev,
629 + dma_addr_t dma_addr)
634 +static inline int plat_device_is_coherent(struct device *dev)
636 +#ifdef CONFIG_DMA_COHERENT
639 +#ifdef CONFIG_DMA_NONCOHERENT
644 +#endif /* __ASM_MACH_GENERIC_DMA_COHERENCE_H */
646 +++ b/arch/mips/include/asm/mach-ar231x/gpio.h
648 +#ifndef _ATHEROS_GPIO_H_
649 +#define _ATHEROS_GPIO_H_
653 +#define gpio_get_value __gpio_get_value
654 +#define gpio_set_value __gpio_set_value
655 +#define gpio_cansleep __gpio_cansleep
658 + * Wrappers for the generic GPIO layer
661 +/* not sure if these are used? */
663 +/* Returns IRQ to attach for gpio. Unchecked function */
664 +static inline int gpio_to_irq(unsigned gpio)
666 + return AR531X_GPIO_IRQ(gpio);
669 +/* Returns gpio for IRQ attached. Unchecked function */
670 +static inline int irq_to_gpio(unsigned irq)
672 + return irq - AR531X_GPIO_IRQ(0);
675 +#include <asm-generic/gpio.h> /* cansleep wrappers */
679 +++ b/arch/mips/include/asm/mach-ar231x/reset.h
681 +#ifndef __AR531X_RESET_H
682 +#define __AR531X_RESET_H
684 +void ar531x_disable_reset_button(void);
686 +#endif /* __AR531X_RESET_H */
688 +++ b/arch/mips/include/asm/mach-ar231x/war.h
691 + * This file is subject to the terms and conditions of the GNU General Public
692 + * License. See the file "COPYING" in the main directory of this archive
693 + * for more details.
695 + * Copyright (C) 2008 Felix Fietkau <nbd@openwrt.org>
697 +#ifndef __ASM_MIPS_MACH_ATHEROS_WAR_H
698 +#define __ASM_MIPS_MACH_ATHEROS_WAR_H
700 +#define R4600_V1_INDEX_ICACHEOP_WAR 0
701 +#define R4600_V1_HIT_CACHEOP_WAR 0
702 +#define R4600_V2_HIT_CACHEOP_WAR 0
703 +#define R5432_CP0_INTERRUPT_WAR 0
704 +#define BCM1250_M3_WAR 0
705 +#define SIBYTE_1956_WAR 0
706 +#define MIPS4K_ICACHE_REFILL_WAR 0
707 +#define MIPS_CACHE_SYNC_WAR 0
708 +#define TX49XX_ICACHE_INDEX_INV_WAR 0
709 +#define RM9000_CDEX_SMP_WAR 0
710 +#define ICACHE_REFILLS_WORKAROUND_WAR 0
711 +#define R10000_LLSC_WAR 0
712 +#define MIPS34K_MISSED_ITLB_WAR 0
714 +#endif /* __ASM_MIPS_MACH_ATHEROS_WAR_H */
716 +++ b/arch/mips/include/asm/mach-ar231x/ar2315_regs.h
719 + * Register definitions for AR2315+
721 + * This file is subject to the terms and conditions of the GNU General Public
722 + * License. See the file "COPYING" in the main directory of this archive
723 + * for more details.
725 + * Copyright (C) 2003 Atheros Communications, Inc., All Rights Reserved.
726 + * Copyright (C) 2006 FON Technology, SL.
727 + * Copyright (C) 2006 Imre Kaloz <kaloz@openwrt.org>
728 + * Copyright (C) 2006-2008 Felix Fietkau <nbd@openwrt.org>
731 +#ifndef __AR2315_REG_H
732 +#define __AR2315_REG_H
737 +#define AR2315_IRQ_MISC_INTRS (MIPS_CPU_IRQ_BASE+2) /* C0_CAUSE: 0x0400 */
738 +#define AR2315_IRQ_WLAN0_INTRS (MIPS_CPU_IRQ_BASE+3) /* C0_CAUSE: 0x0800 */
739 +#define AR2315_IRQ_ENET0_INTRS (MIPS_CPU_IRQ_BASE+4) /* C0_CAUSE: 0x1000 */
740 +#define AR2315_IRQ_LCBUS_PCI (MIPS_CPU_IRQ_BASE+5) /* C0_CAUSE: 0x2000 */
741 +#define AR2315_IRQ_WLAN0_POLL (MIPS_CPU_IRQ_BASE+6) /* C0_CAUSE: 0x4000 */
745 + * Miscellaneous interrupts, which share IP2.
747 +#define AR2315_MISC_IRQ_NONE (AR531X_MISC_IRQ_BASE+0)
748 +#define AR2315_MISC_IRQ_UART0 (AR531X_MISC_IRQ_BASE+1)
749 +#define AR2315_MISC_IRQ_I2C_RSVD (AR531X_MISC_IRQ_BASE+2)
750 +#define AR2315_MISC_IRQ_SPI (AR531X_MISC_IRQ_BASE+3)
751 +#define AR2315_MISC_IRQ_AHB (AR531X_MISC_IRQ_BASE+4)
752 +#define AR2315_MISC_IRQ_APB (AR531X_MISC_IRQ_BASE+5)
753 +#define AR2315_MISC_IRQ_TIMER (AR531X_MISC_IRQ_BASE+6)
754 +#define AR2315_MISC_IRQ_GPIO (AR531X_MISC_IRQ_BASE+7)
755 +#define AR2315_MISC_IRQ_WATCHDOG (AR531X_MISC_IRQ_BASE+8)
756 +#define AR2315_MISC_IRQ_IR_RSVD (AR531X_MISC_IRQ_BASE+9)
757 +#define AR2315_MISC_IRQ_COUNT 10
763 +#define AR2315_SPI_READ 0x08000000 /* SPI FLASH */
764 +#define AR2315_WLAN0 0x10000000 /* Wireless MMR */
765 +#define AR2315_PCI 0x10100000 /* PCI MMR */
766 +#define AR2315_SDRAMCTL 0x10300000 /* SDRAM MMR */
767 +#define AR2315_LOCAL 0x10400000 /* LOCAL BUS MMR */
768 +#define AR2315_ENET0 0x10500000 /* ETHERNET MMR */
769 +#define AR2315_DSLBASE 0x11000000 /* RESET CONTROL MMR */
770 +#define AR2315_UART0 0x11100003 /* UART MMR */
771 +#define AR2315_SPI_MMR 0x11300000 /* SPI FLASH MMR */
772 +#define AR2315_PCIEXT 0x80000000 /* pci external */
777 +#define AR2315_COLD_RESET (AR2315_DSLBASE + 0x0000)
779 +#define AR2315_RESET_COLD_AHB 0x00000001
780 +#define AR2315_RESET_COLD_APB 0x00000002
781 +#define AR2315_RESET_COLD_CPU 0x00000004
782 +#define AR2315_RESET_COLD_CPUWARM 0x00000008
783 +#define AR2315_RESET_SYSTEM \
786 + RESET_COLD_AHB) /* full system */
787 +#define AR2317_RESET_SYSTEM 0x00000010
790 +#define AR2315_RESET (AR2315_DSLBASE + 0x0004)
792 +/* warm reset WLAN0 MAC */
793 +#define AR2315_RESET_WARM_WLAN0_MAC 0x00000001
794 +/* warm reset WLAN0 BaseBand */
795 +#define AR2315_RESET_WARM_WLAN0_BB 0x00000002
796 +/* warm reset MPEG-TS */
797 +#define AR2315_RESET_MPEGTS_RSVD 0x00000004
798 +/* warm reset PCI ahb/dma */
799 +#define AR2315_RESET_PCIDMA 0x00000008
800 +/* warm reset memory controller */
801 +#define AR2315_RESET_MEMCTL 0x00000010
802 +/* warm reset local bus */
803 +#define AR2315_RESET_LOCAL 0x00000020
804 +/* warm reset I2C bus */
805 +#define AR2315_RESET_I2C_RSVD 0x00000040
806 +/* warm reset SPI interface */
807 +#define AR2315_RESET_SPI 0x00000080
808 +/* warm reset UART0 */
809 +#define AR2315_RESET_UART0 0x00000100
810 +/* warm reset IR interface */
811 +#define AR2315_RESET_IR_RSVD 0x00000200
812 +/* cold reset ENET0 phy */
813 +#define AR2315_RESET_EPHY0 0x00000400
814 +/* cold reset ENET0 mac */
815 +#define AR2315_RESET_ENET0 0x00000800
818 + * AHB master arbitration control
820 +#define AR2315_AHB_ARB_CTL (AR2315_DSLBASE + 0x0008)
823 +#define AR2315_ARB_CPU 0x00000001
825 +#define AR2315_ARB_WLAN 0x00000002
827 +#define AR2315_ARB_MPEGTS_RSVD 0x00000004
829 +#define AR2315_ARB_LOCAL 0x00000008
831 +#define AR2315_ARB_PCI 0x00000010
833 +#define AR2315_ARB_ETHERNET 0x00000020
834 +/* retry policy, debug only */
835 +#define AR2315_ARB_RETRY 0x00000100
840 +#define AR2315_ENDIAN_CTL (AR2315_DSLBASE + 0x000c)
842 +/* EC - AHB bridge endianess */
843 +#define AR2315_CONFIG_AHB 0x00000001
845 +#define AR2315_CONFIG_WLAN 0x00000002
846 +/* MPEG-TS byteswap */
847 +#define AR2315_CONFIG_MPEGTS_RSVD 0x00000004
849 +#define AR2315_CONFIG_PCI 0x00000008
850 +/* Memory controller endianess */
851 +#define AR2315_CONFIG_MEMCTL 0x00000010
852 +/* Local bus byteswap */
853 +#define AR2315_CONFIG_LOCAL 0x00000020
854 +/* Ethernet byteswap */
855 +#define AR2315_CONFIG_ETHERNET 0x00000040
857 +/* CPU write buffer merge */
858 +#define AR2315_CONFIG_MERGE 0x00000200
859 +/* CPU big endian */
860 +#define AR2315_CONFIG_CPU 0x00000400
861 +#define AR2315_CONFIG_PCIAHB 0x00000800
862 +#define AR2315_CONFIG_PCIAHB_BRIDGE 0x00001000
864 +#define AR2315_CONFIG_SPI 0x00008000
865 +#define AR2315_CONFIG_CPU_DRAM 0x00010000
866 +#define AR2315_CONFIG_CPU_PCI 0x00020000
867 +#define AR2315_CONFIG_CPU_MMR 0x00040000
868 +#define AR2315_CONFIG_BIG 0x00000400
874 +#define AR2315_NMI_CTL (AR2315_DSLBASE + 0x0010)
876 +#define AR2315_NMI_EN 1
879 + * Revision Register - Initial value is 0x3010 (WMAC 3.0, AR531X 1.0).
881 +#define AR2315_SREV (AR2315_DSLBASE + 0x0014)
883 +#define AR2315_REV_MAJ 0x00f0
884 +#define AR2315_REV_MAJ_S 4
885 +#define AR2315_REV_MIN 0x000f
886 +#define AR2315_REV_MIN_S 0
887 +#define AR2315_REV_CHIP (AR2315_REV_MAJ|AR2315_REV_MIN)
892 +#define AR2315_IF_CTL (AR2315_DSLBASE + 0x0018)
894 +#define AR2315_IF_MASK 0x00000007
895 +#define AR2315_IF_DISABLED 0
896 +#define AR2315_IF_PCI 1
897 +#define AR2315_IF_TS_LOCAL 2
898 +/* only for emulation with separate pins */
899 +#define AR2315_IF_ALL 3
900 +#define AR2315_IF_LOCAL_HOST 0x00000008
901 +#define AR2315_IF_PCI_HOST 0x00000010
902 +#define AR2315_IF_PCI_INTR 0x00000020
903 +#define AR2315_IF_PCI_CLK_MASK 0x00030000
904 +#define AR2315_IF_PCI_CLK_INPUT 0
905 +#define AR2315_IF_PCI_CLK_OUTPUT_LOW 1
906 +#define AR2315_IF_PCI_CLK_OUTPUT_CLK 2
907 +#define AR2315_IF_PCI_CLK_OUTPUT_HIGH 3
908 +#define AR2315_IF_PCI_CLK_SHIFT 16
911 + * APB Interrupt control
914 +#define AR2315_ISR (AR2315_DSLBASE + 0x0020)
915 +#define AR2315_IMR (AR2315_DSLBASE + 0x0024)
916 +#define AR2315_GISR (AR2315_DSLBASE + 0x0028)
918 +#define AR2315_ISR_UART0 0x0001 /* high speed UART */
919 +#define AR2315_ISR_I2C_RSVD 0x0002 /* I2C bus */
920 +#define AR2315_ISR_SPI 0x0004 /* SPI bus */
921 +#define AR2315_ISR_AHB 0x0008 /* AHB error */
922 +#define AR2315_ISR_APB 0x0010 /* APB error */
923 +#define AR2315_ISR_TIMER 0x0020 /* timer */
924 +#define AR2315_ISR_GPIO 0x0040 /* GPIO */
925 +#define AR2315_ISR_WD 0x0080 /* watchdog */
926 +#define AR2315_ISR_IR_RSVD 0x0100 /* IR */
928 +#define AR2315_GISR_MISC 0x0001
929 +#define AR2315_GISR_WLAN0 0x0002
930 +#define AR2315_GISR_MPEGTS_RSVD 0x0004
931 +#define AR2315_GISR_LOCALPCI 0x0008
932 +#define AR2315_GISR_WMACPOLL 0x0010
933 +#define AR2315_GISR_TIMER 0x0020
934 +#define AR2315_GISR_ETHERNET 0x0040
937 + * Interrupt routing from IO to the processor IP bits
938 + * Define our inter mask and level
940 +#define AR2315_INTR_MISCIO SR_IBIT3
941 +#define AR2315_INTR_WLAN0 SR_IBIT4
942 +#define AR2315_INTR_ENET0 SR_IBIT5
943 +#define AR2315_INTR_LOCALPCI SR_IBIT6
944 +#define AR2315_INTR_WMACPOLL SR_IBIT7
945 +#define AR2315_INTR_COMPARE SR_IBIT8
950 +#define AR2315_TIMER (AR2315_DSLBASE + 0x0030)
951 +#define AR2315_RELOAD (AR2315_DSLBASE + 0x0034)
952 +#define AR2315_WD (AR2315_DSLBASE + 0x0038)
953 +#define AR2315_WDC (AR2315_DSLBASE + 0x003c)
955 +#define AR2315_WDC_IGNORE_EXPIRATION 0x00000000
956 +#define AR2315_WDC_NMI 0x00000001 /* NMI on watchdog */
957 +#define AR2315_WDC_RESET 0x00000002 /* reset on watchdog */
960 + * CPU Performance Counters
962 +#define AR2315_PERFCNT0 (AR2315_DSLBASE + 0x0048)
963 +#define AR2315_PERFCNT1 (AR2315_DSLBASE + 0x004c)
965 +#define AR2315_PERF0_DATAHIT 0x0001 /* Count Data Cache Hits */
966 +#define AR2315_PERF0_DATAMISS 0x0002 /* Count Data Cache Misses */
967 +#define AR2315_PERF0_INSTHIT 0x0004 /* Count Instruction Cache Hits */
968 +#define AR2315_PERF0_INSTMISS 0x0008 /* Count Instruction Cache Misses */
969 +#define AR2315_PERF0_ACTIVE 0x0010 /* Count Active Processor Cycles */
970 +#define AR2315_PERF0_WBHIT 0x0020 /* Count CPU Write Buffer Hits */
971 +#define AR2315_PERF0_WBMISS 0x0040 /* Count CPU Write Buffer Misses */
973 +#define AR2315_PERF1_EB_ARDY 0x0001 /* Count EB_ARdy signal */
974 +#define AR2315_PERF1_EB_AVALID 0x0002 /* Count EB_AValid signal */
975 +#define AR2315_PERF1_EB_WDRDY 0x0004 /* Count EB_WDRdy signal */
976 +#define AR2315_PERF1_EB_RDVAL 0x0008 /* Count EB_RdVal signal */
977 +#define AR2315_PERF1_VRADDR 0x0010 /* Count valid read address cycles */
978 +#define AR2315_PERF1_VWADDR 0x0020 /* Count valid write address cycles */
979 +#define AR2315_PERF1_VWDATA 0x0040 /* Count valid write data cycles */
982 + * AHB Error Reporting.
984 +#define AR2315_AHB_ERR0 (AR2315_DSLBASE + 0x0050) /* error */
985 +#define AR2315_AHB_ERR1 (AR2315_DSLBASE + 0x0054) /* haddr */
986 +#define AR2315_AHB_ERR2 (AR2315_DSLBASE + 0x0058) /* hwdata */
987 +#define AR2315_AHB_ERR3 (AR2315_DSLBASE + 0x005c) /* hrdata */
988 +#define AR2315_AHB_ERR4 (AR2315_DSLBASE + 0x0060) /* status */
990 +#define AHB_ERROR_DET 1 /* AHB Error has been detected, */
991 + /* write 1 to clear all bits in ERR0 */
992 +#define AHB_ERROR_OVR 2 /* AHB Error overflow has been detected */
993 +#define AHB_ERROR_WDT 4 /* AHB Error due to wdt instead of hresp */
995 +#define AR2315_PROCERR_HMAST 0x0000000f
996 +#define AR2315_PROCERR_HMAST_DFLT 0
997 +#define AR2315_PROCERR_HMAST_WMAC 1
998 +#define AR2315_PROCERR_HMAST_ENET 2
999 +#define AR2315_PROCERR_HMAST_PCIENDPT 3
1000 +#define AR2315_PROCERR_HMAST_LOCAL 4
1001 +#define AR2315_PROCERR_HMAST_CPU 5
1002 +#define AR2315_PROCERR_HMAST_PCITGT 6
1004 +#define AR2315_PROCERR_HMAST_S 0
1005 +#define AR2315_PROCERR_HWRITE 0x00000010
1006 +#define AR2315_PROCERR_HSIZE 0x00000060
1007 +#define AR2315_PROCERR_HSIZE_S 5
1008 +#define AR2315_PROCERR_HTRANS 0x00000180
1009 +#define AR2315_PROCERR_HTRANS_S 7
1010 +#define AR2315_PROCERR_HBURST 0x00000e00
1011 +#define AR2315_PROCERR_HBURST_S 9
1016 +#define AR2315_PLLC_CTL (AR2315_DSLBASE + 0x0064)
1017 +#define AR2315_PLLV_CTL (AR2315_DSLBASE + 0x0068)
1018 +#define AR2315_CPUCLK (AR2315_DSLBASE + 0x006c)
1019 +#define AR2315_AMBACLK (AR2315_DSLBASE + 0x0070)
1020 +#define AR2315_SYNCCLK (AR2315_DSLBASE + 0x0074)
1021 +#define AR2315_DSL_SLEEP_CTL (AR2315_DSLBASE + 0x0080)
1022 +#define AR2315_DSL_SLEEP_DUR (AR2315_DSLBASE + 0x0084)
1024 +/* PLLc Control fields */
1025 +#define PLLC_REF_DIV_M 0x00000003
1026 +#define PLLC_REF_DIV_S 0
1027 +#define PLLC_FDBACK_DIV_M 0x0000007C
1028 +#define PLLC_FDBACK_DIV_S 2
1029 +#define PLLC_ADD_FDBACK_DIV_M 0x00000080
1030 +#define PLLC_ADD_FDBACK_DIV_S 7
1031 +#define PLLC_CLKC_DIV_M 0x0001c000
1032 +#define PLLC_CLKC_DIV_S 14
1033 +#define PLLC_CLKM_DIV_M 0x00700000
1034 +#define PLLC_CLKM_DIV_S 20
1036 +/* CPU CLK Control fields */
1037 +#define CPUCLK_CLK_SEL_M 0x00000003
1038 +#define CPUCLK_CLK_SEL_S 0
1039 +#define CPUCLK_CLK_DIV_M 0x0000000c
1040 +#define CPUCLK_CLK_DIV_S 2
1042 +/* AMBA CLK Control fields */
1043 +#define AMBACLK_CLK_SEL_M 0x00000003
1044 +#define AMBACLK_CLK_SEL_S 0
1045 +#define AMBACLK_CLK_DIV_M 0x0000000c
1046 +#define AMBACLK_CLK_DIV_S 2
1051 +#define AR2315_GPIO_DI (AR2315_DSLBASE + 0x0088)
1052 +#define AR2315_GPIO_DO (AR2315_DSLBASE + 0x0090)
1053 +#define AR2315_GPIO_DIR (AR2315_DSLBASE + 0x0098)
1054 +#define AR2315_GPIO_INT (AR2315_DSLBASE + 0x00a0)
1056 +#define AR2315_GPIO_DIR_M(x) (1 << (x)) /* mask for i/o */
1057 +#define AR2315_GPIO_DIR_O(x) (1 << (x)) /* output */
1058 +#define AR2315_GPIO_DIR_I(x) (0) /* input */
1060 +#define AR2315_GPIO_INT_S(x) (x) /* interrupt enable */
1061 +#define AR2315_GPIO_INT_M (0x3F) /* mask for int */
1062 +#define AR2315_GPIO_INT_LVL(x) ((x) << 6) /* interrupt level */
1063 +#define AR2315_GPIO_INT_LVL_M ((0x3) << 6) /* mask for int level */
1065 +#define AR2315_GPIO_INT_MAX_Y 1 /* Maximum value of Y for
1066 + * AR5313_GPIO_INT_* macros */
1067 +#define AR2315_GPIO_INT_LVL_OFF 0 /* Triggerring off */
1068 +#define AR2315_GPIO_INT_LVL_LOW 1 /* Low Level Triggered */
1069 +#define AR2315_GPIO_INT_LVL_HIGH 2 /* High Level Triggered */
1070 +#define AR2315_GPIO_INT_LVL_EDGE 3 /* Edge Triggered */
1072 +#define AR2315_RESET_GPIO 5
1073 +#define AR2315_NUM_GPIO 22
1076 + * PCI Clock Control
1078 +#define AR2315_PCICLK (AR2315_DSLBASE + 0x00a4)
1080 +#define AR2315_PCICLK_INPUT_M 0x3
1081 +#define AR2315_PCICLK_INPUT_S 0
1083 +#define AR2315_PCICLK_PLLC_CLKM 0
1084 +#define AR2315_PCICLK_PLLC_CLKM1 1
1085 +#define AR2315_PCICLK_PLLC_CLKC 2
1086 +#define AR2315_PCICLK_REF_CLK 3
1088 +#define AR2315_PCICLK_DIV_M 0xc
1089 +#define AR2315_PCICLK_DIV_S 2
1091 +#define AR2315_PCICLK_IN_FREQ 0
1092 +#define AR2315_PCICLK_IN_FREQ_DIV_6 1
1093 +#define AR2315_PCICLK_IN_FREQ_DIV_8 2
1094 +#define AR2315_PCICLK_IN_FREQ_DIV_10 3
1097 + * Observation Control Register
1099 +#define AR2315_OCR (AR2315_DSLBASE + 0x00b0)
1100 +#define OCR_GPIO0_IRIN 0x0040
1101 +#define OCR_GPIO1_IROUT 0x0080
1102 +#define OCR_GPIO3_RXCLR 0x0200
1105 + * General Clock Control
1108 +#define AR2315_MISCCLK (AR2315_DSLBASE + 0x00b4)
1109 +#define MISCCLK_PLLBYPASS_EN 0x00000001
1110 +#define MISCCLK_PROCREFCLK 0x00000002
1113 + * SDRAM Controller
1114 + * - No read or write buffers are included.
1116 +#define AR2315_MEM_CFG (AR2315_SDRAMCTL + 0x00)
1117 +#define AR2315_MEM_CTRL (AR2315_SDRAMCTL + 0x0c)
1118 +#define AR2315_MEM_REF (AR2315_SDRAMCTL + 0x10)
1120 +#define SDRAM_DATA_WIDTH_M 0x00006000
1121 +#define SDRAM_DATA_WIDTH_S 13
1123 +#define SDRAM_COL_WIDTH_M 0x00001E00
1124 +#define SDRAM_COL_WIDTH_S 9
1126 +#define SDRAM_ROW_WIDTH_M 0x000001E0
1127 +#define SDRAM_ROW_WIDTH_S 5
1129 +#define SDRAM_BANKADDR_BITS_M 0x00000018
1130 +#define SDRAM_BANKADDR_BITS_S 3
1133 + * PCI Bus Interface Registers
1135 +#define AR2315_PCI_1MS_REG (AR2315_PCI + 0x0008)
1136 +#define AR2315_PCI_1MS_MASK 0x3FFFF /* # of AHB clk cycles in 1ms */
1138 +#define AR2315_PCI_MISC_CONFIG (AR2315_PCI + 0x000c)
1139 +#define AR2315_PCIMISC_TXD_EN 0x00000001 /* Enable TXD for fragments */
1140 +#define AR2315_PCIMISC_CFG_SEL 0x00000002 /* mem or config cycles */
1141 +#define AR2315_PCIMISC_GIG_MASK 0x0000000C /* bits 31-30 for pci req */
1142 +#define AR2315_PCIMISC_RST_MODE 0x00000030
1143 +#define AR2315_PCIRST_INPUT 0x00000000 /* 4:5=0 rst is input */
1144 +#define AR2315_PCIRST_LOW 0x00000010 /* 4:5=1 rst to GND */
1145 +#define AR2315_PCIRST_HIGH 0x00000020 /* 4:5=2 rst to VDD */
1146 +#define AR2315_PCIGRANT_EN 0x00000000 /* 6:7=0 early grant en */
1147 +#define AR2315_PCIGRANT_FRAME 0x00000040 /* 6:7=1 grant waits 4 frame */
1148 +#define AR2315_PCIGRANT_IDLE 0x00000080 /* 6:7=2 grant waits 4 idle */
1149 +#define AR2315_PCIGRANT_GAP 0x00000000 /* 6:7=2 grant waits 4 idle */
1150 +#define AR2315_PCICACHE_DIS 0x00001000 /* PCI external access cache
1153 +#define AR2315_PCI_OUT_TSTAMP (AR2315_PCI + 0x0010)
1155 +#define AR2315_PCI_UNCACHE_CFG (AR2315_PCI + 0x0014)
1157 +#define AR2315_PCI_IN_EN (AR2315_PCI + 0x0100)
1158 +#define AR2315_PCI_IN_EN0 0x01 /* Enable chain 0 */
1159 +#define AR2315_PCI_IN_EN1 0x02 /* Enable chain 1 */
1160 +#define AR2315_PCI_IN_EN2 0x04 /* Enable chain 2 */
1161 +#define AR2315_PCI_IN_EN3 0x08 /* Enable chain 3 */
1163 +#define AR2315_PCI_IN_DIS (AR2315_PCI + 0x0104)
1164 +#define AR2315_PCI_IN_DIS0 0x01 /* Disable chain 0 */
1165 +#define AR2315_PCI_IN_DIS1 0x02 /* Disable chain 1 */
1166 +#define AR2315_PCI_IN_DIS2 0x04 /* Disable chain 2 */
1167 +#define AR2315_PCI_IN_DIS3 0x08 /* Disable chain 3 */
1169 +#define AR2315_PCI_IN_PTR (AR2315_PCI + 0x0200)
1171 +#define AR2315_PCI_OUT_EN (AR2315_PCI + 0x0400)
1172 +#define AR2315_PCI_OUT_EN0 0x01 /* Enable chain 0 */
1174 +#define AR2315_PCI_OUT_DIS (AR2315_PCI + 0x0404)
1175 +#define AR2315_PCI_OUT_DIS0 0x01 /* Disable chain 0 */
1177 +#define AR2315_PCI_OUT_PTR (AR2315_PCI + 0x0408)
1179 +#define AR2315_PCI_INT_STATUS (AR2315_PCI + 0x0500) /* write one to clr */
1180 +#define AR2315_PCI_TXINT 0x00000001 /* Desc In Completed */
1181 +#define AR2315_PCI_TXOK 0x00000002 /* Desc In OK */
1182 +#define AR2315_PCI_TXERR 0x00000004 /* Desc In ERR */
1183 +#define AR2315_PCI_TXEOL 0x00000008 /* Desc In End-of-List */
1184 +#define AR2315_PCI_RXINT 0x00000010 /* Desc Out Completed */
1185 +#define AR2315_PCI_RXOK 0x00000020 /* Desc Out OK */
1186 +#define AR2315_PCI_RXERR 0x00000040 /* Desc Out ERR */
1187 +#define AR2315_PCI_RXEOL 0x00000080 /* Desc Out EOL */
1188 +#define AR2315_PCI_TXOOD 0x00000200 /* Desc In Out-of-Desc */
1189 +#define AR2315_PCI_MASK 0x0000FFFF /* Desc Mask */
1190 +#define AR2315_PCI_EXT_INT 0x02000000
1191 +#define AR2315_PCI_ABORT_INT 0x04000000
1193 +#define AR2315_PCI_INT_MASK (AR2315_PCI + 0x0504) /* same as INT_STATUS */
1195 +#define AR2315_PCI_INTEN_REG (AR2315_PCI + 0x0508)
1196 +#define AR2315_PCI_INT_DISABLE 0x00 /* disable pci interrupts */
1197 +#define AR2315_PCI_INT_ENABLE 0x01 /* enable pci interrupts */
1199 +#define AR2315_PCI_HOST_IN_EN (AR2315_PCI + 0x0800)
1200 +#define AR2315_PCI_HOST_IN_DIS (AR2315_PCI + 0x0804)
1201 +#define AR2315_PCI_HOST_IN_PTR (AR2315_PCI + 0x0810)
1202 +#define AR2315_PCI_HOST_OUT_EN (AR2315_PCI + 0x0900)
1203 +#define AR2315_PCI_HOST_OUT_DIS (AR2315_PCI + 0x0904)
1204 +#define AR2315_PCI_HOST_OUT_PTR (AR2315_PCI + 0x0908)
1208 + * Local Bus Interface Registers
1210 +#define AR2315_LB_CONFIG (AR2315_LOCAL + 0x0000)
1211 +#define AR2315_LBCONF_OE 0x00000001 /* =1 OE is low-true */
1212 +#define AR2315_LBCONF_CS0 0x00000002 /* =1 first CS is low-true */
1213 +#define AR2315_LBCONF_CS1 0x00000004 /* =1 2nd CS is low-true */
1214 +#define AR2315_LBCONF_RDY 0x00000008 /* =1 RDY is low-true */
1215 +#define AR2315_LBCONF_WE 0x00000010 /* =1 Write En is low-true */
1216 +#define AR2315_LBCONF_WAIT 0x00000020 /* =1 WAIT is low-true */
1217 +#define AR2315_LBCONF_ADS 0x00000040 /* =1 Adr Strobe is low-true */
1218 +#define AR2315_LBCONF_MOT 0x00000080 /* =0 Intel, =1 Motorola */
1219 +#define AR2315_LBCONF_8CS 0x00000100 /* =1 8 bits CS, 0= 16bits */
1220 +#define AR2315_LBCONF_8DS 0x00000200 /* =1 8 bits Data S, 0=16bits */
1221 +#define AR2315_LBCONF_ADS_EN 0x00000400 /* =1 Enable ADS */
1222 +#define AR2315_LBCONF_ADR_OE 0x00000800 /* =1 Adr cap on OE, WE or DS */
1223 +#define AR2315_LBCONF_ADDT_MUX 0x00001000 /* =1 Adr and Data share bus */
1224 +#define AR2315_LBCONF_DATA_OE 0x00002000 /* =1 Data cap on OE, WE, DS */
1225 +#define AR2315_LBCONF_16DATA 0x00004000 /* =1 Data is 16 bits wide */
1226 +#define AR2315_LBCONF_SWAPDT 0x00008000 /* =1 Byte swap data */
1227 +#define AR2315_LBCONF_SYNC 0x00010000 /* =1 Bus synchronous to clk */
1228 +#define AR2315_LBCONF_INT 0x00020000 /* =1 Intr is low true */
1229 +#define AR2315_LBCONF_INT_CTR0 0x00000000 /* GND high-Z, Vdd is high-Z */
1230 +#define AR2315_LBCONF_INT_CTR1 0x00040000 /* GND drive, Vdd is high-Z */
1231 +#define AR2315_LBCONF_INT_CTR2 0x00080000 /* GND high-Z, Vdd drive */
1232 +#define AR2315_LBCONF_INT_CTR3 0x000C0000 /* GND drive, Vdd drive */
1233 +#define AR2315_LBCONF_RDY_WAIT 0x00100000 /* =1 RDY is negative of WAIT */
1234 +#define AR2315_LBCONF_INT_PULSE 0x00200000 /* =1 Interrupt is a pulse */
1235 +#define AR2315_LBCONF_ENABLE 0x00400000 /* =1 Falcon respond to LB */
1237 +#define AR2315_LB_CLKSEL (AR2315_LOCAL + 0x0004)
1238 +#define AR2315_LBCLK_EXT 0x0001 /* use external clk for lb */
1240 +#define AR2315_LB_1MS (AR2315_LOCAL + 0x0008)
1241 +#define AR2315_LB1MS_MASK 0x3FFFF /* # of AHB clk cycles in 1ms */
1243 +#define AR2315_LB_MISCCFG (AR2315_LOCAL + 0x000C)
1244 +#define AR2315_LBM_TXD_EN 0x00000001 /* Enable TXD for fragments */
1245 +#define AR2315_LBM_RX_INTEN 0x00000002 /* Enable LB ints on RX ready */
1246 +#define AR2315_LBM_MBOXWR_INTEN 0x00000004 /* Enable LB ints on mbox wr */
1247 +#define AR2315_LBM_MBOXRD_INTEN 0x00000008 /* Enable LB ints on mbox rd */
1248 +#define AR2315_LMB_DESCSWAP_EN 0x00000010 /* Byte swap desc enable */
1249 +#define AR2315_LBM_TIMEOUT_MASK 0x00FFFF80
1250 +#define AR2315_LBM_TIMEOUT_SHFT 7
1251 +#define AR2315_LBM_PORTMUX 0x07000000
1254 +#define AR2315_LB_RXTSOFF (AR2315_LOCAL + 0x0010)
1256 +#define AR2315_LB_TX_CHAIN_EN (AR2315_LOCAL + 0x0100)
1257 +#define AR2315_LB_TXEN_0 0x01
1258 +#define AR2315_LB_TXEN_1 0x02
1259 +#define AR2315_LB_TXEN_2 0x04
1260 +#define AR2315_LB_TXEN_3 0x08
1262 +#define AR2315_LB_TX_CHAIN_DIS (AR2315_LOCAL + 0x0104)
1263 +#define AR2315_LB_TX_DESC_PTR (AR2315_LOCAL + 0x0200)
1265 +#define AR2315_LB_RX_CHAIN_EN (AR2315_LOCAL + 0x0400)
1266 +#define AR2315_LB_RXEN 0x01
1268 +#define AR2315_LB_RX_CHAIN_DIS (AR2315_LOCAL + 0x0404)
1269 +#define AR2315_LB_RX_DESC_PTR (AR2315_LOCAL + 0x0408)
1271 +#define AR2315_LB_INT_STATUS (AR2315_LOCAL + 0x0500)
1272 +#define AR2315_INT_TX_DESC 0x0001
1273 +#define AR2315_INT_TX_OK 0x0002
1274 +#define AR2315_INT_TX_ERR 0x0004
1275 +#define AR2315_INT_TX_EOF 0x0008
1276 +#define AR2315_INT_RX_DESC 0x0010
1277 +#define AR2315_INT_RX_OK 0x0020
1278 +#define AR2315_INT_RX_ERR 0x0040
1279 +#define AR2315_INT_RX_EOF 0x0080
1280 +#define AR2315_INT_TX_TRUNC 0x0100
1281 +#define AR2315_INT_TX_STARVE 0x0200
1282 +#define AR2315_INT_LB_TIMEOUT 0x0400
1283 +#define AR2315_INT_LB_ERR 0x0800
1284 +#define AR2315_INT_MBOX_WR 0x1000
1285 +#define AR2315_INT_MBOX_RD 0x2000
1287 +/* Bit definitions for INT MASK are the same as INT_STATUS */
1288 +#define AR2315_LB_INT_MASK (AR2315_LOCAL + 0x0504)
1290 +#define AR2315_LB_INT_EN (AR2315_LOCAL + 0x0508)
1291 +#define AR2315_LB_MBOX (AR2315_LOCAL + 0x0600)
1294 + * IR Interface Registers
1296 +#define AR2315_IR_PKTDATA (AR2315_IR + 0x0000)
1298 +#define AR2315_IR_PKTLEN (AR2315_IR + 0x07fc) /* 0 - 63 */
1300 +#define AR2315_IR_CONTROL (AR2315_IR + 0x0800)
1301 +#define AR2315_IRCTL_TX 0x00000000 /* use as tranmitter */
1302 +#define AR2315_IRCTL_RX 0x00000001 /* use as receiver */
1303 +#define AR2315_IRCTL_SAMPLECLK_MASK 0x00003ffe /* Sample clk divisor */
1304 +#define AR2315_IRCTL_SAMPLECLK_SHFT 1
1305 +#define AR2315_IRCTL_OUTPUTCLK_MASK 0x03ffc000 /* Output clk div */
1306 +#define AR2315_IRCTL_OUTPUTCLK_SHFT 14
1308 +#define AR2315_IR_STATUS (AR2315_IR + 0x0804)
1309 +#define AR2315_IRSTS_RX 0x00000001 /* receive in progress */
1310 +#define AR2315_IRSTS_TX 0x00000002 /* transmit in progress */
1312 +#define AR2315_IR_CONFIG (AR2315_IR + 0x0808)
1313 +#define AR2315_IRCFG_INVIN 0x00000001 /* invert in polarity */
1314 +#define AR2315_IRCFG_INVOUT 0x00000002 /* invert out polarity */
1315 +#define AR2315_IRCFG_SEQ_START_WIN_SEL 0x00000004 /* 1 => 28, 0 => 7 */
1316 +#define AR2315_IRCFG_SEQ_START_THRESH 0x000000f0
1317 +#define AR2315_IRCFG_SEQ_END_UNIT_SEL 0x00000100
1318 +#define AR2315_IRCFG_SEQ_END_UNIT_THRESH 0x00007e00
1319 +#define AR2315_IRCFG_SEQ_END_WIN_SEL 0x00008000
1320 +#define AR2315_IRCFG_SEQ_END_WIN_THRESH 0x001f0000
1321 +#define AR2315_IRCFG_NUM_BACKOFF_WORDS 0x01e00000
1323 +#define HOST_PCI_DEV_ID 3
1324 +#define HOST_PCI_MBAR0 0x10000000
1325 +#define HOST_PCI_MBAR1 0x20000000
1326 +#define HOST_PCI_MBAR2 0x30000000
1328 +#define HOST_PCI_SDRAM_BASEADDR HOST_PCI_MBAR1
1329 +#define PCI_DEVICE_MEM_SPACE 0x800000
1331 +#endif /* __AR2315_REG_H */
1333 +++ b/arch/mips/include/asm/mach-ar231x/ar5312_regs.h
1336 + * This file is subject to the terms and conditions of the GNU General Public
1337 + * License. See the file "COPYING" in the main directory of this archive
1338 + * for more details.
1340 + * Copyright (C) 2003 Atheros Communications, Inc., All Rights Reserved.
1341 + * Copyright (C) 2006 Imre Kaloz <kaloz@openwrt.org>
1342 + * Copyright (C) 2006 Felix Fietkau <nbd@openwrt.org>
1348 +#include <asm/addrspace.h>
1354 +#define AR5312_IRQ_WLAN0_INTRS (MIPS_CPU_IRQ_BASE+2) /* C0_CAUSE: 0x0400 */
1355 +#define AR5312_IRQ_ENET0_INTRS (MIPS_CPU_IRQ_BASE+3) /* C0_CAUSE: 0x0800 */
1356 +#define AR5312_IRQ_ENET1_INTRS (MIPS_CPU_IRQ_BASE+4) /* C0_CAUSE: 0x1000 */
1357 +#define AR5312_IRQ_WLAN1_INTRS (MIPS_CPU_IRQ_BASE+5) /* C0_CAUSE: 0x2000 */
1358 +#define AR5312_IRQ_MISC_INTRS (MIPS_CPU_IRQ_BASE+6) /* C0_CAUSE: 0x4000 */
1362 + * Miscellaneous interrupts, which share IP6.
1364 +#define AR531X_MISC_IRQ_NONE (AR531X_MISC_IRQ_BASE+0)
1365 +#define AR531X_MISC_IRQ_TIMER (AR531X_MISC_IRQ_BASE+1)
1366 +#define AR531X_MISC_IRQ_AHB_PROC (AR531X_MISC_IRQ_BASE+2)
1367 +#define AR531X_MISC_IRQ_AHB_DMA (AR531X_MISC_IRQ_BASE+3)
1368 +#define AR531X_MISC_IRQ_GPIO (AR531X_MISC_IRQ_BASE+4)
1369 +#define AR531X_MISC_IRQ_UART0 (AR531X_MISC_IRQ_BASE+5)
1370 +#define AR531X_MISC_IRQ_UART0_DMA (AR531X_MISC_IRQ_BASE+6)
1371 +#define AR531X_MISC_IRQ_WATCHDOG (AR531X_MISC_IRQ_BASE+7)
1372 +#define AR531X_MISC_IRQ_LOCAL (AR531X_MISC_IRQ_BASE+8)
1373 +#define AR531X_MISC_IRQ_SPI (AR531X_MISC_IRQ_BASE+9)
1374 +#define AR531X_MISC_IRQ_COUNT 10
1378 +#define AR531X_WLAN0 0x18000000
1379 +#define AR531X_WLAN1 0x18500000
1380 +#define AR531X_ENET0 0x18100000
1381 +#define AR531X_ENET1 0x18200000
1382 +#define AR531X_SDRAMCTL 0x18300000
1383 +#define AR531X_FLASHCTL 0x18400000
1384 +#define AR531X_APBBASE 0x1c000000
1385 +#define AR531X_FLASH 0x1e000000
1386 +#define AR531X_UART0 0xbc000003 /* UART MMR */
1389 + * AR531X_NUM_ENET_MAC defines the number of ethernet MACs that
1390 + * should be considered available. The AR5312 supports 2 enet MACS,
1391 + * even though many reference boards only actually use 1 of them
1392 + * (i.e. Only MAC 0 is actually connected to an enet PHY or PHY switch.
1393 + * The AR2312 supports 1 enet MAC.
1395 +#define AR531X_NUM_ENET_MAC 2
1398 + * Need these defines to determine true number of ethernet MACs
1400 +#define AR5212_AR5312_REV2 0x0052 /* AR5312 WMAC (AP31) */
1401 +#define AR5212_AR5312_REV7 0x0057 /* AR5312 WMAC (AP30-040) */
1402 +#define AR5212_AR2313_REV8 0x0058 /* AR2313 WMAC (AP43-030) */
1405 + * AR531X_NUM_WMAC defines the number of Wireless MACs that\
1406 + * should be considered available.
1408 +#define AR531X_NUM_WMAC 2
1410 +/* Reset/Timer Block Address Map */
1411 +#define AR531X_RESETTMR (AR531X_APBBASE + 0x3000)
1412 +#define AR531X_TIMER (AR531X_RESETTMR + 0x0000) /* countdown timer */
1413 +#define AR531X_WD_CTRL (AR531X_RESETTMR + 0x0008) /* watchdog cntrl */
1414 +#define AR531X_WD_TIMER (AR531X_RESETTMR + 0x000c) /* watchdog timer */
1415 +#define AR531X_ISR (AR531X_RESETTMR + 0x0010) /* Intr Status Reg */
1416 +#define AR531X_IMR (AR531X_RESETTMR + 0x0014) /* Intr Mask Reg */
1417 +#define AR531X_RESET (AR531X_RESETTMR + 0x0020)
1418 +#define AR5312_CLOCKCTL1 (AR531X_RESETTMR + 0x0064)
1419 +#define AR5312_SCRATCH (AR531X_RESETTMR + 0x006c)
1420 +#define AR531X_PROCADDR (AR531X_RESETTMR + 0x0070)
1421 +#define AR531X_PROC1 (AR531X_RESETTMR + 0x0074)
1422 +#define AR531X_DMAADDR (AR531X_RESETTMR + 0x0078)
1423 +#define AR531X_DMA1 (AR531X_RESETTMR + 0x007c)
1424 +#define AR531X_ENABLE (AR531X_RESETTMR + 0x0080) /* interface enb */
1425 +#define AR531X_REV (AR531X_RESETTMR + 0x0090) /* revision */
1427 +/* AR531X_WD_CTRL register bit field definitions */
1428 +#define AR531X_WD_CTRL_IGNORE_EXPIRATION 0x0000
1429 +#define AR531X_WD_CTRL_NMI 0x0001
1430 +#define AR531X_WD_CTRL_RESET 0x0002
1432 +/* AR531X_ISR register bit field definitions */
1433 +#define AR531X_ISR_NONE 0x0000
1434 +#define AR531X_ISR_TIMER 0x0001
1435 +#define AR531X_ISR_AHBPROC 0x0002
1436 +#define AR531X_ISR_AHBDMA 0x0004
1437 +#define AR531X_ISR_GPIO 0x0008
1438 +#define AR531X_ISR_UART0 0x0010
1439 +#define AR531X_ISR_UART0DMA 0x0020
1440 +#define AR531X_ISR_WD 0x0040
1441 +#define AR531X_ISR_LOCAL 0x0080
1443 +/* AR531X_RESET register bit field definitions */
1444 +#define AR531X_RESET_SYSTEM 0x00000001 /* cold reset full system */
1445 +#define AR531X_RESET_PROC 0x00000002 /* cold reset MIPS core */
1446 +#define AR531X_RESET_WLAN0 0x00000004 /* cold reset WLAN MAC and BB */
1447 +#define AR531X_RESET_EPHY0 0x00000008 /* cold reset ENET0 phy */
1448 +#define AR531X_RESET_EPHY1 0x00000010 /* cold reset ENET1 phy */
1449 +#define AR531X_RESET_ENET0 0x00000020 /* cold reset ENET0 mac */
1450 +#define AR531X_RESET_ENET1 0x00000040 /* cold reset ENET1 mac */
1451 +#define AR531X_RESET_UART0 0x00000100 /* cold reset UART0 (high speed) */
1452 +#define AR531X_RESET_WLAN1 0x00000200 /* cold reset WLAN MAC/BB */
1453 +#define AR531X_RESET_APB 0x00000400 /* cold reset APB (ar5312) */
1454 +#define AR531X_RESET_WARM_PROC 0x00001000 /* warm reset MIPS core */
1455 +#define AR531X_RESET_WARM_WLAN0_MAC 0x00002000 /* warm reset WLAN0 MAC */
1456 +#define AR531X_RESET_WARM_WLAN0_BB 0x00004000 /* warm reset WLAN0 BaseBand */
1457 +#define AR531X_RESET_NMI 0x00010000 /* send an NMI to the processor */
1458 +#define AR531X_RESET_WARM_WLAN1_MAC 0x00020000 /* warm reset WLAN1 mac */
1459 +#define AR531X_RESET_WARM_WLAN1_BB 0x00040000 /* warm reset WLAN1 baseband */
1460 +#define AR531X_RESET_LOCAL_BUS 0x00080000 /* reset local bus */
1461 +#define AR531X_RESET_WDOG 0x00100000 /* last reset was a watchdog */
1463 +#define AR531X_RESET_WMAC0_BITS \
1464 + (AR531X_RESET_WLAN0 |\
1465 + AR531X_RESET_WARM_WLAN0_MAC |\
1466 + AR531X_RESET_WARM_WLAN0_BB)
1468 +#define AR531X_RESERT_WMAC1_BITS \
1469 + (AR531X_RESET_WLAN1 |\
1470 + AR531X_RESET_WARM_WLAN1_MAC |\
1471 + AR531X_RESET_WARM_WLAN1_BB)
1473 +/* AR5312_CLOCKCTL1 register bit field definitions */
1474 +#define AR5312_CLOCKCTL1_PREDIVIDE_MASK 0x00000030
1475 +#define AR5312_CLOCKCTL1_PREDIVIDE_SHIFT 4
1476 +#define AR5312_CLOCKCTL1_MULTIPLIER_MASK 0x00001f00
1477 +#define AR5312_CLOCKCTL1_MULTIPLIER_SHIFT 8
1478 +#define AR5312_CLOCKCTL1_DOUBLER_MASK 0x00010000
1480 +/* Valid for AR5312 and AR2312 */
1481 +#define AR5312_CLOCKCTL1_PREDIVIDE_MASK 0x00000030
1482 +#define AR5312_CLOCKCTL1_PREDIVIDE_SHIFT 4
1483 +#define AR5312_CLOCKCTL1_MULTIPLIER_MASK 0x00001f00
1484 +#define AR5312_CLOCKCTL1_MULTIPLIER_SHIFT 8
1485 +#define AR5312_CLOCKCTL1_DOUBLER_MASK 0x00010000
1487 +/* Valid for AR2313 */
1488 +#define AR2313_CLOCKCTL1_PREDIVIDE_MASK 0x00003000
1489 +#define AR2313_CLOCKCTL1_PREDIVIDE_SHIFT 12
1490 +#define AR2313_CLOCKCTL1_MULTIPLIER_MASK 0x001f0000
1491 +#define AR2313_CLOCKCTL1_MULTIPLIER_SHIFT 16
1492 +#define AR2313_CLOCKCTL1_DOUBLER_MASK 0x00000000
1495 +/* AR531X_ENABLE register bit field definitions */
1496 +#define AR531X_ENABLE_WLAN0 0x0001
1497 +#define AR531X_ENABLE_ENET0 0x0002
1498 +#define AR531X_ENABLE_ENET1 0x0004
1499 +#define AR531X_ENABLE_UART_AND_WLAN1_PIO 0x0008 /* UART, and WLAN1 PIOs */
1500 +#define AR531X_ENABLE_WLAN1_DMA 0x0010 /* WLAN1 DMAs */
1501 +#define AR531X_ENABLE_WLAN1 \
1502 + (AR531X_ENABLE_UART_AND_WLAN1_PIO |\
1503 + AR531X_ENABLE_WLAN1_DMA)
1505 +/* AR531X_REV register bit field definitions */
1506 +#define AR531X_REV_WMAC_MAJ 0xf000
1507 +#define AR531X_REV_WMAC_MAJ_S 12
1508 +#define AR531X_REV_WMAC_MIN 0x0f00
1509 +#define AR531X_REV_WMAC_MIN_S 8
1510 +#define AR531X_REV_MAJ 0x00f0
1511 +#define AR531X_REV_MAJ_S 4
1512 +#define AR531X_REV_MIN 0x000f
1513 +#define AR531X_REV_MIN_S 0
1514 +#define AR531X_REV_CHIP (AR531X_REV_MAJ|AR531X_REV_MIN)
1516 +/* Major revision numbers, bits 7..4 of Revision ID register */
1517 +#define AR531X_REV_MAJ_AR5312 0x4
1518 +#define AR531X_REV_MAJ_AR2313 0x5
1520 +/* Minor revision numbers, bits 3..0 of Revision ID register */
1521 +#define AR5312_REV_MIN_DUAL 0x0 /* Dual WLAN version */
1522 +#define AR5312_REV_MIN_SINGLE 0x1 /* Single WLAN version */
1524 +/* AR531X_FLASHCTL register bit field definitions */
1525 +#define FLASHCTL_IDCY 0x0000000f /* Idle cycle turn around time */
1526 +#define FLASHCTL_IDCY_S 0
1527 +#define FLASHCTL_WST1 0x000003e0 /* Wait state 1 */
1528 +#define FLASHCTL_WST1_S 5
1529 +#define FLASHCTL_RBLE 0x00000400 /* Read byte lane enable */
1530 +#define FLASHCTL_WST2 0x0000f800 /* Wait state 2 */
1531 +#define FLASHCTL_WST2_S 11
1532 +#define FLASHCTL_AC 0x00070000 /* Flash address check (added) */
1533 +#define FLASHCTL_AC_S 16
1534 +#define FLASHCTL_AC_128K 0x00000000
1535 +#define FLASHCTL_AC_256K 0x00010000
1536 +#define FLASHCTL_AC_512K 0x00020000
1537 +#define FLASHCTL_AC_1M 0x00030000
1538 +#define FLASHCTL_AC_2M 0x00040000
1539 +#define FLASHCTL_AC_4M 0x00050000
1540 +#define FLASHCTL_AC_8M 0x00060000
1541 +#define FLASHCTL_AC_RES 0x00070000 /* 16MB is not supported */
1542 +#define FLASHCTL_E 0x00080000 /* Flash bank enable (added) */
1543 +#define FLASHCTL_BUSERR 0x01000000 /* Bus transfer error status flag */
1544 +#define FLASHCTL_WPERR 0x02000000 /* Write protect error status flag */
1545 +#define FLASHCTL_WP 0x04000000 /* Write protect */
1546 +#define FLASHCTL_BM 0x08000000 /* Burst mode */
1547 +#define FLASHCTL_MW 0x30000000 /* Memory width */
1548 +#define FLASHCTL_MWx8 0x00000000 /* Memory width x8 */
1549 +#define FLASHCTL_MWx16 0x10000000 /* Memory width x16 */
1550 +#define FLASHCTL_MWx32 0x20000000 /* Memory width x32 (not supported) */
1551 +#define FLASHCTL_ATNR 0x00000000 /* Access type == no retry */
1552 +#define FLASHCTL_ATR 0x80000000 /* Access type == retry every */
1553 +#define FLASHCTL_ATR4 0xc0000000 /* Access type == retry every 4 */
1555 +/* ARM Flash Controller -- 3 flash banks with either x8 or x16 devices. */
1556 +#define AR531X_FLASHCTL0 (AR531X_FLASHCTL + 0x00)
1557 +#define AR531X_FLASHCTL1 (AR531X_FLASHCTL + 0x04)
1558 +#define AR531X_FLASHCTL2 (AR531X_FLASHCTL + 0x08)
1560 +/* ARM SDRAM Controller -- just enough to determine memory size */
1561 +#define AR531X_MEM_CFG1 (AR531X_SDRAMCTL + 0x04)
1562 +#define MEM_CFG1_AC0 0x00000700 /* bank 0: SDRAM addr check (added) */
1563 +#define MEM_CFG1_AC0_S 8
1564 +#define MEM_CFG1_AC1 0x00007000 /* bank 1: SDRAM addr check (added) */
1565 +#define MEM_CFG1_AC1_S 12
1567 +/* GPIO Address Map */
1568 +#define AR531X_GPIO (AR531X_APBBASE + 0x2000)
1569 +#define AR531X_GPIO_DO (AR531X_GPIO + 0x00) /* output register */
1570 +#define AR531X_GPIO_DI (AR531X_GPIO + 0x04) /* intput register */
1571 +#define AR531X_GPIO_CR (AR531X_GPIO + 0x08) /* control register */
1573 +/* GPIO Control Register bit field definitions */
1574 +#define AR531X_GPIO_CR_M(x) (1 << (x)) /* mask for i/o */
1575 +#define AR531X_GPIO_CR_O(x) (0 << (x)) /* mask for output */
1576 +#define AR531X_GPIO_CR_I(x) (1 << (x)) /* mask for input */
1577 +#define AR531X_GPIO_CR_INT(x) (1 << ((x)+8)) /* mask for interrupt*/
1578 +#define AR531X_GPIO_CR_UART(x) (1 << ((x)+16)) /* uart multiplex */
1579 +#define AR531X_NUM_GPIO 8
1585 +++ b/arch/mips/ar231x/ar5312.c
1588 + * This file is subject to the terms and conditions of the GNU General Public
1589 + * License. See the file "COPYING" in the main directory of this archive
1590 + * for more details.
1592 + * Copyright (C) 2003 Atheros Communications, Inc., All Rights Reserved.
1593 + * Copyright (C) 2006 FON Technology, SL.
1594 + * Copyright (C) 2006 Imre Kaloz <kaloz@openwrt.org>
1595 + * Copyright (C) 2006-2009 Felix Fietkau <nbd@openwrt.org>
1596 + * Copyright (C) 2012 Alexandros C. Couloumbis <alex@ozo.com>
1600 + * Platform devices for Atheros SoCs
1603 +#include <generated/autoconf.h>
1604 +#include <linux/init.h>
1605 +#include <linux/module.h>
1606 +#include <linux/types.h>
1607 +#include <linux/string.h>
1608 +#include <linux/mtd/physmap.h>
1609 +#include <linux/platform_device.h>
1610 +#include <linux/kernel.h>
1611 +#include <linux/reboot.h>
1612 +#include <linux/leds.h>
1613 +#include <linux/gpio.h>
1614 +#include <asm/bootinfo.h>
1615 +#include <asm/reboot.h>
1616 +#include <asm/time.h>
1617 +#include <linux/irq.h>
1618 +#include <linux/io.h>
1620 +#include <ar231x_platform.h>
1621 +#include <ar5312_regs.h>
1622 +#include <ar231x.h>
1623 +#include "devices.h"
1624 +#include "ar5312.h"
1626 +static void ar5312_misc_irq_handler(unsigned irq, struct irq_desc *desc)
1628 + unsigned int ar231x_misc_intrs = ar231x_read_reg(AR531X_ISR) &
1629 + ar231x_read_reg(AR531X_IMR);
1631 + if (ar231x_misc_intrs & AR531X_ISR_TIMER) {
1632 + do_IRQ(AR531X_MISC_IRQ_TIMER);
1633 + (void)ar231x_read_reg(AR531X_TIMER);
1634 + } else if (ar231x_misc_intrs & AR531X_ISR_AHBPROC)
1635 + do_IRQ(AR531X_MISC_IRQ_AHB_PROC);
1636 + else if ((ar231x_misc_intrs & AR531X_ISR_UART0))
1637 + do_IRQ(AR531X_MISC_IRQ_UART0);
1638 + else if (ar231x_misc_intrs & AR531X_ISR_WD)
1639 + do_IRQ(AR531X_MISC_IRQ_WATCHDOG);
1641 + do_IRQ(AR531X_MISC_IRQ_NONE);
1644 +static asmlinkage void
1645 +ar5312_irq_dispatch(void)
1647 + int pending = read_c0_status() & read_c0_cause();
1649 + if (pending & CAUSEF_IP2)
1650 + do_IRQ(AR5312_IRQ_WLAN0_INTRS);
1651 + else if (pending & CAUSEF_IP3)
1652 + do_IRQ(AR5312_IRQ_ENET0_INTRS);
1653 + else if (pending & CAUSEF_IP4)
1654 + do_IRQ(AR5312_IRQ_ENET1_INTRS);
1655 + else if (pending & CAUSEF_IP5)
1656 + do_IRQ(AR5312_IRQ_WLAN1_INTRS);
1657 + else if (pending & CAUSEF_IP6)
1658 + do_IRQ(AR5312_IRQ_MISC_INTRS);
1659 + else if (pending & CAUSEF_IP7)
1660 + do_IRQ(AR531X_IRQ_CPU_CLOCK);
1664 +/* Enable the specified AR531X_MISC_IRQ interrupt */
1666 +ar5312_misc_irq_unmask(struct irq_data *d)
1670 + imr = ar231x_read_reg(AR531X_IMR);
1671 + imr |= (1 << (d->irq - AR531X_MISC_IRQ_BASE - 1));
1672 + ar231x_write_reg(AR531X_IMR, imr);
1675 +/* Disable the specified AR531X_MISC_IRQ interrupt */
1677 +ar5312_misc_irq_mask(struct irq_data *d)
1681 + imr = ar231x_read_reg(AR531X_IMR);
1682 + imr &= ~(1 << (d->irq - AR531X_MISC_IRQ_BASE - 1));
1683 + ar231x_write_reg(AR531X_IMR, imr);
1684 + ar231x_read_reg(AR531X_IMR); /* flush write buffer */
1687 +static struct irq_chip ar5312_misc_irq_chip = {
1688 + .name = "AR5312-MISC",
1689 + .irq_unmask = ar5312_misc_irq_unmask,
1690 + .irq_mask = ar5312_misc_irq_mask,
1694 +static irqreturn_t ar5312_ahb_proc_handler(int cpl, void *dev_id)
1696 + u32 proc1 = ar231x_read_reg(AR531X_PROC1);
1697 + u32 proc_addr = ar231x_read_reg(AR531X_PROCADDR); /* clears error */
1698 + u32 dma1 = ar231x_read_reg(AR531X_DMA1);
1699 + u32 dma_addr = ar231x_read_reg(AR531X_DMAADDR); /* clears error */
1701 + pr_emerg("AHB interrupt: PROCADDR=0x%8.8x PROC1=0x%8.8x "
1702 + "DMAADDR=0x%8.8x DMA1=0x%8.8x\n", proc_addr, proc1, dma_addr,
1705 + machine_restart("AHB error"); /* Catastrophic failure */
1706 + return IRQ_HANDLED;
1710 +static struct irqaction ar5312_ahb_proc_interrupt = {
1711 + .handler = ar5312_ahb_proc_handler,
1712 + .name = "ar5312_ahb_proc_interrupt",
1716 +void __init ar5312_irq_init(void)
1723 + ar231x_irq_dispatch = ar5312_irq_dispatch;
1724 + for (i = 0; i < AR531X_MISC_IRQ_COUNT; i++) {
1725 + int irq = AR531X_MISC_IRQ_BASE + i;
1726 + irq_set_chip_and_handler(irq, &ar5312_misc_irq_chip,
1727 + handle_level_irq);
1729 + setup_irq(AR531X_MISC_IRQ_AHB_PROC, &ar5312_ahb_proc_interrupt);
1730 + irq_set_chained_handler(AR5312_IRQ_MISC_INTRS, ar5312_misc_irq_handler);
1734 + * gpiolib implementations
1737 +ar5312_gpio_get_value(struct gpio_chip *chip, unsigned gpio)
1739 + return (ar231x_read_reg(AR531X_GPIO_DI) >> gpio) & 1;
1743 +ar5312_gpio_set_value(struct gpio_chip *chip, unsigned gpio, int value)
1745 + u32 reg = ar231x_read_reg(AR531X_GPIO_DO);
1746 + reg = value ? reg | (1 << gpio) : reg & ~(1 << gpio);
1747 + ar231x_write_reg(AR531X_GPIO_DO, reg);
1751 +ar5312_gpio_direction_input(struct gpio_chip *chip, unsigned gpio)
1753 + ar231x_mask_reg(AR531X_GPIO_CR, 0, 1 << gpio);
1758 +ar5312_gpio_direction_output(struct gpio_chip *chip, unsigned gpio, int value)
1760 + ar231x_mask_reg(AR531X_GPIO_CR, 1 << gpio, 0);
1761 + ar5312_gpio_set_value(chip, gpio, value);
1765 +static struct gpio_chip ar5312_gpio_chip = {
1766 + .label = "ar5312-gpio",
1767 + .direction_input = ar5312_gpio_direction_input,
1768 + .direction_output = ar5312_gpio_direction_output,
1769 + .set = ar5312_gpio_set_value,
1770 + .get = ar5312_gpio_get_value,
1772 + .ngpio = AR531X_NUM_GPIO, /* 8 */
1775 +/* end of gpiolib */
1777 +static void ar5312_device_reset_set(u32 mask)
1781 + val = ar231x_read_reg(AR531X_RESET);
1782 + ar231x_write_reg(AR531X_RESET, val | mask);
1785 +static void ar5312_device_reset_clear(u32 mask)
1789 + val = ar231x_read_reg(AR531X_RESET);
1790 + ar231x_write_reg(AR531X_RESET, val & ~mask);
1793 +static struct physmap_flash_data ar5312_flash_data = {
1797 +static struct resource ar5312_flash_resource = {
1798 + .start = AR531X_FLASH,
1799 + .end = AR531X_FLASH + 0x800000 - 1,
1800 + .flags = IORESOURCE_MEM,
1803 +static struct ar231x_eth ar5312_eth0_data = {
1804 + .reset_set = ar5312_device_reset_set,
1805 + .reset_clear = ar5312_device_reset_clear,
1806 + .reset_mac = AR531X_RESET_ENET0,
1807 + .reset_phy = AR531X_RESET_EPHY0,
1808 + .phy_base = AR531X_ENET0,
1809 + .config = &ar231x_board,
1812 +static struct ar231x_eth ar5312_eth1_data = {
1813 + .reset_set = ar5312_device_reset_set,
1814 + .reset_clear = ar5312_device_reset_clear,
1815 + .reset_mac = AR531X_RESET_ENET1,
1816 + .reset_phy = AR531X_RESET_EPHY1,
1817 + .phy_base = AR531X_ENET1,
1818 + .config = &ar231x_board,
1821 +static struct platform_device ar5312_physmap_flash = {
1822 + .name = "physmap-flash",
1824 + .dev.platform_data = &ar5312_flash_data,
1825 + .resource = &ar5312_flash_resource,
1826 + .num_resources = 1,
1829 +#ifdef CONFIG_LEDS_GPIO
1830 +static struct gpio_led ar5312_leds[] = {
1831 + { .name = "wlan", .gpio = 0, .active_low = 1, },
1834 +static const struct gpio_led_platform_data ar5312_led_data = {
1835 + .num_leds = ARRAY_SIZE(ar5312_leds),
1836 + .leds = (void *)ar5312_leds,
1839 +static struct platform_device ar5312_gpio_leds = {
1840 + .name = "leds-gpio",
1842 + .dev.platform_data = (void *)&ar5312_led_data,
1847 + * NB: This mapping size is larger than the actual flash size,
1848 + * but this shouldn't be a problem here, because the flash
1849 + * will simply be mapped multiple times.
1851 +static char __init *ar5312_flash_limit(void)
1855 + * Configure flash bank 0.
1856 + * Assume 8M window size. Flash will be aliased if it's smaller
1858 + ctl = FLASHCTL_E |
1861 + (0x01 << FLASHCTL_IDCY_S) |
1862 + (0x07 << FLASHCTL_WST1_S) |
1863 + (0x07 << FLASHCTL_WST2_S) |
1864 + (ar231x_read_reg(AR531X_FLASHCTL0) & FLASHCTL_MW);
1866 + ar231x_write_reg(AR531X_FLASHCTL0, ctl);
1868 + /* Disable other flash banks */
1869 + ar231x_write_reg(AR531X_FLASHCTL1,
1870 + ar231x_read_reg(AR531X_FLASHCTL1) &
1871 + ~(FLASHCTL_E | FLASHCTL_AC));
1873 + ar231x_write_reg(AR531X_FLASHCTL2,
1874 + ar231x_read_reg(AR531X_FLASHCTL2) &
1875 + ~(FLASHCTL_E | FLASHCTL_AC));
1877 + return (char *)KSEG1ADDR(AR531X_FLASH + 0x800000);
1880 +int __init ar5312_init_devices(void)
1882 + struct ar231x_boarddata *config;
1889 + /* Locate board/radio config data */
1890 + ar231x_find_config(ar5312_flash_limit());
1891 + config = ar231x_board.config;
1893 + /* AR2313 has CPU minor rev. 10 */
1894 + if ((current_cpu_data.processor_id & 0xff) == 0x0a)
1895 + ar231x_devtype = DEV_TYPE_AR2313;
1897 + /* AR2312 shares the same Silicon ID as AR5312 */
1898 + else if (config->flags & BD_ISCASPER)
1899 + ar231x_devtype = DEV_TYPE_AR2312;
1901 + /* Everything else is probably AR5312 or compatible */
1903 + ar231x_devtype = DEV_TYPE_AR5312;
1905 + /* fixup flash width */
1906 + fctl = ar231x_read_reg(AR531X_FLASHCTL) & FLASHCTL_MW;
1908 + case FLASHCTL_MWx16:
1909 + ar5312_flash_data.width = 2;
1911 + case FLASHCTL_MWx8:
1913 + ar5312_flash_data.width = 1;
1917 + platform_device_register(&ar5312_physmap_flash);
1919 +#ifdef CONFIG_LEDS_GPIO
1920 + ar5312_leds[0].gpio = config->sys_led_gpio;
1921 + platform_device_register(&ar5312_gpio_leds);
1924 + /* Fix up MAC addresses if necessary */
1925 + if (!memcmp(config->enet0_mac, "\xff\xff\xff\xff\xff\xff", 6))
1926 + memcpy(config->enet0_mac, config->enet1_mac, 6);
1928 + /* If ENET0 and ENET1 have the same mac address,
1929 + * increment the one from ENET1 */
1930 + if (memcmp(config->enet0_mac, config->enet1_mac, 6) == 0) {
1931 + c = config->enet1_mac + 5;
1932 + while ((c >= config->enet1_mac) && !(++(*c)))
1936 + switch (ar231x_devtype) {
1937 + case DEV_TYPE_AR5312:
1938 + ar5312_eth0_data.macaddr = config->enet0_mac;
1939 + ar231x_add_ethernet(0, AR531X_ENET0, AR5312_IRQ_ENET0_INTRS,
1940 + &ar5312_eth0_data);
1942 + ar5312_eth1_data.macaddr = config->enet1_mac;
1943 + ar231x_add_ethernet(1, AR531X_ENET1, AR5312_IRQ_ENET1_INTRS,
1944 + &ar5312_eth1_data);
1946 + if (!ar231x_board.radio)
1949 + if (!(config->flags & BD_WLAN0))
1952 + ar231x_add_wmac(0, AR531X_WLAN0, AR5312_IRQ_WLAN0_INTRS);
1955 + * AR2312/3 ethernet uses the PHY of ENET0, but the MAC
1956 + * of ENET1. Atheros calls it 'twisted' for a reason :)
1958 + case DEV_TYPE_AR2312:
1959 + case DEV_TYPE_AR2313:
1960 + ar5312_eth1_data.phy_base = ar5312_eth0_data.phy_base;
1961 + ar5312_eth1_data.reset_phy = ar5312_eth0_data.reset_phy;
1962 + ar5312_eth1_data.macaddr = config->enet0_mac;
1963 + ar231x_add_ethernet(0, AR531X_ENET1,
1964 + AR5312_IRQ_ENET1_INTRS, &ar5312_eth1_data);
1966 + if (!ar231x_board.radio)
1973 + if (config->flags & BD_WLAN1)
1974 + ar231x_add_wmac(1, AR531X_WLAN1, AR5312_IRQ_WLAN1_INTRS);
1980 +static void ar5312_restart(char *command)
1982 + /* reset the system */
1983 + local_irq_disable();
1985 + ar231x_write_reg(AR531X_RESET, AR531X_RESET_SYSTEM);
1990 + * This table is indexed by bits 5..4 of the CLOCKCTL1 register
1991 + * to determine the predevisor value.
1993 +static int clockctl1_predivide_table[4] __initdata = { 1, 2, 4, 5 };
1997 +ar5312_cpu_frequency(void)
1999 + unsigned int scratch;
2000 + unsigned int predivide_mask, predivide_shift;
2001 + unsigned int multiplier_mask, multiplier_shift;
2002 + unsigned int clock_ctl1, predivide_select, predivisor, multiplier;
2003 + unsigned int doubler_mask;
2006 + /* Trust the bootrom's idea of cpu frequency. */
2007 + scratch = ar231x_read_reg(AR5312_SCRATCH);
2011 + devid = ar231x_read_reg(AR531X_REV);
2012 + devid &= AR531X_REV_MAJ;
2013 + devid >>= AR531X_REV_MAJ_S;
2014 + if (devid == AR531X_REV_MAJ_AR2313) {
2015 + predivide_mask = AR2313_CLOCKCTL1_PREDIVIDE_MASK;
2016 + predivide_shift = AR2313_CLOCKCTL1_PREDIVIDE_SHIFT;
2017 + multiplier_mask = AR2313_CLOCKCTL1_MULTIPLIER_MASK;
2018 + multiplier_shift = AR2313_CLOCKCTL1_MULTIPLIER_SHIFT;
2019 + doubler_mask = AR2313_CLOCKCTL1_DOUBLER_MASK;
2020 + } else { /* AR5312 and AR2312 */
2021 + predivide_mask = AR5312_CLOCKCTL1_PREDIVIDE_MASK;
2022 + predivide_shift = AR5312_CLOCKCTL1_PREDIVIDE_SHIFT;
2023 + multiplier_mask = AR5312_CLOCKCTL1_MULTIPLIER_MASK;
2024 + multiplier_shift = AR5312_CLOCKCTL1_MULTIPLIER_SHIFT;
2025 + doubler_mask = AR5312_CLOCKCTL1_DOUBLER_MASK;
2029 + * Clocking is derived from a fixed 40MHz input clock.
2031 + * cpu_freq = input_clock * MULT (where MULT is PLL multiplier)
2032 + * sys_freq = cpu_freq / 4 (used for APB clock, serial,
2033 + * flash, Timer, Watchdog Timer)
2035 + * cnt_freq = cpu_freq / 2 (use for CPU count/compare)
2037 + * So, for example, with a PLL multiplier of 5, we have
2039 + * cpu_freq = 200MHz
2040 + * sys_freq = 50MHz
2041 + * cnt_freq = 100MHz
2043 + * We compute the CPU frequency, based on PLL settings.
2046 + clock_ctl1 = ar231x_read_reg(AR5312_CLOCKCTL1);
2047 + predivide_select = (clock_ctl1 & predivide_mask) >> predivide_shift;
2048 + predivisor = clockctl1_predivide_table[predivide_select];
2049 + multiplier = (clock_ctl1 & multiplier_mask) >> multiplier_shift;
2051 + if (clock_ctl1 & doubler_mask)
2052 + multiplier = multiplier << 1;
2054 + return (40000000 / predivisor) * multiplier;
2058 +ar5312_sys_frequency(void)
2060 + return ar5312_cpu_frequency() / 4;
2064 +ar5312_time_init(void)
2069 + mips_hpt_frequency = ar5312_cpu_frequency() / 2;
2073 +ar5312_gpio_init(void)
2076 + ret = gpiochip_add(&ar5312_gpio_chip);
2078 + pr_err("%s: failed to add gpiochip\n", ar5312_gpio_chip.label);
2081 + pr_info("%s: registered %d GPIOs\n", ar5312_gpio_chip.label,
2082 + ar5312_gpio_chip.ngpio);
2087 +ar5312_prom_init(void)
2089 + u32 memsize, memcfg, bank0AC, bank1AC;
2095 + /* Detect memory size */
2096 + memcfg = ar231x_read_reg(AR531X_MEM_CFG1);
2097 + bank0AC = (memcfg & MEM_CFG1_AC0) >> MEM_CFG1_AC0_S;
2098 + bank1AC = (memcfg & MEM_CFG1_AC1) >> MEM_CFG1_AC1_S;
2099 + memsize = (bank0AC ? (1 << (bank0AC+1)) : 0) +
2100 + (bank1AC ? (1 << (bank1AC+1)) : 0);
2102 + add_memory_region(0, memsize, BOOT_MEM_RAM);
2104 + devid = ar231x_read_reg(AR531X_REV);
2105 + devid >>= AR531X_REV_WMAC_MIN_S;
2106 + devid &= AR531X_REV_CHIP;
2107 + ar231x_board.devid = (u16) devid;
2108 + ar5312_gpio_init();
2112 +ar5312_plat_setup(void)
2117 + /* Clear any lingering AHB errors */
2118 + ar231x_read_reg(AR531X_PROCADDR);
2119 + ar231x_read_reg(AR531X_DMAADDR);
2120 + ar231x_write_reg(AR531X_WD_CTRL, AR531X_WD_CTRL_IGNORE_EXPIRATION);
2122 + _machine_restart = ar5312_restart;
2123 + ar231x_serial_setup(KSEG1ADDR(AR531X_UART0), AR531X_MISC_IRQ_UART0,
2124 + ar5312_sys_frequency());
2128 +++ b/arch/mips/ar231x/ar2315.c
2131 + * This file is subject to the terms and conditions of the GNU General Public
2132 + * License. See the file "COPYING" in the main directory of this archive
2133 + * for more details.
2135 + * Copyright (C) 2003 Atheros Communications, Inc., All Rights Reserved.
2136 + * Copyright (C) 2006 FON Technology, SL.
2137 + * Copyright (C) 2006 Imre Kaloz <kaloz@openwrt.org>
2138 + * Copyright (C) 2006 Felix Fietkau <nbd@openwrt.org>
2139 + * Copyright (C) 2012 Alexandros C. Couloumbis <alex@ozo.com>
2143 + * Platform devices for Atheros SoCs
2146 +#include <generated/autoconf.h>
2147 +#include <linux/init.h>
2148 +#include <linux/module.h>
2149 +#include <linux/types.h>
2150 +#include <linux/string.h>
2151 +#include <linux/platform_device.h>
2152 +#include <linux/kernel.h>
2153 +#include <linux/reboot.h>
2154 +#include <linux/delay.h>
2155 +#include <linux/leds.h>
2156 +#include <linux/gpio.h>
2157 +#include <asm/bootinfo.h>
2158 +#include <asm/reboot.h>
2159 +#include <asm/time.h>
2160 +#include <linux/irq.h>
2161 +#include <linux/io.h>
2163 +#include <ar231x_platform.h>
2164 +#include <ar2315_regs.h>
2165 +#include <ar231x.h>
2166 +#include "devices.h"
2167 +#include "ar2315.h"
2169 +static u32 gpiointmask, gpiointval;
2171 +static void ar2315_gpio_irq_handler(unsigned irq, struct irq_desc *desc)
2176 + /* only do one gpio interrupt at a time */
2177 + pend = (ar231x_read_reg(AR2315_GPIO_DI) ^ gpiointval) & gpiointmask;
2180 + bit = fls(pend) - 1;
2181 + pend &= ~(1 << bit);
2182 + gpiointval ^= (1 << bit);
2186 + ar231x_write_reg(AR2315_ISR, AR2315_ISR_GPIO);
2188 + /* Enable interrupt with edge detection */
2189 + if ((ar231x_read_reg(AR2315_GPIO_DIR) & AR2315_GPIO_DIR_M(bit)) !=
2190 + AR2315_GPIO_DIR_I(bit))
2194 + do_IRQ(AR531X_GPIO_IRQ_BASE + bit);
2197 +static void ar2315_misc_irq_handler(unsigned irq, struct irq_desc *desc)
2199 + unsigned int misc_intr = ar231x_read_reg(AR2315_ISR) &
2200 + ar231x_read_reg(AR2315_IMR);
2202 + if (misc_intr & AR2315_ISR_SPI)
2203 + do_IRQ(AR2315_MISC_IRQ_SPI);
2204 + else if (misc_intr & AR2315_ISR_TIMER)
2205 + do_IRQ(AR2315_MISC_IRQ_TIMER);
2206 + else if (misc_intr & AR2315_ISR_AHB)
2207 + do_IRQ(AR2315_MISC_IRQ_AHB);
2208 + else if (misc_intr & AR2315_ISR_GPIO)
2209 + do_IRQ(AR2315_MISC_IRQ_GPIO);
2210 + else if (misc_intr & AR2315_ISR_UART0)
2211 + do_IRQ(AR2315_MISC_IRQ_UART0);
2212 + else if (misc_intr & AR2315_ISR_WD) {
2213 + ar231x_write_reg(AR2315_ISR, AR2315_ISR_WD);
2214 + do_IRQ(AR2315_MISC_IRQ_WATCHDOG);
2216 + do_IRQ(AR2315_MISC_IRQ_NONE);
2220 + * Called when an interrupt is received, this function
2221 + * determines exactly which interrupt it was, and it
2222 + * invokes the appropriate handler.
2224 + * Implicitly, we also define interrupt priority by
2225 + * choosing which to dispatch first.
2227 +static asmlinkage void
2228 +ar2315_irq_dispatch(void)
2230 + int pending = read_c0_status() & read_c0_cause();
2232 + if (pending & CAUSEF_IP3)
2233 + do_IRQ(AR2315_IRQ_WLAN0_INTRS);
2234 + else if (pending & CAUSEF_IP4)
2235 + do_IRQ(AR2315_IRQ_ENET0_INTRS);
2236 + else if (pending & CAUSEF_IP2)
2237 + do_IRQ(AR2315_IRQ_MISC_INTRS);
2238 + else if (pending & CAUSEF_IP7)
2239 + do_IRQ(AR531X_IRQ_CPU_CLOCK);
2242 +static void ar2315_set_gpiointmask(int gpio, int level)
2246 + reg = ar231x_read_reg(AR2315_GPIO_INT);
2247 + reg &= ~(AR2315_GPIO_INT_M | AR2315_GPIO_INT_LVL_M);
2248 + reg |= gpio | AR2315_GPIO_INT_LVL(level);
2249 + ar231x_write_reg(AR2315_GPIO_INT, reg);
2252 +static void ar2315_gpio_irq_unmask(struct irq_data *d)
2254 + unsigned int gpio = d->irq - AR531X_GPIO_IRQ_BASE;
2256 + /* Enable interrupt with edge detection */
2257 + if ((ar231x_read_reg(AR2315_GPIO_DIR) & AR2315_GPIO_DIR_M(gpio)) !=
2258 + AR2315_GPIO_DIR_I(gpio))
2261 + gpiointmask |= (1 << gpio);
2262 + ar2315_set_gpiointmask(gpio, 3);
2265 +static void ar2315_gpio_irq_mask(struct irq_data *d)
2267 + unsigned int gpio = d->irq - AR531X_GPIO_IRQ_BASE;
2269 + /* Disable interrupt */
2270 + gpiointmask &= ~(1 << gpio);
2271 + ar2315_set_gpiointmask(gpio, 0);
2274 +static struct irq_chip ar2315_gpio_irq_chip = {
2275 + .name = "AR2315-GPIO",
2276 + .irq_unmask = ar2315_gpio_irq_unmask,
2277 + .irq_mask = ar2315_gpio_irq_mask,
2281 +ar2315_misc_irq_unmask(struct irq_data *d)
2285 + imr = ar231x_read_reg(AR2315_IMR);
2286 + imr |= 1 << (d->irq - AR531X_MISC_IRQ_BASE - 1);
2287 + ar231x_write_reg(AR2315_IMR, imr);
2291 +ar2315_misc_irq_mask(struct irq_data *d)
2295 + imr = ar231x_read_reg(AR2315_IMR);
2296 + imr &= ~(1 << (d->irq - AR531X_MISC_IRQ_BASE - 1));
2297 + ar231x_write_reg(AR2315_IMR, imr);
2300 +static struct irq_chip ar2315_misc_irq_chip = {
2301 + .name = "AR2315-MISC",
2302 + .irq_unmask = ar2315_misc_irq_unmask,
2303 + .irq_mask = ar2315_misc_irq_mask,
2306 +static irqreturn_t ar2315_ahb_proc_handler(int cpl, void *dev_id)
2308 + ar231x_write_reg(AR2315_AHB_ERR0, AHB_ERROR_DET);
2309 + ar231x_read_reg(AR2315_AHB_ERR1);
2311 + pr_emerg("AHB fatal error\n");
2312 + machine_restart("AHB error"); /* Catastrophic failure */
2314 + return IRQ_HANDLED;
2317 +static struct irqaction ar2315_ahb_proc_interrupt = {
2318 + .handler = ar2315_ahb_proc_handler,
2319 + .name = "ar2315_ahb_proc_interrupt",
2323 +ar2315_irq_init(void)
2330 + ar231x_irq_dispatch = ar2315_irq_dispatch;
2331 + gpiointval = ar231x_read_reg(AR2315_GPIO_DI);
2332 + for (i = 0; i < AR2315_MISC_IRQ_COUNT; i++) {
2333 + int irq = AR531X_MISC_IRQ_BASE + i;
2334 + irq_set_chip_and_handler(irq, &ar2315_misc_irq_chip,
2335 + handle_level_irq);
2337 + for (i = 0; i < AR2315_NUM_GPIO; i++) {
2338 + int irq = AR531X_GPIO_IRQ_BASE + i;
2339 + irq_set_chip_and_handler(irq, &ar2315_gpio_irq_chip,
2340 + handle_level_irq);
2342 + irq_set_chained_handler(AR2315_MISC_IRQ_GPIO, ar2315_gpio_irq_handler);
2343 + setup_irq(AR2315_MISC_IRQ_AHB, &ar2315_ahb_proc_interrupt);
2344 + irq_set_chained_handler(AR2315_IRQ_MISC_INTRS, ar2315_misc_irq_handler);
2348 + * gpiolib implementation
2351 +ar2315_gpio_get_value(struct gpio_chip *chip, unsigned gpio)
2353 + return (ar231x_read_reg(AR2315_GPIO_DI) >> gpio) & 1;
2357 +ar2315_gpio_set_value(struct gpio_chip *chip, unsigned gpio, int value)
2359 + u32 reg = ar231x_read_reg(AR2315_GPIO_DO);
2360 + reg = value ? reg | (1 << gpio) : reg & ~(1 << gpio);
2361 + ar231x_write_reg(AR2315_GPIO_DO, reg);
2365 +ar2315_gpio_direction_input(struct gpio_chip *chip, unsigned gpio)
2367 + ar231x_mask_reg(AR2315_GPIO_DIR, 1 << gpio, 0);
2372 +ar2315_gpio_direction_output(struct gpio_chip *chip, unsigned gpio, int value)
2374 + ar231x_mask_reg(AR2315_GPIO_DIR, 0, 1 << gpio);
2375 + ar2315_gpio_set_value(chip, gpio, value);
2379 +static struct gpio_chip ar2315_gpio_chip = {
2380 + .label = "ar2315-gpio",
2381 + .direction_input = ar2315_gpio_direction_input,
2382 + .direction_output = ar2315_gpio_direction_output,
2383 + .set = ar2315_gpio_set_value,
2384 + .get = ar2315_gpio_get_value,
2386 + .ngpio = AR2315_NUM_GPIO, /* 22 */
2389 +/* end of gpiolib */
2391 +static void ar2315_device_reset_set(u32 mask)
2395 + val = ar231x_read_reg(AR2315_RESET);
2396 + ar231x_write_reg(AR2315_RESET, val | mask);
2399 +static void ar2315_device_reset_clear(u32 mask)
2403 + val = ar231x_read_reg(AR2315_RESET);
2404 + ar231x_write_reg(AR2315_RESET, val & ~mask);
2407 +static struct ar231x_eth ar2315_eth_data = {
2408 + .reset_set = ar2315_device_reset_set,
2409 + .reset_clear = ar2315_device_reset_clear,
2410 + .reset_mac = AR2315_RESET_ENET0,
2411 + .reset_phy = AR2315_RESET_EPHY0,
2412 + .phy_base = AR2315_ENET0,
2413 + .config = &ar231x_board,
2416 +static struct resource ar2315_spiflash_res[] = {
2418 + .name = "spiflash_read",
2419 + .flags = IORESOURCE_MEM,
2420 + .start = AR2315_SPI_READ,
2421 + .end = AR2315_SPI_READ + 0x1000000 - 1,
2424 + .name = "spiflash_mmr",
2425 + .flags = IORESOURCE_MEM,
2426 + .start = AR2315_SPI_MMR,
2427 + .end = AR2315_SPI_MMR + 12 - 1,
2431 +static struct platform_device ar2315_spiflash = {
2433 + .name = "ar2315-spiflash",
2434 + .resource = ar2315_spiflash_res,
2435 + .num_resources = ARRAY_SIZE(ar2315_spiflash_res)
2438 +static struct resource ar2315_wdt_res[] = {
2440 + .flags = IORESOURCE_MEM,
2441 + .start = AR2315_WD,
2442 + .end = AR2315_WD + 8 - 1,
2445 + .flags = IORESOURCE_IRQ,
2446 + .start = AR2315_MISC_IRQ_WATCHDOG,
2447 + .end = AR2315_MISC_IRQ_WATCHDOG,
2451 +static struct platform_device ar2315_wdt = {
2453 + .name = "ar2315-wdt",
2454 + .resource = ar2315_wdt_res,
2455 + .num_resources = ARRAY_SIZE(ar2315_wdt_res)
2459 + * NB: We use mapping size that is larger than the actual flash size,
2460 + * but this shouldn't be a problem here, because the flash will simply
2461 + * be mapped multiple times.
2463 +static u8 __init *ar2315_flash_limit(void)
2465 + return (u8 *)KSEG1ADDR(ar2315_spiflash_res[0].end + 1);
2468 +#ifdef CONFIG_LEDS_GPIO
2469 +static struct gpio_led ar2315_leds[6];
2470 +static struct gpio_led_platform_data ar2315_led_data = {
2471 + .leds = (void *)ar2315_leds,
2474 +static struct platform_device ar2315_gpio_leds = {
2475 + .name = "leds-gpio",
2478 + .platform_data = (void *)&ar2315_led_data,
2483 +ar2315_init_gpio_leds(void)
2485 + static char led_names[6][6];
2488 + ar2315_led_data.num_leds = 0;
2489 + for (i = 1; i < 8; i++) {
2490 + if ((i == AR2315_RESET_GPIO) ||
2491 + (i == ar231x_board.config->reset_config_gpio))
2494 + if (i == ar231x_board.config->sys_led_gpio)
2495 + strcpy(led_names[led], "wlan");
2497 + sprintf(led_names[led], "gpio%d", i);
2499 + ar2315_leds[led].name = led_names[led];
2500 + ar2315_leds[led].gpio = i;
2501 + ar2315_leds[led].active_low = 0;
2504 + ar2315_led_data.num_leds = led;
2505 + platform_device_register(&ar2315_gpio_leds);
2508 +static inline void ar2315_init_gpio_leds(void)
2514 +ar2315_init_devices(void)
2519 + /* Find board configuration */
2520 + ar231x_find_config(ar2315_flash_limit());
2521 + ar2315_eth_data.macaddr = ar231x_board.config->enet0_mac;
2523 + ar2315_init_gpio_leds();
2524 + platform_device_register(&ar2315_wdt);
2525 + platform_device_register(&ar2315_spiflash);
2526 + ar231x_add_ethernet(0, AR2315_ENET0, AR2315_IRQ_ENET0_INTRS,
2527 + &ar2315_eth_data);
2528 + ar231x_add_wmac(0, AR2315_WLAN0, AR2315_IRQ_WLAN0_INTRS);
2534 +ar2315_restart(char *command)
2536 + void (*mips_reset_vec)(void) = (void *)0xbfc00000;
2538 + local_irq_disable();
2540 + /* try reset the system via reset control */
2541 + ar231x_write_reg(AR2315_COLD_RESET, AR2317_RESET_SYSTEM);
2543 + /* Cold reset does not work on the AR2315/6, use the GPIO reset bits
2544 + * a workaround. Give it some time to attempt a gpio based hardware
2545 + * reset (atheros reference design workaround) */
2546 + gpio_request_one(AR2315_RESET_GPIO, GPIOF_OUT_INIT_LOW, "Reset");
2549 + /* Some boards (e.g. Senao EOC-2610) don't implement the reset logic
2550 + * workaround. Attempt to jump to the mips reset location -
2551 + * the boot loader itself might be able to recover the system */
2557 + * This table is indexed by bits 5..4 of the CLOCKCTL1 register
2558 + * to determine the predevisor value.
2560 +static int clockctl1_predivide_table[4] __initdata = { 1, 2, 4, 5 };
2561 +static int pllc_divide_table[5] __initdata = { 2, 3, 4, 6, 3 };
2563 +static unsigned int __init
2564 +ar2315_sys_clk(unsigned int clock_ctl)
2566 + unsigned int pllc_ctrl, cpu_div;
2567 + unsigned int pllc_out, refdiv, fdiv, divby2;
2568 + unsigned int clk_div;
2570 + pllc_ctrl = ar231x_read_reg(AR2315_PLLC_CTL);
2571 + refdiv = (pllc_ctrl & PLLC_REF_DIV_M) >> PLLC_REF_DIV_S;
2572 + refdiv = clockctl1_predivide_table[refdiv];
2573 + fdiv = (pllc_ctrl & PLLC_FDBACK_DIV_M) >> PLLC_FDBACK_DIV_S;
2574 + divby2 = (pllc_ctrl & PLLC_ADD_FDBACK_DIV_M) >> PLLC_ADD_FDBACK_DIV_S;
2576 + pllc_out = (40000000/refdiv)*(2*divby2)*fdiv;
2578 + /* clkm input selected */
2579 + switch (clock_ctl & CPUCLK_CLK_SEL_M) {
2582 + clk_div = pllc_divide_table[(pllc_ctrl & PLLC_CLKM_DIV_M) >>
2586 + clk_div = pllc_divide_table[(pllc_ctrl & PLLC_CLKC_DIV_M) >>
2590 + pllc_out = 40000000;
2595 + cpu_div = (clock_ctl & CPUCLK_CLK_DIV_M) >> CPUCLK_CLK_DIV_S;
2596 + cpu_div = cpu_div * 2 ?: 1;
2598 + return pllc_out / (clk_div * cpu_div);
2601 +static inline unsigned int
2602 +ar2315_cpu_frequency(void)
2604 + return ar2315_sys_clk(ar231x_read_reg(AR2315_CPUCLK));
2607 +static inline unsigned int
2608 +ar2315_apb_frequency(void)
2610 + return ar2315_sys_clk(ar231x_read_reg(AR2315_AMBACLK));
2614 +ar2315_time_init(void)
2619 + mips_hpt_frequency = ar2315_cpu_frequency() / 2;
2623 +ar2315_gpio_init(void)
2626 + ret = gpiochip_add(&ar2315_gpio_chip);
2628 + pr_err("%s: failed to add gpiochip\n", ar2315_gpio_chip.label);
2631 + pr_info("%s: registered %d GPIOs\n", ar2315_gpio_chip.label,
2632 + ar2315_gpio_chip.ngpio);
2639 +ar2315_prom_init(void)
2641 + u32 memsize, memcfg, devid;
2646 + memcfg = ar231x_read_reg(AR2315_MEM_CFG);
2647 + memsize = 1 + ((memcfg & SDRAM_DATA_WIDTH_M) >> SDRAM_DATA_WIDTH_S);
2648 + memsize <<= 1 + ((memcfg & SDRAM_COL_WIDTH_M) >> SDRAM_COL_WIDTH_S);
2649 + memsize <<= 1 + ((memcfg & SDRAM_ROW_WIDTH_M) >> SDRAM_ROW_WIDTH_S);
2651 + add_memory_region(0, memsize, BOOT_MEM_RAM);
2653 + /* Detect the hardware based on the device ID */
2654 + devid = ar231x_read_reg(AR2315_SREV) & AR2315_REV_CHIP;
2658 + ar231x_devtype = DEV_TYPE_AR2317;
2661 + ar231x_devtype = DEV_TYPE_AR2315;
2664 + ar2315_gpio_init();
2665 + ar231x_board.devid = devid;
2669 +ar2315_plat_setup(void)
2676 + /* Clear any lingering AHB errors */
2677 + config = read_c0_config();
2678 + write_c0_config(config & ~0x3);
2679 + ar231x_write_reg(AR2315_AHB_ERR0, AHB_ERROR_DET);
2680 + ar231x_read_reg(AR2315_AHB_ERR1);
2681 + ar231x_write_reg(AR2315_WDC, AR2315_WDC_IGNORE_EXPIRATION);
2683 + _machine_restart = ar2315_restart;
2684 + ar231x_serial_setup(KSEG1ADDR(AR2315_UART0), AR2315_MISC_IRQ_UART0,
2685 + ar2315_apb_frequency());
2688 +++ b/arch/mips/ar231x/ar2315.h
2693 +#ifdef CONFIG_ATHEROS_AR2315
2695 +extern void ar2315_irq_init(void);
2696 +extern int ar2315_init_devices(void);
2697 +extern void ar2315_prom_init(void);
2698 +extern void ar2315_plat_setup(void);
2699 +extern void ar2315_time_init(void);
2703 +static inline void ar2315_irq_init(void)
2707 +static inline int ar2315_init_devices(void)
2712 +static inline void ar2315_prom_init(void)
2716 +static inline void ar2315_plat_setup(void)
2720 +static inline void ar2315_time_init(void)
2728 +++ b/arch/mips/ar231x/ar5312.h
2733 +#ifdef CONFIG_ATHEROS_AR5312
2735 +extern void ar5312_irq_init(void);
2736 +extern int ar5312_init_devices(void);
2737 +extern void ar5312_prom_init(void);
2738 +extern void ar5312_plat_setup(void);
2739 +extern void ar5312_time_init(void);
2740 +extern void ar5312_time_init(void);
2744 +static inline void ar5312_irq_init(void)
2748 +static inline int ar5312_init_devices(void)
2753 +static inline void ar5312_prom_init(void)
2757 +static inline void ar5312_plat_setup(void)
2761 +static inline void ar5312_time_init(void)
2769 +++ b/arch/mips/include/asm/mach-ar231x/ar231x.h
2774 +#include <linux/types.h>
2775 +#include <linux/io.h>
2777 +#define AR531X_MISC_IRQ_BASE 0x20
2778 +#define AR531X_GPIO_IRQ_BASE 0x30
2780 +/* Software's idea of interrupts handled by "CPU Interrupt Controller" */
2781 +#define AR531X_IRQ_NONE (MIPS_CPU_IRQ_BASE+0)
2782 +#define AR531X_IRQ_CPU_CLOCK (MIPS_CPU_IRQ_BASE+7) /* C0_CAUSE: 0x8000 */
2784 +/* GPIO Interrupts, share ARXXXX_MISC_IRQ_GPIO */
2785 +#define AR531X_GPIO_IRQ_NONE (AR531X_GPIO_IRQ_BASE+0)
2786 +#define AR531X_GPIO_IRQ(n) (AR531X_GPIO_IRQ_BASE+n)
2789 +ar231x_read_reg(u32 reg)
2791 + return __raw_readl((void __iomem *)KSEG1ADDR(reg));
2795 +ar231x_write_reg(u32 reg, u32 val)
2797 + __raw_writel(val, (void __iomem *)KSEG1ADDR(reg));
2801 +ar231x_mask_reg(u32 reg, u32 mask, u32 val)
2805 + ret = ar231x_read_reg(reg);
2808 + ar231x_write_reg(reg, ret);
2815 +++ b/arch/mips/ar231x/devices.h
2817 +#ifndef __AR231X_DEVICES_H
2818 +#define __AR231X_DEVICES_H
2821 + /* handled by ar5312.c */
2826 + /* handled by ar2315.c */
2834 +extern int ar231x_devtype;
2835 +extern struct ar231x_board_config ar231x_board;
2836 +extern asmlinkage void (*ar231x_irq_dispatch)(void);
2838 +extern int ar231x_find_config(u8 *flash_limit);
2839 +extern void ar231x_serial_setup(u32 mapbase, int irq, unsigned int uartclk);
2840 +extern int ar231x_add_wmac(int nr, u32 base, int irq);
2841 +extern int ar231x_add_ethernet(int nr, u32 base, int irq, void *pdata);
2843 +static inline bool is_2315(void)
2845 + return (current_cpu_data.cputype == CPU_4KEC);
2848 +static inline bool is_5312(void)
2850 + return !is_2315();
2855 +++ b/arch/mips/ar231x/devices.c
2857 +#include <linux/kernel.h>
2858 +#include <linux/init.h>
2859 +#include <linux/serial.h>
2860 +#include <linux/serial_core.h>
2861 +#include <linux/serial_8250.h>
2862 +#include <linux/platform_device.h>
2863 +#include <ar231x_platform.h>
2864 +#include <ar231x.h>
2865 +#include "devices.h"
2866 +#include "ar5312.h"
2867 +#include "ar2315.h"
2869 +struct ar231x_board_config ar231x_board;
2870 +int ar231x_devtype = DEV_TYPE_UNKNOWN;
2872 +static struct resource ar231x_eth0_res[] = {
2874 + .name = "eth0_membase",
2875 + .flags = IORESOURCE_MEM,
2878 + .name = "eth0_irq",
2879 + .flags = IORESOURCE_IRQ,
2883 +static struct resource ar231x_eth1_res[] = {
2885 + .name = "eth1_membase",
2886 + .flags = IORESOURCE_MEM,
2889 + .name = "eth1_irq",
2890 + .flags = IORESOURCE_IRQ,
2894 +static struct platform_device ar231x_eth[] = {
2897 + .name = "ar231x-eth",
2898 + .resource = ar231x_eth0_res,
2899 + .num_resources = ARRAY_SIZE(ar231x_eth0_res)
2903 + .name = "ar231x-eth",
2904 + .resource = ar231x_eth1_res,
2905 + .num_resources = ARRAY_SIZE(ar231x_eth1_res)
2909 +static struct resource ar231x_wmac0_res[] = {
2911 + .name = "wmac0_membase",
2912 + .flags = IORESOURCE_MEM,
2915 + .name = "wmac0_irq",
2916 + .flags = IORESOURCE_IRQ,
2920 +static struct resource ar231x_wmac1_res[] = {
2922 + .name = "wmac1_membase",
2923 + .flags = IORESOURCE_MEM,
2926 + .name = "wmac1_irq",
2927 + .flags = IORESOURCE_IRQ,
2932 +static struct platform_device ar231x_wmac[] = {
2935 + .name = "ar231x-wmac",
2936 + .resource = ar231x_wmac0_res,
2937 + .num_resources = ARRAY_SIZE(ar231x_wmac0_res),
2938 + .dev.platform_data = &ar231x_board,
2942 + .name = "ar231x-wmac",
2943 + .resource = ar231x_wmac1_res,
2944 + .num_resources = ARRAY_SIZE(ar231x_wmac1_res),
2945 + .dev.platform_data = &ar231x_board,
2949 +static const char * const devtype_strings[] = {
2950 + [DEV_TYPE_AR5312] = "Atheros AR5312",
2951 + [DEV_TYPE_AR2312] = "Atheros AR2312",
2952 + [DEV_TYPE_AR2313] = "Atheros AR2313",
2953 + [DEV_TYPE_AR2315] = "Atheros AR2315",
2954 + [DEV_TYPE_AR2316] = "Atheros AR2316",
2955 + [DEV_TYPE_AR2317] = "Atheros AR2317",
2956 + [DEV_TYPE_UNKNOWN] = "Atheros (unknown)",
2959 +const char *get_system_type(void)
2961 + if ((ar231x_devtype >= ARRAY_SIZE(devtype_strings)) ||
2962 + !devtype_strings[ar231x_devtype])
2963 + return devtype_strings[DEV_TYPE_UNKNOWN];
2964 + return devtype_strings[ar231x_devtype];
2969 +ar231x_add_ethernet(int nr, u32 base, int irq, void *pdata)
2971 + struct resource *res;
2973 + ar231x_eth[nr].dev.platform_data = pdata;
2974 + res = &ar231x_eth[nr].resource[0];
2975 + res->start = base;
2976 + res->end = base + 0x2000 - 1;
2980 + return platform_device_register(&ar231x_eth[nr]);
2984 +ar231x_serial_setup(u32 mapbase, int irq, unsigned int uartclk)
2986 + struct uart_port s;
2988 + memset(&s, 0, sizeof(s));
2990 + s.flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST;
2991 + s.iotype = UPIO_MEM;
2994 + s.mapbase = mapbase;
2995 + s.uartclk = uartclk;
2996 + s.membase = (void __iomem *)s.mapbase;
2998 + early_serial_setup(&s);
3002 +ar231x_add_wmac(int nr, u32 base, int irq)
3004 + struct resource *res;
3006 + ar231x_wmac[nr].dev.platform_data = &ar231x_board;
3007 + res = &ar231x_wmac[nr].resource[0];
3008 + res->start = base;
3009 + res->end = base + 0x10000 - 1;
3013 + return platform_device_register(&ar231x_wmac[nr]);
3016 +static int __init ar231x_register_devices(void)
3018 + ar5312_init_devices();
3019 + ar2315_init_devices();
3024 +device_initcall(ar231x_register_devices);