Release 4.7 drivers/input/touchscreen/ad7879-i2c.c
  
  
/*
 * AD7879-1/AD7889-1 touchscreen (I2C bus)
 *
 * Copyright (C) 2008-2010 Michael Hennerich, Analog Devices Inc.
 *
 * Licensed under the GPL-2 or later.
 */
#include <linux/input.h>	/* BUS_I2C */
#include <linux/i2c.h>
#include <linux/module.h>
#include <linux/types.h>
#include <linux/of.h>
#include <linux/pm.h>
#include "ad7879.h"
#define AD7879_DEVID		0x79	
/* AD7879-1/AD7889-1 */
/* All registers are word-sized.
 * AD7879 uses a high-byte first convention.
 */
static int ad7879_i2c_read(struct device *dev, u8 reg)
{
	struct i2c_client *client = to_i2c_client(dev);
	return i2c_smbus_read_word_swapped(client, reg);
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| mike frysinger | mike frysinger | 31 | 96.88% | 1 | 50.00% | 
| jonathan cameron | jonathan cameron | 1 | 3.12% | 1 | 50.00% | 
 | Total | 32 | 100.00% | 2 | 100.00% | 
static int ad7879_i2c_multi_read(struct device *dev,
				 u8 first_reg, u8 count, u16 *buf)
{
	struct i2c_client *client = to_i2c_client(dev);
	u8 idx;
	i2c_smbus_read_i2c_block_data(client, first_reg, count * 2, (u8 *)buf);
	for (idx = 0; idx < count; ++idx)
		buf[idx] = swab16(buf[idx]);
	return 0;
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| mike frysinger | mike frysinger | 49 | 61.25% | 1 | 50.00% | 
| michael hennerich | michael hennerich | 31 | 38.75% | 1 | 50.00% | 
 | Total | 80 | 100.00% | 2 | 100.00% | 
static int ad7879_i2c_write(struct device *dev, u8 reg, u16 val)
{
	struct i2c_client *client = to_i2c_client(dev);
	return i2c_smbus_write_word_swapped(client, reg, val);
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| mike frysinger | mike frysinger | 36 | 97.30% | 1 | 50.00% | 
| jonathan cameron | jonathan cameron | 1 | 2.70% | 1 | 50.00% | 
 | Total | 37 | 100.00% | 2 | 100.00% | 
static const struct ad7879_bus_ops ad7879_i2c_bus_ops = {
	.bustype	= BUS_I2C,
	.read		= ad7879_i2c_read,
	.multi_read	= ad7879_i2c_multi_read,
	.write		= ad7879_i2c_write,
};
static int ad7879_i2c_probe(struct i2c_client *client,
				      const struct i2c_device_id *id)
{
	struct ad7879 *ts;
	if (!i2c_check_functionality(client->adapter,
				     I2C_FUNC_SMBUS_WORD_DATA)) {
		dev_err(&client->dev, "SMBUS Word Data not Supported\n");
		return -EIO;
	}
	ts = ad7879_probe(&client->dev, AD7879_DEVID, client->irq,
			  &ad7879_i2c_bus_ops);
	if (IS_ERR(ts))
		return PTR_ERR(ts);
	i2c_set_clientdata(client, ts);
	return 0;
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| mike frysinger | mike frysinger | 92 | 100.00% | 1 | 100.00% | 
 | Total | 92 | 100.00% | 1 | 100.00% | 
static int ad7879_i2c_remove(struct i2c_client *client)
{
	struct ad7879 *ts = i2c_get_clientdata(client);
	ad7879_remove(ts);
	return 0;
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| mike frysinger | mike frysinger | 29 | 100.00% | 1 | 100.00% | 
 | Total | 29 | 100.00% | 1 | 100.00% | 
static const struct i2c_device_id ad7879_id[] = {
	{ "ad7879", 0 },
	{ "ad7889", 0 },
	{ }
};
MODULE_DEVICE_TABLE(i2c, ad7879_id);
#ifdef CONFIG_OF
static const struct of_device_id ad7879_i2c_dt_ids[] = {
	{ .compatible = "adi,ad7879-1", },
	{ }
};
MODULE_DEVICE_TABLE(of, ad7879_i2c_dt_ids);
#endif
static struct i2c_driver ad7879_i2c_driver = {
	.driver = {
		.name	= "ad7879",
		.pm	= &ad7879_pm_ops,
		.of_match_table = of_match_ptr(ad7879_i2c_dt_ids),
        },
	.probe		= ad7879_i2c_probe,
	.remove		= ad7879_i2c_remove,
	.id_table	= ad7879_id,
};
module_i2c_driver(ad7879_i2c_driver);
MODULE_AUTHOR("Michael Hennerich <hennerich@blackfin.uclinux.org>");
MODULE_DESCRIPTION("AD7879(-1) touchscreen I2C bus driver");
MODULE_LICENSE("GPL");
Overall Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| mike frysinger | mike frysinger | 370 | 81.68% | 1 | 12.50% | 
| stefan agner | stefan agner | 41 | 9.05% | 1 | 12.50% | 
| michael hennerich | michael hennerich | 31 | 6.84% | 1 | 12.50% | 
| mark brown | mark brown | 6 | 1.32% | 1 | 12.50% | 
| dmitry torokhov | dmitry torokhov | 2 | 0.44% | 2 | 25.00% | 
| jonathan cameron | jonathan cameron | 2 | 0.44% | 1 | 12.50% | 
| axel lin | axel lin | 1 | 0.22% | 1 | 12.50% | 
 | Total | 453 | 100.00% | 8 | 100.00% | 
  
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.