blob: 2c9ba40be96e08fc2c5a0affd5d8a225fa673fdc [file] [log] [blame]
Gabor Juhosf5b35d02011-01-04 21:28:29 +01001/*
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 Juhos67b0f0f2011-11-18 00:17:53 +000022static struct ath9k_platform_data ath79_wmac_data;
Gabor Juhosf5b35d02011-01-04 21:28:29 +010023
Gabor Juhos67b0f0f2011-11-18 00:17:53 +000024static struct resource ath79_wmac_resources[] = {
Gabor Juhosf5b35d02011-01-04 21:28:29 +010025 {
26 .start = AR913X_WMAC_BASE,
27 .end = AR913X_WMAC_BASE + AR913X_WMAC_SIZE - 1,
28 .flags = IORESOURCE_MEM,
29 }, {
30 .start = ATH79_CPU_IRQ_IP2,
31 .end = ATH79_CPU_IRQ_IP2,
32 .flags = IORESOURCE_IRQ,
33 },
34};
35
Gabor Juhos67b0f0f2011-11-18 00:17:53 +000036static struct platform_device ath79_wmac_device = {
Gabor Juhosf5b35d02011-01-04 21:28:29 +010037 .name = "ath9k",
38 .id = -1,
Gabor Juhos67b0f0f2011-11-18 00:17:53 +000039 .resource = ath79_wmac_resources,
40 .num_resources = ARRAY_SIZE(ath79_wmac_resources),
Gabor Juhosf5b35d02011-01-04 21:28:29 +010041 .dev = {
Gabor Juhos67b0f0f2011-11-18 00:17:53 +000042 .platform_data = &ath79_wmac_data,
Gabor Juhosf5b35d02011-01-04 21:28:29 +010043 },
44};
45
Gabor Juhos67b0f0f2011-11-18 00:17:53 +000046void __init ath79_register_wmac(u8 *cal_data)
Gabor Juhosf5b35d02011-01-04 21:28:29 +010047{
48 if (cal_data)
Gabor Juhos67b0f0f2011-11-18 00:17:53 +000049 memcpy(ath79_wmac_data.eeprom_data, cal_data,
50 sizeof(ath79_wmac_data.eeprom_data));
Gabor Juhosf5b35d02011-01-04 21:28:29 +010051
52 /* reset the WMAC */
53 ath79_device_reset_set(AR913X_RESET_AMBA2WMAC);
54 mdelay(10);
55
56 ath79_device_reset_clear(AR913X_RESET_AMBA2WMAC);
57 mdelay(10);
58
Gabor Juhos67b0f0f2011-11-18 00:17:53 +000059 platform_device_register(&ath79_wmac_device);
Gabor Juhosf5b35d02011-01-04 21:28:29 +010060}