blob: 20e796e10e5790a54a30ec8d67f3b8887b727c16 [file] [log] [blame]
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001/*
2 * extcon-max77693.c - MAX77693 extcon driver to support MAX77693 MUIC
3 *
4 * Copyright (C) 2012 Samsung Electrnoics
5 * Chanwoo Choi <cw00.choi@samsung.com>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 */
17
18#include <linux/kernel.h>
19#include <linux/module.h>
20#include <linux/i2c.h>
21#include <linux/slab.h>
Chanwoo Choi39bf3692012-12-03 13:09:41 +090022#include <linux/input.h>
Chanwoo Choidb1b9032012-07-17 13:28:28 +090023#include <linux/interrupt.h>
24#include <linux/err.h>
25#include <linux/platform_device.h>
26#include <linux/mfd/max77693.h>
27#include <linux/mfd/max77693-private.h>
28#include <linux/extcon.h>
29#include <linux/regmap.h>
30#include <linux/irqdomain.h>
31
32#define DEV_NAME "max77693-muic"
Chanwoo Choi297620f2012-12-26 13:10:11 +090033#define DELAY_MS_DEFAULT 20000 /* unit: millisecond */
Chanwoo Choidb1b9032012-07-17 13:28:28 +090034
Chanwoo Choi0ec83bd2013-03-13 17:38:57 +090035/*
36 * Default value of MAX77693 register to bring up MUIC device.
37 * If user don't set some initial value for MUIC device through platform data,
38 * extcon-max77693 driver use 'default_init_data' to bring up base operation
39 * of MAX77693 MUIC device.
40 */
Sachin Kamat813b4512013-04-08 09:09:41 +090041static struct max77693_reg_data default_init_data[] = {
Chanwoo Choi0ec83bd2013-03-13 17:38:57 +090042 {
43 /* STATUS2 - [3]ChgDetRun */
44 .addr = MAX77693_MUIC_REG_STATUS2,
45 .data = STATUS2_CHGDETRUN_MASK,
46 }, {
47 /* INTMASK1 - Unmask [3]ADC1KM,[0]ADCM */
48 .addr = MAX77693_MUIC_REG_INTMASK1,
49 .data = INTMASK1_ADC1K_MASK
50 | INTMASK1_ADC_MASK,
51 }, {
52 /* INTMASK2 - Unmask [0]ChgTypM */
53 .addr = MAX77693_MUIC_REG_INTMASK2,
54 .data = INTMASK2_CHGTYP_MASK,
55 }, {
56 /* INTMASK3 - Mask all of interrupts */
57 .addr = MAX77693_MUIC_REG_INTMASK3,
58 .data = 0x0,
59 }, {
60 /* CDETCTRL2 */
61 .addr = MAX77693_MUIC_REG_CDETCTRL2,
62 .data = CDETCTRL2_VIDRMEN_MASK
63 | CDETCTRL2_DXOVPEN_MASK,
64 },
65};
66
Chanwoo Choidb1b9032012-07-17 13:28:28 +090067enum max77693_muic_adc_debounce_time {
68 ADC_DEBOUNCE_TIME_5MS = 0,
69 ADC_DEBOUNCE_TIME_10MS,
70 ADC_DEBOUNCE_TIME_25MS,
71 ADC_DEBOUNCE_TIME_38_62MS,
72};
73
74struct max77693_muic_info {
75 struct device *dev;
76 struct max77693_dev *max77693;
77 struct extcon_dev *edev;
Chanwoo Choi154f757f2012-11-27 09:40:32 +090078 int prev_cable_type;
79 int prev_cable_type_gnd;
Chanwoo Choidb1b9032012-07-17 13:28:28 +090080 int prev_chg_type;
Chanwoo Choi39bf3692012-12-03 13:09:41 +090081 int prev_button_type;
Chanwoo Choidb1b9032012-07-17 13:28:28 +090082 u8 status[2];
83
84 int irq;
85 struct work_struct irq_work;
86 struct mutex mutex;
Chanwoo Choi39bf3692012-12-03 13:09:41 +090087
Chanwoo Choi297620f2012-12-26 13:10:11 +090088 /*
89 * Use delayed workqueue to detect cable state and then
90 * notify cable state to notifiee/platform through uevent.
91 * After completing the booting of platform, the extcon provider
92 * driver should notify cable state to upper layer.
93 */
94 struct delayed_work wq_detcable;
95
Chanwoo Choi39bf3692012-12-03 13:09:41 +090096 /* Button of dock device */
97 struct input_dev *dock;
Chanwoo Choi2b757992012-12-06 21:27:56 +090098
99 /*
100 * Default usb/uart path whether UART/USB or AUX_UART/AUX_USB
101 * h/w path of COMP2/COMN1 on CONTROL1 register.
102 */
103 int path_usb;
104 int path_uart;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900105};
106
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900107enum max77693_muic_cable_group {
108 MAX77693_CABLE_GROUP_ADC = 0,
109 MAX77693_CABLE_GROUP_ADC_GND,
110 MAX77693_CABLE_GROUP_CHG,
111 MAX77693_CABLE_GROUP_VBVOLT,
112};
113
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900114enum max77693_muic_charger_type {
115 MAX77693_CHARGER_TYPE_NONE = 0,
116 MAX77693_CHARGER_TYPE_USB,
117 MAX77693_CHARGER_TYPE_DOWNSTREAM_PORT,
118 MAX77693_CHARGER_TYPE_DEDICATED_CHG,
119 MAX77693_CHARGER_TYPE_APPLE_500MA,
120 MAX77693_CHARGER_TYPE_APPLE_1A_2A,
121 MAX77693_CHARGER_TYPE_DEAD_BATTERY = 7,
122};
123
124/**
125 * struct max77693_muic_irq
126 * @irq: the index of irq list of MUIC device.
127 * @name: the name of irq.
128 * @virq: the virtual irq to use irq domain
129 */
130struct max77693_muic_irq {
131 unsigned int irq;
132 const char *name;
133 unsigned int virq;
134};
135
136static struct max77693_muic_irq muic_irqs[] = {
137 { MAX77693_MUIC_IRQ_INT1_ADC, "muic-ADC" },
138 { MAX77693_MUIC_IRQ_INT1_ADC_LOW, "muic-ADCLOW" },
139 { MAX77693_MUIC_IRQ_INT1_ADC_ERR, "muic-ADCError" },
140 { MAX77693_MUIC_IRQ_INT1_ADC1K, "muic-ADC1K" },
141 { MAX77693_MUIC_IRQ_INT2_CHGTYP, "muic-CHGTYP" },
142 { MAX77693_MUIC_IRQ_INT2_CHGDETREUN, "muic-CHGDETREUN" },
143 { MAX77693_MUIC_IRQ_INT2_DCDTMR, "muic-DCDTMR" },
144 { MAX77693_MUIC_IRQ_INT2_DXOVP, "muic-DXOVP" },
145 { MAX77693_MUIC_IRQ_INT2_VBVOLT, "muic-VBVOLT" },
146 { MAX77693_MUIC_IRQ_INT2_VIDRM, "muic-VIDRM" },
147 { MAX77693_MUIC_IRQ_INT3_EOC, "muic-EOC" },
148 { MAX77693_MUIC_IRQ_INT3_CGMBC, "muic-CGMBC" },
149 { MAX77693_MUIC_IRQ_INT3_OVP, "muic-OVP" },
150 { MAX77693_MUIC_IRQ_INT3_MBCCHG_ERR, "muic-MBCCHG_ERR" },
151 { MAX77693_MUIC_IRQ_INT3_CHG_ENABLED, "muic-CHG_ENABLED" },
152 { MAX77693_MUIC_IRQ_INT3_BAT_DET, "muic-BAT_DET" },
153};
154
155/* Define supported accessory type */
156enum max77693_muic_acc_type {
157 MAX77693_MUIC_ADC_GROUND = 0x0,
158 MAX77693_MUIC_ADC_SEND_END_BUTTON,
159 MAX77693_MUIC_ADC_REMOTE_S1_BUTTON,
160 MAX77693_MUIC_ADC_REMOTE_S2_BUTTON,
161 MAX77693_MUIC_ADC_REMOTE_S3_BUTTON,
162 MAX77693_MUIC_ADC_REMOTE_S4_BUTTON,
163 MAX77693_MUIC_ADC_REMOTE_S5_BUTTON,
164 MAX77693_MUIC_ADC_REMOTE_S6_BUTTON,
165 MAX77693_MUIC_ADC_REMOTE_S7_BUTTON,
166 MAX77693_MUIC_ADC_REMOTE_S8_BUTTON,
167 MAX77693_MUIC_ADC_REMOTE_S9_BUTTON,
168 MAX77693_MUIC_ADC_REMOTE_S10_BUTTON,
169 MAX77693_MUIC_ADC_REMOTE_S11_BUTTON,
170 MAX77693_MUIC_ADC_REMOTE_S12_BUTTON,
171 MAX77693_MUIC_ADC_RESERVED_ACC_1,
172 MAX77693_MUIC_ADC_RESERVED_ACC_2,
173 MAX77693_MUIC_ADC_RESERVED_ACC_3,
174 MAX77693_MUIC_ADC_RESERVED_ACC_4,
175 MAX77693_MUIC_ADC_RESERVED_ACC_5,
176 MAX77693_MUIC_ADC_CEA936_AUDIO,
177 MAX77693_MUIC_ADC_PHONE_POWERED_DEV,
178 MAX77693_MUIC_ADC_TTY_CONVERTER,
179 MAX77693_MUIC_ADC_UART_CABLE,
180 MAX77693_MUIC_ADC_CEA936A_TYPE1_CHG,
181 MAX77693_MUIC_ADC_FACTORY_MODE_USB_OFF,
182 MAX77693_MUIC_ADC_FACTORY_MODE_USB_ON,
183 MAX77693_MUIC_ADC_AV_CABLE_NOLOAD,
184 MAX77693_MUIC_ADC_CEA936A_TYPE2_CHG,
185 MAX77693_MUIC_ADC_FACTORY_MODE_UART_OFF,
186 MAX77693_MUIC_ADC_FACTORY_MODE_UART_ON,
187 MAX77693_MUIC_ADC_AUDIO_MODE_REMOTE,
188 MAX77693_MUIC_ADC_OPEN,
189
190 /* The below accessories have same ADC value so ADCLow and
191 ADC1K bit is used to separate specific accessory */
Chanwoo Choic2275d22013-08-23 10:21:37 +0900192 /* ADC|VBVolot|ADCLow|ADC1K| */
Jaewon Kim4c883ab2015-01-29 17:45:24 +0900193 MAX77693_MUIC_GND_USB_HOST = 0x100, /* 0x0| 0| 0| 0| */
194 MAX77693_MUIC_GND_USB_HOST_VB = 0x104, /* 0x0| 1| 0| 0| */
Chanwoo Choic2275d22013-08-23 10:21:37 +0900195 MAX77693_MUIC_GND_AV_CABLE_LOAD = 0x102,/* 0x0| 0| 1| 0| */
196 MAX77693_MUIC_GND_MHL = 0x103, /* 0x0| 0| 1| 1| */
197 MAX77693_MUIC_GND_MHL_VB = 0x107, /* 0x0| 1| 1| 1| */
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900198};
199
Chanwoo Choic2275d22013-08-23 10:21:37 +0900200/*
201 * MAX77693 MUIC device support below list of accessories(external connector)
202 */
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900203static const enum extcon max77693_extcon_cable[] = {
204 EXTCON_USB,
205 EXTCON_USB_HOST,
206 EXTCON_TA,
207 EXTCON_FAST_CHARGER,
208 EXTCON_SLOW_CHARGER,
209 EXTCON_CHARGE_DOWNSTREAM,
210 EXTCON_MHL,
211 EXTCON_JIG,
212 EXTCON_DOCK,
213 EXTCON_NONE,
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900214};
215
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900216/*
217 * max77693_muic_set_debounce_time - Set the debounce time of ADC
218 * @info: the instance including private data of max77693 MUIC
219 * @time: the debounce time of ADC
220 */
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900221static int max77693_muic_set_debounce_time(struct max77693_muic_info *info,
222 enum max77693_muic_adc_debounce_time time)
223{
Axel Linbf2627d2012-10-04 09:55:23 +0900224 int ret;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900225
226 switch (time) {
227 case ADC_DEBOUNCE_TIME_5MS:
228 case ADC_DEBOUNCE_TIME_10MS:
229 case ADC_DEBOUNCE_TIME_25MS:
230 case ADC_DEBOUNCE_TIME_38_62MS:
Jonghwa Leedc6048d2014-09-17 12:58:43 +0900231 /*
232 * Don't touch BTLDset, JIGset when you want to change adc
233 * debounce time. If it writes other than 0 to BTLDset, JIGset
234 * muic device will be reset and loose current state.
235 */
236 ret = regmap_write(info->max77693->regmap_muic,
237 MAX77693_MUIC_REG_CTRL3,
238 time << CONTROL3_ADCDBSET_SHIFT);
Chanwoo Choi19d32432013-02-13 18:35:08 +0900239 if (ret) {
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900240 dev_err(info->dev, "failed to set ADC debounce time\n");
Sachin Kamatc2536542013-04-08 09:12:32 +0900241 return ret;
Chanwoo Choi19d32432013-02-13 18:35:08 +0900242 }
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900243 break;
244 default:
245 dev_err(info->dev, "invalid ADC debounce time\n");
Chanwoo Choi19d32432013-02-13 18:35:08 +0900246 return -EINVAL;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900247 }
248
Chanwoo Choi19d32432013-02-13 18:35:08 +0900249 return 0;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900250};
251
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900252/*
253 * max77693_muic_set_path - Set hardware line according to attached cable
254 * @info: the instance including private data of max77693 MUIC
255 * @value: the path according to attached cable
256 * @attached: the state of cable (true:attached, false:detached)
257 *
258 * The max77693 MUIC device share outside H/W line among a varity of cables
259 * so, this function set internal path of H/W line according to the type of
260 * attached cable.
261 */
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900262static int max77693_muic_set_path(struct max77693_muic_info *info,
263 u8 val, bool attached)
264{
265 int ret = 0;
Robert Baldygad0540f92014-05-21 08:52:47 +0200266 unsigned int ctrl1, ctrl2 = 0;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900267
268 if (attached)
269 ctrl1 = val;
270 else
271 ctrl1 = CONTROL1_SW_OPEN;
272
Robert Baldygad0540f92014-05-21 08:52:47 +0200273 ret = regmap_update_bits(info->max77693->regmap_muic,
274 MAX77693_MUIC_REG_CTRL1, COMP_SW_MASK, ctrl1);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900275 if (ret < 0) {
276 dev_err(info->dev, "failed to update MUIC register\n");
Sachin Kamatc2536542013-04-08 09:12:32 +0900277 return ret;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900278 }
279
280 if (attached)
281 ctrl2 |= CONTROL2_CPEN_MASK; /* LowPwr=0, CPEn=1 */
282 else
283 ctrl2 |= CONTROL2_LOWPWR_MASK; /* LowPwr=1, CPEn=0 */
284
Robert Baldygad0540f92014-05-21 08:52:47 +0200285 ret = regmap_update_bits(info->max77693->regmap_muic,
286 MAX77693_MUIC_REG_CTRL2,
287 CONTROL2_LOWPWR_MASK | CONTROL2_CPEN_MASK, ctrl2);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900288 if (ret < 0) {
289 dev_err(info->dev, "failed to update MUIC register\n");
Sachin Kamatc2536542013-04-08 09:12:32 +0900290 return ret;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900291 }
292
293 dev_info(info->dev,
294 "CONTROL1 : 0x%02x, CONTROL2 : 0x%02x, state : %s\n",
295 ctrl1, ctrl2, attached ? "attached" : "detached");
Chanwoo Choi19d32432013-02-13 18:35:08 +0900296
297 return 0;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900298}
299
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900300/*
301 * max77693_muic_get_cable_type - Return cable type and check cable state
302 * @info: the instance including private data of max77693 MUIC
303 * @group: the path according to attached cable
304 * @attached: store cable state and return
305 *
306 * This function check the cable state either attached or detached,
307 * and then divide precise type of cable according to cable group.
308 * - MAX77693_CABLE_GROUP_ADC
309 * - MAX77693_CABLE_GROUP_ADC_GND
310 * - MAX77693_CABLE_GROUP_CHG
311 * - MAX77693_CABLE_GROUP_VBVOLT
312 */
313static int max77693_muic_get_cable_type(struct max77693_muic_info *info,
314 enum max77693_muic_cable_group group, bool *attached)
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900315{
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900316 int cable_type = 0;
317 int adc;
318 int adc1k;
319 int adclow;
320 int vbvolt;
321 int chg_type;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900322
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900323 switch (group) {
324 case MAX77693_CABLE_GROUP_ADC:
325 /*
326 * Read ADC value to check cable type and decide cable state
327 * according to cable type
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900328 */
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900329 adc = info->status[0] & STATUS1_ADC_MASK;
330 adc >>= STATUS1_ADC_SHIFT;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900331
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900332 /*
333 * Check current cable state/cable type and store cable type
334 * (info->prev_cable_type) for handling cable when cable is
335 * detached.
336 */
337 if (adc == MAX77693_MUIC_ADC_OPEN) {
338 *attached = false;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900339
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900340 cable_type = info->prev_cable_type;
341 info->prev_cable_type = MAX77693_MUIC_ADC_OPEN;
342 } else {
343 *attached = true;
344
345 cable_type = info->prev_cable_type = adc;
346 }
347 break;
348 case MAX77693_CABLE_GROUP_ADC_GND:
349 /*
350 * Read ADC value to check cable type and decide cable state
351 * according to cable type
352 */
353 adc = info->status[0] & STATUS1_ADC_MASK;
354 adc >>= STATUS1_ADC_SHIFT;
355
356 /*
357 * Check current cable state/cable type and store cable type
358 * (info->prev_cable_type/_gnd) for handling cable when cable
359 * is detached.
360 */
361 if (adc == MAX77693_MUIC_ADC_OPEN) {
362 *attached = false;
363
364 cable_type = info->prev_cable_type_gnd;
365 info->prev_cable_type_gnd = MAX77693_MUIC_ADC_OPEN;
366 } else {
367 *attached = true;
368
369 adclow = info->status[0] & STATUS1_ADCLOW_MASK;
370 adclow >>= STATUS1_ADCLOW_SHIFT;
371 adc1k = info->status[0] & STATUS1_ADC1K_MASK;
372 adc1k >>= STATUS1_ADC1K_SHIFT;
373
374 vbvolt = info->status[1] & STATUS2_VBVOLT_MASK;
375 vbvolt >>= STATUS2_VBVOLT_SHIFT;
376
377 /**
Chanwoo Choic2275d22013-08-23 10:21:37 +0900378 * [0x1|VBVolt|ADCLow|ADC1K]
Jaewon Kim4c883ab2015-01-29 17:45:24 +0900379 * [0x1| 0| 0| 0] USB_HOST
380 * [0x1| 1| 0| 0] USB_HSOT_VB
Chanwoo Choic2275d22013-08-23 10:21:37 +0900381 * [0x1| 0| 1| 0] Audio Video cable with load
382 * [0x1| 0| 1| 1] MHL without charging cable
383 * [0x1| 1| 1| 1] MHL with charging cable
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900384 */
385 cable_type = ((0x1 << 8)
386 | (vbvolt << 2)
387 | (adclow << 1)
388 | adc1k);
389
390 info->prev_cable_type = adc;
391 info->prev_cable_type_gnd = cable_type;
392 }
393
394 break;
395 case MAX77693_CABLE_GROUP_CHG:
396 /*
397 * Read charger type to check cable type and decide cable state
398 * according to type of charger cable.
399 */
400 chg_type = info->status[1] & STATUS2_CHGTYP_MASK;
401 chg_type >>= STATUS2_CHGTYP_SHIFT;
402
403 if (chg_type == MAX77693_CHARGER_TYPE_NONE) {
404 *attached = false;
405
406 cable_type = info->prev_chg_type;
407 info->prev_chg_type = MAX77693_CHARGER_TYPE_NONE;
408 } else {
409 *attached = true;
410
411 /*
412 * Check current cable state/cable type and store cable
413 * type(info->prev_chg_type) for handling cable when
414 * charger cable is detached.
415 */
416 cable_type = info->prev_chg_type = chg_type;
417 }
418
419 break;
420 case MAX77693_CABLE_GROUP_VBVOLT:
421 /*
422 * Read ADC value to check cable type and decide cable state
423 * according to cable type
424 */
425 adc = info->status[0] & STATUS1_ADC_MASK;
426 adc >>= STATUS1_ADC_SHIFT;
427 chg_type = info->status[1] & STATUS2_CHGTYP_MASK;
428 chg_type >>= STATUS2_CHGTYP_SHIFT;
429
430 if (adc == MAX77693_MUIC_ADC_OPEN
431 && chg_type == MAX77693_CHARGER_TYPE_NONE)
432 *attached = false;
433 else
434 *attached = true;
435
436 /*
437 * Read vbvolt field, if vbvolt is 1,
438 * this cable is used for charging.
439 */
440 vbvolt = info->status[1] & STATUS2_VBVOLT_MASK;
441 vbvolt >>= STATUS2_VBVOLT_SHIFT;
442
443 cable_type = vbvolt;
444 break;
445 default:
446 dev_err(info->dev, "Unknown cable group (%d)\n", group);
447 cable_type = -EINVAL;
448 break;
449 }
450
451 return cable_type;
452}
453
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900454static int max77693_muic_dock_handler(struct max77693_muic_info *info,
455 int cable_type, bool attached)
456{
457 int ret = 0;
Chanwoo Choia1626292012-12-10 19:07:53 +0900458 int vbvolt;
459 bool cable_attached;
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900460 enum extcon dock_id;
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900461
462 dev_info(info->dev,
463 "external connector is %s (adc:0x%02x)\n",
464 attached ? "attached" : "detached", cable_type);
465
466 switch (cable_type) {
467 case MAX77693_MUIC_ADC_RESERVED_ACC_3: /* Dock-Smart */
Chanwoo Choia1626292012-12-10 19:07:53 +0900468 /*
469 * Check power cable whether attached or detached state.
470 * The Dock-Smart device need surely external power supply.
471 * If power cable(USB/TA) isn't connected to Dock device,
472 * user can't use Dock-Smart for desktop mode.
473 */
474 vbvolt = max77693_muic_get_cable_type(info,
475 MAX77693_CABLE_GROUP_VBVOLT, &cable_attached);
476 if (attached && !vbvolt) {
477 dev_warn(info->dev,
478 "Cannot detect external power supply\n");
479 return 0;
480 }
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900481
Chanwoo Choia1626292012-12-10 19:07:53 +0900482 /*
Chanwoo Choid519c422015-04-25 19:05:10 +0900483 * Notify Dock/MHL state.
484 * - Dock device include three type of cable which
Chanwoo Choia1626292012-12-10 19:07:53 +0900485 * are HDMI, USB for mouse/keyboard and micro-usb port
Chanwoo Choid519c422015-04-25 19:05:10 +0900486 * for USB/TA cable. Dock device need always exteranl
487 * power supply(USB/TA cable through micro-usb cable). Dock
488 * device support screen output of target to separate
Chanwoo Choia1626292012-12-10 19:07:53 +0900489 * monitor and mouse/keyboard for desktop mode.
490 *
Chanwoo Choid519c422015-04-25 19:05:10 +0900491 * Features of 'USB/TA cable with Dock device'
Chanwoo Choia1626292012-12-10 19:07:53 +0900492 * - Support MHL
493 * - Support external output feature of audio
494 * - Support charging through micro-usb port without data
495 * connection if TA cable is connected to target.
496 * - Support charging and data connection through micro-usb port
497 * if USB cable is connected between target and host
498 * device.
Jaewon Kim4c883ab2015-01-29 17:45:24 +0900499 * - Support OTG(On-The-Go) device (Ex: Mouse/Keyboard)
Chanwoo Choia1626292012-12-10 19:07:53 +0900500 */
501 ret = max77693_muic_set_path(info, info->path_usb, attached);
502 if (ret < 0)
503 return ret;
504
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900505 extcon_set_cable_state_(info->edev, EXTCON_DOCK, attached);
506 extcon_set_cable_state_(info->edev, EXTCON_MHL, attached);
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900507 goto out;
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900508 case MAX77693_MUIC_ADC_AUDIO_MODE_REMOTE: /* Dock-Desk */
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900509 dock_id = EXTCON_DOCK;
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900510 break;
511 case MAX77693_MUIC_ADC_AV_CABLE_NOLOAD: /* Dock-Audio */
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900512 dock_id = EXTCON_DOCK;
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900513 if (!attached)
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900514 extcon_set_cable_state_(info->edev, EXTCON_USB, false);
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900515 break;
Chanwoo Choi19d32432013-02-13 18:35:08 +0900516 default:
517 dev_err(info->dev, "failed to detect %s dock device\n",
518 attached ? "attached" : "detached");
519 return -EINVAL;
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900520 }
521
522 /* Dock-Car/Desk/Audio, PATH:AUDIO */
523 ret = max77693_muic_set_path(info, CONTROL1_SW_AUDIO, attached);
524 if (ret < 0)
Chanwoo Choia1626292012-12-10 19:07:53 +0900525 return ret;
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900526 extcon_set_cable_state_(info->edev, dock_id, attached);
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900527
528out:
Chanwoo Choia1626292012-12-10 19:07:53 +0900529 return 0;
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900530}
531
532static int max77693_muic_dock_button_handler(struct max77693_muic_info *info,
533 int button_type, bool attached)
534{
535 struct input_dev *dock = info->dock;
536 unsigned int code;
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900537
538 switch (button_type) {
539 case MAX77693_MUIC_ADC_REMOTE_S3_BUTTON-1
540 ... MAX77693_MUIC_ADC_REMOTE_S3_BUTTON+1:
541 /* DOCK_KEY_PREV */
542 code = KEY_PREVIOUSSONG;
543 break;
544 case MAX77693_MUIC_ADC_REMOTE_S7_BUTTON-1
545 ... MAX77693_MUIC_ADC_REMOTE_S7_BUTTON+1:
546 /* DOCK_KEY_NEXT */
547 code = KEY_NEXTSONG;
548 break;
549 case MAX77693_MUIC_ADC_REMOTE_S9_BUTTON:
550 /* DOCK_VOL_DOWN */
551 code = KEY_VOLUMEDOWN;
552 break;
553 case MAX77693_MUIC_ADC_REMOTE_S10_BUTTON:
554 /* DOCK_VOL_UP */
555 code = KEY_VOLUMEUP;
556 break;
557 case MAX77693_MUIC_ADC_REMOTE_S12_BUTTON-1
558 ... MAX77693_MUIC_ADC_REMOTE_S12_BUTTON+1:
559 /* DOCK_KEY_PLAY_PAUSE */
560 code = KEY_PLAYPAUSE;
561 break;
562 default:
563 dev_err(info->dev,
564 "failed to detect %s key (adc:0x%x)\n",
565 attached ? "pressed" : "released", button_type);
Chanwoo Choi19d32432013-02-13 18:35:08 +0900566 return -EINVAL;
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900567 }
568
569 input_event(dock, EV_KEY, code, attached);
570 input_sync(dock);
571
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900572 return 0;
573}
574
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900575static int max77693_muic_adc_ground_handler(struct max77693_muic_info *info)
576{
577 int cable_type_gnd;
578 int ret = 0;
579 bool attached;
580
581 cable_type_gnd = max77693_muic_get_cable_type(info,
582 MAX77693_CABLE_GROUP_ADC_GND, &attached);
583
584 switch (cable_type_gnd) {
Jaewon Kim4c883ab2015-01-29 17:45:24 +0900585 case MAX77693_MUIC_GND_USB_HOST:
586 case MAX77693_MUIC_GND_USB_HOST_VB:
587 /* USB_HOST, PATH: AP_USB */
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900588 ret = max77693_muic_set_path(info, CONTROL1_SW_USB, attached);
589 if (ret < 0)
Chanwoo Choi19d32432013-02-13 18:35:08 +0900590 return ret;
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900591 extcon_set_cable_state_(info->edev, EXTCON_USB_HOST, attached);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900592 break;
593 case MAX77693_MUIC_GND_AV_CABLE_LOAD:
Chanwoo Choi06bed0a2012-11-27 11:30:35 +0900594 /* Audio Video Cable with load, PATH:AUDIO */
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900595 ret = max77693_muic_set_path(info, CONTROL1_SW_AUDIO, attached);
596 if (ret < 0)
Chanwoo Choi19d32432013-02-13 18:35:08 +0900597 return ret;
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900598 extcon_set_cable_state_(info->edev, EXTCON_USB, attached);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900599 break;
Chanwoo Choi06bed0a2012-11-27 11:30:35 +0900600 case MAX77693_MUIC_GND_MHL:
601 case MAX77693_MUIC_GND_MHL_VB:
602 /* MHL or MHL with USB/TA cable */
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900603 extcon_set_cable_state_(info->edev, EXTCON_MHL, attached);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900604 break;
605 default:
Chanwoo Choi19d32432013-02-13 18:35:08 +0900606 dev_err(info->dev, "failed to detect %s cable of gnd type\n",
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900607 attached ? "attached" : "detached");
Chanwoo Choi19d32432013-02-13 18:35:08 +0900608 return -EINVAL;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900609 }
610
Chanwoo Choi19d32432013-02-13 18:35:08 +0900611 return 0;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900612}
613
Chanwoo Choid0587eb2012-11-27 12:06:49 +0900614static int max77693_muic_jig_handler(struct max77693_muic_info *info,
615 int cable_type, bool attached)
616{
Chanwoo Choid0587eb2012-11-27 12:06:49 +0900617 int ret = 0;
618 u8 path = CONTROL1_SW_OPEN;
619
620 dev_info(info->dev,
621 "external connector is %s (adc:0x%02x)\n",
622 attached ? "attached" : "detached", cable_type);
623
624 switch (cable_type) {
625 case MAX77693_MUIC_ADC_FACTORY_MODE_USB_OFF: /* ADC_JIG_USB_OFF */
Chanwoo Choid0587eb2012-11-27 12:06:49 +0900626 case MAX77693_MUIC_ADC_FACTORY_MODE_USB_ON: /* ADC_JIG_USB_ON */
627 /* PATH:AP_USB */
Chanwoo Choid0587eb2012-11-27 12:06:49 +0900628 path = CONTROL1_SW_USB;
629 break;
630 case MAX77693_MUIC_ADC_FACTORY_MODE_UART_OFF: /* ADC_JIG_UART_OFF */
Krzysztof Kozlowskic22159a2014-10-22 10:45:40 +0200631 case MAX77693_MUIC_ADC_FACTORY_MODE_UART_ON: /* ADC_JIG_UART_ON */
632 /* PATH:AP_UART */
Krzysztof Kozlowskic22159a2014-10-22 10:45:40 +0200633 path = CONTROL1_SW_UART;
634 break;
Chanwoo Choi19d32432013-02-13 18:35:08 +0900635 default:
636 dev_err(info->dev, "failed to detect %s jig cable\n",
637 attached ? "attached" : "detached");
638 return -EINVAL;
Chanwoo Choid0587eb2012-11-27 12:06:49 +0900639 }
640
641 ret = max77693_muic_set_path(info, path, attached);
642 if (ret < 0)
Chanwoo Choi19d32432013-02-13 18:35:08 +0900643 return ret;
Chanwoo Choid0587eb2012-11-27 12:06:49 +0900644
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900645 extcon_set_cable_state_(info->edev, EXTCON_JIG, attached);
Chanwoo Choi19d32432013-02-13 18:35:08 +0900646
647 return 0;
Chanwoo Choid0587eb2012-11-27 12:06:49 +0900648}
649
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900650static int max77693_muic_adc_handler(struct max77693_muic_info *info)
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900651{
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900652 int cable_type;
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900653 int button_type;
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900654 bool attached;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900655 int ret = 0;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900656
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900657 /* Check accessory state which is either detached or attached */
658 cable_type = max77693_muic_get_cable_type(info,
659 MAX77693_CABLE_GROUP_ADC, &attached);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900660
661 dev_info(info->dev,
662 "external connector is %s (adc:0x%02x, prev_adc:0x%x)\n",
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900663 attached ? "attached" : "detached", cable_type,
664 info->prev_cable_type);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900665
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900666 switch (cable_type) {
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900667 case MAX77693_MUIC_ADC_GROUND:
Jaewon Kim4c883ab2015-01-29 17:45:24 +0900668 /* USB_HOST/MHL/Audio */
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900669 max77693_muic_adc_ground_handler(info);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900670 break;
671 case MAX77693_MUIC_ADC_FACTORY_MODE_USB_OFF:
672 case MAX77693_MUIC_ADC_FACTORY_MODE_USB_ON:
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900673 case MAX77693_MUIC_ADC_FACTORY_MODE_UART_OFF:
Krzysztof Kozlowskic22159a2014-10-22 10:45:40 +0200674 case MAX77693_MUIC_ADC_FACTORY_MODE_UART_ON:
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900675 /* JIG */
Chanwoo Choid0587eb2012-11-27 12:06:49 +0900676 ret = max77693_muic_jig_handler(info, cable_type, attached);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900677 if (ret < 0)
Chanwoo Choi19d32432013-02-13 18:35:08 +0900678 return ret;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900679 break;
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900680 case MAX77693_MUIC_ADC_RESERVED_ACC_3: /* Dock-Smart */
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900681 case MAX77693_MUIC_ADC_AUDIO_MODE_REMOTE: /* Dock-Desk */
682 case MAX77693_MUIC_ADC_AV_CABLE_NOLOAD: /* Dock-Audio */
683 /*
684 * DOCK device
685 *
686 * The MAX77693 MUIC device can detect total 34 cable type
687 * except of charger cable and MUIC device didn't define
688 * specfic role of cable in the range of from 0x01 to 0x12
689 * of ADC value. So, can use/define cable with no role according
690 * to schema of hardware board.
691 */
692 ret = max77693_muic_dock_handler(info, cable_type, attached);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900693 if (ret < 0)
Chanwoo Choi19d32432013-02-13 18:35:08 +0900694 return ret;
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900695 break;
Chanwoo Choic2275d22013-08-23 10:21:37 +0900696 case MAX77693_MUIC_ADC_REMOTE_S3_BUTTON: /* DOCK_KEY_PREV */
697 case MAX77693_MUIC_ADC_REMOTE_S7_BUTTON: /* DOCK_KEY_NEXT */
698 case MAX77693_MUIC_ADC_REMOTE_S9_BUTTON: /* DOCK_VOL_DOWN */
699 case MAX77693_MUIC_ADC_REMOTE_S10_BUTTON: /* DOCK_VOL_UP */
700 case MAX77693_MUIC_ADC_REMOTE_S12_BUTTON: /* DOCK_KEY_PLAY_PAUSE */
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900701 /*
702 * Button of DOCK device
703 * - the Prev/Next/Volume Up/Volume Down/Play-Pause button
704 *
705 * The MAX77693 MUIC device can detect total 34 cable type
706 * except of charger cable and MUIC device didn't define
707 * specfic role of cable in the range of from 0x01 to 0x12
708 * of ADC value. So, can use/define cable with no role according
709 * to schema of hardware board.
710 */
711 if (attached)
712 button_type = info->prev_button_type = cable_type;
713 else
714 button_type = info->prev_button_type;
715
716 ret = max77693_muic_dock_button_handler(info, button_type,
717 attached);
718 if (ret < 0)
Chanwoo Choi19d32432013-02-13 18:35:08 +0900719 return ret;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900720 break;
721 case MAX77693_MUIC_ADC_SEND_END_BUTTON:
722 case MAX77693_MUIC_ADC_REMOTE_S1_BUTTON:
723 case MAX77693_MUIC_ADC_REMOTE_S2_BUTTON:
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900724 case MAX77693_MUIC_ADC_REMOTE_S4_BUTTON:
725 case MAX77693_MUIC_ADC_REMOTE_S5_BUTTON:
726 case MAX77693_MUIC_ADC_REMOTE_S6_BUTTON:
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900727 case MAX77693_MUIC_ADC_REMOTE_S8_BUTTON:
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900728 case MAX77693_MUIC_ADC_REMOTE_S11_BUTTON:
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900729 case MAX77693_MUIC_ADC_RESERVED_ACC_1:
730 case MAX77693_MUIC_ADC_RESERVED_ACC_2:
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900731 case MAX77693_MUIC_ADC_RESERVED_ACC_4:
732 case MAX77693_MUIC_ADC_RESERVED_ACC_5:
733 case MAX77693_MUIC_ADC_CEA936_AUDIO:
734 case MAX77693_MUIC_ADC_PHONE_POWERED_DEV:
735 case MAX77693_MUIC_ADC_TTY_CONVERTER:
736 case MAX77693_MUIC_ADC_UART_CABLE:
737 case MAX77693_MUIC_ADC_CEA936A_TYPE1_CHG:
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900738 case MAX77693_MUIC_ADC_CEA936A_TYPE2_CHG:
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900739 /*
740 * This accessory isn't used in general case if it is specially
741 * needed to detect additional accessory, should implement
742 * proper operation when this accessory is attached/detached.
743 */
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900744 dev_info(info->dev,
745 "accessory is %s but it isn't used (adc:0x%x)\n",
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900746 attached ? "attached" : "detached", cable_type);
Chanwoo Choi19d32432013-02-13 18:35:08 +0900747 return -EAGAIN;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900748 default:
749 dev_err(info->dev,
750 "failed to detect %s accessory (adc:0x%x)\n",
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900751 attached ? "attached" : "detached", cable_type);
Chanwoo Choi19d32432013-02-13 18:35:08 +0900752 return -EINVAL;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900753 }
754
Chanwoo Choi19d32432013-02-13 18:35:08 +0900755 return 0;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900756}
757
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900758static int max77693_muic_chg_handler(struct max77693_muic_info *info)
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900759{
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900760 int chg_type;
Chanwoo Choi06bed0a2012-11-27 11:30:35 +0900761 int cable_type_gnd;
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900762 int cable_type;
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900763 bool attached;
Chanwoo Choi06bed0a2012-11-27 11:30:35 +0900764 bool cable_attached;
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900765 int ret = 0;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900766
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900767 chg_type = max77693_muic_get_cable_type(info,
768 MAX77693_CABLE_GROUP_CHG, &attached);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900769
770 dev_info(info->dev,
771 "external connector is %s(chg_type:0x%x, prev_chg_type:0x%x)\n",
772 attached ? "attached" : "detached",
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900773 chg_type, info->prev_chg_type);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900774
775 switch (chg_type) {
776 case MAX77693_CHARGER_TYPE_USB:
Chanwoo Choia1626292012-12-10 19:07:53 +0900777 case MAX77693_CHARGER_TYPE_DEDICATED_CHG:
Chanwoo Choi0e2738f2012-12-06 21:36:18 +0900778 case MAX77693_CHARGER_TYPE_NONE:
Chanwoo Choia1626292012-12-10 19:07:53 +0900779 /* Check MAX77693_CABLE_GROUP_ADC_GND type */
Chanwoo Choi06bed0a2012-11-27 11:30:35 +0900780 cable_type_gnd = max77693_muic_get_cable_type(info,
781 MAX77693_CABLE_GROUP_ADC_GND,
782 &cable_attached);
Chanwoo Choia1626292012-12-10 19:07:53 +0900783 switch (cable_type_gnd) {
784 case MAX77693_MUIC_GND_MHL:
785 case MAX77693_MUIC_GND_MHL_VB:
786 /*
Chanwoo Choi942e0232015-04-25 19:06:18 +0900787 * MHL cable with USB/TA cable
Chanwoo Choic2275d22013-08-23 10:21:37 +0900788 * - MHL cable include two port(HDMI line and separate
789 * micro-usb port. When the target connect MHL cable,
Chanwoo Choi942e0232015-04-25 19:06:18 +0900790 * extcon driver check whether USB/TA cable is
791 * connected. If USB/TA cable is connected, extcon
Chanwoo Choic2275d22013-08-23 10:21:37 +0900792 * driver notify state to notifiee for charging battery.
Chanwoo Choia1626292012-12-10 19:07:53 +0900793 *
Chanwoo Choi942e0232015-04-25 19:06:18 +0900794 * Features of 'USB/TA with MHL cable'
Chanwoo Choia1626292012-12-10 19:07:53 +0900795 * - Support MHL
Chanwoo Choic2275d22013-08-23 10:21:37 +0900796 * - Support charging through micro-usb port without
797 * data connection
Chanwoo Choia1626292012-12-10 19:07:53 +0900798 */
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900799 extcon_set_cable_state_(info->edev, EXTCON_TA, attached);
Chanwoo Choi06bed0a2012-11-27 11:30:35 +0900800 if (!cable_attached)
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900801 extcon_set_cable_state_(info->edev, EXTCON_MHL,
802 cable_attached);
Chanwoo Choia1626292012-12-10 19:07:53 +0900803 break;
Chanwoo Choi06bed0a2012-11-27 11:30:35 +0900804 }
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900805
Chanwoo Choia1626292012-12-10 19:07:53 +0900806 /* Check MAX77693_CABLE_GROUP_ADC type */
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900807 cable_type = max77693_muic_get_cable_type(info,
808 MAX77693_CABLE_GROUP_ADC,
809 &cable_attached);
Chanwoo Choia1626292012-12-10 19:07:53 +0900810 switch (cable_type) {
811 case MAX77693_MUIC_ADC_AV_CABLE_NOLOAD: /* Dock-Audio */
812 /*
813 * Dock-Audio device with USB/TA cable
Chanwoo Choic2275d22013-08-23 10:21:37 +0900814 * - Dock device include two port(Dock-Audio and micro-
815 * usb port). When the target connect Dock-Audio device,
816 * extcon driver check whether USB/TA cable is connected
817 * or not. If USB/TA cable is connected, extcon driver
818 * notify state to notifiee for charging battery.
Chanwoo Choia1626292012-12-10 19:07:53 +0900819 *
820 * Features of 'USB/TA cable with Dock-Audio device'
821 * - Support external output feature of audio.
Chanwoo Choic2275d22013-08-23 10:21:37 +0900822 * - Support charging through micro-usb port without
823 * data connection.
Chanwoo Choia1626292012-12-10 19:07:53 +0900824 */
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900825 extcon_set_cable_state_(info->edev, EXTCON_USB,
826 attached);
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900827
828 if (!cable_attached)
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900829 extcon_set_cable_state_(info->edev, EXTCON_DOCK,
830 cable_attached);
Chanwoo Choia1626292012-12-10 19:07:53 +0900831 break;
832 case MAX77693_MUIC_ADC_RESERVED_ACC_3: /* Dock-Smart */
833 /*
834 * Dock-Smart device with USB/TA cable
835 * - Dock-Desk device include three type of cable which
836 * are HDMI, USB for mouse/keyboard and micro-usb port
Chanwoo Choic2275d22013-08-23 10:21:37 +0900837 * for USB/TA cable. Dock-Smart device need always
838 * exteranl power supply(USB/TA cable through micro-usb
839 * cable). Dock-Smart device support screen output of
840 * target to separate monitor and mouse/keyboard for
841 * desktop mode.
Chanwoo Choia1626292012-12-10 19:07:53 +0900842 *
843 * Features of 'USB/TA cable with Dock-Smart device'
844 * - Support MHL
845 * - Support external output feature of audio
Chanwoo Choic2275d22013-08-23 10:21:37 +0900846 * - Support charging through micro-usb port without
847 * data connection if TA cable is connected to target.
848 * - Support charging and data connection through micro-
849 * usb port if USB cable is connected between target
850 * and host device
Jaewon Kim4c883ab2015-01-29 17:45:24 +0900851 * - Support OTG(On-The-Go) device (Ex: Mouse/Keyboard)
Chanwoo Choia1626292012-12-10 19:07:53 +0900852 */
Chanwoo Choic2275d22013-08-23 10:21:37 +0900853 ret = max77693_muic_set_path(info, info->path_usb,
854 attached);
Chanwoo Choia1626292012-12-10 19:07:53 +0900855 if (ret < 0)
856 return ret;
857
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900858 extcon_set_cable_state_(info->edev, EXTCON_DOCK,
859 attached);
860 extcon_set_cable_state_(info->edev, EXTCON_MHL,
861 attached);
Chanwoo Choia1626292012-12-10 19:07:53 +0900862 break;
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900863 }
864
Chanwoo Choia1626292012-12-10 19:07:53 +0900865 /* Check MAX77693_CABLE_GROUP_CHG type */
866 switch (chg_type) {
867 case MAX77693_CHARGER_TYPE_NONE:
868 /*
Chanwoo Choic2275d22013-08-23 10:21:37 +0900869 * When MHL(with USB/TA cable) or Dock-Audio with USB/TA
870 * cable is attached, muic device happen below two irq.
871 * - 'MAX77693_MUIC_IRQ_INT1_ADC' for detecting
872 * MHL/Dock-Audio.
873 * - 'MAX77693_MUIC_IRQ_INT2_CHGTYP' for detecting
874 * USB/TA cable connected to MHL or Dock-Audio.
875 * Always, happen eariler MAX77693_MUIC_IRQ_INT1_ADC
876 * irq than MAX77693_MUIC_IRQ_INT2_CHGTYP irq.
Chanwoo Choia1626292012-12-10 19:07:53 +0900877 *
Chanwoo Choic2275d22013-08-23 10:21:37 +0900878 * If user attach MHL (with USB/TA cable and immediately
879 * detach MHL with USB/TA cable before MAX77693_MUIC_IRQ
880 * _INT2_CHGTYP irq is happened, USB/TA cable remain
881 * connected state to target. But USB/TA cable isn't
882 * connected to target. The user be face with unusual
883 * action. So, driver should check this situation in
884 * spite of, that previous charger type is N/A.
Chanwoo Choia1626292012-12-10 19:07:53 +0900885 */
Chanwoo Choi0e2738f2012-12-06 21:36:18 +0900886 break;
Chanwoo Choia1626292012-12-10 19:07:53 +0900887 case MAX77693_CHARGER_TYPE_USB:
888 /* Only USB cable, PATH:AP_USB */
Chanwoo Choic2275d22013-08-23 10:21:37 +0900889 ret = max77693_muic_set_path(info, info->path_usb,
890 attached);
Chanwoo Choia1626292012-12-10 19:07:53 +0900891 if (ret < 0)
892 return ret;
Chanwoo Choi0e2738f2012-12-06 21:36:18 +0900893
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900894 extcon_set_cable_state_(info->edev, EXTCON_USB,
895 attached);
Chanwoo Choia1626292012-12-10 19:07:53 +0900896 break;
897 case MAX77693_CHARGER_TYPE_DEDICATED_CHG:
898 /* Only TA cable */
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900899 extcon_set_cable_state_(info->edev, EXTCON_TA, attached);
Chanwoo Choia1626292012-12-10 19:07:53 +0900900 break;
901 }
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900902 break;
903 case MAX77693_CHARGER_TYPE_DOWNSTREAM_PORT:
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900904 extcon_set_cable_state_(info->edev, EXTCON_CHARGE_DOWNSTREAM,
905 attached);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900906 break;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900907 case MAX77693_CHARGER_TYPE_APPLE_500MA:
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900908 extcon_set_cable_state_(info->edev, EXTCON_SLOW_CHARGER,
909 attached);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900910 break;
911 case MAX77693_CHARGER_TYPE_APPLE_1A_2A:
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900912 extcon_set_cable_state_(info->edev, EXTCON_FAST_CHARGER,
913 attached);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900914 break;
915 case MAX77693_CHARGER_TYPE_DEAD_BATTERY:
916 break;
917 default:
918 dev_err(info->dev,
919 "failed to detect %s accessory (chg_type:0x%x)\n",
920 attached ? "attached" : "detached", chg_type);
Chanwoo Choia1626292012-12-10 19:07:53 +0900921 return -EINVAL;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900922 }
923
Chanwoo Choia1626292012-12-10 19:07:53 +0900924 return 0;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900925}
926
927static void max77693_muic_irq_work(struct work_struct *work)
928{
929 struct max77693_muic_info *info = container_of(work,
930 struct max77693_muic_info, irq_work);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900931 int irq_type = -1;
932 int i, ret = 0;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900933
934 if (!info->edev)
935 return;
936
937 mutex_lock(&info->mutex);
938
Sachin Kamata33411b2013-08-05 14:32:04 +0530939 for (i = 0; i < ARRAY_SIZE(muic_irqs); i++)
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900940 if (info->irq == muic_irqs[i].virq)
941 irq_type = muic_irqs[i].irq;
942
Robert Baldygad0540f92014-05-21 08:52:47 +0200943 ret = regmap_bulk_read(info->max77693->regmap_muic,
944 MAX77693_MUIC_REG_STATUS1, info->status, 2);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900945 if (ret) {
946 dev_err(info->dev, "failed to read MUIC register\n");
947 mutex_unlock(&info->mutex);
948 return;
949 }
950
951 switch (irq_type) {
952 case MAX77693_MUIC_IRQ_INT1_ADC:
953 case MAX77693_MUIC_IRQ_INT1_ADC_LOW:
954 case MAX77693_MUIC_IRQ_INT1_ADC_ERR:
955 case MAX77693_MUIC_IRQ_INT1_ADC1K:
956 /* Handle all of accessory except for
957 type of charger accessory */
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900958 ret = max77693_muic_adc_handler(info);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900959 break;
960 case MAX77693_MUIC_IRQ_INT2_CHGTYP:
961 case MAX77693_MUIC_IRQ_INT2_CHGDETREUN:
962 case MAX77693_MUIC_IRQ_INT2_DCDTMR:
963 case MAX77693_MUIC_IRQ_INT2_DXOVP:
964 case MAX77693_MUIC_IRQ_INT2_VBVOLT:
965 case MAX77693_MUIC_IRQ_INT2_VIDRM:
966 /* Handle charger accessory */
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900967 ret = max77693_muic_chg_handler(info);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900968 break;
969 case MAX77693_MUIC_IRQ_INT3_EOC:
970 case MAX77693_MUIC_IRQ_INT3_CGMBC:
971 case MAX77693_MUIC_IRQ_INT3_OVP:
972 case MAX77693_MUIC_IRQ_INT3_MBCCHG_ERR:
973 case MAX77693_MUIC_IRQ_INT3_CHG_ENABLED:
974 case MAX77693_MUIC_IRQ_INT3_BAT_DET:
975 break;
976 default:
977 dev_err(info->dev, "muic interrupt: irq %d occurred\n",
978 irq_type);
Chanwoo Choi19d32432013-02-13 18:35:08 +0900979 mutex_unlock(&info->mutex);
980 return;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900981 }
982
983 if (ret < 0)
984 dev_err(info->dev, "failed to handle MUIC interrupt\n");
985
986 mutex_unlock(&info->mutex);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900987}
988
989static irqreturn_t max77693_muic_irq_handler(int irq, void *data)
990{
991 struct max77693_muic_info *info = data;
992
993 info->irq = irq;
994 schedule_work(&info->irq_work);
995
996 return IRQ_HANDLED;
997}
998
Krzysztof Kozlowski65948902015-01-05 09:57:27 +0100999static const struct regmap_config max77693_muic_regmap_config = {
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001000 .reg_bits = 8,
1001 .val_bits = 8,
1002};
1003
1004static int max77693_muic_detect_accessory(struct max77693_muic_info *info)
1005{
1006 int ret = 0;
Chanwoo Choi154f757f2012-11-27 09:40:32 +09001007 int adc;
1008 int chg_type;
1009 bool attached;
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001010
1011 mutex_lock(&info->mutex);
1012
1013 /* Read STATUSx register to detect accessory */
Robert Baldygad0540f92014-05-21 08:52:47 +02001014 ret = regmap_bulk_read(info->max77693->regmap_muic,
1015 MAX77693_MUIC_REG_STATUS1, info->status, 2);
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001016 if (ret) {
1017 dev_err(info->dev, "failed to read MUIC register\n");
1018 mutex_unlock(&info->mutex);
Sachin Kamatc2536542013-04-08 09:12:32 +09001019 return ret;
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001020 }
1021
Chanwoo Choi154f757f2012-11-27 09:40:32 +09001022 adc = max77693_muic_get_cable_type(info, MAX77693_CABLE_GROUP_ADC,
1023 &attached);
1024 if (attached && adc != MAX77693_MUIC_ADC_OPEN) {
1025 ret = max77693_muic_adc_handler(info);
Chanwoo Choi19d32432013-02-13 18:35:08 +09001026 if (ret < 0) {
Chanwoo Choi154f757f2012-11-27 09:40:32 +09001027 dev_err(info->dev, "Cannot detect accessory\n");
Chanwoo Choi19d32432013-02-13 18:35:08 +09001028 mutex_unlock(&info->mutex);
1029 return ret;
1030 }
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001031 }
1032
Chanwoo Choi154f757f2012-11-27 09:40:32 +09001033 chg_type = max77693_muic_get_cable_type(info, MAX77693_CABLE_GROUP_CHG,
1034 &attached);
1035 if (attached && chg_type != MAX77693_CHARGER_TYPE_NONE) {
1036 ret = max77693_muic_chg_handler(info);
Chanwoo Choi19d32432013-02-13 18:35:08 +09001037 if (ret < 0) {
Chanwoo Choi154f757f2012-11-27 09:40:32 +09001038 dev_err(info->dev, "Cannot detect charger accessory\n");
Chanwoo Choi19d32432013-02-13 18:35:08 +09001039 mutex_unlock(&info->mutex);
1040 return ret;
1041 }
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001042 }
1043
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001044 mutex_unlock(&info->mutex);
Chanwoo Choi154f757f2012-11-27 09:40:32 +09001045
Chanwoo Choi19d32432013-02-13 18:35:08 +09001046 return 0;
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001047}
1048
Chanwoo Choi297620f2012-12-26 13:10:11 +09001049static void max77693_muic_detect_cable_wq(struct work_struct *work)
1050{
1051 struct max77693_muic_info *info = container_of(to_delayed_work(work),
1052 struct max77693_muic_info, wq_detcable);
1053
1054 max77693_muic_detect_accessory(info);
1055}
1056
Bill Pemberton44f34fd2012-11-19 13:23:21 -05001057static int max77693_muic_probe(struct platform_device *pdev)
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001058{
1059 struct max77693_dev *max77693 = dev_get_drvdata(pdev->dev.parent);
Chanwoo Choif8457d52012-10-08 14:41:49 +09001060 struct max77693_platform_data *pdata = dev_get_platdata(max77693->dev);
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001061 struct max77693_muic_info *info;
Chanwoo Choi0ec83bd2013-03-13 17:38:57 +09001062 struct max77693_reg_data *init_data;
1063 int num_init_data;
Chanwoo Choi297620f2012-12-26 13:10:11 +09001064 int delay_jiffies;
1065 int ret;
1066 int i;
Robert Baldygad0540f92014-05-21 08:52:47 +02001067 unsigned int id;
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001068
Sachin Kamatf4bb5cb2012-11-20 15:46:50 +09001069 info = devm_kzalloc(&pdev->dev, sizeof(struct max77693_muic_info),
1070 GFP_KERNEL);
Jingoo Han0a16ee62014-07-23 10:07:09 +09001071 if (!info)
Sachin Kamatf4bb5cb2012-11-20 15:46:50 +09001072 return -ENOMEM;
Jingoo Han0a16ee62014-07-23 10:07:09 +09001073
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001074 info->dev = &pdev->dev;
1075 info->max77693 = max77693;
Sachin Kamat1967fa02012-11-21 10:04:58 +05301076 if (info->max77693->regmap_muic) {
Chanwoo Choib186b122012-08-21 15:16:23 +09001077 dev_dbg(&pdev->dev, "allocate register map\n");
Sachin Kamat1967fa02012-11-21 10:04:58 +05301078 } else {
Chanwoo Choib186b122012-08-21 15:16:23 +09001079 info->max77693->regmap_muic = devm_regmap_init_i2c(
1080 info->max77693->muic,
1081 &max77693_muic_regmap_config);
1082 if (IS_ERR(info->max77693->regmap_muic)) {
1083 ret = PTR_ERR(info->max77693->regmap_muic);
1084 dev_err(max77693->dev,
1085 "failed to allocate register map: %d\n", ret);
Sachin Kamat3bf742f2012-11-21 10:04:57 +05301086 return ret;
Chanwoo Choib186b122012-08-21 15:16:23 +09001087 }
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001088 }
Chanwoo Choi39bf3692012-12-03 13:09:41 +09001089
1090 /* Register input device for button of dock device */
Chanwoo Choieff7d742013-02-13 18:35:05 +09001091 info->dock = devm_input_allocate_device(&pdev->dev);
Chanwoo Choi39bf3692012-12-03 13:09:41 +09001092 if (!info->dock) {
1093 dev_err(&pdev->dev, "%s: failed to allocate input\n", __func__);
1094 return -ENOMEM;
1095 }
1096 info->dock->name = "max77693-muic/dock";
1097 info->dock->phys = "max77693-muic/extcon";
1098 info->dock->dev.parent = &pdev->dev;
1099
1100 __set_bit(EV_REP, info->dock->evbit);
1101
1102 input_set_capability(info->dock, EV_KEY, KEY_VOLUMEUP);
1103 input_set_capability(info->dock, EV_KEY, KEY_VOLUMEDOWN);
1104 input_set_capability(info->dock, EV_KEY, KEY_PLAYPAUSE);
1105 input_set_capability(info->dock, EV_KEY, KEY_PREVIOUSSONG);
1106 input_set_capability(info->dock, EV_KEY, KEY_NEXTSONG);
1107
1108 ret = input_register_device(info->dock);
1109 if (ret < 0) {
1110 dev_err(&pdev->dev, "Cannot register input device error(%d)\n",
1111 ret);
1112 return ret;
1113 }
1114
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001115 platform_set_drvdata(pdev, info);
1116 mutex_init(&info->mutex);
1117
1118 INIT_WORK(&info->irq_work, max77693_muic_irq_work);
1119
1120 /* Support irq domain for MAX77693 MUIC device */
1121 for (i = 0; i < ARRAY_SIZE(muic_irqs); i++) {
1122 struct max77693_muic_irq *muic_irq = &muic_irqs[i];
Sachin Kamat00af4b12012-11-20 15:46:44 +09001123 unsigned int virq = 0;
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001124
Robert Baldyga342d6692014-05-21 08:52:48 +02001125 virq = regmap_irq_get_virq(max77693->irq_data_muic,
1126 muic_irq->irq);
Krzysztof Kozlowskid7155232014-09-12 15:16:37 +02001127 if (!virq)
1128 return -EINVAL;
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001129 muic_irq->virq = virq;
1130
Krzysztof Kozlowskid7155232014-09-12 15:16:37 +02001131 ret = devm_request_threaded_irq(&pdev->dev, virq, NULL,
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001132 max77693_muic_irq_handler,
Chanwoo Choiae3b3212012-11-28 12:39:01 +09001133 IRQF_NO_SUSPEND,
1134 muic_irq->name, info);
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001135 if (ret) {
1136 dev_err(&pdev->dev,
Chanwoo Choi34825e52015-03-07 01:41:36 +09001137 "failed: irq request (IRQ: %d, error :%d)\n",
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001138 muic_irq->irq, ret);
Krzysztof Kozlowskid7155232014-09-12 15:16:37 +02001139 return ret;
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001140 }
1141 }
1142
1143 /* Initialize extcon device */
Chanwoo Choi577bef12014-04-21 20:39:53 +09001144 info->edev = devm_extcon_dev_allocate(&pdev->dev,
1145 max77693_extcon_cable);
1146 if (IS_ERR(info->edev)) {
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001147 dev_err(&pdev->dev, "failed to allocate memory for extcon\n");
Krzysztof Kozlowskid7155232014-09-12 15:16:37 +02001148 return -ENOMEM;
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001149 }
Chanwoo Choi577bef12014-04-21 20:39:53 +09001150
Sangjung Woo10fae112014-04-21 19:10:12 +09001151 ret = devm_extcon_dev_register(&pdev->dev, info->edev);
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001152 if (ret) {
1153 dev_err(&pdev->dev, "failed to register extcon device\n");
Krzysztof Kozlowskid7155232014-09-12 15:16:37 +02001154 return ret;
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001155 }
1156
Chanwoo Choi0ec83bd2013-03-13 17:38:57 +09001157 /* Initialize MUIC register by using platform data or default data */
Krzysztof Kozlowskid5653f22014-04-09 15:20:12 +02001158 if (pdata && pdata->muic_data) {
Chanwoo Choi0ec83bd2013-03-13 17:38:57 +09001159 init_data = pdata->muic_data->init_data;
1160 num_init_data = pdata->muic_data->num_init_data;
1161 } else {
1162 init_data = default_init_data;
1163 num_init_data = ARRAY_SIZE(default_init_data);
1164 }
1165
Sachin Kamata33411b2013-08-05 14:32:04 +05301166 for (i = 0; i < num_init_data; i++) {
Chanwoo Choi0ec83bd2013-03-13 17:38:57 +09001167 enum max77693_irq_source irq_src
1168 = MAX77693_IRQ_GROUP_NR;
1169
Robert Baldygad0540f92014-05-21 08:52:47 +02001170 regmap_write(info->max77693->regmap_muic,
Chanwoo Choi0ec83bd2013-03-13 17:38:57 +09001171 init_data[i].addr,
1172 init_data[i].data);
1173
1174 switch (init_data[i].addr) {
1175 case MAX77693_MUIC_REG_INTMASK1:
1176 irq_src = MUIC_INT1;
1177 break;
1178 case MAX77693_MUIC_REG_INTMASK2:
1179 irq_src = MUIC_INT2;
1180 break;
1181 case MAX77693_MUIC_REG_INTMASK3:
1182 irq_src = MUIC_INT3;
1183 break;
1184 }
1185
1186 if (irq_src < MAX77693_IRQ_GROUP_NR)
1187 info->max77693->irq_masks_cur[irq_src]
1188 = init_data[i].data;
1189 }
1190
Krzysztof Kozlowskid5653f22014-04-09 15:20:12 +02001191 if (pdata && pdata->muic_data) {
Chanwoo Choic2275d22013-08-23 10:21:37 +09001192 struct max77693_muic_platform_data *muic_pdata
1193 = pdata->muic_data;
Chanwoo Choif8457d52012-10-08 14:41:49 +09001194
Chanwoo Choi190d7cf2013-02-18 10:03:32 +09001195 /*
1196 * Default usb/uart path whether UART/USB or AUX_UART/AUX_USB
1197 * h/w path of COMP2/COMN1 on CONTROL1 register.
1198 */
1199 if (muic_pdata->path_uart)
1200 info->path_uart = muic_pdata->path_uart;
1201 else
1202 info->path_uart = CONTROL1_SW_UART;
Chanwoo Choif8457d52012-10-08 14:41:49 +09001203
Chanwoo Choi190d7cf2013-02-18 10:03:32 +09001204 if (muic_pdata->path_usb)
1205 info->path_usb = muic_pdata->path_usb;
1206 else
1207 info->path_usb = CONTROL1_SW_USB;
Chanwoo Choi2b757992012-12-06 21:27:56 +09001208
Chanwoo Choi190d7cf2013-02-18 10:03:32 +09001209 /*
1210 * Default delay time for detecting cable state
1211 * after certain time.
1212 */
1213 if (muic_pdata->detcable_delay_ms)
1214 delay_jiffies =
1215 msecs_to_jiffies(muic_pdata->detcable_delay_ms);
1216 else
1217 delay_jiffies = msecs_to_jiffies(DELAY_MS_DEFAULT);
1218 } else {
Chanwoo Choi2b757992012-12-06 21:27:56 +09001219 info->path_usb = CONTROL1_SW_USB;
Chanwoo Choi190d7cf2013-02-18 10:03:32 +09001220 info->path_uart = CONTROL1_SW_UART;
1221 delay_jiffies = msecs_to_jiffies(DELAY_MS_DEFAULT);
1222 }
Chanwoo Choi2b757992012-12-06 21:27:56 +09001223
1224 /* Set initial path for UART */
1225 max77693_muic_set_path(info, info->path_uart, true);
1226
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001227 /* Check revision number of MUIC device*/
Robert Baldygad0540f92014-05-21 08:52:47 +02001228 ret = regmap_read(info->max77693->regmap_muic,
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001229 MAX77693_MUIC_REG_ID, &id);
1230 if (ret < 0) {
1231 dev_err(&pdev->dev, "failed to read revision number\n");
Krzysztof Kozlowskid7155232014-09-12 15:16:37 +02001232 return ret;
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001233 }
1234 dev_info(info->dev, "device ID : 0x%x\n", id);
1235
1236 /* Set ADC debounce time */
1237 max77693_muic_set_debounce_time(info, ADC_DEBOUNCE_TIME_25MS);
1238
Chanwoo Choi297620f2012-12-26 13:10:11 +09001239 /*
1240 * Detect accessory after completing the initialization of platform
1241 *
1242 * - Use delayed workqueue to detect cable state and then
1243 * notify cable state to notifiee/platform through uevent.
1244 * After completing the booting of platform, the extcon provider
1245 * driver should notify cable state to upper layer.
1246 */
1247 INIT_DELAYED_WORK(&info->wq_detcable, max77693_muic_detect_cable_wq);
Krzysztof Kozlowskib8629412014-04-09 15:20:13 +02001248 queue_delayed_work(system_power_efficient_wq, &info->wq_detcable,
1249 delay_jiffies);
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001250
1251 return ret;
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001252}
1253
Bill Pemberton93ed0322012-11-19 13:25:49 -05001254static int max77693_muic_remove(struct platform_device *pdev)
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001255{
1256 struct max77693_muic_info *info = platform_get_drvdata(pdev);
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001257
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001258 cancel_work_sync(&info->irq_work);
Chanwoo Choi39bf3692012-12-03 13:09:41 +09001259 input_unregister_device(info->dock);
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001260
1261 return 0;
1262}
1263
1264static struct platform_driver max77693_muic_driver = {
1265 .driver = {
1266 .name = DEV_NAME,
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001267 },
1268 .probe = max77693_muic_probe,
Bill Pemberton5f7e2222012-11-19 13:20:06 -05001269 .remove = max77693_muic_remove,
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001270};
1271
1272module_platform_driver(max77693_muic_driver);
1273
1274MODULE_DESCRIPTION("Maxim MAX77693 Extcon driver");
1275MODULE_AUTHOR("Chanwoo Choi <cw00.choi@samsung.com>");
1276MODULE_LICENSE("GPL");
1277MODULE_ALIAS("platform:extcon-max77693");