cregit-Linux how code gets into the kernel

Release 4.11 drivers/net/wireless/ath/ath9k/ahb.c

/*
 * Copyright (c) 2008-2011 Atheros Communications Inc.
 * 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>
#include <linux/module.h>
#include "ath9k.h"


static const struct platform_device_id ath9k_platform_id_table[] = {
	{
		.name = "ath9k",
		.driver_data = AR5416_AR9100_DEVID,
        },
	{
		.name = "ar933x_wmac",
		.driver_data = AR9300_DEVID_AR9330,
        },
	{
		.name = "ar934x_wmac",
		.driver_data = AR9300_DEVID_AR9340,
        },
	{
		.name = "qca955x_wmac",
		.driver_data = AR9300_DEVID_QCA955X,
        },
	{
		.name = "qca953x_wmac",
		.driver_data = AR9300_DEVID_AR953X,
        },
	{
		.name = "qca956x_wmac",
		.driver_data = AR9300_DEVID_QCA956X,
        },
	{},
};

/* return bus cachesize in 4B word units */

static void ath_ahb_read_cachesize(struct ath_common *common, int *csz) { *csz = L1_CACHE_BYTES >> 2; }

Contributors

PersonTokensPropCommitsCommitProp
Gabor Juhos2090.91%150.00%
Luis R. Rodriguez29.09%150.00%
Total22100.00%2100.00%


static bool ath_ahb_eeprom_read(struct ath_common *common, u32 off, u16 *data) { ath_err(common, "%s: eeprom data has to be provided externally\n", __func__); return false; }

Contributors

PersonTokensPropCommitsCommitProp
Gabor Juhos2480.00%120.00%
Luis R. Rodriguez413.33%240.00%
Martin Blumenstingl13.33%120.00%
Joe Perches13.33%120.00%
Total30100.00%5100.00%

static const struct ath_bus_ops ath_ahb_bus_ops = { .ath_bus_type = ATH_AHB, .read_cachesize = ath_ahb_read_cachesize, .eeprom_read = ath_ahb_eeprom_read, };
static int ath_ahb_probe(struct platform_device *pdev) { void __iomem *mem; struct ath_softc *sc; struct ieee80211_hw *hw; struct resource *res; const struct platform_device_id *id = platform_get_device_id(pdev); int irq; int ret = 0; struct ath_hw *ah; char hw_name[64]; if (!dev_get_platdata(&pdev->dev)) { dev_err(&pdev->dev, "no platform data specified\n"); return -EINVAL; } res = platform_get_resource(pdev, IORESOURCE_MEM, 0); if (res == NULL) { dev_err(&pdev->dev, "no memory resource found\n"); return -ENXIO; } mem = devm_ioremap_nocache(&pdev->dev, res->start, resource_size(res)); if (mem == NULL) { dev_err(&pdev->dev, "ioremap failed\n"); return -ENOMEM; } res = platform_get_resource(pdev, IORESOURCE_IRQ, 0); if (res == NULL) { dev_err(&pdev->dev, "no IRQ resource found\n"); return -ENXIO; } irq = res->start; ath9k_fill_chanctx_ops(); hw = ieee80211_alloc_hw(sizeof(struct ath_softc), &ath9k_ops); if (hw == NULL) { dev_err(&pdev->dev, "no memory for ieee80211_hw\n"); return -ENOMEM; } SET_IEEE80211_DEV(hw, &pdev->dev); platform_set_drvdata(pdev, hw); sc = hw->priv; sc->hw = hw; sc->dev = &pdev->dev; sc->mem = mem; sc->irq = irq; ret = request_irq(irq, ath_isr, IRQF_SHARED, "ath9k", sc); if (ret) { dev_err(&pdev->dev, "request_irq failed\n"); goto err_free_hw; } ret = ath9k_init_device(id->driver_data, sc, &ath_ahb_bus_ops); if (ret) { dev_err(&pdev->dev, "failed to initialize device\n"); goto err_irq; } ah = sc->sc_ah; ath9k_hw_name(ah, hw_name, sizeof(hw_name)); wiphy_info(hw->wiphy, "%s mem=0x%lx, irq=%d\n", hw_name, (unsigned long)mem, irq); return 0; err_irq: free_irq(irq, sc); err_free_hw: ieee80211_free_hw(hw); return ret; }

Contributors

PersonTokensPropCommitsCommitProp
Gabor Juhos33179.57%213.33%
Luis R. Rodriguez204.81%213.33%
Sujith Manoharan194.57%213.33%
Felix Fietkau174.09%213.33%
Vasanthakumar Thiagarajan153.61%213.33%
Jingoo Han40.96%16.67%
Joe Perches30.72%16.67%
Rajkumar Manoharan30.72%16.67%
Shan Wei30.72%16.67%
Jouni Malinen10.24%16.67%
Total416100.00%15100.00%


static int ath_ahb_remove(struct platform_device *pdev) { struct ieee80211_hw *hw = platform_get_drvdata(pdev); if (hw) { struct ath_softc *sc = hw->priv; ath9k_deinit_device(sc); free_irq(sc->irq, sc); ieee80211_free_hw(sc->hw); } return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Gabor Juhos3355.00%125.00%
Sujith Manoharan1931.67%125.00%
Jouni Malinen610.00%125.00%
Felix Fietkau23.33%125.00%
Total60100.00%4100.00%

static struct platform_driver ath_ahb_driver = { .probe = ath_ahb_probe, .remove = ath_ahb_remove, .driver = { .name = "ath9k", }, .id_table = ath9k_platform_id_table, }; MODULE_DEVICE_TABLE(platform, ath9k_platform_id_table);
int ath_ahb_init(void) { return platform_driver_register(&ath_ahb_driver); }

Contributors

PersonTokensPropCommitsCommitProp
Gabor Juhos14100.00%1100.00%
Total14100.00%1100.00%


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

Contributors

PersonTokensPropCommitsCommitProp
Gabor Juhos13100.00%1100.00%
Total13100.00%1100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
Gabor Juhos51271.71%413.79%
Vasanthakumar Thiagarajan628.68%413.79%
Sujith Manoharan577.98%620.69%
Luis R. Rodriguez263.64%310.34%
Felix Fietkau192.66%26.90%
Miaoqing Pan121.68%13.45%
Jouni Malinen70.98%13.45%
Joe Perches40.56%26.90%
Jingoo Han40.56%13.45%
Shan Wei30.42%13.45%
Paul Gortmaker30.42%13.45%
Rajkumar Manoharan30.42%13.45%
Bhumika Goyal10.14%13.45%
Martin Blumenstingl10.14%13.45%
Total714100.00%29100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.