1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * extcon-rt8973a.c - Richtek RT8973A extcon driver to support USB switches
5 * Copyright (c) 2014 Samsung Electronics Co., Ltd
6 * Author: Chanwoo Choi <cw00.choi@samsung.com>
10 #include <linux/i2c.h>
11 #include <linux/input.h>
12 #include <linux/interrupt.h>
13 #include <linux/irqdomain.h>
14 #include <linux/kernel.h>
15 #include <linux/module.h>
16 #include <linux/platform_device.h>
17 #include <linux/regmap.h>
18 #include <linux/slab.h>
19 #include <linux/extcon-provider.h>
21 #include "extcon-rt8973a.h"
23 #define DELAY_MS_DEFAULT 20000 /* unit: millisecond */
38 struct rt8973a_muic_info
{
40 struct extcon_dev
*edev
;
42 struct i2c_client
*i2c
;
43 struct regmap
*regmap
;
45 struct regmap_irq_chip_data
*irq_data
;
46 struct muic_irq
*muic_irqs
;
47 unsigned int num_muic_irqs
;
53 struct work_struct irq_work
;
55 struct reg_data
*reg_data
;
56 unsigned int num_reg_data
;
62 * Use delayed workqueue to detect cable state and then
63 * notify cable state to notifiee/platform through uevent.
64 * After completing the booting of platform, the extcon provider
65 * driver should notify cable state to upper layer.
67 struct delayed_work wq_detcable
;
70 /* Default value of RT8973A register to bring up MUIC device. */
71 static struct reg_data rt8973a_reg_data
[] = {
73 .reg
= RT8973A_REG_CONTROL1
,
74 .mask
= RT8973A_REG_CONTROL1_ADC_EN_MASK
75 | RT8973A_REG_CONTROL1_USB_CHD_EN_MASK
76 | RT8973A_REG_CONTROL1_CHGTYP_MASK
77 | RT8973A_REG_CONTROL1_SWITCH_OPEN_MASK
78 | RT8973A_REG_CONTROL1_AUTO_CONFIG_MASK
79 | RT8973A_REG_CONTROL1_INTM_MASK
,
80 .val
= RT8973A_REG_CONTROL1_ADC_EN_MASK
81 | RT8973A_REG_CONTROL1_USB_CHD_EN_MASK
82 | RT8973A_REG_CONTROL1_CHGTYP_MASK
,
88 /* List of detectable cables */
89 static const unsigned int rt8973a_extcon_cable
[] = {
98 /* Define OVP (Over Voltage Protection), OTP (Over Temperature Protection) */
99 enum rt8973a_event_type
{
100 RT8973A_EVENT_ATTACH
= 1,
101 RT8973A_EVENT_DETACH
,
106 /* Define supported accessory type */
107 enum rt8973a_muic_acc_type
{
108 RT8973A_MUIC_ADC_OTG
= 0x0,
109 RT8973A_MUIC_ADC_AUDIO_SEND_END_BUTTON
,
110 RT8973A_MUIC_ADC_AUDIO_REMOTE_S1_BUTTON
,
111 RT8973A_MUIC_ADC_AUDIO_REMOTE_S2_BUTTON
,
112 RT8973A_MUIC_ADC_AUDIO_REMOTE_S3_BUTTON
,
113 RT8973A_MUIC_ADC_AUDIO_REMOTE_S4_BUTTON
,
114 RT8973A_MUIC_ADC_AUDIO_REMOTE_S5_BUTTON
,
115 RT8973A_MUIC_ADC_AUDIO_REMOTE_S6_BUTTON
,
116 RT8973A_MUIC_ADC_AUDIO_REMOTE_S7_BUTTON
,
117 RT8973A_MUIC_ADC_AUDIO_REMOTE_S8_BUTTON
,
118 RT8973A_MUIC_ADC_AUDIO_REMOTE_S9_BUTTON
,
119 RT8973A_MUIC_ADC_AUDIO_REMOTE_S10_BUTTON
,
120 RT8973A_MUIC_ADC_AUDIO_REMOTE_S11_BUTTON
,
121 RT8973A_MUIC_ADC_AUDIO_REMOTE_S12_BUTTON
,
122 RT8973A_MUIC_ADC_RESERVED_ACC_1
,
123 RT8973A_MUIC_ADC_RESERVED_ACC_2
,
124 RT8973A_MUIC_ADC_RESERVED_ACC_3
,
125 RT8973A_MUIC_ADC_RESERVED_ACC_4
,
126 RT8973A_MUIC_ADC_RESERVED_ACC_5
,
127 RT8973A_MUIC_ADC_AUDIO_TYPE2
,
128 RT8973A_MUIC_ADC_PHONE_POWERED_DEV
,
129 RT8973A_MUIC_ADC_UNKNOWN_ACC_1
,
130 RT8973A_MUIC_ADC_UNKNOWN_ACC_2
,
132 RT8973A_MUIC_ADC_FACTORY_MODE_BOOT_OFF_USB
,
133 RT8973A_MUIC_ADC_FACTORY_MODE_BOOT_ON_USB
,
134 RT8973A_MUIC_ADC_UNKNOWN_ACC_3
,
135 RT8973A_MUIC_ADC_UNKNOWN_ACC_4
,
136 RT8973A_MUIC_ADC_FACTORY_MODE_BOOT_OFF_UART
,
137 RT8973A_MUIC_ADC_FACTORY_MODE_BOOT_ON_UART
,
138 RT8973A_MUIC_ADC_UNKNOWN_ACC_5
,
139 RT8973A_MUIC_ADC_OPEN
= 0x1f,
142 * The below accessories has same ADC value (0x1f).
143 * So, Device type1 is used to separate specific accessory.
145 /* |---------|--ADC| */
147 RT8973A_MUIC_ADC_USB
= 0x3f, /* | 001|11111| */
150 /* List of supported interrupt for RT8973A */
151 static struct muic_irq rt8973a_muic_irqs
[] = {
152 { RT8973A_INT1_ATTACH
, "muic-attach" },
153 { RT8973A_INT1_DETACH
, "muic-detach" },
154 { RT8973A_INT1_CHGDET
, "muic-chgdet" },
155 { RT8973A_INT1_DCD_T
, "muic-dcd-t" },
156 { RT8973A_INT1_OVP
, "muic-ovp" },
157 { RT8973A_INT1_CONNECT
, "muic-connect" },
158 { RT8973A_INT1_ADC_CHG
, "muic-adc-chg" },
159 { RT8973A_INT1_OTP
, "muic-otp" },
160 { RT8973A_INT2_UVLO
, "muic-uvlo" },
161 { RT8973A_INT2_POR
, "muic-por" },
162 { RT8973A_INT2_OTP_FET
, "muic-otp-fet" },
163 { RT8973A_INT2_OVP_FET
, "muic-ovp-fet" },
164 { RT8973A_INT2_OCP_LATCH
, "muic-ocp-latch" },
165 { RT8973A_INT2_OCP
, "muic-ocp" },
166 { RT8973A_INT2_OVP_OCP
, "muic-ovp-ocp" },
169 /* Define interrupt list of RT8973A to register regmap_irq */
170 static const struct regmap_irq rt8973a_irqs
[] = {
171 /* INT1 interrupts */
172 { .reg_offset
= 0, .mask
= RT8973A_INT1_ATTACH_MASK
, },
173 { .reg_offset
= 0, .mask
= RT8973A_INT1_DETACH_MASK
, },
174 { .reg_offset
= 0, .mask
= RT8973A_INT1_CHGDET_MASK
, },
175 { .reg_offset
= 0, .mask
= RT8973A_INT1_DCD_T_MASK
, },
176 { .reg_offset
= 0, .mask
= RT8973A_INT1_OVP_MASK
, },
177 { .reg_offset
= 0, .mask
= RT8973A_INT1_CONNECT_MASK
, },
178 { .reg_offset
= 0, .mask
= RT8973A_INT1_ADC_CHG_MASK
, },
179 { .reg_offset
= 0, .mask
= RT8973A_INT1_OTP_MASK
, },
181 /* INT2 interrupts */
182 { .reg_offset
= 1, .mask
= RT8973A_INT2_UVLOT_MASK
,},
183 { .reg_offset
= 1, .mask
= RT8973A_INT2_POR_MASK
, },
184 { .reg_offset
= 1, .mask
= RT8973A_INT2_OTP_FET_MASK
, },
185 { .reg_offset
= 1, .mask
= RT8973A_INT2_OVP_FET_MASK
, },
186 { .reg_offset
= 1, .mask
= RT8973A_INT2_OCP_LATCH_MASK
, },
187 { .reg_offset
= 1, .mask
= RT8973A_INT2_OCP_MASK
, },
188 { .reg_offset
= 1, .mask
= RT8973A_INT2_OVP_OCP_MASK
, },
191 static const struct regmap_irq_chip rt8973a_muic_irq_chip
= {
193 .status_base
= RT8973A_REG_INT1
,
194 .mask_base
= RT8973A_REG_INTM1
,
195 .mask_invert
= false,
197 .irqs
= rt8973a_irqs
,
198 .num_irqs
= ARRAY_SIZE(rt8973a_irqs
),
201 /* Define regmap configuration of RT8973A for I2C communication */
202 static bool rt8973a_muic_volatile_reg(struct device
*dev
, unsigned int reg
)
205 case RT8973A_REG_INTM1
:
206 case RT8973A_REG_INTM2
:
214 static const struct regmap_config rt8973a_muic_regmap_config
= {
217 .volatile_reg
= rt8973a_muic_volatile_reg
,
218 .max_register
= RT8973A_REG_END
,
221 /* Change DM_CON/DP_CON/VBUSIN switch according to cable type */
222 static int rt8973a_muic_set_path(struct rt8973a_muic_info
*info
,
223 unsigned int con_sw
, bool attached
)
228 * Don't need to set h/w path according to cable type
229 * if Auto-configuration mode of CONTROL1 register is true.
231 if (info
->auto_config
)
235 con_sw
= DM_DP_SWITCH_UART
;
238 case DM_DP_SWITCH_OPEN
:
239 case DM_DP_SWITCH_USB
:
240 case DM_DP_SWITCH_UART
:
241 ret
= regmap_update_bits(info
->regmap
, RT8973A_REG_MANUAL_SW1
,
242 RT8973A_REG_MANUAL_SW1_DP_MASK
|
243 RT8973A_REG_MANUAL_SW1_DM_MASK
,
247 "cannot update DM_CON/DP_CON switch\n");
252 dev_err(info
->dev
, "Unknown DM_CON/DP_CON switch type (%d)\n",
260 static int rt8973a_muic_get_cable_type(struct rt8973a_muic_info
*info
)
262 unsigned int adc
, dev1
;
265 /* Read ADC value according to external cable or button */
266 ret
= regmap_read(info
->regmap
, RT8973A_REG_ADC
, &adc
);
268 dev_err(info
->dev
, "failed to read ADC register\n");
271 cable_type
= adc
& RT8973A_REG_ADC_MASK
;
273 /* Read Device 1 reigster to identify correct cable type */
274 ret
= regmap_read(info
->regmap
, RT8973A_REG_DEV1
, &dev1
);
276 dev_err(info
->dev
, "failed to read DEV1 register\n");
281 case RT8973A_MUIC_ADC_OPEN
:
282 if (dev1
& RT8973A_REG_DEV1_USB_MASK
)
283 cable_type
= RT8973A_MUIC_ADC_USB
;
284 else if (dev1
& RT8973A_REG_DEV1_DCPORT_MASK
)
285 cable_type
= RT8973A_MUIC_ADC_TA
;
287 cable_type
= RT8973A_MUIC_ADC_OPEN
;
296 static int rt8973a_muic_cable_handler(struct rt8973a_muic_info
*info
,
297 enum rt8973a_event_type event
)
299 static unsigned int prev_cable_type
;
300 unsigned int con_sw
= DM_DP_SWITCH_UART
;
303 bool attached
= false;
306 case RT8973A_EVENT_ATTACH
:
307 cable_type
= rt8973a_muic_get_cable_type(info
);
310 case RT8973A_EVENT_DETACH
:
311 cable_type
= prev_cable_type
;
314 case RT8973A_EVENT_OVP
:
315 case RT8973A_EVENT_OTP
:
317 "happen Over %s issue. Need to disconnect all cables\n",
318 event
== RT8973A_EVENT_OVP
? "Voltage" : "Temperature");
319 cable_type
= prev_cable_type
;
324 "Cannot handle this event (event:%d)\n", event
);
327 prev_cable_type
= cable_type
;
329 switch (cable_type
) {
330 case RT8973A_MUIC_ADC_OTG
:
331 id
= EXTCON_USB_HOST
;
332 con_sw
= DM_DP_SWITCH_USB
;
334 case RT8973A_MUIC_ADC_TA
:
335 id
= EXTCON_CHG_USB_DCP
;
336 con_sw
= DM_DP_SWITCH_OPEN
;
338 case RT8973A_MUIC_ADC_FACTORY_MODE_BOOT_OFF_USB
:
339 case RT8973A_MUIC_ADC_FACTORY_MODE_BOOT_ON_USB
:
341 con_sw
= DM_DP_SWITCH_USB
;
343 case RT8973A_MUIC_ADC_FACTORY_MODE_BOOT_OFF_UART
:
344 case RT8973A_MUIC_ADC_FACTORY_MODE_BOOT_ON_UART
:
346 con_sw
= DM_DP_SWITCH_UART
;
348 case RT8973A_MUIC_ADC_USB
:
350 con_sw
= DM_DP_SWITCH_USB
;
352 case RT8973A_MUIC_ADC_OPEN
:
354 case RT8973A_MUIC_ADC_UNKNOWN_ACC_1
:
355 case RT8973A_MUIC_ADC_UNKNOWN_ACC_2
:
356 case RT8973A_MUIC_ADC_UNKNOWN_ACC_3
:
357 case RT8973A_MUIC_ADC_UNKNOWN_ACC_4
:
358 case RT8973A_MUIC_ADC_UNKNOWN_ACC_5
:
360 "Unknown accessory type (adc:0x%x)\n", cable_type
);
362 case RT8973A_MUIC_ADC_AUDIO_SEND_END_BUTTON
:
363 case RT8973A_MUIC_ADC_AUDIO_REMOTE_S1_BUTTON
:
364 case RT8973A_MUIC_ADC_AUDIO_REMOTE_S2_BUTTON
:
365 case RT8973A_MUIC_ADC_AUDIO_REMOTE_S3_BUTTON
:
366 case RT8973A_MUIC_ADC_AUDIO_REMOTE_S4_BUTTON
:
367 case RT8973A_MUIC_ADC_AUDIO_REMOTE_S5_BUTTON
:
368 case RT8973A_MUIC_ADC_AUDIO_REMOTE_S6_BUTTON
:
369 case RT8973A_MUIC_ADC_AUDIO_REMOTE_S7_BUTTON
:
370 case RT8973A_MUIC_ADC_AUDIO_REMOTE_S8_BUTTON
:
371 case RT8973A_MUIC_ADC_AUDIO_REMOTE_S9_BUTTON
:
372 case RT8973A_MUIC_ADC_AUDIO_REMOTE_S10_BUTTON
:
373 case RT8973A_MUIC_ADC_AUDIO_REMOTE_S11_BUTTON
:
374 case RT8973A_MUIC_ADC_AUDIO_REMOTE_S12_BUTTON
:
375 case RT8973A_MUIC_ADC_AUDIO_TYPE2
:
377 "Audio device/button type (adc:0x%x)\n", cable_type
);
379 case RT8973A_MUIC_ADC_RESERVED_ACC_1
:
380 case RT8973A_MUIC_ADC_RESERVED_ACC_2
:
381 case RT8973A_MUIC_ADC_RESERVED_ACC_3
:
382 case RT8973A_MUIC_ADC_RESERVED_ACC_4
:
383 case RT8973A_MUIC_ADC_RESERVED_ACC_5
:
384 case RT8973A_MUIC_ADC_PHONE_POWERED_DEV
:
388 "Cannot handle this cable_type (adc:0x%x)\n",
393 /* Change internal hardware path(DM_CON/DP_CON) */
394 ret
= rt8973a_muic_set_path(info
, con_sw
, attached
);
398 /* Change the state of external accessory */
399 extcon_set_state_sync(info
->edev
, id
, attached
);
400 if (id
== EXTCON_USB
)
401 extcon_set_state_sync(info
->edev
, EXTCON_CHG_USB_SDP
,
407 static void rt8973a_muic_irq_work(struct work_struct
*work
)
409 struct rt8973a_muic_info
*info
= container_of(work
,
410 struct rt8973a_muic_info
, irq_work
);
416 mutex_lock(&info
->mutex
);
418 /* Detect attached or detached cables */
419 if (info
->irq_attach
) {
420 ret
= rt8973a_muic_cable_handler(info
, RT8973A_EVENT_ATTACH
);
421 info
->irq_attach
= false;
424 if (info
->irq_detach
) {
425 ret
= rt8973a_muic_cable_handler(info
, RT8973A_EVENT_DETACH
);
426 info
->irq_detach
= false;
430 ret
= rt8973a_muic_cable_handler(info
, RT8973A_EVENT_OVP
);
431 info
->irq_ovp
= false;
435 ret
= rt8973a_muic_cable_handler(info
, RT8973A_EVENT_OTP
);
436 info
->irq_otp
= false;
440 dev_err(info
->dev
, "failed to handle MUIC interrupt\n");
442 mutex_unlock(&info
->mutex
);
445 static irqreturn_t
rt8973a_muic_irq_handler(int irq
, void *data
)
447 struct rt8973a_muic_info
*info
= data
;
448 int i
, irq_type
= -1;
450 for (i
= 0; i
< info
->num_muic_irqs
; i
++)
451 if (irq
== info
->muic_irqs
[i
].virq
)
452 irq_type
= info
->muic_irqs
[i
].irq
;
455 case RT8973A_INT1_ATTACH
:
456 info
->irq_attach
= true;
458 case RT8973A_INT1_DETACH
:
459 info
->irq_detach
= true;
461 case RT8973A_INT1_OVP
:
462 info
->irq_ovp
= true;
464 case RT8973A_INT1_OTP
:
465 info
->irq_otp
= true;
467 case RT8973A_INT1_CHGDET
:
468 case RT8973A_INT1_DCD_T
:
469 case RT8973A_INT1_CONNECT
:
470 case RT8973A_INT1_ADC_CHG
:
471 case RT8973A_INT2_UVLO
:
472 case RT8973A_INT2_POR
:
473 case RT8973A_INT2_OTP_FET
:
474 case RT8973A_INT2_OVP_FET
:
475 case RT8973A_INT2_OCP_LATCH
:
476 case RT8973A_INT2_OCP
:
477 case RT8973A_INT2_OVP_OCP
:
480 "Cannot handle this interrupt (%d)\n", irq_type
);
484 schedule_work(&info
->irq_work
);
489 static void rt8973a_muic_detect_cable_wq(struct work_struct
*work
)
491 struct rt8973a_muic_info
*info
= container_of(to_delayed_work(work
),
492 struct rt8973a_muic_info
, wq_detcable
);
495 /* Notify the state of connector cable or not */
496 ret
= rt8973a_muic_cable_handler(info
, RT8973A_EVENT_ATTACH
);
498 dev_warn(info
->dev
, "failed to detect cable state\n");
501 static void rt8973a_init_dev_type(struct rt8973a_muic_info
*info
)
503 unsigned int data
, vendor_id
, version_id
;
506 /* To test I2C, Print version_id and vendor_id of RT8973A */
507 ret
= regmap_read(info
->regmap
, RT8973A_REG_DEVICE_ID
, &data
);
510 "failed to read DEVICE_ID register: %d\n", ret
);
514 vendor_id
= ((data
& RT8973A_REG_DEVICE_ID_VENDOR_MASK
) >>
515 RT8973A_REG_DEVICE_ID_VENDOR_SHIFT
);
516 version_id
= ((data
& RT8973A_REG_DEVICE_ID_VERSION_MASK
) >>
517 RT8973A_REG_DEVICE_ID_VERSION_SHIFT
);
519 dev_info(info
->dev
, "Device type: version: 0x%x, vendor: 0x%x\n",
520 version_id
, vendor_id
);
522 /* Initiazle the register of RT8973A device to bring-up */
523 for (i
= 0; i
< info
->num_reg_data
; i
++) {
524 u8 reg
= info
->reg_data
[i
].reg
;
525 u8 mask
= info
->reg_data
[i
].mask
;
528 if (info
->reg_data
[i
].invert
)
529 val
= ~info
->reg_data
[i
].val
;
531 val
= info
->reg_data
[i
].val
;
533 regmap_update_bits(info
->regmap
, reg
, mask
, val
);
536 /* Check whether RT8973A is auto switching mode or not */
537 ret
= regmap_read(info
->regmap
, RT8973A_REG_CONTROL1
, &data
);
540 "failed to read CONTROL1 register: %d\n", ret
);
544 data
&= RT8973A_REG_CONTROL1_AUTO_CONFIG_MASK
;
546 info
->auto_config
= true;
548 "Enable Auto-configuration for internal path\n");
552 static int rt8973a_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 rt8973a_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
= rt8973a_muic_irqs
;
571 info
->num_muic_irqs
= ARRAY_SIZE(rt8973a_muic_irqs
);
572 info
->reg_data
= rt8973a_reg_data
;
573 info
->num_reg_data
= ARRAY_SIZE(rt8973a_reg_data
);
575 mutex_init(&info
->mutex
);
577 INIT_WORK(&info
->irq_work
, rt8973a_muic_irq_work
);
579 info
->regmap
= devm_regmap_init_i2c(i2c
, &rt8973a_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 RT8973A 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 &rt8973a_muic_irq_chip
, &info
->irq_data
);
592 dev_err(info
->dev
, "failed to add irq_chip (irq:%d, err:%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 rt8973a_muic_irq_handler
,
608 IRQF_NO_SUSPEND
| IRQF_ONESHOT
,
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
, rt8973a_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
, rt8973a_muic_detect_cable_wq
);
641 queue_delayed_work(system_power_efficient_wq
, &info
->wq_detcable
,
642 msecs_to_jiffies(DELAY_MS_DEFAULT
));
644 /* Initialize RT8973A device and print vendor id and version id */
645 rt8973a_init_dev_type(info
);
650 static int rt8973a_muic_i2c_remove(struct i2c_client
*i2c
)
652 struct rt8973a_muic_info
*info
= i2c_get_clientdata(i2c
);
654 regmap_del_irq_chip(info
->irq
, info
->irq_data
);
659 static const struct of_device_id rt8973a_dt_match
[] = {
660 { .compatible
= "richtek,rt8973a-muic" },
663 MODULE_DEVICE_TABLE(of
, rt8973a_dt_match
);
665 #ifdef CONFIG_PM_SLEEP
666 static int rt8973a_muic_suspend(struct device
*dev
)
668 struct i2c_client
*i2c
= to_i2c_client(dev
);
669 struct rt8973a_muic_info
*info
= i2c_get_clientdata(i2c
);
671 enable_irq_wake(info
->irq
);
676 static int rt8973a_muic_resume(struct device
*dev
)
678 struct i2c_client
*i2c
= to_i2c_client(dev
);
679 struct rt8973a_muic_info
*info
= i2c_get_clientdata(i2c
);
681 disable_irq_wake(info
->irq
);
687 static SIMPLE_DEV_PM_OPS(rt8973a_muic_pm_ops
,
688 rt8973a_muic_suspend
, rt8973a_muic_resume
);
690 static const struct i2c_device_id rt8973a_i2c_id
[] = {
691 { "rt8973a", TYPE_RT8973A
},
694 MODULE_DEVICE_TABLE(i2c
, rt8973a_i2c_id
);
696 static struct i2c_driver rt8973a_muic_i2c_driver
= {
699 .pm
= &rt8973a_muic_pm_ops
,
700 .of_match_table
= rt8973a_dt_match
,
702 .probe
= rt8973a_muic_i2c_probe
,
703 .remove
= rt8973a_muic_i2c_remove
,
704 .id_table
= rt8973a_i2c_id
,
707 static int __init
rt8973a_muic_i2c_init(void)
709 return i2c_add_driver(&rt8973a_muic_i2c_driver
);
711 subsys_initcall(rt8973a_muic_i2c_init
);
713 MODULE_DESCRIPTION("Richtek RT8973A Extcon driver");
714 MODULE_AUTHOR("Chanwoo Choi <cw00.choi@samsung.com>");
715 MODULE_LICENSE("GPL");