1 // SPDX-License-Identifier: GPL-2.0+
3 // max77686.c - mfd core driver for the Maxim 77686/802
5 // Copyright (C) 2012 Samsung Electronics
6 // Chiwoong Byun <woong.byun@samsung.com>
7 // Jonghwa Lee <jonghwa3.lee@samsung.com>
9 //This driver is based on max8997.c
11 #include <linux/export.h>
12 #include <linux/slab.h>
13 #include <linux/i2c.h>
14 #include <linux/irq.h>
15 #include <linux/interrupt.h>
16 #include <linux/pm_runtime.h>
17 #include <linux/module.h>
18 #include <linux/mfd/core.h>
19 #include <linux/mfd/max77686.h>
20 #include <linux/mfd/max77686-private.h>
21 #include <linux/err.h>
24 static const struct mfd_cell max77686_devs
[] = {
25 { .name
= "max77686-pmic", },
26 { .name
= "max77686-rtc", },
27 { .name
= "max77686-clk", },
30 static const struct mfd_cell max77802_devs
[] = {
31 { .name
= "max77802-pmic", },
32 { .name
= "max77802-clk", },
33 { .name
= "max77802-rtc", },
36 static bool max77802_pmic_is_accessible_reg(struct device
*dev
,
39 return reg
< MAX77802_REG_PMIC_END
;
42 static bool max77802_rtc_is_accessible_reg(struct device
*dev
,
45 return (reg
>= MAX77802_RTC_INT
&& reg
< MAX77802_RTC_END
);
48 static bool max77802_is_accessible_reg(struct device
*dev
, unsigned int reg
)
50 return (max77802_pmic_is_accessible_reg(dev
, reg
) ||
51 max77802_rtc_is_accessible_reg(dev
, reg
));
54 static bool max77802_pmic_is_precious_reg(struct device
*dev
, unsigned int reg
)
56 return (reg
== MAX77802_REG_INTSRC
|| reg
== MAX77802_REG_INT1
||
57 reg
== MAX77802_REG_INT2
);
60 static bool max77802_rtc_is_precious_reg(struct device
*dev
, unsigned int reg
)
62 return (reg
== MAX77802_RTC_INT
||
63 reg
== MAX77802_RTC_UPDATE0
||
64 reg
== MAX77802_RTC_UPDATE1
);
67 static bool max77802_is_precious_reg(struct device
*dev
, unsigned int reg
)
69 return (max77802_pmic_is_precious_reg(dev
, reg
) ||
70 max77802_rtc_is_precious_reg(dev
, reg
));
73 static bool max77802_pmic_is_volatile_reg(struct device
*dev
, unsigned int reg
)
75 return (max77802_is_precious_reg(dev
, reg
) ||
76 reg
== MAX77802_REG_STATUS1
|| reg
== MAX77802_REG_STATUS2
||
77 reg
== MAX77802_REG_PWRON
);
80 static bool max77802_rtc_is_volatile_reg(struct device
*dev
, unsigned int reg
)
82 return (max77802_rtc_is_precious_reg(dev
, reg
) ||
83 reg
== MAX77802_RTC_SEC
||
84 reg
== MAX77802_RTC_MIN
||
85 reg
== MAX77802_RTC_HOUR
||
86 reg
== MAX77802_RTC_WEEKDAY
||
87 reg
== MAX77802_RTC_MONTH
||
88 reg
== MAX77802_RTC_YEAR
||
89 reg
== MAX77802_RTC_MONTHDAY
);
92 static bool max77802_is_volatile_reg(struct device
*dev
, unsigned int reg
)
94 return (max77802_pmic_is_volatile_reg(dev
, reg
) ||
95 max77802_rtc_is_volatile_reg(dev
, reg
));
98 static const struct regmap_config max77686_regmap_config
= {
103 static const struct regmap_config max77802_regmap_config
= {
106 .writeable_reg
= max77802_is_accessible_reg
,
107 .readable_reg
= max77802_is_accessible_reg
,
108 .precious_reg
= max77802_is_precious_reg
,
109 .volatile_reg
= max77802_is_volatile_reg
,
110 .name
= "max77802-pmic",
111 .cache_type
= REGCACHE_MAPLE
,
114 static const struct regmap_irq max77686_irqs
[] = {
115 /* INT1 interrupts */
116 { .reg_offset
= 0, .mask
= MAX77686_INT1_PWRONF_MSK
, },
117 { .reg_offset
= 0, .mask
= MAX77686_INT1_PWRONR_MSK
, },
118 { .reg_offset
= 0, .mask
= MAX77686_INT1_JIGONBF_MSK
, },
119 { .reg_offset
= 0, .mask
= MAX77686_INT1_JIGONBR_MSK
, },
120 { .reg_offset
= 0, .mask
= MAX77686_INT1_ACOKBF_MSK
, },
121 { .reg_offset
= 0, .mask
= MAX77686_INT1_ACOKBR_MSK
, },
122 { .reg_offset
= 0, .mask
= MAX77686_INT1_ONKEY1S_MSK
, },
123 { .reg_offset
= 0, .mask
= MAX77686_INT1_MRSTB_MSK
, },
124 /* INT2 interrupts */
125 { .reg_offset
= 1, .mask
= MAX77686_INT2_140C_MSK
, },
126 { .reg_offset
= 1, .mask
= MAX77686_INT2_120C_MSK
, },
129 static const struct regmap_irq_chip max77686_irq_chip
= {
130 .name
= "max77686-pmic",
131 .status_base
= MAX77686_REG_INT1
,
132 .mask_base
= MAX77686_REG_INT1MSK
,
134 .irqs
= max77686_irqs
,
135 .num_irqs
= ARRAY_SIZE(max77686_irqs
),
138 static const struct regmap_irq_chip max77802_irq_chip
= {
139 .name
= "max77802-pmic",
140 .status_base
= MAX77802_REG_INT1
,
141 .mask_base
= MAX77802_REG_INT1MSK
,
143 .irqs
= max77686_irqs
, /* same masks as 77686 */
144 .num_irqs
= ARRAY_SIZE(max77686_irqs
),
147 static const struct of_device_id max77686_pmic_dt_match
[] = {
149 .compatible
= "maxim,max77686",
150 .data
= (void *)TYPE_MAX77686
,
153 .compatible
= "maxim,max77802",
154 .data
= (void *)TYPE_MAX77802
,
158 MODULE_DEVICE_TABLE(of
, max77686_pmic_dt_match
);
160 static int max77686_i2c_probe(struct i2c_client
*i2c
)
162 struct max77686_dev
*max77686
= NULL
;
165 const struct regmap_config
*config
;
166 const struct regmap_irq_chip
*irq_chip
;
167 const struct mfd_cell
*cells
;
170 max77686
= devm_kzalloc(&i2c
->dev
,
171 sizeof(struct max77686_dev
), GFP_KERNEL
);
175 i2c_set_clientdata(i2c
, max77686
);
176 max77686
->type
= (unsigned long)of_device_get_match_data(&i2c
->dev
);
177 max77686
->dev
= &i2c
->dev
;
180 max77686
->irq
= i2c
->irq
;
182 if (max77686
->type
== TYPE_MAX77686
) {
183 config
= &max77686_regmap_config
;
184 irq_chip
= &max77686_irq_chip
;
185 cells
= max77686_devs
;
186 n_devs
= ARRAY_SIZE(max77686_devs
);
188 config
= &max77802_regmap_config
;
189 irq_chip
= &max77802_irq_chip
;
190 cells
= max77802_devs
;
191 n_devs
= ARRAY_SIZE(max77802_devs
);
194 max77686
->regmap
= devm_regmap_init_i2c(i2c
, config
);
195 if (IS_ERR(max77686
->regmap
)) {
196 ret
= PTR_ERR(max77686
->regmap
);
197 dev_err(max77686
->dev
, "Failed to allocate register map: %d\n",
202 ret
= regmap_read(max77686
->regmap
, MAX77686_REG_DEVICE_ID
, &data
);
204 dev_err(max77686
->dev
,
205 "device not found on this channel (this is not an error)\n");
209 ret
= devm_regmap_add_irq_chip(&i2c
->dev
, max77686
->regmap
,
211 IRQF_ONESHOT
| IRQF_SHARED
, 0, irq_chip
,
212 &max77686
->irq_data
);
214 dev_err(&i2c
->dev
, "failed to add PMIC irq chip: %d\n", ret
);
218 ret
= devm_mfd_add_devices(max77686
->dev
, -1, cells
, n_devs
, NULL
,
221 dev_err(&i2c
->dev
, "failed to add MFD devices: %d\n", ret
);
228 static int max77686_suspend(struct device
*dev
)
230 struct i2c_client
*i2c
= to_i2c_client(dev
);
231 struct max77686_dev
*max77686
= i2c_get_clientdata(i2c
);
233 if (device_may_wakeup(dev
))
234 enable_irq_wake(max77686
->irq
);
237 * IRQ must be disabled during suspend because if it happens
238 * while suspended it will be handled before resuming I2C.
240 * When device is woken up from suspend (e.g. by RTC wake alarm),
241 * an interrupt occurs before resuming I2C bus controller.
242 * Interrupt handler tries to read registers but this read
243 * will fail because I2C is still suspended.
245 disable_irq(max77686
->irq
);
250 static int max77686_resume(struct device
*dev
)
252 struct i2c_client
*i2c
= to_i2c_client(dev
);
253 struct max77686_dev
*max77686
= i2c_get_clientdata(i2c
);
255 if (device_may_wakeup(dev
))
256 disable_irq_wake(max77686
->irq
);
258 enable_irq(max77686
->irq
);
263 static DEFINE_SIMPLE_DEV_PM_OPS(max77686_pm
, max77686_suspend
, max77686_resume
);
265 static struct i2c_driver max77686_i2c_driver
= {
268 .pm
= pm_sleep_ptr(&max77686_pm
),
269 .of_match_table
= max77686_pmic_dt_match
,
271 .probe
= max77686_i2c_probe
,
274 module_i2c_driver(max77686_i2c_driver
);
276 MODULE_DESCRIPTION("MAXIM 77686/802 multi-function core driver");
277 MODULE_AUTHOR("Chiwoong Byun <woong.byun@samsung.com>");
278 MODULE_LICENSE("GPL");