ad714x-spi.c 2.5 KB
Newer Older
1 2 3 4 5 6 7 8
/*
 * AD714X CapTouch Programmable Controller driver (SPI bus)
 *
 * Copyright 2009 Analog Devices Inc.
 *
 * Licensed under the GPL-2 or later.
 */

9
#include <linux/input.h>	/* BUS_SPI */
10 11
#include <linux/module.h>
#include <linux/spi/spi.h>
12
#include <linux/pm.h>
13 14 15 16 17 18 19
#include <linux/types.h>
#include "ad714x.h"

#define AD714x_SPI_CMD_PREFIX      0xE000   /* bits 15:11 */
#define AD714x_SPI_READ            BIT(10)

#ifdef CONFIG_PM
20
static int ad714x_spi_suspend(struct device *dev)
21
{
22
	return ad714x_disable(spi_get_drvdata(to_spi_device(dev)));
23 24
}

25
static int ad714x_spi_resume(struct device *dev)
26
{
27
	return ad714x_enable(spi_get_drvdata(to_spi_device(dev)));
28 29 30
}
#endif

31 32
static SIMPLE_DEV_PM_OPS(ad714x_spi_pm, ad714x_spi_suspend, ad714x_spi_resume);

33 34
static int ad714x_spi_read(struct device *dev,
			   unsigned short reg, unsigned short *data)
35 36
{
	struct spi_device *spi = to_spi_device(dev);
37 38 39
	unsigned short tx = cpu_to_be16(AD714x_SPI_CMD_PREFIX |
					AD714x_SPI_READ | reg);
	int ret;
40

41 42 43 44 45
	ret = spi_write_then_read(spi, &tx, 2, data, 2);

	*data = be16_to_cpup(data);

	return ret;
46 47
}

48 49
static int ad714x_spi_write(struct device *dev,
			    unsigned short reg, unsigned short data)
50 51 52
{
	struct spi_device *spi = to_spi_device(dev);
	unsigned short tx[2] = {
53 54
		cpu_to_be16(AD714x_SPI_CMD_PREFIX | reg),
		cpu_to_be16(data)
55 56 57 58 59 60 61 62
	};

	return spi_write(spi, (u8 *)tx, 4);
}

static int __devinit ad714x_spi_probe(struct spi_device *spi)
{
	struct ad714x_chip *chip;
63 64 65 66 67 68
	int err;

	spi->bits_per_word = 8;
	err = spi_setup(spi);
	if (err < 0)
		return err;
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93

	chip = ad714x_probe(&spi->dev, BUS_SPI, spi->irq,
			    ad714x_spi_read, ad714x_spi_write);
	if (IS_ERR(chip))
		return PTR_ERR(chip);

	spi_set_drvdata(spi, chip);

	return 0;
}

static int __devexit ad714x_spi_remove(struct spi_device *spi)
{
	struct ad714x_chip *chip = spi_get_drvdata(spi);

	ad714x_remove(chip);
	spi_set_drvdata(spi, NULL);

	return 0;
}

static struct spi_driver ad714x_spi_driver = {
	.driver = {
		.name	= "ad714x_captouch",
		.owner	= THIS_MODULE,
94
		.pm	= &ad714x_spi_pm,
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
	},
	.probe		= ad714x_spi_probe,
	.remove		= __devexit_p(ad714x_spi_remove),
};

static __init int ad714x_spi_init(void)
{
	return spi_register_driver(&ad714x_spi_driver);
}
module_init(ad714x_spi_init);

static __exit void ad714x_spi_exit(void)
{
	spi_unregister_driver(&ad714x_spi_driver);
}
module_exit(ad714x_spi_exit);

MODULE_DESCRIPTION("Analog Devices AD714X Capacitance Touch Sensor SPI Bus Driver");
MODULE_AUTHOR("Barry Song <21cnbao@gmail.com>");
MODULE_LICENSE("GPL");