]>
Commit | Line | Data |
---|---|---|
d2912cb1 | 1 | // SPDX-License-Identifier: GPL-2.0-only |
c6f75622 MB |
2 | /* |
3 | * Arizona-i2c.c -- Arizona I2C bus interface | |
4 | * | |
5 | * Copyright 2012 Wolfson Microelectronics plc | |
6 | * | |
7 | * Author: Mark Brown <[email protected]> | |
c6f75622 MB |
8 | */ |
9 | ||
10 | #include <linux/err.h> | |
11 | #include <linux/i2c.h> | |
12 | #include <linux/module.h> | |
13 | #include <linux/pm_runtime.h> | |
14 | #include <linux/regmap.h> | |
15 | #include <linux/regulator/consumer.h> | |
16 | #include <linux/slab.h> | |
3d6d1d1c | 17 | #include <linux/of.h> |
c6f75622 MB |
18 | |
19 | #include <linux/mfd/arizona/core.h> | |
20 | ||
21 | #include "arizona.h" | |
22 | ||
6cb7ac1c | 23 | static int arizona_i2c_probe(struct i2c_client *i2c) |
c6f75622 | 24 | { |
6cb7ac1c | 25 | const struct i2c_device_id *id = i2c_client_get_device_id(i2c); |
039da225 | 26 | const void *match_data; |
c6f75622 | 27 | struct arizona *arizona; |
b61c1ec0 | 28 | const struct regmap_config *regmap_config = NULL; |
039da225 | 29 | unsigned long type = 0; |
942786e6 | 30 | int ret; |
c6f75622 | 31 | |
039da225 HG |
32 | match_data = device_get_match_data(&i2c->dev); |
33 | if (match_data) | |
34 | type = (unsigned long)match_data; | |
35 | else if (id) | |
d781009c MB |
36 | type = id->driver_data; |
37 | ||
38 | switch (type) { | |
c6f75622 | 39 | case WM5102: |
b61c1ec0 RF |
40 | if (IS_ENABLED(CONFIG_MFD_WM5102)) |
41 | regmap_config = &wm5102_i2c_regmap; | |
c6f75622 | 42 | break; |
e102befe | 43 | case WM5110: |
e5d4ef0d | 44 | case WM8280: |
b61c1ec0 RF |
45 | if (IS_ENABLED(CONFIG_MFD_WM5110)) |
46 | regmap_config = &wm5110_i2c_regmap; | |
e102befe | 47 | break; |
dc7d4863 | 48 | case WM8997: |
b61c1ec0 RF |
49 | if (IS_ENABLED(CONFIG_MFD_WM8997)) |
50 | regmap_config = &wm8997_i2c_regmap; | |
dc7d4863 | 51 | break; |
6887b042 RF |
52 | case WM8998: |
53 | case WM1814: | |
b61c1ec0 RF |
54 | if (IS_ENABLED(CONFIG_MFD_WM8998)) |
55 | regmap_config = &wm8998_i2c_regmap; | |
6887b042 | 56 | break; |
c6f75622 | 57 | default: |
2e44e28a | 58 | dev_err(&i2c->dev, "Unknown device type %ld\n", type); |
c6f75622 MB |
59 | return -EINVAL; |
60 | } | |
61 | ||
b61c1ec0 RF |
62 | if (!regmap_config) { |
63 | dev_err(&i2c->dev, | |
64 | "No kernel support for device type %ld\n", type); | |
65 | return -EINVAL; | |
66 | } | |
67 | ||
c6f75622 MB |
68 | arizona = devm_kzalloc(&i2c->dev, sizeof(*arizona), GFP_KERNEL); |
69 | if (arizona == NULL) | |
70 | return -ENOMEM; | |
71 | ||
72 | arizona->regmap = devm_regmap_init_i2c(i2c, regmap_config); | |
73 | if (IS_ERR(arizona->regmap)) { | |
74 | ret = PTR_ERR(arizona->regmap); | |
75 | dev_err(&i2c->dev, "Failed to allocate register map: %d\n", | |
76 | ret); | |
77 | return ret; | |
78 | } | |
79 | ||
2e44e28a | 80 | arizona->type = type; |
c6f75622 MB |
81 | arizona->dev = &i2c->dev; |
82 | arizona->irq = i2c->irq; | |
83 | ||
84 | return arizona_dev_init(arizona); | |
85 | } | |
86 | ||
ed5c2f5f | 87 | static void arizona_i2c_remove(struct i2c_client *i2c) |
c6f75622 MB |
88 | { |
89 | struct arizona *arizona = dev_get_drvdata(&i2c->dev); | |
9f6e872a | 90 | |
c6f75622 | 91 | arizona_dev_exit(arizona); |
c6f75622 MB |
92 | } |
93 | ||
94 | static const struct i2c_device_id arizona_i2c_id[] = { | |
95 | { "wm5102", WM5102 }, | |
e102befe | 96 | { "wm5110", WM5110 }, |
e5d4ef0d | 97 | { "wm8280", WM8280 }, |
dc7d4863 | 98 | { "wm8997", WM8997 }, |
6887b042 RF |
99 | { "wm8998", WM8998 }, |
100 | { "wm1814", WM1814 }, | |
c6f75622 MB |
101 | { } |
102 | }; | |
103 | MODULE_DEVICE_TABLE(i2c, arizona_i2c_id); | |
104 | ||
3f65555c | 105 | #ifdef CONFIG_OF |
10377bb2 | 106 | static const struct of_device_id arizona_i2c_of_match[] = { |
3f65555c CK |
107 | { .compatible = "wlf,wm5102", .data = (void *)WM5102 }, |
108 | { .compatible = "wlf,wm5110", .data = (void *)WM5110 }, | |
109 | { .compatible = "wlf,wm8280", .data = (void *)WM8280 }, | |
110 | { .compatible = "wlf,wm8997", .data = (void *)WM8997 }, | |
111 | { .compatible = "wlf,wm8998", .data = (void *)WM8998 }, | |
112 | { .compatible = "wlf,wm1814", .data = (void *)WM1814 }, | |
113 | {}, | |
114 | }; | |
88165679 | 115 | MODULE_DEVICE_TABLE(of, arizona_i2c_of_match); |
3f65555c CK |
116 | #endif |
117 | ||
c6f75622 MB |
118 | static struct i2c_driver arizona_i2c_driver = { |
119 | .driver = { | |
120 | .name = "arizona", | |
50d3ac7d | 121 | .pm = pm_ptr(&arizona_pm_ops), |
3f65555c | 122 | .of_match_table = of_match_ptr(arizona_i2c_of_match), |
c6f75622 | 123 | }, |
9816d859 | 124 | .probe = arizona_i2c_probe, |
84449216 | 125 | .remove = arizona_i2c_remove, |
c6f75622 MB |
126 | .id_table = arizona_i2c_id, |
127 | }; | |
128 | ||
129 | module_i2c_driver(arizona_i2c_driver); | |
130 | ||
06e577b4 | 131 | MODULE_SOFTDEP("pre: arizona_ldo1"); |
c6f75622 MB |
132 | MODULE_DESCRIPTION("Arizona I2C bus interface"); |
133 | MODULE_AUTHOR("Mark Brown <[email protected]>"); | |
134 | MODULE_LICENSE("GPL"); |