Gabor Juhos | f5b35d0 | 2011-01-04 21:28:29 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Atheros AR913X SoC built-in WMAC device support |
| 3 | * |
| 4 | * Copyright (C) 2008-2010 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-ar913x-wmac.h" |
| 21 | |
Gabor Juhos | 67b0f0f | 2011-11-18 00:17:53 +0000 | [diff] [blame] | 22 | static struct ath9k_platform_data ath79_wmac_data; |
Gabor Juhos | f5b35d0 | 2011-01-04 21:28:29 +0100 | [diff] [blame] | 23 | |
Gabor Juhos | 67b0f0f | 2011-11-18 00:17:53 +0000 | [diff] [blame] | 24 | static struct resource ath79_wmac_resources[] = { |
Gabor Juhos | f5b35d0 | 2011-01-04 21:28:29 +0100 | [diff] [blame] | 25 | { |
Gabor Juhos | 6903bb4 | 2011-11-18 00:17:53 +0000 | [diff] [blame^] | 26 | /* .start and .end fields are filled dynamically */ |
Gabor Juhos | f5b35d0 | 2011-01-04 21:28:29 +0100 | [diff] [blame] | 27 | .flags = IORESOURCE_MEM, |
| 28 | }, { |
| 29 | .start = ATH79_CPU_IRQ_IP2, |
| 30 | .end = ATH79_CPU_IRQ_IP2, |
| 31 | .flags = IORESOURCE_IRQ, |
| 32 | }, |
| 33 | }; |
| 34 | |
Gabor Juhos | 67b0f0f | 2011-11-18 00:17:53 +0000 | [diff] [blame] | 35 | static struct platform_device ath79_wmac_device = { |
Gabor Juhos | f5b35d0 | 2011-01-04 21:28:29 +0100 | [diff] [blame] | 36 | .name = "ath9k", |
| 37 | .id = -1, |
Gabor Juhos | 67b0f0f | 2011-11-18 00:17:53 +0000 | [diff] [blame] | 38 | .resource = ath79_wmac_resources, |
| 39 | .num_resources = ARRAY_SIZE(ath79_wmac_resources), |
Gabor Juhos | f5b35d0 | 2011-01-04 21:28:29 +0100 | [diff] [blame] | 40 | .dev = { |
Gabor Juhos | 67b0f0f | 2011-11-18 00:17:53 +0000 | [diff] [blame] | 41 | .platform_data = &ath79_wmac_data, |
Gabor Juhos | f5b35d0 | 2011-01-04 21:28:29 +0100 | [diff] [blame] | 42 | }, |
| 43 | }; |
| 44 | |
Gabor Juhos | 6903bb4 | 2011-11-18 00:17:53 +0000 | [diff] [blame^] | 45 | static void __init ar913x_wmac_setup(void) |
Gabor Juhos | f5b35d0 | 2011-01-04 21:28:29 +0100 | [diff] [blame] | 46 | { |
Gabor Juhos | f5b35d0 | 2011-01-04 21:28:29 +0100 | [diff] [blame] | 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 | |
Gabor Juhos | 6903bb4 | 2011-11-18 00:17:53 +0000 | [diff] [blame^] | 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 | void __init ath79_register_wmac(u8 *cal_data) |
| 59 | { |
| 60 | if (soc_is_ar913x()) |
| 61 | ar913x_wmac_setup(); |
| 62 | else |
| 63 | BUG(); |
| 64 | |
| 65 | if (cal_data) |
| 66 | memcpy(ath79_wmac_data.eeprom_data, cal_data, |
| 67 | sizeof(ath79_wmac_data.eeprom_data)); |
| 68 | |
Gabor Juhos | 67b0f0f | 2011-11-18 00:17:53 +0000 | [diff] [blame] | 69 | platform_device_register(&ath79_wmac_device); |
Gabor Juhos | f5b35d0 | 2011-01-04 21:28:29 +0100 | [diff] [blame] | 70 | } |