Krzysztof Kozlowski | d7d8d7a | 2018-08-07 18:11:23 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
| 2 | // |
| 3 | // max77686.c - mfd core driver for the Maxim 77686/802 |
| 4 | // |
| 5 | // Copyright (C) 2012 Samsung Electronics |
| 6 | // Chiwoong Byun <woong.byun@samsung.com> |
| 7 | // Jonghwa Lee <jonghwa3.lee@samsung.com> |
| 8 | // |
| 9 | //This driver is based on max8997.c |
Jonghwa Lee | dae8a96 | 2012-06-25 10:34:36 +0200 | [diff] [blame] | 10 | |
| 11 | #include <linux/export.h> |
| 12 | #include <linux/slab.h> |
| 13 | #include <linux/i2c.h> |
Javier Martinez Canillas | 6f1c1e7 | 2014-07-04 22:24:04 +0200 | [diff] [blame] | 14 | #include <linux/irq.h> |
| 15 | #include <linux/interrupt.h> |
Jonghwa Lee | dae8a96 | 2012-06-25 10:34:36 +0200 | [diff] [blame] | 16 | #include <linux/pm_runtime.h> |
| 17 | #include <linux/module.h> |
Jonghwa Lee | dae8a96 | 2012-06-25 10:34:36 +0200 | [diff] [blame] | 18 | #include <linux/mfd/core.h> |
| 19 | #include <linux/mfd/max77686.h> |
| 20 | #include <linux/mfd/max77686-private.h> |
| 21 | #include <linux/err.h> |
Sachin Kamat | 2a048d3 | 2013-10-16 14:26:49 +0530 | [diff] [blame] | 22 | #include <linux/of.h> |
Javier Martinez Canillas | 68e61f7 | 2017-01-13 10:34:06 -0300 | [diff] [blame] | 23 | #include <linux/of_device.h> |
Jonghwa Lee | dae8a96 | 2012-06-25 10:34:36 +0200 | [diff] [blame] | 24 | |
Geert Uytterhoeven | 7c0517b | 2013-11-18 14:33:00 +0100 | [diff] [blame] | 25 | static const struct mfd_cell max77686_devs[] = { |
Jonghwa Lee | dae8a96 | 2012-06-25 10:34:36 +0200 | [diff] [blame] | 26 | { .name = "max77686-pmic", }, |
| 27 | { .name = "max77686-rtc", }, |
Olof Johansson | c0fa7e1 | 2013-05-10 10:11:59 -0700 | [diff] [blame] | 28 | { .name = "max77686-clk", }, |
Jonghwa Lee | dae8a96 | 2012-06-25 10:34:36 +0200 | [diff] [blame] | 29 | }; |
| 30 | |
Javier Martinez Canillas | a259f38 | 2014-07-24 14:39:24 +0200 | [diff] [blame] | 31 | static const struct mfd_cell max77802_devs[] = { |
| 32 | { .name = "max77802-pmic", }, |
| 33 | { .name = "max77802-clk", }, |
| 34 | { .name = "max77802-rtc", }, |
| 35 | }; |
| 36 | |
| 37 | static bool max77802_pmic_is_accessible_reg(struct device *dev, |
| 38 | unsigned int reg) |
| 39 | { |
Lee Jones | b87d9a0 | 2014-08-18 15:41:59 +0100 | [diff] [blame] | 40 | return reg < MAX77802_REG_PMIC_END; |
Javier Martinez Canillas | a259f38 | 2014-07-24 14:39:24 +0200 | [diff] [blame] | 41 | } |
| 42 | |
| 43 | static bool max77802_rtc_is_accessible_reg(struct device *dev, |
| 44 | unsigned int reg) |
| 45 | { |
| 46 | return (reg >= MAX77802_RTC_INT && reg < MAX77802_RTC_END); |
| 47 | } |
| 48 | |
| 49 | static bool max77802_is_accessible_reg(struct device *dev, unsigned int reg) |
| 50 | { |
| 51 | return (max77802_pmic_is_accessible_reg(dev, reg) || |
| 52 | max77802_rtc_is_accessible_reg(dev, reg)); |
| 53 | } |
| 54 | |
| 55 | static bool max77802_pmic_is_precious_reg(struct device *dev, unsigned int reg) |
| 56 | { |
| 57 | return (reg == MAX77802_REG_INTSRC || reg == MAX77802_REG_INT1 || |
| 58 | reg == MAX77802_REG_INT2); |
| 59 | } |
| 60 | |
| 61 | static bool max77802_rtc_is_precious_reg(struct device *dev, unsigned int reg) |
| 62 | { |
| 63 | return (reg == MAX77802_RTC_INT || |
| 64 | reg == MAX77802_RTC_UPDATE0 || |
| 65 | reg == MAX77802_RTC_UPDATE1); |
| 66 | } |
| 67 | |
| 68 | static bool max77802_is_precious_reg(struct device *dev, unsigned int reg) |
| 69 | { |
| 70 | return (max77802_pmic_is_precious_reg(dev, reg) || |
| 71 | max77802_rtc_is_precious_reg(dev, reg)); |
| 72 | } |
| 73 | |
| 74 | static bool max77802_pmic_is_volatile_reg(struct device *dev, unsigned int reg) |
| 75 | { |
| 76 | return (max77802_is_precious_reg(dev, reg) || |
| 77 | reg == MAX77802_REG_STATUS1 || reg == MAX77802_REG_STATUS2 || |
| 78 | reg == MAX77802_REG_PWRON); |
| 79 | } |
| 80 | |
| 81 | static bool max77802_rtc_is_volatile_reg(struct device *dev, unsigned int reg) |
| 82 | { |
| 83 | return (max77802_rtc_is_precious_reg(dev, reg) || |
| 84 | reg == MAX77802_RTC_SEC || |
| 85 | reg == MAX77802_RTC_MIN || |
| 86 | reg == MAX77802_RTC_HOUR || |
| 87 | reg == MAX77802_RTC_WEEKDAY || |
| 88 | reg == MAX77802_RTC_MONTH || |
| 89 | reg == MAX77802_RTC_YEAR || |
| 90 | reg == MAX77802_RTC_DATE); |
| 91 | } |
| 92 | |
| 93 | static bool max77802_is_volatile_reg(struct device *dev, unsigned int reg) |
| 94 | { |
| 95 | return (max77802_pmic_is_volatile_reg(dev, reg) || |
| 96 | max77802_rtc_is_volatile_reg(dev, reg)); |
| 97 | } |
| 98 | |
Krzysztof Kozlowski | 68be231 | 2015-01-05 10:01:25 +0100 | [diff] [blame] | 99 | static const struct regmap_config max77686_regmap_config = { |
Jonghwa Lee | dae8a96 | 2012-06-25 10:34:36 +0200 | [diff] [blame] | 100 | .reg_bits = 8, |
| 101 | .val_bits = 8, |
| 102 | }; |
| 103 | |
Krzysztof Kozlowski | 68be231 | 2015-01-05 10:01:25 +0100 | [diff] [blame] | 104 | static const struct regmap_config max77802_regmap_config = { |
Javier Martinez Canillas | a259f38 | 2014-07-24 14:39:24 +0200 | [diff] [blame] | 105 | .reg_bits = 8, |
| 106 | .val_bits = 8, |
| 107 | .writeable_reg = max77802_is_accessible_reg, |
| 108 | .readable_reg = max77802_is_accessible_reg, |
| 109 | .precious_reg = max77802_is_precious_reg, |
| 110 | .volatile_reg = max77802_is_volatile_reg, |
| 111 | .name = "max77802-pmic", |
| 112 | .cache_type = REGCACHE_RBTREE, |
| 113 | }; |
| 114 | |
Javier Martinez Canillas | 6f1c1e7 | 2014-07-04 22:24:04 +0200 | [diff] [blame] | 115 | static const struct regmap_irq max77686_irqs[] = { |
| 116 | /* INT1 interrupts */ |
| 117 | { .reg_offset = 0, .mask = MAX77686_INT1_PWRONF_MSK, }, |
| 118 | { .reg_offset = 0, .mask = MAX77686_INT1_PWRONR_MSK, }, |
| 119 | { .reg_offset = 0, .mask = MAX77686_INT1_JIGONBF_MSK, }, |
| 120 | { .reg_offset = 0, .mask = MAX77686_INT1_JIGONBR_MSK, }, |
| 121 | { .reg_offset = 0, .mask = MAX77686_INT1_ACOKBF_MSK, }, |
| 122 | { .reg_offset = 0, .mask = MAX77686_INT1_ACOKBR_MSK, }, |
| 123 | { .reg_offset = 0, .mask = MAX77686_INT1_ONKEY1S_MSK, }, |
| 124 | { .reg_offset = 0, .mask = MAX77686_INT1_MRSTB_MSK, }, |
| 125 | /* INT2 interrupts */ |
| 126 | { .reg_offset = 1, .mask = MAX77686_INT2_140C_MSK, }, |
| 127 | { .reg_offset = 1, .mask = MAX77686_INT2_120C_MSK, }, |
| 128 | }; |
| 129 | |
| 130 | static const struct regmap_irq_chip max77686_irq_chip = { |
| 131 | .name = "max77686-pmic", |
| 132 | .status_base = MAX77686_REG_INT1, |
| 133 | .mask_base = MAX77686_REG_INT1MSK, |
| 134 | .num_regs = 2, |
| 135 | .irqs = max77686_irqs, |
| 136 | .num_irqs = ARRAY_SIZE(max77686_irqs), |
| 137 | }; |
| 138 | |
Javier Martinez Canillas | a259f38 | 2014-07-24 14:39:24 +0200 | [diff] [blame] | 139 | static const struct regmap_irq_chip max77802_irq_chip = { |
| 140 | .name = "max77802-pmic", |
| 141 | .status_base = MAX77802_REG_INT1, |
| 142 | .mask_base = MAX77802_REG_INT1MSK, |
| 143 | .num_regs = 2, |
| 144 | .irqs = max77686_irqs, /* same masks as 77686 */ |
| 145 | .num_irqs = ARRAY_SIZE(max77686_irqs), |
| 146 | }; |
| 147 | |
Krzysztof Kozlowski | b68ece3 | 2014-05-13 12:58:51 +0200 | [diff] [blame] | 148 | static const struct of_device_id max77686_pmic_dt_match[] = { |
Javier Martinez Canillas | a259f38 | 2014-07-24 14:39:24 +0200 | [diff] [blame] | 149 | { |
| 150 | .compatible = "maxim,max77686", |
| 151 | .data = (void *)TYPE_MAX77686, |
| 152 | }, |
| 153 | { |
| 154 | .compatible = "maxim,max77802", |
| 155 | .data = (void *)TYPE_MAX77802, |
| 156 | }, |
| 157 | { }, |
Axel Lin | 2984fc0 | 2012-07-09 22:29:00 +0800 | [diff] [blame] | 158 | }; |
Javier Martinez Canillas | 7f8ada1 | 2016-02-12 01:30:19 -0300 | [diff] [blame] | 159 | MODULE_DEVICE_TABLE(of, max77686_pmic_dt_match); |
Axel Lin | 2984fc0 | 2012-07-09 22:29:00 +0800 | [diff] [blame] | 160 | |
Javier Martinez Canillas | be1bb23 | 2017-01-13 10:34:07 -0300 | [diff] [blame] | 161 | static int max77686_i2c_probe(struct i2c_client *i2c) |
Jonghwa Lee | dae8a96 | 2012-06-25 10:34:36 +0200 | [diff] [blame] | 162 | { |
Yadwinder Singh Brar | c1516f8 | 2012-07-06 17:02:55 +0530 | [diff] [blame] | 163 | struct max77686_dev *max77686 = NULL; |
Jonghwa Lee | dae8a96 | 2012-06-25 10:34:36 +0200 | [diff] [blame] | 164 | unsigned int data; |
| 165 | int ret = 0; |
Javier Martinez Canillas | a259f38 | 2014-07-24 14:39:24 +0200 | [diff] [blame] | 166 | const struct regmap_config *config; |
| 167 | const struct regmap_irq_chip *irq_chip; |
Javier Martinez Canillas | a259f38 | 2014-07-24 14:39:24 +0200 | [diff] [blame] | 168 | const struct mfd_cell *cells; |
| 169 | int n_devs; |
Jonghwa Lee | dae8a96 | 2012-06-25 10:34:36 +0200 | [diff] [blame] | 170 | |
Lee Jones | 742413a | 2013-05-23 16:25:16 +0100 | [diff] [blame] | 171 | max77686 = devm_kzalloc(&i2c->dev, |
| 172 | sizeof(struct max77686_dev), GFP_KERNEL); |
Javier Martinez Canillas | c0e0fcd | 2014-07-04 22:24:09 +0200 | [diff] [blame] | 173 | if (!max77686) |
Jonghwa Lee | dae8a96 | 2012-06-25 10:34:36 +0200 | [diff] [blame] | 174 | return -ENOMEM; |
| 175 | |
Jonghwa Lee | dae8a96 | 2012-06-25 10:34:36 +0200 | [diff] [blame] | 176 | i2c_set_clientdata(i2c, max77686); |
Javier Martinez Canillas | 68e61f7 | 2017-01-13 10:34:06 -0300 | [diff] [blame] | 177 | max77686->type = (unsigned long)of_device_get_match_data(&i2c->dev); |
Jonghwa Lee | dae8a96 | 2012-06-25 10:34:36 +0200 | [diff] [blame] | 178 | max77686->dev = &i2c->dev; |
| 179 | max77686->i2c = i2c; |
Jonghwa Lee | dae8a96 | 2012-06-25 10:34:36 +0200 | [diff] [blame] | 180 | |
Yadwinder Singh Brar | 2b40459 | 2012-07-09 13:21:45 +0200 | [diff] [blame] | 181 | max77686->irq = i2c->irq; |
Jonghwa Lee | dae8a96 | 2012-06-25 10:34:36 +0200 | [diff] [blame] | 182 | |
Javier Martinez Canillas | a259f38 | 2014-07-24 14:39:24 +0200 | [diff] [blame] | 183 | if (max77686->type == TYPE_MAX77686) { |
| 184 | config = &max77686_regmap_config; |
| 185 | irq_chip = &max77686_irq_chip; |
Javier Martinez Canillas | a259f38 | 2014-07-24 14:39:24 +0200 | [diff] [blame] | 186 | cells = max77686_devs; |
| 187 | n_devs = ARRAY_SIZE(max77686_devs); |
| 188 | } else { |
| 189 | config = &max77802_regmap_config; |
| 190 | irq_chip = &max77802_irq_chip; |
Javier Martinez Canillas | a259f38 | 2014-07-24 14:39:24 +0200 | [diff] [blame] | 191 | cells = max77802_devs; |
| 192 | n_devs = ARRAY_SIZE(max77802_devs); |
| 193 | } |
| 194 | |
| 195 | max77686->regmap = devm_regmap_init_i2c(i2c, config); |
Axel Lin | 136d982 | 2012-12-25 00:16:43 +0800 | [diff] [blame] | 196 | if (IS_ERR(max77686->regmap)) { |
| 197 | ret = PTR_ERR(max77686->regmap); |
| 198 | dev_err(max77686->dev, "Failed to allocate register map: %d\n", |
| 199 | ret); |
Axel Lin | 136d982 | 2012-12-25 00:16:43 +0800 | [diff] [blame] | 200 | return ret; |
| 201 | } |
| 202 | |
Javier Martinez Canillas | c0e0fcd | 2014-07-04 22:24:09 +0200 | [diff] [blame] | 203 | ret = regmap_read(max77686->regmap, MAX77686_REG_DEVICE_ID, &data); |
| 204 | if (ret < 0) { |
Jonghwa Lee | dae8a96 | 2012-06-25 10:34:36 +0200 | [diff] [blame] | 205 | dev_err(max77686->dev, |
| 206 | "device not found on this channel (this is not an error)\n"); |
Lee Jones | 742413a | 2013-05-23 16:25:16 +0100 | [diff] [blame] | 207 | return -ENODEV; |
Javier Martinez Canillas | 6f1c1e7 | 2014-07-04 22:24:04 +0200 | [diff] [blame] | 208 | } |
Jonghwa Lee | dae8a96 | 2012-06-25 10:34:36 +0200 | [diff] [blame] | 209 | |
Laxman Dewangan | 1a5422c | 2016-04-21 17:55:54 +0530 | [diff] [blame] | 210 | ret = devm_regmap_add_irq_chip(&i2c->dev, max77686->regmap, |
| 211 | max77686->irq, |
Krzysztof Kozlowski | 215e50b | 2021-06-02 13:04:43 +0200 | [diff] [blame] | 212 | IRQF_ONESHOT | IRQF_SHARED, 0, irq_chip, |
Laxman Dewangan | 1a5422c | 2016-04-21 17:55:54 +0530 | [diff] [blame] | 213 | &max77686->irq_data); |
Laxman Dewangan | f393754 | 2016-02-09 22:56:34 +0530 | [diff] [blame] | 214 | if (ret < 0) { |
Javier Martinez Canillas | 6f1c1e7 | 2014-07-04 22:24:04 +0200 | [diff] [blame] | 215 | dev_err(&i2c->dev, "failed to add PMIC irq chip: %d\n", ret); |
Laxman Dewangan | f393754 | 2016-02-09 22:56:34 +0530 | [diff] [blame] | 216 | return ret; |
Javier Martinez Canillas | 6f1c1e7 | 2014-07-04 22:24:04 +0200 | [diff] [blame] | 217 | } |
Jonghwa Lee | dae8a96 | 2012-06-25 10:34:36 +0200 | [diff] [blame] | 218 | |
Laxman Dewangan | 1a5422c | 2016-04-21 17:55:54 +0530 | [diff] [blame] | 219 | ret = devm_mfd_add_devices(max77686->dev, -1, cells, n_devs, NULL, |
| 220 | 0, NULL); |
Lee Jones | 742413a | 2013-05-23 16:25:16 +0100 | [diff] [blame] | 221 | if (ret < 0) { |
Javier Martinez Canillas | 6f1c1e7 | 2014-07-04 22:24:04 +0200 | [diff] [blame] | 222 | dev_err(&i2c->dev, "failed to add MFD devices: %d\n", ret); |
Laxman Dewangan | 1a5422c | 2016-04-21 17:55:54 +0530 | [diff] [blame] | 223 | return ret; |
Lee Jones | 742413a | 2013-05-23 16:25:16 +0100 | [diff] [blame] | 224 | } |
Jonghwa Lee | dae8a96 | 2012-06-25 10:34:36 +0200 | [diff] [blame] | 225 | |
Javier Martinez Canillas | 6f1c1e7 | 2014-07-04 22:24:04 +0200 | [diff] [blame] | 226 | return 0; |
Jonghwa Lee | dae8a96 | 2012-06-25 10:34:36 +0200 | [diff] [blame] | 227 | } |
| 228 | |
Javier Martinez Canillas | 2b52b5d | 2014-07-04 22:24:05 +0200 | [diff] [blame] | 229 | #ifdef CONFIG_PM_SLEEP |
| 230 | static int max77686_suspend(struct device *dev) |
| 231 | { |
Geliang Tang | 1b5420e | 2015-12-28 23:00:14 +0800 | [diff] [blame] | 232 | struct i2c_client *i2c = to_i2c_client(dev); |
Javier Martinez Canillas | 2b52b5d | 2014-07-04 22:24:05 +0200 | [diff] [blame] | 233 | struct max77686_dev *max77686 = i2c_get_clientdata(i2c); |
| 234 | |
| 235 | if (device_may_wakeup(dev)) |
| 236 | enable_irq_wake(max77686->irq); |
| 237 | |
| 238 | /* |
| 239 | * IRQ must be disabled during suspend because if it happens |
| 240 | * while suspended it will be handled before resuming I2C. |
| 241 | * |
| 242 | * When device is woken up from suspend (e.g. by RTC wake alarm), |
| 243 | * an interrupt occurs before resuming I2C bus controller. |
| 244 | * Interrupt handler tries to read registers but this read |
| 245 | * will fail because I2C is still suspended. |
| 246 | */ |
| 247 | disable_irq(max77686->irq); |
| 248 | |
| 249 | return 0; |
| 250 | } |
| 251 | |
| 252 | static int max77686_resume(struct device *dev) |
| 253 | { |
Geliang Tang | 1b5420e | 2015-12-28 23:00:14 +0800 | [diff] [blame] | 254 | struct i2c_client *i2c = to_i2c_client(dev); |
Javier Martinez Canillas | 2b52b5d | 2014-07-04 22:24:05 +0200 | [diff] [blame] | 255 | struct max77686_dev *max77686 = i2c_get_clientdata(i2c); |
| 256 | |
| 257 | if (device_may_wakeup(dev)) |
| 258 | disable_irq_wake(max77686->irq); |
| 259 | |
| 260 | enable_irq(max77686->irq); |
| 261 | |
| 262 | return 0; |
| 263 | } |
| 264 | #endif /* CONFIG_PM_SLEEP */ |
| 265 | |
| 266 | static SIMPLE_DEV_PM_OPS(max77686_pm, max77686_suspend, max77686_resume); |
| 267 | |
Jonghwa Lee | dae8a96 | 2012-06-25 10:34:36 +0200 | [diff] [blame] | 268 | static struct i2c_driver max77686_i2c_driver = { |
| 269 | .driver = { |
| 270 | .name = "max77686", |
Javier Martinez Canillas | 2b52b5d | 2014-07-04 22:24:05 +0200 | [diff] [blame] | 271 | .pm = &max77686_pm, |
Krzysztof Kozlowski | 608a475 | 2020-11-20 17:21:26 +0100 | [diff] [blame] | 272 | .of_match_table = max77686_pmic_dt_match, |
Jonghwa Lee | dae8a96 | 2012-06-25 10:34:36 +0200 | [diff] [blame] | 273 | }, |
Javier Martinez Canillas | be1bb23 | 2017-01-13 10:34:07 -0300 | [diff] [blame] | 274 | .probe_new = max77686_i2c_probe, |
Jonghwa Lee | dae8a96 | 2012-06-25 10:34:36 +0200 | [diff] [blame] | 275 | }; |
| 276 | |
Javier Martinez Canillas | 8a0aee4 | 2016-04-04 18:46:02 -0400 | [diff] [blame] | 277 | module_i2c_driver(max77686_i2c_driver); |
Jonghwa Lee | dae8a96 | 2012-06-25 10:34:36 +0200 | [diff] [blame] | 278 | |
Javier Martinez Canillas | a259f38 | 2014-07-24 14:39:24 +0200 | [diff] [blame] | 279 | MODULE_DESCRIPTION("MAXIM 77686/802 multi-function core driver"); |
Jonghwa Lee | dae8a96 | 2012-06-25 10:34:36 +0200 | [diff] [blame] | 280 | MODULE_AUTHOR("Chiwoong Byun <woong.byun@samsung.com>"); |
| 281 | MODULE_LICENSE("GPL"); |