blob: 1ae9ba851c9ac08f6a737fc81d0c24f34b05214e [file] [log] [blame]
Wolfram Sange9528052010-03-05 13:44:33 -08001/*
Wolfram Sange9528052010-03-05 13:44:33 -08002 * Copyright (C) 2009 Wolfram Sang, Pengutronix
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 *
8 * Check max730x.c for further details.
9 */
10
11#include <linux/module.h>
12#include <linux/init.h>
13#include <linux/platform_device.h>
14#include <linux/mutex.h>
15#include <linux/i2c.h>
16#include <linux/spi/max7301.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090017#include <linux/slab.h>
Wolfram Sange9528052010-03-05 13:44:33 -080018
19static int max7300_i2c_write(struct device *dev, unsigned int reg,
20 unsigned int val)
21{
22 struct i2c_client *client = to_i2c_client(dev);
23
24 return i2c_smbus_write_byte_data(client, reg, val);
25}
26
27static int max7300_i2c_read(struct device *dev, unsigned int reg)
28{
29 struct i2c_client *client = to_i2c_client(dev);
30
31 return i2c_smbus_read_byte_data(client, reg);
32}
33
Bill Pemberton38363092012-11-19 13:22:34 -050034static int max7300_probe(struct i2c_client *client,
Wolfram Sange9528052010-03-05 13:44:33 -080035 const struct i2c_device_id *id)
36{
37 struct max7301 *ts;
Wolfram Sange9528052010-03-05 13:44:33 -080038
39 if (!i2c_check_functionality(client->adapter,
40 I2C_FUNC_SMBUS_BYTE_DATA))
41 return -EIO;
42
Jingoo Hanc3fe2bf2013-03-15 18:14:46 +090043 ts = devm_kzalloc(&client->dev, sizeof(struct max7301), GFP_KERNEL);
Wolfram Sange9528052010-03-05 13:44:33 -080044 if (!ts)
45 return -ENOMEM;
46
47 ts->read = max7300_i2c_read;
48 ts->write = max7300_i2c_write;
49 ts->dev = &client->dev;
50
Varka Bhadram76a2dae2015-03-31 09:49:09 +053051 return __max730x_probe(ts);
Wolfram Sange9528052010-03-05 13:44:33 -080052}
53
Bill Pemberton206210c2012-11-19 13:25:50 -050054static int max7300_remove(struct i2c_client *client)
Wolfram Sange9528052010-03-05 13:44:33 -080055{
56 return __max730x_remove(&client->dev);
57}
58
59static const struct i2c_device_id max7300_id[] = {
60 { "max7300", 0 },
61 { }
62};
63MODULE_DEVICE_TABLE(i2c, max7300_id);
64
65static struct i2c_driver max7300_driver = {
66 .driver = {
67 .name = "max7300",
Wolfram Sange9528052010-03-05 13:44:33 -080068 },
69 .probe = max7300_probe,
Bill Pemberton8283c4f2012-11-19 13:20:08 -050070 .remove = max7300_remove,
Wolfram Sange9528052010-03-05 13:44:33 -080071 .id_table = max7300_id,
72};
73
74static int __init max7300_init(void)
75{
76 return i2c_add_driver(&max7300_driver);
77}
78subsys_initcall(max7300_init);
79
80static void __exit max7300_exit(void)
81{
82 i2c_del_driver(&max7300_driver);
83}
84module_exit(max7300_exit);
85
86MODULE_AUTHOR("Wolfram Sang");
87MODULE_LICENSE("GPL v2");
88MODULE_DESCRIPTION("MAX7300 GPIO-Expander");