blob: 172e116ac1cedd3f4f5afa9f7fd295716d94b456 [file] [log] [blame]
Krzysztof Kozlowski1213a362018-08-07 18:21:22 +02001// SPDX-License-Identifier: GPL-2.0+
2//
3// extcon-max8997.c - MAX8997 extcon driver to support MAX8997 MUIC
4//
5// Copyright (C) 2012 Samsung Electronics
6// Donggeun Kim <dg77.kim@samsung.com>
Donggeun Kim99f09be2011-11-24 18:12:18 +09007
8#include <linux/kernel.h>
9#include <linux/module.h>
10#include <linux/i2c.h>
11#include <linux/slab.h>
12#include <linux/interrupt.h>
13#include <linux/err.h>
14#include <linux/platform_device.h>
15#include <linux/kobject.h>
16#include <linux/mfd/max8997.h>
17#include <linux/mfd/max8997-private.h>
Chanwoo Choi176aa362017-09-21 12:11:24 +090018#include <linux/extcon-provider.h>
Chanwoo Choidca1a712012-07-02 09:03:00 +090019#include <linux/irqdomain.h>
Chanwoo Choib76668b2012-05-09 12:31:58 +090020
21#define DEV_NAME "max8997-muic"
Chanwoo Choiaf5eb1a2013-02-13 15:10:00 +090022#define DELAY_MS_DEFAULT 20000 /* unit: millisecond */
Donggeun Kim99f09be2011-11-24 18:12:18 +090023
Chanwoo Choi027fcd52013-02-13 08:50:00 +090024enum max8997_muic_adc_debounce_time {
25 ADC_DEBOUNCE_TIME_0_5MS = 0, /* 0.5ms */
26 ADC_DEBOUNCE_TIME_10MS, /* 10ms */
27 ADC_DEBOUNCE_TIME_25MS, /* 25ms */
28 ADC_DEBOUNCE_TIME_38_62MS, /* 38.62ms */
29};
30
Donggeun Kim99f09be2011-11-24 18:12:18 +090031struct max8997_muic_irq {
32 unsigned int irq;
33 const char *name;
Chanwoo Choidca1a712012-07-02 09:03:00 +090034 unsigned int virq;
Donggeun Kim99f09be2011-11-24 18:12:18 +090035};
36
37static struct max8997_muic_irq muic_irqs[] = {
Chanwoo Choif73f6232013-02-13 12:05:42 +090038 { MAX8997_MUICIRQ_ADCError, "muic-ADCERROR" },
39 { MAX8997_MUICIRQ_ADCLow, "muic-ADCLOW" },
40 { MAX8997_MUICIRQ_ADC, "muic-ADC" },
41 { MAX8997_MUICIRQ_VBVolt, "muic-VBVOLT" },
42 { MAX8997_MUICIRQ_DBChg, "muic-DBCHG" },
43 { MAX8997_MUICIRQ_DCDTmr, "muic-DCDTMR" },
44 { MAX8997_MUICIRQ_ChgDetRun, "muic-CHGDETRUN" },
45 { MAX8997_MUICIRQ_ChgTyp, "muic-CHGTYP" },
46 { MAX8997_MUICIRQ_OVP, "muic-OVP" },
47};
48
49/* Define supported cable type */
50enum max8997_muic_acc_type {
51 MAX8997_MUIC_ADC_GROUND = 0x0,
52 MAX8997_MUIC_ADC_MHL, /* MHL*/
53 MAX8997_MUIC_ADC_REMOTE_S1_BUTTON,
54 MAX8997_MUIC_ADC_REMOTE_S2_BUTTON,
55 MAX8997_MUIC_ADC_REMOTE_S3_BUTTON,
56 MAX8997_MUIC_ADC_REMOTE_S4_BUTTON,
57 MAX8997_MUIC_ADC_REMOTE_S5_BUTTON,
58 MAX8997_MUIC_ADC_REMOTE_S6_BUTTON,
59 MAX8997_MUIC_ADC_REMOTE_S7_BUTTON,
60 MAX8997_MUIC_ADC_REMOTE_S8_BUTTON,
61 MAX8997_MUIC_ADC_REMOTE_S9_BUTTON,
62 MAX8997_MUIC_ADC_REMOTE_S10_BUTTON,
63 MAX8997_MUIC_ADC_REMOTE_S11_BUTTON,
64 MAX8997_MUIC_ADC_REMOTE_S12_BUTTON,
65 MAX8997_MUIC_ADC_RESERVED_ACC_1,
66 MAX8997_MUIC_ADC_RESERVED_ACC_2,
67 MAX8997_MUIC_ADC_RESERVED_ACC_3,
68 MAX8997_MUIC_ADC_RESERVED_ACC_4,
69 MAX8997_MUIC_ADC_RESERVED_ACC_5,
70 MAX8997_MUIC_ADC_CEA936_AUDIO,
71 MAX8997_MUIC_ADC_PHONE_POWERED_DEV,
72 MAX8997_MUIC_ADC_TTY_CONVERTER,
73 MAX8997_MUIC_ADC_UART_CABLE,
74 MAX8997_MUIC_ADC_CEA936A_TYPE1_CHG,
75 MAX8997_MUIC_ADC_FACTORY_MODE_USB_OFF, /* JIG-USB-OFF */
76 MAX8997_MUIC_ADC_FACTORY_MODE_USB_ON, /* JIG-USB-ON */
77 MAX8997_MUIC_ADC_AV_CABLE_NOLOAD, /* DESKDOCK */
78 MAX8997_MUIC_ADC_CEA936A_TYPE2_CHG,
79 MAX8997_MUIC_ADC_FACTORY_MODE_UART_OFF, /* JIG-UART */
80 MAX8997_MUIC_ADC_FACTORY_MODE_UART_ON, /* CARDOCK */
81 MAX8997_MUIC_ADC_AUDIO_MODE_REMOTE,
82 MAX8997_MUIC_ADC_OPEN, /* OPEN */
83};
84
85enum max8997_muic_cable_group {
86 MAX8997_CABLE_GROUP_ADC = 0,
87 MAX8997_CABLE_GROUP_ADC_GND,
88 MAX8997_CABLE_GROUP_CHG,
89 MAX8997_CABLE_GROUP_VBVOLT,
90};
91
92enum max8997_muic_usb_type {
93 MAX8997_USB_HOST,
94 MAX8997_USB_DEVICE,
95};
96
97enum max8997_muic_charger_type {
98 MAX8997_CHARGER_TYPE_NONE = 0,
99 MAX8997_CHARGER_TYPE_USB,
100 MAX8997_CHARGER_TYPE_DOWNSTREAM_PORT,
101 MAX8997_CHARGER_TYPE_DEDICATED_CHG,
102 MAX8997_CHARGER_TYPE_500MA,
103 MAX8997_CHARGER_TYPE_1A,
104 MAX8997_CHARGER_TYPE_DEAD_BATTERY = 7,
Donggeun Kim99f09be2011-11-24 18:12:18 +0900105};
106
107struct max8997_muic_info {
108 struct device *dev;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900109 struct i2c_client *muic;
Chanwoo Choif73f6232013-02-13 12:05:42 +0900110 struct extcon_dev *edev;
111 int prev_cable_type;
112 int prev_chg_type;
113 u8 status[2];
Donggeun Kim99f09be2011-11-24 18:12:18 +0900114
115 int irq;
116 struct work_struct irq_work;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900117 struct mutex mutex;
Chanwoo Choib76668b2012-05-09 12:31:58 +0900118
Chanwoo Choif73f6232013-02-13 12:05:42 +0900119 struct max8997_muic_platform_data *muic_pdata;
120 enum max8997_muic_charger_type pre_charger_type;
Chanwoo Choi685dc9a2013-02-13 15:04:15 +0900121
122 /*
Chanwoo Choiaf5eb1a2013-02-13 15:10:00 +0900123 * Use delayed workqueue to detect cable state and then
124 * notify cable state to notifiee/platform through uevent.
125 * After completing the booting of platform, the extcon provider
126 * driver should notify cable state to upper layer.
127 */
128 struct delayed_work wq_detcable;
129
130 /*
Chanwoo Choi685dc9a2013-02-13 15:04:15 +0900131 * Default usb/uart path whether UART/USB or AUX_UART/AUX_USB
132 * h/w path of COMP2/COMN1 on CONTROL1 register.
133 */
134 int path_usb;
135 int path_uart;
Chanwoo Choib76668b2012-05-09 12:31:58 +0900136};
137
Chanwoo Choi73b6ecd2015-06-12 11:10:06 +0900138static const unsigned int max8997_extcon_cable[] = {
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900139 EXTCON_USB,
140 EXTCON_USB_HOST,
Chanwoo Choi8b45b6a2015-11-09 10:10:15 +0900141 EXTCON_CHG_USB_SDP,
Chanwoo Choi11eecf92015-10-03 14:15:13 +0900142 EXTCON_CHG_USB_DCP,
143 EXTCON_CHG_USB_FAST,
144 EXTCON_CHG_USB_SLOW,
145 EXTCON_CHG_USB_CDP,
146 EXTCON_DISP_MHL,
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900147 EXTCON_DOCK,
148 EXTCON_JIG,
149 EXTCON_NONE,
Donggeun Kim99f09be2011-11-24 18:12:18 +0900150};
151
Chanwoo Choi07c70502013-02-13 08:42:37 +0900152/*
Chanwoo Choi027fcd52013-02-13 08:50:00 +0900153 * max8997_muic_set_debounce_time - Set the debounce time of ADC
154 * @info: the instance including private data of max8997 MUIC
155 * @time: the debounce time of ADC
156 */
157static int max8997_muic_set_debounce_time(struct max8997_muic_info *info,
158 enum max8997_muic_adc_debounce_time time)
159{
160 int ret;
161
162 switch (time) {
163 case ADC_DEBOUNCE_TIME_0_5MS:
164 case ADC_DEBOUNCE_TIME_10MS:
165 case ADC_DEBOUNCE_TIME_25MS:
166 case ADC_DEBOUNCE_TIME_38_62MS:
167 ret = max8997_update_reg(info->muic,
168 MAX8997_MUIC_REG_CONTROL3,
169 time << CONTROL3_ADCDBSET_SHIFT,
170 CONTROL3_ADCDBSET_MASK);
171 if (ret) {
172 dev_err(info->dev, "failed to set ADC debounce time\n");
Sachin Kamat3ad9e862013-04-08 09:13:18 +0900173 return ret;
Chanwoo Choi027fcd52013-02-13 08:50:00 +0900174 }
175 break;
176 default:
177 dev_err(info->dev, "invalid ADC debounce time\n");
178 return -EINVAL;
179 }
180
181 return 0;
182};
183
184/*
Chanwoo Choi07c70502013-02-13 08:42:37 +0900185 * max8997_muic_set_path - Set hardware line according to attached cable
186 * @info: the instance including private data of max8997 MUIC
187 * @value: the path according to attached cable
188 * @attached: the state of cable (true:attached, false:detached)
189 *
190 * The max8997 MUIC device share outside H/W line among a varity of cables,
191 * so this function set internal path of H/W line according to the type of
192 * attached cable.
193 */
194static int max8997_muic_set_path(struct max8997_muic_info *info,
195 u8 val, bool attached)
196{
Markus Elfring00c2f522017-11-09 10:00:08 +0100197 int ret;
Chanwoo Choi07c70502013-02-13 08:42:37 +0900198 u8 ctrl1, ctrl2 = 0;
199
200 if (attached)
201 ctrl1 = val;
202 else
203 ctrl1 = CONTROL1_SW_OPEN;
204
205 ret = max8997_update_reg(info->muic,
206 MAX8997_MUIC_REG_CONTROL1, ctrl1, COMP_SW_MASK);
207 if (ret < 0) {
208 dev_err(info->dev, "failed to update MUIC register\n");
Sachin Kamat3ad9e862013-04-08 09:13:18 +0900209 return ret;
Chanwoo Choi07c70502013-02-13 08:42:37 +0900210 }
211
212 if (attached)
213 ctrl2 |= CONTROL2_CPEN_MASK; /* LowPwr=0, CPEn=1 */
214 else
215 ctrl2 |= CONTROL2_LOWPWR_MASK; /* LowPwr=1, CPEn=0 */
216
217 ret = max8997_update_reg(info->muic,
218 MAX8997_MUIC_REG_CONTROL2, ctrl2,
219 CONTROL2_LOWPWR_MASK | CONTROL2_CPEN_MASK);
220 if (ret < 0) {
221 dev_err(info->dev, "failed to update MUIC register\n");
Sachin Kamat3ad9e862013-04-08 09:13:18 +0900222 return ret;
Chanwoo Choi07c70502013-02-13 08:42:37 +0900223 }
224
225 dev_info(info->dev,
226 "CONTROL1 : 0x%02x, CONTROL2 : 0x%02x, state : %s\n",
227 ctrl1, ctrl2, attached ? "attached" : "detached");
228
229 return 0;
230}
231
Chanwoo Choif73f6232013-02-13 12:05:42 +0900232/*
233 * max8997_muic_get_cable_type - Return cable type and check cable state
234 * @info: the instance including private data of max8997 MUIC
235 * @group: the path according to attached cable
236 * @attached: store cable state and return
237 *
238 * This function check the cable state either attached or detached,
239 * and then divide precise type of cable according to cable group.
240 * - MAX8997_CABLE_GROUP_ADC
241 * - MAX8997_CABLE_GROUP_CHG
242 */
243static int max8997_muic_get_cable_type(struct max8997_muic_info *info,
244 enum max8997_muic_cable_group group, bool *attached)
245{
246 int cable_type = 0;
247 int adc;
248 int chg_type;
249
250 switch (group) {
251 case MAX8997_CABLE_GROUP_ADC:
252 /*
253 * Read ADC value to check cable type and decide cable state
254 * according to cable type
255 */
256 adc = info->status[0] & STATUS1_ADC_MASK;
257 adc >>= STATUS1_ADC_SHIFT;
258
259 /*
260 * Check current cable state/cable type and store cable type
261 * (info->prev_cable_type) for handling cable when cable is
262 * detached.
263 */
264 if (adc == MAX8997_MUIC_ADC_OPEN) {
265 *attached = false;
266
267 cable_type = info->prev_cable_type;
268 info->prev_cable_type = MAX8997_MUIC_ADC_OPEN;
269 } else {
270 *attached = true;
271
272 cable_type = info->prev_cable_type = adc;
273 }
274 break;
275 case MAX8997_CABLE_GROUP_CHG:
276 /*
277 * Read charger type to check cable type and decide cable state
278 * according to type of charger cable.
279 */
280 chg_type = info->status[1] & STATUS2_CHGTYP_MASK;
281 chg_type >>= STATUS2_CHGTYP_SHIFT;
282
283 if (chg_type == MAX8997_CHARGER_TYPE_NONE) {
284 *attached = false;
285
286 cable_type = info->prev_chg_type;
287 info->prev_chg_type = MAX8997_CHARGER_TYPE_NONE;
288 } else {
289 *attached = true;
290
291 /*
292 * Check current cable state/cable type and store cable
293 * type(info->prev_chg_type) for handling cable when
294 * charger cable is detached.
295 */
296 cable_type = info->prev_chg_type = chg_type;
297 }
298
299 break;
300 default:
301 dev_err(info->dev, "Unknown cable group (%d)\n", group);
302 cable_type = -EINVAL;
303 break;
304 }
305
306 return cable_type;
307}
308
Donggeun Kim99f09be2011-11-24 18:12:18 +0900309static int max8997_muic_handle_usb(struct max8997_muic_info *info,
310 enum max8997_muic_usb_type usb_type, bool attached)
311{
Donggeun Kim99f09be2011-11-24 18:12:18 +0900312 int ret = 0;
313
Marek Szyprowskia2dc5092018-11-13 16:38:47 +0100314 ret = max8997_muic_set_path(info, info->path_usb, attached);
315 if (ret < 0) {
316 dev_err(info->dev, "failed to update muic register\n");
317 return ret;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900318 }
319
Chanwoo Choib76668b2012-05-09 12:31:58 +0900320 switch (usb_type) {
321 case MAX8997_USB_HOST:
Chanwoo Choi8670b452016-08-16 15:55:34 +0900322 extcon_set_state_sync(info->edev, EXTCON_USB_HOST, attached);
Chanwoo Choib76668b2012-05-09 12:31:58 +0900323 break;
324 case MAX8997_USB_DEVICE:
Chanwoo Choi8670b452016-08-16 15:55:34 +0900325 extcon_set_state_sync(info->edev, EXTCON_USB, attached);
326 extcon_set_state_sync(info->edev, EXTCON_CHG_USB_SDP,
Chanwoo Choi8b45b6a2015-11-09 10:10:15 +0900327 attached);
Chanwoo Choib76668b2012-05-09 12:31:58 +0900328 break;
329 default:
Chanwoo Choif73f6232013-02-13 12:05:42 +0900330 dev_err(info->dev, "failed to detect %s usb cable\n",
331 attached ? "attached" : "detached");
332 return -EINVAL;
Chanwoo Choib76668b2012-05-09 12:31:58 +0900333 }
334
Chanwoo Choif73f6232013-02-13 12:05:42 +0900335 return 0;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900336}
337
Donggeun Kim99f09be2011-11-24 18:12:18 +0900338static int max8997_muic_handle_dock(struct max8997_muic_info *info,
Chanwoo Choif73f6232013-02-13 12:05:42 +0900339 int cable_type, bool attached)
Donggeun Kim99f09be2011-11-24 18:12:18 +0900340{
Donggeun Kim99f09be2011-11-24 18:12:18 +0900341 int ret = 0;
342
Chanwoo Choi07c70502013-02-13 08:42:37 +0900343 ret = max8997_muic_set_path(info, CONTROL1_SW_AUDIO, attached);
Donggeun Kim99f09be2011-11-24 18:12:18 +0900344 if (ret) {
345 dev_err(info->dev, "failed to update muic register\n");
Chanwoo Choif73f6232013-02-13 12:05:42 +0900346 return ret;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900347 }
348
Chanwoo Choif73f6232013-02-13 12:05:42 +0900349 switch (cable_type) {
350 case MAX8997_MUIC_ADC_AV_CABLE_NOLOAD:
Chanwoo Choif73f6232013-02-13 12:05:42 +0900351 case MAX8997_MUIC_ADC_FACTORY_MODE_UART_ON:
Chanwoo Choi8670b452016-08-16 15:55:34 +0900352 extcon_set_state_sync(info->edev, EXTCON_DOCK, attached);
Donggeun Kim99f09be2011-11-24 18:12:18 +0900353 break;
354 default:
Chanwoo Choif73f6232013-02-13 12:05:42 +0900355 dev_err(info->dev, "failed to detect %s dock device\n",
356 attached ? "attached" : "detached");
357 return -EINVAL;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900358 }
Chanwoo Choif73f6232013-02-13 12:05:42 +0900359
360 return 0;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900361}
362
363static int max8997_muic_handle_jig_uart(struct max8997_muic_info *info,
364 bool attached)
365{
Donggeun Kim99f09be2011-11-24 18:12:18 +0900366 int ret = 0;
367
368 /* switch to UART */
Chanwoo Choi685dc9a2013-02-13 15:04:15 +0900369 ret = max8997_muic_set_path(info, info->path_uart, attached);
Donggeun Kim99f09be2011-11-24 18:12:18 +0900370 if (ret) {
371 dev_err(info->dev, "failed to update muic register\n");
Sachin Kamat3ad9e862013-04-08 09:13:18 +0900372 return ret;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900373 }
374
Chanwoo Choi8670b452016-08-16 15:55:34 +0900375 extcon_set_state_sync(info->edev, EXTCON_JIG, attached);
Chanwoo Choif73f6232013-02-13 12:05:42 +0900376
377 return 0;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900378}
379
Chanwoo Choif73f6232013-02-13 12:05:42 +0900380static int max8997_muic_adc_handler(struct max8997_muic_info *info)
Donggeun Kim99f09be2011-11-24 18:12:18 +0900381{
Chanwoo Choif73f6232013-02-13 12:05:42 +0900382 int cable_type;
383 bool attached;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900384 int ret = 0;
385
Chanwoo Choif73f6232013-02-13 12:05:42 +0900386 /* Check cable state which is either detached or attached */
387 cable_type = max8997_muic_get_cable_type(info,
388 MAX8997_CABLE_GROUP_ADC, &attached);
389
390 switch (cable_type) {
391 case MAX8997_MUIC_ADC_GROUND:
392 ret = max8997_muic_handle_usb(info, MAX8997_USB_HOST, attached);
393 if (ret < 0)
394 return ret;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900395 break;
Chanwoo Choif73f6232013-02-13 12:05:42 +0900396 case MAX8997_MUIC_ADC_MHL:
Chanwoo Choi8670b452016-08-16 15:55:34 +0900397 extcon_set_state_sync(info->edev, EXTCON_DISP_MHL, attached);
Donggeun Kim99f09be2011-11-24 18:12:18 +0900398 break;
Chanwoo Choif73f6232013-02-13 12:05:42 +0900399 case MAX8997_MUIC_ADC_FACTORY_MODE_USB_OFF:
400 case MAX8997_MUIC_ADC_FACTORY_MODE_USB_ON:
Chanwoo Choic2275d22013-08-23 10:21:37 +0900401 ret = max8997_muic_handle_usb(info,
402 MAX8997_USB_DEVICE, attached);
Chanwoo Choif73f6232013-02-13 12:05:42 +0900403 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_AV_CABLE_NOLOAD:
407 case MAX8997_MUIC_ADC_FACTORY_MODE_UART_ON:
408 ret = max8997_muic_handle_dock(info, cable_type, attached);
409 if (ret < 0)
410 return ret;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900411 break;
Chanwoo Choif73f6232013-02-13 12:05:42 +0900412 case MAX8997_MUIC_ADC_FACTORY_MODE_UART_OFF:
413 ret = max8997_muic_handle_jig_uart(info, attached);
Donggeun Kim99f09be2011-11-24 18:12:18 +0900414 break;
Chanwoo Choif73f6232013-02-13 12:05:42 +0900415 case MAX8997_MUIC_ADC_REMOTE_S1_BUTTON:
416 case MAX8997_MUIC_ADC_REMOTE_S2_BUTTON:
417 case MAX8997_MUIC_ADC_REMOTE_S3_BUTTON:
418 case MAX8997_MUIC_ADC_REMOTE_S4_BUTTON:
419 case MAX8997_MUIC_ADC_REMOTE_S5_BUTTON:
420 case MAX8997_MUIC_ADC_REMOTE_S6_BUTTON:
421 case MAX8997_MUIC_ADC_REMOTE_S7_BUTTON:
422 case MAX8997_MUIC_ADC_REMOTE_S8_BUTTON:
423 case MAX8997_MUIC_ADC_REMOTE_S9_BUTTON:
424 case MAX8997_MUIC_ADC_REMOTE_S10_BUTTON:
425 case MAX8997_MUIC_ADC_REMOTE_S11_BUTTON:
426 case MAX8997_MUIC_ADC_REMOTE_S12_BUTTON:
427 case MAX8997_MUIC_ADC_RESERVED_ACC_1:
428 case MAX8997_MUIC_ADC_RESERVED_ACC_2:
429 case MAX8997_MUIC_ADC_RESERVED_ACC_3:
430 case MAX8997_MUIC_ADC_RESERVED_ACC_4:
431 case MAX8997_MUIC_ADC_RESERVED_ACC_5:
432 case MAX8997_MUIC_ADC_CEA936_AUDIO:
433 case MAX8997_MUIC_ADC_PHONE_POWERED_DEV:
434 case MAX8997_MUIC_ADC_TTY_CONVERTER:
435 case MAX8997_MUIC_ADC_UART_CABLE:
436 case MAX8997_MUIC_ADC_CEA936A_TYPE1_CHG:
437 case MAX8997_MUIC_ADC_CEA936A_TYPE2_CHG:
438 case MAX8997_MUIC_ADC_AUDIO_MODE_REMOTE:
439 /*
440 * This cable isn't used in general case if it is specially
441 * needed to detect additional cable, should implement
442 * proper operation when this cable is attached/detached.
443 */
444 dev_info(info->dev,
445 "cable is %s but it isn't used (type:0x%x)\n",
446 attached ? "attached" : "detached", cable_type);
447 return -EAGAIN;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900448 default:
Chanwoo Choif73f6232013-02-13 12:05:42 +0900449 dev_err(info->dev,
450 "failed to detect %s unknown cable (type:0x%x)\n",
451 attached ? "attached" : "detached", cable_type);
Devendra Naga3cafbd42012-08-31 14:00:19 +0530452 return -EINVAL;
Chanwoo Choib76668b2012-05-09 12:31:58 +0900453 }
Donggeun Kim99f09be2011-11-24 18:12:18 +0900454
Devendra Naga3cafbd42012-08-31 14:00:19 +0530455 return 0;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900456}
457
Chanwoo Choif73f6232013-02-13 12:05:42 +0900458static int max8997_muic_chg_handler(struct max8997_muic_info *info)
Donggeun Kim99f09be2011-11-24 18:12:18 +0900459{
Chanwoo Choif73f6232013-02-13 12:05:42 +0900460 int chg_type;
461 bool attached;
462 int adc;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900463
Chanwoo Choif73f6232013-02-13 12:05:42 +0900464 chg_type = max8997_muic_get_cable_type(info,
465 MAX8997_CABLE_GROUP_CHG, &attached);
Donggeun Kim99f09be2011-11-24 18:12:18 +0900466
Chanwoo Choif73f6232013-02-13 12:05:42 +0900467 switch (chg_type) {
Donggeun Kim99f09be2011-11-24 18:12:18 +0900468 case MAX8997_CHARGER_TYPE_NONE:
Donggeun Kim99f09be2011-11-24 18:12:18 +0900469 break;
470 case MAX8997_CHARGER_TYPE_USB:
Chanwoo Choif73f6232013-02-13 12:05:42 +0900471 adc = info->status[0] & STATUS1_ADC_MASK;
472 adc >>= STATUS1_ADC_SHIFT;
473
474 if ((adc & STATUS1_ADC_MASK) == MAX8997_MUIC_ADC_OPEN) {
Donggeun Kim99f09be2011-11-24 18:12:18 +0900475 max8997_muic_handle_usb(info,
Chanwoo Choif73f6232013-02-13 12:05:42 +0900476 MAX8997_USB_DEVICE, attached);
Donggeun Kim99f09be2011-11-24 18:12:18 +0900477 }
Donggeun Kim99f09be2011-11-24 18:12:18 +0900478 break;
479 case MAX8997_CHARGER_TYPE_DOWNSTREAM_PORT:
Chanwoo Choi8670b452016-08-16 15:55:34 +0900480 extcon_set_state_sync(info->edev, EXTCON_CHG_USB_CDP,
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900481 attached);
Chanwoo Choib76668b2012-05-09 12:31:58 +0900482 break;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900483 case MAX8997_CHARGER_TYPE_DEDICATED_CHG:
Chanwoo Choi8670b452016-08-16 15:55:34 +0900484 extcon_set_state_sync(info->edev, EXTCON_CHG_USB_DCP,
Chanwoo Choi11eecf92015-10-03 14:15:13 +0900485 attached);
Chanwoo Choib76668b2012-05-09 12:31:58 +0900486 break;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900487 case MAX8997_CHARGER_TYPE_500MA:
Chanwoo Choi8670b452016-08-16 15:55:34 +0900488 extcon_set_state_sync(info->edev, EXTCON_CHG_USB_SLOW,
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900489 attached);
Chanwoo Choib76668b2012-05-09 12:31:58 +0900490 break;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900491 case MAX8997_CHARGER_TYPE_1A:
Chanwoo Choi8670b452016-08-16 15:55:34 +0900492 extcon_set_state_sync(info->edev, EXTCON_CHG_USB_FAST,
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900493 attached);
Donggeun Kim99f09be2011-11-24 18:12:18 +0900494 break;
495 default:
Chanwoo Choif73f6232013-02-13 12:05:42 +0900496 dev_err(info->dev,
497 "failed to detect %s unknown chg cable (type:0x%x)\n",
498 attached ? "attached" : "detached", chg_type);
499 return -EINVAL;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900500 }
501
Chanwoo Choif73f6232013-02-13 12:05:42 +0900502 return 0;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900503}
504
505static void max8997_muic_irq_work(struct work_struct *work)
506{
507 struct max8997_muic_info *info = container_of(work,
508 struct max8997_muic_info, irq_work);
Chanwoo Choidca1a712012-07-02 09:03:00 +0900509 int irq_type = 0;
510 int i, ret;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900511
Chanwoo Choif73f6232013-02-13 12:05:42 +0900512 if (!info->edev)
513 return;
514
Donggeun Kim99f09be2011-11-24 18:12:18 +0900515 mutex_lock(&info->mutex);
516
Sachin Kamatad07d8b2013-08-05 14:32:03 +0530517 for (i = 0; i < ARRAY_SIZE(muic_irqs); i++)
Chanwoo Choif73f6232013-02-13 12:05:42 +0900518 if (info->irq == muic_irqs[i].virq)
519 irq_type = muic_irqs[i].irq;
520
Donggeun Kim99f09be2011-11-24 18:12:18 +0900521 ret = max8997_bulk_read(info->muic, MAX8997_MUIC_REG_STATUS1,
Chanwoo Choif73f6232013-02-13 12:05:42 +0900522 2, info->status);
Donggeun Kim99f09be2011-11-24 18:12:18 +0900523 if (ret) {
524 dev_err(info->dev, "failed to read muic register\n");
525 mutex_unlock(&info->mutex);
526 return;
527 }
528
Donggeun Kim99f09be2011-11-24 18:12:18 +0900529 switch (irq_type) {
Chanwoo Choif73f6232013-02-13 12:05:42 +0900530 case MAX8997_MUICIRQ_ADCError:
531 case MAX8997_MUICIRQ_ADCLow:
Donggeun Kim99f09be2011-11-24 18:12:18 +0900532 case MAX8997_MUICIRQ_ADC:
Chanwoo Choif73f6232013-02-13 12:05:42 +0900533 /* Handle all of cable except for charger cable */
534 ret = max8997_muic_adc_handler(info);
Donggeun Kim99f09be2011-11-24 18:12:18 +0900535 break;
Chanwoo Choif73f6232013-02-13 12:05:42 +0900536 case MAX8997_MUICIRQ_VBVolt:
537 case MAX8997_MUICIRQ_DBChg:
538 case MAX8997_MUICIRQ_DCDTmr:
539 case MAX8997_MUICIRQ_ChgDetRun:
Donggeun Kim99f09be2011-11-24 18:12:18 +0900540 case MAX8997_MUICIRQ_ChgTyp:
Chanwoo Choif73f6232013-02-13 12:05:42 +0900541 /* Handle charger cable */
542 ret = max8997_muic_chg_handler(info);
543 break;
544 case MAX8997_MUICIRQ_OVP:
Donggeun Kim99f09be2011-11-24 18:12:18 +0900545 break;
546 default:
Chanwoo Choib76668b2012-05-09 12:31:58 +0900547 dev_info(info->dev, "misc interrupt: irq %d occurred\n",
548 irq_type);
Chanwoo Choif73f6232013-02-13 12:05:42 +0900549 mutex_unlock(&info->mutex);
550 return;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900551 }
552
Chanwoo Choif73f6232013-02-13 12:05:42 +0900553 if (ret < 0)
554 dev_err(info->dev, "failed to handle MUIC interrupt\n");
555
Donggeun Kim99f09be2011-11-24 18:12:18 +0900556 mutex_unlock(&info->mutex);
Donggeun Kim99f09be2011-11-24 18:12:18 +0900557}
558
559static irqreturn_t max8997_muic_irq_handler(int irq, void *data)
560{
561 struct max8997_muic_info *info = data;
562
563 dev_dbg(info->dev, "irq:%d\n", irq);
564 info->irq = irq;
565
566 schedule_work(&info->irq_work);
567
568 return IRQ_HANDLED;
569}
570
Chanwoo Choif73f6232013-02-13 12:05:42 +0900571static int max8997_muic_detect_dev(struct max8997_muic_info *info)
Donggeun Kim99f09be2011-11-24 18:12:18 +0900572{
Chanwoo Choif73f6232013-02-13 12:05:42 +0900573 int ret = 0;
574 int adc;
575 int chg_type;
576 bool attached;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900577
Chanwoo Choif73f6232013-02-13 12:05:42 +0900578 mutex_lock(&info->mutex);
579
580 /* Read STATUSx register to detect accessory */
581 ret = max8997_bulk_read(info->muic,
582 MAX8997_MUIC_REG_STATUS1, 2, info->status);
Donggeun Kim99f09be2011-11-24 18:12:18 +0900583 if (ret) {
Chanwoo Choif73f6232013-02-13 12:05:42 +0900584 dev_err(info->dev, "failed to read MUIC register\n");
585 mutex_unlock(&info->mutex);
Sachin Kamat3ad9e862013-04-08 09:13:18 +0900586 return ret;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900587 }
588
Chanwoo Choif73f6232013-02-13 12:05:42 +0900589 adc = max8997_muic_get_cable_type(info, MAX8997_CABLE_GROUP_ADC,
590 &attached);
591 if (attached && adc != MAX8997_MUIC_ADC_OPEN) {
592 ret = max8997_muic_adc_handler(info);
593 if (ret < 0) {
594 dev_err(info->dev, "Cannot detect ADC cable\n");
595 mutex_unlock(&info->mutex);
596 return ret;
597 }
598 }
Donggeun Kim99f09be2011-11-24 18:12:18 +0900599
Chanwoo Choif73f6232013-02-13 12:05:42 +0900600 chg_type = max8997_muic_get_cable_type(info, MAX8997_CABLE_GROUP_CHG,
601 &attached);
602 if (attached && chg_type != MAX8997_CHARGER_TYPE_NONE) {
603 ret = max8997_muic_chg_handler(info);
604 if (ret < 0) {
605 dev_err(info->dev, "Cannot detect charger cable\n");
606 mutex_unlock(&info->mutex);
607 return ret;
608 }
609 }
Donggeun Kim99f09be2011-11-24 18:12:18 +0900610
Chanwoo Choif73f6232013-02-13 12:05:42 +0900611 mutex_unlock(&info->mutex);
Donggeun Kim99f09be2011-11-24 18:12:18 +0900612
Chanwoo Choif73f6232013-02-13 12:05:42 +0900613 return 0;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900614}
615
Chanwoo Choiaf5eb1a2013-02-13 15:10:00 +0900616static void max8997_muic_detect_cable_wq(struct work_struct *work)
617{
618 struct max8997_muic_info *info = container_of(to_delayed_work(work),
619 struct max8997_muic_info, wq_detcable);
620 int ret;
621
622 ret = max8997_muic_detect_dev(info);
623 if (ret < 0)
Jingoo Han6ed28102013-04-08 09:11:06 +0900624 dev_err(info->dev, "failed to detect cable type\n");
Chanwoo Choiaf5eb1a2013-02-13 15:10:00 +0900625}
626
Bill Pemberton44f34fd2012-11-19 13:23:21 -0500627static int max8997_muic_probe(struct platform_device *pdev)
Donggeun Kim99f09be2011-11-24 18:12:18 +0900628{
Chanwoo Choib76668b2012-05-09 12:31:58 +0900629 struct max8997_dev *max8997 = dev_get_drvdata(pdev->dev.parent);
630 struct max8997_platform_data *pdata = dev_get_platdata(max8997->dev);
Donggeun Kim99f09be2011-11-24 18:12:18 +0900631 struct max8997_muic_info *info;
Chanwoo Choiaf5eb1a2013-02-13 15:10:00 +0900632 int delay_jiffies;
Marek Szyprowski3e34c812018-11-08 14:45:48 +0100633 int cable_type;
634 bool attached;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900635 int ret, i;
636
Sachin Kamat0b672e92012-11-20 15:46:47 +0900637 info = devm_kzalloc(&pdev->dev, sizeof(struct max8997_muic_info),
638 GFP_KERNEL);
Jingoo Han0a16ee62014-07-23 10:07:09 +0900639 if (!info)
Sachin Kamat0b672e92012-11-20 15:46:47 +0900640 return -ENOMEM;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900641
Donggeun Kim99f09be2011-11-24 18:12:18 +0900642 info->dev = &pdev->dev;
Chanwoo Choib76668b2012-05-09 12:31:58 +0900643 info->muic = max8997->muic;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900644
645 platform_set_drvdata(pdev, info);
646 mutex_init(&info->mutex);
647
Donggeun Kim99f09be2011-11-24 18:12:18 +0900648 INIT_WORK(&info->irq_work, max8997_muic_irq_work);
649
650 for (i = 0; i < ARRAY_SIZE(muic_irqs); i++) {
651 struct max8997_muic_irq *muic_irq = &muic_irqs[i];
Sachin Kamat68c92742012-11-20 15:46:41 +0900652 unsigned int virq = 0;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900653
Chanwoo Choidca1a712012-07-02 09:03:00 +0900654 virq = irq_create_mapping(max8997->irq_domain, muic_irq->irq);
Sachin Kamat68c92742012-11-20 15:46:41 +0900655 if (!virq) {
656 ret = -EINVAL;
Chanwoo Choidca1a712012-07-02 09:03:00 +0900657 goto err_irq;
Sachin Kamat68c92742012-11-20 15:46:41 +0900658 }
Chanwoo Choidca1a712012-07-02 09:03:00 +0900659 muic_irq->virq = virq;
660
Chanwoo Choiae3b3212012-11-28 12:39:01 +0900661 ret = request_threaded_irq(virq, NULL,
662 max8997_muic_irq_handler,
663 IRQF_NO_SUSPEND,
664 muic_irq->name, info);
Donggeun Kim99f09be2011-11-24 18:12:18 +0900665 if (ret) {
666 dev_err(&pdev->dev,
Chanwoo Choi34825e52015-03-07 01:41:36 +0900667 "failed: irq request (IRQ: %d, error :%d)\n",
Donggeun Kim99f09be2011-11-24 18:12:18 +0900668 muic_irq->irq, ret);
Donggeun Kim99f09be2011-11-24 18:12:18 +0900669 goto err_irq;
670 }
671 }
672
Chanwoo Choib76668b2012-05-09 12:31:58 +0900673 /* External connector */
Chanwoo Choi22f9afb2014-04-21 20:37:51 +0900674 info->edev = devm_extcon_dev_allocate(&pdev->dev, max8997_extcon_cable);
675 if (IS_ERR(info->edev)) {
Chanwoo Choib76668b2012-05-09 12:31:58 +0900676 dev_err(&pdev->dev, "failed to allocate memory for extcon\n");
677 ret = -ENOMEM;
678 goto err_irq;
679 }
Chanwoo Choi22f9afb2014-04-21 20:37:51 +0900680
Sangjung Woo29238032014-04-21 19:10:13 +0900681 ret = devm_extcon_dev_register(&pdev->dev, info->edev);
Chanwoo Choib76668b2012-05-09 12:31:58 +0900682 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
Krzysztof Kozlowskidfee4112014-04-09 15:20:14 +0200687 if (pdata && pdata->muic_pdata) {
Chanwoo Choi810d6012013-02-18 10:15:03 +0900688 struct max8997_muic_platform_data *muic_pdata
689 = pdata->muic_pdata;
Chanwoo Choib76668b2012-05-09 12:31:58 +0900690
Chanwoo Choi810d6012013-02-18 10:15:03 +0900691 /* Initialize registers according to platform data */
692 for (i = 0; i < muic_pdata->num_init_data; i++) {
693 max8997_write_reg(info->muic,
694 muic_pdata->init_data[i].addr,
695 muic_pdata->init_data[i].data);
Chanwoo Choib76668b2012-05-09 12:31:58 +0900696 }
Donggeun Kim99f09be2011-11-24 18:12:18 +0900697
Chanwoo Choi810d6012013-02-18 10:15:03 +0900698 /*
699 * Default usb/uart path whether UART/USB or AUX_UART/AUX_USB
700 * h/w path of COMP2/COMN1 on CONTROL1 register.
701 */
702 if (muic_pdata->path_uart)
703 info->path_uart = muic_pdata->path_uart;
704 else
705 info->path_uart = CONTROL1_SW_UART;
706
707 if (muic_pdata->path_usb)
708 info->path_usb = muic_pdata->path_usb;
709 else
710 info->path_usb = CONTROL1_SW_USB;
711
712 /*
713 * Default delay time for detecting cable state
714 * after certain time.
715 */
716 if (muic_pdata->detcable_delay_ms)
717 delay_jiffies =
718 msecs_to_jiffies(muic_pdata->detcable_delay_ms);
719 else
720 delay_jiffies = msecs_to_jiffies(DELAY_MS_DEFAULT);
721 } else {
Chanwoo Choi685dc9a2013-02-13 15:04:15 +0900722 info->path_uart = CONTROL1_SW_UART;
Chanwoo Choi685dc9a2013-02-13 15:04:15 +0900723 info->path_usb = CONTROL1_SW_USB;
Chanwoo Choi810d6012013-02-18 10:15:03 +0900724 delay_jiffies = msecs_to_jiffies(DELAY_MS_DEFAULT);
725 }
Chanwoo Choi685dc9a2013-02-13 15:04:15 +0900726
Marek Szyprowski3e34c812018-11-08 14:45:48 +0100727 /* Set initial path for UART when JIG is connected to get serial logs */
728 ret = max8997_bulk_read(info->muic, MAX8997_MUIC_REG_STATUS1,
729 2, info->status);
730 if (ret) {
731 dev_err(info->dev, "failed to read MUIC register\n");
732 return ret;
733 }
734 cable_type = max8997_muic_get_cable_type(info,
735 MAX8997_CABLE_GROUP_ADC, &attached);
736 if (attached && cable_type == MAX8997_MUIC_ADC_FACTORY_MODE_UART_OFF)
737 max8997_muic_set_path(info, info->path_uart, true);
Chanwoo Choi685dc9a2013-02-13 15:04:15 +0900738
Chanwoo Choi027fcd52013-02-13 08:50:00 +0900739 /* Set ADC debounce time */
740 max8997_muic_set_debounce_time(info, ADC_DEBOUNCE_TIME_25MS);
741
Chanwoo Choiaf5eb1a2013-02-13 15:10:00 +0900742 /*
743 * Detect accessory after completing the initialization of platform
744 *
745 * - Use delayed workqueue to detect cable state and then
746 * notify cable state to notifiee/platform through uevent.
747 * After completing the booting of platform, the extcon provider
748 * driver should notify cable state to upper layer.
749 */
750 INIT_DELAYED_WORK(&info->wq_detcable, max8997_muic_detect_cable_wq);
Krzysztof Kozlowskibf9509e2014-04-09 15:20:15 +0200751 queue_delayed_work(system_power_efficient_wq, &info->wq_detcable,
752 delay_jiffies);
Donggeun Kim99f09be2011-11-24 18:12:18 +0900753
Chanwoo Choiaf5eb1a2013-02-13 15:10:00 +0900754 return 0;
Donggeun Kim99f09be2011-11-24 18:12:18 +0900755
756err_irq:
Axel Lin3241d562012-03-26 09:57:08 +0800757 while (--i >= 0)
Chanwoo Choidca1a712012-07-02 09:03:00 +0900758 free_irq(muic_irqs[i].virq, info);
Donggeun Kim99f09be2011-11-24 18:12:18 +0900759 return ret;
760}
761
Bill Pemberton93ed0322012-11-19 13:25:49 -0500762static int max8997_muic_remove(struct platform_device *pdev)
Donggeun Kim99f09be2011-11-24 18:12:18 +0900763{
764 struct max8997_muic_info *info = platform_get_drvdata(pdev);
Donggeun Kim99f09be2011-11-24 18:12:18 +0900765 int i;
766
Donggeun Kim99f09be2011-11-24 18:12:18 +0900767 for (i = 0; i < ARRAY_SIZE(muic_irqs); i++)
Chanwoo Choidca1a712012-07-02 09:03:00 +0900768 free_irq(muic_irqs[i].virq, info);
Donggeun Kim71e58782011-12-15 18:20:47 +0900769 cancel_work_sync(&info->irq_work);
Donggeun Kim99f09be2011-11-24 18:12:18 +0900770
Donggeun Kim99f09be2011-11-24 18:12:18 +0900771 return 0;
772}
773
774static struct platform_driver max8997_muic_driver = {
775 .driver = {
Chanwoo Choib76668b2012-05-09 12:31:58 +0900776 .name = DEV_NAME,
Donggeun Kim99f09be2011-11-24 18:12:18 +0900777 },
778 .probe = max8997_muic_probe,
Bill Pemberton5f7e2222012-11-19 13:20:06 -0500779 .remove = max8997_muic_remove,
Donggeun Kim99f09be2011-11-24 18:12:18 +0900780};
781
Axel Linb00e1262012-01-22 15:33:49 +0800782module_platform_driver(max8997_muic_driver);
Donggeun Kim99f09be2011-11-24 18:12:18 +0900783
Chanwoo Choib76668b2012-05-09 12:31:58 +0900784MODULE_DESCRIPTION("Maxim MAX8997 Extcon driver");
Donggeun Kim99f09be2011-11-24 18:12:18 +0900785MODULE_AUTHOR("Donggeun Kim <dg77.kim@samsung.com>");
786MODULE_LICENSE("GPL");