Jonghwa Lee | dae8a96 | 2012-06-25 10:34:36 +0200 | [diff] [blame] | 1 | /* |
Javier Martinez Canillas | a259f38 | 2014-07-24 14:39:24 +0200 | [diff] [blame] | 2 | * max77686.c - mfd core driver for the Maxim 77686/802 |
Jonghwa Lee | dae8a96 | 2012-06-25 10:34:36 +0200 | [diff] [blame] | 3 | * |
| 4 | * Copyright (C) 2012 Samsung Electronics |
| 5 | * Chiwoong Byun <woong.byun@smasung.com> |
| 6 | * Jonghwa Lee <jonghwa3.lee@samsung.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 as published by |
| 10 | * the Free Software Foundation; either version 2 of the License, or |
| 11 | * (at your option) any later version. |
| 12 | * |
| 13 | * This program is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | * GNU General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License |
| 19 | * along with this program; if not, write to the Free Software |
| 20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 21 | * |
| 22 | * This driver is based on max8997.c |
| 23 | */ |
| 24 | |
| 25 | #include <linux/export.h> |
| 26 | #include <linux/slab.h> |
| 27 | #include <linux/i2c.h> |
Javier Martinez Canillas | 6f1c1e7 | 2014-07-04 22:24:04 +0200 | [diff] [blame] | 28 | #include <linux/irq.h> |
| 29 | #include <linux/interrupt.h> |
Jonghwa Lee | dae8a96 | 2012-06-25 10:34:36 +0200 | [diff] [blame] | 30 | #include <linux/pm_runtime.h> |
| 31 | #include <linux/module.h> |
Jonghwa Lee | dae8a96 | 2012-06-25 10:34:36 +0200 | [diff] [blame] | 32 | #include <linux/mfd/core.h> |
| 33 | #include <linux/mfd/max77686.h> |
| 34 | #include <linux/mfd/max77686-private.h> |
| 35 | #include <linux/err.h> |
Sachin Kamat | 2a048d3 | 2013-10-16 14:26:49 +0530 | [diff] [blame] | 36 | #include <linux/of.h> |
Jonghwa Lee | dae8a96 | 2012-06-25 10:34:36 +0200 | [diff] [blame] | 37 | |
Geert Uytterhoeven | 7c0517b | 2013-11-18 14:33:00 +0100 | [diff] [blame] | 38 | static const struct mfd_cell max77686_devs[] = { |
Jonghwa Lee | dae8a96 | 2012-06-25 10:34:36 +0200 | [diff] [blame] | 39 | { .name = "max77686-pmic", }, |
| 40 | { .name = "max77686-rtc", }, |
Olof Johansson | c0fa7e1 | 2013-05-10 10:11:59 -0700 | [diff] [blame] | 41 | { .name = "max77686-clk", }, |
Jonghwa Lee | dae8a96 | 2012-06-25 10:34:36 +0200 | [diff] [blame] | 42 | }; |
| 43 | |
Javier Martinez Canillas | a259f38 | 2014-07-24 14:39:24 +0200 | [diff] [blame] | 44 | static const struct mfd_cell max77802_devs[] = { |
| 45 | { .name = "max77802-pmic", }, |
| 46 | { .name = "max77802-clk", }, |
| 47 | { .name = "max77802-rtc", }, |
| 48 | }; |
| 49 | |
| 50 | static bool max77802_pmic_is_accessible_reg(struct device *dev, |
| 51 | unsigned int reg) |
| 52 | { |
Lee Jones | b87d9a0 | 2014-08-18 15:41:59 +0100 | [diff] [blame] | 53 | return reg < MAX77802_REG_PMIC_END; |
Javier Martinez Canillas | a259f38 | 2014-07-24 14:39:24 +0200 | [diff] [blame] | 54 | } |
| 55 | |
| 56 | static bool max77802_rtc_is_accessible_reg(struct device *dev, |
| 57 | unsigned int reg) |
| 58 | { |
| 59 | return (reg >= MAX77802_RTC_INT && reg < MAX77802_RTC_END); |
| 60 | } |
| 61 | |
| 62 | static bool max77802_is_accessible_reg(struct device *dev, unsigned int reg) |
| 63 | { |
| 64 | return (max77802_pmic_is_accessible_reg(dev, reg) || |
| 65 | max77802_rtc_is_accessible_reg(dev, reg)); |
| 66 | } |
| 67 | |
| 68 | static bool max77802_pmic_is_precious_reg(struct device *dev, unsigned int reg) |
| 69 | { |
| 70 | return (reg == MAX77802_REG_INTSRC || reg == MAX77802_REG_INT1 || |
| 71 | reg == MAX77802_REG_INT2); |
| 72 | } |
| 73 | |
| 74 | static bool max77802_rtc_is_precious_reg(struct device *dev, unsigned int reg) |
| 75 | { |
| 76 | return (reg == MAX77802_RTC_INT || |
| 77 | reg == MAX77802_RTC_UPDATE0 || |
| 78 | reg == MAX77802_RTC_UPDATE1); |
| 79 | } |
| 80 | |
| 81 | static bool max77802_is_precious_reg(struct device *dev, unsigned int reg) |
| 82 | { |
| 83 | return (max77802_pmic_is_precious_reg(dev, reg) || |
| 84 | max77802_rtc_is_precious_reg(dev, reg)); |
| 85 | } |
| 86 | |
| 87 | static bool max77802_pmic_is_volatile_reg(struct device *dev, unsigned int reg) |
| 88 | { |
| 89 | return (max77802_is_precious_reg(dev, reg) || |
| 90 | reg == MAX77802_REG_STATUS1 || reg == MAX77802_REG_STATUS2 || |
| 91 | reg == MAX77802_REG_PWRON); |
| 92 | } |
| 93 | |
| 94 | static bool max77802_rtc_is_volatile_reg(struct device *dev, unsigned int reg) |
| 95 | { |
| 96 | return (max77802_rtc_is_precious_reg(dev, reg) || |
| 97 | reg == MAX77802_RTC_SEC || |
| 98 | reg == MAX77802_RTC_MIN || |
| 99 | reg == MAX77802_RTC_HOUR || |
| 100 | reg == MAX77802_RTC_WEEKDAY || |
| 101 | reg == MAX77802_RTC_MONTH || |
| 102 | reg == MAX77802_RTC_YEAR || |
| 103 | reg == MAX77802_RTC_DATE); |
| 104 | } |
| 105 | |
| 106 | static bool max77802_is_volatile_reg(struct device *dev, unsigned int reg) |
| 107 | { |
| 108 | return (max77802_pmic_is_volatile_reg(dev, reg) || |
| 109 | max77802_rtc_is_volatile_reg(dev, reg)); |
| 110 | } |
| 111 | |
Krzysztof Kozlowski | 68be231 | 2015-01-05 10:01:25 +0100 | [diff] [blame] | 112 | static const struct regmap_config max77686_regmap_config = { |
Jonghwa Lee | dae8a96 | 2012-06-25 10:34:36 +0200 | [diff] [blame] | 113 | .reg_bits = 8, |
| 114 | .val_bits = 8, |
| 115 | }; |
| 116 | |
Krzysztof Kozlowski | 68be231 | 2015-01-05 10:01:25 +0100 | [diff] [blame] | 117 | static const struct regmap_config max77802_regmap_config = { |
Javier Martinez Canillas | a259f38 | 2014-07-24 14:39:24 +0200 | [diff] [blame] | 118 | .reg_bits = 8, |
| 119 | .val_bits = 8, |
| 120 | .writeable_reg = max77802_is_accessible_reg, |
| 121 | .readable_reg = max77802_is_accessible_reg, |
| 122 | .precious_reg = max77802_is_precious_reg, |
| 123 | .volatile_reg = max77802_is_volatile_reg, |
| 124 | .name = "max77802-pmic", |
| 125 | .cache_type = REGCACHE_RBTREE, |
| 126 | }; |
| 127 | |
Javier Martinez Canillas | 6f1c1e7 | 2014-07-04 22:24:04 +0200 | [diff] [blame] | 128 | static const struct regmap_irq max77686_irqs[] = { |
| 129 | /* INT1 interrupts */ |
| 130 | { .reg_offset = 0, .mask = MAX77686_INT1_PWRONF_MSK, }, |
| 131 | { .reg_offset = 0, .mask = MAX77686_INT1_PWRONR_MSK, }, |
| 132 | { .reg_offset = 0, .mask = MAX77686_INT1_JIGONBF_MSK, }, |
| 133 | { .reg_offset = 0, .mask = MAX77686_INT1_JIGONBR_MSK, }, |
| 134 | { .reg_offset = 0, .mask = MAX77686_INT1_ACOKBF_MSK, }, |
| 135 | { .reg_offset = 0, .mask = MAX77686_INT1_ACOKBR_MSK, }, |
| 136 | { .reg_offset = 0, .mask = MAX77686_INT1_ONKEY1S_MSK, }, |
| 137 | { .reg_offset = 0, .mask = MAX77686_INT1_MRSTB_MSK, }, |
| 138 | /* INT2 interrupts */ |
| 139 | { .reg_offset = 1, .mask = MAX77686_INT2_140C_MSK, }, |
| 140 | { .reg_offset = 1, .mask = MAX77686_INT2_120C_MSK, }, |
| 141 | }; |
| 142 | |
| 143 | static const struct regmap_irq_chip max77686_irq_chip = { |
| 144 | .name = "max77686-pmic", |
| 145 | .status_base = MAX77686_REG_INT1, |
| 146 | .mask_base = MAX77686_REG_INT1MSK, |
| 147 | .num_regs = 2, |
| 148 | .irqs = max77686_irqs, |
| 149 | .num_irqs = ARRAY_SIZE(max77686_irqs), |
| 150 | }; |
| 151 | |
Javier Martinez Canillas | a259f38 | 2014-07-24 14:39:24 +0200 | [diff] [blame] | 152 | static const struct regmap_irq_chip max77802_irq_chip = { |
| 153 | .name = "max77802-pmic", |
| 154 | .status_base = MAX77802_REG_INT1, |
| 155 | .mask_base = MAX77802_REG_INT1MSK, |
| 156 | .num_regs = 2, |
| 157 | .irqs = max77686_irqs, /* same masks as 77686 */ |
| 158 | .num_irqs = ARRAY_SIZE(max77686_irqs), |
| 159 | }; |
| 160 | |
Krzysztof Kozlowski | b68ece3 | 2014-05-13 12:58:51 +0200 | [diff] [blame] | 161 | static const struct of_device_id max77686_pmic_dt_match[] = { |
Javier Martinez Canillas | a259f38 | 2014-07-24 14:39:24 +0200 | [diff] [blame] | 162 | { |
| 163 | .compatible = "maxim,max77686", |
| 164 | .data = (void *)TYPE_MAX77686, |
| 165 | }, |
| 166 | { |
| 167 | .compatible = "maxim,max77802", |
| 168 | .data = (void *)TYPE_MAX77802, |
| 169 | }, |
| 170 | { }, |
Axel Lin | 2984fc0 | 2012-07-09 22:29:00 +0800 | [diff] [blame] | 171 | }; |
Javier Martinez Canillas | 7f8ada1 | 2016-02-12 01:30:19 -0300 | [diff] [blame] | 172 | MODULE_DEVICE_TABLE(of, max77686_pmic_dt_match); |
Axel Lin | 2984fc0 | 2012-07-09 22:29:00 +0800 | [diff] [blame] | 173 | |
Jonghwa Lee | dae8a96 | 2012-06-25 10:34:36 +0200 | [diff] [blame] | 174 | static int max77686_i2c_probe(struct i2c_client *i2c, |
| 175 | const struct i2c_device_id *id) |
| 176 | { |
Yadwinder Singh Brar | c1516f8 | 2012-07-06 17:02:55 +0530 | [diff] [blame] | 177 | struct max77686_dev *max77686 = NULL; |
Javier Martinez Canillas | a259f38 | 2014-07-24 14:39:24 +0200 | [diff] [blame] | 178 | const struct of_device_id *match; |
Jonghwa Lee | dae8a96 | 2012-06-25 10:34:36 +0200 | [diff] [blame] | 179 | unsigned int data; |
| 180 | int ret = 0; |
Javier Martinez Canillas | a259f38 | 2014-07-24 14:39:24 +0200 | [diff] [blame] | 181 | const struct regmap_config *config; |
| 182 | const struct regmap_irq_chip *irq_chip; |
Javier Martinez Canillas | a259f38 | 2014-07-24 14:39:24 +0200 | [diff] [blame] | 183 | const struct mfd_cell *cells; |
| 184 | int n_devs; |
Jonghwa Lee | dae8a96 | 2012-06-25 10:34:36 +0200 | [diff] [blame] | 185 | |
Lee Jones | 742413a | 2013-05-23 16:25:16 +0100 | [diff] [blame] | 186 | max77686 = devm_kzalloc(&i2c->dev, |
| 187 | sizeof(struct max77686_dev), GFP_KERNEL); |
Javier Martinez Canillas | c0e0fcd | 2014-07-04 22:24:09 +0200 | [diff] [blame] | 188 | if (!max77686) |
Jonghwa Lee | dae8a96 | 2012-06-25 10:34:36 +0200 | [diff] [blame] | 189 | return -ENOMEM; |
| 190 | |
Javier Martinez Canillas | a259f38 | 2014-07-24 14:39:24 +0200 | [diff] [blame] | 191 | if (i2c->dev.of_node) { |
| 192 | match = of_match_node(max77686_pmic_dt_match, i2c->dev.of_node); |
| 193 | if (!match) |
| 194 | return -EINVAL; |
| 195 | |
Lee Jones | ec8bd56 | 2014-07-24 17:07:16 +0100 | [diff] [blame] | 196 | max77686->type = (unsigned long)match->data; |
| 197 | } else |
Javier Martinez Canillas | a259f38 | 2014-07-24 14:39:24 +0200 | [diff] [blame] | 198 | max77686->type = id->driver_data; |
Javier Martinez Canillas | a259f38 | 2014-07-24 14:39:24 +0200 | [diff] [blame] | 199 | |
Jonghwa Lee | dae8a96 | 2012-06-25 10:34:36 +0200 | [diff] [blame] | 200 | i2c_set_clientdata(i2c, max77686); |
| 201 | max77686->dev = &i2c->dev; |
| 202 | max77686->i2c = i2c; |
Jonghwa Lee | dae8a96 | 2012-06-25 10:34:36 +0200 | [diff] [blame] | 203 | |
Yadwinder Singh Brar | 2b40459 | 2012-07-09 13:21:45 +0200 | [diff] [blame] | 204 | max77686->irq = i2c->irq; |
Jonghwa Lee | dae8a96 | 2012-06-25 10:34:36 +0200 | [diff] [blame] | 205 | |
Javier Martinez Canillas | a259f38 | 2014-07-24 14:39:24 +0200 | [diff] [blame] | 206 | if (max77686->type == TYPE_MAX77686) { |
| 207 | config = &max77686_regmap_config; |
| 208 | irq_chip = &max77686_irq_chip; |
Javier Martinez Canillas | a259f38 | 2014-07-24 14:39:24 +0200 | [diff] [blame] | 209 | cells = max77686_devs; |
| 210 | n_devs = ARRAY_SIZE(max77686_devs); |
| 211 | } else { |
| 212 | config = &max77802_regmap_config; |
| 213 | irq_chip = &max77802_irq_chip; |
Javier Martinez Canillas | a259f38 | 2014-07-24 14:39:24 +0200 | [diff] [blame] | 214 | cells = max77802_devs; |
| 215 | n_devs = ARRAY_SIZE(max77802_devs); |
| 216 | } |
| 217 | |
| 218 | max77686->regmap = devm_regmap_init_i2c(i2c, config); |
Axel Lin | 136d982 | 2012-12-25 00:16:43 +0800 | [diff] [blame] | 219 | if (IS_ERR(max77686->regmap)) { |
| 220 | ret = PTR_ERR(max77686->regmap); |
| 221 | dev_err(max77686->dev, "Failed to allocate register map: %d\n", |
| 222 | ret); |
Axel Lin | 136d982 | 2012-12-25 00:16:43 +0800 | [diff] [blame] | 223 | return ret; |
| 224 | } |
| 225 | |
Javier Martinez Canillas | c0e0fcd | 2014-07-04 22:24:09 +0200 | [diff] [blame] | 226 | ret = regmap_read(max77686->regmap, MAX77686_REG_DEVICE_ID, &data); |
| 227 | if (ret < 0) { |
Jonghwa Lee | dae8a96 | 2012-06-25 10:34:36 +0200 | [diff] [blame] | 228 | dev_err(max77686->dev, |
| 229 | "device not found on this channel (this is not an error)\n"); |
Lee Jones | 742413a | 2013-05-23 16:25:16 +0100 | [diff] [blame] | 230 | return -ENODEV; |
Javier Martinez Canillas | 6f1c1e7 | 2014-07-04 22:24:04 +0200 | [diff] [blame] | 231 | } |
Jonghwa Lee | dae8a96 | 2012-06-25 10:34:36 +0200 | [diff] [blame] | 232 | |
Javier Martinez Canillas | 6f1c1e7 | 2014-07-04 22:24:04 +0200 | [diff] [blame] | 233 | ret = regmap_add_irq_chip(max77686->regmap, max77686->irq, |
| 234 | IRQF_TRIGGER_FALLING | IRQF_ONESHOT | |
Javier Martinez Canillas | a259f38 | 2014-07-24 14:39:24 +0200 | [diff] [blame] | 235 | IRQF_SHARED, 0, irq_chip, |
Javier Martinez Canillas | 6f1c1e7 | 2014-07-04 22:24:04 +0200 | [diff] [blame] | 236 | &max77686->irq_data); |
Laxman Dewangan | f393754 | 2016-02-09 22:56:34 +0530 | [diff] [blame] | 237 | if (ret < 0) { |
Javier Martinez Canillas | 6f1c1e7 | 2014-07-04 22:24:04 +0200 | [diff] [blame] | 238 | 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] | 239 | return ret; |
Javier Martinez Canillas | 6f1c1e7 | 2014-07-04 22:24:04 +0200 | [diff] [blame] | 240 | } |
Jonghwa Lee | dae8a96 | 2012-06-25 10:34:36 +0200 | [diff] [blame] | 241 | |
Javier Martinez Canillas | a259f38 | 2014-07-24 14:39:24 +0200 | [diff] [blame] | 242 | ret = mfd_add_devices(max77686->dev, -1, cells, n_devs, NULL, 0, NULL); |
Lee Jones | 742413a | 2013-05-23 16:25:16 +0100 | [diff] [blame] | 243 | if (ret < 0) { |
Javier Martinez Canillas | 6f1c1e7 | 2014-07-04 22:24:04 +0200 | [diff] [blame] | 244 | dev_err(&i2c->dev, "failed to add MFD devices: %d\n", ret); |
Laxman Dewangan | f393754 | 2016-02-09 22:56:34 +0530 | [diff] [blame] | 245 | goto err_del_irqc; |
Lee Jones | 742413a | 2013-05-23 16:25:16 +0100 | [diff] [blame] | 246 | } |
Jonghwa Lee | dae8a96 | 2012-06-25 10:34:36 +0200 | [diff] [blame] | 247 | |
Javier Martinez Canillas | 6f1c1e7 | 2014-07-04 22:24:04 +0200 | [diff] [blame] | 248 | return 0; |
| 249 | |
Javier Martinez Canillas | 6f1c1e7 | 2014-07-04 22:24:04 +0200 | [diff] [blame] | 250 | err_del_irqc: |
| 251 | regmap_del_irq_chip(max77686->irq, max77686->irq_data); |
Javier Martinez Canillas | 6f1c1e7 | 2014-07-04 22:24:04 +0200 | [diff] [blame] | 252 | |
Jonghwa Lee | dae8a96 | 2012-06-25 10:34:36 +0200 | [diff] [blame] | 253 | return ret; |
| 254 | } |
| 255 | |
| 256 | static int max77686_i2c_remove(struct i2c_client *i2c) |
| 257 | { |
| 258 | struct max77686_dev *max77686 = i2c_get_clientdata(i2c); |
| 259 | |
| 260 | mfd_remove_devices(max77686->dev); |
Javier Martinez Canillas | 6f1c1e7 | 2014-07-04 22:24:04 +0200 | [diff] [blame] | 261 | |
Javier Martinez Canillas | 6f1c1e7 | 2014-07-04 22:24:04 +0200 | [diff] [blame] | 262 | regmap_del_irq_chip(max77686->irq, max77686->irq_data); |
| 263 | |
Jonghwa Lee | dae8a96 | 2012-06-25 10:34:36 +0200 | [diff] [blame] | 264 | return 0; |
| 265 | } |
| 266 | |
| 267 | static const struct i2c_device_id max77686_i2c_id[] = { |
| 268 | { "max77686", TYPE_MAX77686 }, |
Javier Martinez Canillas | 95a6f71 | 2016-02-12 01:30:16 -0300 | [diff] [blame] | 269 | { "max77802", TYPE_MAX77802 }, |
Jonghwa Lee | dae8a96 | 2012-06-25 10:34:36 +0200 | [diff] [blame] | 270 | { } |
| 271 | }; |
| 272 | MODULE_DEVICE_TABLE(i2c, max77686_i2c_id); |
| 273 | |
Javier Martinez Canillas | 2b52b5d | 2014-07-04 22:24:05 +0200 | [diff] [blame] | 274 | #ifdef CONFIG_PM_SLEEP |
| 275 | static int max77686_suspend(struct device *dev) |
| 276 | { |
Geliang Tang | 1b5420e | 2015-12-28 23:00:14 +0800 | [diff] [blame] | 277 | struct i2c_client *i2c = to_i2c_client(dev); |
Javier Martinez Canillas | 2b52b5d | 2014-07-04 22:24:05 +0200 | [diff] [blame] | 278 | struct max77686_dev *max77686 = i2c_get_clientdata(i2c); |
| 279 | |
| 280 | if (device_may_wakeup(dev)) |
| 281 | enable_irq_wake(max77686->irq); |
| 282 | |
| 283 | /* |
| 284 | * IRQ must be disabled during suspend because if it happens |
| 285 | * while suspended it will be handled before resuming I2C. |
| 286 | * |
| 287 | * When device is woken up from suspend (e.g. by RTC wake alarm), |
| 288 | * an interrupt occurs before resuming I2C bus controller. |
| 289 | * Interrupt handler tries to read registers but this read |
| 290 | * will fail because I2C is still suspended. |
| 291 | */ |
| 292 | disable_irq(max77686->irq); |
| 293 | |
| 294 | return 0; |
| 295 | } |
| 296 | |
| 297 | static int max77686_resume(struct device *dev) |
| 298 | { |
Geliang Tang | 1b5420e | 2015-12-28 23:00:14 +0800 | [diff] [blame] | 299 | struct i2c_client *i2c = to_i2c_client(dev); |
Javier Martinez Canillas | 2b52b5d | 2014-07-04 22:24:05 +0200 | [diff] [blame] | 300 | struct max77686_dev *max77686 = i2c_get_clientdata(i2c); |
| 301 | |
| 302 | if (device_may_wakeup(dev)) |
| 303 | disable_irq_wake(max77686->irq); |
| 304 | |
| 305 | enable_irq(max77686->irq); |
| 306 | |
| 307 | return 0; |
| 308 | } |
| 309 | #endif /* CONFIG_PM_SLEEP */ |
| 310 | |
| 311 | static SIMPLE_DEV_PM_OPS(max77686_pm, max77686_suspend, max77686_resume); |
| 312 | |
Jonghwa Lee | dae8a96 | 2012-06-25 10:34:36 +0200 | [diff] [blame] | 313 | static struct i2c_driver max77686_i2c_driver = { |
| 314 | .driver = { |
| 315 | .name = "max77686", |
Javier Martinez Canillas | 2b52b5d | 2014-07-04 22:24:05 +0200 | [diff] [blame] | 316 | .pm = &max77686_pm, |
Yadwinder Singh Brar | c1516f8 | 2012-07-06 17:02:55 +0530 | [diff] [blame] | 317 | .of_match_table = of_match_ptr(max77686_pmic_dt_match), |
Jonghwa Lee | dae8a96 | 2012-06-25 10:34:36 +0200 | [diff] [blame] | 318 | }, |
| 319 | .probe = max77686_i2c_probe, |
| 320 | .remove = max77686_i2c_remove, |
| 321 | .id_table = max77686_i2c_id, |
| 322 | }; |
| 323 | |
| 324 | static int __init max77686_i2c_init(void) |
| 325 | { |
| 326 | return i2c_add_driver(&max77686_i2c_driver); |
| 327 | } |
| 328 | /* init early so consumer devices can complete system boot */ |
| 329 | subsys_initcall(max77686_i2c_init); |
| 330 | |
| 331 | static void __exit max77686_i2c_exit(void) |
| 332 | { |
| 333 | i2c_del_driver(&max77686_i2c_driver); |
| 334 | } |
| 335 | module_exit(max77686_i2c_exit); |
| 336 | |
Javier Martinez Canillas | a259f38 | 2014-07-24 14:39:24 +0200 | [diff] [blame] | 337 | MODULE_DESCRIPTION("MAXIM 77686/802 multi-function core driver"); |
Jonghwa Lee | dae8a96 | 2012-06-25 10:34:36 +0200 | [diff] [blame] | 338 | MODULE_AUTHOR("Chiwoong Byun <woong.byun@samsung.com>"); |
| 339 | MODULE_LICENSE("GPL"); |