ahb.c 4.5 KB
Newer Older
1
/*
2
 * Copyright (c) 2008-2009 Atheros Communications Inc.
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
 * Copyright (c) 2009 Gabor Juhos <juhosg@openwrt.org>
 * Copyright (c) 2009 Imre Kaloz <kaloz@openwrt.org>
 *
 * Permission to use, copy, modify, and/or distribute this software for any
 * purpose with or without fee is hereby granted, provided that the above
 * copyright notice and this permission notice appear in all copies.
 *
 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 */

#include <linux/nl80211.h>
#include <linux/platform_device.h>
21
#include <linux/ath9k_platform.h>
S
Sujith 已提交
22
#include "ath9k.h"
23 24

/* return bus cachesize in 4B word units */
25
static void ath_ahb_read_cachesize(struct ath_common *common, int *csz)
26 27 28 29
{
	*csz = L1_CACHE_BYTES >> 2;
}

30
static bool ath_ahb_eeprom_read(struct ath_common *common, u32 off, u16 *data)
31
{
32
	struct ath_softc *sc = (struct ath_softc *)common->priv;
33 34 35 36 37
	struct platform_device *pdev = to_platform_device(sc->dev);
	struct ath9k_platform_data *pdata;

	pdata = (struct ath9k_platform_data *) pdev->dev.platform_data;
	if (off >= (ARRAY_SIZE(pdata->eeprom_data))) {
38 39 40
		ath_err(common,
			"%s: flash read failed, offset %08x is out of range\n",
			__func__, off);
41 42 43 44 45 46 47
		return false;
	}

	*data = pdata->eeprom_data[off];
	return true;
}

48
static struct ath_bus_ops ath_ahb_bus_ops  = {
S
Sujith 已提交
49
	.ath_bus_type = ATH_AHB,
50
	.read_cachesize = ath_ahb_read_cachesize,
51
	.eeprom_read = ath_ahb_eeprom_read,
52 53 54 55 56
};

static int ath_ahb_probe(struct platform_device *pdev)
{
	void __iomem *mem;
G
Gabor Juhos 已提交
57
	struct ath_wiphy *aphy;
58 59 60 61 62
	struct ath_softc *sc;
	struct ieee80211_hw *hw;
	struct resource *res;
	int irq;
	int ret = 0;
63
	struct ath_hw *ah;
64
	char hw_name[64];
65

66 67 68 69 70 71
	if (!pdev->dev.platform_data) {
		dev_err(&pdev->dev, "no platform data specified\n");
		ret = -EINVAL;
		goto err_out;
	}

72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	if (res == NULL) {
		dev_err(&pdev->dev, "no memory resource found\n");
		ret = -ENXIO;
		goto err_out;
	}

	mem = ioremap_nocache(res->start, res->end - res->start + 1);
	if (mem == NULL) {
		dev_err(&pdev->dev, "ioremap failed\n");
		ret = -ENOMEM;
		goto err_out;
	}

	res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
	if (res == NULL) {
		dev_err(&pdev->dev, "no IRQ resource found\n");
		ret = -ENXIO;
		goto err_iounmap;
	}

	irq = res->start;

95 96
	hw = ieee80211_alloc_hw(sizeof(struct ath_wiphy) +
				sizeof(struct ath_softc), &ath9k_ops);
97 98 99 100 101 102 103 104 105
	if (hw == NULL) {
		dev_err(&pdev->dev, "no memory for ieee80211_hw\n");
		ret = -ENOMEM;
		goto err_iounmap;
	}

	SET_IEEE80211_DEV(hw, &pdev->dev);
	platform_set_drvdata(pdev, hw);

106 107 108 109 110
	aphy = hw->priv;
	sc = (struct ath_softc *) (aphy + 1);
	aphy->sc = sc;
	aphy->hw = hw;
	sc->pri_wiphy = aphy;
111 112 113 114 115
	sc->hw = hw;
	sc->dev = &pdev->dev;
	sc->mem = mem;
	sc->irq = irq;

S
Sujith 已提交
116 117 118
	/* Will be cleared in ath9k_start() */
	sc->sc_flags |= SC_OP_INVALID;

S
Sujith 已提交
119
	ret = request_irq(irq, ath_isr, IRQF_SHARED, "ath9k", sc);
120
	if (ret) {
S
Sujith 已提交
121
		dev_err(&pdev->dev, "request_irq failed\n");
122 123 124
		goto err_free_hw;
	}

S
Sujith 已提交
125
	ret = ath9k_init_device(AR5416_AR9100_DEVID, sc, 0x0, &ath_ahb_bus_ops);
126
	if (ret) {
S
Sujith 已提交
127 128
		dev_err(&pdev->dev, "failed to initialize device\n");
		goto err_irq;
129 130 131
	}

	ah = sc->sc_ah;
132
	ath9k_hw_name(ah, hw_name, sizeof(hw_name));
133 134
	wiphy_info(hw->wiphy, "%s mem=0x%lx, irq=%d\n",
		   hw_name, (unsigned long)mem, irq);
135 136 137

	return 0;

S
Sujith 已提交
138 139
 err_irq:
	free_irq(irq, sc);
140 141 142 143 144 145 146 147 148 149 150 151 152 153
 err_free_hw:
	ieee80211_free_hw(hw);
	platform_set_drvdata(pdev, NULL);
 err_iounmap:
	iounmap(mem);
 err_out:
	return ret;
}

static int ath_ahb_remove(struct platform_device *pdev)
{
	struct ieee80211_hw *hw = platform_get_drvdata(pdev);

	if (hw) {
154 155
		struct ath_wiphy *aphy = hw->priv;
		struct ath_softc *sc = aphy->sc;
156
		void __iomem *mem = sc->mem;
157

S
Sujith 已提交
158 159 160
		ath9k_deinit_device(sc);
		free_irq(sc->irq, sc);
		ieee80211_free_hw(sc->hw);
161
		iounmap(mem);
162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185
		platform_set_drvdata(pdev, NULL);
	}

	return 0;
}

static struct platform_driver ath_ahb_driver = {
	.probe      = ath_ahb_probe,
	.remove     = ath_ahb_remove,
	.driver		= {
		.name	= "ath9k",
		.owner	= THIS_MODULE,
	},
};

int ath_ahb_init(void)
{
	return platform_driver_register(&ath_ahb_driver);
}

void ath_ahb_exit(void)
{
	platform_driver_unregister(&ath_ahb_driver);
}