blob: ff782a5de235f8fd62241b2e06d69c10527d9783 [file] [log] [blame]
Mark Brownc6f75622012-06-19 16:35:49 +01001/*
2 * Arizona-i2c.c -- Arizona I2C bus interface
3 *
4 * Copyright 2012 Wolfson Microelectronics plc
5 *
6 * Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
7 *
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.
11 */
12
13#include <linux/err.h>
14#include <linux/i2c.h>
15#include <linux/module.h>
16#include <linux/pm_runtime.h>
17#include <linux/regmap.h>
18#include <linux/regulator/consumer.h>
19#include <linux/slab.h>
Sachin Kamat3d6d1d12013-10-16 14:26:56 +053020#include <linux/of.h>
Mark Brownc6f75622012-06-19 16:35:49 +010021
22#include <linux/mfd/arizona/core.h>
23
24#include "arizona.h"
25
Bill Pembertonf791be42012-11-19 13:23:04 -050026static int arizona_i2c_probe(struct i2c_client *i2c,
Lee Jones942786e2014-07-02 14:28:46 +010027 const struct i2c_device_id *id)
Mark Brownc6f75622012-06-19 16:35:49 +010028{
29 struct arizona *arizona;
30 const struct regmap_config *regmap_config;
Lee Jones942786e2014-07-02 14:28:46 +010031 unsigned long type;
32 int ret;
Mark Brownc6f75622012-06-19 16:35:49 +010033
Mark Brownd7810092013-03-25 00:11:27 +000034 if (i2c->dev.of_node)
35 type = arizona_of_get_type(&i2c->dev);
36 else
37 type = id->driver_data;
38
39 switch (type) {
Mark Brown863df8d2012-07-05 20:35:31 +010040#ifdef CONFIG_MFD_WM5102
Mark Brownc6f75622012-06-19 16:35:49 +010041 case WM5102:
42 regmap_config = &wm5102_i2c_regmap;
43 break;
Mark Brown863df8d2012-07-05 20:35:31 +010044#endif
Mark Browne102bef2012-07-10 12:37:58 +010045#ifdef CONFIG_MFD_WM5110
46 case WM5110:
Richard Fitzgeralde5d4ef02015-01-17 15:21:22 +000047 case WM8280:
Mark Browne102bef2012-07-10 12:37:58 +010048 regmap_config = &wm5110_i2c_regmap;
49 break;
50#endif
Charles Keepaxdc7d4862013-06-13 09:43:29 +010051#ifdef CONFIG_MFD_WM8997
52 case WM8997:
53 regmap_config = &wm8997_i2c_regmap;
54 break;
55#endif
Mark Brownc6f75622012-06-19 16:35:49 +010056 default:
57 dev_err(&i2c->dev, "Unknown device type %ld\n",
58 id->driver_data);
59 return -EINVAL;
60 }
61
62 arizona = devm_kzalloc(&i2c->dev, sizeof(*arizona), GFP_KERNEL);
63 if (arizona == NULL)
64 return -ENOMEM;
65
66 arizona->regmap = devm_regmap_init_i2c(i2c, regmap_config);
67 if (IS_ERR(arizona->regmap)) {
68 ret = PTR_ERR(arizona->regmap);
69 dev_err(&i2c->dev, "Failed to allocate register map: %d\n",
70 ret);
71 return ret;
72 }
73
74 arizona->type = id->driver_data;
75 arizona->dev = &i2c->dev;
76 arizona->irq = i2c->irq;
77
78 return arizona_dev_init(arizona);
79}
80
Bill Pemberton4740f732012-11-19 13:26:01 -050081static int arizona_i2c_remove(struct i2c_client *i2c)
Mark Brownc6f75622012-06-19 16:35:49 +010082{
83 struct arizona *arizona = dev_get_drvdata(&i2c->dev);
84 arizona_dev_exit(arizona);
85 return 0;
86}
87
88static const struct i2c_device_id arizona_i2c_id[] = {
89 { "wm5102", WM5102 },
Mark Browne102bef2012-07-10 12:37:58 +010090 { "wm5110", WM5110 },
Richard Fitzgeralde5d4ef02015-01-17 15:21:22 +000091 { "wm8280", WM8280 },
Charles Keepaxdc7d4862013-06-13 09:43:29 +010092 { "wm8997", WM8997 },
Mark Brownc6f75622012-06-19 16:35:49 +010093 { }
94};
95MODULE_DEVICE_TABLE(i2c, arizona_i2c_id);
96
97static struct i2c_driver arizona_i2c_driver = {
98 .driver = {
99 .name = "arizona",
100 .owner = THIS_MODULE,
101 .pm = &arizona_pm_ops,
Mark Brownd7810092013-03-25 00:11:27 +0000102 .of_match_table = of_match_ptr(arizona_of_match),
Mark Brownc6f75622012-06-19 16:35:49 +0100103 },
104 .probe = arizona_i2c_probe,
Bill Pemberton84449212012-11-19 13:20:24 -0500105 .remove = arizona_i2c_remove,
Mark Brownc6f75622012-06-19 16:35:49 +0100106 .id_table = arizona_i2c_id,
107};
108
109module_i2c_driver(arizona_i2c_driver);
110
111MODULE_DESCRIPTION("Arizona I2C bus interface");
112MODULE_AUTHOR("Mark Brown <broonie@opensource.wolfsonmicro.com>");
113MODULE_LICENSE("GPL");