2 * extcon-sm5502.c - Silicon Mitus SM5502 extcon drvier to support USB switches
4 * Copyright (c) 2014 Samsung Electronics Co., Ltd
5 * Author: Chanwoo Choi <cw00.choi@samsung.com>
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2 of the License, or (at your
10 * option) any later version.
13 #include <linux/err.h>
14 #include <linux/i2c.h>
15 #include <linux/interrupt.h>
16 #include <linux/irqdomain.h>
17 #include <linux/kernel.h>
18 #include <linux/module.h>
19 #include <linux/platform_device.h>
20 #include <linux/regmap.h>
21 #include <linux/slab.h>
22 #include <linux/extcon-provider.h>
24 #include "extcon-sm5502.h"
26 #define DELAY_MS_DEFAULT 17000 /* unit: millisecond */
40 struct sm5502_muic_info
{
42 struct extcon_dev
*edev
;
44 struct i2c_client
*i2c
;
45 struct regmap
*regmap
;
47 struct regmap_irq_chip_data
*irq_data
;
48 struct muic_irq
*muic_irqs
;
49 unsigned int num_muic_irqs
;
53 struct work_struct irq_work
;
55 struct reg_data
*reg_data
;
56 unsigned int num_reg_data
;
61 * Use delayed workqueue to detect cable state and then
62 * notify cable state to notifiee/platform through uevent.
63 * After completing the booting of platform, the extcon provider
64 * driver should notify cable state to upper layer.
66 struct delayed_work wq_detcable
;
69 /* Default value of SM5502 register to bring up MUIC device. */
70 static struct reg_data sm5502_reg_data
[] = {
72 .reg
= SM5502_REG_RESET
,
73 .val
= SM5502_REG_RESET_MASK
,
76 .reg
= SM5502_REG_CONTROL
,
77 .val
= SM5502_REG_CONTROL_MASK_INT_MASK
,
80 .reg
= SM5502_REG_INTMASK1
,
81 .val
= SM5502_REG_INTM1_KP_MASK
82 | SM5502_REG_INTM1_LKP_MASK
83 | SM5502_REG_INTM1_LKR_MASK
,
86 .reg
= SM5502_REG_INTMASK2
,
87 .val
= SM5502_REG_INTM2_VBUS_DET_MASK
88 | SM5502_REG_INTM2_REV_ACCE_MASK
89 | SM5502_REG_INTM2_ADC_CHG_MASK
90 | SM5502_REG_INTM2_STUCK_KEY_MASK
91 | SM5502_REG_INTM2_STUCK_KEY_RCV_MASK
92 | SM5502_REG_INTM2_MHL_MASK
,
98 /* List of detectable cables */
99 static const unsigned int sm5502_extcon_cable
[] = {
107 /* Define supported accessory type */
108 enum sm5502_muic_acc_type
{
109 SM5502_MUIC_ADC_GROUND
= 0x0,
110 SM5502_MUIC_ADC_SEND_END_BUTTON
,
111 SM5502_MUIC_ADC_REMOTE_S1_BUTTON
,
112 SM5502_MUIC_ADC_REMOTE_S2_BUTTON
,
113 SM5502_MUIC_ADC_REMOTE_S3_BUTTON
,
114 SM5502_MUIC_ADC_REMOTE_S4_BUTTON
,
115 SM5502_MUIC_ADC_REMOTE_S5_BUTTON
,
116 SM5502_MUIC_ADC_REMOTE_S6_BUTTON
,
117 SM5502_MUIC_ADC_REMOTE_S7_BUTTON
,
118 SM5502_MUIC_ADC_REMOTE_S8_BUTTON
,
119 SM5502_MUIC_ADC_REMOTE_S9_BUTTON
,
120 SM5502_MUIC_ADC_REMOTE_S10_BUTTON
,
121 SM5502_MUIC_ADC_REMOTE_S11_BUTTON
,
122 SM5502_MUIC_ADC_REMOTE_S12_BUTTON
,
123 SM5502_MUIC_ADC_RESERVED_ACC_1
,
124 SM5502_MUIC_ADC_RESERVED_ACC_2
,
125 SM5502_MUIC_ADC_RESERVED_ACC_3
,
126 SM5502_MUIC_ADC_RESERVED_ACC_4
,
127 SM5502_MUIC_ADC_RESERVED_ACC_5
,
128 SM5502_MUIC_ADC_AUDIO_TYPE2
,
129 SM5502_MUIC_ADC_PHONE_POWERED_DEV
,
130 SM5502_MUIC_ADC_TTY_CONVERTER
,
131 SM5502_MUIC_ADC_UART_CABLE
,
132 SM5502_MUIC_ADC_TYPE1_CHARGER
,
133 SM5502_MUIC_ADC_FACTORY_MODE_BOOT_OFF_USB
,
134 SM5502_MUIC_ADC_FACTORY_MODE_BOOT_ON_USB
,
135 SM5502_MUIC_ADC_AUDIO_VIDEO_CABLE
,
136 SM5502_MUIC_ADC_TYPE2_CHARGER
,
137 SM5502_MUIC_ADC_FACTORY_MODE_BOOT_OFF_UART
,
138 SM5502_MUIC_ADC_FACTORY_MODE_BOOT_ON_UART
,
139 SM5502_MUIC_ADC_AUDIO_TYPE1
,
140 SM5502_MUIC_ADC_OPEN
= 0x1f,
143 * The below accessories have same ADC value (0x1f or 0x1e).
144 * So, Device type1 is used to separate specific accessory.
146 /* |---------|--ADC| */
148 SM5502_MUIC_ADC_AUDIO_TYPE1_FULL_REMOTE
= 0x3e, /* | 001|11110| */
149 SM5502_MUIC_ADC_AUDIO_TYPE1_SEND_END
= 0x5e, /* | 010|11110| */
150 /* |Dev Type1|--ADC| */
151 SM5502_MUIC_ADC_OPEN_USB
= 0x5f, /* | 010|11111| */
152 SM5502_MUIC_ADC_OPEN_TA
= 0xdf, /* | 110|11111| */
153 SM5502_MUIC_ADC_OPEN_USB_OTG
= 0xff, /* | 111|11111| */
156 /* List of supported interrupt for SM5502 */
157 static struct muic_irq sm5502_muic_irqs
[] = {
158 { SM5502_IRQ_INT1_ATTACH
, "muic-attach" },
159 { SM5502_IRQ_INT1_DETACH
, "muic-detach" },
160 { SM5502_IRQ_INT1_KP
, "muic-kp" },
161 { SM5502_IRQ_INT1_LKP
, "muic-lkp" },
162 { SM5502_IRQ_INT1_LKR
, "muic-lkr" },
163 { SM5502_IRQ_INT1_OVP_EVENT
, "muic-ovp-event" },
164 { SM5502_IRQ_INT1_OCP_EVENT
, "muic-ocp-event" },
165 { SM5502_IRQ_INT1_OVP_OCP_DIS
, "muic-ovp-ocp-dis" },
166 { SM5502_IRQ_INT2_VBUS_DET
, "muic-vbus-det" },
167 { SM5502_IRQ_INT2_REV_ACCE
, "muic-rev-acce" },
168 { SM5502_IRQ_INT2_ADC_CHG
, "muic-adc-chg" },
169 { SM5502_IRQ_INT2_STUCK_KEY
, "muic-stuck-key" },
170 { SM5502_IRQ_INT2_STUCK_KEY_RCV
, "muic-stuck-key-rcv" },
171 { SM5502_IRQ_INT2_MHL
, "muic-mhl" },
174 /* Define interrupt list of SM5502 to register regmap_irq */
175 static const struct regmap_irq sm5502_irqs
[] = {
176 /* INT1 interrupts */
177 { .reg_offset
= 0, .mask
= SM5502_IRQ_INT1_ATTACH_MASK
, },
178 { .reg_offset
= 0, .mask
= SM5502_IRQ_INT1_DETACH_MASK
, },
179 { .reg_offset
= 0, .mask
= SM5502_IRQ_INT1_KP_MASK
, },
180 { .reg_offset
= 0, .mask
= SM5502_IRQ_INT1_LKP_MASK
, },
181 { .reg_offset
= 0, .mask
= SM5502_IRQ_INT1_LKR_MASK
, },
182 { .reg_offset
= 0, .mask
= SM5502_IRQ_INT1_OVP_EVENT_MASK
, },
183 { .reg_offset
= 0, .mask
= SM5502_IRQ_INT1_OCP_EVENT_MASK
, },
184 { .reg_offset
= 0, .mask
= SM5502_IRQ_INT1_OVP_OCP_DIS_MASK
, },
186 /* INT2 interrupts */
187 { .reg_offset
= 1, .mask
= SM5502_IRQ_INT2_VBUS_DET_MASK
,},
188 { .reg_offset
= 1, .mask
= SM5502_IRQ_INT2_REV_ACCE_MASK
, },
189 { .reg_offset
= 1, .mask
= SM5502_IRQ_INT2_ADC_CHG_MASK
, },
190 { .reg_offset
= 1, .mask
= SM5502_IRQ_INT2_STUCK_KEY_MASK
, },
191 { .reg_offset
= 1, .mask
= SM5502_IRQ_INT2_STUCK_KEY_RCV_MASK
, },
192 { .reg_offset
= 1, .mask
= SM5502_IRQ_INT2_MHL_MASK
, },
195 static const struct regmap_irq_chip sm5502_muic_irq_chip
= {
197 .status_base
= SM5502_REG_INT1
,
198 .mask_base
= SM5502_REG_INTMASK1
,
199 .mask_invert
= false,
202 .num_irqs
= ARRAY_SIZE(sm5502_irqs
),
205 /* Define regmap configuration of SM5502 for I2C communication */
206 static bool sm5502_muic_volatile_reg(struct device
*dev
, unsigned int reg
)
209 case SM5502_REG_INTMASK1
:
210 case SM5502_REG_INTMASK2
:
218 static const struct regmap_config sm5502_muic_regmap_config
= {
221 .volatile_reg
= sm5502_muic_volatile_reg
,
222 .max_register
= SM5502_REG_END
,
225 /* Change DM_CON/DP_CON/VBUSIN switch according to cable type */
226 static int sm5502_muic_set_path(struct sm5502_muic_info
*info
,
227 unsigned int con_sw
, unsigned int vbus_sw
,
233 con_sw
= DM_DP_SWITCH_OPEN
;
234 vbus_sw
= VBUSIN_SWITCH_OPEN
;
238 case DM_DP_SWITCH_OPEN
:
239 case DM_DP_SWITCH_USB
:
240 case DM_DP_SWITCH_AUDIO
:
241 case DM_DP_SWITCH_UART
:
242 ret
= regmap_update_bits(info
->regmap
, SM5502_REG_MANUAL_SW1
,
243 SM5502_REG_MANUAL_SW1_DP_MASK
|
244 SM5502_REG_MANUAL_SW1_DM_MASK
,
248 "cannot update DM_CON/DP_CON switch\n");
253 dev_err(info
->dev
, "Unknown DM_CON/DP_CON switch type (%d)\n",
259 case VBUSIN_SWITCH_OPEN
:
260 case VBUSIN_SWITCH_VBUSOUT
:
261 case VBUSIN_SWITCH_MIC
:
262 case VBUSIN_SWITCH_VBUSOUT_WITH_USB
:
263 ret
= regmap_update_bits(info
->regmap
, SM5502_REG_MANUAL_SW1
,
264 SM5502_REG_MANUAL_SW1_VBUSIN_MASK
,
268 "cannot update VBUSIN switch\n");
273 dev_err(info
->dev
, "Unknown VBUS switch type (%d)\n", vbus_sw
);
280 /* Return cable type of attached or detached accessories */
281 static unsigned int sm5502_muic_get_cable_type(struct sm5502_muic_info
*info
)
283 unsigned int cable_type
= -1, adc
, dev_type1
;
286 /* Read ADC value according to external cable or button */
287 ret
= regmap_read(info
->regmap
, SM5502_REG_ADC
, &adc
);
289 dev_err(info
->dev
, "failed to read ADC register\n");
294 * If ADC is SM5502_MUIC_ADC_GROUND(0x0), external cable hasn't
295 * connected with to MUIC device.
297 cable_type
= adc
& SM5502_REG_ADC_MASK
;
298 if (cable_type
== SM5502_MUIC_ADC_GROUND
)
299 return SM5502_MUIC_ADC_GROUND
;
301 switch (cable_type
) {
302 case SM5502_MUIC_ADC_GROUND
:
303 case SM5502_MUIC_ADC_SEND_END_BUTTON
:
304 case SM5502_MUIC_ADC_REMOTE_S1_BUTTON
:
305 case SM5502_MUIC_ADC_REMOTE_S2_BUTTON
:
306 case SM5502_MUIC_ADC_REMOTE_S3_BUTTON
:
307 case SM5502_MUIC_ADC_REMOTE_S4_BUTTON
:
308 case SM5502_MUIC_ADC_REMOTE_S5_BUTTON
:
309 case SM5502_MUIC_ADC_REMOTE_S6_BUTTON
:
310 case SM5502_MUIC_ADC_REMOTE_S7_BUTTON
:
311 case SM5502_MUIC_ADC_REMOTE_S8_BUTTON
:
312 case SM5502_MUIC_ADC_REMOTE_S9_BUTTON
:
313 case SM5502_MUIC_ADC_REMOTE_S10_BUTTON
:
314 case SM5502_MUIC_ADC_REMOTE_S11_BUTTON
:
315 case SM5502_MUIC_ADC_REMOTE_S12_BUTTON
:
316 case SM5502_MUIC_ADC_RESERVED_ACC_1
:
317 case SM5502_MUIC_ADC_RESERVED_ACC_2
:
318 case SM5502_MUIC_ADC_RESERVED_ACC_3
:
319 case SM5502_MUIC_ADC_RESERVED_ACC_4
:
320 case SM5502_MUIC_ADC_RESERVED_ACC_5
:
321 case SM5502_MUIC_ADC_AUDIO_TYPE2
:
322 case SM5502_MUIC_ADC_PHONE_POWERED_DEV
:
323 case SM5502_MUIC_ADC_TTY_CONVERTER
:
324 case SM5502_MUIC_ADC_UART_CABLE
:
325 case SM5502_MUIC_ADC_TYPE1_CHARGER
:
326 case SM5502_MUIC_ADC_FACTORY_MODE_BOOT_OFF_USB
:
327 case SM5502_MUIC_ADC_FACTORY_MODE_BOOT_ON_USB
:
328 case SM5502_MUIC_ADC_AUDIO_VIDEO_CABLE
:
329 case SM5502_MUIC_ADC_TYPE2_CHARGER
:
330 case SM5502_MUIC_ADC_FACTORY_MODE_BOOT_OFF_UART
:
331 case SM5502_MUIC_ADC_FACTORY_MODE_BOOT_ON_UART
:
333 case SM5502_MUIC_ADC_AUDIO_TYPE1
:
335 * Check whether cable type is
336 * SM5502_MUIC_ADC_AUDIO_TYPE1_FULL_REMOTE
337 * or SM5502_MUIC_ADC_AUDIO_TYPE1_SEND_END
338 * by using Button event.
341 case SM5502_MUIC_ADC_OPEN
:
342 ret
= regmap_read(info
->regmap
, SM5502_REG_DEV_TYPE1
,
345 dev_err(info
->dev
, "failed to read DEV_TYPE1 reg\n");
350 case SM5502_REG_DEV_TYPE1_USB_SDP_MASK
:
351 cable_type
= SM5502_MUIC_ADC_OPEN_USB
;
353 case SM5502_REG_DEV_TYPE1_DEDICATED_CHG_MASK
:
354 cable_type
= SM5502_MUIC_ADC_OPEN_TA
;
356 case SM5502_REG_DEV_TYPE1_USB_OTG_MASK
:
357 cable_type
= SM5502_MUIC_ADC_OPEN_USB_OTG
;
361 "cannot identify the cable type: adc(0x%x)\n",
368 "failed to identify the cable type: adc(0x%x)\n", adc
);
375 static int sm5502_muic_cable_handler(struct sm5502_muic_info
*info
,
378 static unsigned int prev_cable_type
= SM5502_MUIC_ADC_GROUND
;
379 unsigned int cable_type
= SM5502_MUIC_ADC_GROUND
;
380 unsigned int con_sw
= DM_DP_SWITCH_OPEN
;
381 unsigned int vbus_sw
= VBUSIN_SWITCH_OPEN
;
385 /* Get the type of attached or detached cable */
387 cable_type
= sm5502_muic_get_cable_type(info
);
389 cable_type
= prev_cable_type
;
390 prev_cable_type
= cable_type
;
392 switch (cable_type
) {
393 case SM5502_MUIC_ADC_OPEN_USB
:
395 con_sw
= DM_DP_SWITCH_USB
;
396 vbus_sw
= VBUSIN_SWITCH_VBUSOUT_WITH_USB
;
398 case SM5502_MUIC_ADC_OPEN_TA
:
399 id
= EXTCON_CHG_USB_DCP
;
400 con_sw
= DM_DP_SWITCH_OPEN
;
401 vbus_sw
= VBUSIN_SWITCH_VBUSOUT
;
403 case SM5502_MUIC_ADC_OPEN_USB_OTG
:
404 id
= EXTCON_USB_HOST
;
405 con_sw
= DM_DP_SWITCH_USB
;
406 vbus_sw
= VBUSIN_SWITCH_OPEN
;
410 "cannot handle this cable_type (0x%x)\n", cable_type
);
414 /* Change internal hardware path(DM_CON/DP_CON, VBUSIN) */
415 ret
= sm5502_muic_set_path(info
, con_sw
, vbus_sw
, attached
);
419 /* Change the state of external accessory */
420 extcon_set_state_sync(info
->edev
, id
, attached
);
421 if (id
== EXTCON_USB
)
422 extcon_set_state_sync(info
->edev
, EXTCON_CHG_USB_SDP
,
428 static void sm5502_muic_irq_work(struct work_struct
*work
)
430 struct sm5502_muic_info
*info
= container_of(work
,
431 struct sm5502_muic_info
, irq_work
);
437 mutex_lock(&info
->mutex
);
439 /* Detect attached or detached cables */
440 if (info
->irq_attach
) {
441 ret
= sm5502_muic_cable_handler(info
, true);
442 info
->irq_attach
= false;
444 if (info
->irq_detach
) {
445 ret
= sm5502_muic_cable_handler(info
, false);
446 info
->irq_detach
= false;
450 dev_err(info
->dev
, "failed to handle MUIC interrupt\n");
452 mutex_unlock(&info
->mutex
);
456 * Sets irq_attach or irq_detach in sm5502_muic_info and returns 0.
457 * Returns -ESRCH if irq_type does not match registered IRQ for this dev type.
459 static int sm5502_parse_irq(struct sm5502_muic_info
*info
, int irq_type
)
462 case SM5502_IRQ_INT1_ATTACH
:
463 info
->irq_attach
= true;
465 case SM5502_IRQ_INT1_DETACH
:
466 info
->irq_detach
= true;
468 case SM5502_IRQ_INT1_KP
:
469 case SM5502_IRQ_INT1_LKP
:
470 case SM5502_IRQ_INT1_LKR
:
471 case SM5502_IRQ_INT1_OVP_EVENT
:
472 case SM5502_IRQ_INT1_OCP_EVENT
:
473 case SM5502_IRQ_INT1_OVP_OCP_DIS
:
474 case SM5502_IRQ_INT2_VBUS_DET
:
475 case SM5502_IRQ_INT2_REV_ACCE
:
476 case SM5502_IRQ_INT2_ADC_CHG
:
477 case SM5502_IRQ_INT2_STUCK_KEY
:
478 case SM5502_IRQ_INT2_STUCK_KEY_RCV
:
479 case SM5502_IRQ_INT2_MHL
:
487 static irqreturn_t
sm5502_muic_irq_handler(int irq
, void *data
)
489 struct sm5502_muic_info
*info
= data
;
490 int i
, irq_type
= -1, ret
;
492 for (i
= 0; i
< info
->num_muic_irqs
; i
++)
493 if (irq
== info
->muic_irqs
[i
].virq
)
494 irq_type
= info
->muic_irqs
[i
].irq
;
496 ret
= sm5502_parse_irq(info
, irq_type
);
498 dev_warn(info
->dev
, "cannot handle is interrupt:%d\n",
502 schedule_work(&info
->irq_work
);
507 static void sm5502_muic_detect_cable_wq(struct work_struct
*work
)
509 struct sm5502_muic_info
*info
= container_of(to_delayed_work(work
),
510 struct sm5502_muic_info
, wq_detcable
);
513 /* Notify the state of connector cable or not */
514 ret
= sm5502_muic_cable_handler(info
, true);
516 dev_warn(info
->dev
, "failed to detect cable state\n");
519 static void sm5502_init_dev_type(struct sm5502_muic_info
*info
)
521 unsigned int reg_data
, vendor_id
, version_id
;
524 /* To test I2C, Print version_id and vendor_id of SM5502 */
525 ret
= regmap_read(info
->regmap
, SM5502_REG_DEVICE_ID
, ®_data
);
528 "failed to read DEVICE_ID register: %d\n", ret
);
532 vendor_id
= ((reg_data
& SM5502_REG_DEVICE_ID_VENDOR_MASK
) >>
533 SM5502_REG_DEVICE_ID_VENDOR_SHIFT
);
534 version_id
= ((reg_data
& SM5502_REG_DEVICE_ID_VERSION_MASK
) >>
535 SM5502_REG_DEVICE_ID_VERSION_SHIFT
);
537 dev_info(info
->dev
, "Device type: version: 0x%x, vendor: 0x%x\n",
538 version_id
, vendor_id
);
540 /* Initiazle the register of SM5502 device to bring-up */
541 for (i
= 0; i
< info
->num_reg_data
; i
++) {
542 unsigned int val
= 0;
544 if (!info
->reg_data
[i
].invert
)
545 val
|= ~info
->reg_data
[i
].val
;
547 val
= info
->reg_data
[i
].val
;
548 regmap_write(info
->regmap
, info
->reg_data
[i
].reg
, val
);
552 static int sm5022_muic_i2c_probe(struct i2c_client
*i2c
,
553 const struct i2c_device_id
*id
)
555 struct device_node
*np
= i2c
->dev
.of_node
;
556 struct sm5502_muic_info
*info
;
557 int i
, ret
, irq_flags
;
562 info
= devm_kzalloc(&i2c
->dev
, sizeof(*info
), GFP_KERNEL
);
565 i2c_set_clientdata(i2c
, info
);
567 info
->dev
= &i2c
->dev
;
569 info
->irq
= i2c
->irq
;
570 info
->muic_irqs
= sm5502_muic_irqs
;
571 info
->num_muic_irqs
= ARRAY_SIZE(sm5502_muic_irqs
);
572 info
->reg_data
= sm5502_reg_data
;
573 info
->num_reg_data
= ARRAY_SIZE(sm5502_reg_data
);
575 mutex_init(&info
->mutex
);
577 INIT_WORK(&info
->irq_work
, sm5502_muic_irq_work
);
579 info
->regmap
= devm_regmap_init_i2c(i2c
, &sm5502_muic_regmap_config
);
580 if (IS_ERR(info
->regmap
)) {
581 ret
= PTR_ERR(info
->regmap
);
582 dev_err(info
->dev
, "failed to allocate register map: %d\n",
587 /* Support irq domain for SM5502 MUIC device */
588 irq_flags
= IRQF_TRIGGER_FALLING
| IRQF_ONESHOT
| IRQF_SHARED
;
589 ret
= regmap_add_irq_chip(info
->regmap
, info
->irq
, irq_flags
, 0,
590 &sm5502_muic_irq_chip
, &info
->irq_data
);
592 dev_err(info
->dev
, "failed to request IRQ %d: %d\n",
597 for (i
= 0; i
< info
->num_muic_irqs
; i
++) {
598 struct muic_irq
*muic_irq
= &info
->muic_irqs
[i
];
601 virq
= regmap_irq_get_virq(info
->irq_data
, muic_irq
->irq
);
604 muic_irq
->virq
= virq
;
606 ret
= devm_request_threaded_irq(info
->dev
, virq
, NULL
,
607 sm5502_muic_irq_handler
,
609 muic_irq
->name
, info
);
612 "failed: irq request (IRQ: %d, error :%d)\n",
618 /* Allocate extcon device */
619 info
->edev
= devm_extcon_dev_allocate(info
->dev
, sm5502_extcon_cable
);
620 if (IS_ERR(info
->edev
)) {
621 dev_err(info
->dev
, "failed to allocate memory for extcon\n");
625 /* Register extcon device */
626 ret
= devm_extcon_dev_register(info
->dev
, info
->edev
);
628 dev_err(info
->dev
, "failed to register extcon device\n");
633 * Detect accessory after completing the initialization of platform
635 * - Use delayed workqueue to detect cable state and then
636 * notify cable state to notifiee/platform through uevent.
637 * After completing the booting of platform, the extcon provider
638 * driver should notify cable state to upper layer.
640 INIT_DELAYED_WORK(&info
->wq_detcable
, sm5502_muic_detect_cable_wq
);
641 queue_delayed_work(system_power_efficient_wq
, &info
->wq_detcable
,
642 msecs_to_jiffies(DELAY_MS_DEFAULT
));
644 /* Initialize SM5502 device and print vendor id and version id */
645 sm5502_init_dev_type(info
);
650 static int sm5502_muic_i2c_remove(struct i2c_client
*i2c
)
652 struct sm5502_muic_info
*info
= i2c_get_clientdata(i2c
);
654 regmap_del_irq_chip(info
->irq
, info
->irq_data
);
659 static const struct of_device_id sm5502_dt_match
[] = {
660 { .compatible
= "siliconmitus,sm5502-muic" },
663 MODULE_DEVICE_TABLE(of
, sm5502_dt_match
);
665 #ifdef CONFIG_PM_SLEEP
666 static int sm5502_muic_suspend(struct device
*dev
)
668 struct i2c_client
*i2c
= to_i2c_client(dev
);
669 struct sm5502_muic_info
*info
= i2c_get_clientdata(i2c
);
671 enable_irq_wake(info
->irq
);
676 static int sm5502_muic_resume(struct device
*dev
)
678 struct i2c_client
*i2c
= to_i2c_client(dev
);
679 struct sm5502_muic_info
*info
= i2c_get_clientdata(i2c
);
681 disable_irq_wake(info
->irq
);
687 static SIMPLE_DEV_PM_OPS(sm5502_muic_pm_ops
,
688 sm5502_muic_suspend
, sm5502_muic_resume
);
690 static const struct i2c_device_id sm5502_i2c_id
[] = {
691 { "sm5502", TYPE_SM5502
},
694 MODULE_DEVICE_TABLE(i2c
, sm5502_i2c_id
);
696 static struct i2c_driver sm5502_muic_i2c_driver
= {
699 .pm
= &sm5502_muic_pm_ops
,
700 .of_match_table
= sm5502_dt_match
,
702 .probe
= sm5022_muic_i2c_probe
,
703 .remove
= sm5502_muic_i2c_remove
,
704 .id_table
= sm5502_i2c_id
,
707 static int __init
sm5502_muic_i2c_init(void)
709 return i2c_add_driver(&sm5502_muic_i2c_driver
);
711 subsys_initcall(sm5502_muic_i2c_init
);
713 MODULE_DESCRIPTION("Silicon Mitus SM5502 Extcon driver");
714 MODULE_AUTHOR("Chanwoo Choi <cw00.choi@samsung.com>");
715 MODULE_LICENSE("GPL");