blob: 68dbcb814b2ff78a64bc7a456a380e89227e32f9 [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>
Krzysztof Kozlowski61b305c2015-07-15 21:59:50 +090027#include <linux/mfd/max77693-common.h>
Chanwoo Choidb1b9032012-07-17 13:28:28 +090028#include <linux/mfd/max77693-private.h>
29#include <linux/extcon.h>
30#include <linux/regmap.h>
31#include <linux/irqdomain.h>
32
33#define DEV_NAME "max77693-muic"
Chanwoo Choi297620f2012-12-26 13:10:11 +090034#define DELAY_MS_DEFAULT 20000 /* unit: millisecond */
Chanwoo Choidb1b9032012-07-17 13:28:28 +090035
Chanwoo Choi0ec83bd2013-03-13 17:38:57 +090036/*
37 * Default value of MAX77693 register to bring up MUIC device.
38 * If user don't set some initial value for MUIC device through platform data,
39 * extcon-max77693 driver use 'default_init_data' to bring up base operation
40 * of MAX77693 MUIC device.
41 */
Sachin Kamat813b4512013-04-08 09:09:41 +090042static struct max77693_reg_data default_init_data[] = {
Chanwoo Choi0ec83bd2013-03-13 17:38:57 +090043 {
44 /* STATUS2 - [3]ChgDetRun */
45 .addr = MAX77693_MUIC_REG_STATUS2,
Krzysztof Kozlowskicceb4332015-07-15 21:59:52 +090046 .data = MAX77693_STATUS2_CHGDETRUN_MASK,
Chanwoo Choi0ec83bd2013-03-13 17:38:57 +090047 }, {
48 /* INTMASK1 - Unmask [3]ADC1KM,[0]ADCM */
49 .addr = MAX77693_MUIC_REG_INTMASK1,
50 .data = INTMASK1_ADC1K_MASK
51 | INTMASK1_ADC_MASK,
52 }, {
53 /* INTMASK2 - Unmask [0]ChgTypM */
54 .addr = MAX77693_MUIC_REG_INTMASK2,
55 .data = INTMASK2_CHGTYP_MASK,
56 }, {
57 /* INTMASK3 - Mask all of interrupts */
58 .addr = MAX77693_MUIC_REG_INTMASK3,
59 .data = 0x0,
60 }, {
61 /* CDETCTRL2 */
62 .addr = MAX77693_MUIC_REG_CDETCTRL2,
63 .data = CDETCTRL2_VIDRMEN_MASK
64 | CDETCTRL2_DXOVPEN_MASK,
65 },
66};
67
Chanwoo Choidb1b9032012-07-17 13:28:28 +090068enum max77693_muic_adc_debounce_time {
69 ADC_DEBOUNCE_TIME_5MS = 0,
70 ADC_DEBOUNCE_TIME_10MS,
71 ADC_DEBOUNCE_TIME_25MS,
72 ADC_DEBOUNCE_TIME_38_62MS,
73};
74
75struct max77693_muic_info {
76 struct device *dev;
77 struct max77693_dev *max77693;
78 struct extcon_dev *edev;
Chanwoo Choi154f757f2012-11-27 09:40:32 +090079 int prev_cable_type;
80 int prev_cable_type_gnd;
Chanwoo Choidb1b9032012-07-17 13:28:28 +090081 int prev_chg_type;
Chanwoo Choi39bf3692012-12-03 13:09:41 +090082 int prev_button_type;
Chanwoo Choidb1b9032012-07-17 13:28:28 +090083 u8 status[2];
84
85 int irq;
86 struct work_struct irq_work;
87 struct mutex mutex;
Chanwoo Choi39bf3692012-12-03 13:09:41 +090088
Chanwoo Choi297620f2012-12-26 13:10:11 +090089 /*
90 * Use delayed workqueue to detect cable state and then
91 * notify cable state to notifiee/platform through uevent.
92 * After completing the booting of platform, the extcon provider
93 * driver should notify cable state to upper layer.
94 */
95 struct delayed_work wq_detcable;
96
Chanwoo Choi39bf3692012-12-03 13:09:41 +090097 /* Button of dock device */
98 struct input_dev *dock;
Chanwoo Choi2b757992012-12-06 21:27:56 +090099
100 /*
101 * Default usb/uart path whether UART/USB or AUX_UART/AUX_USB
102 * h/w path of COMP2/COMN1 on CONTROL1 register.
103 */
104 int path_usb;
105 int path_uart;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900106};
107
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900108enum max77693_muic_cable_group {
109 MAX77693_CABLE_GROUP_ADC = 0,
110 MAX77693_CABLE_GROUP_ADC_GND,
111 MAX77693_CABLE_GROUP_CHG,
112 MAX77693_CABLE_GROUP_VBVOLT,
113};
114
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900115enum max77693_muic_charger_type {
116 MAX77693_CHARGER_TYPE_NONE = 0,
117 MAX77693_CHARGER_TYPE_USB,
118 MAX77693_CHARGER_TYPE_DOWNSTREAM_PORT,
119 MAX77693_CHARGER_TYPE_DEDICATED_CHG,
120 MAX77693_CHARGER_TYPE_APPLE_500MA,
121 MAX77693_CHARGER_TYPE_APPLE_1A_2A,
122 MAX77693_CHARGER_TYPE_DEAD_BATTERY = 7,
123};
124
125/**
126 * struct max77693_muic_irq
127 * @irq: the index of irq list of MUIC device.
128 * @name: the name of irq.
129 * @virq: the virtual irq to use irq domain
130 */
131struct max77693_muic_irq {
132 unsigned int irq;
133 const char *name;
134 unsigned int virq;
135};
136
137static struct max77693_muic_irq muic_irqs[] = {
138 { MAX77693_MUIC_IRQ_INT1_ADC, "muic-ADC" },
139 { MAX77693_MUIC_IRQ_INT1_ADC_LOW, "muic-ADCLOW" },
140 { MAX77693_MUIC_IRQ_INT1_ADC_ERR, "muic-ADCError" },
141 { MAX77693_MUIC_IRQ_INT1_ADC1K, "muic-ADC1K" },
142 { MAX77693_MUIC_IRQ_INT2_CHGTYP, "muic-CHGTYP" },
143 { MAX77693_MUIC_IRQ_INT2_CHGDETREUN, "muic-CHGDETREUN" },
144 { MAX77693_MUIC_IRQ_INT2_DCDTMR, "muic-DCDTMR" },
145 { MAX77693_MUIC_IRQ_INT2_DXOVP, "muic-DXOVP" },
146 { MAX77693_MUIC_IRQ_INT2_VBVOLT, "muic-VBVOLT" },
147 { MAX77693_MUIC_IRQ_INT2_VIDRM, "muic-VIDRM" },
148 { MAX77693_MUIC_IRQ_INT3_EOC, "muic-EOC" },
149 { MAX77693_MUIC_IRQ_INT3_CGMBC, "muic-CGMBC" },
150 { MAX77693_MUIC_IRQ_INT3_OVP, "muic-OVP" },
151 { MAX77693_MUIC_IRQ_INT3_MBCCHG_ERR, "muic-MBCCHG_ERR" },
152 { MAX77693_MUIC_IRQ_INT3_CHG_ENABLED, "muic-CHG_ENABLED" },
153 { MAX77693_MUIC_IRQ_INT3_BAT_DET, "muic-BAT_DET" },
154};
155
156/* Define supported accessory type */
157enum max77693_muic_acc_type {
158 MAX77693_MUIC_ADC_GROUND = 0x0,
159 MAX77693_MUIC_ADC_SEND_END_BUTTON,
160 MAX77693_MUIC_ADC_REMOTE_S1_BUTTON,
161 MAX77693_MUIC_ADC_REMOTE_S2_BUTTON,
162 MAX77693_MUIC_ADC_REMOTE_S3_BUTTON,
163 MAX77693_MUIC_ADC_REMOTE_S4_BUTTON,
164 MAX77693_MUIC_ADC_REMOTE_S5_BUTTON,
165 MAX77693_MUIC_ADC_REMOTE_S6_BUTTON,
166 MAX77693_MUIC_ADC_REMOTE_S7_BUTTON,
167 MAX77693_MUIC_ADC_REMOTE_S8_BUTTON,
168 MAX77693_MUIC_ADC_REMOTE_S9_BUTTON,
169 MAX77693_MUIC_ADC_REMOTE_S10_BUTTON,
170 MAX77693_MUIC_ADC_REMOTE_S11_BUTTON,
171 MAX77693_MUIC_ADC_REMOTE_S12_BUTTON,
172 MAX77693_MUIC_ADC_RESERVED_ACC_1,
173 MAX77693_MUIC_ADC_RESERVED_ACC_2,
174 MAX77693_MUIC_ADC_RESERVED_ACC_3,
175 MAX77693_MUIC_ADC_RESERVED_ACC_4,
176 MAX77693_MUIC_ADC_RESERVED_ACC_5,
177 MAX77693_MUIC_ADC_CEA936_AUDIO,
178 MAX77693_MUIC_ADC_PHONE_POWERED_DEV,
179 MAX77693_MUIC_ADC_TTY_CONVERTER,
180 MAX77693_MUIC_ADC_UART_CABLE,
181 MAX77693_MUIC_ADC_CEA936A_TYPE1_CHG,
182 MAX77693_MUIC_ADC_FACTORY_MODE_USB_OFF,
183 MAX77693_MUIC_ADC_FACTORY_MODE_USB_ON,
184 MAX77693_MUIC_ADC_AV_CABLE_NOLOAD,
185 MAX77693_MUIC_ADC_CEA936A_TYPE2_CHG,
186 MAX77693_MUIC_ADC_FACTORY_MODE_UART_OFF,
187 MAX77693_MUIC_ADC_FACTORY_MODE_UART_ON,
188 MAX77693_MUIC_ADC_AUDIO_MODE_REMOTE,
189 MAX77693_MUIC_ADC_OPEN,
190
191 /* The below accessories have same ADC value so ADCLow and
192 ADC1K bit is used to separate specific accessory */
Chanwoo Choic2275d22013-08-23 10:21:37 +0900193 /* ADC|VBVolot|ADCLow|ADC1K| */
Jaewon Kim4c883ab2015-01-29 17:45:24 +0900194 MAX77693_MUIC_GND_USB_HOST = 0x100, /* 0x0| 0| 0| 0| */
195 MAX77693_MUIC_GND_USB_HOST_VB = 0x104, /* 0x0| 1| 0| 0| */
Chanwoo Choic2275d22013-08-23 10:21:37 +0900196 MAX77693_MUIC_GND_AV_CABLE_LOAD = 0x102,/* 0x0| 0| 1| 0| */
197 MAX77693_MUIC_GND_MHL = 0x103, /* 0x0| 0| 1| 1| */
198 MAX77693_MUIC_GND_MHL_VB = 0x107, /* 0x0| 1| 1| 1| */
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900199};
200
Chanwoo Choic2275d22013-08-23 10:21:37 +0900201/*
202 * MAX77693 MUIC device support below list of accessories(external connector)
203 */
Chanwoo Choi73b6ecd2015-06-12 11:10:06 +0900204static const unsigned int max77693_extcon_cable[] = {
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900205 EXTCON_USB,
206 EXTCON_USB_HOST,
Chanwoo Choi8b45b6a2015-11-09 10:10:15 +0900207 EXTCON_CHG_USB_SDP,
Chanwoo Choi11eecf92015-10-03 14:15:13 +0900208 EXTCON_CHG_USB_DCP,
209 EXTCON_CHG_USB_FAST,
210 EXTCON_CHG_USB_SLOW,
211 EXTCON_CHG_USB_CDP,
212 EXTCON_DISP_MHL,
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900213 EXTCON_JIG,
214 EXTCON_DOCK,
215 EXTCON_NONE,
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900216};
217
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900218/*
219 * max77693_muic_set_debounce_time - Set the debounce time of ADC
220 * @info: the instance including private data of max77693 MUIC
221 * @time: the debounce time of ADC
222 */
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900223static int max77693_muic_set_debounce_time(struct max77693_muic_info *info,
224 enum max77693_muic_adc_debounce_time time)
225{
Axel Linbf2627d2012-10-04 09:55:23 +0900226 int ret;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900227
228 switch (time) {
229 case ADC_DEBOUNCE_TIME_5MS:
230 case ADC_DEBOUNCE_TIME_10MS:
231 case ADC_DEBOUNCE_TIME_25MS:
232 case ADC_DEBOUNCE_TIME_38_62MS:
Jonghwa Leedc6048d2014-09-17 12:58:43 +0900233 /*
234 * Don't touch BTLDset, JIGset when you want to change adc
235 * debounce time. If it writes other than 0 to BTLDset, JIGset
236 * muic device will be reset and loose current state.
237 */
238 ret = regmap_write(info->max77693->regmap_muic,
239 MAX77693_MUIC_REG_CTRL3,
Krzysztof Kozlowskicceb4332015-07-15 21:59:52 +0900240 time << MAX77693_CONTROL3_ADCDBSET_SHIFT);
Chanwoo Choi19d32432013-02-13 18:35:08 +0900241 if (ret) {
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900242 dev_err(info->dev, "failed to set ADC debounce time\n");
Sachin Kamatc2536542013-04-08 09:12:32 +0900243 return ret;
Chanwoo Choi19d32432013-02-13 18:35:08 +0900244 }
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900245 break;
246 default:
247 dev_err(info->dev, "invalid ADC debounce time\n");
Chanwoo Choi19d32432013-02-13 18:35:08 +0900248 return -EINVAL;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900249 }
250
Chanwoo Choi19d32432013-02-13 18:35:08 +0900251 return 0;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900252};
253
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900254/*
255 * max77693_muic_set_path - Set hardware line according to attached cable
256 * @info: the instance including private data of max77693 MUIC
257 * @value: the path according to attached cable
258 * @attached: the state of cable (true:attached, false:detached)
259 *
260 * The max77693 MUIC device share outside H/W line among a varity of cables
261 * so, this function set internal path of H/W line according to the type of
262 * attached cable.
263 */
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900264static int max77693_muic_set_path(struct max77693_muic_info *info,
265 u8 val, bool attached)
266{
267 int ret = 0;
Robert Baldygad0540f92014-05-21 08:52:47 +0200268 unsigned int ctrl1, ctrl2 = 0;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900269
270 if (attached)
271 ctrl1 = val;
272 else
Krzysztof Kozlowskicceb4332015-07-15 21:59:52 +0900273 ctrl1 = MAX77693_CONTROL1_SW_OPEN;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900274
Robert Baldygad0540f92014-05-21 08:52:47 +0200275 ret = regmap_update_bits(info->max77693->regmap_muic,
276 MAX77693_MUIC_REG_CTRL1, COMP_SW_MASK, ctrl1);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900277 if (ret < 0) {
278 dev_err(info->dev, "failed to update MUIC register\n");
Sachin Kamatc2536542013-04-08 09:12:32 +0900279 return ret;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900280 }
281
282 if (attached)
Krzysztof Kozlowskicceb4332015-07-15 21:59:52 +0900283 ctrl2 |= MAX77693_CONTROL2_CPEN_MASK; /* LowPwr=0, CPEn=1 */
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900284 else
Krzysztof Kozlowskicceb4332015-07-15 21:59:52 +0900285 ctrl2 |= MAX77693_CONTROL2_LOWPWR_MASK; /* LowPwr=1, CPEn=0 */
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900286
Robert Baldygad0540f92014-05-21 08:52:47 +0200287 ret = regmap_update_bits(info->max77693->regmap_muic,
288 MAX77693_MUIC_REG_CTRL2,
Krzysztof Kozlowskicceb4332015-07-15 21:59:52 +0900289 MAX77693_CONTROL2_LOWPWR_MASK | MAX77693_CONTROL2_CPEN_MASK,
290 ctrl2);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900291 if (ret < 0) {
292 dev_err(info->dev, "failed to update MUIC register\n");
Sachin Kamatc2536542013-04-08 09:12:32 +0900293 return ret;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900294 }
295
296 dev_info(info->dev,
297 "CONTROL1 : 0x%02x, CONTROL2 : 0x%02x, state : %s\n",
298 ctrl1, ctrl2, attached ? "attached" : "detached");
Chanwoo Choi19d32432013-02-13 18:35:08 +0900299
300 return 0;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900301}
302
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900303/*
304 * max77693_muic_get_cable_type - Return cable type and check cable state
305 * @info: the instance including private data of max77693 MUIC
306 * @group: the path according to attached cable
307 * @attached: store cable state and return
308 *
309 * This function check the cable state either attached or detached,
310 * and then divide precise type of cable according to cable group.
311 * - MAX77693_CABLE_GROUP_ADC
312 * - MAX77693_CABLE_GROUP_ADC_GND
313 * - MAX77693_CABLE_GROUP_CHG
314 * - MAX77693_CABLE_GROUP_VBVOLT
315 */
316static int max77693_muic_get_cable_type(struct max77693_muic_info *info,
317 enum max77693_muic_cable_group group, bool *attached)
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900318{
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900319 int cable_type = 0;
320 int adc;
321 int adc1k;
322 int adclow;
323 int vbvolt;
324 int chg_type;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900325
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900326 switch (group) {
327 case MAX77693_CABLE_GROUP_ADC:
328 /*
329 * Read ADC value to check cable type and decide cable state
330 * according to cable type
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900331 */
Krzysztof Kozlowskicceb4332015-07-15 21:59:52 +0900332 adc = info->status[0] & MAX77693_STATUS1_ADC_MASK;
333 adc >>= MAX77693_STATUS1_ADC_SHIFT;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900334
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900335 /*
336 * Check current cable state/cable type and store cable type
337 * (info->prev_cable_type) for handling cable when cable is
338 * detached.
339 */
340 if (adc == MAX77693_MUIC_ADC_OPEN) {
341 *attached = false;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900342
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900343 cable_type = info->prev_cable_type;
344 info->prev_cable_type = MAX77693_MUIC_ADC_OPEN;
345 } else {
346 *attached = true;
347
348 cable_type = info->prev_cable_type = adc;
349 }
350 break;
351 case MAX77693_CABLE_GROUP_ADC_GND:
352 /*
353 * Read ADC value to check cable type and decide cable state
354 * according to cable type
355 */
Krzysztof Kozlowskicceb4332015-07-15 21:59:52 +0900356 adc = info->status[0] & MAX77693_STATUS1_ADC_MASK;
357 adc >>= MAX77693_STATUS1_ADC_SHIFT;
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900358
359 /*
360 * Check current cable state/cable type and store cable type
361 * (info->prev_cable_type/_gnd) for handling cable when cable
362 * is detached.
363 */
364 if (adc == MAX77693_MUIC_ADC_OPEN) {
365 *attached = false;
366
367 cable_type = info->prev_cable_type_gnd;
368 info->prev_cable_type_gnd = MAX77693_MUIC_ADC_OPEN;
369 } else {
370 *attached = true;
371
Krzysztof Kozlowskicceb4332015-07-15 21:59:52 +0900372 adclow = info->status[0] & MAX77693_STATUS1_ADCLOW_MASK;
373 adclow >>= MAX77693_STATUS1_ADCLOW_SHIFT;
374 adc1k = info->status[0] & MAX77693_STATUS1_ADC1K_MASK;
375 adc1k >>= MAX77693_STATUS1_ADC1K_SHIFT;
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900376
Krzysztof Kozlowskicceb4332015-07-15 21:59:52 +0900377 vbvolt = info->status[1] & MAX77693_STATUS2_VBVOLT_MASK;
378 vbvolt >>= MAX77693_STATUS2_VBVOLT_SHIFT;
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900379
380 /**
Chanwoo Choic2275d22013-08-23 10:21:37 +0900381 * [0x1|VBVolt|ADCLow|ADC1K]
Jaewon Kim4c883ab2015-01-29 17:45:24 +0900382 * [0x1| 0| 0| 0] USB_HOST
383 * [0x1| 1| 0| 0] USB_HSOT_VB
Chanwoo Choic2275d22013-08-23 10:21:37 +0900384 * [0x1| 0| 1| 0] Audio Video cable with load
385 * [0x1| 0| 1| 1] MHL without charging cable
386 * [0x1| 1| 1| 1] MHL with charging cable
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900387 */
388 cable_type = ((0x1 << 8)
389 | (vbvolt << 2)
390 | (adclow << 1)
391 | adc1k);
392
393 info->prev_cable_type = adc;
394 info->prev_cable_type_gnd = cable_type;
395 }
396
397 break;
398 case MAX77693_CABLE_GROUP_CHG:
399 /*
400 * Read charger type to check cable type and decide cable state
401 * according to type of charger cable.
402 */
Krzysztof Kozlowskicceb4332015-07-15 21:59:52 +0900403 chg_type = info->status[1] & MAX77693_STATUS2_CHGTYP_MASK;
404 chg_type >>= MAX77693_STATUS2_CHGTYP_SHIFT;
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900405
406 if (chg_type == MAX77693_CHARGER_TYPE_NONE) {
407 *attached = false;
408
409 cable_type = info->prev_chg_type;
410 info->prev_chg_type = MAX77693_CHARGER_TYPE_NONE;
411 } else {
412 *attached = true;
413
414 /*
415 * Check current cable state/cable type and store cable
416 * type(info->prev_chg_type) for handling cable when
417 * charger cable is detached.
418 */
419 cable_type = info->prev_chg_type = chg_type;
420 }
421
422 break;
423 case MAX77693_CABLE_GROUP_VBVOLT:
424 /*
425 * Read ADC value to check cable type and decide cable state
426 * according to cable type
427 */
Krzysztof Kozlowskicceb4332015-07-15 21:59:52 +0900428 adc = info->status[0] & MAX77693_STATUS1_ADC_MASK;
429 adc >>= MAX77693_STATUS1_ADC_SHIFT;
430 chg_type = info->status[1] & MAX77693_STATUS2_CHGTYP_MASK;
431 chg_type >>= MAX77693_STATUS2_CHGTYP_SHIFT;
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900432
433 if (adc == MAX77693_MUIC_ADC_OPEN
434 && chg_type == MAX77693_CHARGER_TYPE_NONE)
435 *attached = false;
436 else
437 *attached = true;
438
439 /*
440 * Read vbvolt field, if vbvolt is 1,
441 * this cable is used for charging.
442 */
Krzysztof Kozlowskicceb4332015-07-15 21:59:52 +0900443 vbvolt = info->status[1] & MAX77693_STATUS2_VBVOLT_MASK;
444 vbvolt >>= MAX77693_STATUS2_VBVOLT_SHIFT;
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900445
446 cable_type = vbvolt;
447 break;
448 default:
449 dev_err(info->dev, "Unknown cable group (%d)\n", group);
450 cable_type = -EINVAL;
451 break;
452 }
453
454 return cable_type;
455}
456
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900457static int max77693_muic_dock_handler(struct max77693_muic_info *info,
458 int cable_type, bool attached)
459{
460 int ret = 0;
Chanwoo Choia1626292012-12-10 19:07:53 +0900461 int vbvolt;
462 bool cable_attached;
Chanwoo Choi73b6ecd2015-06-12 11:10:06 +0900463 unsigned int dock_id;
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900464
465 dev_info(info->dev,
466 "external connector is %s (adc:0x%02x)\n",
467 attached ? "attached" : "detached", cable_type);
468
469 switch (cable_type) {
470 case MAX77693_MUIC_ADC_RESERVED_ACC_3: /* Dock-Smart */
Chanwoo Choia1626292012-12-10 19:07:53 +0900471 /*
472 * Check power cable whether attached or detached state.
473 * The Dock-Smart device need surely external power supply.
474 * If power cable(USB/TA) isn't connected to Dock device,
475 * user can't use Dock-Smart for desktop mode.
476 */
477 vbvolt = max77693_muic_get_cable_type(info,
478 MAX77693_CABLE_GROUP_VBVOLT, &cable_attached);
479 if (attached && !vbvolt) {
480 dev_warn(info->dev,
481 "Cannot detect external power supply\n");
482 return 0;
483 }
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900484
Chanwoo Choia1626292012-12-10 19:07:53 +0900485 /*
Chanwoo Choid519c422015-04-25 19:05:10 +0900486 * Notify Dock/MHL state.
487 * - Dock device include three type of cable which
Chanwoo Choia1626292012-12-10 19:07:53 +0900488 * are HDMI, USB for mouse/keyboard and micro-usb port
Chanwoo Choid519c422015-04-25 19:05:10 +0900489 * for USB/TA cable. Dock device need always exteranl
490 * power supply(USB/TA cable through micro-usb cable). Dock
491 * device support screen output of target to separate
Chanwoo Choia1626292012-12-10 19:07:53 +0900492 * monitor and mouse/keyboard for desktop mode.
493 *
Chanwoo Choid519c422015-04-25 19:05:10 +0900494 * Features of 'USB/TA cable with Dock device'
Chanwoo Choia1626292012-12-10 19:07:53 +0900495 * - Support MHL
496 * - Support external output feature of audio
497 * - Support charging through micro-usb port without data
498 * connection if TA cable is connected to target.
499 * - Support charging and data connection through micro-usb port
500 * if USB cable is connected between target and host
501 * device.
Jaewon Kim4c883ab2015-01-29 17:45:24 +0900502 * - Support OTG(On-The-Go) device (Ex: Mouse/Keyboard)
Chanwoo Choia1626292012-12-10 19:07:53 +0900503 */
504 ret = max77693_muic_set_path(info, info->path_usb, attached);
505 if (ret < 0)
506 return ret;
507
Chanwoo Choi8670b452016-08-16 15:55:34 +0900508 extcon_set_state_sync(info->edev, EXTCON_DOCK, attached);
509 extcon_set_state_sync(info->edev, EXTCON_DISP_MHL, attached);
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900510 goto out;
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900511 case MAX77693_MUIC_ADC_AUDIO_MODE_REMOTE: /* Dock-Desk */
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900512 dock_id = EXTCON_DOCK;
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900513 break;
514 case MAX77693_MUIC_ADC_AV_CABLE_NOLOAD: /* Dock-Audio */
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900515 dock_id = EXTCON_DOCK;
Chanwoo Choi8b45b6a2015-11-09 10:10:15 +0900516 if (!attached) {
Chanwoo Choi8670b452016-08-16 15:55:34 +0900517 extcon_set_state_sync(info->edev, EXTCON_USB, false);
518 extcon_set_state_sync(info->edev, EXTCON_CHG_USB_SDP,
Chanwoo Choi8b45b6a2015-11-09 10:10:15 +0900519 false);
520 }
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900521 break;
Chanwoo Choi19d32432013-02-13 18:35:08 +0900522 default:
523 dev_err(info->dev, "failed to detect %s dock device\n",
524 attached ? "attached" : "detached");
525 return -EINVAL;
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900526 }
527
528 /* Dock-Car/Desk/Audio, PATH:AUDIO */
Krzysztof Kozlowskicceb4332015-07-15 21:59:52 +0900529 ret = max77693_muic_set_path(info, MAX77693_CONTROL1_SW_AUDIO,
530 attached);
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900531 if (ret < 0)
Chanwoo Choia1626292012-12-10 19:07:53 +0900532 return ret;
Chanwoo Choi8670b452016-08-16 15:55:34 +0900533 extcon_set_state_sync(info->edev, dock_id, attached);
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900534
535out:
Chanwoo Choia1626292012-12-10 19:07:53 +0900536 return 0;
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900537}
538
539static int max77693_muic_dock_button_handler(struct max77693_muic_info *info,
540 int button_type, bool attached)
541{
542 struct input_dev *dock = info->dock;
543 unsigned int code;
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900544
545 switch (button_type) {
546 case MAX77693_MUIC_ADC_REMOTE_S3_BUTTON-1
547 ... MAX77693_MUIC_ADC_REMOTE_S3_BUTTON+1:
548 /* DOCK_KEY_PREV */
549 code = KEY_PREVIOUSSONG;
550 break;
551 case MAX77693_MUIC_ADC_REMOTE_S7_BUTTON-1
552 ... MAX77693_MUIC_ADC_REMOTE_S7_BUTTON+1:
553 /* DOCK_KEY_NEXT */
554 code = KEY_NEXTSONG;
555 break;
556 case MAX77693_MUIC_ADC_REMOTE_S9_BUTTON:
557 /* DOCK_VOL_DOWN */
558 code = KEY_VOLUMEDOWN;
559 break;
560 case MAX77693_MUIC_ADC_REMOTE_S10_BUTTON:
561 /* DOCK_VOL_UP */
562 code = KEY_VOLUMEUP;
563 break;
564 case MAX77693_MUIC_ADC_REMOTE_S12_BUTTON-1
565 ... MAX77693_MUIC_ADC_REMOTE_S12_BUTTON+1:
566 /* DOCK_KEY_PLAY_PAUSE */
567 code = KEY_PLAYPAUSE;
568 break;
569 default:
570 dev_err(info->dev,
571 "failed to detect %s key (adc:0x%x)\n",
572 attached ? "pressed" : "released", button_type);
Chanwoo Choi19d32432013-02-13 18:35:08 +0900573 return -EINVAL;
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900574 }
575
576 input_event(dock, EV_KEY, code, attached);
577 input_sync(dock);
578
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900579 return 0;
580}
581
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900582static int max77693_muic_adc_ground_handler(struct max77693_muic_info *info)
583{
584 int cable_type_gnd;
585 int ret = 0;
586 bool attached;
587
588 cable_type_gnd = max77693_muic_get_cable_type(info,
589 MAX77693_CABLE_GROUP_ADC_GND, &attached);
590
591 switch (cable_type_gnd) {
Jaewon Kim4c883ab2015-01-29 17:45:24 +0900592 case MAX77693_MUIC_GND_USB_HOST:
593 case MAX77693_MUIC_GND_USB_HOST_VB:
594 /* USB_HOST, PATH: AP_USB */
Krzysztof Kozlowskicceb4332015-07-15 21:59:52 +0900595 ret = max77693_muic_set_path(info, MAX77693_CONTROL1_SW_USB,
596 attached);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900597 if (ret < 0)
Chanwoo Choi19d32432013-02-13 18:35:08 +0900598 return ret;
Chanwoo Choi8670b452016-08-16 15:55:34 +0900599 extcon_set_state_sync(info->edev, EXTCON_USB_HOST, attached);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900600 break;
601 case MAX77693_MUIC_GND_AV_CABLE_LOAD:
Chanwoo Choi06bed0a2012-11-27 11:30:35 +0900602 /* Audio Video Cable with load, PATH:AUDIO */
Krzysztof Kozlowskicceb4332015-07-15 21:59:52 +0900603 ret = max77693_muic_set_path(info, MAX77693_CONTROL1_SW_AUDIO,
604 attached);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900605 if (ret < 0)
Chanwoo Choi19d32432013-02-13 18:35:08 +0900606 return ret;
Chanwoo Choi8670b452016-08-16 15:55:34 +0900607 extcon_set_state_sync(info->edev, EXTCON_USB, attached);
608 extcon_set_state_sync(info->edev, EXTCON_CHG_USB_SDP,
Chanwoo Choi8b45b6a2015-11-09 10:10:15 +0900609 attached);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900610 break;
Chanwoo Choi06bed0a2012-11-27 11:30:35 +0900611 case MAX77693_MUIC_GND_MHL:
612 case MAX77693_MUIC_GND_MHL_VB:
613 /* MHL or MHL with USB/TA cable */
Chanwoo Choi8670b452016-08-16 15:55:34 +0900614 extcon_set_state_sync(info->edev, EXTCON_DISP_MHL, attached);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900615 break;
616 default:
Chanwoo Choi19d32432013-02-13 18:35:08 +0900617 dev_err(info->dev, "failed to detect %s cable of gnd type\n",
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900618 attached ? "attached" : "detached");
Chanwoo Choi19d32432013-02-13 18:35:08 +0900619 return -EINVAL;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900620 }
621
Chanwoo Choi19d32432013-02-13 18:35:08 +0900622 return 0;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900623}
624
Chanwoo Choid0587eb2012-11-27 12:06:49 +0900625static int max77693_muic_jig_handler(struct max77693_muic_info *info,
626 int cable_type, bool attached)
627{
Chanwoo Choid0587eb2012-11-27 12:06:49 +0900628 int ret = 0;
Krzysztof Kozlowskicceb4332015-07-15 21:59:52 +0900629 u8 path = MAX77693_CONTROL1_SW_OPEN;
Chanwoo Choid0587eb2012-11-27 12:06:49 +0900630
631 dev_info(info->dev,
632 "external connector is %s (adc:0x%02x)\n",
633 attached ? "attached" : "detached", cable_type);
634
635 switch (cable_type) {
636 case MAX77693_MUIC_ADC_FACTORY_MODE_USB_OFF: /* ADC_JIG_USB_OFF */
Chanwoo Choid0587eb2012-11-27 12:06:49 +0900637 case MAX77693_MUIC_ADC_FACTORY_MODE_USB_ON: /* ADC_JIG_USB_ON */
638 /* PATH:AP_USB */
Krzysztof Kozlowskicceb4332015-07-15 21:59:52 +0900639 path = MAX77693_CONTROL1_SW_USB;
Chanwoo Choid0587eb2012-11-27 12:06:49 +0900640 break;
641 case MAX77693_MUIC_ADC_FACTORY_MODE_UART_OFF: /* ADC_JIG_UART_OFF */
Krzysztof Kozlowskic22159a2014-10-22 10:45:40 +0200642 case MAX77693_MUIC_ADC_FACTORY_MODE_UART_ON: /* ADC_JIG_UART_ON */
643 /* PATH:AP_UART */
Krzysztof Kozlowskicceb4332015-07-15 21:59:52 +0900644 path = MAX77693_CONTROL1_SW_UART;
Krzysztof Kozlowskic22159a2014-10-22 10:45:40 +0200645 break;
Chanwoo Choi19d32432013-02-13 18:35:08 +0900646 default:
647 dev_err(info->dev, "failed to detect %s jig cable\n",
648 attached ? "attached" : "detached");
649 return -EINVAL;
Chanwoo Choid0587eb2012-11-27 12:06:49 +0900650 }
651
652 ret = max77693_muic_set_path(info, path, attached);
653 if (ret < 0)
Chanwoo Choi19d32432013-02-13 18:35:08 +0900654 return ret;
Chanwoo Choid0587eb2012-11-27 12:06:49 +0900655
Chanwoo Choi8670b452016-08-16 15:55:34 +0900656 extcon_set_state_sync(info->edev, EXTCON_JIG, attached);
Chanwoo Choi19d32432013-02-13 18:35:08 +0900657
658 return 0;
Chanwoo Choid0587eb2012-11-27 12:06:49 +0900659}
660
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900661static int max77693_muic_adc_handler(struct max77693_muic_info *info)
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900662{
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900663 int cable_type;
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900664 int button_type;
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900665 bool attached;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900666 int ret = 0;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900667
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900668 /* Check accessory state which is either detached or attached */
669 cable_type = max77693_muic_get_cable_type(info,
670 MAX77693_CABLE_GROUP_ADC, &attached);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900671
672 dev_info(info->dev,
673 "external connector is %s (adc:0x%02x, prev_adc:0x%x)\n",
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900674 attached ? "attached" : "detached", cable_type,
675 info->prev_cable_type);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900676
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900677 switch (cable_type) {
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900678 case MAX77693_MUIC_ADC_GROUND:
Jaewon Kim4c883ab2015-01-29 17:45:24 +0900679 /* USB_HOST/MHL/Audio */
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900680 max77693_muic_adc_ground_handler(info);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900681 break;
682 case MAX77693_MUIC_ADC_FACTORY_MODE_USB_OFF:
683 case MAX77693_MUIC_ADC_FACTORY_MODE_USB_ON:
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900684 case MAX77693_MUIC_ADC_FACTORY_MODE_UART_OFF:
Krzysztof Kozlowskic22159a2014-10-22 10:45:40 +0200685 case MAX77693_MUIC_ADC_FACTORY_MODE_UART_ON:
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900686 /* JIG */
Chanwoo Choid0587eb2012-11-27 12:06:49 +0900687 ret = max77693_muic_jig_handler(info, cable_type, attached);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900688 if (ret < 0)
Chanwoo Choi19d32432013-02-13 18:35:08 +0900689 return ret;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900690 break;
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900691 case MAX77693_MUIC_ADC_RESERVED_ACC_3: /* Dock-Smart */
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900692 case MAX77693_MUIC_ADC_AUDIO_MODE_REMOTE: /* Dock-Desk */
693 case MAX77693_MUIC_ADC_AV_CABLE_NOLOAD: /* Dock-Audio */
694 /*
695 * DOCK device
696 *
697 * The MAX77693 MUIC device can detect total 34 cable type
698 * except of charger cable and MUIC device didn't define
699 * specfic role of cable in the range of from 0x01 to 0x12
700 * of ADC value. So, can use/define cable with no role according
701 * to schema of hardware board.
702 */
703 ret = max77693_muic_dock_handler(info, cable_type, attached);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900704 if (ret < 0)
Chanwoo Choi19d32432013-02-13 18:35:08 +0900705 return ret;
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900706 break;
Chanwoo Choic2275d22013-08-23 10:21:37 +0900707 case MAX77693_MUIC_ADC_REMOTE_S3_BUTTON: /* DOCK_KEY_PREV */
708 case MAX77693_MUIC_ADC_REMOTE_S7_BUTTON: /* DOCK_KEY_NEXT */
709 case MAX77693_MUIC_ADC_REMOTE_S9_BUTTON: /* DOCK_VOL_DOWN */
710 case MAX77693_MUIC_ADC_REMOTE_S10_BUTTON: /* DOCK_VOL_UP */
711 case MAX77693_MUIC_ADC_REMOTE_S12_BUTTON: /* DOCK_KEY_PLAY_PAUSE */
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900712 /*
713 * Button of DOCK device
714 * - the Prev/Next/Volume Up/Volume Down/Play-Pause button
715 *
716 * The MAX77693 MUIC device can detect total 34 cable type
717 * except of charger cable and MUIC device didn't define
718 * specfic role of cable in the range of from 0x01 to 0x12
719 * of ADC value. So, can use/define cable with no role according
720 * to schema of hardware board.
721 */
722 if (attached)
723 button_type = info->prev_button_type = cable_type;
724 else
725 button_type = info->prev_button_type;
726
727 ret = max77693_muic_dock_button_handler(info, button_type,
728 attached);
729 if (ret < 0)
Chanwoo Choi19d32432013-02-13 18:35:08 +0900730 return ret;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900731 break;
732 case MAX77693_MUIC_ADC_SEND_END_BUTTON:
733 case MAX77693_MUIC_ADC_REMOTE_S1_BUTTON:
734 case MAX77693_MUIC_ADC_REMOTE_S2_BUTTON:
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900735 case MAX77693_MUIC_ADC_REMOTE_S4_BUTTON:
736 case MAX77693_MUIC_ADC_REMOTE_S5_BUTTON:
737 case MAX77693_MUIC_ADC_REMOTE_S6_BUTTON:
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900738 case MAX77693_MUIC_ADC_REMOTE_S8_BUTTON:
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900739 case MAX77693_MUIC_ADC_REMOTE_S11_BUTTON:
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900740 case MAX77693_MUIC_ADC_RESERVED_ACC_1:
741 case MAX77693_MUIC_ADC_RESERVED_ACC_2:
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900742 case MAX77693_MUIC_ADC_RESERVED_ACC_4:
743 case MAX77693_MUIC_ADC_RESERVED_ACC_5:
744 case MAX77693_MUIC_ADC_CEA936_AUDIO:
745 case MAX77693_MUIC_ADC_PHONE_POWERED_DEV:
746 case MAX77693_MUIC_ADC_TTY_CONVERTER:
747 case MAX77693_MUIC_ADC_UART_CABLE:
748 case MAX77693_MUIC_ADC_CEA936A_TYPE1_CHG:
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900749 case MAX77693_MUIC_ADC_CEA936A_TYPE2_CHG:
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900750 /*
751 * This accessory isn't used in general case if it is specially
752 * needed to detect additional accessory, should implement
753 * proper operation when this accessory is attached/detached.
754 */
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900755 dev_info(info->dev,
756 "accessory is %s but it isn't used (adc:0x%x)\n",
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900757 attached ? "attached" : "detached", cable_type);
Chanwoo Choi19d32432013-02-13 18:35:08 +0900758 return -EAGAIN;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900759 default:
760 dev_err(info->dev,
761 "failed to detect %s accessory (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 -EINVAL;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900764 }
765
Chanwoo Choi19d32432013-02-13 18:35:08 +0900766 return 0;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900767}
768
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900769static int max77693_muic_chg_handler(struct max77693_muic_info *info)
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900770{
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900771 int chg_type;
Chanwoo Choi06bed0a2012-11-27 11:30:35 +0900772 int cable_type_gnd;
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900773 int cable_type;
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900774 bool attached;
Chanwoo Choi06bed0a2012-11-27 11:30:35 +0900775 bool cable_attached;
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900776 int ret = 0;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900777
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900778 chg_type = max77693_muic_get_cable_type(info,
779 MAX77693_CABLE_GROUP_CHG, &attached);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900780
781 dev_info(info->dev,
782 "external connector is %s(chg_type:0x%x, prev_chg_type:0x%x)\n",
783 attached ? "attached" : "detached",
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900784 chg_type, info->prev_chg_type);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900785
786 switch (chg_type) {
787 case MAX77693_CHARGER_TYPE_USB:
Chanwoo Choia1626292012-12-10 19:07:53 +0900788 case MAX77693_CHARGER_TYPE_DEDICATED_CHG:
Chanwoo Choi0e2738f2012-12-06 21:36:18 +0900789 case MAX77693_CHARGER_TYPE_NONE:
Chanwoo Choia1626292012-12-10 19:07:53 +0900790 /* Check MAX77693_CABLE_GROUP_ADC_GND type */
Chanwoo Choi06bed0a2012-11-27 11:30:35 +0900791 cable_type_gnd = max77693_muic_get_cable_type(info,
792 MAX77693_CABLE_GROUP_ADC_GND,
793 &cable_attached);
Chanwoo Choia1626292012-12-10 19:07:53 +0900794 switch (cable_type_gnd) {
795 case MAX77693_MUIC_GND_MHL:
796 case MAX77693_MUIC_GND_MHL_VB:
797 /*
Chanwoo Choi942e0232015-04-25 19:06:18 +0900798 * MHL cable with USB/TA cable
Chanwoo Choic2275d22013-08-23 10:21:37 +0900799 * - MHL cable include two port(HDMI line and separate
800 * micro-usb port. When the target connect MHL cable,
Chanwoo Choi942e0232015-04-25 19:06:18 +0900801 * extcon driver check whether USB/TA cable is
802 * connected. If USB/TA cable is connected, extcon
Chanwoo Choic2275d22013-08-23 10:21:37 +0900803 * driver notify state to notifiee for charging battery.
Chanwoo Choia1626292012-12-10 19:07:53 +0900804 *
Chanwoo Choi942e0232015-04-25 19:06:18 +0900805 * Features of 'USB/TA with MHL cable'
Chanwoo Choia1626292012-12-10 19:07:53 +0900806 * - Support MHL
Chanwoo Choic2275d22013-08-23 10:21:37 +0900807 * - Support charging through micro-usb port without
808 * data connection
Chanwoo Choia1626292012-12-10 19:07:53 +0900809 */
Chanwoo Choi8670b452016-08-16 15:55:34 +0900810 extcon_set_state_sync(info->edev, EXTCON_CHG_USB_DCP,
Chanwoo Choi11eecf92015-10-03 14:15:13 +0900811 attached);
Chanwoo Choi06bed0a2012-11-27 11:30:35 +0900812 if (!cable_attached)
Chanwoo Choi8670b452016-08-16 15:55:34 +0900813 extcon_set_state_sync(info->edev,
Chanwoo Choi11eecf92015-10-03 14:15:13 +0900814 EXTCON_DISP_MHL, cable_attached);
Chanwoo Choia1626292012-12-10 19:07:53 +0900815 break;
Chanwoo Choi06bed0a2012-11-27 11:30:35 +0900816 }
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900817
Chanwoo Choia1626292012-12-10 19:07:53 +0900818 /* Check MAX77693_CABLE_GROUP_ADC type */
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900819 cable_type = max77693_muic_get_cable_type(info,
820 MAX77693_CABLE_GROUP_ADC,
821 &cable_attached);
Chanwoo Choia1626292012-12-10 19:07:53 +0900822 switch (cable_type) {
823 case MAX77693_MUIC_ADC_AV_CABLE_NOLOAD: /* Dock-Audio */
824 /*
825 * Dock-Audio device with USB/TA cable
Chanwoo Choic2275d22013-08-23 10:21:37 +0900826 * - Dock device include two port(Dock-Audio and micro-
827 * usb port). When the target connect Dock-Audio device,
828 * extcon driver check whether USB/TA cable is connected
829 * or not. If USB/TA cable is connected, extcon driver
830 * notify state to notifiee for charging battery.
Chanwoo Choia1626292012-12-10 19:07:53 +0900831 *
832 * Features of 'USB/TA cable with Dock-Audio device'
833 * - Support external output feature of audio.
Chanwoo Choic2275d22013-08-23 10:21:37 +0900834 * - Support charging through micro-usb port without
835 * data connection.
Chanwoo Choia1626292012-12-10 19:07:53 +0900836 */
Chanwoo Choi8670b452016-08-16 15:55:34 +0900837 extcon_set_state_sync(info->edev, EXTCON_USB,
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900838 attached);
Chanwoo Choi8670b452016-08-16 15:55:34 +0900839 extcon_set_state_sync(info->edev, EXTCON_CHG_USB_SDP,
Chanwoo Choi8b45b6a2015-11-09 10:10:15 +0900840 attached);
Chanwoo Choi39bf3692012-12-03 13:09:41 +0900841
842 if (!cable_attached)
Chanwoo Choi8670b452016-08-16 15:55:34 +0900843 extcon_set_state_sync(info->edev, EXTCON_DOCK,
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900844 cable_attached);
Chanwoo Choia1626292012-12-10 19:07:53 +0900845 break;
846 case MAX77693_MUIC_ADC_RESERVED_ACC_3: /* Dock-Smart */
847 /*
848 * Dock-Smart device with USB/TA cable
849 * - Dock-Desk device include three type of cable which
850 * are HDMI, USB for mouse/keyboard and micro-usb port
Chanwoo Choic2275d22013-08-23 10:21:37 +0900851 * for USB/TA cable. Dock-Smart device need always
852 * exteranl power supply(USB/TA cable through micro-usb
853 * cable). Dock-Smart device support screen output of
854 * target to separate monitor and mouse/keyboard for
855 * desktop mode.
Chanwoo Choia1626292012-12-10 19:07:53 +0900856 *
857 * Features of 'USB/TA cable with Dock-Smart device'
858 * - Support MHL
859 * - Support external output feature of audio
Chanwoo Choic2275d22013-08-23 10:21:37 +0900860 * - Support charging through micro-usb port without
861 * data connection if TA cable is connected to target.
862 * - Support charging and data connection through micro-
863 * usb port if USB cable is connected between target
864 * and host device
Jaewon Kim4c883ab2015-01-29 17:45:24 +0900865 * - Support OTG(On-The-Go) device (Ex: Mouse/Keyboard)
Chanwoo Choia1626292012-12-10 19:07:53 +0900866 */
Chanwoo Choic2275d22013-08-23 10:21:37 +0900867 ret = max77693_muic_set_path(info, info->path_usb,
868 attached);
Chanwoo Choia1626292012-12-10 19:07:53 +0900869 if (ret < 0)
870 return ret;
871
Chanwoo Choi8670b452016-08-16 15:55:34 +0900872 extcon_set_state_sync(info->edev, EXTCON_DOCK,
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900873 attached);
Chanwoo Choi8670b452016-08-16 15:55:34 +0900874 extcon_set_state_sync(info->edev, EXTCON_DISP_MHL,
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900875 attached);
Chanwoo Choia1626292012-12-10 19:07:53 +0900876 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 Choi8670b452016-08-16 15:55:34 +0900908 extcon_set_state_sync(info->edev, EXTCON_USB,
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900909 attached);
Chanwoo Choi8670b452016-08-16 15:55:34 +0900910 extcon_set_state_sync(info->edev, EXTCON_CHG_USB_SDP,
Chanwoo Choi8b45b6a2015-11-09 10:10:15 +0900911 attached);
Chanwoo Choia1626292012-12-10 19:07:53 +0900912 break;
913 case MAX77693_CHARGER_TYPE_DEDICATED_CHG:
914 /* Only TA cable */
Chanwoo Choi8670b452016-08-16 15:55:34 +0900915 extcon_set_state_sync(info->edev, EXTCON_CHG_USB_DCP,
Chanwoo Choi11eecf92015-10-03 14:15:13 +0900916 attached);
Chanwoo Choia1626292012-12-10 19:07:53 +0900917 break;
918 }
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900919 break;
920 case MAX77693_CHARGER_TYPE_DOWNSTREAM_PORT:
Chanwoo Choi8670b452016-08-16 15:55:34 +0900921 extcon_set_state_sync(info->edev, EXTCON_CHG_USB_CDP,
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900922 attached);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900923 break;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900924 case MAX77693_CHARGER_TYPE_APPLE_500MA:
Chanwoo Choi8670b452016-08-16 15:55:34 +0900925 extcon_set_state_sync(info->edev, EXTCON_CHG_USB_SLOW,
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900926 attached);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900927 break;
928 case MAX77693_CHARGER_TYPE_APPLE_1A_2A:
Chanwoo Choi8670b452016-08-16 15:55:34 +0900929 extcon_set_state_sync(info->edev, EXTCON_CHG_USB_FAST,
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900930 attached);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900931 break;
932 case MAX77693_CHARGER_TYPE_DEAD_BATTERY:
933 break;
934 default:
935 dev_err(info->dev,
936 "failed to detect %s accessory (chg_type:0x%x)\n",
937 attached ? "attached" : "detached", chg_type);
Chanwoo Choia1626292012-12-10 19:07:53 +0900938 return -EINVAL;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900939 }
940
Chanwoo Choia1626292012-12-10 19:07:53 +0900941 return 0;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900942}
943
944static void max77693_muic_irq_work(struct work_struct *work)
945{
946 struct max77693_muic_info *info = container_of(work,
947 struct max77693_muic_info, irq_work);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900948 int irq_type = -1;
949 int i, ret = 0;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900950
951 if (!info->edev)
952 return;
953
954 mutex_lock(&info->mutex);
955
Sachin Kamata33411b2013-08-05 14:32:04 +0530956 for (i = 0; i < ARRAY_SIZE(muic_irqs); i++)
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900957 if (info->irq == muic_irqs[i].virq)
958 irq_type = muic_irqs[i].irq;
959
Robert Baldygad0540f92014-05-21 08:52:47 +0200960 ret = regmap_bulk_read(info->max77693->regmap_muic,
961 MAX77693_MUIC_REG_STATUS1, info->status, 2);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900962 if (ret) {
963 dev_err(info->dev, "failed to read MUIC register\n");
964 mutex_unlock(&info->mutex);
965 return;
966 }
967
968 switch (irq_type) {
969 case MAX77693_MUIC_IRQ_INT1_ADC:
970 case MAX77693_MUIC_IRQ_INT1_ADC_LOW:
971 case MAX77693_MUIC_IRQ_INT1_ADC_ERR:
972 case MAX77693_MUIC_IRQ_INT1_ADC1K:
973 /* Handle all of accessory except for
974 type of charger accessory */
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900975 ret = max77693_muic_adc_handler(info);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900976 break;
977 case MAX77693_MUIC_IRQ_INT2_CHGTYP:
978 case MAX77693_MUIC_IRQ_INT2_CHGDETREUN:
979 case MAX77693_MUIC_IRQ_INT2_DCDTMR:
980 case MAX77693_MUIC_IRQ_INT2_DXOVP:
981 case MAX77693_MUIC_IRQ_INT2_VBVOLT:
982 case MAX77693_MUIC_IRQ_INT2_VIDRM:
983 /* Handle charger accessory */
Chanwoo Choi154f757f2012-11-27 09:40:32 +0900984 ret = max77693_muic_chg_handler(info);
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900985 break;
986 case MAX77693_MUIC_IRQ_INT3_EOC:
987 case MAX77693_MUIC_IRQ_INT3_CGMBC:
988 case MAX77693_MUIC_IRQ_INT3_OVP:
989 case MAX77693_MUIC_IRQ_INT3_MBCCHG_ERR:
990 case MAX77693_MUIC_IRQ_INT3_CHG_ENABLED:
991 case MAX77693_MUIC_IRQ_INT3_BAT_DET:
992 break;
993 default:
994 dev_err(info->dev, "muic interrupt: irq %d occurred\n",
995 irq_type);
Chanwoo Choi19d32432013-02-13 18:35:08 +0900996 mutex_unlock(&info->mutex);
997 return;
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900998 }
999
1000 if (ret < 0)
1001 dev_err(info->dev, "failed to handle MUIC interrupt\n");
1002
1003 mutex_unlock(&info->mutex);
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001004}
1005
1006static irqreturn_t max77693_muic_irq_handler(int irq, void *data)
1007{
1008 struct max77693_muic_info *info = data;
1009
1010 info->irq = irq;
1011 schedule_work(&info->irq_work);
1012
1013 return IRQ_HANDLED;
1014}
1015
Krzysztof Kozlowski65948902015-01-05 09:57:27 +01001016static const struct regmap_config max77693_muic_regmap_config = {
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001017 .reg_bits = 8,
1018 .val_bits = 8,
1019};
1020
1021static int max77693_muic_detect_accessory(struct max77693_muic_info *info)
1022{
1023 int ret = 0;
Chanwoo Choi154f757f2012-11-27 09:40:32 +09001024 int adc;
1025 int chg_type;
1026 bool attached;
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001027
1028 mutex_lock(&info->mutex);
1029
1030 /* Read STATUSx register to detect accessory */
Robert Baldygad0540f92014-05-21 08:52:47 +02001031 ret = regmap_bulk_read(info->max77693->regmap_muic,
1032 MAX77693_MUIC_REG_STATUS1, info->status, 2);
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001033 if (ret) {
1034 dev_err(info->dev, "failed to read MUIC register\n");
1035 mutex_unlock(&info->mutex);
Sachin Kamatc2536542013-04-08 09:12:32 +09001036 return ret;
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001037 }
1038
Chanwoo Choi154f757f2012-11-27 09:40:32 +09001039 adc = max77693_muic_get_cable_type(info, MAX77693_CABLE_GROUP_ADC,
1040 &attached);
1041 if (attached && adc != MAX77693_MUIC_ADC_OPEN) {
1042 ret = max77693_muic_adc_handler(info);
Chanwoo Choi19d32432013-02-13 18:35:08 +09001043 if (ret < 0) {
Chanwoo Choi154f757f2012-11-27 09:40:32 +09001044 dev_err(info->dev, "Cannot detect accessory\n");
Chanwoo Choi19d32432013-02-13 18:35:08 +09001045 mutex_unlock(&info->mutex);
1046 return ret;
1047 }
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001048 }
1049
Chanwoo Choi154f757f2012-11-27 09:40:32 +09001050 chg_type = max77693_muic_get_cable_type(info, MAX77693_CABLE_GROUP_CHG,
1051 &attached);
1052 if (attached && chg_type != MAX77693_CHARGER_TYPE_NONE) {
1053 ret = max77693_muic_chg_handler(info);
Chanwoo Choi19d32432013-02-13 18:35:08 +09001054 if (ret < 0) {
Chanwoo Choi154f757f2012-11-27 09:40:32 +09001055 dev_err(info->dev, "Cannot detect charger accessory\n");
Chanwoo Choi19d32432013-02-13 18:35:08 +09001056 mutex_unlock(&info->mutex);
1057 return ret;
1058 }
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001059 }
1060
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001061 mutex_unlock(&info->mutex);
Chanwoo Choi154f757f2012-11-27 09:40:32 +09001062
Chanwoo Choi19d32432013-02-13 18:35:08 +09001063 return 0;
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001064}
1065
Chanwoo Choi297620f2012-12-26 13:10:11 +09001066static void max77693_muic_detect_cable_wq(struct work_struct *work)
1067{
1068 struct max77693_muic_info *info = container_of(to_delayed_work(work),
1069 struct max77693_muic_info, wq_detcable);
1070
1071 max77693_muic_detect_accessory(info);
1072}
1073
Bill Pemberton44f34fd2012-11-19 13:23:21 -05001074static int max77693_muic_probe(struct platform_device *pdev)
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001075{
1076 struct max77693_dev *max77693 = dev_get_drvdata(pdev->dev.parent);
Chanwoo Choif8457d572012-10-08 14:41:49 +09001077 struct max77693_platform_data *pdata = dev_get_platdata(max77693->dev);
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001078 struct max77693_muic_info *info;
Chanwoo Choi0ec83bd2013-03-13 17:38:57 +09001079 struct max77693_reg_data *init_data;
1080 int num_init_data;
Chanwoo Choi297620f2012-12-26 13:10:11 +09001081 int delay_jiffies;
1082 int ret;
1083 int i;
Robert Baldygad0540f92014-05-21 08:52:47 +02001084 unsigned int id;
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001085
Sachin Kamatf4bb5cb2012-11-20 15:46:50 +09001086 info = devm_kzalloc(&pdev->dev, sizeof(struct max77693_muic_info),
1087 GFP_KERNEL);
Jingoo Han0a16ee62014-07-23 10:07:09 +09001088 if (!info)
Sachin Kamatf4bb5cb2012-11-20 15:46:50 +09001089 return -ENOMEM;
Jingoo Han0a16ee62014-07-23 10:07:09 +09001090
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001091 info->dev = &pdev->dev;
1092 info->max77693 = max77693;
Sachin Kamat1967fa02012-11-21 10:04:58 +05301093 if (info->max77693->regmap_muic) {
Chanwoo Choib186b122012-08-21 15:16:23 +09001094 dev_dbg(&pdev->dev, "allocate register map\n");
Sachin Kamat1967fa02012-11-21 10:04:58 +05301095 } else {
Chanwoo Choib186b122012-08-21 15:16:23 +09001096 info->max77693->regmap_muic = devm_regmap_init_i2c(
Krzysztof Kozlowski61b305c2015-07-15 21:59:50 +09001097 info->max77693->i2c_muic,
Chanwoo Choib186b122012-08-21 15:16:23 +09001098 &max77693_muic_regmap_config);
1099 if (IS_ERR(info->max77693->regmap_muic)) {
1100 ret = PTR_ERR(info->max77693->regmap_muic);
1101 dev_err(max77693->dev,
1102 "failed to allocate register map: %d\n", ret);
Sachin Kamat3bf742f2012-11-21 10:04:57 +05301103 return ret;
Chanwoo Choib186b122012-08-21 15:16:23 +09001104 }
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001105 }
Chanwoo Choi39bf3692012-12-03 13:09:41 +09001106
1107 /* Register input device for button of dock device */
Chanwoo Choieff7d742013-02-13 18:35:05 +09001108 info->dock = devm_input_allocate_device(&pdev->dev);
Chanwoo Choi39bf3692012-12-03 13:09:41 +09001109 if (!info->dock) {
1110 dev_err(&pdev->dev, "%s: failed to allocate input\n", __func__);
1111 return -ENOMEM;
1112 }
1113 info->dock->name = "max77693-muic/dock";
1114 info->dock->phys = "max77693-muic/extcon";
1115 info->dock->dev.parent = &pdev->dev;
1116
1117 __set_bit(EV_REP, info->dock->evbit);
1118
1119 input_set_capability(info->dock, EV_KEY, KEY_VOLUMEUP);
1120 input_set_capability(info->dock, EV_KEY, KEY_VOLUMEDOWN);
1121 input_set_capability(info->dock, EV_KEY, KEY_PLAYPAUSE);
1122 input_set_capability(info->dock, EV_KEY, KEY_PREVIOUSSONG);
1123 input_set_capability(info->dock, EV_KEY, KEY_NEXTSONG);
1124
1125 ret = input_register_device(info->dock);
1126 if (ret < 0) {
1127 dev_err(&pdev->dev, "Cannot register input device error(%d)\n",
1128 ret);
1129 return ret;
1130 }
1131
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001132 platform_set_drvdata(pdev, info);
1133 mutex_init(&info->mutex);
1134
1135 INIT_WORK(&info->irq_work, max77693_muic_irq_work);
1136
1137 /* Support irq domain for MAX77693 MUIC device */
1138 for (i = 0; i < ARRAY_SIZE(muic_irqs); i++) {
1139 struct max77693_muic_irq *muic_irq = &muic_irqs[i];
Andrzej Hajdacbc46602015-12-14 12:12:42 +01001140 int virq;
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001141
Robert Baldyga342d6692014-05-21 08:52:48 +02001142 virq = regmap_irq_get_virq(max77693->irq_data_muic,
1143 muic_irq->irq);
Andrzej Hajdacbc46602015-12-14 12:12:42 +01001144 if (virq <= 0)
Krzysztof Kozlowskid7155232014-09-12 15:16:37 +02001145 return -EINVAL;
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001146 muic_irq->virq = virq;
1147
Krzysztof Kozlowskid7155232014-09-12 15:16:37 +02001148 ret = devm_request_threaded_irq(&pdev->dev, virq, NULL,
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001149 max77693_muic_irq_handler,
Chanwoo Choiae3b3212012-11-28 12:39:01 +09001150 IRQF_NO_SUSPEND,
1151 muic_irq->name, info);
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001152 if (ret) {
1153 dev_err(&pdev->dev,
Chanwoo Choi34825e52015-03-07 01:41:36 +09001154 "failed: irq request (IRQ: %d, error :%d)\n",
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001155 muic_irq->irq, ret);
Krzysztof Kozlowskid7155232014-09-12 15:16:37 +02001156 return ret;
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001157 }
1158 }
1159
1160 /* Initialize extcon device */
Chanwoo Choi577bef12014-04-21 20:39:53 +09001161 info->edev = devm_extcon_dev_allocate(&pdev->dev,
1162 max77693_extcon_cable);
1163 if (IS_ERR(info->edev)) {
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001164 dev_err(&pdev->dev, "failed to allocate memory for extcon\n");
Krzysztof Kozlowskid7155232014-09-12 15:16:37 +02001165 return -ENOMEM;
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001166 }
Chanwoo Choi577bef12014-04-21 20:39:53 +09001167
Sangjung Woo10fae112014-04-21 19:10:12 +09001168 ret = devm_extcon_dev_register(&pdev->dev, info->edev);
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001169 if (ret) {
1170 dev_err(&pdev->dev, "failed to register extcon device\n");
Krzysztof Kozlowskid7155232014-09-12 15:16:37 +02001171 return ret;
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001172 }
1173
Chanwoo Choi0ec83bd2013-03-13 17:38:57 +09001174 /* Initialize MUIC register by using platform data or default data */
Krzysztof Kozlowskid5653f22014-04-09 15:20:12 +02001175 if (pdata && pdata->muic_data) {
Chanwoo Choi0ec83bd2013-03-13 17:38:57 +09001176 init_data = pdata->muic_data->init_data;
1177 num_init_data = pdata->muic_data->num_init_data;
1178 } else {
1179 init_data = default_init_data;
1180 num_init_data = ARRAY_SIZE(default_init_data);
1181 }
1182
Sachin Kamata33411b2013-08-05 14:32:04 +05301183 for (i = 0; i < num_init_data; i++) {
Robert Baldygad0540f92014-05-21 08:52:47 +02001184 regmap_write(info->max77693->regmap_muic,
Chanwoo Choi0ec83bd2013-03-13 17:38:57 +09001185 init_data[i].addr,
1186 init_data[i].data);
Chanwoo Choi0ec83bd2013-03-13 17:38:57 +09001187 }
1188
Krzysztof Kozlowskid5653f22014-04-09 15:20:12 +02001189 if (pdata && pdata->muic_data) {
Chanwoo Choic2275d22013-08-23 10:21:37 +09001190 struct max77693_muic_platform_data *muic_pdata
1191 = pdata->muic_data;
Chanwoo Choif8457d572012-10-08 14:41:49 +09001192
Chanwoo Choi190d7cf2013-02-18 10:03:32 +09001193 /*
1194 * Default usb/uart path whether UART/USB or AUX_UART/AUX_USB
1195 * h/w path of COMP2/COMN1 on CONTROL1 register.
1196 */
1197 if (muic_pdata->path_uart)
1198 info->path_uart = muic_pdata->path_uart;
1199 else
Krzysztof Kozlowskicceb4332015-07-15 21:59:52 +09001200 info->path_uart = MAX77693_CONTROL1_SW_UART;
Chanwoo Choif8457d572012-10-08 14:41:49 +09001201
Chanwoo Choi190d7cf2013-02-18 10:03:32 +09001202 if (muic_pdata->path_usb)
1203 info->path_usb = muic_pdata->path_usb;
1204 else
Krzysztof Kozlowskicceb4332015-07-15 21:59:52 +09001205 info->path_usb = MAX77693_CONTROL1_SW_USB;
Chanwoo Choi2b757992012-12-06 21:27:56 +09001206
Chanwoo Choi190d7cf2013-02-18 10:03:32 +09001207 /*
1208 * Default delay time for detecting cable state
1209 * after certain time.
1210 */
1211 if (muic_pdata->detcable_delay_ms)
1212 delay_jiffies =
1213 msecs_to_jiffies(muic_pdata->detcable_delay_ms);
1214 else
1215 delay_jiffies = msecs_to_jiffies(DELAY_MS_DEFAULT);
1216 } else {
Krzysztof Kozlowskicceb4332015-07-15 21:59:52 +09001217 info->path_usb = MAX77693_CONTROL1_SW_USB;
1218 info->path_uart = MAX77693_CONTROL1_SW_UART;
Chanwoo Choi190d7cf2013-02-18 10:03:32 +09001219 delay_jiffies = msecs_to_jiffies(DELAY_MS_DEFAULT);
1220 }
Chanwoo Choi2b757992012-12-06 21:27:56 +09001221
1222 /* Set initial path for UART */
1223 max77693_muic_set_path(info, info->path_uart, true);
1224
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001225 /* Check revision number of MUIC device*/
Robert Baldygad0540f92014-05-21 08:52:47 +02001226 ret = regmap_read(info->max77693->regmap_muic,
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001227 MAX77693_MUIC_REG_ID, &id);
1228 if (ret < 0) {
1229 dev_err(&pdev->dev, "failed to read revision number\n");
Krzysztof Kozlowskid7155232014-09-12 15:16:37 +02001230 return ret;
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001231 }
1232 dev_info(info->dev, "device ID : 0x%x\n", id);
1233
1234 /* Set ADC debounce time */
1235 max77693_muic_set_debounce_time(info, ADC_DEBOUNCE_TIME_25MS);
1236
Chanwoo Choi297620f2012-12-26 13:10:11 +09001237 /*
1238 * Detect accessory after completing the initialization of platform
1239 *
1240 * - Use delayed workqueue to detect cable state and then
1241 * notify cable state to notifiee/platform through uevent.
1242 * After completing the booting of platform, the extcon provider
1243 * driver should notify cable state to upper layer.
1244 */
1245 INIT_DELAYED_WORK(&info->wq_detcable, max77693_muic_detect_cable_wq);
Krzysztof Kozlowskib8629412014-04-09 15:20:13 +02001246 queue_delayed_work(system_power_efficient_wq, &info->wq_detcable,
1247 delay_jiffies);
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001248
1249 return ret;
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001250}
1251
Bill Pemberton93ed0322012-11-19 13:25:49 -05001252static int max77693_muic_remove(struct platform_device *pdev)
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001253{
1254 struct max77693_muic_info *info = platform_get_drvdata(pdev);
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001255
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001256 cancel_work_sync(&info->irq_work);
Chanwoo Choi39bf3692012-12-03 13:09:41 +09001257 input_unregister_device(info->dock);
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001258
1259 return 0;
1260}
1261
1262static struct platform_driver max77693_muic_driver = {
1263 .driver = {
1264 .name = DEV_NAME,
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001265 },
1266 .probe = max77693_muic_probe,
Bill Pemberton5f7e2222012-11-19 13:20:06 -05001267 .remove = max77693_muic_remove,
Chanwoo Choidb1b9032012-07-17 13:28:28 +09001268};
1269
1270module_platform_driver(max77693_muic_driver);
1271
1272MODULE_DESCRIPTION("Maxim MAX77693 Extcon driver");
1273MODULE_AUTHOR("Chanwoo Choi <cw00.choi@samsung.com>");
1274MODULE_LICENSE("GPL");
1275MODULE_ALIAS("platform:extcon-max77693");