2 * extcon-max77693.c - MAX77693 extcon driver to support MAX77693 MUIC
4 * Copyright (C) 2012 Samsung Electrnoics
5 * Chanwoo Choi <cw00.choi@samsung.com>
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.
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.
18 #include <linux/kernel.h>
19 #include <linux/module.h>
20 #include <linux/i2c.h>
21 #include <linux/slab.h>
22 #include <linux/input.h>
23 #include <linux/interrupt.h>
24 #include <linux/err.h>
25 #include <linux/platform_device.h>
26 #include <linux/mfd/max77693.h>
27 #include <linux/mfd/max77693-private.h>
28 #include <linux/extcon.h>
29 #include <linux/regmap.h>
30 #include <linux/irqdomain.h>
32 #define DEV_NAME "max77693-muic"
33 #define DELAY_MS_DEFAULT 20000 /* unit: millisecond */
36 * Default value of MAX77693 register to bring up MUIC device.
37 * If user don't set some initial value for MUIC device through platform data,
38 * extcon-max77693 driver use 'default_init_data' to bring up base operation
39 * of MAX77693 MUIC device.
41 static struct max77693_reg_data default_init_data
[] = {
43 /* STATUS2 - [3]ChgDetRun */
44 .addr
= MAX77693_MUIC_REG_STATUS2
,
45 .data
= STATUS2_CHGDETRUN_MASK
,
47 /* INTMASK1 - Unmask [3]ADC1KM,[0]ADCM */
48 .addr
= MAX77693_MUIC_REG_INTMASK1
,
49 .data
= INTMASK1_ADC1K_MASK
52 /* INTMASK2 - Unmask [0]ChgTypM */
53 .addr
= MAX77693_MUIC_REG_INTMASK2
,
54 .data
= INTMASK2_CHGTYP_MASK
,
56 /* INTMASK3 - Mask all of interrupts */
57 .addr
= MAX77693_MUIC_REG_INTMASK3
,
61 .addr
= MAX77693_MUIC_REG_CDETCTRL2
,
62 .data
= CDETCTRL2_VIDRMEN_MASK
63 | CDETCTRL2_DXOVPEN_MASK
,
67 enum max77693_muic_adc_debounce_time
{
68 ADC_DEBOUNCE_TIME_5MS
= 0,
69 ADC_DEBOUNCE_TIME_10MS
,
70 ADC_DEBOUNCE_TIME_25MS
,
71 ADC_DEBOUNCE_TIME_38_62MS
,
74 struct max77693_muic_info
{
76 struct max77693_dev
*max77693
;
77 struct extcon_dev
*edev
;
79 int prev_cable_type_gnd
;
85 struct work_struct irq_work
;
89 * Use delayed workqueue to detect cable state and then
90 * notify cable state to notifiee/platform through uevent.
91 * After completing the booting of platform, the extcon provider
92 * driver should notify cable state to upper layer.
94 struct delayed_work wq_detcable
;
96 /* Button of dock device */
97 struct input_dev
*dock
;
100 * Default usb/uart path whether UART/USB or AUX_UART/AUX_USB
101 * h/w path of COMP2/COMN1 on CONTROL1 register.
107 enum max77693_muic_cable_group
{
108 MAX77693_CABLE_GROUP_ADC
= 0,
109 MAX77693_CABLE_GROUP_ADC_GND
,
110 MAX77693_CABLE_GROUP_CHG
,
111 MAX77693_CABLE_GROUP_VBVOLT
,
114 enum max77693_muic_charger_type
{
115 MAX77693_CHARGER_TYPE_NONE
= 0,
116 MAX77693_CHARGER_TYPE_USB
,
117 MAX77693_CHARGER_TYPE_DOWNSTREAM_PORT
,
118 MAX77693_CHARGER_TYPE_DEDICATED_CHG
,
119 MAX77693_CHARGER_TYPE_APPLE_500MA
,
120 MAX77693_CHARGER_TYPE_APPLE_1A_2A
,
121 MAX77693_CHARGER_TYPE_DEAD_BATTERY
= 7,
125 * struct max77693_muic_irq
126 * @irq: the index of irq list of MUIC device.
127 * @name: the name of irq.
128 * @virq: the virtual irq to use irq domain
130 struct max77693_muic_irq
{
136 static struct max77693_muic_irq muic_irqs
[] = {
137 { MAX77693_MUIC_IRQ_INT1_ADC
, "muic-ADC" },
138 { MAX77693_MUIC_IRQ_INT1_ADC_LOW
, "muic-ADCLOW" },
139 { MAX77693_MUIC_IRQ_INT1_ADC_ERR
, "muic-ADCError" },
140 { MAX77693_MUIC_IRQ_INT1_ADC1K
, "muic-ADC1K" },
141 { MAX77693_MUIC_IRQ_INT2_CHGTYP
, "muic-CHGTYP" },
142 { MAX77693_MUIC_IRQ_INT2_CHGDETREUN
, "muic-CHGDETREUN" },
143 { MAX77693_MUIC_IRQ_INT2_DCDTMR
, "muic-DCDTMR" },
144 { MAX77693_MUIC_IRQ_INT2_DXOVP
, "muic-DXOVP" },
145 { MAX77693_MUIC_IRQ_INT2_VBVOLT
, "muic-VBVOLT" },
146 { MAX77693_MUIC_IRQ_INT2_VIDRM
, "muic-VIDRM" },
147 { MAX77693_MUIC_IRQ_INT3_EOC
, "muic-EOC" },
148 { MAX77693_MUIC_IRQ_INT3_CGMBC
, "muic-CGMBC" },
149 { MAX77693_MUIC_IRQ_INT3_OVP
, "muic-OVP" },
150 { MAX77693_MUIC_IRQ_INT3_MBCCHG_ERR
, "muic-MBCCHG_ERR" },
151 { MAX77693_MUIC_IRQ_INT3_CHG_ENABLED
, "muic-CHG_ENABLED" },
152 { MAX77693_MUIC_IRQ_INT3_BAT_DET
, "muic-BAT_DET" },
155 /* Define supported accessory type */
156 enum max77693_muic_acc_type
{
157 MAX77693_MUIC_ADC_GROUND
= 0x0,
158 MAX77693_MUIC_ADC_SEND_END_BUTTON
,
159 MAX77693_MUIC_ADC_REMOTE_S1_BUTTON
,
160 MAX77693_MUIC_ADC_REMOTE_S2_BUTTON
,
161 MAX77693_MUIC_ADC_REMOTE_S3_BUTTON
,
162 MAX77693_MUIC_ADC_REMOTE_S4_BUTTON
,
163 MAX77693_MUIC_ADC_REMOTE_S5_BUTTON
,
164 MAX77693_MUIC_ADC_REMOTE_S6_BUTTON
,
165 MAX77693_MUIC_ADC_REMOTE_S7_BUTTON
,
166 MAX77693_MUIC_ADC_REMOTE_S8_BUTTON
,
167 MAX77693_MUIC_ADC_REMOTE_S9_BUTTON
,
168 MAX77693_MUIC_ADC_REMOTE_S10_BUTTON
,
169 MAX77693_MUIC_ADC_REMOTE_S11_BUTTON
,
170 MAX77693_MUIC_ADC_REMOTE_S12_BUTTON
,
171 MAX77693_MUIC_ADC_RESERVED_ACC_1
,
172 MAX77693_MUIC_ADC_RESERVED_ACC_2
,
173 MAX77693_MUIC_ADC_RESERVED_ACC_3
,
174 MAX77693_MUIC_ADC_RESERVED_ACC_4
,
175 MAX77693_MUIC_ADC_RESERVED_ACC_5
,
176 MAX77693_MUIC_ADC_CEA936_AUDIO
,
177 MAX77693_MUIC_ADC_PHONE_POWERED_DEV
,
178 MAX77693_MUIC_ADC_TTY_CONVERTER
,
179 MAX77693_MUIC_ADC_UART_CABLE
,
180 MAX77693_MUIC_ADC_CEA936A_TYPE1_CHG
,
181 MAX77693_MUIC_ADC_FACTORY_MODE_USB_OFF
,
182 MAX77693_MUIC_ADC_FACTORY_MODE_USB_ON
,
183 MAX77693_MUIC_ADC_AV_CABLE_NOLOAD
,
184 MAX77693_MUIC_ADC_CEA936A_TYPE2_CHG
,
185 MAX77693_MUIC_ADC_FACTORY_MODE_UART_OFF
,
186 MAX77693_MUIC_ADC_FACTORY_MODE_UART_ON
,
187 MAX77693_MUIC_ADC_AUDIO_MODE_REMOTE
,
188 MAX77693_MUIC_ADC_OPEN
,
190 /* The below accessories have same ADC value so ADCLow and
191 ADC1K bit is used to separate specific accessory */
192 /* ADC|VBVolot|ADCLow|ADC1K| */
193 MAX77693_MUIC_GND_USB_OTG
= 0x100, /* 0x0| 0| 0| 0| */
194 MAX77693_MUIC_GND_USB_OTG_VB
= 0x104, /* 0x0| 1| 0| 0| */
195 MAX77693_MUIC_GND_AV_CABLE_LOAD
= 0x102,/* 0x0| 0| 1| 0| */
196 MAX77693_MUIC_GND_MHL
= 0x103, /* 0x0| 0| 1| 1| */
197 MAX77693_MUIC_GND_MHL_VB
= 0x107, /* 0x0| 1| 1| 1| */
201 * MAX77693 MUIC device support below list of accessories(external connector)
204 EXTCON_CABLE_USB
= 0,
205 EXTCON_CABLE_USB_HOST
,
207 EXTCON_CABLE_FAST_CHARGER
,
208 EXTCON_CABLE_SLOW_CHARGER
,
209 EXTCON_CABLE_CHARGE_DOWNSTREAM
,
212 EXTCON_CABLE_JIG_USB_ON
,
213 EXTCON_CABLE_JIG_USB_OFF
,
214 EXTCON_CABLE_JIG_UART_OFF
,
215 EXTCON_CABLE_JIG_UART_ON
,
216 EXTCON_CABLE_DOCK_SMART
,
217 EXTCON_CABLE_DOCK_DESK
,
218 EXTCON_CABLE_DOCK_AUDIO
,
223 static const char *max77693_extcon_cable
[] = {
224 [EXTCON_CABLE_USB
] = "USB",
225 [EXTCON_CABLE_USB_HOST
] = "USB-Host",
226 [EXTCON_CABLE_TA
] = "TA",
227 [EXTCON_CABLE_FAST_CHARGER
] = "Fast-charger",
228 [EXTCON_CABLE_SLOW_CHARGER
] = "Slow-charger",
229 [EXTCON_CABLE_CHARGE_DOWNSTREAM
] = "Charge-downstream",
230 [EXTCON_CABLE_MHL
] = "MHL",
231 [EXTCON_CABLE_MHL_TA
] = "MHL_TA",
232 [EXTCON_CABLE_JIG_USB_ON
] = "JIG-USB-ON",
233 [EXTCON_CABLE_JIG_USB_OFF
] = "JIG-USB-OFF",
234 [EXTCON_CABLE_JIG_UART_OFF
] = "JIG-UART-OFF",
235 [EXTCON_CABLE_JIG_UART_ON
] = "Dock-Car",
236 [EXTCON_CABLE_DOCK_SMART
] = "Dock-Smart",
237 [EXTCON_CABLE_DOCK_DESK
] = "Dock-Desk",
238 [EXTCON_CABLE_DOCK_AUDIO
] = "Dock-Audio",
244 * max77693_muic_set_debounce_time - Set the debounce time of ADC
245 * @info: the instance including private data of max77693 MUIC
246 * @time: the debounce time of ADC
248 static int max77693_muic_set_debounce_time(struct max77693_muic_info
*info
,
249 enum max77693_muic_adc_debounce_time time
)
254 case ADC_DEBOUNCE_TIME_5MS
:
255 case ADC_DEBOUNCE_TIME_10MS
:
256 case ADC_DEBOUNCE_TIME_25MS
:
257 case ADC_DEBOUNCE_TIME_38_62MS
:
259 * Don't touch BTLDset, JIGset when you want to change adc
260 * debounce time. If it writes other than 0 to BTLDset, JIGset
261 * muic device will be reset and loose current state.
263 ret
= regmap_write(info
->max77693
->regmap_muic
,
264 MAX77693_MUIC_REG_CTRL3
,
265 time
<< CONTROL3_ADCDBSET_SHIFT
);
267 dev_err(info
->dev
, "failed to set ADC debounce time\n");
272 dev_err(info
->dev
, "invalid ADC debounce time\n");
280 * max77693_muic_set_path - Set hardware line according to attached cable
281 * @info: the instance including private data of max77693 MUIC
282 * @value: the path according to attached cable
283 * @attached: the state of cable (true:attached, false:detached)
285 * The max77693 MUIC device share outside H/W line among a varity of cables
286 * so, this function set internal path of H/W line according to the type of
289 static int max77693_muic_set_path(struct max77693_muic_info
*info
,
290 u8 val
, bool attached
)
293 unsigned int ctrl1
, ctrl2
= 0;
298 ctrl1
= CONTROL1_SW_OPEN
;
300 ret
= regmap_update_bits(info
->max77693
->regmap_muic
,
301 MAX77693_MUIC_REG_CTRL1
, COMP_SW_MASK
, ctrl1
);
303 dev_err(info
->dev
, "failed to update MUIC register\n");
308 ctrl2
|= CONTROL2_CPEN_MASK
; /* LowPwr=0, CPEn=1 */
310 ctrl2
|= CONTROL2_LOWPWR_MASK
; /* LowPwr=1, CPEn=0 */
312 ret
= regmap_update_bits(info
->max77693
->regmap_muic
,
313 MAX77693_MUIC_REG_CTRL2
,
314 CONTROL2_LOWPWR_MASK
| CONTROL2_CPEN_MASK
, ctrl2
);
316 dev_err(info
->dev
, "failed to update MUIC register\n");
321 "CONTROL1 : 0x%02x, CONTROL2 : 0x%02x, state : %s\n",
322 ctrl1
, ctrl2
, attached
? "attached" : "detached");
328 * max77693_muic_get_cable_type - Return cable type and check cable state
329 * @info: the instance including private data of max77693 MUIC
330 * @group: the path according to attached cable
331 * @attached: store cable state and return
333 * This function check the cable state either attached or detached,
334 * and then divide precise type of cable according to cable group.
335 * - MAX77693_CABLE_GROUP_ADC
336 * - MAX77693_CABLE_GROUP_ADC_GND
337 * - MAX77693_CABLE_GROUP_CHG
338 * - MAX77693_CABLE_GROUP_VBVOLT
340 static int max77693_muic_get_cable_type(struct max77693_muic_info
*info
,
341 enum max77693_muic_cable_group group
, bool *attached
)
351 case MAX77693_CABLE_GROUP_ADC
:
353 * Read ADC value to check cable type and decide cable state
354 * according to cable type
356 adc
= info
->status
[0] & STATUS1_ADC_MASK
;
357 adc
>>= STATUS1_ADC_SHIFT
;
360 * Check current cable state/cable type and store cable type
361 * (info->prev_cable_type) for handling cable when cable is
364 if (adc
== MAX77693_MUIC_ADC_OPEN
) {
367 cable_type
= info
->prev_cable_type
;
368 info
->prev_cable_type
= MAX77693_MUIC_ADC_OPEN
;
372 cable_type
= info
->prev_cable_type
= adc
;
375 case MAX77693_CABLE_GROUP_ADC_GND
:
377 * Read ADC value to check cable type and decide cable state
378 * according to cable type
380 adc
= info
->status
[0] & STATUS1_ADC_MASK
;
381 adc
>>= STATUS1_ADC_SHIFT
;
384 * Check current cable state/cable type and store cable type
385 * (info->prev_cable_type/_gnd) for handling cable when cable
388 if (adc
== MAX77693_MUIC_ADC_OPEN
) {
391 cable_type
= info
->prev_cable_type_gnd
;
392 info
->prev_cable_type_gnd
= MAX77693_MUIC_ADC_OPEN
;
396 adclow
= info
->status
[0] & STATUS1_ADCLOW_MASK
;
397 adclow
>>= STATUS1_ADCLOW_SHIFT
;
398 adc1k
= info
->status
[0] & STATUS1_ADC1K_MASK
;
399 adc1k
>>= STATUS1_ADC1K_SHIFT
;
401 vbvolt
= info
->status
[1] & STATUS2_VBVOLT_MASK
;
402 vbvolt
>>= STATUS2_VBVOLT_SHIFT
;
405 * [0x1|VBVolt|ADCLow|ADC1K]
406 * [0x1| 0| 0| 0] USB_OTG
407 * [0x1| 1| 0| 0] USB_OTG_VB
408 * [0x1| 0| 1| 0] Audio Video cable with load
409 * [0x1| 0| 1| 1] MHL without charging cable
410 * [0x1| 1| 1| 1] MHL with charging cable
412 cable_type
= ((0x1 << 8)
417 info
->prev_cable_type
= adc
;
418 info
->prev_cable_type_gnd
= cable_type
;
422 case MAX77693_CABLE_GROUP_CHG
:
424 * Read charger type to check cable type and decide cable state
425 * according to type of charger cable.
427 chg_type
= info
->status
[1] & STATUS2_CHGTYP_MASK
;
428 chg_type
>>= STATUS2_CHGTYP_SHIFT
;
430 if (chg_type
== MAX77693_CHARGER_TYPE_NONE
) {
433 cable_type
= info
->prev_chg_type
;
434 info
->prev_chg_type
= MAX77693_CHARGER_TYPE_NONE
;
439 * Check current cable state/cable type and store cable
440 * type(info->prev_chg_type) for handling cable when
441 * charger cable is detached.
443 cable_type
= info
->prev_chg_type
= chg_type
;
447 case MAX77693_CABLE_GROUP_VBVOLT
:
449 * Read ADC value to check cable type and decide cable state
450 * according to cable type
452 adc
= info
->status
[0] & STATUS1_ADC_MASK
;
453 adc
>>= STATUS1_ADC_SHIFT
;
454 chg_type
= info
->status
[1] & STATUS2_CHGTYP_MASK
;
455 chg_type
>>= STATUS2_CHGTYP_SHIFT
;
457 if (adc
== MAX77693_MUIC_ADC_OPEN
458 && chg_type
== MAX77693_CHARGER_TYPE_NONE
)
464 * Read vbvolt field, if vbvolt is 1,
465 * this cable is used for charging.
467 vbvolt
= info
->status
[1] & STATUS2_VBVOLT_MASK
;
468 vbvolt
>>= STATUS2_VBVOLT_SHIFT
;
473 dev_err(info
->dev
, "Unknown cable group (%d)\n", group
);
474 cable_type
= -EINVAL
;
481 static int max77693_muic_dock_handler(struct max77693_muic_info
*info
,
482 int cable_type
, bool attached
)
487 char dock_name
[CABLE_NAME_MAX
];
490 "external connector is %s (adc:0x%02x)\n",
491 attached
? "attached" : "detached", cable_type
);
493 switch (cable_type
) {
494 case MAX77693_MUIC_ADC_RESERVED_ACC_3
: /* Dock-Smart */
496 * Check power cable whether attached or detached state.
497 * The Dock-Smart device need surely external power supply.
498 * If power cable(USB/TA) isn't connected to Dock device,
499 * user can't use Dock-Smart for desktop mode.
501 vbvolt
= max77693_muic_get_cable_type(info
,
502 MAX77693_CABLE_GROUP_VBVOLT
, &cable_attached
);
503 if (attached
&& !vbvolt
) {
505 "Cannot detect external power supply\n");
510 * Notify Dock-Smart/MHL state.
511 * - Dock-Smart device include three type of cable which
512 * are HDMI, USB for mouse/keyboard and micro-usb port
513 * for USB/TA cable. Dock-Smart device need always exteranl
514 * power supply(USB/TA cable through micro-usb cable). Dock-
515 * Smart device support screen output of target to separate
516 * monitor and mouse/keyboard for desktop mode.
518 * Features of 'USB/TA cable with Dock-Smart device'
520 * - Support external output feature of audio
521 * - Support charging through micro-usb port without data
522 * connection if TA cable is connected to target.
523 * - Support charging and data connection through micro-usb port
524 * if USB cable is connected between target and host
526 * - Support OTG device (Mouse/Keyboard)
528 ret
= max77693_muic_set_path(info
, info
->path_usb
, attached
);
532 extcon_set_cable_state(info
->edev
, "Dock-Smart", attached
);
533 extcon_set_cable_state(info
->edev
, "MHL", attached
);
535 case MAX77693_MUIC_ADC_FACTORY_MODE_UART_ON
: /* Dock-Car */
536 strcpy(dock_name
, "Dock-Car");
538 case MAX77693_MUIC_ADC_AUDIO_MODE_REMOTE
: /* Dock-Desk */
539 strcpy(dock_name
, "Dock-Desk");
541 case MAX77693_MUIC_ADC_AV_CABLE_NOLOAD
: /* Dock-Audio */
542 strcpy(dock_name
, "Dock-Audio");
544 extcon_set_cable_state(info
->edev
, "USB", false);
547 dev_err(info
->dev
, "failed to detect %s dock device\n",
548 attached
? "attached" : "detached");
552 /* Dock-Car/Desk/Audio, PATH:AUDIO */
553 ret
= max77693_muic_set_path(info
, CONTROL1_SW_AUDIO
, attached
);
556 extcon_set_cable_state(info
->edev
, dock_name
, attached
);
562 static int max77693_muic_dock_button_handler(struct max77693_muic_info
*info
,
563 int button_type
, bool attached
)
565 struct input_dev
*dock
= info
->dock
;
568 switch (button_type
) {
569 case MAX77693_MUIC_ADC_REMOTE_S3_BUTTON
-1
570 ... MAX77693_MUIC_ADC_REMOTE_S3_BUTTON
+1:
572 code
= KEY_PREVIOUSSONG
;
574 case MAX77693_MUIC_ADC_REMOTE_S7_BUTTON
-1
575 ... MAX77693_MUIC_ADC_REMOTE_S7_BUTTON
+1:
579 case MAX77693_MUIC_ADC_REMOTE_S9_BUTTON
:
581 code
= KEY_VOLUMEDOWN
;
583 case MAX77693_MUIC_ADC_REMOTE_S10_BUTTON
:
587 case MAX77693_MUIC_ADC_REMOTE_S12_BUTTON
-1
588 ... MAX77693_MUIC_ADC_REMOTE_S12_BUTTON
+1:
589 /* DOCK_KEY_PLAY_PAUSE */
590 code
= KEY_PLAYPAUSE
;
594 "failed to detect %s key (adc:0x%x)\n",
595 attached
? "pressed" : "released", button_type
);
599 input_event(dock
, EV_KEY
, code
, attached
);
605 static int max77693_muic_adc_ground_handler(struct max77693_muic_info
*info
)
611 cable_type_gnd
= max77693_muic_get_cable_type(info
,
612 MAX77693_CABLE_GROUP_ADC_GND
, &attached
);
614 switch (cable_type_gnd
) {
615 case MAX77693_MUIC_GND_USB_OTG
:
616 case MAX77693_MUIC_GND_USB_OTG_VB
:
617 /* USB_OTG, PATH: AP_USB */
618 ret
= max77693_muic_set_path(info
, CONTROL1_SW_USB
, attached
);
621 extcon_set_cable_state(info
->edev
, "USB-Host", attached
);
623 case MAX77693_MUIC_GND_AV_CABLE_LOAD
:
624 /* Audio Video Cable with load, PATH:AUDIO */
625 ret
= max77693_muic_set_path(info
, CONTROL1_SW_AUDIO
, attached
);
628 extcon_set_cable_state(info
->edev
,
629 "Audio-video-load", attached
);
631 case MAX77693_MUIC_GND_MHL
:
632 case MAX77693_MUIC_GND_MHL_VB
:
633 /* MHL or MHL with USB/TA cable */
634 extcon_set_cable_state(info
->edev
, "MHL", attached
);
637 dev_err(info
->dev
, "failed to detect %s cable of gnd type\n",
638 attached
? "attached" : "detached");
645 static int max77693_muic_jig_handler(struct max77693_muic_info
*info
,
646 int cable_type
, bool attached
)
650 u8 path
= CONTROL1_SW_OPEN
;
653 "external connector is %s (adc:0x%02x)\n",
654 attached
? "attached" : "detached", cable_type
);
656 switch (cable_type
) {
657 case MAX77693_MUIC_ADC_FACTORY_MODE_USB_OFF
: /* ADC_JIG_USB_OFF */
659 strcpy(cable_name
, "JIG-USB-OFF");
660 path
= CONTROL1_SW_USB
;
662 case MAX77693_MUIC_ADC_FACTORY_MODE_USB_ON
: /* ADC_JIG_USB_ON */
664 strcpy(cable_name
, "JIG-USB-ON");
665 path
= CONTROL1_SW_USB
;
667 case MAX77693_MUIC_ADC_FACTORY_MODE_UART_OFF
: /* ADC_JIG_UART_OFF */
669 strcpy(cable_name
, "JIG-UART-OFF");
670 path
= CONTROL1_SW_UART
;
673 dev_err(info
->dev
, "failed to detect %s jig cable\n",
674 attached
? "attached" : "detached");
678 ret
= max77693_muic_set_path(info
, path
, attached
);
682 extcon_set_cable_state(info
->edev
, cable_name
, attached
);
687 static int max77693_muic_adc_handler(struct max77693_muic_info
*info
)
694 /* Check accessory state which is either detached or attached */
695 cable_type
= max77693_muic_get_cable_type(info
,
696 MAX77693_CABLE_GROUP_ADC
, &attached
);
699 "external connector is %s (adc:0x%02x, prev_adc:0x%x)\n",
700 attached
? "attached" : "detached", cable_type
,
701 info
->prev_cable_type
);
703 switch (cable_type
) {
704 case MAX77693_MUIC_ADC_GROUND
:
705 /* USB_OTG/MHL/Audio */
706 max77693_muic_adc_ground_handler(info
);
708 case MAX77693_MUIC_ADC_FACTORY_MODE_USB_OFF
:
709 case MAX77693_MUIC_ADC_FACTORY_MODE_USB_ON
:
710 case MAX77693_MUIC_ADC_FACTORY_MODE_UART_OFF
:
712 ret
= max77693_muic_jig_handler(info
, cable_type
, attached
);
716 case MAX77693_MUIC_ADC_RESERVED_ACC_3
: /* Dock-Smart */
717 case MAX77693_MUIC_ADC_FACTORY_MODE_UART_ON
: /* Dock-Car */
718 case MAX77693_MUIC_ADC_AUDIO_MODE_REMOTE
: /* Dock-Desk */
719 case MAX77693_MUIC_ADC_AV_CABLE_NOLOAD
: /* Dock-Audio */
723 * The MAX77693 MUIC device can detect total 34 cable type
724 * except of charger cable and MUIC device didn't define
725 * specfic role of cable in the range of from 0x01 to 0x12
726 * of ADC value. So, can use/define cable with no role according
727 * to schema of hardware board.
729 ret
= max77693_muic_dock_handler(info
, cable_type
, attached
);
733 case MAX77693_MUIC_ADC_REMOTE_S3_BUTTON
: /* DOCK_KEY_PREV */
734 case MAX77693_MUIC_ADC_REMOTE_S7_BUTTON
: /* DOCK_KEY_NEXT */
735 case MAX77693_MUIC_ADC_REMOTE_S9_BUTTON
: /* DOCK_VOL_DOWN */
736 case MAX77693_MUIC_ADC_REMOTE_S10_BUTTON
: /* DOCK_VOL_UP */
737 case MAX77693_MUIC_ADC_REMOTE_S12_BUTTON
: /* DOCK_KEY_PLAY_PAUSE */
739 * Button of DOCK device
740 * - the Prev/Next/Volume Up/Volume Down/Play-Pause button
742 * The MAX77693 MUIC device can detect total 34 cable type
743 * except of charger cable and MUIC device didn't define
744 * specfic role of cable in the range of from 0x01 to 0x12
745 * of ADC value. So, can use/define cable with no role according
746 * to schema of hardware board.
749 button_type
= info
->prev_button_type
= cable_type
;
751 button_type
= info
->prev_button_type
;
753 ret
= max77693_muic_dock_button_handler(info
, button_type
,
758 case MAX77693_MUIC_ADC_SEND_END_BUTTON
:
759 case MAX77693_MUIC_ADC_REMOTE_S1_BUTTON
:
760 case MAX77693_MUIC_ADC_REMOTE_S2_BUTTON
:
761 case MAX77693_MUIC_ADC_REMOTE_S4_BUTTON
:
762 case MAX77693_MUIC_ADC_REMOTE_S5_BUTTON
:
763 case MAX77693_MUIC_ADC_REMOTE_S6_BUTTON
:
764 case MAX77693_MUIC_ADC_REMOTE_S8_BUTTON
:
765 case MAX77693_MUIC_ADC_REMOTE_S11_BUTTON
:
766 case MAX77693_MUIC_ADC_RESERVED_ACC_1
:
767 case MAX77693_MUIC_ADC_RESERVED_ACC_2
:
768 case MAX77693_MUIC_ADC_RESERVED_ACC_4
:
769 case MAX77693_MUIC_ADC_RESERVED_ACC_5
:
770 case MAX77693_MUIC_ADC_CEA936_AUDIO
:
771 case MAX77693_MUIC_ADC_PHONE_POWERED_DEV
:
772 case MAX77693_MUIC_ADC_TTY_CONVERTER
:
773 case MAX77693_MUIC_ADC_UART_CABLE
:
774 case MAX77693_MUIC_ADC_CEA936A_TYPE1_CHG
:
775 case MAX77693_MUIC_ADC_CEA936A_TYPE2_CHG
:
777 * This accessory isn't used in general case if it is specially
778 * needed to detect additional accessory, should implement
779 * proper operation when this accessory is attached/detached.
782 "accessory is %s but it isn't used (adc:0x%x)\n",
783 attached
? "attached" : "detached", cable_type
);
787 "failed to detect %s accessory (adc:0x%x)\n",
788 attached
? "attached" : "detached", cable_type
);
795 static int max77693_muic_chg_handler(struct max77693_muic_info
*info
)
804 chg_type
= max77693_muic_get_cable_type(info
,
805 MAX77693_CABLE_GROUP_CHG
, &attached
);
808 "external connector is %s(chg_type:0x%x, prev_chg_type:0x%x)\n",
809 attached
? "attached" : "detached",
810 chg_type
, info
->prev_chg_type
);
813 case MAX77693_CHARGER_TYPE_USB
:
814 case MAX77693_CHARGER_TYPE_DEDICATED_CHG
:
815 case MAX77693_CHARGER_TYPE_NONE
:
816 /* Check MAX77693_CABLE_GROUP_ADC_GND type */
817 cable_type_gnd
= max77693_muic_get_cable_type(info
,
818 MAX77693_CABLE_GROUP_ADC_GND
,
820 switch (cable_type_gnd
) {
821 case MAX77693_MUIC_GND_MHL
:
822 case MAX77693_MUIC_GND_MHL_VB
:
824 * MHL cable with MHL_TA(USB/TA) cable
825 * - MHL cable include two port(HDMI line and separate
826 * micro-usb port. When the target connect MHL cable,
827 * extcon driver check whether MHL_TA(USB/TA) cable is
828 * connected. If MHL_TA cable is connected, extcon
829 * driver notify state to notifiee for charging battery.
831 * Features of 'MHL_TA(USB/TA) with MHL cable'
833 * - Support charging through micro-usb port without
836 extcon_set_cable_state(info
->edev
, "MHL_TA", attached
);
838 extcon_set_cable_state(info
->edev
,
839 "MHL", cable_attached
);
843 /* Check MAX77693_CABLE_GROUP_ADC type */
844 cable_type
= max77693_muic_get_cable_type(info
,
845 MAX77693_CABLE_GROUP_ADC
,
847 switch (cable_type
) {
848 case MAX77693_MUIC_ADC_AV_CABLE_NOLOAD
: /* Dock-Audio */
850 * Dock-Audio device with USB/TA cable
851 * - Dock device include two port(Dock-Audio and micro-
852 * usb port). When the target connect Dock-Audio device,
853 * extcon driver check whether USB/TA cable is connected
854 * or not. If USB/TA cable is connected, extcon driver
855 * notify state to notifiee for charging battery.
857 * Features of 'USB/TA cable with Dock-Audio device'
858 * - Support external output feature of audio.
859 * - Support charging through micro-usb port without
862 extcon_set_cable_state(info
->edev
, "USB", attached
);
865 extcon_set_cable_state(info
->edev
, "Dock-Audio",
868 case MAX77693_MUIC_ADC_RESERVED_ACC_3
: /* Dock-Smart */
870 * Dock-Smart device with USB/TA cable
871 * - Dock-Desk device include three type of cable which
872 * are HDMI, USB for mouse/keyboard and micro-usb port
873 * for USB/TA cable. Dock-Smart device need always
874 * exteranl power supply(USB/TA cable through micro-usb
875 * cable). Dock-Smart device support screen output of
876 * target to separate monitor and mouse/keyboard for
879 * Features of 'USB/TA cable with Dock-Smart device'
881 * - Support external output feature of audio
882 * - Support charging through micro-usb port without
883 * data connection if TA cable is connected to target.
884 * - Support charging and data connection through micro-
885 * usb port if USB cable is connected between target
887 * - Support OTG device (Mouse/Keyboard)
889 ret
= max77693_muic_set_path(info
, info
->path_usb
,
894 extcon_set_cable_state(info
->edev
, "Dock-Smart",
896 extcon_set_cable_state(info
->edev
, "MHL", attached
);
901 /* Check MAX77693_CABLE_GROUP_CHG type */
903 case MAX77693_CHARGER_TYPE_NONE
:
905 * When MHL(with USB/TA cable) or Dock-Audio with USB/TA
906 * cable is attached, muic device happen below two irq.
907 * - 'MAX77693_MUIC_IRQ_INT1_ADC' for detecting
909 * - 'MAX77693_MUIC_IRQ_INT2_CHGTYP' for detecting
910 * USB/TA cable connected to MHL or Dock-Audio.
911 * Always, happen eariler MAX77693_MUIC_IRQ_INT1_ADC
912 * irq than MAX77693_MUIC_IRQ_INT2_CHGTYP irq.
914 * If user attach MHL (with USB/TA cable and immediately
915 * detach MHL with USB/TA cable before MAX77693_MUIC_IRQ
916 * _INT2_CHGTYP irq is happened, USB/TA cable remain
917 * connected state to target. But USB/TA cable isn't
918 * connected to target. The user be face with unusual
919 * action. So, driver should check this situation in
920 * spite of, that previous charger type is N/A.
923 case MAX77693_CHARGER_TYPE_USB
:
924 /* Only USB cable, PATH:AP_USB */
925 ret
= max77693_muic_set_path(info
, info
->path_usb
,
930 extcon_set_cable_state(info
->edev
, "USB", attached
);
932 case MAX77693_CHARGER_TYPE_DEDICATED_CHG
:
934 extcon_set_cable_state(info
->edev
, "TA", attached
);
938 case MAX77693_CHARGER_TYPE_DOWNSTREAM_PORT
:
939 extcon_set_cable_state(info
->edev
,
940 "Charge-downstream", attached
);
942 case MAX77693_CHARGER_TYPE_APPLE_500MA
:
943 extcon_set_cable_state(info
->edev
, "Slow-charger", attached
);
945 case MAX77693_CHARGER_TYPE_APPLE_1A_2A
:
946 extcon_set_cable_state(info
->edev
, "Fast-charger", attached
);
948 case MAX77693_CHARGER_TYPE_DEAD_BATTERY
:
952 "failed to detect %s accessory (chg_type:0x%x)\n",
953 attached
? "attached" : "detached", chg_type
);
960 static void max77693_muic_irq_work(struct work_struct
*work
)
962 struct max77693_muic_info
*info
= container_of(work
,
963 struct max77693_muic_info
, irq_work
);
970 mutex_lock(&info
->mutex
);
972 for (i
= 0; i
< ARRAY_SIZE(muic_irqs
); i
++)
973 if (info
->irq
== muic_irqs
[i
].virq
)
974 irq_type
= muic_irqs
[i
].irq
;
976 ret
= regmap_bulk_read(info
->max77693
->regmap_muic
,
977 MAX77693_MUIC_REG_STATUS1
, info
->status
, 2);
979 dev_err(info
->dev
, "failed to read MUIC register\n");
980 mutex_unlock(&info
->mutex
);
985 case MAX77693_MUIC_IRQ_INT1_ADC
:
986 case MAX77693_MUIC_IRQ_INT1_ADC_LOW
:
987 case MAX77693_MUIC_IRQ_INT1_ADC_ERR
:
988 case MAX77693_MUIC_IRQ_INT1_ADC1K
:
989 /* Handle all of accessory except for
990 type of charger accessory */
991 ret
= max77693_muic_adc_handler(info
);
993 case MAX77693_MUIC_IRQ_INT2_CHGTYP
:
994 case MAX77693_MUIC_IRQ_INT2_CHGDETREUN
:
995 case MAX77693_MUIC_IRQ_INT2_DCDTMR
:
996 case MAX77693_MUIC_IRQ_INT2_DXOVP
:
997 case MAX77693_MUIC_IRQ_INT2_VBVOLT
:
998 case MAX77693_MUIC_IRQ_INT2_VIDRM
:
999 /* Handle charger accessory */
1000 ret
= max77693_muic_chg_handler(info
);
1002 case MAX77693_MUIC_IRQ_INT3_EOC
:
1003 case MAX77693_MUIC_IRQ_INT3_CGMBC
:
1004 case MAX77693_MUIC_IRQ_INT3_OVP
:
1005 case MAX77693_MUIC_IRQ_INT3_MBCCHG_ERR
:
1006 case MAX77693_MUIC_IRQ_INT3_CHG_ENABLED
:
1007 case MAX77693_MUIC_IRQ_INT3_BAT_DET
:
1010 dev_err(info
->dev
, "muic interrupt: irq %d occurred\n",
1012 mutex_unlock(&info
->mutex
);
1017 dev_err(info
->dev
, "failed to handle MUIC interrupt\n");
1019 mutex_unlock(&info
->mutex
);
1024 static irqreturn_t
max77693_muic_irq_handler(int irq
, void *data
)
1026 struct max77693_muic_info
*info
= data
;
1029 schedule_work(&info
->irq_work
);
1034 static struct regmap_config max77693_muic_regmap_config
= {
1039 static int max77693_muic_detect_accessory(struct max77693_muic_info
*info
)
1046 mutex_lock(&info
->mutex
);
1048 /* Read STATUSx register to detect accessory */
1049 ret
= regmap_bulk_read(info
->max77693
->regmap_muic
,
1050 MAX77693_MUIC_REG_STATUS1
, info
->status
, 2);
1052 dev_err(info
->dev
, "failed to read MUIC register\n");
1053 mutex_unlock(&info
->mutex
);
1057 adc
= max77693_muic_get_cable_type(info
, MAX77693_CABLE_GROUP_ADC
,
1059 if (attached
&& adc
!= MAX77693_MUIC_ADC_OPEN
) {
1060 ret
= max77693_muic_adc_handler(info
);
1062 dev_err(info
->dev
, "Cannot detect accessory\n");
1063 mutex_unlock(&info
->mutex
);
1068 chg_type
= max77693_muic_get_cable_type(info
, MAX77693_CABLE_GROUP_CHG
,
1070 if (attached
&& chg_type
!= MAX77693_CHARGER_TYPE_NONE
) {
1071 ret
= max77693_muic_chg_handler(info
);
1073 dev_err(info
->dev
, "Cannot detect charger accessory\n");
1074 mutex_unlock(&info
->mutex
);
1079 mutex_unlock(&info
->mutex
);
1084 static void max77693_muic_detect_cable_wq(struct work_struct
*work
)
1086 struct max77693_muic_info
*info
= container_of(to_delayed_work(work
),
1087 struct max77693_muic_info
, wq_detcable
);
1089 max77693_muic_detect_accessory(info
);
1092 static int max77693_muic_probe(struct platform_device
*pdev
)
1094 struct max77693_dev
*max77693
= dev_get_drvdata(pdev
->dev
.parent
);
1095 struct max77693_platform_data
*pdata
= dev_get_platdata(max77693
->dev
);
1096 struct max77693_muic_info
*info
;
1097 struct max77693_reg_data
*init_data
;
1104 info
= devm_kzalloc(&pdev
->dev
, sizeof(struct max77693_muic_info
),
1109 info
->dev
= &pdev
->dev
;
1110 info
->max77693
= max77693
;
1111 if (info
->max77693
->regmap_muic
) {
1112 dev_dbg(&pdev
->dev
, "allocate register map\n");
1114 info
->max77693
->regmap_muic
= devm_regmap_init_i2c(
1115 info
->max77693
->muic
,
1116 &max77693_muic_regmap_config
);
1117 if (IS_ERR(info
->max77693
->regmap_muic
)) {
1118 ret
= PTR_ERR(info
->max77693
->regmap_muic
);
1119 dev_err(max77693
->dev
,
1120 "failed to allocate register map: %d\n", ret
);
1125 /* Register input device for button of dock device */
1126 info
->dock
= devm_input_allocate_device(&pdev
->dev
);
1128 dev_err(&pdev
->dev
, "%s: failed to allocate input\n", __func__
);
1131 info
->dock
->name
= "max77693-muic/dock";
1132 info
->dock
->phys
= "max77693-muic/extcon";
1133 info
->dock
->dev
.parent
= &pdev
->dev
;
1135 __set_bit(EV_REP
, info
->dock
->evbit
);
1137 input_set_capability(info
->dock
, EV_KEY
, KEY_VOLUMEUP
);
1138 input_set_capability(info
->dock
, EV_KEY
, KEY_VOLUMEDOWN
);
1139 input_set_capability(info
->dock
, EV_KEY
, KEY_PLAYPAUSE
);
1140 input_set_capability(info
->dock
, EV_KEY
, KEY_PREVIOUSSONG
);
1141 input_set_capability(info
->dock
, EV_KEY
, KEY_NEXTSONG
);
1143 ret
= input_register_device(info
->dock
);
1145 dev_err(&pdev
->dev
, "Cannot register input device error(%d)\n",
1150 platform_set_drvdata(pdev
, info
);
1151 mutex_init(&info
->mutex
);
1153 INIT_WORK(&info
->irq_work
, max77693_muic_irq_work
);
1155 /* Support irq domain for MAX77693 MUIC device */
1156 for (i
= 0; i
< ARRAY_SIZE(muic_irqs
); i
++) {
1157 struct max77693_muic_irq
*muic_irq
= &muic_irqs
[i
];
1158 unsigned int virq
= 0;
1160 virq
= regmap_irq_get_virq(max77693
->irq_data_muic
,
1164 muic_irq
->virq
= virq
;
1166 ret
= devm_request_threaded_irq(&pdev
->dev
, virq
, NULL
,
1167 max77693_muic_irq_handler
,
1169 muic_irq
->name
, info
);
1172 "failed: irq request (IRQ: %d,"
1174 muic_irq
->irq
, ret
);
1179 /* Initialize extcon device */
1180 info
->edev
= devm_extcon_dev_allocate(&pdev
->dev
,
1181 max77693_extcon_cable
);
1182 if (IS_ERR(info
->edev
)) {
1183 dev_err(&pdev
->dev
, "failed to allocate memory for extcon\n");
1186 info
->edev
->name
= DEV_NAME
;
1188 ret
= devm_extcon_dev_register(&pdev
->dev
, info
->edev
);
1190 dev_err(&pdev
->dev
, "failed to register extcon device\n");
1194 /* Initialize MUIC register by using platform data or default data */
1195 if (pdata
&& pdata
->muic_data
) {
1196 init_data
= pdata
->muic_data
->init_data
;
1197 num_init_data
= pdata
->muic_data
->num_init_data
;
1199 init_data
= default_init_data
;
1200 num_init_data
= ARRAY_SIZE(default_init_data
);
1203 for (i
= 0; i
< num_init_data
; i
++) {
1204 enum max77693_irq_source irq_src
1205 = MAX77693_IRQ_GROUP_NR
;
1207 regmap_write(info
->max77693
->regmap_muic
,
1211 switch (init_data
[i
].addr
) {
1212 case MAX77693_MUIC_REG_INTMASK1
:
1213 irq_src
= MUIC_INT1
;
1215 case MAX77693_MUIC_REG_INTMASK2
:
1216 irq_src
= MUIC_INT2
;
1218 case MAX77693_MUIC_REG_INTMASK3
:
1219 irq_src
= MUIC_INT3
;
1223 if (irq_src
< MAX77693_IRQ_GROUP_NR
)
1224 info
->max77693
->irq_masks_cur
[irq_src
]
1225 = init_data
[i
].data
;
1228 if (pdata
&& pdata
->muic_data
) {
1229 struct max77693_muic_platform_data
*muic_pdata
1233 * Default usb/uart path whether UART/USB or AUX_UART/AUX_USB
1234 * h/w path of COMP2/COMN1 on CONTROL1 register.
1236 if (muic_pdata
->path_uart
)
1237 info
->path_uart
= muic_pdata
->path_uart
;
1239 info
->path_uart
= CONTROL1_SW_UART
;
1241 if (muic_pdata
->path_usb
)
1242 info
->path_usb
= muic_pdata
->path_usb
;
1244 info
->path_usb
= CONTROL1_SW_USB
;
1247 * Default delay time for detecting cable state
1248 * after certain time.
1250 if (muic_pdata
->detcable_delay_ms
)
1252 msecs_to_jiffies(muic_pdata
->detcable_delay_ms
);
1254 delay_jiffies
= msecs_to_jiffies(DELAY_MS_DEFAULT
);
1256 info
->path_usb
= CONTROL1_SW_USB
;
1257 info
->path_uart
= CONTROL1_SW_UART
;
1258 delay_jiffies
= msecs_to_jiffies(DELAY_MS_DEFAULT
);
1261 /* Set initial path for UART */
1262 max77693_muic_set_path(info
, info
->path_uart
, true);
1264 /* Check revision number of MUIC device*/
1265 ret
= regmap_read(info
->max77693
->regmap_muic
,
1266 MAX77693_MUIC_REG_ID
, &id
);
1268 dev_err(&pdev
->dev
, "failed to read revision number\n");
1271 dev_info(info
->dev
, "device ID : 0x%x\n", id
);
1273 /* Set ADC debounce time */
1274 max77693_muic_set_debounce_time(info
, ADC_DEBOUNCE_TIME_25MS
);
1277 * Detect accessory after completing the initialization of platform
1279 * - Use delayed workqueue to detect cable state and then
1280 * notify cable state to notifiee/platform through uevent.
1281 * After completing the booting of platform, the extcon provider
1282 * driver should notify cable state to upper layer.
1284 INIT_DELAYED_WORK(&info
->wq_detcable
, max77693_muic_detect_cable_wq
);
1285 queue_delayed_work(system_power_efficient_wq
, &info
->wq_detcable
,
1291 static int max77693_muic_remove(struct platform_device
*pdev
)
1293 struct max77693_muic_info
*info
= platform_get_drvdata(pdev
);
1295 cancel_work_sync(&info
->irq_work
);
1296 input_unregister_device(info
->dock
);
1301 static struct platform_driver max77693_muic_driver
= {
1304 .owner
= THIS_MODULE
,
1306 .probe
= max77693_muic_probe
,
1307 .remove
= max77693_muic_remove
,
1310 module_platform_driver(max77693_muic_driver
);
1312 MODULE_DESCRIPTION("Maxim MAX77693 Extcon driver");
1313 MODULE_AUTHOR("Chanwoo Choi <cw00.choi@samsung.com>");
1314 MODULE_LICENSE("GPL");
1315 MODULE_ALIAS("platform:extcon-max77693");