blob: a4fe7fd3f74d6265b096c24fd09cee860aaa9dbe [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 Choi154f757f2012-11-27 09:40:32 +0900203enum {
204 EXTCON_CABLE_USB = 0,
205 EXTCON_CABLE_USB_HOST,
206 EXTCON_CABLE_TA,
207 EXTCON_CABLE_FAST_CHARGER,
208 EXTCON_CABLE_SLOW_CHARGER,
209 EXTCON_CABLE_CHARGE_DOWNSTREAM,
210 EXTCON_CABLE_MHL,
Chanwoo Choi41b3c012015-04-24 19:50:48 +0900211 EXTCON_CABLE_JIG,
Chanwoo Choid519c422015-04-25 19:05:10 +0900212 EXTCON_CABLE_DOCK,
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900213
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900214 _EXTCON_CABLE_NUM,
215};
216
Sachin Kamat45d4a4e2013-01-31 09:31:47 +0900217static const char *max77693_extcon_cable[] = {
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900218 [EXTCON_CABLE_USB] = "USB",
219 [EXTCON_CABLE_USB_HOST] = "USB-Host",
220 [EXTCON_CABLE_TA] = "TA",
221 [EXTCON_CABLE_FAST_CHARGER] = "Fast-charger",
222 [EXTCON_CABLE_SLOW_CHARGER] = "Slow-charger",
223 [EXTCON_CABLE_CHARGE_DOWNSTREAM] = "Charge-downstream",
224 [EXTCON_CABLE_MHL] = "MHL",
Chanwoo Choi41b3c012015-04-24 19:50:48 +0900225 [EXTCON_CABLE_JIG] = "JIG",
Chanwoo Choid519c422015-04-25 19:05:10 +0900226 [EXTCON_CABLE_DOCK] = "DOCK",
Chanwoo Choid0587eb2012-11-27 12:06:49 +0900227
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900228 NULL,
229};
230
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900231/*
232 * max77693_muic_set_debounce_time - Set the debounce time of ADC
233 * @info: the instance including private data of max77693 MUIC
234 * @time: the debounce time of ADC
235 */
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900236static int max77693_muic_set_debounce_time(struct max77693_muic_info *info,
237 enum max77693_muic_adc_debounce_time time)
238{
Axel Linbf2627d2012-10-04 09:55:23 +0900239 int ret;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900240
241 switch (time) {
242 case ADC_DEBOUNCE_TIME_5MS:
243 case ADC_DEBOUNCE_TIME_10MS:
244 case ADC_DEBOUNCE_TIME_25MS:
245 case ADC_DEBOUNCE_TIME_38_62MS:
Jonghwa Leedc6048d2014-09-17 12:58:43 +0900246 /*
247 * Don't touch BTLDset, JIGset when you want to change adc
248 * debounce time. If it writes other than 0 to BTLDset, JIGset
249 * muic device will be reset and loose current state.
250 */
251 ret = regmap_write(info->max77693->regmap_muic,
252 MAX77693_MUIC_REG_CTRL3,
253 time << CONTROL3_ADCDBSET_SHIFT);
Chanwoo Choi19d32432013-02-13 18:35:08 +0900254 if (ret) {
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900255 dev_err(info->dev, "failed to set ADC debounce time\n");
Sachin Kamatc2536542013-04-08 09:12:32 +0900256 return ret;
Chanwoo Choi19d32432013-02-13 18:35:08 +0900257 }
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900258 break;
259 default:
260 dev_err(info->dev, "invalid ADC debounce time\n");
Chanwoo Choi19d32432013-02-13 18:35:08 +0900261 return -EINVAL;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900262 }
263
Chanwoo Choi19d32432013-02-13 18:35:08 +0900264 return 0;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900265};
266
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900267/*
268 * max77693_muic_set_path - Set hardware line according to attached cable
269 * @info: the instance including private data of max77693 MUIC
270 * @value: the path according to attached cable
271 * @attached: the state of cable (true:attached, false:detached)
272 *
273 * The max77693 MUIC device share outside H/W line among a varity of cables
274 * so, this function set internal path of H/W line according to the type of
275 * attached cable.
276 */
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900277static int max77693_muic_set_path(struct max77693_muic_info *info,
278 u8 val, bool attached)
279{
280 int ret = 0;
Robert Baldygad0540f92014-05-21 08:52:47 +0200281 unsigned int ctrl1, ctrl2 = 0;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900282
283 if (attached)
284 ctrl1 = val;
285 else
286 ctrl1 = CONTROL1_SW_OPEN;
287
Robert Baldygad0540f92014-05-21 08:52:47 +0200288 ret = regmap_update_bits(info->max77693->regmap_muic,
289 MAX77693_MUIC_REG_CTRL1, COMP_SW_MASK, ctrl1);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900290 if (ret < 0) {
291 dev_err(info->dev, "failed to update MUIC register\n");
Sachin Kamatc2536542013-04-08 09:12:32 +0900292 return ret;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900293 }
294
295 if (attached)
296 ctrl2 |= CONTROL2_CPEN_MASK; /* LowPwr=0, CPEn=1 */
297 else
298 ctrl2 |= CONTROL2_LOWPWR_MASK; /* LowPwr=1, CPEn=0 */
299
Robert Baldygad0540f92014-05-21 08:52:47 +0200300 ret = regmap_update_bits(info->max77693->regmap_muic,
301 MAX77693_MUIC_REG_CTRL2,
302 CONTROL2_LOWPWR_MASK | CONTROL2_CPEN_MASK, ctrl2);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900303 if (ret < 0) {
304 dev_err(info->dev, "failed to update MUIC register\n");
Sachin Kamatc2536542013-04-08 09:12:32 +0900305 return ret;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900306 }
307
308 dev_info(info->dev,
309 "CONTROL1 : 0x%02x, CONTROL2 : 0x%02x, state : %s\n",
310 ctrl1, ctrl2, attached ? "attached" : "detached");
Chanwoo Choi19d32432013-02-13 18:35:08 +0900311
312 return 0;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900313}
314
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900315/*
316 * max77693_muic_get_cable_type - Return cable type and check cable state
317 * @info: the instance including private data of max77693 MUIC
318 * @group: the path according to attached cable
319 * @attached: store cable state and return
320 *
321 * This function check the cable state either attached or detached,
322 * and then divide precise type of cable according to cable group.
323 * - MAX77693_CABLE_GROUP_ADC
324 * - MAX77693_CABLE_GROUP_ADC_GND
325 * - MAX77693_CABLE_GROUP_CHG
326 * - MAX77693_CABLE_GROUP_VBVOLT
327 */
328static int max77693_muic_get_cable_type(struct max77693_muic_info *info,
329 enum max77693_muic_cable_group group, bool *attached)
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900330{
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900331 int cable_type = 0;
332 int adc;
333 int adc1k;
334 int adclow;
335 int vbvolt;
336 int chg_type;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900337
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900338 switch (group) {
339 case MAX77693_CABLE_GROUP_ADC:
340 /*
341 * Read ADC value to check cable type and decide cable state
342 * according to cable type
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900343 */
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900344 adc = info->status[0] & STATUS1_ADC_MASK;
345 adc >>= STATUS1_ADC_SHIFT;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900346
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900347 /*
348 * Check current cable state/cable type and store cable type
349 * (info->prev_cable_type) for handling cable when cable is
350 * detached.
351 */
352 if (adc == MAX77693_MUIC_ADC_OPEN) {
353 *attached = false;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900354
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900355 cable_type = info->prev_cable_type;
356 info->prev_cable_type = MAX77693_MUIC_ADC_OPEN;
357 } else {
358 *attached = true;
359
360 cable_type = info->prev_cable_type = adc;
361 }
362 break;
363 case MAX77693_CABLE_GROUP_ADC_GND:
364 /*
365 * Read ADC value to check cable type and decide cable state
366 * according to cable type
367 */
368 adc = info->status[0] & STATUS1_ADC_MASK;
369 adc >>= STATUS1_ADC_SHIFT;
370
371 /*
372 * Check current cable state/cable type and store cable type
373 * (info->prev_cable_type/_gnd) for handling cable when cable
374 * is detached.
375 */
376 if (adc == MAX77693_MUIC_ADC_OPEN) {
377 *attached = false;
378
379 cable_type = info->prev_cable_type_gnd;
380 info->prev_cable_type_gnd = MAX77693_MUIC_ADC_OPEN;
381 } else {
382 *attached = true;
383
384 adclow = info->status[0] & STATUS1_ADCLOW_MASK;
385 adclow >>= STATUS1_ADCLOW_SHIFT;
386 adc1k = info->status[0] & STATUS1_ADC1K_MASK;
387 adc1k >>= STATUS1_ADC1K_SHIFT;
388
389 vbvolt = info->status[1] & STATUS2_VBVOLT_MASK;
390 vbvolt >>= STATUS2_VBVOLT_SHIFT;
391
392 /**
Chanwoo Choic2275d22013-08-23 10:21:37 +0900393 * [0x1|VBVolt|ADCLow|ADC1K]
Jaewon Kim4c883ab2015-01-29 17:45:24 +0900394 * [0x1| 0| 0| 0] USB_HOST
395 * [0x1| 1| 0| 0] USB_HSOT_VB
Chanwoo Choic2275d22013-08-23 10:21:37 +0900396 * [0x1| 0| 1| 0] Audio Video cable with load
397 * [0x1| 0| 1| 1] MHL without charging cable
398 * [0x1| 1| 1| 1] MHL with charging cable
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900399 */
400 cable_type = ((0x1 << 8)
401 | (vbvolt << 2)
402 | (adclow << 1)
403 | adc1k);
404
405 info->prev_cable_type = adc;
406 info->prev_cable_type_gnd = cable_type;
407 }
408
409 break;
410 case MAX77693_CABLE_GROUP_CHG:
411 /*
412 * Read charger type to check cable type and decide cable state
413 * according to type of charger cable.
414 */
415 chg_type = info->status[1] & STATUS2_CHGTYP_MASK;
416 chg_type >>= STATUS2_CHGTYP_SHIFT;
417
418 if (chg_type == MAX77693_CHARGER_TYPE_NONE) {
419 *attached = false;
420
421 cable_type = info->prev_chg_type;
422 info->prev_chg_type = MAX77693_CHARGER_TYPE_NONE;
423 } else {
424 *attached = true;
425
426 /*
427 * Check current cable state/cable type and store cable
428 * type(info->prev_chg_type) for handling cable when
429 * charger cable is detached.
430 */
431 cable_type = info->prev_chg_type = chg_type;
432 }
433
434 break;
435 case MAX77693_CABLE_GROUP_VBVOLT:
436 /*
437 * Read ADC value to check cable type and decide cable state
438 * according to cable type
439 */
440 adc = info->status[0] & STATUS1_ADC_MASK;
441 adc >>= STATUS1_ADC_SHIFT;
442 chg_type = info->status[1] & STATUS2_CHGTYP_MASK;
443 chg_type >>= STATUS2_CHGTYP_SHIFT;
444
445 if (adc == MAX77693_MUIC_ADC_OPEN
446 && chg_type == MAX77693_CHARGER_TYPE_NONE)
447 *attached = false;
448 else
449 *attached = true;
450
451 /*
452 * Read vbvolt field, if vbvolt is 1,
453 * this cable is used for charging.
454 */
455 vbvolt = info->status[1] & STATUS2_VBVOLT_MASK;
456 vbvolt >>= STATUS2_VBVOLT_SHIFT;
457
458 cable_type = vbvolt;
459 break;
460 default:
461 dev_err(info->dev, "Unknown cable group (%d)\n", group);
462 cable_type = -EINVAL;
463 break;
464 }
465
466 return cable_type;
467}
468
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900469static int max77693_muic_dock_handler(struct max77693_muic_info *info,
470 int cable_type, bool attached)
471{
472 int ret = 0;
Chanwoo Choia1626292012-12-10 19:07:53 +0900473 int vbvolt;
474 bool cable_attached;
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900475 char dock_name[CABLE_NAME_MAX];
476
477 dev_info(info->dev,
478 "external connector is %s (adc:0x%02x)\n",
479 attached ? "attached" : "detached", cable_type);
480
481 switch (cable_type) {
482 case MAX77693_MUIC_ADC_RESERVED_ACC_3: /* Dock-Smart */
Chanwoo Choia1626292012-12-10 19:07:53 +0900483 /*
484 * Check power cable whether attached or detached state.
485 * The Dock-Smart device need surely external power supply.
486 * If power cable(USB/TA) isn't connected to Dock device,
487 * user can't use Dock-Smart for desktop mode.
488 */
489 vbvolt = max77693_muic_get_cable_type(info,
490 MAX77693_CABLE_GROUP_VBVOLT, &cable_attached);
491 if (attached && !vbvolt) {
492 dev_warn(info->dev,
493 "Cannot detect external power supply\n");
494 return 0;
495 }
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900496
Chanwoo Choia1626292012-12-10 19:07:53 +0900497 /*
Chanwoo Choid519c422015-04-25 19:05:10 +0900498 * Notify Dock/MHL state.
499 * - Dock device include three type of cable which
Chanwoo Choia1626292012-12-10 19:07:53 +0900500 * are HDMI, USB for mouse/keyboard and micro-usb port
Chanwoo Choid519c422015-04-25 19:05:10 +0900501 * for USB/TA cable. Dock device need always exteranl
502 * power supply(USB/TA cable through micro-usb cable). Dock
503 * device support screen output of target to separate
Chanwoo Choia1626292012-12-10 19:07:53 +0900504 * monitor and mouse/keyboard for desktop mode.
505 *
Chanwoo Choid519c422015-04-25 19:05:10 +0900506 * Features of 'USB/TA cable with Dock device'
Chanwoo Choia1626292012-12-10 19:07:53 +0900507 * - Support MHL
508 * - Support external output feature of audio
509 * - Support charging through micro-usb port without data
510 * connection if TA cable is connected to target.
511 * - Support charging and data connection through micro-usb port
512 * if USB cable is connected between target and host
513 * device.
Jaewon Kim4c883ab2015-01-29 17:45:24 +0900514 * - Support OTG(On-The-Go) device (Ex: Mouse/Keyboard)
Chanwoo Choia1626292012-12-10 19:07:53 +0900515 */
516 ret = max77693_muic_set_path(info, info->path_usb, attached);
517 if (ret < 0)
518 return ret;
519
Chanwoo Choid519c422015-04-25 19:05:10 +0900520 extcon_set_cable_state(info->edev, "DOCK", attached);
Chanwoo Choia1626292012-12-10 19:07:53 +0900521 extcon_set_cable_state(info->edev, "MHL", attached);
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900522 goto out;
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900523 case MAX77693_MUIC_ADC_AUDIO_MODE_REMOTE: /* Dock-Desk */
Chanwoo Choid519c422015-04-25 19:05:10 +0900524 strcpy(dock_name, "DOCK");
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900525 break;
526 case MAX77693_MUIC_ADC_AV_CABLE_NOLOAD: /* Dock-Audio */
Chanwoo Choid519c422015-04-25 19:05:10 +0900527 strcpy(dock_name, "DOCK");
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900528 if (!attached)
529 extcon_set_cable_state(info->edev, "USB", false);
530 break;
Chanwoo Choi19d32432013-02-13 18:35:08 +0900531 default:
532 dev_err(info->dev, "failed to detect %s dock device\n",
533 attached ? "attached" : "detached");
534 return -EINVAL;
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900535 }
536
537 /* Dock-Car/Desk/Audio, PATH:AUDIO */
538 ret = max77693_muic_set_path(info, CONTROL1_SW_AUDIO, attached);
539 if (ret < 0)
Chanwoo Choia1626292012-12-10 19:07:53 +0900540 return ret;
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900541 extcon_set_cable_state(info->edev, dock_name, attached);
542
543out:
Chanwoo Choia1626292012-12-10 19:07:53 +0900544 return 0;
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900545}
546
547static int max77693_muic_dock_button_handler(struct max77693_muic_info *info,
548 int button_type, bool attached)
549{
550 struct input_dev *dock = info->dock;
551 unsigned int code;
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900552
553 switch (button_type) {
554 case MAX77693_MUIC_ADC_REMOTE_S3_BUTTON-1
555 ... MAX77693_MUIC_ADC_REMOTE_S3_BUTTON+1:
556 /* DOCK_KEY_PREV */
557 code = KEY_PREVIOUSSONG;
558 break;
559 case MAX77693_MUIC_ADC_REMOTE_S7_BUTTON-1
560 ... MAX77693_MUIC_ADC_REMOTE_S7_BUTTON+1:
561 /* DOCK_KEY_NEXT */
562 code = KEY_NEXTSONG;
563 break;
564 case MAX77693_MUIC_ADC_REMOTE_S9_BUTTON:
565 /* DOCK_VOL_DOWN */
566 code = KEY_VOLUMEDOWN;
567 break;
568 case MAX77693_MUIC_ADC_REMOTE_S10_BUTTON:
569 /* DOCK_VOL_UP */
570 code = KEY_VOLUMEUP;
571 break;
572 case MAX77693_MUIC_ADC_REMOTE_S12_BUTTON-1
573 ... MAX77693_MUIC_ADC_REMOTE_S12_BUTTON+1:
574 /* DOCK_KEY_PLAY_PAUSE */
575 code = KEY_PLAYPAUSE;
576 break;
577 default:
578 dev_err(info->dev,
579 "failed to detect %s key (adc:0x%x)\n",
580 attached ? "pressed" : "released", button_type);
Chanwoo Choi19d32432013-02-13 18:35:08 +0900581 return -EINVAL;
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900582 }
583
584 input_event(dock, EV_KEY, code, attached);
585 input_sync(dock);
586
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900587 return 0;
588}
589
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900590static int max77693_muic_adc_ground_handler(struct max77693_muic_info *info)
591{
592 int cable_type_gnd;
593 int ret = 0;
594 bool attached;
595
596 cable_type_gnd = max77693_muic_get_cable_type(info,
597 MAX77693_CABLE_GROUP_ADC_GND, &attached);
598
599 switch (cable_type_gnd) {
Jaewon Kim4c883ab2015-01-29 17:45:24 +0900600 case MAX77693_MUIC_GND_USB_HOST:
601 case MAX77693_MUIC_GND_USB_HOST_VB:
602 /* USB_HOST, PATH: AP_USB */
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900603 ret = max77693_muic_set_path(info, CONTROL1_SW_USB, attached);
604 if (ret < 0)
Chanwoo Choi19d32432013-02-13 18:35:08 +0900605 return ret;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900606 extcon_set_cable_state(info->edev, "USB-Host", attached);
607 break;
608 case MAX77693_MUIC_GND_AV_CABLE_LOAD:
Chanwoo Choi06bed0a2012-11-27 11:30:35 +0900609 /* Audio Video Cable with load, PATH:AUDIO */
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900610 ret = max77693_muic_set_path(info, CONTROL1_SW_AUDIO, attached);
611 if (ret < 0)
Chanwoo Choi19d32432013-02-13 18:35:08 +0900612 return ret;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900613 extcon_set_cable_state(info->edev,
614 "Audio-video-load", attached);
615 break;
Chanwoo Choi06bed0a2012-11-27 11:30:35 +0900616 case MAX77693_MUIC_GND_MHL:
617 case MAX77693_MUIC_GND_MHL_VB:
618 /* MHL or MHL with USB/TA cable */
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900619 extcon_set_cable_state(info->edev, "MHL", attached);
620 break;
621 default:
Chanwoo Choi19d32432013-02-13 18:35:08 +0900622 dev_err(info->dev, "failed to detect %s cable of gnd type\n",
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900623 attached ? "attached" : "detached");
Chanwoo Choi19d32432013-02-13 18:35:08 +0900624 return -EINVAL;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900625 }
626
Chanwoo Choi19d32432013-02-13 18:35:08 +0900627 return 0;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900628}
629
Chanwoo Choid0587eb2012-11-27 12:06:49 +0900630static int max77693_muic_jig_handler(struct max77693_muic_info *info,
631 int cable_type, bool attached)
632{
Chanwoo Choid0587eb2012-11-27 12:06:49 +0900633 int ret = 0;
634 u8 path = CONTROL1_SW_OPEN;
635
636 dev_info(info->dev,
637 "external connector is %s (adc:0x%02x)\n",
638 attached ? "attached" : "detached", cable_type);
639
640 switch (cable_type) {
641 case MAX77693_MUIC_ADC_FACTORY_MODE_USB_OFF: /* ADC_JIG_USB_OFF */
Chanwoo Choid0587eb2012-11-27 12:06:49 +0900642 case MAX77693_MUIC_ADC_FACTORY_MODE_USB_ON: /* ADC_JIG_USB_ON */
643 /* PATH:AP_USB */
Chanwoo Choid0587eb2012-11-27 12:06:49 +0900644 path = CONTROL1_SW_USB;
645 break;
646 case MAX77693_MUIC_ADC_FACTORY_MODE_UART_OFF: /* ADC_JIG_UART_OFF */
Krzysztof Kozlowskic22159a2014-10-22 10:45:40 +0200647 case MAX77693_MUIC_ADC_FACTORY_MODE_UART_ON: /* ADC_JIG_UART_ON */
648 /* PATH:AP_UART */
Krzysztof Kozlowskic22159a2014-10-22 10:45:40 +0200649 path = CONTROL1_SW_UART;
650 break;
Chanwoo Choi19d32432013-02-13 18:35:08 +0900651 default:
652 dev_err(info->dev, "failed to detect %s jig cable\n",
653 attached ? "attached" : "detached");
654 return -EINVAL;
Chanwoo Choid0587eb2012-11-27 12:06:49 +0900655 }
656
657 ret = max77693_muic_set_path(info, path, attached);
658 if (ret < 0)
Chanwoo Choi19d32432013-02-13 18:35:08 +0900659 return ret;
Chanwoo Choid0587eb2012-11-27 12:06:49 +0900660
Chanwoo Choi41b3c012015-04-24 19:50:48 +0900661 extcon_set_cable_state(info->edev, "JIG", attached);
Chanwoo Choi19d32432013-02-13 18:35:08 +0900662
663 return 0;
Chanwoo Choid0587eb2012-11-27 12:06:49 +0900664}
665
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900666static int max77693_muic_adc_handler(struct max77693_muic_info *info)
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900667{
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900668 int cable_type;
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900669 int button_type;
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900670 bool attached;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900671 int ret = 0;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900672
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900673 /* Check accessory state which is either detached or attached */
674 cable_type = max77693_muic_get_cable_type(info,
675 MAX77693_CABLE_GROUP_ADC, &attached);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900676
677 dev_info(info->dev,
678 "external connector is %s (adc:0x%02x, prev_adc:0x%x)\n",
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900679 attached ? "attached" : "detached", cable_type,
680 info->prev_cable_type);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900681
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900682 switch (cable_type) {
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900683 case MAX77693_MUIC_ADC_GROUND:
Jaewon Kim4c883ab2015-01-29 17:45:24 +0900684 /* USB_HOST/MHL/Audio */
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900685 max77693_muic_adc_ground_handler(info);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900686 break;
687 case MAX77693_MUIC_ADC_FACTORY_MODE_USB_OFF:
688 case MAX77693_MUIC_ADC_FACTORY_MODE_USB_ON:
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900689 case MAX77693_MUIC_ADC_FACTORY_MODE_UART_OFF:
Krzysztof Kozlowskic22159a2014-10-22 10:45:40 +0200690 case MAX77693_MUIC_ADC_FACTORY_MODE_UART_ON:
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900691 /* JIG */
Chanwoo Choid0587eb2012-11-27 12:06:49 +0900692 ret = max77693_muic_jig_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 Choidb1b9032012-07-17 13:28:28 +0900695 break;
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900696 case MAX77693_MUIC_ADC_RESERVED_ACC_3: /* Dock-Smart */
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900697 case MAX77693_MUIC_ADC_AUDIO_MODE_REMOTE: /* Dock-Desk */
698 case MAX77693_MUIC_ADC_AV_CABLE_NOLOAD: /* Dock-Audio */
699 /*
700 * DOCK device
701 *
702 * The MAX77693 MUIC device can detect total 34 cable type
703 * except of charger cable and MUIC device didn't define
704 * specfic role of cable in the range of from 0x01 to 0x12
705 * of ADC value. So, can use/define cable with no role according
706 * to schema of hardware board.
707 */
708 ret = max77693_muic_dock_handler(info, cable_type, attached);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900709 if (ret < 0)
Chanwoo Choi19d32432013-02-13 18:35:08 +0900710 return ret;
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900711 break;
Chanwoo Choic2275d22013-08-23 10:21:37 +0900712 case MAX77693_MUIC_ADC_REMOTE_S3_BUTTON: /* DOCK_KEY_PREV */
713 case MAX77693_MUIC_ADC_REMOTE_S7_BUTTON: /* DOCK_KEY_NEXT */
714 case MAX77693_MUIC_ADC_REMOTE_S9_BUTTON: /* DOCK_VOL_DOWN */
715 case MAX77693_MUIC_ADC_REMOTE_S10_BUTTON: /* DOCK_VOL_UP */
716 case MAX77693_MUIC_ADC_REMOTE_S12_BUTTON: /* DOCK_KEY_PLAY_PAUSE */
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900717 /*
718 * Button of DOCK device
719 * - the Prev/Next/Volume Up/Volume Down/Play-Pause button
720 *
721 * The MAX77693 MUIC device can detect total 34 cable type
722 * except of charger cable and MUIC device didn't define
723 * specfic role of cable in the range of from 0x01 to 0x12
724 * of ADC value. So, can use/define cable with no role according
725 * to schema of hardware board.
726 */
727 if (attached)
728 button_type = info->prev_button_type = cable_type;
729 else
730 button_type = info->prev_button_type;
731
732 ret = max77693_muic_dock_button_handler(info, button_type,
733 attached);
734 if (ret < 0)
Chanwoo Choi19d32432013-02-13 18:35:08 +0900735 return ret;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900736 break;
737 case MAX77693_MUIC_ADC_SEND_END_BUTTON:
738 case MAX77693_MUIC_ADC_REMOTE_S1_BUTTON:
739 case MAX77693_MUIC_ADC_REMOTE_S2_BUTTON:
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900740 case MAX77693_MUIC_ADC_REMOTE_S4_BUTTON:
741 case MAX77693_MUIC_ADC_REMOTE_S5_BUTTON:
742 case MAX77693_MUIC_ADC_REMOTE_S6_BUTTON:
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900743 case MAX77693_MUIC_ADC_REMOTE_S8_BUTTON:
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900744 case MAX77693_MUIC_ADC_REMOTE_S11_BUTTON:
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900745 case MAX77693_MUIC_ADC_RESERVED_ACC_1:
746 case MAX77693_MUIC_ADC_RESERVED_ACC_2:
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900747 case MAX77693_MUIC_ADC_RESERVED_ACC_4:
748 case MAX77693_MUIC_ADC_RESERVED_ACC_5:
749 case MAX77693_MUIC_ADC_CEA936_AUDIO:
750 case MAX77693_MUIC_ADC_PHONE_POWERED_DEV:
751 case MAX77693_MUIC_ADC_TTY_CONVERTER:
752 case MAX77693_MUIC_ADC_UART_CABLE:
753 case MAX77693_MUIC_ADC_CEA936A_TYPE1_CHG:
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900754 case MAX77693_MUIC_ADC_CEA936A_TYPE2_CHG:
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900755 /*
756 * This accessory isn't used in general case if it is specially
757 * needed to detect additional accessory, should implement
758 * proper operation when this accessory is attached/detached.
759 */
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900760 dev_info(info->dev,
761 "accessory is %s but it isn't used (adc:0x%x)\n",
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900762 attached ? "attached" : "detached", cable_type);
Chanwoo Choi19d32432013-02-13 18:35:08 +0900763 return -EAGAIN;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900764 default:
765 dev_err(info->dev,
766 "failed to detect %s accessory (adc:0x%x)\n",
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900767 attached ? "attached" : "detached", cable_type);
Chanwoo Choi19d32432013-02-13 18:35:08 +0900768 return -EINVAL;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900769 }
770
Chanwoo Choi19d32432013-02-13 18:35:08 +0900771 return 0;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900772}
773
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900774static int max77693_muic_chg_handler(struct max77693_muic_info *info)
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900775{
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900776 int chg_type;
Chanwoo Choi06bed0a2012-11-27 11:30:35 +0900777 int cable_type_gnd;
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900778 int cable_type;
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900779 bool attached;
Chanwoo Choi06bed0a2012-11-27 11:30:35 +0900780 bool cable_attached;
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900781 int ret = 0;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900782
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900783 chg_type = max77693_muic_get_cable_type(info,
784 MAX77693_CABLE_GROUP_CHG, &attached);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900785
786 dev_info(info->dev,
787 "external connector is %s(chg_type:0x%x, prev_chg_type:0x%x)\n",
788 attached ? "attached" : "detached",
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900789 chg_type, info->prev_chg_type);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900790
791 switch (chg_type) {
792 case MAX77693_CHARGER_TYPE_USB:
Chanwoo Choia1626292012-12-10 19:07:53 +0900793 case MAX77693_CHARGER_TYPE_DEDICATED_CHG:
Chanwoo Choi0e2738f2012-12-06 21:36:18 +0900794 case MAX77693_CHARGER_TYPE_NONE:
Chanwoo Choia1626292012-12-10 19:07:53 +0900795 /* Check MAX77693_CABLE_GROUP_ADC_GND type */
Chanwoo Choi06bed0a2012-11-27 11:30:35 +0900796 cable_type_gnd = max77693_muic_get_cable_type(info,
797 MAX77693_CABLE_GROUP_ADC_GND,
798 &cable_attached);
Chanwoo Choia1626292012-12-10 19:07:53 +0900799 switch (cable_type_gnd) {
800 case MAX77693_MUIC_GND_MHL:
801 case MAX77693_MUIC_GND_MHL_VB:
802 /*
Chanwoo Choi942e0232015-04-25 19:06:18 +0900803 * MHL cable with USB/TA cable
Chanwoo Choic2275d22013-08-23 10:21:37 +0900804 * - MHL cable include two port(HDMI line and separate
805 * micro-usb port. When the target connect MHL cable,
Chanwoo Choi942e0232015-04-25 19:06:18 +0900806 * extcon driver check whether USB/TA cable is
807 * connected. If USB/TA cable is connected, extcon
Chanwoo Choic2275d22013-08-23 10:21:37 +0900808 * driver notify state to notifiee for charging battery.
Chanwoo Choia1626292012-12-10 19:07:53 +0900809 *
Chanwoo Choi942e0232015-04-25 19:06:18 +0900810 * Features of 'USB/TA with MHL cable'
Chanwoo Choia1626292012-12-10 19:07:53 +0900811 * - Support MHL
Chanwoo Choic2275d22013-08-23 10:21:37 +0900812 * - Support charging through micro-usb port without
813 * data connection
Chanwoo Choia1626292012-12-10 19:07:53 +0900814 */
Chanwoo Choi942e0232015-04-25 19:06:18 +0900815 extcon_set_cable_state(info->edev, "TA", attached);
Chanwoo Choi06bed0a2012-11-27 11:30:35 +0900816 if (!cable_attached)
Chanwoo Choic2275d22013-08-23 10:21:37 +0900817 extcon_set_cable_state(info->edev,
818 "MHL", cable_attached);
Chanwoo Choia1626292012-12-10 19:07:53 +0900819 break;
Chanwoo Choi06bed0a2012-11-27 11:30:35 +0900820 }
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900821
Chanwoo Choia1626292012-12-10 19:07:53 +0900822 /* Check MAX77693_CABLE_GROUP_ADC type */
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900823 cable_type = max77693_muic_get_cable_type(info,
824 MAX77693_CABLE_GROUP_ADC,
825 &cable_attached);
Chanwoo Choia1626292012-12-10 19:07:53 +0900826 switch (cable_type) {
827 case MAX77693_MUIC_ADC_AV_CABLE_NOLOAD: /* Dock-Audio */
828 /*
829 * Dock-Audio device with USB/TA cable
Chanwoo Choic2275d22013-08-23 10:21:37 +0900830 * - Dock device include two port(Dock-Audio and micro-
831 * usb port). When the target connect Dock-Audio device,
832 * extcon driver check whether USB/TA cable is connected
833 * or not. If USB/TA cable is connected, extcon driver
834 * notify state to notifiee for charging battery.
Chanwoo Choia1626292012-12-10 19:07:53 +0900835 *
836 * Features of 'USB/TA cable with Dock-Audio device'
837 * - Support external output feature of audio.
Chanwoo Choic2275d22013-08-23 10:21:37 +0900838 * - Support charging through micro-usb port without
839 * data connection.
Chanwoo Choia1626292012-12-10 19:07:53 +0900840 */
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900841 extcon_set_cable_state(info->edev, "USB", attached);
842
843 if (!cable_attached)
Chanwoo Choid519c422015-04-25 19:05:10 +0900844 extcon_set_cable_state(info->edev, "DOCK",
Chanwoo Choic2275d22013-08-23 10:21:37 +0900845 cable_attached);
Chanwoo Choia1626292012-12-10 19:07:53 +0900846 break;
847 case MAX77693_MUIC_ADC_RESERVED_ACC_3: /* Dock-Smart */
848 /*
849 * Dock-Smart device with USB/TA cable
850 * - Dock-Desk device include three type of cable which
851 * are HDMI, USB for mouse/keyboard and micro-usb port
Chanwoo Choic2275d22013-08-23 10:21:37 +0900852 * for USB/TA cable. Dock-Smart device need always
853 * exteranl power supply(USB/TA cable through micro-usb
854 * cable). Dock-Smart device support screen output of
855 * target to separate monitor and mouse/keyboard for
856 * desktop mode.
Chanwoo Choia1626292012-12-10 19:07:53 +0900857 *
858 * Features of 'USB/TA cable with Dock-Smart device'
859 * - Support MHL
860 * - Support external output feature of audio
Chanwoo Choic2275d22013-08-23 10:21:37 +0900861 * - Support charging through micro-usb port without
862 * data connection if TA cable is connected to target.
863 * - Support charging and data connection through micro-
864 * usb port if USB cable is connected between target
865 * and host device
Jaewon Kim4c883ab2015-01-29 17:45:24 +0900866 * - Support OTG(On-The-Go) device (Ex: Mouse/Keyboard)
Chanwoo Choia1626292012-12-10 19:07:53 +0900867 */
Chanwoo Choic2275d22013-08-23 10:21:37 +0900868 ret = max77693_muic_set_path(info, info->path_usb,
869 attached);
Chanwoo Choia1626292012-12-10 19:07:53 +0900870 if (ret < 0)
871 return ret;
872
Chanwoo Choid519c422015-04-25 19:05:10 +0900873 extcon_set_cable_state(info->edev, "DOCK", attached);
Chanwoo Choia1626292012-12-10 19:07:53 +0900874 extcon_set_cable_state(info->edev, "MHL", attached);
875
876 break;
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900877 }
878
Chanwoo Choia1626292012-12-10 19:07:53 +0900879 /* Check MAX77693_CABLE_GROUP_CHG type */
880 switch (chg_type) {
881 case MAX77693_CHARGER_TYPE_NONE:
882 /*
Chanwoo Choic2275d22013-08-23 10:21:37 +0900883 * When MHL(with USB/TA cable) or Dock-Audio with USB/TA
884 * cable is attached, muic device happen below two irq.
885 * - 'MAX77693_MUIC_IRQ_INT1_ADC' for detecting
886 * MHL/Dock-Audio.
887 * - 'MAX77693_MUIC_IRQ_INT2_CHGTYP' for detecting
888 * USB/TA cable connected to MHL or Dock-Audio.
889 * Always, happen eariler MAX77693_MUIC_IRQ_INT1_ADC
890 * irq than MAX77693_MUIC_IRQ_INT2_CHGTYP irq.
Chanwoo Choia1626292012-12-10 19:07:53 +0900891 *
Chanwoo Choic2275d22013-08-23 10:21:37 +0900892 * If user attach MHL (with USB/TA cable and immediately
893 * detach MHL with USB/TA cable before MAX77693_MUIC_IRQ
894 * _INT2_CHGTYP irq is happened, USB/TA cable remain
895 * connected state to target. But USB/TA cable isn't
896 * connected to target. The user be face with unusual
897 * action. So, driver should check this situation in
898 * spite of, that previous charger type is N/A.
Chanwoo Choia1626292012-12-10 19:07:53 +0900899 */
Chanwoo Choi0e2738f2012-12-06 21:36:18 +0900900 break;
Chanwoo Choia1626292012-12-10 19:07:53 +0900901 case MAX77693_CHARGER_TYPE_USB:
902 /* Only USB cable, PATH:AP_USB */
Chanwoo Choic2275d22013-08-23 10:21:37 +0900903 ret = max77693_muic_set_path(info, info->path_usb,
904 attached);
Chanwoo Choia1626292012-12-10 19:07:53 +0900905 if (ret < 0)
906 return ret;
Chanwoo Choi0e2738f2012-12-06 21:36:18 +0900907
Chanwoo Choia1626292012-12-10 19:07:53 +0900908 extcon_set_cable_state(info->edev, "USB", attached);
909 break;
910 case MAX77693_CHARGER_TYPE_DEDICATED_CHG:
911 /* Only TA cable */
912 extcon_set_cable_state(info->edev, "TA", attached);
913 break;
914 }
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900915 break;
916 case MAX77693_CHARGER_TYPE_DOWNSTREAM_PORT:
917 extcon_set_cable_state(info->edev,
918 "Charge-downstream", attached);
919 break;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900920 case MAX77693_CHARGER_TYPE_APPLE_500MA:
921 extcon_set_cable_state(info->edev, "Slow-charger", attached);
922 break;
923 case MAX77693_CHARGER_TYPE_APPLE_1A_2A:
924 extcon_set_cable_state(info->edev, "Fast-charger", attached);
925 break;
926 case MAX77693_CHARGER_TYPE_DEAD_BATTERY:
927 break;
928 default:
929 dev_err(info->dev,
930 "failed to detect %s accessory (chg_type:0x%x)\n",
931 attached ? "attached" : "detached", chg_type);
Chanwoo Choia1626292012-12-10 19:07:53 +0900932 return -EINVAL;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900933 }
934
Chanwoo Choia1626292012-12-10 19:07:53 +0900935 return 0;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900936}
937
938static void max77693_muic_irq_work(struct work_struct *work)
939{
940 struct max77693_muic_info *info = container_of(work,
941 struct max77693_muic_info, irq_work);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900942 int irq_type = -1;
943 int i, ret = 0;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900944
945 if (!info->edev)
946 return;
947
948 mutex_lock(&info->mutex);
949
Sachin Kamata33411b2013-08-05 14:32:04 +0530950 for (i = 0; i < ARRAY_SIZE(muic_irqs); i++)
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900951 if (info->irq == muic_irqs[i].virq)
952 irq_type = muic_irqs[i].irq;
953
Robert Baldygad0540f92014-05-21 08:52:47 +0200954 ret = regmap_bulk_read(info->max77693->regmap_muic,
955 MAX77693_MUIC_REG_STATUS1, info->status, 2);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900956 if (ret) {
957 dev_err(info->dev, "failed to read MUIC register\n");
958 mutex_unlock(&info->mutex);
959 return;
960 }
961
962 switch (irq_type) {
963 case MAX77693_MUIC_IRQ_INT1_ADC:
964 case MAX77693_MUIC_IRQ_INT1_ADC_LOW:
965 case MAX77693_MUIC_IRQ_INT1_ADC_ERR:
966 case MAX77693_MUIC_IRQ_INT1_ADC1K:
967 /* Handle all of accessory except for
968 type of charger accessory */
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900969 ret = max77693_muic_adc_handler(info);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900970 break;
971 case MAX77693_MUIC_IRQ_INT2_CHGTYP:
972 case MAX77693_MUIC_IRQ_INT2_CHGDETREUN:
973 case MAX77693_MUIC_IRQ_INT2_DCDTMR:
974 case MAX77693_MUIC_IRQ_INT2_DXOVP:
975 case MAX77693_MUIC_IRQ_INT2_VBVOLT:
976 case MAX77693_MUIC_IRQ_INT2_VIDRM:
977 /* Handle charger accessory */
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900978 ret = max77693_muic_chg_handler(info);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900979 break;
980 case MAX77693_MUIC_IRQ_INT3_EOC:
981 case MAX77693_MUIC_IRQ_INT3_CGMBC:
982 case MAX77693_MUIC_IRQ_INT3_OVP:
983 case MAX77693_MUIC_IRQ_INT3_MBCCHG_ERR:
984 case MAX77693_MUIC_IRQ_INT3_CHG_ENABLED:
985 case MAX77693_MUIC_IRQ_INT3_BAT_DET:
986 break;
987 default:
988 dev_err(info->dev, "muic interrupt: irq %d occurred\n",
989 irq_type);
Chanwoo Choi19d32432013-02-13 18:35:08 +0900990 mutex_unlock(&info->mutex);
991 return;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900992 }
993
994 if (ret < 0)
995 dev_err(info->dev, "failed to handle MUIC interrupt\n");
996
997 mutex_unlock(&info->mutex);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900998}
999
1000static irqreturn_t max77693_muic_irq_handler(int irq, void *data)
1001{
1002 struct max77693_muic_info *info = data;
1003
1004 info->irq = irq;
1005 schedule_work(&info->irq_work);
1006
1007 return IRQ_HANDLED;
1008}
1009
Krzysztof Kozlowski65948902015-01-05 09:57:27 +01001010static const struct regmap_config max77693_muic_regmap_config = {
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001011 .reg_bits = 8,
1012 .val_bits = 8,
1013};
1014
1015static int max77693_muic_detect_accessory(struct max77693_muic_info *info)
1016{
1017 int ret = 0;
Chanwoo Choi154f757f2012-11-27 09:40:32 +09001018 int adc;
1019 int chg_type;
1020 bool attached;
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001021
1022 mutex_lock(&info->mutex);
1023
1024 /* Read STATUSx register to detect accessory */
Robert Baldygad0540f92014-05-21 08:52:47 +02001025 ret = regmap_bulk_read(info->max77693->regmap_muic,
1026 MAX77693_MUIC_REG_STATUS1, info->status, 2);
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001027 if (ret) {
1028 dev_err(info->dev, "failed to read MUIC register\n");
1029 mutex_unlock(&info->mutex);
Sachin Kamatc2536542013-04-08 09:12:32 +09001030 return ret;
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001031 }
1032
Chanwoo Choi154f757f2012-11-27 09:40:32 +09001033 adc = max77693_muic_get_cable_type(info, MAX77693_CABLE_GROUP_ADC,
1034 &attached);
1035 if (attached && adc != MAX77693_MUIC_ADC_OPEN) {
1036 ret = max77693_muic_adc_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 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 Choi154f757f2012-11-27 09:40:32 +09001044 chg_type = max77693_muic_get_cable_type(info, MAX77693_CABLE_GROUP_CHG,
1045 &attached);
1046 if (attached && chg_type != MAX77693_CHARGER_TYPE_NONE) {
1047 ret = max77693_muic_chg_handler(info);
Chanwoo Choi19d32432013-02-13 18:35:08 +09001048 if (ret < 0) {
Chanwoo Choi154f757f2012-11-27 09:40:32 +09001049 dev_err(info->dev, "Cannot detect charger accessory\n");
Chanwoo Choi19d32432013-02-13 18:35:08 +09001050 mutex_unlock(&info->mutex);
1051 return ret;
1052 }
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001053 }
1054
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001055 mutex_unlock(&info->mutex);
Chanwoo Choi154f757f2012-11-27 09:40:32 +09001056
Chanwoo Choi19d32432013-02-13 18:35:08 +09001057 return 0;
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001058}
1059
Chanwoo Choi297620f2012-12-26 13:10:11 +09001060static void max77693_muic_detect_cable_wq(struct work_struct *work)
1061{
1062 struct max77693_muic_info *info = container_of(to_delayed_work(work),
1063 struct max77693_muic_info, wq_detcable);
1064
1065 max77693_muic_detect_accessory(info);
1066}
1067
Bill Pemberton44f34fd2012-11-19 13:23:21 -05001068static int max77693_muic_probe(struct platform_device *pdev)
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001069{
1070 struct max77693_dev *max77693 = dev_get_drvdata(pdev->dev.parent);
Chanwoo Choif8457d52012-10-08 14:41:49 +09001071 struct max77693_platform_data *pdata = dev_get_platdata(max77693->dev);
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001072 struct max77693_muic_info *info;
Chanwoo Choi0ec83bd2013-03-13 17:38:57 +09001073 struct max77693_reg_data *init_data;
1074 int num_init_data;
Chanwoo Choi297620f2012-12-26 13:10:11 +09001075 int delay_jiffies;
1076 int ret;
1077 int i;
Robert Baldygad0540f92014-05-21 08:52:47 +02001078 unsigned int id;
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001079
Sachin Kamatf4bb5cb2012-11-20 15:46:50 +09001080 info = devm_kzalloc(&pdev->dev, sizeof(struct max77693_muic_info),
1081 GFP_KERNEL);
Jingoo Han0a16ee62014-07-23 10:07:09 +09001082 if (!info)
Sachin Kamatf4bb5cb2012-11-20 15:46:50 +09001083 return -ENOMEM;
Jingoo Han0a16ee62014-07-23 10:07:09 +09001084
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001085 info->dev = &pdev->dev;
1086 info->max77693 = max77693;
Sachin Kamat1967fa02012-11-21 10:04:58 +05301087 if (info->max77693->regmap_muic) {
Chanwoo Choib186b122012-08-21 15:16:23 +09001088 dev_dbg(&pdev->dev, "allocate register map\n");
Sachin Kamat1967fa02012-11-21 10:04:58 +05301089 } else {
Chanwoo Choib186b122012-08-21 15:16:23 +09001090 info->max77693->regmap_muic = devm_regmap_init_i2c(
1091 info->max77693->muic,
1092 &max77693_muic_regmap_config);
1093 if (IS_ERR(info->max77693->regmap_muic)) {
1094 ret = PTR_ERR(info->max77693->regmap_muic);
1095 dev_err(max77693->dev,
1096 "failed to allocate register map: %d\n", ret);
Sachin Kamat3bf742f2012-11-21 10:04:57 +05301097 return ret;
Chanwoo Choib186b122012-08-21 15:16:23 +09001098 }
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001099 }
Chanwoo Choi39bf3692012-12-03 13:09:41 +09001100
1101 /* Register input device for button of dock device */
Chanwoo Choieff7d742013-02-13 18:35:05 +09001102 info->dock = devm_input_allocate_device(&pdev->dev);
Chanwoo Choi39bf3692012-12-03 13:09:41 +09001103 if (!info->dock) {
1104 dev_err(&pdev->dev, "%s: failed to allocate input\n", __func__);
1105 return -ENOMEM;
1106 }
1107 info->dock->name = "max77693-muic/dock";
1108 info->dock->phys = "max77693-muic/extcon";
1109 info->dock->dev.parent = &pdev->dev;
1110
1111 __set_bit(EV_REP, info->dock->evbit);
1112
1113 input_set_capability(info->dock, EV_KEY, KEY_VOLUMEUP);
1114 input_set_capability(info->dock, EV_KEY, KEY_VOLUMEDOWN);
1115 input_set_capability(info->dock, EV_KEY, KEY_PLAYPAUSE);
1116 input_set_capability(info->dock, EV_KEY, KEY_PREVIOUSSONG);
1117 input_set_capability(info->dock, EV_KEY, KEY_NEXTSONG);
1118
1119 ret = input_register_device(info->dock);
1120 if (ret < 0) {
1121 dev_err(&pdev->dev, "Cannot register input device error(%d)\n",
1122 ret);
1123 return ret;
1124 }
1125
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001126 platform_set_drvdata(pdev, info);
1127 mutex_init(&info->mutex);
1128
1129 INIT_WORK(&info->irq_work, max77693_muic_irq_work);
1130
1131 /* Support irq domain for MAX77693 MUIC device */
1132 for (i = 0; i < ARRAY_SIZE(muic_irqs); i++) {
1133 struct max77693_muic_irq *muic_irq = &muic_irqs[i];
Sachin Kamat00af4b12012-11-20 15:46:44 +09001134 unsigned int virq = 0;
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001135
Robert Baldyga342d6692014-05-21 08:52:48 +02001136 virq = regmap_irq_get_virq(max77693->irq_data_muic,
1137 muic_irq->irq);
Krzysztof Kozlowskid7155232014-09-12 15:16:37 +02001138 if (!virq)
1139 return -EINVAL;
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001140 muic_irq->virq = virq;
1141
Krzysztof Kozlowskid7155232014-09-12 15:16:37 +02001142 ret = devm_request_threaded_irq(&pdev->dev, virq, NULL,
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001143 max77693_muic_irq_handler,
Chanwoo Choiae3b3212012-11-28 12:39:01 +09001144 IRQF_NO_SUSPEND,
1145 muic_irq->name, info);
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001146 if (ret) {
1147 dev_err(&pdev->dev,
Chanwoo Choi34825e52015-03-07 01:41:36 +09001148 "failed: irq request (IRQ: %d, error :%d)\n",
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001149 muic_irq->irq, ret);
Krzysztof Kozlowskid7155232014-09-12 15:16:37 +02001150 return ret;
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001151 }
1152 }
1153
1154 /* Initialize extcon device */
Chanwoo Choi577bef12014-04-21 20:39:53 +09001155 info->edev = devm_extcon_dev_allocate(&pdev->dev,
1156 max77693_extcon_cable);
1157 if (IS_ERR(info->edev)) {
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001158 dev_err(&pdev->dev, "failed to allocate memory for extcon\n");
Krzysztof Kozlowskid7155232014-09-12 15:16:37 +02001159 return -ENOMEM;
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001160 }
1161 info->edev->name = DEV_NAME;
Chanwoo Choi577bef12014-04-21 20:39:53 +09001162
Sangjung Woo10fae112014-04-21 19:10:12 +09001163 ret = devm_extcon_dev_register(&pdev->dev, info->edev);
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001164 if (ret) {
1165 dev_err(&pdev->dev, "failed to register extcon device\n");
Krzysztof Kozlowskid7155232014-09-12 15:16:37 +02001166 return ret;
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001167 }
1168
Chanwoo Choi0ec83bd2013-03-13 17:38:57 +09001169 /* Initialize MUIC register by using platform data or default data */
Krzysztof Kozlowskid5653f22014-04-09 15:20:12 +02001170 if (pdata && pdata->muic_data) {
Chanwoo Choi0ec83bd2013-03-13 17:38:57 +09001171 init_data = pdata->muic_data->init_data;
1172 num_init_data = pdata->muic_data->num_init_data;
1173 } else {
1174 init_data = default_init_data;
1175 num_init_data = ARRAY_SIZE(default_init_data);
1176 }
1177
Sachin Kamata33411b2013-08-05 14:32:04 +05301178 for (i = 0; i < num_init_data; i++) {
Chanwoo Choi0ec83bd2013-03-13 17:38:57 +09001179 enum max77693_irq_source irq_src
1180 = MAX77693_IRQ_GROUP_NR;
1181
Robert Baldygad0540f92014-05-21 08:52:47 +02001182 regmap_write(info->max77693->regmap_muic,
Chanwoo Choi0ec83bd2013-03-13 17:38:57 +09001183 init_data[i].addr,
1184 init_data[i].data);
1185
1186 switch (init_data[i].addr) {
1187 case MAX77693_MUIC_REG_INTMASK1:
1188 irq_src = MUIC_INT1;
1189 break;
1190 case MAX77693_MUIC_REG_INTMASK2:
1191 irq_src = MUIC_INT2;
1192 break;
1193 case MAX77693_MUIC_REG_INTMASK3:
1194 irq_src = MUIC_INT3;
1195 break;
1196 }
1197
1198 if (irq_src < MAX77693_IRQ_GROUP_NR)
1199 info->max77693->irq_masks_cur[irq_src]
1200 = init_data[i].data;
1201 }
1202
Krzysztof Kozlowskid5653f22014-04-09 15:20:12 +02001203 if (pdata && pdata->muic_data) {
Chanwoo Choic2275d22013-08-23 10:21:37 +09001204 struct max77693_muic_platform_data *muic_pdata
1205 = pdata->muic_data;
Chanwoo Choif8457d52012-10-08 14:41:49 +09001206
Chanwoo Choi190d7cf2013-02-18 10:03:32 +09001207 /*
1208 * Default usb/uart path whether UART/USB or AUX_UART/AUX_USB
1209 * h/w path of COMP2/COMN1 on CONTROL1 register.
1210 */
1211 if (muic_pdata->path_uart)
1212 info->path_uart = muic_pdata->path_uart;
1213 else
1214 info->path_uart = CONTROL1_SW_UART;
Chanwoo Choif8457d52012-10-08 14:41:49 +09001215
Chanwoo Choi190d7cf2013-02-18 10:03:32 +09001216 if (muic_pdata->path_usb)
1217 info->path_usb = muic_pdata->path_usb;
1218 else
1219 info->path_usb = CONTROL1_SW_USB;
Chanwoo Choi2b757992012-12-06 21:27:56 +09001220
Chanwoo Choi190d7cf2013-02-18 10:03:32 +09001221 /*
1222 * Default delay time for detecting cable state
1223 * after certain time.
1224 */
1225 if (muic_pdata->detcable_delay_ms)
1226 delay_jiffies =
1227 msecs_to_jiffies(muic_pdata->detcable_delay_ms);
1228 else
1229 delay_jiffies = msecs_to_jiffies(DELAY_MS_DEFAULT);
1230 } else {
Chanwoo Choi2b757992012-12-06 21:27:56 +09001231 info->path_usb = CONTROL1_SW_USB;
Chanwoo Choi190d7cf2013-02-18 10:03:32 +09001232 info->path_uart = CONTROL1_SW_UART;
1233 delay_jiffies = msecs_to_jiffies(DELAY_MS_DEFAULT);
1234 }
Chanwoo Choi2b757992012-12-06 21:27:56 +09001235
1236 /* Set initial path for UART */
1237 max77693_muic_set_path(info, info->path_uart, true);
1238
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001239 /* Check revision number of MUIC device*/
Robert Baldygad0540f92014-05-21 08:52:47 +02001240 ret = regmap_read(info->max77693->regmap_muic,
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001241 MAX77693_MUIC_REG_ID, &id);
1242 if (ret < 0) {
1243 dev_err(&pdev->dev, "failed to read revision number\n");
Krzysztof Kozlowskid7155232014-09-12 15:16:37 +02001244 return ret;
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001245 }
1246 dev_info(info->dev, "device ID : 0x%x\n", id);
1247
1248 /* Set ADC debounce time */
1249 max77693_muic_set_debounce_time(info, ADC_DEBOUNCE_TIME_25MS);
1250
Chanwoo Choi297620f2012-12-26 13:10:11 +09001251 /*
1252 * Detect accessory after completing the initialization of platform
1253 *
1254 * - Use delayed workqueue to detect cable state and then
1255 * notify cable state to notifiee/platform through uevent.
1256 * After completing the booting of platform, the extcon provider
1257 * driver should notify cable state to upper layer.
1258 */
1259 INIT_DELAYED_WORK(&info->wq_detcable, max77693_muic_detect_cable_wq);
Krzysztof Kozlowskib8629412014-04-09 15:20:13 +02001260 queue_delayed_work(system_power_efficient_wq, &info->wq_detcable,
1261 delay_jiffies);
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001262
1263 return ret;
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001264}
1265
Bill Pemberton93ed0322012-11-19 13:25:49 -05001266static int max77693_muic_remove(struct platform_device *pdev)
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001267{
1268 struct max77693_muic_info *info = platform_get_drvdata(pdev);
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001269
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001270 cancel_work_sync(&info->irq_work);
Chanwoo Choi39bf3692012-12-03 13:09:41 +09001271 input_unregister_device(info->dock);
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001272
1273 return 0;
1274}
1275
1276static struct platform_driver max77693_muic_driver = {
1277 .driver = {
1278 .name = DEV_NAME,
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001279 },
1280 .probe = max77693_muic_probe,
Bill Pemberton5f7e2222012-11-19 13:20:06 -05001281 .remove = max77693_muic_remove,
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001282};
1283
1284module_platform_driver(max77693_muic_driver);
1285
1286MODULE_DESCRIPTION("Maxim MAX77693 Extcon driver");
1287MODULE_AUTHOR("Chanwoo Choi <cw00.choi@samsung.com>");
1288MODULE_LICENSE("GPL");
1289MODULE_ALIAS("platform:extcon-max77693");