blob: 490e27475bac08d6c883fb9ef1d4bf70ba7e4dc9 [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| */
193 MAX77693_MUIC_GND_USB_OTG = 0x100, /* 0x0| 0| 0| 0| */
194 MAX77693_MUIC_GND_USB_OTG_VB = 0x104, /* 0x0| 1| 0| 0| */
195 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 Choi06bed0a2012-11-27 11:30:35 +0900211 EXTCON_CABLE_MHL_TA,
Chanwoo Choid0587eb2012-11-27 12:06:49 +0900212 EXTCON_CABLE_JIG_USB_ON,
213 EXTCON_CABLE_JIG_USB_OFF,
214 EXTCON_CABLE_JIG_UART_OFF,
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900215 EXTCON_CABLE_JIG_UART_ON,
216 EXTCON_CABLE_DOCK_SMART,
217 EXTCON_CABLE_DOCK_DESK,
218 EXTCON_CABLE_DOCK_AUDIO,
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900219
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900220 _EXTCON_CABLE_NUM,
221};
222
Sachin Kamat45d4a4e2013-01-31 09:31:47 +0900223static const char *max77693_extcon_cable[] = {
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900224 [EXTCON_CABLE_USB] = "USB",
225 [EXTCON_CABLE_USB_HOST] = "USB-Host",
226 [EXTCON_CABLE_TA] = "TA",
227 [EXTCON_CABLE_FAST_CHARGER] = "Fast-charger",
228 [EXTCON_CABLE_SLOW_CHARGER] = "Slow-charger",
229 [EXTCON_CABLE_CHARGE_DOWNSTREAM] = "Charge-downstream",
230 [EXTCON_CABLE_MHL] = "MHL",
Chanwoo Choi06bed0a2012-11-27 11:30:35 +0900231 [EXTCON_CABLE_MHL_TA] = "MHL_TA",
Chanwoo Choid0587eb2012-11-27 12:06:49 +0900232 [EXTCON_CABLE_JIG_USB_ON] = "JIG-USB-ON",
233 [EXTCON_CABLE_JIG_USB_OFF] = "JIG-USB-OFF",
234 [EXTCON_CABLE_JIG_UART_OFF] = "JIG-UART-OFF",
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900235 [EXTCON_CABLE_JIG_UART_ON] = "Dock-Car",
236 [EXTCON_CABLE_DOCK_SMART] = "Dock-Smart",
237 [EXTCON_CABLE_DOCK_DESK] = "Dock-Desk",
238 [EXTCON_CABLE_DOCK_AUDIO] = "Dock-Audio",
Chanwoo Choid0587eb2012-11-27 12:06:49 +0900239
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900240 NULL,
241};
242
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900243/*
244 * max77693_muic_set_debounce_time - Set the debounce time of ADC
245 * @info: the instance including private data of max77693 MUIC
246 * @time: the debounce time of ADC
247 */
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900248static int max77693_muic_set_debounce_time(struct max77693_muic_info *info,
249 enum max77693_muic_adc_debounce_time time)
250{
Axel Linbf2627d2012-10-04 09:55:23 +0900251 int ret;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900252
253 switch (time) {
254 case ADC_DEBOUNCE_TIME_5MS:
255 case ADC_DEBOUNCE_TIME_10MS:
256 case ADC_DEBOUNCE_TIME_25MS:
257 case ADC_DEBOUNCE_TIME_38_62MS:
Jonghwa Leedc6048d2014-09-17 12:58:43 +0900258 /*
259 * Don't touch BTLDset, JIGset when you want to change adc
260 * debounce time. If it writes other than 0 to BTLDset, JIGset
261 * muic device will be reset and loose current state.
262 */
263 ret = regmap_write(info->max77693->regmap_muic,
264 MAX77693_MUIC_REG_CTRL3,
265 time << CONTROL3_ADCDBSET_SHIFT);
Chanwoo Choi19d32432013-02-13 18:35:08 +0900266 if (ret) {
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900267 dev_err(info->dev, "failed to set ADC debounce time\n");
Sachin Kamatc2536542013-04-08 09:12:32 +0900268 return ret;
Chanwoo Choi19d32432013-02-13 18:35:08 +0900269 }
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900270 break;
271 default:
272 dev_err(info->dev, "invalid ADC debounce time\n");
Chanwoo Choi19d32432013-02-13 18:35:08 +0900273 return -EINVAL;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900274 }
275
Chanwoo Choi19d32432013-02-13 18:35:08 +0900276 return 0;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900277};
278
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900279/*
280 * max77693_muic_set_path - Set hardware line according to attached cable
281 * @info: the instance including private data of max77693 MUIC
282 * @value: the path according to attached cable
283 * @attached: the state of cable (true:attached, false:detached)
284 *
285 * The max77693 MUIC device share outside H/W line among a varity of cables
286 * so, this function set internal path of H/W line according to the type of
287 * attached cable.
288 */
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900289static int max77693_muic_set_path(struct max77693_muic_info *info,
290 u8 val, bool attached)
291{
292 int ret = 0;
Robert Baldygad0540f92014-05-21 08:52:47 +0200293 unsigned int ctrl1, ctrl2 = 0;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900294
295 if (attached)
296 ctrl1 = val;
297 else
298 ctrl1 = CONTROL1_SW_OPEN;
299
Robert Baldygad0540f92014-05-21 08:52:47 +0200300 ret = regmap_update_bits(info->max77693->regmap_muic,
301 MAX77693_MUIC_REG_CTRL1, COMP_SW_MASK, ctrl1);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900302 if (ret < 0) {
303 dev_err(info->dev, "failed to update MUIC register\n");
Sachin Kamatc2536542013-04-08 09:12:32 +0900304 return ret;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900305 }
306
307 if (attached)
308 ctrl2 |= CONTROL2_CPEN_MASK; /* LowPwr=0, CPEn=1 */
309 else
310 ctrl2 |= CONTROL2_LOWPWR_MASK; /* LowPwr=1, CPEn=0 */
311
Robert Baldygad0540f92014-05-21 08:52:47 +0200312 ret = regmap_update_bits(info->max77693->regmap_muic,
313 MAX77693_MUIC_REG_CTRL2,
314 CONTROL2_LOWPWR_MASK | CONTROL2_CPEN_MASK, ctrl2);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900315 if (ret < 0) {
316 dev_err(info->dev, "failed to update MUIC register\n");
Sachin Kamatc2536542013-04-08 09:12:32 +0900317 return ret;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900318 }
319
320 dev_info(info->dev,
321 "CONTROL1 : 0x%02x, CONTROL2 : 0x%02x, state : %s\n",
322 ctrl1, ctrl2, attached ? "attached" : "detached");
Chanwoo Choi19d32432013-02-13 18:35:08 +0900323
324 return 0;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900325}
326
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900327/*
328 * max77693_muic_get_cable_type - Return cable type and check cable state
329 * @info: the instance including private data of max77693 MUIC
330 * @group: the path according to attached cable
331 * @attached: store cable state and return
332 *
333 * This function check the cable state either attached or detached,
334 * and then divide precise type of cable according to cable group.
335 * - MAX77693_CABLE_GROUP_ADC
336 * - MAX77693_CABLE_GROUP_ADC_GND
337 * - MAX77693_CABLE_GROUP_CHG
338 * - MAX77693_CABLE_GROUP_VBVOLT
339 */
340static int max77693_muic_get_cable_type(struct max77693_muic_info *info,
341 enum max77693_muic_cable_group group, bool *attached)
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900342{
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900343 int cable_type = 0;
344 int adc;
345 int adc1k;
346 int adclow;
347 int vbvolt;
348 int chg_type;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900349
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900350 switch (group) {
351 case MAX77693_CABLE_GROUP_ADC:
352 /*
353 * Read ADC value to check cable type and decide cable state
354 * according to cable type
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900355 */
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900356 adc = info->status[0] & STATUS1_ADC_MASK;
357 adc >>= STATUS1_ADC_SHIFT;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900358
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900359 /*
360 * Check current cable state/cable type and store cable type
361 * (info->prev_cable_type) for handling cable when cable is
362 * detached.
363 */
364 if (adc == MAX77693_MUIC_ADC_OPEN) {
365 *attached = false;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900366
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900367 cable_type = info->prev_cable_type;
368 info->prev_cable_type = MAX77693_MUIC_ADC_OPEN;
369 } else {
370 *attached = true;
371
372 cable_type = info->prev_cable_type = adc;
373 }
374 break;
375 case MAX77693_CABLE_GROUP_ADC_GND:
376 /*
377 * Read ADC value to check cable type and decide cable state
378 * according to cable type
379 */
380 adc = info->status[0] & STATUS1_ADC_MASK;
381 adc >>= STATUS1_ADC_SHIFT;
382
383 /*
384 * Check current cable state/cable type and store cable type
385 * (info->prev_cable_type/_gnd) for handling cable when cable
386 * is detached.
387 */
388 if (adc == MAX77693_MUIC_ADC_OPEN) {
389 *attached = false;
390
391 cable_type = info->prev_cable_type_gnd;
392 info->prev_cable_type_gnd = MAX77693_MUIC_ADC_OPEN;
393 } else {
394 *attached = true;
395
396 adclow = info->status[0] & STATUS1_ADCLOW_MASK;
397 adclow >>= STATUS1_ADCLOW_SHIFT;
398 adc1k = info->status[0] & STATUS1_ADC1K_MASK;
399 adc1k >>= STATUS1_ADC1K_SHIFT;
400
401 vbvolt = info->status[1] & STATUS2_VBVOLT_MASK;
402 vbvolt >>= STATUS2_VBVOLT_SHIFT;
403
404 /**
Chanwoo Choic2275d22013-08-23 10:21:37 +0900405 * [0x1|VBVolt|ADCLow|ADC1K]
406 * [0x1| 0| 0| 0] USB_OTG
407 * [0x1| 1| 0| 0] USB_OTG_VB
408 * [0x1| 0| 1| 0] Audio Video cable with load
409 * [0x1| 0| 1| 1] MHL without charging cable
410 * [0x1| 1| 1| 1] MHL with charging cable
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900411 */
412 cable_type = ((0x1 << 8)
413 | (vbvolt << 2)
414 | (adclow << 1)
415 | adc1k);
416
417 info->prev_cable_type = adc;
418 info->prev_cable_type_gnd = cable_type;
419 }
420
421 break;
422 case MAX77693_CABLE_GROUP_CHG:
423 /*
424 * Read charger type to check cable type and decide cable state
425 * according to type of charger cable.
426 */
427 chg_type = info->status[1] & STATUS2_CHGTYP_MASK;
428 chg_type >>= STATUS2_CHGTYP_SHIFT;
429
430 if (chg_type == MAX77693_CHARGER_TYPE_NONE) {
431 *attached = false;
432
433 cable_type = info->prev_chg_type;
434 info->prev_chg_type = MAX77693_CHARGER_TYPE_NONE;
435 } else {
436 *attached = true;
437
438 /*
439 * Check current cable state/cable type and store cable
440 * type(info->prev_chg_type) for handling cable when
441 * charger cable is detached.
442 */
443 cable_type = info->prev_chg_type = chg_type;
444 }
445
446 break;
447 case MAX77693_CABLE_GROUP_VBVOLT:
448 /*
449 * Read ADC value to check cable type and decide cable state
450 * according to cable type
451 */
452 adc = info->status[0] & STATUS1_ADC_MASK;
453 adc >>= STATUS1_ADC_SHIFT;
454 chg_type = info->status[1] & STATUS2_CHGTYP_MASK;
455 chg_type >>= STATUS2_CHGTYP_SHIFT;
456
457 if (adc == MAX77693_MUIC_ADC_OPEN
458 && chg_type == MAX77693_CHARGER_TYPE_NONE)
459 *attached = false;
460 else
461 *attached = true;
462
463 /*
464 * Read vbvolt field, if vbvolt is 1,
465 * this cable is used for charging.
466 */
467 vbvolt = info->status[1] & STATUS2_VBVOLT_MASK;
468 vbvolt >>= STATUS2_VBVOLT_SHIFT;
469
470 cable_type = vbvolt;
471 break;
472 default:
473 dev_err(info->dev, "Unknown cable group (%d)\n", group);
474 cable_type = -EINVAL;
475 break;
476 }
477
478 return cable_type;
479}
480
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900481static int max77693_muic_dock_handler(struct max77693_muic_info *info,
482 int cable_type, bool attached)
483{
484 int ret = 0;
Chanwoo Choia1626292012-12-10 19:07:53 +0900485 int vbvolt;
486 bool cable_attached;
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900487 char dock_name[CABLE_NAME_MAX];
488
489 dev_info(info->dev,
490 "external connector is %s (adc:0x%02x)\n",
491 attached ? "attached" : "detached", cable_type);
492
493 switch (cable_type) {
494 case MAX77693_MUIC_ADC_RESERVED_ACC_3: /* Dock-Smart */
Chanwoo Choia1626292012-12-10 19:07:53 +0900495 /*
496 * Check power cable whether attached or detached state.
497 * The Dock-Smart device need surely external power supply.
498 * If power cable(USB/TA) isn't connected to Dock device,
499 * user can't use Dock-Smart for desktop mode.
500 */
501 vbvolt = max77693_muic_get_cable_type(info,
502 MAX77693_CABLE_GROUP_VBVOLT, &cable_attached);
503 if (attached && !vbvolt) {
504 dev_warn(info->dev,
505 "Cannot detect external power supply\n");
506 return 0;
507 }
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900508
Chanwoo Choia1626292012-12-10 19:07:53 +0900509 /*
510 * Notify Dock-Smart/MHL state.
511 * - Dock-Smart device include three type of cable which
512 * are HDMI, USB for mouse/keyboard and micro-usb port
513 * for USB/TA cable. Dock-Smart device need always exteranl
514 * power supply(USB/TA cable through micro-usb cable). Dock-
515 * Smart device support screen output of target to separate
516 * monitor and mouse/keyboard for desktop mode.
517 *
518 * Features of 'USB/TA cable with Dock-Smart device'
519 * - Support MHL
520 * - Support external output feature of audio
521 * - Support charging through micro-usb port without data
522 * connection if TA cable is connected to target.
523 * - Support charging and data connection through micro-usb port
524 * if USB cable is connected between target and host
525 * device.
526 * - Support OTG device (Mouse/Keyboard)
527 */
528 ret = max77693_muic_set_path(info, info->path_usb, attached);
529 if (ret < 0)
530 return ret;
531
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900532 extcon_set_cable_state(info->edev, "Dock-Smart", attached);
Chanwoo Choia1626292012-12-10 19:07:53 +0900533 extcon_set_cable_state(info->edev, "MHL", attached);
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900534 goto out;
535 case MAX77693_MUIC_ADC_FACTORY_MODE_UART_ON: /* Dock-Car */
536 strcpy(dock_name, "Dock-Car");
537 break;
538 case MAX77693_MUIC_ADC_AUDIO_MODE_REMOTE: /* Dock-Desk */
539 strcpy(dock_name, "Dock-Desk");
540 break;
541 case MAX77693_MUIC_ADC_AV_CABLE_NOLOAD: /* Dock-Audio */
542 strcpy(dock_name, "Dock-Audio");
543 if (!attached)
544 extcon_set_cable_state(info->edev, "USB", false);
545 break;
Chanwoo Choi19d32432013-02-13 18:35:08 +0900546 default:
547 dev_err(info->dev, "failed to detect %s dock device\n",
548 attached ? "attached" : "detached");
549 return -EINVAL;
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900550 }
551
552 /* Dock-Car/Desk/Audio, PATH:AUDIO */
553 ret = max77693_muic_set_path(info, CONTROL1_SW_AUDIO, attached);
554 if (ret < 0)
Chanwoo Choia1626292012-12-10 19:07:53 +0900555 return ret;
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900556 extcon_set_cable_state(info->edev, dock_name, attached);
557
558out:
Chanwoo Choia1626292012-12-10 19:07:53 +0900559 return 0;
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900560}
561
562static int max77693_muic_dock_button_handler(struct max77693_muic_info *info,
563 int button_type, bool attached)
564{
565 struct input_dev *dock = info->dock;
566 unsigned int code;
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900567
568 switch (button_type) {
569 case MAX77693_MUIC_ADC_REMOTE_S3_BUTTON-1
570 ... MAX77693_MUIC_ADC_REMOTE_S3_BUTTON+1:
571 /* DOCK_KEY_PREV */
572 code = KEY_PREVIOUSSONG;
573 break;
574 case MAX77693_MUIC_ADC_REMOTE_S7_BUTTON-1
575 ... MAX77693_MUIC_ADC_REMOTE_S7_BUTTON+1:
576 /* DOCK_KEY_NEXT */
577 code = KEY_NEXTSONG;
578 break;
579 case MAX77693_MUIC_ADC_REMOTE_S9_BUTTON:
580 /* DOCK_VOL_DOWN */
581 code = KEY_VOLUMEDOWN;
582 break;
583 case MAX77693_MUIC_ADC_REMOTE_S10_BUTTON:
584 /* DOCK_VOL_UP */
585 code = KEY_VOLUMEUP;
586 break;
587 case MAX77693_MUIC_ADC_REMOTE_S12_BUTTON-1
588 ... MAX77693_MUIC_ADC_REMOTE_S12_BUTTON+1:
589 /* DOCK_KEY_PLAY_PAUSE */
590 code = KEY_PLAYPAUSE;
591 break;
592 default:
593 dev_err(info->dev,
594 "failed to detect %s key (adc:0x%x)\n",
595 attached ? "pressed" : "released", button_type);
Chanwoo Choi19d32432013-02-13 18:35:08 +0900596 return -EINVAL;
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900597 }
598
599 input_event(dock, EV_KEY, code, attached);
600 input_sync(dock);
601
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900602 return 0;
603}
604
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900605static int max77693_muic_adc_ground_handler(struct max77693_muic_info *info)
606{
607 int cable_type_gnd;
608 int ret = 0;
609 bool attached;
610
611 cable_type_gnd = max77693_muic_get_cable_type(info,
612 MAX77693_CABLE_GROUP_ADC_GND, &attached);
613
614 switch (cable_type_gnd) {
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900615 case MAX77693_MUIC_GND_USB_OTG:
Chanwoo Choi06bed0a2012-11-27 11:30:35 +0900616 case MAX77693_MUIC_GND_USB_OTG_VB:
617 /* USB_OTG, PATH: AP_USB */
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900618 ret = max77693_muic_set_path(info, CONTROL1_SW_USB, attached);
619 if (ret < 0)
Chanwoo Choi19d32432013-02-13 18:35:08 +0900620 return ret;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900621 extcon_set_cable_state(info->edev, "USB-Host", attached);
622 break;
623 case MAX77693_MUIC_GND_AV_CABLE_LOAD:
Chanwoo Choi06bed0a2012-11-27 11:30:35 +0900624 /* Audio Video Cable with load, PATH:AUDIO */
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900625 ret = max77693_muic_set_path(info, CONTROL1_SW_AUDIO, attached);
626 if (ret < 0)
Chanwoo Choi19d32432013-02-13 18:35:08 +0900627 return ret;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900628 extcon_set_cable_state(info->edev,
629 "Audio-video-load", attached);
630 break;
Chanwoo Choi06bed0a2012-11-27 11:30:35 +0900631 case MAX77693_MUIC_GND_MHL:
632 case MAX77693_MUIC_GND_MHL_VB:
633 /* MHL or MHL with USB/TA cable */
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900634 extcon_set_cable_state(info->edev, "MHL", attached);
635 break;
636 default:
Chanwoo Choi19d32432013-02-13 18:35:08 +0900637 dev_err(info->dev, "failed to detect %s cable of gnd type\n",
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900638 attached ? "attached" : "detached");
Chanwoo Choi19d32432013-02-13 18:35:08 +0900639 return -EINVAL;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900640 }
641
Chanwoo Choi19d32432013-02-13 18:35:08 +0900642 return 0;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900643}
644
Chanwoo Choid0587eb2012-11-27 12:06:49 +0900645static int max77693_muic_jig_handler(struct max77693_muic_info *info,
646 int cable_type, bool attached)
647{
648 char cable_name[32];
649 int ret = 0;
650 u8 path = CONTROL1_SW_OPEN;
651
652 dev_info(info->dev,
653 "external connector is %s (adc:0x%02x)\n",
654 attached ? "attached" : "detached", cable_type);
655
656 switch (cable_type) {
657 case MAX77693_MUIC_ADC_FACTORY_MODE_USB_OFF: /* ADC_JIG_USB_OFF */
658 /* PATH:AP_USB */
659 strcpy(cable_name, "JIG-USB-OFF");
660 path = CONTROL1_SW_USB;
661 break;
662 case MAX77693_MUIC_ADC_FACTORY_MODE_USB_ON: /* ADC_JIG_USB_ON */
663 /* PATH:AP_USB */
664 strcpy(cable_name, "JIG-USB-ON");
665 path = CONTROL1_SW_USB;
666 break;
667 case MAX77693_MUIC_ADC_FACTORY_MODE_UART_OFF: /* ADC_JIG_UART_OFF */
668 /* PATH:AP_UART */
669 strcpy(cable_name, "JIG-UART-OFF");
670 path = CONTROL1_SW_UART;
671 break;
Chanwoo Choi19d32432013-02-13 18:35:08 +0900672 default:
673 dev_err(info->dev, "failed to detect %s jig cable\n",
674 attached ? "attached" : "detached");
675 return -EINVAL;
Chanwoo Choid0587eb2012-11-27 12:06:49 +0900676 }
677
678 ret = max77693_muic_set_path(info, path, attached);
679 if (ret < 0)
Chanwoo Choi19d32432013-02-13 18:35:08 +0900680 return ret;
Chanwoo Choid0587eb2012-11-27 12:06:49 +0900681
682 extcon_set_cable_state(info->edev, cable_name, attached);
Chanwoo Choi19d32432013-02-13 18:35:08 +0900683
684 return 0;
Chanwoo Choid0587eb2012-11-27 12:06:49 +0900685}
686
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900687static int max77693_muic_adc_handler(struct max77693_muic_info *info)
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900688{
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900689 int cable_type;
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900690 int button_type;
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900691 bool attached;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900692 int ret = 0;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900693
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900694 /* Check accessory state which is either detached or attached */
695 cable_type = max77693_muic_get_cable_type(info,
696 MAX77693_CABLE_GROUP_ADC, &attached);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900697
698 dev_info(info->dev,
699 "external connector is %s (adc:0x%02x, prev_adc:0x%x)\n",
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900700 attached ? "attached" : "detached", cable_type,
701 info->prev_cable_type);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900702
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900703 switch (cable_type) {
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900704 case MAX77693_MUIC_ADC_GROUND:
705 /* USB_OTG/MHL/Audio */
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900706 max77693_muic_adc_ground_handler(info);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900707 break;
708 case MAX77693_MUIC_ADC_FACTORY_MODE_USB_OFF:
709 case MAX77693_MUIC_ADC_FACTORY_MODE_USB_ON:
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900710 case MAX77693_MUIC_ADC_FACTORY_MODE_UART_OFF:
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900711 /* JIG */
Chanwoo Choid0587eb2012-11-27 12:06:49 +0900712 ret = max77693_muic_jig_handler(info, cable_type, attached);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900713 if (ret < 0)
Chanwoo Choi19d32432013-02-13 18:35:08 +0900714 return ret;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900715 break;
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900716 case MAX77693_MUIC_ADC_RESERVED_ACC_3: /* Dock-Smart */
717 case MAX77693_MUIC_ADC_FACTORY_MODE_UART_ON: /* Dock-Car */
718 case MAX77693_MUIC_ADC_AUDIO_MODE_REMOTE: /* Dock-Desk */
719 case MAX77693_MUIC_ADC_AV_CABLE_NOLOAD: /* Dock-Audio */
720 /*
721 * DOCK device
722 *
723 * The MAX77693 MUIC device can detect total 34 cable type
724 * except of charger cable and MUIC device didn't define
725 * specfic role of cable in the range of from 0x01 to 0x12
726 * of ADC value. So, can use/define cable with no role according
727 * to schema of hardware board.
728 */
729 ret = max77693_muic_dock_handler(info, cable_type, attached);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900730 if (ret < 0)
Chanwoo Choi19d32432013-02-13 18:35:08 +0900731 return ret;
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900732 break;
Chanwoo Choic2275d22013-08-23 10:21:37 +0900733 case MAX77693_MUIC_ADC_REMOTE_S3_BUTTON: /* DOCK_KEY_PREV */
734 case MAX77693_MUIC_ADC_REMOTE_S7_BUTTON: /* DOCK_KEY_NEXT */
735 case MAX77693_MUIC_ADC_REMOTE_S9_BUTTON: /* DOCK_VOL_DOWN */
736 case MAX77693_MUIC_ADC_REMOTE_S10_BUTTON: /* DOCK_VOL_UP */
737 case MAX77693_MUIC_ADC_REMOTE_S12_BUTTON: /* DOCK_KEY_PLAY_PAUSE */
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900738 /*
739 * Button of DOCK device
740 * - the Prev/Next/Volume Up/Volume Down/Play-Pause button
741 *
742 * The MAX77693 MUIC device can detect total 34 cable type
743 * except of charger cable and MUIC device didn't define
744 * specfic role of cable in the range of from 0x01 to 0x12
745 * of ADC value. So, can use/define cable with no role according
746 * to schema of hardware board.
747 */
748 if (attached)
749 button_type = info->prev_button_type = cable_type;
750 else
751 button_type = info->prev_button_type;
752
753 ret = max77693_muic_dock_button_handler(info, button_type,
754 attached);
755 if (ret < 0)
Chanwoo Choi19d32432013-02-13 18:35:08 +0900756 return ret;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900757 break;
758 case MAX77693_MUIC_ADC_SEND_END_BUTTON:
759 case MAX77693_MUIC_ADC_REMOTE_S1_BUTTON:
760 case MAX77693_MUIC_ADC_REMOTE_S2_BUTTON:
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900761 case MAX77693_MUIC_ADC_REMOTE_S4_BUTTON:
762 case MAX77693_MUIC_ADC_REMOTE_S5_BUTTON:
763 case MAX77693_MUIC_ADC_REMOTE_S6_BUTTON:
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900764 case MAX77693_MUIC_ADC_REMOTE_S8_BUTTON:
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900765 case MAX77693_MUIC_ADC_REMOTE_S11_BUTTON:
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900766 case MAX77693_MUIC_ADC_RESERVED_ACC_1:
767 case MAX77693_MUIC_ADC_RESERVED_ACC_2:
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900768 case MAX77693_MUIC_ADC_RESERVED_ACC_4:
769 case MAX77693_MUIC_ADC_RESERVED_ACC_5:
770 case MAX77693_MUIC_ADC_CEA936_AUDIO:
771 case MAX77693_MUIC_ADC_PHONE_POWERED_DEV:
772 case MAX77693_MUIC_ADC_TTY_CONVERTER:
773 case MAX77693_MUIC_ADC_UART_CABLE:
774 case MAX77693_MUIC_ADC_CEA936A_TYPE1_CHG:
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900775 case MAX77693_MUIC_ADC_CEA936A_TYPE2_CHG:
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900776 /*
777 * This accessory isn't used in general case if it is specially
778 * needed to detect additional accessory, should implement
779 * proper operation when this accessory is attached/detached.
780 */
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900781 dev_info(info->dev,
782 "accessory is %s but it isn't used (adc:0x%x)\n",
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900783 attached ? "attached" : "detached", cable_type);
Chanwoo Choi19d32432013-02-13 18:35:08 +0900784 return -EAGAIN;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900785 default:
786 dev_err(info->dev,
787 "failed to detect %s accessory (adc:0x%x)\n",
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900788 attached ? "attached" : "detached", cable_type);
Chanwoo Choi19d32432013-02-13 18:35:08 +0900789 return -EINVAL;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900790 }
791
Chanwoo Choi19d32432013-02-13 18:35:08 +0900792 return 0;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900793}
794
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900795static int max77693_muic_chg_handler(struct max77693_muic_info *info)
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900796{
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900797 int chg_type;
Chanwoo Choi06bed0a2012-11-27 11:30:35 +0900798 int cable_type_gnd;
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900799 int cable_type;
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900800 bool attached;
Chanwoo Choi06bed0a2012-11-27 11:30:35 +0900801 bool cable_attached;
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900802 int ret = 0;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900803
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900804 chg_type = max77693_muic_get_cable_type(info,
805 MAX77693_CABLE_GROUP_CHG, &attached);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900806
807 dev_info(info->dev,
808 "external connector is %s(chg_type:0x%x, prev_chg_type:0x%x)\n",
809 attached ? "attached" : "detached",
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900810 chg_type, info->prev_chg_type);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900811
812 switch (chg_type) {
813 case MAX77693_CHARGER_TYPE_USB:
Chanwoo Choia1626292012-12-10 19:07:53 +0900814 case MAX77693_CHARGER_TYPE_DEDICATED_CHG:
Chanwoo Choi0e2738f2012-12-06 21:36:18 +0900815 case MAX77693_CHARGER_TYPE_NONE:
Chanwoo Choia1626292012-12-10 19:07:53 +0900816 /* Check MAX77693_CABLE_GROUP_ADC_GND type */
Chanwoo Choi06bed0a2012-11-27 11:30:35 +0900817 cable_type_gnd = max77693_muic_get_cable_type(info,
818 MAX77693_CABLE_GROUP_ADC_GND,
819 &cable_attached);
Chanwoo Choia1626292012-12-10 19:07:53 +0900820 switch (cable_type_gnd) {
821 case MAX77693_MUIC_GND_MHL:
822 case MAX77693_MUIC_GND_MHL_VB:
823 /*
824 * MHL cable with MHL_TA(USB/TA) cable
Chanwoo Choic2275d22013-08-23 10:21:37 +0900825 * - MHL cable include two port(HDMI line and separate
826 * micro-usb port. When the target connect MHL cable,
827 * extcon driver check whether MHL_TA(USB/TA) cable is
828 * connected. If MHL_TA cable is connected, extcon
829 * driver notify state to notifiee for charging battery.
Chanwoo Choia1626292012-12-10 19:07:53 +0900830 *
831 * Features of 'MHL_TA(USB/TA) with MHL cable'
832 * - Support MHL
Chanwoo Choic2275d22013-08-23 10:21:37 +0900833 * - Support charging through micro-usb port without
834 * data connection
Chanwoo Choia1626292012-12-10 19:07:53 +0900835 */
Chanwoo Choi06bed0a2012-11-27 11:30:35 +0900836 extcon_set_cable_state(info->edev, "MHL_TA", attached);
Chanwoo Choi06bed0a2012-11-27 11:30:35 +0900837 if (!cable_attached)
Chanwoo Choic2275d22013-08-23 10:21:37 +0900838 extcon_set_cable_state(info->edev,
839 "MHL", cable_attached);
Chanwoo Choia1626292012-12-10 19:07:53 +0900840 break;
Chanwoo Choi06bed0a2012-11-27 11:30:35 +0900841 }
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900842
Chanwoo Choia1626292012-12-10 19:07:53 +0900843 /* Check MAX77693_CABLE_GROUP_ADC type */
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900844 cable_type = max77693_muic_get_cable_type(info,
845 MAX77693_CABLE_GROUP_ADC,
846 &cable_attached);
Chanwoo Choia1626292012-12-10 19:07:53 +0900847 switch (cable_type) {
848 case MAX77693_MUIC_ADC_AV_CABLE_NOLOAD: /* Dock-Audio */
849 /*
850 * Dock-Audio device with USB/TA cable
Chanwoo Choic2275d22013-08-23 10:21:37 +0900851 * - Dock device include two port(Dock-Audio and micro-
852 * usb port). When the target connect Dock-Audio device,
853 * extcon driver check whether USB/TA cable is connected
854 * or not. If USB/TA cable is connected, extcon driver
855 * notify state to notifiee for charging battery.
Chanwoo Choia1626292012-12-10 19:07:53 +0900856 *
857 * Features of 'USB/TA cable with Dock-Audio device'
858 * - Support external output feature of audio.
Chanwoo Choic2275d22013-08-23 10:21:37 +0900859 * - Support charging through micro-usb port without
860 * data connection.
Chanwoo Choia1626292012-12-10 19:07:53 +0900861 */
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900862 extcon_set_cable_state(info->edev, "USB", attached);
863
864 if (!cable_attached)
Chanwoo Choic2275d22013-08-23 10:21:37 +0900865 extcon_set_cable_state(info->edev, "Dock-Audio",
866 cable_attached);
Chanwoo Choia1626292012-12-10 19:07:53 +0900867 break;
868 case MAX77693_MUIC_ADC_RESERVED_ACC_3: /* Dock-Smart */
869 /*
870 * Dock-Smart device with USB/TA cable
871 * - Dock-Desk device include three type of cable which
872 * are HDMI, USB for mouse/keyboard and micro-usb port
Chanwoo Choic2275d22013-08-23 10:21:37 +0900873 * for USB/TA cable. Dock-Smart device need always
874 * exteranl power supply(USB/TA cable through micro-usb
875 * cable). Dock-Smart device support screen output of
876 * target to separate monitor and mouse/keyboard for
877 * desktop mode.
Chanwoo Choia1626292012-12-10 19:07:53 +0900878 *
879 * Features of 'USB/TA cable with Dock-Smart device'
880 * - Support MHL
881 * - Support external output feature of audio
Chanwoo Choic2275d22013-08-23 10:21:37 +0900882 * - Support charging through micro-usb port without
883 * data connection if TA cable is connected to target.
884 * - Support charging and data connection through micro-
885 * usb port if USB cable is connected between target
886 * and host device
Chanwoo Choia1626292012-12-10 19:07:53 +0900887 * - Support OTG device (Mouse/Keyboard)
888 */
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;
893
Chanwoo Choic2275d22013-08-23 10:21:37 +0900894 extcon_set_cable_state(info->edev, "Dock-Smart",
895 attached);
Chanwoo Choia1626292012-12-10 19:07:53 +0900896 extcon_set_cable_state(info->edev, "MHL", attached);
897
898 break;
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900899 }
900
Chanwoo Choia1626292012-12-10 19:07:53 +0900901 /* Check MAX77693_CABLE_GROUP_CHG type */
902 switch (chg_type) {
903 case MAX77693_CHARGER_TYPE_NONE:
904 /*
Chanwoo Choic2275d22013-08-23 10:21:37 +0900905 * When MHL(with USB/TA cable) or Dock-Audio with USB/TA
906 * cable is attached, muic device happen below two irq.
907 * - 'MAX77693_MUIC_IRQ_INT1_ADC' for detecting
908 * MHL/Dock-Audio.
909 * - 'MAX77693_MUIC_IRQ_INT2_CHGTYP' for detecting
910 * USB/TA cable connected to MHL or Dock-Audio.
911 * Always, happen eariler MAX77693_MUIC_IRQ_INT1_ADC
912 * irq than MAX77693_MUIC_IRQ_INT2_CHGTYP irq.
Chanwoo Choia1626292012-12-10 19:07:53 +0900913 *
Chanwoo Choic2275d22013-08-23 10:21:37 +0900914 * If user attach MHL (with USB/TA cable and immediately
915 * detach MHL with USB/TA cable before MAX77693_MUIC_IRQ
916 * _INT2_CHGTYP irq is happened, USB/TA cable remain
917 * connected state to target. But USB/TA cable isn't
918 * connected to target. The user be face with unusual
919 * action. So, driver should check this situation in
920 * spite of, that previous charger type is N/A.
Chanwoo Choia1626292012-12-10 19:07:53 +0900921 */
Chanwoo Choi0e2738f2012-12-06 21:36:18 +0900922 break;
Chanwoo Choia1626292012-12-10 19:07:53 +0900923 case MAX77693_CHARGER_TYPE_USB:
924 /* Only USB cable, PATH:AP_USB */
Chanwoo Choic2275d22013-08-23 10:21:37 +0900925 ret = max77693_muic_set_path(info, info->path_usb,
926 attached);
Chanwoo Choia1626292012-12-10 19:07:53 +0900927 if (ret < 0)
928 return ret;
Chanwoo Choi0e2738f2012-12-06 21:36:18 +0900929
Chanwoo Choia1626292012-12-10 19:07:53 +0900930 extcon_set_cable_state(info->edev, "USB", attached);
931 break;
932 case MAX77693_CHARGER_TYPE_DEDICATED_CHG:
933 /* Only TA cable */
934 extcon_set_cable_state(info->edev, "TA", attached);
935 break;
936 }
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900937 break;
938 case MAX77693_CHARGER_TYPE_DOWNSTREAM_PORT:
939 extcon_set_cable_state(info->edev,
940 "Charge-downstream", attached);
941 break;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900942 case MAX77693_CHARGER_TYPE_APPLE_500MA:
943 extcon_set_cable_state(info->edev, "Slow-charger", attached);
944 break;
945 case MAX77693_CHARGER_TYPE_APPLE_1A_2A:
946 extcon_set_cable_state(info->edev, "Fast-charger", attached);
947 break;
948 case MAX77693_CHARGER_TYPE_DEAD_BATTERY:
949 break;
950 default:
951 dev_err(info->dev,
952 "failed to detect %s accessory (chg_type:0x%x)\n",
953 attached ? "attached" : "detached", chg_type);
Chanwoo Choia1626292012-12-10 19:07:53 +0900954 return -EINVAL;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900955 }
956
Chanwoo Choia1626292012-12-10 19:07:53 +0900957 return 0;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900958}
959
960static void max77693_muic_irq_work(struct work_struct *work)
961{
962 struct max77693_muic_info *info = container_of(work,
963 struct max77693_muic_info, irq_work);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900964 int irq_type = -1;
965 int i, ret = 0;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900966
967 if (!info->edev)
968 return;
969
970 mutex_lock(&info->mutex);
971
Sachin Kamata33411b2013-08-05 14:32:04 +0530972 for (i = 0; i < ARRAY_SIZE(muic_irqs); i++)
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900973 if (info->irq == muic_irqs[i].virq)
974 irq_type = muic_irqs[i].irq;
975
Robert Baldygad0540f92014-05-21 08:52:47 +0200976 ret = regmap_bulk_read(info->max77693->regmap_muic,
977 MAX77693_MUIC_REG_STATUS1, info->status, 2);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900978 if (ret) {
979 dev_err(info->dev, "failed to read MUIC register\n");
980 mutex_unlock(&info->mutex);
981 return;
982 }
983
984 switch (irq_type) {
985 case MAX77693_MUIC_IRQ_INT1_ADC:
986 case MAX77693_MUIC_IRQ_INT1_ADC_LOW:
987 case MAX77693_MUIC_IRQ_INT1_ADC_ERR:
988 case MAX77693_MUIC_IRQ_INT1_ADC1K:
989 /* Handle all of accessory except for
990 type of charger accessory */
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900991 ret = max77693_muic_adc_handler(info);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900992 break;
993 case MAX77693_MUIC_IRQ_INT2_CHGTYP:
994 case MAX77693_MUIC_IRQ_INT2_CHGDETREUN:
995 case MAX77693_MUIC_IRQ_INT2_DCDTMR:
996 case MAX77693_MUIC_IRQ_INT2_DXOVP:
997 case MAX77693_MUIC_IRQ_INT2_VBVOLT:
998 case MAX77693_MUIC_IRQ_INT2_VIDRM:
999 /* Handle charger accessory */
Chanwoo Choi154f757f2012-11-27 09:40:32 +09001000 ret = max77693_muic_chg_handler(info);
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001001 break;
1002 case MAX77693_MUIC_IRQ_INT3_EOC:
1003 case MAX77693_MUIC_IRQ_INT3_CGMBC:
1004 case MAX77693_MUIC_IRQ_INT3_OVP:
1005 case MAX77693_MUIC_IRQ_INT3_MBCCHG_ERR:
1006 case MAX77693_MUIC_IRQ_INT3_CHG_ENABLED:
1007 case MAX77693_MUIC_IRQ_INT3_BAT_DET:
1008 break;
1009 default:
1010 dev_err(info->dev, "muic interrupt: irq %d occurred\n",
1011 irq_type);
Chanwoo Choi19d32432013-02-13 18:35:08 +09001012 mutex_unlock(&info->mutex);
1013 return;
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001014 }
1015
1016 if (ret < 0)
1017 dev_err(info->dev, "failed to handle MUIC interrupt\n");
1018
1019 mutex_unlock(&info->mutex);
1020
1021 return;
1022}
1023
1024static irqreturn_t max77693_muic_irq_handler(int irq, void *data)
1025{
1026 struct max77693_muic_info *info = data;
1027
1028 info->irq = irq;
1029 schedule_work(&info->irq_work);
1030
1031 return IRQ_HANDLED;
1032}
1033
1034static struct regmap_config max77693_muic_regmap_config = {
1035 .reg_bits = 8,
1036 .val_bits = 8,
1037};
1038
1039static int max77693_muic_detect_accessory(struct max77693_muic_info *info)
1040{
1041 int ret = 0;
Chanwoo Choi154f757f2012-11-27 09:40:32 +09001042 int adc;
1043 int chg_type;
1044 bool attached;
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001045
1046 mutex_lock(&info->mutex);
1047
1048 /* Read STATUSx register to detect accessory */
Robert Baldygad0540f92014-05-21 08:52:47 +02001049 ret = regmap_bulk_read(info->max77693->regmap_muic,
1050 MAX77693_MUIC_REG_STATUS1, info->status, 2);
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001051 if (ret) {
1052 dev_err(info->dev, "failed to read MUIC register\n");
1053 mutex_unlock(&info->mutex);
Sachin Kamatc2536542013-04-08 09:12:32 +09001054 return ret;
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001055 }
1056
Chanwoo Choi154f757f2012-11-27 09:40:32 +09001057 adc = max77693_muic_get_cable_type(info, MAX77693_CABLE_GROUP_ADC,
1058 &attached);
1059 if (attached && adc != MAX77693_MUIC_ADC_OPEN) {
1060 ret = max77693_muic_adc_handler(info);
Chanwoo Choi19d32432013-02-13 18:35:08 +09001061 if (ret < 0) {
Chanwoo Choi154f757f2012-11-27 09:40:32 +09001062 dev_err(info->dev, "Cannot detect accessory\n");
Chanwoo Choi19d32432013-02-13 18:35:08 +09001063 mutex_unlock(&info->mutex);
1064 return ret;
1065 }
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001066 }
1067
Chanwoo Choi154f757f2012-11-27 09:40:32 +09001068 chg_type = max77693_muic_get_cable_type(info, MAX77693_CABLE_GROUP_CHG,
1069 &attached);
1070 if (attached && chg_type != MAX77693_CHARGER_TYPE_NONE) {
1071 ret = max77693_muic_chg_handler(info);
Chanwoo Choi19d32432013-02-13 18:35:08 +09001072 if (ret < 0) {
Chanwoo Choi154f757f2012-11-27 09:40:32 +09001073 dev_err(info->dev, "Cannot detect charger accessory\n");
Chanwoo Choi19d32432013-02-13 18:35:08 +09001074 mutex_unlock(&info->mutex);
1075 return ret;
1076 }
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001077 }
1078
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001079 mutex_unlock(&info->mutex);
Chanwoo Choi154f757f2012-11-27 09:40:32 +09001080
Chanwoo Choi19d32432013-02-13 18:35:08 +09001081 return 0;
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001082}
1083
Chanwoo Choi297620f2012-12-26 13:10:11 +09001084static void max77693_muic_detect_cable_wq(struct work_struct *work)
1085{
1086 struct max77693_muic_info *info = container_of(to_delayed_work(work),
1087 struct max77693_muic_info, wq_detcable);
1088
1089 max77693_muic_detect_accessory(info);
1090}
1091
Bill Pemberton44f34fd2012-11-19 13:23:21 -05001092static int max77693_muic_probe(struct platform_device *pdev)
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001093{
1094 struct max77693_dev *max77693 = dev_get_drvdata(pdev->dev.parent);
Chanwoo Choif8457d52012-10-08 14:41:49 +09001095 struct max77693_platform_data *pdata = dev_get_platdata(max77693->dev);
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001096 struct max77693_muic_info *info;
Chanwoo Choi0ec83bd2013-03-13 17:38:57 +09001097 struct max77693_reg_data *init_data;
1098 int num_init_data;
Chanwoo Choi297620f2012-12-26 13:10:11 +09001099 int delay_jiffies;
1100 int ret;
1101 int i;
Robert Baldygad0540f92014-05-21 08:52:47 +02001102 unsigned int id;
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001103
Sachin Kamatf4bb5cb2012-11-20 15:46:50 +09001104 info = devm_kzalloc(&pdev->dev, sizeof(struct max77693_muic_info),
1105 GFP_KERNEL);
Jingoo Han0a16ee62014-07-23 10:07:09 +09001106 if (!info)
Sachin Kamatf4bb5cb2012-11-20 15:46:50 +09001107 return -ENOMEM;
Jingoo Han0a16ee62014-07-23 10:07:09 +09001108
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001109 info->dev = &pdev->dev;
1110 info->max77693 = max77693;
Sachin Kamat1967fa02012-11-21 10:04:58 +05301111 if (info->max77693->regmap_muic) {
Chanwoo Choib186b122012-08-21 15:16:23 +09001112 dev_dbg(&pdev->dev, "allocate register map\n");
Sachin Kamat1967fa02012-11-21 10:04:58 +05301113 } else {
Chanwoo Choib186b122012-08-21 15:16:23 +09001114 info->max77693->regmap_muic = devm_regmap_init_i2c(
1115 info->max77693->muic,
1116 &max77693_muic_regmap_config);
1117 if (IS_ERR(info->max77693->regmap_muic)) {
1118 ret = PTR_ERR(info->max77693->regmap_muic);
1119 dev_err(max77693->dev,
1120 "failed to allocate register map: %d\n", ret);
Sachin Kamat3bf742f2012-11-21 10:04:57 +05301121 return ret;
Chanwoo Choib186b122012-08-21 15:16:23 +09001122 }
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001123 }
Chanwoo Choi39bf3692012-12-03 13:09:41 +09001124
1125 /* Register input device for button of dock device */
Chanwoo Choieff7d742013-02-13 18:35:05 +09001126 info->dock = devm_input_allocate_device(&pdev->dev);
Chanwoo Choi39bf3692012-12-03 13:09:41 +09001127 if (!info->dock) {
1128 dev_err(&pdev->dev, "%s: failed to allocate input\n", __func__);
1129 return -ENOMEM;
1130 }
1131 info->dock->name = "max77693-muic/dock";
1132 info->dock->phys = "max77693-muic/extcon";
1133 info->dock->dev.parent = &pdev->dev;
1134
1135 __set_bit(EV_REP, info->dock->evbit);
1136
1137 input_set_capability(info->dock, EV_KEY, KEY_VOLUMEUP);
1138 input_set_capability(info->dock, EV_KEY, KEY_VOLUMEDOWN);
1139 input_set_capability(info->dock, EV_KEY, KEY_PLAYPAUSE);
1140 input_set_capability(info->dock, EV_KEY, KEY_PREVIOUSSONG);
1141 input_set_capability(info->dock, EV_KEY, KEY_NEXTSONG);
1142
1143 ret = input_register_device(info->dock);
1144 if (ret < 0) {
1145 dev_err(&pdev->dev, "Cannot register input device error(%d)\n",
1146 ret);
1147 return ret;
1148 }
1149
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001150 platform_set_drvdata(pdev, info);
1151 mutex_init(&info->mutex);
1152
1153 INIT_WORK(&info->irq_work, max77693_muic_irq_work);
1154
1155 /* Support irq domain for MAX77693 MUIC device */
1156 for (i = 0; i < ARRAY_SIZE(muic_irqs); i++) {
1157 struct max77693_muic_irq *muic_irq = &muic_irqs[i];
Sachin Kamat00af4b12012-11-20 15:46:44 +09001158 unsigned int virq = 0;
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001159
Robert Baldyga342d6692014-05-21 08:52:48 +02001160 virq = regmap_irq_get_virq(max77693->irq_data_muic,
1161 muic_irq->irq);
Krzysztof Kozlowskid7155232014-09-12 15:16:37 +02001162 if (!virq)
1163 return -EINVAL;
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001164 muic_irq->virq = virq;
1165
Krzysztof Kozlowskid7155232014-09-12 15:16:37 +02001166 ret = devm_request_threaded_irq(&pdev->dev, virq, NULL,
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001167 max77693_muic_irq_handler,
Chanwoo Choiae3b3212012-11-28 12:39:01 +09001168 IRQF_NO_SUSPEND,
1169 muic_irq->name, info);
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001170 if (ret) {
1171 dev_err(&pdev->dev,
1172 "failed: irq request (IRQ: %d,"
1173 " error :%d)\n",
1174 muic_irq->irq, ret);
Krzysztof Kozlowskid7155232014-09-12 15:16:37 +02001175 return ret;
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001176 }
1177 }
1178
1179 /* Initialize extcon device */
Chanwoo Choi577bef12014-04-21 20:39:53 +09001180 info->edev = devm_extcon_dev_allocate(&pdev->dev,
1181 max77693_extcon_cable);
1182 if (IS_ERR(info->edev)) {
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001183 dev_err(&pdev->dev, "failed to allocate memory for extcon\n");
Krzysztof Kozlowskid7155232014-09-12 15:16:37 +02001184 return -ENOMEM;
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001185 }
1186 info->edev->name = DEV_NAME;
Chanwoo Choi577bef12014-04-21 20:39:53 +09001187
Sangjung Woo10fae112014-04-21 19:10:12 +09001188 ret = devm_extcon_dev_register(&pdev->dev, info->edev);
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001189 if (ret) {
1190 dev_err(&pdev->dev, "failed to register extcon device\n");
Krzysztof Kozlowskid7155232014-09-12 15:16:37 +02001191 return ret;
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001192 }
1193
Chanwoo Choi0ec83bd2013-03-13 17:38:57 +09001194 /* Initialize MUIC register by using platform data or default data */
Krzysztof Kozlowskid5653f22014-04-09 15:20:12 +02001195 if (pdata && pdata->muic_data) {
Chanwoo Choi0ec83bd2013-03-13 17:38:57 +09001196 init_data = pdata->muic_data->init_data;
1197 num_init_data = pdata->muic_data->num_init_data;
1198 } else {
1199 init_data = default_init_data;
1200 num_init_data = ARRAY_SIZE(default_init_data);
1201 }
1202
Sachin Kamata33411b2013-08-05 14:32:04 +05301203 for (i = 0; i < num_init_data; i++) {
Chanwoo Choi0ec83bd2013-03-13 17:38:57 +09001204 enum max77693_irq_source irq_src
1205 = MAX77693_IRQ_GROUP_NR;
1206
Robert Baldygad0540f92014-05-21 08:52:47 +02001207 regmap_write(info->max77693->regmap_muic,
Chanwoo Choi0ec83bd2013-03-13 17:38:57 +09001208 init_data[i].addr,
1209 init_data[i].data);
1210
1211 switch (init_data[i].addr) {
1212 case MAX77693_MUIC_REG_INTMASK1:
1213 irq_src = MUIC_INT1;
1214 break;
1215 case MAX77693_MUIC_REG_INTMASK2:
1216 irq_src = MUIC_INT2;
1217 break;
1218 case MAX77693_MUIC_REG_INTMASK3:
1219 irq_src = MUIC_INT3;
1220 break;
1221 }
1222
1223 if (irq_src < MAX77693_IRQ_GROUP_NR)
1224 info->max77693->irq_masks_cur[irq_src]
1225 = init_data[i].data;
1226 }
1227
Krzysztof Kozlowskid5653f22014-04-09 15:20:12 +02001228 if (pdata && pdata->muic_data) {
Chanwoo Choic2275d22013-08-23 10:21:37 +09001229 struct max77693_muic_platform_data *muic_pdata
1230 = pdata->muic_data;
Chanwoo Choif8457d52012-10-08 14:41:49 +09001231
Chanwoo Choi190d7cf2013-02-18 10:03:32 +09001232 /*
1233 * Default usb/uart path whether UART/USB or AUX_UART/AUX_USB
1234 * h/w path of COMP2/COMN1 on CONTROL1 register.
1235 */
1236 if (muic_pdata->path_uart)
1237 info->path_uart = muic_pdata->path_uart;
1238 else
1239 info->path_uart = CONTROL1_SW_UART;
Chanwoo Choif8457d52012-10-08 14:41:49 +09001240
Chanwoo Choi190d7cf2013-02-18 10:03:32 +09001241 if (muic_pdata->path_usb)
1242 info->path_usb = muic_pdata->path_usb;
1243 else
1244 info->path_usb = CONTROL1_SW_USB;
Chanwoo Choi2b757992012-12-06 21:27:56 +09001245
Chanwoo Choi190d7cf2013-02-18 10:03:32 +09001246 /*
1247 * Default delay time for detecting cable state
1248 * after certain time.
1249 */
1250 if (muic_pdata->detcable_delay_ms)
1251 delay_jiffies =
1252 msecs_to_jiffies(muic_pdata->detcable_delay_ms);
1253 else
1254 delay_jiffies = msecs_to_jiffies(DELAY_MS_DEFAULT);
1255 } else {
Chanwoo Choi2b757992012-12-06 21:27:56 +09001256 info->path_usb = CONTROL1_SW_USB;
Chanwoo Choi190d7cf2013-02-18 10:03:32 +09001257 info->path_uart = CONTROL1_SW_UART;
1258 delay_jiffies = msecs_to_jiffies(DELAY_MS_DEFAULT);
1259 }
Chanwoo Choi2b757992012-12-06 21:27:56 +09001260
1261 /* Set initial path for UART */
1262 max77693_muic_set_path(info, info->path_uart, true);
1263
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001264 /* Check revision number of MUIC device*/
Robert Baldygad0540f92014-05-21 08:52:47 +02001265 ret = regmap_read(info->max77693->regmap_muic,
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001266 MAX77693_MUIC_REG_ID, &id);
1267 if (ret < 0) {
1268 dev_err(&pdev->dev, "failed to read revision number\n");
Krzysztof Kozlowskid7155232014-09-12 15:16:37 +02001269 return ret;
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001270 }
1271 dev_info(info->dev, "device ID : 0x%x\n", id);
1272
1273 /* Set ADC debounce time */
1274 max77693_muic_set_debounce_time(info, ADC_DEBOUNCE_TIME_25MS);
1275
Chanwoo Choi297620f2012-12-26 13:10:11 +09001276 /*
1277 * Detect accessory after completing the initialization of platform
1278 *
1279 * - Use delayed workqueue to detect cable state and then
1280 * notify cable state to notifiee/platform through uevent.
1281 * After completing the booting of platform, the extcon provider
1282 * driver should notify cable state to upper layer.
1283 */
1284 INIT_DELAYED_WORK(&info->wq_detcable, max77693_muic_detect_cable_wq);
Krzysztof Kozlowskib8629412014-04-09 15:20:13 +02001285 queue_delayed_work(system_power_efficient_wq, &info->wq_detcable,
1286 delay_jiffies);
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001287
1288 return ret;
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001289}
1290
Bill Pemberton93ed0322012-11-19 13:25:49 -05001291static int max77693_muic_remove(struct platform_device *pdev)
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001292{
1293 struct max77693_muic_info *info = platform_get_drvdata(pdev);
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001294
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001295 cancel_work_sync(&info->irq_work);
Chanwoo Choi39bf3692012-12-03 13:09:41 +09001296 input_unregister_device(info->dock);
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001297
1298 return 0;
1299}
1300
1301static struct platform_driver max77693_muic_driver = {
1302 .driver = {
1303 .name = DEV_NAME,
1304 .owner = THIS_MODULE,
1305 },
1306 .probe = max77693_muic_probe,
Bill Pemberton5f7e2222012-11-19 13:20:06 -05001307 .remove = max77693_muic_remove,
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001308};
1309
1310module_platform_driver(max77693_muic_driver);
1311
1312MODULE_DESCRIPTION("Maxim MAX77693 Extcon driver");
1313MODULE_AUTHOR("Chanwoo Choi <cw00.choi@samsung.com>");
1314MODULE_LICENSE("GPL");
1315MODULE_ALIAS("platform:extcon-max77693");