blob: 35338a090c06092d88c28966e237c2805a4848d8 [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"
Donggeun Kim99f09be2011-11-24 18:12:18 +090032
Chanwoo Choi027fcd52013-02-13 08:50:00 +090033enum max8997_muic_adc_debounce_time {
34 ADC_DEBOUNCE_TIME_0_5MS = 0, /* 0.5ms */
35 ADC_DEBOUNCE_TIME_10MS, /* 10ms */
36 ADC_DEBOUNCE_TIME_25MS, /* 25ms */
37 ADC_DEBOUNCE_TIME_38_62MS, /* 38.62ms */
38};
39
Donggeun Kim99f09be2011-11-24 18:12:18 +090040struct max8997_muic_irq {
41 unsigned int irq;
42 const char *name;
Chanwoo Choidca1a712012-07-02 09:03:00 +090043 unsigned int virq;
Donggeun Kim99f09be2011-11-24 18:12:18 +090044};
45
46static struct max8997_muic_irq muic_irqs[] = {
Chanwoo Choif73f6232013-02-13 12:05:42 +090047 { MAX8997_MUICIRQ_ADCError, "muic-ADCERROR" },
48 { MAX8997_MUICIRQ_ADCLow, "muic-ADCLOW" },
49 { MAX8997_MUICIRQ_ADC, "muic-ADC" },
50 { MAX8997_MUICIRQ_VBVolt, "muic-VBVOLT" },
51 { MAX8997_MUICIRQ_DBChg, "muic-DBCHG" },
52 { MAX8997_MUICIRQ_DCDTmr, "muic-DCDTMR" },
53 { MAX8997_MUICIRQ_ChgDetRun, "muic-CHGDETRUN" },
54 { MAX8997_MUICIRQ_ChgTyp, "muic-CHGTYP" },
55 { MAX8997_MUICIRQ_OVP, "muic-OVP" },
56};
57
58/* Define supported cable type */
59enum max8997_muic_acc_type {
60 MAX8997_MUIC_ADC_GROUND = 0x0,
61 MAX8997_MUIC_ADC_MHL, /* MHL*/
62 MAX8997_MUIC_ADC_REMOTE_S1_BUTTON,
63 MAX8997_MUIC_ADC_REMOTE_S2_BUTTON,
64 MAX8997_MUIC_ADC_REMOTE_S3_BUTTON,
65 MAX8997_MUIC_ADC_REMOTE_S4_BUTTON,
66 MAX8997_MUIC_ADC_REMOTE_S5_BUTTON,
67 MAX8997_MUIC_ADC_REMOTE_S6_BUTTON,
68 MAX8997_MUIC_ADC_REMOTE_S7_BUTTON,
69 MAX8997_MUIC_ADC_REMOTE_S8_BUTTON,
70 MAX8997_MUIC_ADC_REMOTE_S9_BUTTON,
71 MAX8997_MUIC_ADC_REMOTE_S10_BUTTON,
72 MAX8997_MUIC_ADC_REMOTE_S11_BUTTON,
73 MAX8997_MUIC_ADC_REMOTE_S12_BUTTON,
74 MAX8997_MUIC_ADC_RESERVED_ACC_1,
75 MAX8997_MUIC_ADC_RESERVED_ACC_2,
76 MAX8997_MUIC_ADC_RESERVED_ACC_3,
77 MAX8997_MUIC_ADC_RESERVED_ACC_4,
78 MAX8997_MUIC_ADC_RESERVED_ACC_5,
79 MAX8997_MUIC_ADC_CEA936_AUDIO,
80 MAX8997_MUIC_ADC_PHONE_POWERED_DEV,
81 MAX8997_MUIC_ADC_TTY_CONVERTER,
82 MAX8997_MUIC_ADC_UART_CABLE,
83 MAX8997_MUIC_ADC_CEA936A_TYPE1_CHG,
84 MAX8997_MUIC_ADC_FACTORY_MODE_USB_OFF, /* JIG-USB-OFF */
85 MAX8997_MUIC_ADC_FACTORY_MODE_USB_ON, /* JIG-USB-ON */
86 MAX8997_MUIC_ADC_AV_CABLE_NOLOAD, /* DESKDOCK */
87 MAX8997_MUIC_ADC_CEA936A_TYPE2_CHG,
88 MAX8997_MUIC_ADC_FACTORY_MODE_UART_OFF, /* JIG-UART */
89 MAX8997_MUIC_ADC_FACTORY_MODE_UART_ON, /* CARDOCK */
90 MAX8997_MUIC_ADC_AUDIO_MODE_REMOTE,
91 MAX8997_MUIC_ADC_OPEN, /* OPEN */
92};
93
94enum max8997_muic_cable_group {
95 MAX8997_CABLE_GROUP_ADC = 0,
96 MAX8997_CABLE_GROUP_ADC_GND,
97 MAX8997_CABLE_GROUP_CHG,
98 MAX8997_CABLE_GROUP_VBVOLT,
99};
100
101enum max8997_muic_usb_type {
102 MAX8997_USB_HOST,
103 MAX8997_USB_DEVICE,
104};
105
106enum max8997_muic_charger_type {
107 MAX8997_CHARGER_TYPE_NONE = 0,
108 MAX8997_CHARGER_TYPE_USB,
109 MAX8997_CHARGER_TYPE_DOWNSTREAM_PORT,
110 MAX8997_CHARGER_TYPE_DEDICATED_CHG,
111 MAX8997_CHARGER_TYPE_500MA,
112 MAX8997_CHARGER_TYPE_1A,
113 MAX8997_CHARGER_TYPE_DEAD_BATTERY = 7,
Donggeun Kim99f09be2011-11-24 18:12:18 +0900114};
115
116struct max8997_muic_info {
117 struct device *dev;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900118 struct i2c_client *muic;
Chanwoo Choif73f6232013-02-13 12:05:42 +0900119 struct extcon_dev *edev;
120 int prev_cable_type;
121 int prev_chg_type;
122 u8 status[2];
Donggeun Kim99f09be2011-11-24 18:12:18 +0900123
124 int irq;
125 struct work_struct irq_work;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900126 struct mutex mutex;
Chanwoo Choib76668b2012-05-09 12:31:58 +0900127
Chanwoo Choif73f6232013-02-13 12:05:42 +0900128 struct max8997_muic_platform_data *muic_pdata;
129 enum max8997_muic_charger_type pre_charger_type;
Chanwoo Choib76668b2012-05-09 12:31:58 +0900130};
131
Chanwoo Choie3e5bc02013-02-12 20:44:19 +0900132enum {
133 EXTCON_CABLE_USB = 0,
134 EXTCON_CABLE_USB_HOST,
135 EXTCON_CABLE_TA,
136 EXTCON_CABLE_FAST_CHARGER,
137 EXTCON_CABLE_SLOW_CHARGER,
138 EXTCON_CABLE_CHARGE_DOWNSTREAM,
139 EXTCON_CABLE_MHL,
140 EXTCON_CABLE_DOCK_DESK,
141 EXTCON_CABLE_DOCK_CARD,
142 EXTCON_CABLE_JIG,
143
144 _EXTCON_CABLE_NUM,
145};
146
Sachin Kamatcae93db2013-01-31 09:29:29 +0900147static const char *max8997_extcon_cable[] = {
Chanwoo Choie3e5bc02013-02-12 20:44:19 +0900148 [EXTCON_CABLE_USB] = "USB",
149 [EXTCON_CABLE_USB_HOST] = "USB-Host",
150 [EXTCON_CABLE_TA] = "TA",
151 [EXTCON_CABLE_FAST_CHARGER] = "Fast-charger",
152 [EXTCON_CABLE_SLOW_CHARGER] = "Slow-charger",
153 [EXTCON_CABLE_CHARGE_DOWNSTREAM] = "Charge-downstream",
154 [EXTCON_CABLE_MHL] = "MHL",
155 [EXTCON_CABLE_DOCK_DESK] = "Dock-Desk",
156 [EXTCON_CABLE_DOCK_CARD] = "Dock-Card",
157 [EXTCON_CABLE_JIG] = "JIG",
Chanwoo Choib76668b2012-05-09 12:31:58 +0900158
159 NULL,
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");
183 return -EAGAIN;
184 }
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");
219 return -EAGAIN;
220 }
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");
232 return -EAGAIN;
233 }
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
324 if (usb_type == MAX8997_USB_HOST) {
Chanwoo Choi07c70502013-02-13 08:42:37 +0900325 ret = max8997_muic_set_path(info, CONTROL1_SW_USB, attached);
Chanwoo Choif73f6232013-02-13 12:05:42 +0900326 if (ret < 0) {
Donggeun Kim99f09be2011-11-24 18:12:18 +0900327 dev_err(info->dev, "failed to update muic register\n");
Chanwoo Choif73f6232013-02-13 12:05:42 +0900328 return ret;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900329 }
330 }
331
Chanwoo Choib76668b2012-05-09 12:31:58 +0900332 switch (usb_type) {
333 case MAX8997_USB_HOST:
334 extcon_set_cable_state(info->edev, "USB-Host", attached);
335 break;
336 case MAX8997_USB_DEVICE:
337 extcon_set_cable_state(info->edev, "USB", attached);
338 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 Choib76668b2012-05-09 12:31:58 +0900361 extcon_set_cable_state(info->edev, "Dock-desk", attached);
Donggeun Kim99f09be2011-11-24 18:12:18 +0900362 break;
Chanwoo Choif73f6232013-02-13 12:05:42 +0900363 case MAX8997_MUIC_ADC_FACTORY_MODE_UART_ON:
Chanwoo Choib76668b2012-05-09 12:31:58 +0900364 extcon_set_cable_state(info->edev, "Dock-card", attached);
Donggeun Kim99f09be2011-11-24 18:12:18 +0900365 break;
366 default:
Chanwoo Choif73f6232013-02-13 12:05:42 +0900367 dev_err(info->dev, "failed to detect %s dock device\n",
368 attached ? "attached" : "detached");
369 return -EINVAL;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900370 }
Chanwoo Choif73f6232013-02-13 12:05:42 +0900371
372 return 0;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900373}
374
375static int max8997_muic_handle_jig_uart(struct max8997_muic_info *info,
376 bool attached)
377{
Donggeun Kim99f09be2011-11-24 18:12:18 +0900378 int ret = 0;
379
380 /* switch to UART */
Chanwoo Choi07c70502013-02-13 08:42:37 +0900381 ret = max8997_muic_set_path(info, CONTROL1_SW_UART, attached);
Donggeun Kim99f09be2011-11-24 18:12:18 +0900382 if (ret) {
383 dev_err(info->dev, "failed to update muic register\n");
Chanwoo Choif73f6232013-02-13 12:05:42 +0900384 return -EINVAL;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900385 }
386
Chanwoo Choib76668b2012-05-09 12:31:58 +0900387 extcon_set_cable_state(info->edev, "JIG", attached);
Chanwoo Choif73f6232013-02-13 12:05:42 +0900388
389 return 0;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900390}
391
Chanwoo Choif73f6232013-02-13 12:05:42 +0900392static int max8997_muic_adc_handler(struct max8997_muic_info *info)
Donggeun Kim99f09be2011-11-24 18:12:18 +0900393{
Chanwoo Choif73f6232013-02-13 12:05:42 +0900394 int cable_type;
395 bool attached;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900396 int ret = 0;
397
Chanwoo Choif73f6232013-02-13 12:05:42 +0900398 /* Check cable state which is either detached or attached */
399 cable_type = max8997_muic_get_cable_type(info,
400 MAX8997_CABLE_GROUP_ADC, &attached);
401
402 switch (cable_type) {
403 case MAX8997_MUIC_ADC_GROUND:
404 ret = max8997_muic_handle_usb(info, MAX8997_USB_HOST, attached);
405 if (ret < 0)
406 return ret;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900407 break;
Chanwoo Choif73f6232013-02-13 12:05:42 +0900408 case MAX8997_MUIC_ADC_MHL:
409 extcon_set_cable_state(info->edev, "MHL", attached);
Donggeun Kim99f09be2011-11-24 18:12:18 +0900410 break;
Chanwoo Choif73f6232013-02-13 12:05:42 +0900411 case MAX8997_MUIC_ADC_FACTORY_MODE_USB_OFF:
412 case MAX8997_MUIC_ADC_FACTORY_MODE_USB_ON:
413 ret = max8997_muic_handle_usb(info, MAX8997_USB_DEVICE, attached);
414 if (ret < 0)
415 return ret;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900416 break;
Chanwoo Choif73f6232013-02-13 12:05:42 +0900417 case MAX8997_MUIC_ADC_AV_CABLE_NOLOAD:
418 case MAX8997_MUIC_ADC_FACTORY_MODE_UART_ON:
419 ret = max8997_muic_handle_dock(info, cable_type, attached);
420 if (ret < 0)
421 return ret;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900422 break;
Chanwoo Choif73f6232013-02-13 12:05:42 +0900423 case MAX8997_MUIC_ADC_FACTORY_MODE_UART_OFF:
424 ret = max8997_muic_handle_jig_uart(info, attached);
Donggeun Kim99f09be2011-11-24 18:12:18 +0900425 break;
Chanwoo Choif73f6232013-02-13 12:05:42 +0900426 case MAX8997_MUIC_ADC_REMOTE_S1_BUTTON:
427 case MAX8997_MUIC_ADC_REMOTE_S2_BUTTON:
428 case MAX8997_MUIC_ADC_REMOTE_S3_BUTTON:
429 case MAX8997_MUIC_ADC_REMOTE_S4_BUTTON:
430 case MAX8997_MUIC_ADC_REMOTE_S5_BUTTON:
431 case MAX8997_MUIC_ADC_REMOTE_S6_BUTTON:
432 case MAX8997_MUIC_ADC_REMOTE_S7_BUTTON:
433 case MAX8997_MUIC_ADC_REMOTE_S8_BUTTON:
434 case MAX8997_MUIC_ADC_REMOTE_S9_BUTTON:
435 case MAX8997_MUIC_ADC_REMOTE_S10_BUTTON:
436 case MAX8997_MUIC_ADC_REMOTE_S11_BUTTON:
437 case MAX8997_MUIC_ADC_REMOTE_S12_BUTTON:
438 case MAX8997_MUIC_ADC_RESERVED_ACC_1:
439 case MAX8997_MUIC_ADC_RESERVED_ACC_2:
440 case MAX8997_MUIC_ADC_RESERVED_ACC_3:
441 case MAX8997_MUIC_ADC_RESERVED_ACC_4:
442 case MAX8997_MUIC_ADC_RESERVED_ACC_5:
443 case MAX8997_MUIC_ADC_CEA936_AUDIO:
444 case MAX8997_MUIC_ADC_PHONE_POWERED_DEV:
445 case MAX8997_MUIC_ADC_TTY_CONVERTER:
446 case MAX8997_MUIC_ADC_UART_CABLE:
447 case MAX8997_MUIC_ADC_CEA936A_TYPE1_CHG:
448 case MAX8997_MUIC_ADC_CEA936A_TYPE2_CHG:
449 case MAX8997_MUIC_ADC_AUDIO_MODE_REMOTE:
450 /*
451 * This cable isn't used in general case if it is specially
452 * needed to detect additional cable, should implement
453 * proper operation when this cable is attached/detached.
454 */
455 dev_info(info->dev,
456 "cable is %s but it isn't used (type:0x%x)\n",
457 attached ? "attached" : "detached", cable_type);
458 return -EAGAIN;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900459 default:
Chanwoo Choif73f6232013-02-13 12:05:42 +0900460 dev_err(info->dev,
461 "failed to detect %s unknown cable (type:0x%x)\n",
462 attached ? "attached" : "detached", cable_type);
Devendra Naga3cafbd42012-08-31 14:00:19 +0530463 return -EINVAL;
Chanwoo Choib76668b2012-05-09 12:31:58 +0900464 }
Donggeun Kim99f09be2011-11-24 18:12:18 +0900465
Devendra Naga3cafbd42012-08-31 14:00:19 +0530466 return 0;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900467}
468
Chanwoo Choif73f6232013-02-13 12:05:42 +0900469static int max8997_muic_chg_handler(struct max8997_muic_info *info)
Donggeun Kim99f09be2011-11-24 18:12:18 +0900470{
Chanwoo Choif73f6232013-02-13 12:05:42 +0900471 int chg_type;
472 bool attached;
473 int adc;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900474
Chanwoo Choif73f6232013-02-13 12:05:42 +0900475 chg_type = max8997_muic_get_cable_type(info,
476 MAX8997_CABLE_GROUP_CHG, &attached);
Donggeun Kim99f09be2011-11-24 18:12:18 +0900477
Chanwoo Choif73f6232013-02-13 12:05:42 +0900478 switch (chg_type) {
Donggeun Kim99f09be2011-11-24 18:12:18 +0900479 case MAX8997_CHARGER_TYPE_NONE:
Donggeun Kim99f09be2011-11-24 18:12:18 +0900480 break;
481 case MAX8997_CHARGER_TYPE_USB:
Chanwoo Choif73f6232013-02-13 12:05:42 +0900482 adc = info->status[0] & STATUS1_ADC_MASK;
483 adc >>= STATUS1_ADC_SHIFT;
484
485 if ((adc & STATUS1_ADC_MASK) == MAX8997_MUIC_ADC_OPEN) {
Donggeun Kim99f09be2011-11-24 18:12:18 +0900486 max8997_muic_handle_usb(info,
Chanwoo Choif73f6232013-02-13 12:05:42 +0900487 MAX8997_USB_DEVICE, attached);
Donggeun Kim99f09be2011-11-24 18:12:18 +0900488 }
Donggeun Kim99f09be2011-11-24 18:12:18 +0900489 break;
490 case MAX8997_CHARGER_TYPE_DOWNSTREAM_PORT:
Chanwoo Choif73f6232013-02-13 12:05:42 +0900491 extcon_set_cable_state(info->edev, "Charge-downstream", 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 Choif73f6232013-02-13 12:05:42 +0900494 extcon_set_cable_state(info->edev, "TA", attached);
Chanwoo Choib76668b2012-05-09 12:31:58 +0900495 break;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900496 case MAX8997_CHARGER_TYPE_500MA:
Chanwoo Choif73f6232013-02-13 12:05:42 +0900497 extcon_set_cable_state(info->edev, "Slow-charger", attached);
Chanwoo Choib76668b2012-05-09 12:31:58 +0900498 break;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900499 case MAX8997_CHARGER_TYPE_1A:
Chanwoo Choif73f6232013-02-13 12:05:42 +0900500 extcon_set_cable_state(info->edev, "Fast-charger", attached);
Donggeun Kim99f09be2011-11-24 18:12:18 +0900501 break;
502 default:
Chanwoo Choif73f6232013-02-13 12:05:42 +0900503 dev_err(info->dev,
504 "failed to detect %s unknown chg cable (type:0x%x)\n",
505 attached ? "attached" : "detached", chg_type);
506 return -EINVAL;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900507 }
508
Chanwoo Choif73f6232013-02-13 12:05:42 +0900509 return 0;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900510}
511
512static void max8997_muic_irq_work(struct work_struct *work)
513{
514 struct max8997_muic_info *info = container_of(work,
515 struct max8997_muic_info, irq_work);
Chanwoo Choidca1a712012-07-02 09:03:00 +0900516 int irq_type = 0;
517 int i, ret;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900518
Chanwoo Choif73f6232013-02-13 12:05:42 +0900519 if (!info->edev)
520 return;
521
Donggeun Kim99f09be2011-11-24 18:12:18 +0900522 mutex_lock(&info->mutex);
523
Chanwoo Choif73f6232013-02-13 12:05:42 +0900524 for (i = 0 ; i < ARRAY_SIZE(muic_irqs) ; i++)
525 if (info->irq == muic_irqs[i].virq)
526 irq_type = muic_irqs[i].irq;
527
Donggeun Kim99f09be2011-11-24 18:12:18 +0900528 ret = max8997_bulk_read(info->muic, MAX8997_MUIC_REG_STATUS1,
Chanwoo Choif73f6232013-02-13 12:05:42 +0900529 2, info->status);
Donggeun Kim99f09be2011-11-24 18:12:18 +0900530 if (ret) {
531 dev_err(info->dev, "failed to read muic register\n");
532 mutex_unlock(&info->mutex);
533 return;
534 }
535
Donggeun Kim99f09be2011-11-24 18:12:18 +0900536 switch (irq_type) {
Chanwoo Choif73f6232013-02-13 12:05:42 +0900537 case MAX8997_MUICIRQ_ADCError:
538 case MAX8997_MUICIRQ_ADCLow:
Donggeun Kim99f09be2011-11-24 18:12:18 +0900539 case MAX8997_MUICIRQ_ADC:
Chanwoo Choif73f6232013-02-13 12:05:42 +0900540 /* Handle all of cable except for charger cable */
541 ret = max8997_muic_adc_handler(info);
Donggeun Kim99f09be2011-11-24 18:12:18 +0900542 break;
Chanwoo Choif73f6232013-02-13 12:05:42 +0900543 case MAX8997_MUICIRQ_VBVolt:
544 case MAX8997_MUICIRQ_DBChg:
545 case MAX8997_MUICIRQ_DCDTmr:
546 case MAX8997_MUICIRQ_ChgDetRun:
Donggeun Kim99f09be2011-11-24 18:12:18 +0900547 case MAX8997_MUICIRQ_ChgTyp:
Chanwoo Choif73f6232013-02-13 12:05:42 +0900548 /* Handle charger cable */
549 ret = max8997_muic_chg_handler(info);
550 break;
551 case MAX8997_MUICIRQ_OVP:
Donggeun Kim99f09be2011-11-24 18:12:18 +0900552 break;
553 default:
Chanwoo Choib76668b2012-05-09 12:31:58 +0900554 dev_info(info->dev, "misc interrupt: irq %d occurred\n",
555 irq_type);
Chanwoo Choif73f6232013-02-13 12:05:42 +0900556 mutex_unlock(&info->mutex);
557 return;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900558 }
559
Chanwoo Choif73f6232013-02-13 12:05:42 +0900560 if (ret < 0)
561 dev_err(info->dev, "failed to handle MUIC interrupt\n");
562
Donggeun Kim99f09be2011-11-24 18:12:18 +0900563 mutex_unlock(&info->mutex);
564
565 return;
566}
567
568static irqreturn_t max8997_muic_irq_handler(int irq, void *data)
569{
570 struct max8997_muic_info *info = data;
571
572 dev_dbg(info->dev, "irq:%d\n", irq);
573 info->irq = irq;
574
575 schedule_work(&info->irq_work);
576
577 return IRQ_HANDLED;
578}
579
Chanwoo Choif73f6232013-02-13 12:05:42 +0900580static int max8997_muic_detect_dev(struct max8997_muic_info *info)
Donggeun Kim99f09be2011-11-24 18:12:18 +0900581{
Chanwoo Choif73f6232013-02-13 12:05:42 +0900582 int ret = 0;
583 int adc;
584 int chg_type;
585 bool attached;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900586
Chanwoo Choif73f6232013-02-13 12:05:42 +0900587 mutex_lock(&info->mutex);
588
589 /* Read STATUSx register to detect accessory */
590 ret = max8997_bulk_read(info->muic,
591 MAX8997_MUIC_REG_STATUS1, 2, info->status);
Donggeun Kim99f09be2011-11-24 18:12:18 +0900592 if (ret) {
Chanwoo Choif73f6232013-02-13 12:05:42 +0900593 dev_err(info->dev, "failed to read MUIC register\n");
594 mutex_unlock(&info->mutex);
595 return -EINVAL;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900596 }
597
Chanwoo Choif73f6232013-02-13 12:05:42 +0900598 adc = max8997_muic_get_cable_type(info, MAX8997_CABLE_GROUP_ADC,
599 &attached);
600 if (attached && adc != MAX8997_MUIC_ADC_OPEN) {
601 ret = max8997_muic_adc_handler(info);
602 if (ret < 0) {
603 dev_err(info->dev, "Cannot detect ADC cable\n");
604 mutex_unlock(&info->mutex);
605 return ret;
606 }
607 }
Donggeun Kim99f09be2011-11-24 18:12:18 +0900608
Chanwoo Choif73f6232013-02-13 12:05:42 +0900609 chg_type = max8997_muic_get_cable_type(info, MAX8997_CABLE_GROUP_CHG,
610 &attached);
611 if (attached && chg_type != MAX8997_CHARGER_TYPE_NONE) {
612 ret = max8997_muic_chg_handler(info);
613 if (ret < 0) {
614 dev_err(info->dev, "Cannot detect charger cable\n");
615 mutex_unlock(&info->mutex);
616 return ret;
617 }
618 }
Donggeun Kim99f09be2011-11-24 18:12:18 +0900619
Chanwoo Choif73f6232013-02-13 12:05:42 +0900620 mutex_unlock(&info->mutex);
Donggeun Kim99f09be2011-11-24 18:12:18 +0900621
Chanwoo Choif73f6232013-02-13 12:05:42 +0900622 return 0;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900623}
624
Bill Pemberton44f34fd2012-11-19 13:23:21 -0500625static int max8997_muic_probe(struct platform_device *pdev)
Donggeun Kim99f09be2011-11-24 18:12:18 +0900626{
Chanwoo Choib76668b2012-05-09 12:31:58 +0900627 struct max8997_dev *max8997 = dev_get_drvdata(pdev->dev.parent);
628 struct max8997_platform_data *pdata = dev_get_platdata(max8997->dev);
Donggeun Kim99f09be2011-11-24 18:12:18 +0900629 struct max8997_muic_info *info;
630 int ret, i;
631
Sachin Kamat0b672e92012-11-20 15:46:47 +0900632 info = devm_kzalloc(&pdev->dev, sizeof(struct max8997_muic_info),
633 GFP_KERNEL);
Donggeun Kim99f09be2011-11-24 18:12:18 +0900634 if (!info) {
635 dev_err(&pdev->dev, "failed to allocate memory\n");
Sachin Kamat0b672e92012-11-20 15:46:47 +0900636 return -ENOMEM;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900637 }
638
Donggeun Kim99f09be2011-11-24 18:12:18 +0900639 info->dev = &pdev->dev;
Chanwoo Choib76668b2012-05-09 12:31:58 +0900640 info->muic = max8997->muic;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900641
642 platform_set_drvdata(pdev, info);
643 mutex_init(&info->mutex);
644
Donggeun Kim99f09be2011-11-24 18:12:18 +0900645 INIT_WORK(&info->irq_work, max8997_muic_irq_work);
646
647 for (i = 0; i < ARRAY_SIZE(muic_irqs); i++) {
648 struct max8997_muic_irq *muic_irq = &muic_irqs[i];
Sachin Kamat68c92742012-11-20 15:46:41 +0900649 unsigned int virq = 0;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900650
Chanwoo Choidca1a712012-07-02 09:03:00 +0900651 virq = irq_create_mapping(max8997->irq_domain, muic_irq->irq);
Sachin Kamat68c92742012-11-20 15:46:41 +0900652 if (!virq) {
653 ret = -EINVAL;
Chanwoo Choidca1a712012-07-02 09:03:00 +0900654 goto err_irq;
Sachin Kamat68c92742012-11-20 15:46:41 +0900655 }
Chanwoo Choidca1a712012-07-02 09:03:00 +0900656 muic_irq->virq = virq;
657
Chanwoo Choiae3b3212012-11-28 12:39:01 +0900658 ret = request_threaded_irq(virq, NULL,
659 max8997_muic_irq_handler,
660 IRQF_NO_SUSPEND,
661 muic_irq->name, info);
Donggeun Kim99f09be2011-11-24 18:12:18 +0900662 if (ret) {
663 dev_err(&pdev->dev,
664 "failed: irq request (IRQ: %d,"
665 " error :%d)\n",
666 muic_irq->irq, ret);
Donggeun Kim99f09be2011-11-24 18:12:18 +0900667 goto err_irq;
668 }
669 }
670
Chanwoo Choib76668b2012-05-09 12:31:58 +0900671 /* External connector */
Sachin Kamat0b672e92012-11-20 15:46:47 +0900672 info->edev = devm_kzalloc(&pdev->dev, sizeof(struct extcon_dev),
673 GFP_KERNEL);
Chanwoo Choib76668b2012-05-09 12:31:58 +0900674 if (!info->edev) {
675 dev_err(&pdev->dev, "failed to allocate memory for extcon\n");
676 ret = -ENOMEM;
677 goto err_irq;
678 }
679 info->edev->name = DEV_NAME;
680 info->edev->supported_cable = max8997_extcon_cable;
681 ret = extcon_dev_register(info->edev, NULL);
682 if (ret) {
683 dev_err(&pdev->dev, "failed to register extcon device\n");
Sachin Kamat0b672e92012-11-20 15:46:47 +0900684 goto err_irq;
Chanwoo Choib76668b2012-05-09 12:31:58 +0900685 }
686
Donggeun Kim99f09be2011-11-24 18:12:18 +0900687 /* Initialize registers according to platform data */
Chanwoo Choib76668b2012-05-09 12:31:58 +0900688 if (pdata->muic_pdata) {
689 struct max8997_muic_platform_data *mdata = info->muic_pdata;
690
691 for (i = 0; i < mdata->num_init_data; i++) {
692 max8997_write_reg(info->muic, mdata->init_data[i].addr,
693 mdata->init_data[i].data);
694 }
695 }
Donggeun Kim99f09be2011-11-24 18:12:18 +0900696
Chanwoo Choi027fcd52013-02-13 08:50:00 +0900697 /* Set ADC debounce time */
698 max8997_muic_set_debounce_time(info, ADC_DEBOUNCE_TIME_25MS);
699
Donggeun Kim99f09be2011-11-24 18:12:18 +0900700 /* Initial device detection */
Chanwoo Choif73f6232013-02-13 12:05:42 +0900701 ret = max8997_muic_detect_dev(info);
702 if (ret < 0) {
703 dev_err(&pdev->dev, "failed to detect cable type\n");
704 goto err_extcon;
705 }
Donggeun Kim99f09be2011-11-24 18:12:18 +0900706
707 return ret;
708
Chanwoo Choif73f6232013-02-13 12:05:42 +0900709err_extcon:
710 extcon_dev_unregister(info->edev);
Donggeun Kim99f09be2011-11-24 18:12:18 +0900711err_irq:
Axel Lin3241d562012-03-26 09:57:08 +0800712 while (--i >= 0)
Chanwoo Choidca1a712012-07-02 09:03:00 +0900713 free_irq(muic_irqs[i].virq, info);
Donggeun Kim99f09be2011-11-24 18:12:18 +0900714 return ret;
715}
716
Bill Pemberton93ed0322012-11-19 13:25:49 -0500717static int max8997_muic_remove(struct platform_device *pdev)
Donggeun Kim99f09be2011-11-24 18:12:18 +0900718{
719 struct max8997_muic_info *info = platform_get_drvdata(pdev);
Donggeun Kim99f09be2011-11-24 18:12:18 +0900720 int i;
721
Donggeun Kim99f09be2011-11-24 18:12:18 +0900722 for (i = 0; i < ARRAY_SIZE(muic_irqs); i++)
Chanwoo Choidca1a712012-07-02 09:03:00 +0900723 free_irq(muic_irqs[i].virq, info);
Donggeun Kim71e58782011-12-15 18:20:47 +0900724 cancel_work_sync(&info->irq_work);
Donggeun Kim99f09be2011-11-24 18:12:18 +0900725
Chanwoo Choib76668b2012-05-09 12:31:58 +0900726 extcon_dev_unregister(info->edev);
727
Donggeun Kim99f09be2011-11-24 18:12:18 +0900728 return 0;
729}
730
731static struct platform_driver max8997_muic_driver = {
732 .driver = {
Chanwoo Choib76668b2012-05-09 12:31:58 +0900733 .name = DEV_NAME,
Donggeun Kim99f09be2011-11-24 18:12:18 +0900734 .owner = THIS_MODULE,
735 },
736 .probe = max8997_muic_probe,
Bill Pemberton5f7e2222012-11-19 13:20:06 -0500737 .remove = max8997_muic_remove,
Donggeun Kim99f09be2011-11-24 18:12:18 +0900738};
739
Axel Linb00e1262012-01-22 15:33:49 +0800740module_platform_driver(max8997_muic_driver);
Donggeun Kim99f09be2011-11-24 18:12:18 +0900741
Chanwoo Choib76668b2012-05-09 12:31:58 +0900742MODULE_DESCRIPTION("Maxim MAX8997 Extcon driver");
Donggeun Kim99f09be2011-11-24 18:12:18 +0900743MODULE_AUTHOR("Donggeun Kim <dg77.kim@samsung.com>");
744MODULE_LICENSE("GPL");