|
@@ -1,6 +1,7 @@
|
|
|
#include <linux/kernel.h>
|
|
|
#include <linux/init.h>
|
|
|
#include <linux/serial_8250.h>
|
|
|
+#include <linux/platform_device.h>
|
|
|
#include <asm/bootinfo.h>
|
|
|
|
|
|
#include <ath25_platform.h>
|
|
@@ -11,6 +12,45 @@
|
|
|
struct ar231x_board_config ath25_board;
|
|
|
enum ath25_soc_type ath25_soc = ATH25_SOC_UNKNOWN;
|
|
|
|
|
|
+static struct resource ath25_wmac0_res[] = {
|
|
|
+ {
|
|
|
+ .name = "wmac0_membase",
|
|
|
+ .flags = IORESOURCE_MEM,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ .name = "wmac0_irq",
|
|
|
+ .flags = IORESOURCE_IRQ,
|
|
|
+ }
|
|
|
+};
|
|
|
+
|
|
|
+static struct resource ath25_wmac1_res[] = {
|
|
|
+ {
|
|
|
+ .name = "wmac1_membase",
|
|
|
+ .flags = IORESOURCE_MEM,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ .name = "wmac1_irq",
|
|
|
+ .flags = IORESOURCE_IRQ,
|
|
|
+ }
|
|
|
+};
|
|
|
+
|
|
|
+static struct platform_device ath25_wmac[] = {
|
|
|
+ {
|
|
|
+ .id = 0,
|
|
|
+ .name = "ar231x-wmac",
|
|
|
+ .resource = ath25_wmac0_res,
|
|
|
+ .num_resources = ARRAY_SIZE(ath25_wmac0_res),
|
|
|
+ .dev.platform_data = &ath25_board,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ .id = 1,
|
|
|
+ .name = "ar231x-wmac",
|
|
|
+ .resource = ath25_wmac1_res,
|
|
|
+ .num_resources = ARRAY_SIZE(ath25_wmac1_res),
|
|
|
+ .dev.platform_data = &ath25_board,
|
|
|
+ },
|
|
|
+};
|
|
|
+
|
|
|
static const char * const soc_type_strings[] = {
|
|
|
[ATH25_SOC_AR5312] = "Atheros AR5312",
|
|
|
[ATH25_SOC_AR2312] = "Atheros AR2312",
|
|
@@ -46,6 +86,20 @@ void __init ath25_serial_setup(u32 mapbase, int irq, unsigned int uartclk)
|
|
|
early_serial_setup(&s);
|
|
|
}
|
|
|
|
|
|
+int __init ath25_add_wmac(int nr, u32 base, int irq)
|
|
|
+{
|
|
|
+ struct resource *res;
|
|
|
+
|
|
|
+ ath25_wmac[nr].dev.platform_data = &ath25_board;
|
|
|
+ res = &ath25_wmac[nr].resource[0];
|
|
|
+ res->start = base;
|
|
|
+ res->end = base + 0x10000 - 1;
|
|
|
+ res++;
|
|
|
+ res->start = irq;
|
|
|
+ res->end = irq;
|
|
|
+ return platform_device_register(&ath25_wmac[nr]);
|
|
|
+}
|
|
|
+
|
|
|
static int __init ath25_register_devices(void)
|
|
|
{
|
|
|
if (is_ar5312())
|