|
|
@@ -17,6 +17,7 @@
|
|
|
#include <linux/dma-mapping.h>
|
|
|
#include <linux/platform_device.h>
|
|
|
#include <linux/serial_8250.h>
|
|
|
+#include <linux/ath9k_platform.h>
|
|
|
|
|
|
#include <asm/mach-ar71xx/ar71xx.h>
|
|
|
#include <asm/mach-ar71xx/platform.h>
|
|
|
@@ -605,14 +606,30 @@ static struct resource ar91xx_wmac_resources[] = {
|
|
|
},
|
|
|
};
|
|
|
|
|
|
+static struct ath9k_platform_data ar91xx_wmac_data;
|
|
|
+
|
|
|
static struct platform_device ar91xx_wmac_device = {
|
|
|
.name = "ath9k",
|
|
|
.id = -1,
|
|
|
.resource = ar91xx_wmac_resources,
|
|
|
.num_resources = ARRAY_SIZE(ar91xx_wmac_resources),
|
|
|
+ .dev = {
|
|
|
+ .platform_data = &ar91xx_wmac_data,
|
|
|
+ },
|
|
|
};
|
|
|
|
|
|
void __init ar91xx_add_device_wmac(void)
|
|
|
{
|
|
|
+ u8 *ee = (u8 *) KSEG1ADDR(0x1fff1000);
|
|
|
+
|
|
|
+ memcpy(ar91xx_wmac_data.eeprom_data, ee,
|
|
|
+ sizeof(ar91xx_wmac_data.eeprom_data));
|
|
|
+
|
|
|
+ ar71xx_device_stop(RESET_MODULE_AMBA2WMAC);
|
|
|
+ mdelay(10);
|
|
|
+
|
|
|
+ ar71xx_device_start(RESET_MODULE_AMBA2WMAC);
|
|
|
+ mdelay(10);
|
|
|
+
|
|
|
platform_device_register(&ar91xx_wmac_device);
|
|
|
}
|