gpio-pcf857x.c 11.5 KB
Newer Older
1
/*
G
Grant Likely 已提交
2
 * Driver for pcf857x, pca857x, and pca967x I2C GPIO expanders
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
 *
 * Copyright (C) 2007 David Brownell
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */

21
#include <linux/gpio.h>
22 23
#include <linux/i2c.h>
#include <linux/i2c/pcf857x.h>
24 25 26
#include <linux/interrupt.h>
#include <linux/irq.h>
#include <linux/irqdomain.h>
27
#include <linux/kernel.h>
28
#include <linux/module.h>
29
#include <linux/slab.h>
30 31
#include <linux/spinlock.h>
#include <linux/workqueue.h>
32 33


34 35
static const struct i2c_device_id pcf857x_id[] = {
	{ "pcf8574", 8 },
36
	{ "pcf8574a", 8 },
37 38 39 40 41 42 43 44 45
	{ "pca8574", 8 },
	{ "pca9670", 8 },
	{ "pca9672", 8 },
	{ "pca9674", 8 },
	{ "pcf8575", 16 },
	{ "pca8575", 16 },
	{ "pca9671", 16 },
	{ "pca9673", 16 },
	{ "pca9675", 16 },
46 47
	{ "max7328", 8 },
	{ "max7329", 8 },
48
	{ "tca9554", 8 },
49 50 51 52
	{ }
};
MODULE_DEVICE_TABLE(i2c, pcf857x_id);

53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
/*
 * The pcf857x, pca857x, and pca967x chips only expose one read and one
 * write register.  Writing a "one" bit (to match the reset state) lets
 * that pin be used as an input; it's not an open-drain model, but acts
 * a bit like one.  This is described as "quasi-bidirectional"; read the
 * chip documentation for details.
 *
 * Many other I2C GPIO expander chips (like the pca953x models) have
 * more complex register models and more conventional circuitry using
 * push/pull drivers.  They often use the same 0x20..0x27 addresses as
 * pcf857x parts, making the "legacy" I2C driver model problematic.
 */
struct pcf857x {
	struct gpio_chip	chip;
	struct i2c_client	*client;
68
	struct mutex		lock;		/* protect 'out' */
69 70 71
	struct work_struct	work;		/* irq demux work */
	struct irq_domain	*irq_domain;	/* for irq demux  */
	spinlock_t		slock;		/* protect irq demux */
72
	unsigned		out;		/* software latch */
73 74
	unsigned		status;		/* current status */
	int			irq;		/* real irq number */
75 76 77

	int (*write)(struct i2c_client *client, unsigned data);
	int (*read)(struct i2c_client *client);
78 79 80 81 82 83
};

/*-------------------------------------------------------------------------*/

/* Talk to 8-bit I/O expander */

84
static int i2c_write_le8(struct i2c_client *client, unsigned data)
85
{
86
	return i2c_smbus_write_byte(client, data);
87 88
}

89
static int i2c_read_le8(struct i2c_client *client)
90
{
91
	return (int)i2c_smbus_read_byte(client);
92 93 94 95
}

/* Talk to 16-bit I/O expander */

96
static int i2c_write_le16(struct i2c_client *client, unsigned word)
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
{
	u8 buf[2] = { word & 0xff, word >> 8, };
	int status;

	status = i2c_master_send(client, buf, 2);
	return (status < 0) ? status : 0;
}

static int i2c_read_le16(struct i2c_client *client)
{
	u8 buf[2];
	int status;

	status = i2c_master_recv(client, buf, 2);
	if (status < 0)
		return status;
	return (buf[1] << 8) | buf[0];
}

116 117 118
/*-------------------------------------------------------------------------*/

static int pcf857x_input(struct gpio_chip *chip, unsigned offset)
119 120
{
	struct pcf857x	*gpio = container_of(chip, struct pcf857x, chip);
121
	int		status;
122

123
	mutex_lock(&gpio->lock);
124
	gpio->out |= (1 << offset);
125
	status = gpio->write(gpio->client, gpio->out);
126 127 128
	mutex_unlock(&gpio->lock);

	return status;
129 130
}

131
static int pcf857x_get(struct gpio_chip *chip, unsigned offset)
132 133 134 135
{
	struct pcf857x	*gpio = container_of(chip, struct pcf857x, chip);
	int		value;

136
	value = gpio->read(gpio->client);
137 138 139
	return (value < 0) ? 0 : (value & (1 << offset));
}

140
static int pcf857x_output(struct gpio_chip *chip, unsigned offset, int value)
141 142 143
{
	struct pcf857x	*gpio = container_of(chip, struct pcf857x, chip);
	unsigned	bit = 1 << offset;
144
	int		status;
145

146
	mutex_lock(&gpio->lock);
147 148 149 150
	if (value)
		gpio->out |= bit;
	else
		gpio->out &= ~bit;
151
	status = gpio->write(gpio->client, gpio->out);
152 153 154
	mutex_unlock(&gpio->lock);

	return status;
155 156
}

157
static void pcf857x_set(struct gpio_chip *chip, unsigned offset, int value)
158
{
159
	pcf857x_output(chip, offset, value);
160 161 162 163
}

