gpio-ath79.c 5.2 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

#include <asm/mach-ath79/ar71xx_regs.h>

21 22 23 24 25 26 27
struct ath79_gpio_ctrl {
	struct gpio_chip chip;
	void __iomem *base;
	spinlock_t lock;
};

#define to_ath79_gpio_ctrl(c) container_of(c, struct ath79_gpio_ctrl, chip)
G
Gabor Juhos 已提交
28

29 30
static void ath79_gpio_set_value(struct gpio_chip *chip,
				unsigned gpio, int value)
G
Gabor Juhos 已提交
31
{
32
	struct ath79_gpio_ctrl *ctrl = to_ath79_gpio_ctrl(chip);
G
Gabor Juhos 已提交
33 34

	if (value)
35
		__raw_writel(BIT(gpio), ctrl->base + AR71XX_GPIO_REG_SET);
G
Gabor Juhos 已提交
36
	else
37
		__raw_writel(BIT(gpio), ctrl->base + AR71XX_GPIO_REG_CLEAR);
G
Gabor Juhos 已提交
38 39
}

40
static int ath79_gpio_get_value(struct gpio_chip *chip, unsigned gpio)
G
Gabor Juhos 已提交
41
{
42
	struct ath79_gpio_ctrl *ctrl = to_ath79_gpio_ctrl(chip);
G
Gabor Juhos 已提交
43

44
	return (__raw_readl(ctrl->base + AR71XX_GPIO_REG_IN) >> gpio) & 1;
G
Gabor Juhos 已提交
45 46 47 48 49
}

static int ath79_gpio_direction_input(struct gpio_chip *chip,
				       unsigned offset)
{
50
	struct ath79_gpio_ctrl *ctrl = to_ath79_gpio_ctrl(chip);
G
Gabor Juhos 已提交
51 52
	unsigned long flags;

53
	spin_lock_irqsave(&ctrl->lock, flags);
G
Gabor Juhos 已提交
54

55 56 57
	__raw_writel(
		__raw_readl(ctrl->base + AR71XX_GPIO_REG_OE) & ~BIT(offset),
		ctrl->base + AR71XX_GPIO_REG_OE);
G
Gabor Juhos 已提交
58

59
	spin_unlock_irqrestore(&ctrl->lock, flags);
G
Gabor Juhos 已提交
60 61 62 63 64 65 66

	return 0;
}

static int ath79_gpio_direction_output(struct gpio_chip *chip,
					unsigned offset, int value)
{
67
	struct ath79_gpio_ctrl *ctrl = to_ath79_gpio_ctrl(chip);
G
Gabor Juhos 已提交
68 69
	unsigned long flags;

70
	spin_lock_irqsave(&ctrl->lock, flags);
G
Gabor Juhos 已提交
71 72

	if (value)
73
		__raw_writel(BIT(offset), ctrl->base + AR71XX_GPIO_REG_SET);
G
Gabor Juhos 已提交
74
	else
75
		__raw_writel(BIT(offset), ctrl->base + AR71XX_GPIO_REG_CLEAR);
G
Gabor Juhos 已提交
76

77 78 79
	__raw_writel(
		__raw_readl(ctrl->base + AR71XX_GPIO_REG_OE) | BIT(offset),
		ctrl->base + AR71XX_GPIO_REG_OE);
G
Gabor Juhos 已提交
80

81
	spin_unlock_irqrestore(&ctrl->lock, flags);
G
Gabor Juhos 已提交
82 83 84 85

	return 0;
}

86 87
static int ar934x_gpio_direction_input(struct gpio_chip *chip, unsigned offset)
{
88
	struct ath79_gpio_ctrl *ctrl = to_ath79_gpio_ctrl(chip);
89 90
	unsigned long flags;

91
	spin_lock_irqsave(&ctrl->lock, flags);
92

93 94 95
	__raw_writel(
		__raw_readl(ctrl->base + AR71XX_GPIO_REG_OE) | BIT(offset),
		ctrl->base + AR71XX_GPIO_REG_OE);
96

97
	spin_unlock_irqrestore(&ctrl->lock, flags);
98 99 100 101 102 103 104

	return 0;
}

static int ar934x_gpio_direction_output(struct gpio_chip *chip, unsigned offset,
					int value)
{
105
	struct ath79_gpio_ctrl *ctrl = to_ath79_gpio_ctrl(chip);
106 107
	unsigned long flags;

108
	spin_lock_irqsave(&ctrl->lock, flags);
109 110

	if (value)
111
		__raw_writel(BIT(offset), ctrl->base + AR71XX_GPIO_REG_SET);
112
	else
113
		__raw_writel(BIT(offset), ctrl->base + AR71XX_GPIO_REG_CLEAR);
114

115
	__raw_writel(
116
		__raw_readl(ctrl->base + AR71XX_GPIO_REG_OE) & ~BIT(offset),
117
		ctrl->base + AR71XX_GPIO_REG_OE);
118

119
	spin_unlock_irqrestore(&ctrl->lock, flags);
120 121 122 123

	return 0;
}

124
static const struct gpio_chip ath79_gpio_chip = {
G
Gabor Juhos 已提交
125 126 127 128 129 130 131 132
	.label			= "ath79",
	.get			= ath79_gpio_get_value,
	.set			= ath79_gpio_set_value,
	.direction_input	= ath79_gpio_direction_input,
	.direction_output	= ath79_gpio_direction_output,
	.base			= 0,
};

133 134 135 136 137 138 139
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 已提交
140
{
N
Nizam Haider 已提交
141
	struct ath79_gpio_platform_data *pdata = dev_get_platdata(&pdev->dev);
142
	struct device_node *np = pdev->dev.of_node;
143
	struct ath79_gpio_ctrl *ctrl;
144
	struct resource *res;
145
	u32 ath79_gpio_count;
146
	bool oe_inverted;
G
Gabor Juhos 已提交
147 148
	int err;

149 150 151 152
	ctrl = devm_kzalloc(&pdev->dev, sizeof(*ctrl), GFP_KERNEL);
	if (!ctrl)
		return -ENOMEM;

153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
	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);
173
	ctrl->base = devm_ioremap_nocache(
174
		&pdev->dev, res->start, resource_size(res));
175
	if (!ctrl->base)
176
		return -ENOMEM;
G
Gabor Juhos 已提交
177

178 179
	spin_lock_init(&ctrl->lock);
	memcpy(&ctrl->chip, &ath79_gpio_chip, sizeof(ctrl->chip));
180
	ctrl->chip.parent = &pdev->dev;
181
	ctrl->chip.ngpio = ath79_gpio_count;
182
	if (oe_inverted) {
183 184
		ctrl->chip.direction_input = ar934x_gpio_direction_input;
		ctrl->chip.direction_output = ar934x_gpio_direction_output;
185
	}
G
Gabor Juhos 已提交
186

187
	err = gpiochip_add(&ctrl->chip);
188 189 190 191 192 193 194
	if (err) {
		dev_err(&pdev->dev,
			"cannot add AR71xx GPIO chip, error=%d", err);
		return err;
	}

	return 0;
G
Gabor Juhos 已提交
195 196
}

197 198 199 200 201 202 203 204 205
static struct platform_driver ath79_gpio_driver = {
	.driver = {
		.name = "ath79-gpio",
		.of_match_table	= ath79_gpio_of_match,
	},
	.probe = ath79_gpio_probe,
};

module_platform_driver(ath79_gpio_driver);