2 * drivers/gpio/max7301.c
4 * Copyright (C) 2006 Juergen Beisert, Pengutronix
5 * Copyright (C) 2008 Guennadi Liakhovetski, Pengutronix
6 * Copyright (C) 2009 Wolfram Sang, Pengutronix
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
12 * Check max730x.c for further details.
15 #include <linux/module.h>
16 #include <linux/init.h>
17 #include <linux/platform_device.h>
18 #include <linux/mutex.h>
19 #include <linux/slab.h>
20 #include <linux/spi/spi.h>
21 #include <linux/spi/max7301.h>
23 /* A write to the MAX7301 means one message with one transfer */
24 static int max7301_spi_write(struct device
*dev
, unsigned int reg
,
27 struct spi_device
*spi
= to_spi_device(dev
);
28 u16 word
= ((reg
& 0x7F) << 8) | (val
& 0xFF);
30 return spi_write(spi
, (const u8
*)&word
, sizeof(word
));
33 /* A read from the MAX7301 means two transfers; here, one message each */
35 static int max7301_spi_read(struct device
*dev
, unsigned int reg
)
39 struct spi_device
*spi
= to_spi_device(dev
);
41 word
= 0x8000 | (reg
<< 8);
42 ret
= spi_write(spi
, (const u8
*)&word
, sizeof(word
));
46 * This relies on the fact, that a transfer with NULL tx_buf shifts out
47 * zero bytes (=NOOP for MAX7301)
49 ret
= spi_read(spi
, (u8
*)&word
, sizeof(word
));
55 static int __devinit
max7301_probe(struct spi_device
*spi
)
60 /* bits_per_word cannot be configured in platform data */
61 spi
->bits_per_word
= 16;
66 ts
= kzalloc(sizeof(struct max7301
), GFP_KERNEL
);
70 ts
->read
= max7301_spi_read
;
71 ts
->write
= max7301_spi_write
;
74 ret
= __max730x_probe(ts
);
80 static int __devexit
max7301_remove(struct spi_device
*spi
)
82 return __max730x_remove(&spi
->dev
);
85 static const struct spi_device_id max7301_id
[] = {
89 MODULE_DEVICE_TABLE(spi
, max7301_id
);
91 static struct spi_driver max7301_driver
= {
96 .probe
= max7301_probe
,
97 .remove
= __devexit_p(max7301_remove
),
98 .id_table
= max7301_id
,
101 static int __init
max7301_init(void)
103 return spi_register_driver(&max7301_driver
);
105 /* register after spi postcore initcall and before
106 * subsys initcalls that may rely on these GPIOs
108 subsys_initcall(max7301_init
);
110 static void __exit
max7301_exit(void)
112 spi_unregister_driver(&max7301_driver
);
114 module_exit(max7301_exit
);
116 MODULE_AUTHOR("Juergen Beisert, Wolfram Sang");
117 MODULE_LICENSE("GPL v2");
118 MODULE_DESCRIPTION("MAX7301 GPIO-Expander");