Merge tag 'v3.10.91' into update
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / gpio / gpio-max7301.c
CommitLineData
e952805d 1/*
0c36ec31
JB
2 * Copyright (C) 2006 Juergen Beisert, Pengutronix
3 * Copyright (C) 2008 Guennadi Liakhovetski, Pengutronix
e952805d 4 * Copyright (C) 2009 Wolfram Sang, Pengutronix
0c36ec31
JB
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 *
e952805d 10 * Check max730x.c for further details.
0c36ec31
JB
11 */
12
e952805d 13#include <linux/module.h>
0c36ec31
JB
14#include <linux/init.h>
15#include <linux/platform_device.h>
16#include <linux/mutex.h>
5a0e3ad6 17#include <linux/slab.h>
0c36ec31
JB
18#include <linux/spi/spi.h>
19#include <linux/spi/max7301.h>
0c36ec31 20
e952805d
WS
21/* A write to the MAX7301 means one message with one transfer */
22static int max7301_spi_write(struct device *dev, unsigned int reg,
23 unsigned int val)
0c36ec31 24{
e952805d 25 struct spi_device *spi = to_spi_device(dev);
0c36ec31 26 u16 word = ((reg & 0x7F) << 8) | (val & 0xFF);
e952805d 27
0c36ec31
JB
28 return spi_write(spi, (const u8 *)&word, sizeof(word));
29}
30
e952805d
WS
31/* A read from the MAX7301 means two transfers; here, one message each */
32
33static int max7301_spi_read(struct device *dev, unsigned int reg)
0c36ec31
JB
34{
35 int ret;
36 u16 word;
e952805d 37 struct spi_device *spi = to_spi_device(dev);
0c36ec31
JB
38
39 word = 0x8000 | (reg << 8);
40 ret = spi_write(spi, (const u8 *)&word, sizeof(word));
41 if (ret)
42 return ret;
43 /*
44 * This relies on the fact, that a transfer with NULL tx_buf shifts out
45 * zero bytes (=NOOP for MAX7301)
46 */
47 ret = spi_read(spi, (u8 *)&word, sizeof(word));
48 if (ret)
49 return ret;
50 return word & 0xff;
51}
52
3836309d 53static int max7301_probe(struct spi_device *spi)
0c36ec31
JB
54{
55 struct max7301 *ts;
e952805d 56 int ret;
0c36ec31 57
e952805d 58 /* bits_per_word cannot be configured in platform data */
047b93a3
CL
59 if (spi->dev.platform_data)
60 spi->bits_per_word = 16;
0c36ec31
JB
61 ret = spi_setup(spi);
62 if (ret < 0)
63 return ret;
64
4cb06cd5 65 ts = devm_kzalloc(&spi->dev, sizeof(struct max7301), GFP_KERNEL);
0c36ec31
JB
66 if (!ts)
67 return -ENOMEM;
68
e952805d
WS
69 ts->read = max7301_spi_read;
70 ts->write = max7301_spi_write;
71 ts->dev = &spi->dev;
0c36ec31 72
e952805d 73 ret = __max730x_probe(ts);
0c36ec31
JB
74 return ret;
75}
76
206210ce 77static int max7301_remove(struct spi_device *spi)
0c36ec31 78{
e952805d 79 return __max730x_remove(&spi->dev);
0c36ec31
JB
80}
81
e952805d
WS
82static const struct spi_device_id max7301_id[] = {
83 { "max7301", 0 },
84 { }
85};
86MODULE_DEVICE_TABLE(spi, max7301_id);
87
0c36ec31
JB
88static struct spi_driver max7301_driver = {
89 .driver = {
e952805d
WS
90 .name = "max7301",
91 .owner = THIS_MODULE,
0c36ec31 92 },
e952805d 93 .probe = max7301_probe,
8283c4ff 94 .remove = max7301_remove,
e952805d 95 .id_table = max7301_id,
0c36ec31
JB
96};
97
98static int __init max7301_init(void)
99{
100 return spi_register_driver(&max7301_driver);
101}
673c0c00
DB
102/* register after spi postcore initcall and before
103 * subsys initcalls that may rely on these GPIOs
104 */
105subsys_initcall(max7301_init);
0c36ec31
JB
106
107static void __exit max7301_exit(void)
108{
109 spi_unregister_driver(&max7301_driver);
110}
0c36ec31
JB
111module_exit(max7301_exit);
112
e952805d 113MODULE_AUTHOR("Juergen Beisert, Wolfram Sang");
0c36ec31 114MODULE_LICENSE("GPL v2");
e952805d 115MODULE_DESCRIPTION("MAX7301 GPIO-Expander");