gpio-adp5520.c 3.9 KB
Newer Older
1 2 3 4 5 6 7 8 9
/*
 * GPIO driver for Analog Devices ADP5520 MFD PMICs
 *
 * Copyright 2009 Analog Devices Inc.
 *
 * Licensed under the GPL-2 or later.
 */

#include <linux/module.h>
10
#include <linux/slab.h>
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/platform_device.h>
#include <linux/mfd/adp5520.h>

#include <linux/gpio.h>

struct adp5520_gpio {
	struct device *master;
	struct gpio_chip gpio_chip;
	unsigned char lut[ADP5520_MAXGPIOS];
	unsigned long output;
};

static int adp5520_gpio_get_value(struct gpio_chip *chip, unsigned off)
{
	struct adp5520_gpio *dev;
	uint8_t reg_val;

30
	dev = gpiochip_get_data(chip);
31 32 33 34 35 36 37

	/*
	 * There are dedicated registers for GPIO IN/OUT.
	 * Make sure we return the right value, even when configured as output
	 */

	if (test_bit(off, &dev->output))
38
		adp5520_read(dev->master, ADP5520_GPIO_OUT, &reg_val);
39
	else
40
		adp5520_read(dev->master, ADP5520_GPIO_IN, &reg_val);
41 42 43 44 45 46 47 48

	return !!(reg_val & dev->lut[off]);
}

static void adp5520_gpio_set_value(struct gpio_chip *chip,
		unsigned off, int val)
{
	struct adp5520_gpio *dev;
49
	dev = gpiochip_get_data(chip);
50 51

	if (val)
52
		adp5520_set_bits(dev->master, ADP5520_GPIO_OUT, dev->lut[off]);
53
	else
54
		adp5520_clr_bits(dev->master, ADP5520_GPIO_OUT, dev->lut[off]);
55 56 57 58 59
}

static int adp5520_gpio_direction_input(struct gpio_chip *chip, unsigned off)
{
	struct adp5520_gpio *dev;
60
	dev = gpiochip_get_data(chip);
61 62 63

	clear_bit(off, &dev->output);

64 65
	return adp5520_clr_bits(dev->master, ADP5520_GPIO_CFG_2,
				dev->lut[off]);
66 67 68 69 70 71 72
}

static int adp5520_gpio_direction_output(struct gpio_chip *chip,
		unsigned off, int val)
{
	struct adp5520_gpio *dev;
	int ret = 0;
73
	dev = gpiochip_get_data(chip);
74 75 76 77

	set_bit(off, &dev->output);

	if (val)
78 79
		ret |= adp5520_set_bits(dev->master, ADP5520_GPIO_OUT,
					dev->lut[off]);
80
	else
81 82
		ret |= adp5520_clr_bits(dev->master, ADP5520_GPIO_OUT,
					dev->lut[off]);
83

84 85
	ret |= adp5520_set_bits(dev->master, ADP5520_GPIO_CFG_2,
					dev->lut[off]);
86 87 88 89

	return ret;
}

B
Bill Pemberton 已提交
90
static int adp5520_gpio_probe(struct platform_device *pdev)
91
{
J
Jingoo Han 已提交
92
	struct adp5520_gpio_platform_data *pdata = dev_get_platdata(&pdev->dev);
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
	struct adp5520_gpio *dev;
	struct gpio_chip *gc;
	int ret, i, gpios;
	unsigned char ctl_mask = 0;

	if (pdata == NULL) {
		dev_err(&pdev->dev, "missing platform data\n");
		return -ENODEV;
	}

	if (pdev->id != ID_ADP5520) {
		dev_err(&pdev->dev, "only ADP5520 supports GPIO\n");
		return -ENODEV;
	}

J
Jingoo Han 已提交
108
	dev = devm_kzalloc(&pdev->dev, sizeof(*dev), GFP_KERNEL);
109
	if (dev == NULL)
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
		return -ENOMEM;

	dev->master = pdev->dev.parent;

	for (gpios = 0, i = 0; i < ADP5520_MAXGPIOS; i++)
		if (pdata->gpio_en_mask & (1 << i))
			dev->lut[gpios++] = 1 << i;

	if (gpios < 1) {
		ret = -EINVAL;
		goto err;
	}

	gc = &dev->gpio_chip;
	gc->direction_input  = adp5520_gpio_direction_input;
	gc->direction_output = adp5520_gpio_direction_output;
	gc->get = adp5520_gpio_get_value;
	gc->set = adp5520_gpio_set_value;
128
	gc->can_sleep = true;
129 130 131 132 133 134

	gc->base = pdata->gpio_start;
	gc->ngpio = gpios;
	gc->label = pdev->name;
	gc->owner = THIS_MODULE;

135
	ret = adp5520_clr_bits(dev->master, ADP5520_GPIO_CFG_1,
136 137
		pdata->gpio_en_mask);

138 139
	if (pdata->gpio_en_mask & ADP5520_GPIO_C3)
		ctl_mask |= ADP5520_C3_MODE;
140

141 142
	if (pdata->gpio_en_mask & ADP5520_GPIO_R3)
		ctl_mask |= ADP5520_R3_MODE;
143 144

	if (ctl_mask)
145
		ret = adp5520_set_bits(dev->master, ADP5520_LED_CONTROL,
146 147
			ctl_mask);

148
	ret |= adp5520_set_bits(dev->master, ADP5520_GPIO_PULLUP,
149 150 151 152 153 154 155
		pdata->gpio_pullup_mask);

	if (ret) {
		dev_err(&pdev->dev, "failed to write\n");
		goto err;
	}

156
	ret = devm_gpiochip_add_data(&pdev->dev, &dev->gpio_chip, dev);
157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173
	if (ret)
		goto err;

	platform_set_drvdata(pdev, dev);
	return 0;

err:
	return ret;
}

static struct platform_driver adp5520_gpio_driver = {
	.driver	= {
		.name	= "adp5520-gpio",
	},
	.probe		= adp5520_gpio_probe,
};

174
module_platform_driver(adp5520_gpio_driver);
175 176 177 178 179

MODULE_AUTHOR("Michael Hennerich <hennerich@blackfin.uclinux.org>");
MODULE_DESCRIPTION("GPIO ADP5520 Driver");
MODULE_LICENSE("GPL");
MODULE_ALIAS("platform:adp5520-gpio");