diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2012-01-14 16:05:21 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-01-14 16:05:21 -0500 |
commit | 4964e0664c80680fa6b28ef91381c076a5b25c2c (patch) | |
tree | 62099c5aaeee7274bcc66bcfba35d479affa97cf /arch/mips/ath79/dev-wmac.c | |
parent | 0a80939b3e6af4b0dc93bf88ec02fd7e90a16f1b (diff) | |
parent | 7bf6612e8a9d6a0b3b82e8e2611942be1258b307 (diff) |
Merge branch 'upstream' of git://git.linux-mips.org/pub/scm/ralf/upstream-linus
* 'upstream' of git://git.linux-mips.org/pub/scm/ralf/upstream-linus: (119 commits)
MIPS: Delete unused function add_temporary_entry.
MIPS: Set default pci cache line size.
MIPS: Flush huge TLB
MIPS: Octeon: Remove SYS_SUPPORTS_HIGHMEM.
MIPS: Octeon: Add support for OCTEON II PCIe
MIPS: Octeon: Update PCI Latency timer and enable more error reporting.
MIPS: Alchemy: Update cpu-feature-overrides
MIPS: Alchemy: db1200: Improve PB1200 detection.
MIPS: Alchemy: merge Au1000 and Au1300-style IRQ controller code.
MIPS: Alchemy: chain IRQ controllers to MIPS IRQ controller
MIPS: Alchemy: irq: register pm at irq init time
MIPS: Alchemy: Touchscreen support on DB1100
MIPS: Alchemy: Hook up IrDA on DB1000/DB1100
net/irda: convert au1k_ir to platform driver.
MIPS: Alchemy: remove unused board headers
MTD: nand: make au1550nd.c a platform_driver
MIPS: Netlogic: Mark Netlogic chips as SMT capable
MIPS: Netlogic: Add support for XLP 3XX cores
MIPS: Netlogic: Merge some of XLR/XLP wakup code
MIPS: Netlogic: Add default XLP config.
...
Fix up trivial conflicts in arch/mips/kernel/{perf_event_mipsxx.c,
traps.c} and drivers/tty/serial/Makefile
Diffstat (limited to 'arch/mips/ath79/dev-wmac.c')
-rw-r--r-- | arch/mips/ath79/dev-wmac.c | 109 |
1 files changed, 109 insertions, 0 deletions
diff --git a/arch/mips/ath79/dev-wmac.c b/arch/mips/ath79/dev-wmac.c new file mode 100644 index 000000000000..24f546985b69 --- /dev/null +++ b/arch/mips/ath79/dev-wmac.c | |||
@@ -0,0 +1,109 @@ | |||
1 | /* | ||
2 | * Atheros AR913X/AR933X SoC built-in WMAC device support | ||
3 | * | ||
4 | * Copyright (C) 2008-2011 Gabor Juhos <juhosg@openwrt.org> | ||
5 | * Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org> | ||
6 | * | ||
7 | * This program is free software; you can redistribute it and/or modify it | ||
8 | * under the terms of the GNU General Public License version 2 as published | ||
9 | * by the Free Software Foundation. | ||
10 | */ | ||
11 | |||
12 | #include <linux/init.h> | ||
13 | #include <linux/delay.h> | ||
14 | #include <linux/irq.h> | ||
15 | #include <linux/platform_device.h> | ||
16 | #include <linux/ath9k_platform.h> | ||
17 | |||
18 | #include <asm/mach-ath79/ath79.h> | ||
19 | #include <asm/mach-ath79/ar71xx_regs.h> | ||
20 | #include "dev-wmac.h" | ||
21 | |||
22 | static struct ath9k_platform_data ath79_wmac_data; | ||
23 | |||
24 | static struct resource ath79_wmac_resources[] = { | ||
25 | { | ||
26 | /* .start and .end fields are filled dynamically */ | ||
27 | .flags = IORESOURCE_MEM, | ||
28 | }, { | ||
29 | .start = ATH79_CPU_IRQ_IP2, | ||
30 | .end = ATH79_CPU_IRQ_IP2, | ||
31 | .flags = IORESOURCE_IRQ, | ||
32 | }, | ||
33 | }; | ||
34 | |||
35 | static struct platform_device ath79_wmac_device = { | ||
36 | .name = "ath9k", | ||
37 | .id = -1, | ||
38 | .resource = ath79_wmac_resources, | ||
39 | .num_resources = ARRAY_SIZE(ath79_wmac_resources), | ||
40 | .dev = { | ||
41 | .platform_data = &ath79_wmac_data, | ||
42 | }, | ||
43 | }; | ||
44 | |||
45 | static void __init ar913x_wmac_setup(void) | ||
46 | { | ||
47 | /* reset the WMAC */ | ||
48 | ath79_device_reset_set(AR913X_RESET_AMBA2WMAC); | ||
49 | mdelay(10); | ||
50 | |||
51 | ath79_device_reset_clear(AR913X_RESET_AMBA2WMAC); | ||
52 | mdelay(10); | ||
53 | |||
54 | ath79_wmac_resources[0].start = AR913X_WMAC_BASE; | ||
55 | ath79_wmac_resources[0].end = AR913X_WMAC_BASE + AR913X_WMAC_SIZE - 1; | ||
56 | } | ||
57 | |||
58 | |||
59 | static int ar933x_wmac_reset(void) | ||
60 | { | ||
61 | ath79_device_reset_clear(AR933X_RESET_WMAC); | ||
62 | ath79_device_reset_set(AR933X_RESET_WMAC); | ||
63 | |||
64 | return 0; | ||
65 | } | ||
66 | |||
67 | static int ar933x_r1_get_wmac_revision(void) | ||
68 | { | ||
69 | return ath79_soc_rev; | ||
70 | } | ||
71 | |||
72 | static void __init ar933x_wmac_setup(void) | ||
73 | { | ||
74 | u32 t; | ||
75 | |||
76 | ar933x_wmac_reset(); | ||
77 | |||
78 | ath79_wmac_device.name = "ar933x_wmac"; | ||
79 | |||
80 | ath79_wmac_resources[0].start = AR933X_WMAC_BASE; | ||
81 | ath79_wmac_resources[0].end = AR933X_WMAC_BASE + AR933X_WMAC_SIZE - 1; | ||
82 | |||
83 | t = ath79_reset_rr(AR933X_RESET_REG_BOOTSTRAP); | ||
84 | if (t & AR933X_BOOTSTRAP_REF_CLK_40) | ||
85 | ath79_wmac_data.is_clk_25mhz = false; | ||
86 | else | ||
87 | ath79_wmac_data.is_clk_25mhz = true; | ||
88 | |||
89 | if (ath79_soc_rev == 1) | ||
90 | ath79_wmac_data.get_mac_revision = ar933x_r1_get_wmac_revision; | ||
91 | |||
92 | ath79_wmac_data.external_reset = ar933x_wmac_reset; | ||
93 | } | ||
94 | |||
95 | void __init ath79_register_wmac(u8 *cal_data) | ||
96 | { | ||
97 | if (soc_is_ar913x()) | ||
98 | ar913x_wmac_setup(); | ||
99 | if (soc_is_ar933x()) | ||
100 | ar933x_wmac_setup(); | ||
101 | else | ||
102 | BUG(); | ||
103 | |||
104 | if (cal_data) | ||
105 | memcpy(ath79_wmac_data.eeprom_data, cal_data, | ||
106 | sizeof(ath79_wmac_data.eeprom_data)); | ||
107 | |||
108 | platform_device_register(&ath79_wmac_device); | ||
109 | } | ||