gpio-ath79.c 3.0 KB
Newer Older
G
Gabor Juhos 已提交
1 2 3
/*
 *  Atheros AR71XX/AR724X/AR913X GPIO API support
 *
4 5
 *  Copyright (C) 2010-2011 Jaiganesh Narayanan <jnarayanan@atheros.com>
 *  Copyright (C) 2008-2011 Gabor Juhos <juhosg@openwrt.org>
G
Gabor Juhos 已提交
6 7
 *  Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org>
 *
8 9
 *  Parts of this file are based on Atheros' 2.6.15/2.6.31 BSP
 *
G
Gabor Juhos 已提交
10 11 12 13 14
 *  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.
 */

15
#include <linux/gpio/driver.h>
16 17
#include <linux/platform_data/gpio-ath79.h>
#include <linux/of_device.h>
G
Gabor Juhos 已提交
18

19 20 21 22
#define AR71XX_GPIO_REG_OE		0x00
#define AR71XX_GPIO_REG_IN		0x04
#define AR71XX_GPIO_REG_SET		0x0c
#define AR71XX_GPIO_REG_CLEAR		0x10
G
Gabor Juhos 已提交
23

24
struct ath79_gpio_ctrl {
25
	struct gpio_chip gc;
26 27 28 29
	void __iomem *base;
	spinlock_t lock;
};

30 31 32 33 34 35 36
static const struct of_device_id ath79_gpio_of_match[] = {
	{ .compatible = "qca,ar7100-gpio" },
	{ .compatible = "qca,ar9340-gpio" },
	{},
};

static int ath79_gpio_probe(struct platform_device *pdev)
G
Gabor Juhos 已提交
37
{
N
Nizam Haider 已提交
38
	struct ath79_gpio_platform_data *pdata = dev_get_platdata(&pdev->dev);
39
	struct device_node *np = pdev->dev.of_node;
40
	struct ath79_gpio_ctrl *ctrl;
41
	struct resource *res;
42
	u32 ath79_gpio_count;
43
	bool oe_inverted;
G
Gabor Juhos 已提交
44 45
	int err;

46 47 48
	ctrl = devm_kzalloc(&pdev->dev, sizeof(*ctrl), GFP_KERNEL);
	if (!ctrl)
		return -ENOMEM;
49
	platform_set_drvdata(pdev, ctrl);
50

51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
	if (np) {
		err = of_property_read_u32(np, "ngpios", &ath79_gpio_count);
		if (err) {
			dev_err(&pdev->dev, "ngpios property is not valid\n");
			return err;
		}
		if (ath79_gpio_count >= 32) {
			dev_err(&pdev->dev, "ngpios must be less than 32\n");
			return -EINVAL;
		}
		oe_inverted = of_device_is_compatible(np, "qca,ar9340-gpio");
	} else if (pdata) {
		ath79_gpio_count = pdata->ngpios;
		oe_inverted = pdata->oe_inverted;
	} else {
		dev_err(&pdev->dev, "No DT node or platform data found\n");
		return -EINVAL;
	}

	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
71
	ctrl->base = devm_ioremap_nocache(
72
		&pdev->dev, res->start, resource_size(res));
73
	if (!ctrl->base)
74
		return -ENOMEM;
G
Gabor Juhos 已提交
75

76
	spin_lock_init(&ctrl->lock);
77 78 79 80 81 82 83 84 85 86
	err = bgpio_init(&ctrl->gc, &pdev->dev, 4,
			ctrl->base + AR71XX_GPIO_REG_IN,
			ctrl->base + AR71XX_GPIO_REG_SET,
			ctrl->base + AR71XX_GPIO_REG_CLEAR,
			oe_inverted ? NULL : ctrl->base + AR71XX_GPIO_REG_OE,
			oe_inverted ? ctrl->base + AR71XX_GPIO_REG_OE : NULL,
			0);
	if (err) {
		dev_err(&pdev->dev, "bgpio_init failed\n");
		return err;
87
	}
88 89
	/* Use base 0 to stay compatible with legacy platforms */
	ctrl->gc.base = 0;
G
Gabor Juhos 已提交
90

91
	err = gpiochip_add_data(&ctrl->gc, ctrl);
92 93 94 95 96 97 98
	if (err) {
		dev_err(&pdev->dev,
			"cannot add AR71xx GPIO chip, error=%d", err);
		return err;
	}

	return 0;
G
Gabor Juhos 已提交
99 100
}

101 102 103 104 105 106 107 108
static int ath79_gpio_remove(struct platform_device *pdev)
{
	struct ath79_gpio_ctrl *ctrl = platform_get_drvdata(pdev);

	gpiochip_remove(&ctrl->gc);
	return 0;
}

109 110 111 112 113 114
static struct platform_driver ath79_gpio_driver = {
	.driver = {
		.name = "ath79-gpio",
		.of_match_table	= ath79_gpio_of_match,
	},
	.probe = ath79_gpio_probe,
115
	.remove = ath79_gpio_remove,
116 117 118
};

module_platform_driver(ath79_gpio_driver);