dev-ar913x-wmac.c 2.5 KB
Newer Older
1
/*
2
 *  Atheros AR913X/AR933X SoC built-in WMAC device support
3
 *
4
 *  Copyright (C) 2008-2011 Gabor Juhos <juhosg@openwrt.org>
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
 *  Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org>
 *
 *  This program is free software; you can redistribute it and/or modify it
 *  under the terms of the GNU General Public License version 2 as published
 *  by the Free Software Foundation.
 */

#include <linux/init.h>
#include <linux/delay.h>
#include <linux/irq.h>
#include <linux/platform_device.h>
#include <linux/ath9k_platform.h>

#include <asm/mach-ath79/ath79.h>
#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 28 29 30 31 32 33 34
		.flags	= IORESOURCE_MEM,
	}, {
		.start	= ATH79_CPU_IRQ_IP2,
		.end	= ATH79_CPU_IRQ_IP2,
		.flags	= IORESOURCE_IRQ,
	},
};

35
static struct platform_device ath79_wmac_device = {
36 37
	.name		= "ath9k",
	.id		= -1,
38 39
	.resource	= ath79_wmac_resources,
	.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 48 49 50 51 52 53
{
	/* reset the WMAC */
	ath79_device_reset_set(AR913X_RESET_AMBA2WMAC);
	mdelay(10);

	ath79_device_reset_clear(AR913X_RESET_AMBA2WMAC);
	mdelay(10);

54 55 56 57
	ath79_wmac_resources[0].start = AR913X_WMAC_BASE;
	ath79_wmac_resources[0].end = AR913X_WMAC_BASE + AR913X_WMAC_SIZE - 1;
}

58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94

static int ar933x_wmac_reset(void)
{
	ath79_device_reset_clear(AR933X_RESET_WMAC);
	ath79_device_reset_set(AR933X_RESET_WMAC);

	return 0;
}

static int ar933x_r1_get_wmac_revision(void)
{
	return ath79_soc_rev;
}

static void __init ar933x_wmac_setup(void)
{
	u32 t;

	ar933x_wmac_reset();

	ath79_wmac_device.name = "ar933x_wmac";

	ath79_wmac_resources[0].start = AR933X_WMAC_BASE;
	ath79_wmac_resources[0].end = AR933X_WMAC_BASE + AR933X_WMAC_SIZE - 1;

	t = ath79_reset_rr(AR933X_RESET_REG_BOOTSTRAP);
	if (t & AR933X_BOOTSTRAP_REF_CLK_40)
		ath79_wmac_data.is_clk_25mhz = false;
	else
		ath79_wmac_data.is_clk_25mhz = true;

	if (ath79_soc_rev == 1)
		ath79_wmac_data.get_mac_revision = ar933x_r1_get_wmac_revision;

	ath79_wmac_data.external_reset = ar933x_wmac_reset;
}

95 96 97 98
void __init ath79_register_wmac(u8 *cal_data)
{
	if (soc_is_ar913x())
		ar913x_wmac_setup();
99 100
	if (soc_is_ar933x())
		ar933x_wmac_setup();
101 102 103 104 105 106 107
	else
		BUG();

	if (cal_data)
		memcpy(ath79_wmac_data.eeprom_data, cal_data,
		       sizeof(ath79_wmac_data.eeprom_data));

108
	platform_device_register(&ath79_wmac_device);
109
}