/*-------------------------------------------------------------------------*/

164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226
static int pcf857x_to_irq(struct gpio_chip *chip, unsigned offset)
{
	struct pcf857x *gpio = container_of(chip, struct pcf857x, chip);

	return irq_create_mapping(gpio->irq_domain, offset);
}

static void pcf857x_irq_demux_work(struct work_struct *work)
{
	struct pcf857x *gpio = container_of(work,
					       struct pcf857x,
					       work);
	unsigned long change, i, status, flags;

	status = gpio->read(gpio->client);

	spin_lock_irqsave(&gpio->slock, flags);

	change = gpio->status ^ status;
	for_each_set_bit(i, &change, gpio->chip.ngpio)
		generic_handle_irq(irq_find_mapping(gpio->irq_domain, i));
	gpio->status = status;

	spin_unlock_irqrestore(&gpio->slock, flags);
}

static irqreturn_t pcf857x_irq_demux(int irq, void *data)
{
	struct pcf857x	*gpio = data;

	/*
	 * pcf857x can't read/write data here,
	 * since i2c data access might go to sleep.
	 */
	schedule_work(&gpio->work);

	return IRQ_HANDLED;
}

static int pcf857x_irq_domain_map(struct irq_domain *domain, unsigned int virq,
				 irq_hw_number_t hw)
{
	irq_set_chip_and_handler(virq,
				 &dummy_irq_chip,
				 handle_level_irq);
	return 0;
}

static struct irq_domain_ops pcf857x_irq_domain_ops = {
	.map	= pcf857x_irq_domain_map,
};

static void pcf857x_irq_domain_cleanup(struct pcf857x *gpio)
{
	if (gpio->irq_domain)
		irq_domain_remove(gpio->irq_domain);

	if (gpio->irq)
		free_irq(gpio->irq, gpio);
}

static int pcf857x_irq_domain_init(struct pcf857x *gpio,
				   struct pcf857x_platform_data *pdata,
227
				   struct i2c_client *client)
228 229 230
{
	int status;

231
	gpio->irq_domain = irq_domain_add_linear(client->dev.of_node,
232 233 234 235 236 237 238
						 gpio->chip.ngpio,
						 &pcf857x_irq_domain_ops,
						 NULL);
	if (!gpio->irq_domain)
		goto fail;

	/* enable real irq */
239 240
	status = request_irq(client->irq, pcf857x_irq_demux, 0,
			     dev_name(&client->dev), gpio);
241 242 243 244 245 246
	if (status)
		goto fail;

	/* enable gpio_to_irq() */
	INIT_WORK(&gpio->work, pcf857x_irq_demux_work);
	gpio->chip.to_irq	= pcf857x_to_irq;
247
	gpio->irq		= client->irq;
248 249 250 251 252 253 254 255 256 257

	return 0;

fail:
	pcf857x_irq_domain_cleanup(gpio);
	return -EINVAL;
}

/*-------------------------------------------------------------------------*/

258 259
static int pcf857x_probe(struct i2c_client *client,
			 const struct i2c_device_id *id)
