blob: b9b48d45a6dc444071556d6d150077f56866146a [file] [log] [blame]
Donggeun Kim99f09be2011-11-24 18:12:18 +09001/*
Chanwoo Choib76668b2012-05-09 12:31:58 +09002 * extcon-max8997.c - MAX8997 extcon driver to support MAX8997 MUIC
Donggeun Kim99f09be2011-11-24 18:12:18 +09003 *
Sachin Kamat2ca36f42012-11-20 15:46:33 +09004 * Copyright (C) 2012 Samsung Electronics
Donggeun Kim99f09be2011-11-24 18:12:18 +09005 * Donggeun Kim <dg77.kim@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.
Donggeun Kim99f09be2011-11-24 18:12:18 +090016 */
17
18#include <linux/kernel.h>
19#include <linux/module.h>
20#include <linux/i2c.h>
21#include <linux/slab.h>
22#include <linux/interrupt.h>
23#include <linux/err.h>
24#include <linux/platform_device.h>
25#include <linux/kobject.h>
26#include <linux/mfd/max8997.h>
27#include <linux/mfd/max8997-private.h>
Chanwoo Choib76668b2012-05-09 12:31:58 +090028#include <linux/extcon.h>
Chanwoo Choidca1a712012-07-02 09:03:00 +090029#include <linux/irqdomain.h>
Chanwoo Choib76668b2012-05-09 12:31:58 +090030
31#define DEV_NAME "max8997-muic"
Chanwoo Choiaf5eb1a2013-02-13 15:10:00 +090032#define DELAY_MS_DEFAULT 20000 /* unit: millisecond */
Donggeun Kim99f09be2011-11-24 18:12:18 +090033
Chanwoo Choi027fcd52013-02-13 08:50:00 +090034enum max8997_muic_adc_debounce_time {
35 ADC_DEBOUNCE_TIME_0_5MS = 0, /* 0.5ms */
36 ADC_DEBOUNCE_TIME_10MS, /* 10ms */
37 ADC_DEBOUNCE_TIME_25MS, /* 25ms */
38 ADC_DEBOUNCE_TIME_38_62MS, /* 38.62ms */
39};
40
Donggeun Kim99f09be2011-11-24 18:12:18 +090041struct max8997_muic_irq {
42 unsigned int irq;
43 const char *name;
Chanwoo Choidca1a712012-07-02 09:03:00 +090044 unsigned int virq;
Donggeun Kim99f09be2011-11-24 18:12:18 +090045};
46
47static struct max8997_muic_irq muic_irqs[] = {
Chanwoo Choif73f6232013-02-13 12:05:42 +090048 { MAX8997_MUICIRQ_ADCError, "muic-ADCERROR" },
49 { MAX8997_MUICIRQ_ADCLow, "muic-ADCLOW" },
50 { MAX8997_MUICIRQ_ADC, "muic-ADC" },
51 { MAX8997_MUICIRQ_VBVolt, "muic-VBVOLT" },
52 { MAX8997_MUICIRQ_DBChg, "muic-DBCHG" },
53 { MAX8997_MUICIRQ_DCDTmr, "muic-DCDTMR" },
54 { MAX8997_MUICIRQ_ChgDetRun, "muic-CHGDETRUN" },
55 { MAX8997_MUICIRQ_ChgTyp, "muic-CHGTYP" },
56 { MAX8997_MUICIRQ_OVP, "muic-OVP" },
57};
58
59/* Define supported cable type */
60enum max8997_muic_acc_type {
61 MAX8997_MUIC_ADC_GROUND = 0x0,
62 MAX8997_MUIC_ADC_MHL, /* MHL*/
63 MAX8997_MUIC_ADC_REMOTE_S1_BUTTON,
64 MAX8997_MUIC_ADC_REMOTE_S2_BUTTON,
65 MAX8997_MUIC_ADC_REMOTE_S3_BUTTON,
66 MAX8997_MUIC_ADC_REMOTE_S4_BUTTON,
67 MAX8997_MUIC_ADC_REMOTE_S5_BUTTON,
68 MAX8997_MUIC_ADC_REMOTE_S6_BUTTON,
69 MAX8997_MUIC_ADC_REMOTE_S7_BUTTON,
70 MAX8997_MUIC_ADC_REMOTE_S8_BUTTON,
71 MAX8997_MUIC_ADC_REMOTE_S9_BUTTON,
72 MAX8997_MUIC_ADC_REMOTE_S10_BUTTON,
73 MAX8997_MUIC_ADC_REMOTE_S11_BUTTON,
74 MAX8997_MUIC_ADC_REMOTE_S12_BUTTON,
75 MAX8997_MUIC_ADC_RESERVED_ACC_1,
76 MAX8997_MUIC_ADC_RESERVED_ACC_2,
77 MAX8997_MUIC_ADC_RESERVED_ACC_3,
78 MAX8997_MUIC_ADC_RESERVED_ACC_4,
79 MAX8997_MUIC_ADC_RESERVED_ACC_5,
80 MAX8997_MUIC_ADC_CEA936_AUDIO,
81 MAX8997_MUIC_ADC_PHONE_POWERED_DEV,
82 MAX8997_MUIC_ADC_TTY_CONVERTER,
83 MAX8997_MUIC_ADC_UART_CABLE,
84 MAX8997_MUIC_ADC_CEA936A_TYPE1_CHG,
85 MAX8997_MUIC_ADC_FACTORY_MODE_USB_OFF, /* JIG-USB-OFF */
86 MAX8997_MUIC_ADC_FACTORY_MODE_USB_ON, /* JIG-USB-ON */
87 MAX8997_MUIC_ADC_AV_CABLE_NOLOAD, /* DESKDOCK */
88 MAX8997_MUIC_ADC_CEA936A_TYPE2_CHG,
89 MAX8997_MUIC_ADC_FACTORY_MODE_UART_OFF, /* JIG-UART */
90 MAX8997_MUIC_ADC_FACTORY_MODE_UART_ON, /* CARDOCK */
91 MAX8997_MUIC_ADC_AUDIO_MODE_REMOTE,
92 MAX8997_MUIC_ADC_OPEN, /* OPEN */
93};
94
95enum max8997_muic_cable_group {
96 MAX8997_CABLE_GROUP_ADC = 0,
97 MAX8997_CABLE_GROUP_ADC_GND,
98 MAX8997_CABLE_GROUP_CHG,
99 MAX8997_CABLE_GROUP_VBVOLT,
100};
101
102enum max8997_muic_usb_type {
103 MAX8997_USB_HOST,
104 MAX8997_USB_DEVICE,
105};
106
107enum max8997_muic_charger_type {
108 MAX8997_CHARGER_TYPE_NONE = 0,
109 MAX8997_CHARGER_TYPE_USB,
110 MAX8997_CHARGER_TYPE_DOWNSTREAM_PORT,
111 MAX8997_CHARGER_TYPE_DEDICATED_CHG,
112 MAX8997_CHARGER_TYPE_500MA,
113 MAX8997_CHARGER_TYPE_1A,
114 MAX8997_CHARGER_TYPE_DEAD_BATTERY = 7,
Donggeun Kim99f09be2011-11-24 18:12:18 +0900115};
116
117struct max8997_muic_info {
118 struct device *dev;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900119 struct i2c_client *muic;
Chanwoo Choif73f6232013-02-13 12:05:42 +0900120 struct extcon_dev *edev;
121 int prev_cable_type;
122 int prev_chg_type;
123 u8 status[2];
Donggeun Kim99f09be2011-11-24 18:12:18 +0900124
125 int irq;
126 struct work_struct irq_work;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900127 struct mutex mutex;
Chanwoo Choib76668b2012-05-09 12:31:58 +0900128
Chanwoo Choif73f6232013-02-13 12:05:42 +0900129 struct max8997_muic_platform_data *muic_pdata;
130 enum max8997_muic_charger_type pre_charger_type;
Chanwoo Choi685dc9a2013-02-13 15:04:15 +0900131
132 /*
Chanwoo Choiaf5eb1a2013-02-13 15:10:00 +0900133 * Use delayed workqueue to detect cable state and then
134 * notify cable state to notifiee/platform through uevent.
135 * After completing the booting of platform, the extcon provider
136 * driver should notify cable state to upper layer.
137 */
138 struct delayed_work wq_detcable;
139
140 /*
Chanwoo Choi685dc9a2013-02-13 15:04:15 +0900141 * Default usb/uart path whether UART/USB or AUX_UART/AUX_USB
142 * h/w path of COMP2/COMN1 on CONTROL1 register.
143 */
144 int path_usb;
145 int path_uart;
Chanwoo Choib76668b2012-05-09 12:31:58 +0900146};
147
Chanwoo Choi73b6ecd2015-06-12 11:10:06 +0900148static const unsigned int max8997_extcon_cable[] = {
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900149 EXTCON_USB,
150 EXTCON_USB_HOST,
Chanwoo Choi8b45b6a2015-11-09 10:10:15 +0900151 EXTCON_CHG_USB_SDP,
Chanwoo Choi11eecf92015-10-03 14:15:13 +0900152 EXTCON_CHG_USB_DCP,
153 EXTCON_CHG_USB_FAST,
154 EXTCON_CHG_USB_SLOW,
155 EXTCON_CHG_USB_CDP,
156 EXTCON_DISP_MHL,
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900157 EXTCON_DOCK,
158 EXTCON_JIG,
159 EXTCON_NONE,
Donggeun Kim99f09be2011-11-24 18:12:18 +0900160};
161
Chanwoo Choi07c70502013-02-13 08:42:37 +0900162/*
Chanwoo Choi027fcd52013-02-13 08:50:00 +0900163 * max8997_muic_set_debounce_time - Set the debounce time of ADC
164 * @info: the instance including private data of max8997 MUIC
165 * @time: the debounce time of ADC
166 */
167static int max8997_muic_set_debounce_time(struct max8997_muic_info *info,
168 enum max8997_muic_adc_debounce_time time)
169{
170 int ret;
171
172 switch (time) {
173 case ADC_DEBOUNCE_TIME_0_5MS:
174 case ADC_DEBOUNCE_TIME_10MS:
175 case ADC_DEBOUNCE_TIME_25MS:
176 case ADC_DEBOUNCE_TIME_38_62MS:
177 ret = max8997_update_reg(info->muic,
178 MAX8997_MUIC_REG_CONTROL3,
179 time << CONTROL3_ADCDBSET_SHIFT,
180 CONTROL3_ADCDBSET_MASK);
181 if (ret) {
182 dev_err(info->dev, "failed to set ADC debounce time\n");
Sachin Kamat3ad9e862013-04-08 09:13:18 +0900183 return ret;
Chanwoo Choi027fcd52013-02-13 08:50:00 +0900184 }
185 break;
186 default:
187 dev_err(info->dev, "invalid ADC debounce time\n");
188 return -EINVAL;
189 }
190
191 return 0;
192};
193
194/*
Chanwoo Choi07c70502013-02-13 08:42:37 +0900195 * max8997_muic_set_path - Set hardware line according to attached cable
196 * @info: the instance including private data of max8997 MUIC
197 * @value: the path according to attached cable
198 * @attached: the state of cable (true:attached, false:detached)
199 *
200 * The max8997 MUIC device share outside H/W line among a varity of cables,
201 * so this function set internal path of H/W line according to the type of
202 * attached cable.
203 */
204static int max8997_muic_set_path(struct max8997_muic_info *info,
205 u8 val, bool attached)
206{
207 int ret = 0;
208 u8 ctrl1, ctrl2 = 0;
209
210 if (attached)
211 ctrl1 = val;
212 else
213 ctrl1 = CONTROL1_SW_OPEN;
214
215 ret = max8997_update_reg(info->muic,
216 MAX8997_MUIC_REG_CONTROL1, ctrl1, COMP_SW_MASK);
217 if (ret < 0) {
218 dev_err(info->dev, "failed to update MUIC register\n");
Sachin Kamat3ad9e862013-04-08 09:13:18 +0900219 return ret;
Chanwoo Choi07c70502013-02-13 08:42:37 +0900220 }
221
222 if (attached)
223 ctrl2 |= CONTROL2_CPEN_MASK; /* LowPwr=0, CPEn=1 */
224 else
225 ctrl2 |= CONTROL2_LOWPWR_MASK; /* LowPwr=1, CPEn=0 */
226
227 ret = max8997_update_reg(info->muic,
228 MAX8997_MUIC_REG_CONTROL2, ctrl2,
229 CONTROL2_LOWPWR_MASK | CONTROL2_CPEN_MASK);
230 if (ret < 0) {
231 dev_err(info->dev, "failed to update MUIC register\n");
Sachin Kamat3ad9e862013-04-08 09:13:18 +0900232 return ret;
Chanwoo Choi07c70502013-02-13 08:42:37 +0900233 }
234
235 dev_info(info->dev,
236 "CONTROL1 : 0x%02x, CONTROL2 : 0x%02x, state : %s\n",
237 ctrl1, ctrl2, attached ? "attached" : "detached");
238
239 return 0;
240}
241
Chanwoo Choif73f6232013-02-13 12:05:42 +0900242/*
243 * max8997_muic_get_cable_type - Return cable type and check cable state
244 * @info: the instance including private data of max8997 MUIC
245 * @group: the path according to attached cable
246 * @attached: store cable state and return
247 *
248 * This function check the cable state either attached or detached,
249 * and then divide precise type of cable according to cable group.
250 * - MAX8997_CABLE_GROUP_ADC
251 * - MAX8997_CABLE_GROUP_CHG
252 */
253static int max8997_muic_get_cable_type(struct max8997_muic_info *info,
254 enum max8997_muic_cable_group group, bool *attached)
255{
256 int cable_type = 0;
257 int adc;
258 int chg_type;
259
260 switch (group) {
261 case MAX8997_CABLE_GROUP_ADC:
262 /*
263 * Read ADC value to check cable type and decide cable state
264 * according to cable type
265 */
266 adc = info->status[0] & STATUS1_ADC_MASK;
267 adc >>= STATUS1_ADC_SHIFT;
268
269 /*
270 * Check current cable state/cable type and store cable type
271 * (info->prev_cable_type) for handling cable when cable is
272 * detached.
273 */
274 if (adc == MAX8997_MUIC_ADC_OPEN) {
275 *attached = false;
276
277 cable_type = info->prev_cable_type;
278 info->prev_cable_type = MAX8997_MUIC_ADC_OPEN;
279 } else {
280 *attached = true;
281
282 cable_type = info->prev_cable_type = adc;
283 }
284 break;
285 case MAX8997_CABLE_GROUP_CHG:
286 /*
287 * Read charger type to check cable type and decide cable state
288 * according to type of charger cable.
289 */
290 chg_type = info->status[1] & STATUS2_CHGTYP_MASK;
291 chg_type >>= STATUS2_CHGTYP_SHIFT;
292
293 if (chg_type == MAX8997_CHARGER_TYPE_NONE) {
294 *attached = false;
295
296 cable_type = info->prev_chg_type;
297 info->prev_chg_type = MAX8997_CHARGER_TYPE_NONE;
298 } else {
299 *attached = true;
300
301 /*
302 * Check current cable state/cable type and store cable
303 * type(info->prev_chg_type) for handling cable when
304 * charger cable is detached.
305 */
306 cable_type = info->prev_chg_type = chg_type;
307 }
308
309 break;
310 default:
311 dev_err(info->dev, "Unknown cable group (%d)\n", group);
312 cable_type = -EINVAL;
313 break;
314 }
315
316 return cable_type;
317}
318
Donggeun Kim99f09be2011-11-24 18:12:18 +0900319static int max8997_muic_handle_usb(struct max8997_muic_info *info,
320 enum max8997_muic_usb_type usb_type, bool attached)
321{
Donggeun Kim99f09be2011-11-24 18:12:18 +0900322 int ret = 0;
323
Marek Szyprowskief750042018-11-13 16:38:47 +0100324 ret = max8997_muic_set_path(info, info->path_usb, attached);
325 if (ret < 0) {
326 dev_err(info->dev, "failed to update muic register\n");
327 return ret;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900328 }
329
Chanwoo Choib76668b2012-05-09 12:31:58 +0900330 switch (usb_type) {
331 case MAX8997_USB_HOST:
Chanwoo Choi8670b452016-08-16 15:55:34 +0900332 extcon_set_state_sync(info->edev, EXTCON_USB_HOST, attached);
Chanwoo Choib76668b2012-05-09 12:31:58 +0900333 break;
334 case MAX8997_USB_DEVICE:
Chanwoo Choi8670b452016-08-16 15:55:34 +0900335 extcon_set_state_sync(info->edev, EXTCON_USB, attached);
336 extcon_set_state_sync(info->edev, EXTCON_CHG_USB_SDP,
Chanwoo Choi8b45b6a2015-11-09 10:10:15 +0900337 attached);
Chanwoo Choib76668b2012-05-09 12:31:58 +0900338 break;
339 default:
Chanwoo Choif73f6232013-02-13 12:05:42 +0900340 dev_err(info->dev, "failed to detect %s usb cable\n",
341 attached ? "attached" : "detached");
342 return -EINVAL;
Chanwoo Choib76668b2012-05-09 12:31:58 +0900343 }
344
Chanwoo Choif73f6232013-02-13 12:05:42 +0900345 return 0;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900346}
347
Donggeun Kim99f09be2011-11-24 18:12:18 +0900348static int max8997_muic_handle_dock(struct max8997_muic_info *info,
Chanwoo Choif73f6232013-02-13 12:05:42 +0900349 int cable_type, bool attached)
Donggeun Kim99f09be2011-11-24 18:12:18 +0900350{
Donggeun Kim99f09be2011-11-24 18:12:18 +0900351 int ret = 0;
352
Chanwoo Choi07c70502013-02-13 08:42:37 +0900353 ret = max8997_muic_set_path(info, CONTROL1_SW_AUDIO, attached);
Donggeun Kim99f09be2011-11-24 18:12:18 +0900354 if (ret) {
355 dev_err(info->dev, "failed to update muic register\n");
Chanwoo Choif73f6232013-02-13 12:05:42 +0900356 return ret;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900357 }
358
Chanwoo Choif73f6232013-02-13 12:05:42 +0900359 switch (cable_type) {
360 case MAX8997_MUIC_ADC_AV_CABLE_NOLOAD:
Chanwoo Choif73f6232013-02-13 12:05:42 +0900361 case MAX8997_MUIC_ADC_FACTORY_MODE_UART_ON:
Chanwoo Choi8670b452016-08-16 15:55:34 +0900362 extcon_set_state_sync(info->edev, EXTCON_DOCK, attached);
Donggeun Kim99f09be2011-11-24 18:12:18 +0900363 break;
364 default:
Chanwoo Choif73f6232013-02-13 12:05:42 +0900365 dev_err(info->dev, "failed to detect %s dock device\n",
366 attached ? "attached" : "detached");
367 return -EINVAL;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900368 }
Chanwoo Choif73f6232013-02-13 12:05:42 +0900369
370 return 0;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900371}
372
373static int max8997_muic_handle_jig_uart(struct max8997_muic_info *info,
374 bool attached)
375{
Donggeun Kim99f09be2011-11-24 18:12:18 +0900376 int ret = 0;
377
378 /* switch to UART */
Chanwoo Choi685dc9a2013-02-13 15:04:15 +0900379 ret = max8997_muic_set_path(info, info->path_uart, attached);
Donggeun Kim99f09be2011-11-24 18:12:18 +0900380 if (ret) {
381 dev_err(info->dev, "failed to update muic register\n");
Sachin Kamat3ad9e862013-04-08 09:13:18 +0900382 return ret;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900383 }
384
Chanwoo Choi8670b452016-08-16 15:55:34 +0900385 extcon_set_state_sync(info->edev, EXTCON_JIG, attached);
Chanwoo Choif73f6232013-02-13 12:05:42 +0900386
387 return 0;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900388}
389
Chanwoo Choif73f6232013-02-13 12:05:42 +0900390static int max8997_muic_adc_handler(struct max8997_muic_info *info)
Donggeun Kim99f09be2011-11-24 18:12:18 +0900391{
Chanwoo Choif73f6232013-02-13 12:05:42 +0900392 int cable_type;
393 bool attached;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900394 int ret = 0;
395
Chanwoo Choif73f6232013-02-13 12:05:42 +0900396 /* Check cable state which is either detached or attached */
397 cable_type = max8997_muic_get_cable_type(info,
398 MAX8997_CABLE_GROUP_ADC, &attached);
399
400 switch (cable_type) {
401 case MAX8997_MUIC_ADC_GROUND:
402 ret = max8997_muic_handle_usb(info, MAX8997_USB_HOST, attached);
403 if (ret < 0)
404 return ret;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900405 break;
Chanwoo Choif73f6232013-02-13 12:05:42 +0900406 case MAX8997_MUIC_ADC_MHL:
Chanwoo Choi8670b452016-08-16 15:55:34 +0900407 extcon_set_state_sync(info->edev, EXTCON_DISP_MHL, attached);
Donggeun Kim99f09be2011-11-24 18:12:18 +0900408 break;
Chanwoo Choif73f6232013-02-13 12:05:42 +0900409 case MAX8997_MUIC_ADC_FACTORY_MODE_USB_OFF:
410 case MAX8997_MUIC_ADC_FACTORY_MODE_USB_ON:
Chanwoo Choic2275d22013-08-23 10:21:37 +0900411 ret = max8997_muic_handle_usb(info,
412 MAX8997_USB_DEVICE, attached);
Chanwoo Choif73f6232013-02-13 12:05:42 +0900413 if (ret < 0)
414 return ret;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900415 break;
Chanwoo Choif73f6232013-02-13 12:05:42 +0900416 case MAX8997_MUIC_ADC_AV_CABLE_NOLOAD:
417 case MAX8997_MUIC_ADC_FACTORY_MODE_UART_ON:
418 ret = max8997_muic_handle_dock(info, cable_type, attached);
419 if (ret < 0)
420 return ret;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900421 break;
Chanwoo Choif73f6232013-02-13 12:05:42 +0900422 case MAX8997_MUIC_ADC_FACTORY_MODE_UART_OFF:
423 ret = max8997_muic_handle_jig_uart(info, attached);
Donggeun Kim99f09be2011-11-24 18:12:18 +0900424 break;
Chanwoo Choif73f6232013-02-13 12:05:42 +0900425 case MAX8997_MUIC_ADC_REMOTE_S1_BUTTON:
426 case MAX8997_MUIC_ADC_REMOTE_S2_BUTTON:
427 case MAX8997_MUIC_ADC_REMOTE_S3_BUTTON:
428 case MAX8997_MUIC_ADC_REMOTE_S4_BUTTON:
429 case MAX8997_MUIC_ADC_REMOTE_S5_BUTTON:
430 case MAX8997_MUIC_ADC_REMOTE_S6_BUTTON:
431 case MAX8997_MUIC_ADC_REMOTE_S7_BUTTON:
432 case MAX8997_MUIC_ADC_REMOTE_S8_BUTTON:
433 case MAX8997_MUIC_ADC_REMOTE_S9_BUTTON:
434 case MAX8997_MUIC_ADC_REMOTE_S10_BUTTON:
435 case MAX8997_MUIC_ADC_REMOTE_S11_BUTTON:
436 case MAX8997_MUIC_ADC_REMOTE_S12_BUTTON:
437 case MAX8997_MUIC_ADC_RESERVED_ACC_1:
438 case MAX8997_MUIC_ADC_RESERVED_ACC_2:
439 case MAX8997_MUIC_ADC_RESERVED_ACC_3:
440 case MAX8997_MUIC_ADC_RESERVED_ACC_4:
441 case MAX8997_MUIC_ADC_RESERVED_ACC_5:
442 case MAX8997_MUIC_ADC_CEA936_AUDIO:
443 case MAX8997_MUIC_ADC_PHONE_POWERED_DEV:
444 case MAX8997_MUIC_ADC_TTY_CONVERTER:
445 case MAX8997_MUIC_ADC_UART_CABLE:
446 case MAX8997_MUIC_ADC_CEA936A_TYPE1_CHG:
447 case MAX8997_MUIC_ADC_CEA936A_TYPE2_CHG:
448 case MAX8997_MUIC_ADC_AUDIO_MODE_REMOTE:
449 /*
450 * This cable isn't used in general case if it is specially
451 * needed to detect additional cable, should implement
452 * proper operation when this cable is attached/detached.
453 */
454 dev_info(info->dev,
455 "cable is %s but it isn't used (type:0x%x)\n",
456 attached ? "attached" : "detached", cable_type);
457 return -EAGAIN;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900458 default:
Chanwoo Choif73f6232013-02-13 12:05:42 +0900459 dev_err(info->dev,
460 "failed to detect %s unknown cable (type:0x%x)\n",
461 attached ? "attached" : "detached", cable_type);
Devendra Naga3cafbd42012-08-31 14:00:19 +0530462 return -EINVAL;
Chanwoo Choib76668b2012-05-09 12:31:58 +0900463 }
Donggeun Kim99f09be2011-11-24 18:12:18 +0900464
Devendra Naga3cafbd42012-08-31 14:00:19 +0530465 return 0;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900466}
467
Chanwoo Choif73f6232013-02-13 12:05:42 +0900468static int max8997_muic_chg_handler(struct max8997_muic_info *info)
Donggeun Kim99f09be2011-11-24 18:12:18 +0900469{
Chanwoo Choif73f6232013-02-13 12:05:42 +0900470 int chg_type;
471 bool attached;
472 int adc;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900473
Chanwoo Choif73f6232013-02-13 12:05:42 +0900474 chg_type = max8997_muic_get_cable_type(info,
475 MAX8997_CABLE_GROUP_CHG, &attached);
Donggeun Kim99f09be2011-11-24 18:12:18 +0900476
Chanwoo Choif73f6232013-02-13 12:05:42 +0900477 switch (chg_type) {
Donggeun Kim99f09be2011-11-24 18:12:18 +0900478 case MAX8997_CHARGER_TYPE_NONE:
Donggeun Kim99f09be2011-11-24 18:12:18 +0900479 break;
480 case MAX8997_CHARGER_TYPE_USB:
Chanwoo Choif73f6232013-02-13 12:05:42 +0900481 adc = info->status[0] & STATUS1_ADC_MASK;
482 adc >>= STATUS1_ADC_SHIFT;
483
484 if ((adc & STATUS1_ADC_MASK) == MAX8997_MUIC_ADC_OPEN) {
Donggeun Kim99f09be2011-11-24 18:12:18 +0900485 max8997_muic_handle_usb(info,
Chanwoo Choif73f6232013-02-13 12:05:42 +0900486 MAX8997_USB_DEVICE, attached);
Donggeun Kim99f09be2011-11-24 18:12:18 +0900487 }
Donggeun Kim99f09be2011-11-24 18:12:18 +0900488 break;
489 case MAX8997_CHARGER_TYPE_DOWNSTREAM_PORT:
Chanwoo Choi8670b452016-08-16 15:55:34 +0900490 extcon_set_state_sync(info->edev, EXTCON_CHG_USB_CDP,
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900491 attached);
Chanwoo Choib76668b2012-05-09 12:31:58 +0900492 break;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900493 case MAX8997_CHARGER_TYPE_DEDICATED_CHG:
Chanwoo Choi8670b452016-08-16 15:55:34 +0900494 extcon_set_state_sync(info->edev, EXTCON_CHG_USB_DCP,
Chanwoo Choi11eecf92015-10-03 14:15:13 +0900495 attached);
Chanwoo Choib76668b2012-05-09 12:31:58 +0900496 break;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900497 case MAX8997_CHARGER_TYPE_500MA:
Chanwoo Choi8670b452016-08-16 15:55:34 +0900498 extcon_set_state_sync(info->edev, EXTCON_CHG_USB_SLOW,
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900499 attached);
Chanwoo Choib76668b2012-05-09 12:31:58 +0900500 break;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900501 case MAX8997_CHARGER_TYPE_1A:
Chanwoo Choi8670b452016-08-16 15:55:34 +0900502 extcon_set_state_sync(info->edev, EXTCON_CHG_USB_FAST,
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900503 attached);
Donggeun Kim99f09be2011-11-24 18:12:18 +0900504 break;
505 default:
Chanwoo Choif73f6232013-02-13 12:05:42 +0900506 dev_err(info->dev,
507 "failed to detect %s unknown chg cable (type:0x%x)\n",
508 attached ? "attached" : "detached", chg_type);
509 return -EINVAL;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900510 }
511
Chanwoo Choif73f6232013-02-13 12:05:42 +0900512 return 0;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900513}
514
515static void max8997_muic_irq_work(struct work_struct *work)
516{
517 struct max8997_muic_info *info = container_of(work,
518 struct max8997_muic_info, irq_work);
Chanwoo Choidca1a712012-07-02 09:03:00 +0900519 int irq_type = 0;
520 int i, ret;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900521
Chanwoo Choif73f6232013-02-13 12:05:42 +0900522 if (!info->edev)
523 return;
524
Donggeun Kim99f09be2011-11-24 18:12:18 +0900525 mutex_lock(&info->mutex);
526
Sachin Kamatad07d8b2013-08-05 14:32:03 +0530527 for (i = 0; i < ARRAY_SIZE(muic_irqs); i++)
Chanwoo Choif73f6232013-02-13 12:05:42 +0900528 if (info->irq == muic_irqs[i].virq)
529 irq_type = muic_irqs[i].irq;
530
Donggeun Kim99f09be2011-11-24 18:12:18 +0900531 ret = max8997_bulk_read(info->muic, MAX8997_MUIC_REG_STATUS1,
Chanwoo Choif73f6232013-02-13 12:05:42 +0900532 2, info->status);
Donggeun Kim99f09be2011-11-24 18:12:18 +0900533 if (ret) {
534 dev_err(info->dev, "failed to read muic register\n");
535 mutex_unlock(&info->mutex);
536 return;
537 }
538
Donggeun Kim99f09be2011-11-24 18:12:18 +0900539 switch (irq_type) {
Chanwoo Choif73f6232013-02-13 12:05:42 +0900540 case MAX8997_MUICIRQ_ADCError:
541 case MAX8997_MUICIRQ_ADCLow:
Donggeun Kim99f09be2011-11-24 18:12:18 +0900542 case MAX8997_MUICIRQ_ADC:
Chanwoo Choif73f6232013-02-13 12:05:42 +0900543 /* Handle all of cable except for charger cable */
544 ret = max8997_muic_adc_handler(info);
Donggeun Kim99f09be2011-11-24 18:12:18 +0900545 break;
Chanwoo Choif73f6232013-02-13 12:05:42 +0900546 case MAX8997_MUICIRQ_VBVolt:
547 case MAX8997_MUICIRQ_DBChg:
548 case MAX8997_MUICIRQ_DCDTmr:
549 case MAX8997_MUICIRQ_ChgDetRun:
Donggeun Kim99f09be2011-11-24 18:12:18 +0900550 case MAX8997_MUICIRQ_ChgTyp:
Chanwoo Choif73f6232013-02-13 12:05:42 +0900551 /* Handle charger cable */
552 ret = max8997_muic_chg_handler(info);
553 break;
554 case MAX8997_MUICIRQ_OVP:
Donggeun Kim99f09be2011-11-24 18:12:18 +0900555 break;
556 default:
Chanwoo Choib76668b2012-05-09 12:31:58 +0900557 dev_info(info->dev, "misc interrupt: irq %d occurred\n",
558 irq_type);
Chanwoo Choif73f6232013-02-13 12:05:42 +0900559 mutex_unlock(&info->mutex);
560 return;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900561 }
562
Chanwoo Choif73f6232013-02-13 12:05:42 +0900563 if (ret < 0)
564 dev_err(info->dev, "failed to handle MUIC interrupt\n");
565
Donggeun Kim99f09be2011-11-24 18:12:18 +0900566 mutex_unlock(&info->mutex);
Donggeun Kim99f09be2011-11-24 18:12:18 +0900567}
568
569static irqreturn_t max8997_muic_irq_handler(int irq, void *data)
570{
571 struct max8997_muic_info *info = data;
572
573 dev_dbg(info->dev, "irq:%d\n", irq);
574 info->irq = irq;
575
576 schedule_work(&info->irq_work);
577
578 return IRQ_HANDLED;
579}
580
Chanwoo Choif73f6232013-02-13 12:05:42 +0900581static int max8997_muic_detect_dev(struct max8997_muic_info *info)
Donggeun Kim99f09be2011-11-24 18:12:18 +0900582{
Chanwoo Choif73f6232013-02-13 12:05:42 +0900583 int ret = 0;
584 int adc;
585 int chg_type;
586 bool attached;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900587
Chanwoo Choif73f6232013-02-13 12:05:42 +0900588 mutex_lock(&info->mutex);
589
590 /* Read STATUSx register to detect accessory */
591 ret = max8997_bulk_read(info->muic,
592 MAX8997_MUIC_REG_STATUS1, 2, info->status);
Donggeun Kim99f09be2011-11-24 18:12:18 +0900593 if (ret) {
Chanwoo Choif73f6232013-02-13 12:05:42 +0900594 dev_err(info->dev, "failed to read MUIC register\n");
595 mutex_unlock(&info->mutex);
Sachin Kamat3ad9e862013-04-08 09:13:18 +0900596 return ret;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900597 }
598
Chanwoo Choif73f6232013-02-13 12:05:42 +0900599 adc = max8997_muic_get_cable_type(info, MAX8997_CABLE_GROUP_ADC,
600 &attached);
601 if (attached && adc != MAX8997_MUIC_ADC_OPEN) {
602 ret = max8997_muic_adc_handler(info);
603 if (ret < 0) {
604 dev_err(info->dev, "Cannot detect ADC cable\n");
605 mutex_unlock(&info->mutex);
606 return ret;
607 }
608 }
Donggeun Kim99f09be2011-11-24 18:12:18 +0900609
Chanwoo Choif73f6232013-02-13 12:05:42 +0900610 chg_type = max8997_muic_get_cable_type(info, MAX8997_CABLE_GROUP_CHG,
611 &attached);
612 if (attached && chg_type != MAX8997_CHARGER_TYPE_NONE) {
613 ret = max8997_muic_chg_handler(info);
614 if (ret < 0) {
615 dev_err(info->dev, "Cannot detect charger cable\n");
616 mutex_unlock(&info->mutex);
617 return ret;
618 }
619 }
Donggeun Kim99f09be2011-11-24 18:12:18 +0900620
Chanwoo Choif73f6232013-02-13 12:05:42 +0900621 mutex_unlock(&info->mutex);
Donggeun Kim99f09be2011-11-24 18:12:18 +0900622
Chanwoo Choif73f6232013-02-13 12:05:42 +0900623 return 0;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900624}
625
Chanwoo Choiaf5eb1a2013-02-13 15:10:00 +0900626static void max8997_muic_detect_cable_wq(struct work_struct *work)
627{
628 struct max8997_muic_info *info = container_of(to_delayed_work(work),
629 struct max8997_muic_info, wq_detcable);
630 int ret;
631
632 ret = max8997_muic_detect_dev(info);
633 if (ret < 0)
Jingoo Han6ed28102013-04-08 09:11:06 +0900634 dev_err(info->dev, "failed to detect cable type\n");
Chanwoo Choiaf5eb1a2013-02-13 15:10:00 +0900635}
636
Bill Pemberton44f34fd2012-11-19 13:23:21 -0500637static int max8997_muic_probe(struct platform_device *pdev)
Donggeun Kim99f09be2011-11-24 18:12:18 +0900638{
Chanwoo Choib76668b2012-05-09 12:31:58 +0900639 struct max8997_dev *max8997 = dev_get_drvdata(pdev->dev.parent);
640 struct max8997_platform_data *pdata = dev_get_platdata(max8997->dev);
Donggeun Kim99f09be2011-11-24 18:12:18 +0900641 struct max8997_muic_info *info;
Chanwoo Choiaf5eb1a2013-02-13 15:10:00 +0900642 int delay_jiffies;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900643 int ret, i;
644
Sachin Kamat0b672e92012-11-20 15:46:47 +0900645 info = devm_kzalloc(&pdev->dev, sizeof(struct max8997_muic_info),
646 GFP_KERNEL);
Jingoo Han0a16ee62014-07-23 10:07:09 +0900647 if (!info)
Sachin Kamat0b672e92012-11-20 15:46:47 +0900648 return -ENOMEM;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900649
Donggeun Kim99f09be2011-11-24 18:12:18 +0900650 info->dev = &pdev->dev;
Chanwoo Choib76668b2012-05-09 12:31:58 +0900651 info->muic = max8997->muic;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900652
653 platform_set_drvdata(pdev, info);
654 mutex_init(&info->mutex);
655
Donggeun Kim99f09be2011-11-24 18:12:18 +0900656 INIT_WORK(&info->irq_work, max8997_muic_irq_work);
657
658 for (i = 0; i < ARRAY_SIZE(muic_irqs); i++) {
659 struct max8997_muic_irq *muic_irq = &muic_irqs[i];
Sachin Kamat68c92742012-11-20 15:46:41 +0900660 unsigned int virq = 0;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900661
Chanwoo Choidca1a712012-07-02 09:03:00 +0900662 virq = irq_create_mapping(max8997->irq_domain, muic_irq->irq);
Sachin Kamat68c92742012-11-20 15:46:41 +0900663 if (!virq) {
664 ret = -EINVAL;
Chanwoo Choidca1a712012-07-02 09:03:00 +0900665 goto err_irq;
Sachin Kamat68c92742012-11-20 15:46:41 +0900666 }
Chanwoo Choidca1a712012-07-02 09:03:00 +0900667 muic_irq->virq = virq;
668
Chanwoo Choiae3b3212012-11-28 12:39:01 +0900669 ret = request_threaded_irq(virq, NULL,
670 max8997_muic_irq_handler,
671 IRQF_NO_SUSPEND,
672 muic_irq->name, info);
Donggeun Kim99f09be2011-11-24 18:12:18 +0900673 if (ret) {
674 dev_err(&pdev->dev,
Chanwoo Choi34825e52015-03-07 01:41:36 +0900675 "failed: irq request (IRQ: %d, error :%d)\n",
Donggeun Kim99f09be2011-11-24 18:12:18 +0900676 muic_irq->irq, ret);
Donggeun Kim99f09be2011-11-24 18:12:18 +0900677 goto err_irq;
678 }
679 }
680
Chanwoo Choib76668b2012-05-09 12:31:58 +0900681 /* External connector */
Chanwoo Choi22f9afb2014-04-21 20:37:51 +0900682 info->edev = devm_extcon_dev_allocate(&pdev->dev, max8997_extcon_cable);
683 if (IS_ERR(info->edev)) {
Chanwoo Choib76668b2012-05-09 12:31:58 +0900684 dev_err(&pdev->dev, "failed to allocate memory for extcon\n");
685 ret = -ENOMEM;
686 goto err_irq;
687 }
Chanwoo Choi22f9afb2014-04-21 20:37:51 +0900688
Sangjung Woo29238032014-04-21 19:10:13 +0900689 ret = devm_extcon_dev_register(&pdev->dev, info->edev);
Chanwoo Choib76668b2012-05-09 12:31:58 +0900690 if (ret) {
691 dev_err(&pdev->dev, "failed to register extcon device\n");
Sachin Kamat0b672e92012-11-20 15:46:47 +0900692 goto err_irq;
Chanwoo Choib76668b2012-05-09 12:31:58 +0900693 }
694
Krzysztof Kozlowskidfee4112014-04-09 15:20:14 +0200695 if (pdata && pdata->muic_pdata) {
Chanwoo Choi810d6012013-02-18 10:15:03 +0900696 struct max8997_muic_platform_data *muic_pdata
697 = pdata->muic_pdata;
Chanwoo Choib76668b2012-05-09 12:31:58 +0900698
Chanwoo Choi810d6012013-02-18 10:15:03 +0900699 /* Initialize registers according to platform data */
700 for (i = 0; i < muic_pdata->num_init_data; i++) {
701 max8997_write_reg(info->muic,
702 muic_pdata->init_data[i].addr,
703 muic_pdata->init_data[i].data);
Chanwoo Choib76668b2012-05-09 12:31:58 +0900704 }
Donggeun Kim99f09be2011-11-24 18:12:18 +0900705
Chanwoo Choi810d6012013-02-18 10:15:03 +0900706 /*
707 * Default usb/uart path whether UART/USB or AUX_UART/AUX_USB
708 * h/w path of COMP2/COMN1 on CONTROL1 register.
709 */
710 if (muic_pdata->path_uart)
711 info->path_uart = muic_pdata->path_uart;
712 else
713 info->path_uart = CONTROL1_SW_UART;
714
715 if (muic_pdata->path_usb)
716 info->path_usb = muic_pdata->path_usb;
717 else
718 info->path_usb = CONTROL1_SW_USB;
719
720 /*
721 * Default delay time for detecting cable state
722 * after certain time.
723 */
724 if (muic_pdata->detcable_delay_ms)
725 delay_jiffies =
726 msecs_to_jiffies(muic_pdata->detcable_delay_ms);
727 else
728 delay_jiffies = msecs_to_jiffies(DELAY_MS_DEFAULT);
729 } else {
Chanwoo Choi685dc9a2013-02-13 15:04:15 +0900730 info->path_uart = CONTROL1_SW_UART;
Chanwoo Choi685dc9a2013-02-13 15:04:15 +0900731 info->path_usb = CONTROL1_SW_USB;
Chanwoo Choi810d6012013-02-18 10:15:03 +0900732 delay_jiffies = msecs_to_jiffies(DELAY_MS_DEFAULT);
733 }
Chanwoo Choi685dc9a2013-02-13 15:04:15 +0900734
735 /* Set initial path for UART */
736 max8997_muic_set_path(info, info->path_uart, true);
737
Chanwoo Choi027fcd52013-02-13 08:50:00 +0900738 /* Set ADC debounce time */
739 max8997_muic_set_debounce_time(info, ADC_DEBOUNCE_TIME_25MS);
740
Chanwoo Choiaf5eb1a2013-02-13 15:10:00 +0900741 /*
742 * Detect accessory after completing the initialization of platform
743 *
744 * - Use delayed workqueue to detect cable state and then
745 * notify cable state to notifiee/platform through uevent.
746 * After completing the booting of platform, the extcon provider
747 * driver should notify cable state to upper layer.
748 */
749 INIT_DELAYED_WORK(&info->wq_detcable, max8997_muic_detect_cable_wq);
Krzysztof Kozlowskibf9509e2014-04-09 15:20:15 +0200750 queue_delayed_work(system_power_efficient_wq, &info->wq_detcable,
751 delay_jiffies);
Donggeun Kim99f09be2011-11-24 18:12:18 +0900752
Chanwoo Choiaf5eb1a2013-02-13 15:10:00 +0900753 return 0;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900754
755err_irq:
Axel Lin3241d562012-03-26 09:57:08 +0800756 while (--i >= 0)
Chanwoo Choidca1a712012-07-02 09:03:00 +0900757 free_irq(muic_irqs[i].virq, info);
Donggeun Kim99f09be2011-11-24 18:12:18 +0900758 return ret;
759}
760
Bill Pemberton93ed0322012-11-19 13:25:49 -0500761static int max8997_muic_remove(struct platform_device *pdev)
Donggeun Kim99f09be2011-11-24 18:12:18 +0900762{
763 struct max8997_muic_info *info = platform_get_drvdata(pdev);
Donggeun Kim99f09be2011-11-24 18:12:18 +0900764 int i;
765
Donggeun Kim99f09be2011-11-24 18:12:18 +0900766 for (i = 0; i < ARRAY_SIZE(muic_irqs); i++)
Chanwoo Choidca1a712012-07-02 09:03:00 +0900767 free_irq(muic_irqs[i].virq, info);
Donggeun Kim71e58782011-12-15 18:20:47 +0900768 cancel_work_sync(&info->irq_work);
Donggeun Kim99f09be2011-11-24 18:12:18 +0900769
Donggeun Kim99f09be2011-11-24 18:12:18 +0900770 return 0;
771}
772
773static struct platform_driver max8997_muic_driver = {
774 .driver = {
Chanwoo Choib76668b2012-05-09 12:31:58 +0900775 .name = DEV_NAME,
Donggeun Kim99f09be2011-11-24 18:12:18 +0900776 },
777 .probe = max8997_muic_probe,
Bill Pemberton5f7e2222012-11-19 13:20:06 -0500778 .remove = max8997_muic_remove,
Donggeun Kim99f09be2011-11-24 18:12:18 +0900779};
780
Axel Linb00e1262012-01-22 15:33:49 +0800781module_platform_driver(max8997_muic_driver);
Donggeun Kim99f09be2011-11-24 18:12:18 +0900782
Chanwoo Choib76668b2012-05-09 12:31:58 +0900783MODULE_DESCRIPTION("Maxim MAX8997 Extcon driver");
Donggeun Kim99f09be2011-11-24 18:12:18 +0900784MODULE_AUTHOR("Donggeun Kim <dg77.kim@samsung.com>");
785MODULE_LICENSE("GPL");