260 261 262 263 264
{
	struct pcf857x_platform_data	*pdata;
	struct pcf857x			*gpio;
	int				status;

J
Jingoo Han 已提交
265
	pdata = dev_get_platdata(&client->dev);
266 267 268
	if (!pdata) {
		dev_dbg(&client->dev, "no platform data\n");
	}
269 270

	/* Allocate, initialize, and register this gpio_chip. */
J
Jingoo Han 已提交
271
	gpio = devm_kzalloc(&client->dev, sizeof(*gpio), GFP_KERNEL);
272 273 274
	if (!gpio)
		return -ENOMEM;

275
	mutex_init(&gpio->lock);
276
	spin_lock_init(&gpio->slock);
277

278 279 280 281 282 283 284 285 286
	gpio->chip.base			= pdata ? pdata->gpio_base : -1;
	gpio->chip.can_sleep		= 1;
	gpio->chip.dev			= &client->dev;
	gpio->chip.owner		= THIS_MODULE;
	gpio->chip.get			= pcf857x_get;
	gpio->chip.set			= pcf857x_set;
	gpio->chip.direction_input	= pcf857x_input;
	gpio->chip.direction_output	= pcf857x_output;
	gpio->chip.ngpio		= id->driver_data;
287

288
	/* enable gpio_to_irq() if platform has settings */
289 290
	if (pdata && client->irq) {
		status = pcf857x_irq_domain_init(gpio, pdata, client);
291 292 293 294 295 296
		if (status < 0) {
			dev_err(&client->dev, "irq_domain init failed\n");
			goto fail;
		}
	}

297 298 299 300 301 302 303 304 305 306 307
	/* NOTE:  the OnSemi jlc1562b is also largely compatible with
	 * these parts, notably for output.  It has a low-resolution
	 * DAC instead of pin change IRQs; and its inputs can be the
	 * result of comparators.
	 */

	/* 8574 addresses are 0x20..0x27; 8574a uses 0x38..0x3f;
	 * 9670, 9672, 9764, and 9764a use quite a variety.
	 *
	 * NOTE: we don't distinguish here between *4 and *4a parts.
	 */
308
	if (gpio->chip.ngpio == 8) {
309 310
		gpio->write	= i2c_write_le8;
		gpio->read	= i2c_read_le8;
311 312 313 314 315 316 317 318 319 320 321 322 323 324 325

		if (!i2c_check_functionality(client->adapter,
				I2C_FUNC_SMBUS_BYTE))
			status = -EIO;

		/* fail if there's no chip present */
		else
			status = i2c_smbus_read_byte(client);

	/* '75/'75c addresses are 0x20..0x27, just like the '74;
	 * the '75c doesn't have a current source pulling high.
	 * 9671, 9673, and 9765 use quite a variety of addresses.
	 *
	 * NOTE: we don't distinguish here between '75 and '75c parts.
	 */
326
	} else if (gpio->chip.ngpio == 16) {
327 328
		gpio->write	= i2c_write_le16;
		gpio->read	= i2c_read_le16;
329 330 331 332 333 334 335 336

		if (!i2c_check_functionality(client->adapter, I2C_FUNC_I2C))
			status = -EIO;

		/* fail if there's no chip present */
		else
			status = i2c_read_le16(client);

337 338 339 340
	} else {
		dev_dbg(&client->dev, "unsupported number of gpios\n");
		status = -EINVAL;
	}
341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364

	if (status < 0)
		goto fail;

	gpio->chip.label = client->name;

	gpio->client = client;
	i2c_set_clientdata(client, gpio);

	/* NOTE:  these chips have strange "quasi-bidirectional" I/O pins.
	 * We can't actually know whether a pin is configured (a) as output
	 * and driving the signal low, or (b) as input and reporting a low
	 * value ... without knowing the last value written since the chip
	 * came out of reset (if any).  We can't read the latched output.
	 *
	 * In short, the only reliable solution for setting up pin direction
	 * is to do it explicitly.  The setup() method can do that, but it
	 * may cause transient glitching since it can't know the last value
	 * written (some pins may need to be driven low).
	 *
	 * Using pdata->n_latch avoids that trouble.  When left initialized
	 * to zero, our software copy of the "latch" then matches the chip's
	 * all-ones reset state.  Otherwise it flags pins to be driven low.
	 */
365
	gpio->out = pdata ? ~pdata->n_latch : ~0;
366
	gpio->status = gpio->out;
367 368 369 370 371 372 373 374

	status = gpiochip_add(&gpio->chip);
	if (status < 0)
		goto fail;

	/* Let platform code set up the GPIOs and their users.
	 * Now is the first time anyone could use them.
	 */
375
	if (pdata && pdata->setup) {
376 377 378 379 380 381 382
		status = pdata->setup(client,
				gpio->chip.base, gpio->chip.ngpio,
				pdata->context);
		if (status < 0)
			dev_warn(&client->dev, "setup --> %d\n", status);
	}

383 384
	dev_info(&client->dev, "probed\n");

385 386 387 388 389
	return 0;

fail:
	dev_dbg(&client->dev, "probe error %d for '%s'\n",
			status, client->name);
390

391
	if (pdata && client->irq)
392 393
		pcf857x_irq_domain_cleanup(gpio);

394 395 396 397 398
	return status;
}

static int pcf857x_remove(struct i2c_client *client)
{
J
Jingoo Han 已提交
399
	struct pcf857x_platform_data	*pdata = dev_get_platdata(&client->dev);
400 401 402
	struct pcf857x			*gpio = i2c_get_clientdata(client);
	int				status = 0;

403
	if (pdata && pdata->teardown) {
404 405 406 407 408 409 410 411 412 413
		status = pdata->teardown(client,
				gpio->chip.base, gpio->chip.ngpio,
				pdata->context);
		if (status < 0) {
			dev_err(&client->dev, "%s --> %d\n",
					"teardown", status);
			return status;
		}
	}

414
	if (pdata && client->irq)
415 416
		pcf857x_irq_domain_cleanup(gpio);

417
	status = gpiochip_remove(&gpio->chip);
J
Jingoo Han 已提交
418
	if (status)
419 420 421 422 423 424 425 426 427 428 429
		dev_err(&client->dev, "%s --> %d\n", "remove", status);
	return status;
}

static struct i2c_driver pcf857x_driver = {
	.driver = {
		.name	= "pcf857x",
		.owner	= THIS_MODULE,
	},
	.probe	= pcf857x_probe,
	.remove	= pcf857x_remove,
430
	.id_table = pcf857x_id,
431 432 433 434 435 436
};

static int __init pcf857x_init(void)
{
	return i2c_add_driver(&pcf857x_driver);
}
437 438 439 440
/* register after i2c postcore initcall and before
 * subsys initcalls that may rely on these GPIOs
 */
subsys_initcall(pcf857x_init);
441 442 443 444 445 446 447 448 449

static void __exit pcf857x_exit(void)
{
	i2c_del_driver(&pcf857x_driver);
}
module_exit(pcf857x_exit);

MODULE_LICENSE("GPL");
MODULE_AUTHOR("David Brownell");