1 // SPDX-License-Identifier: GPL-2.0-only
3 * extcon-qcom-spmi-misc.c - Qualcomm USB extcon driver to support USB ID
4 * detection based on extcon-usb-gpio.c.
6 * Copyright (C) 2016 Linaro, Ltd.
7 * Stephen Boyd <stephen.boyd@linaro.org>
10 #include <linux/extcon-provider.h>
11 #include <linux/init.h>
12 #include <linux/interrupt.h>
13 #include <linux/kernel.h>
14 #include <linux/module.h>
15 #include <linux/mod_devicetable.h>
16 #include <linux/platform_device.h>
17 #include <linux/slab.h>
18 #include <linux/workqueue.h>
20 #define USB_ID_DEBOUNCE_MS 5 /* ms */
22 struct qcom_usb_extcon_info {
23 struct extcon_dev *edev;
25 struct delayed_work wq_detcable;
26 unsigned long debounce_jiffies;
29 static const unsigned int qcom_usb_extcon_cable[] = {
34 static void qcom_usb_extcon_detect_cable(struct work_struct *work)
38 struct qcom_usb_extcon_info *info = container_of(to_delayed_work(work),
39 struct qcom_usb_extcon_info,
42 /* check ID and update cable state */
43 ret = irq_get_irqchip_state(info->irq, IRQCHIP_STATE_LINE_LEVEL, &id);
47 extcon_set_state_sync(info->edev, EXTCON_USB_HOST, !id);
50 static irqreturn_t qcom_usb_irq_handler(int irq, void *dev_id)
52 struct qcom_usb_extcon_info *info = dev_id;
54 queue_delayed_work(system_power_efficient_wq, &info->wq_detcable,
55 info->debounce_jiffies);
60 static int qcom_usb_extcon_probe(struct platform_device *pdev)
62 struct device *dev = &pdev->dev;
63 struct qcom_usb_extcon_info *info;
66 info = devm_kzalloc(dev, sizeof(*info), GFP_KERNEL);
70 info->edev = devm_extcon_dev_allocate(dev, qcom_usb_extcon_cable);
71 if (IS_ERR(info->edev)) {
72 dev_err(dev, "failed to allocate extcon device\n");
76 ret = devm_extcon_dev_register(dev, info->edev);
78 dev_err(dev, "failed to register extcon device\n");
82 info->debounce_jiffies = msecs_to_jiffies(USB_ID_DEBOUNCE_MS);
83 INIT_DELAYED_WORK(&info->wq_detcable, qcom_usb_extcon_detect_cable);
85 info->irq = platform_get_irq_byname(pdev, "usb_id");
89 ret = devm_request_threaded_irq(dev, info->irq, NULL,
92 IRQF_TRIGGER_FALLING | IRQF_ONESHOT,
95 dev_err(dev, "failed to request handler for ID IRQ\n");
99 platform_set_drvdata(pdev, info);
100 device_init_wakeup(dev, 1);
102 /* Perform initial detection */
103 qcom_usb_extcon_detect_cable(&info->wq_detcable.work);
108 static int qcom_usb_extcon_remove(struct platform_device *pdev)
110 struct qcom_usb_extcon_info *info = platform_get_drvdata(pdev);
112 cancel_delayed_work_sync(&info->wq_detcable);
117 #ifdef CONFIG_PM_SLEEP
118 static int qcom_usb_extcon_suspend(struct device *dev)
120 struct qcom_usb_extcon_info *info = dev_get_drvdata(dev);
123 if (device_may_wakeup(dev))
124 ret = enable_irq_wake(info->irq);
129 static int qcom_usb_extcon_resume(struct device *dev)
131 struct qcom_usb_extcon_info *info = dev_get_drvdata(dev);
134 if (device_may_wakeup(dev))
135 ret = disable_irq_wake(info->irq);
141 static SIMPLE_DEV_PM_OPS(qcom_usb_extcon_pm_ops,
142 qcom_usb_extcon_suspend, qcom_usb_extcon_resume);
144 static const struct of_device_id qcom_usb_extcon_dt_match[] = {
145 { .compatible = "qcom,pm8941-misc", },
148 MODULE_DEVICE_TABLE(of, qcom_usb_extcon_dt_match);
150 static struct platform_driver qcom_usb_extcon_driver = {
151 .probe = qcom_usb_extcon_probe,
152 .remove = qcom_usb_extcon_remove,
154 .name = "extcon-pm8941-misc",
155 .pm = &qcom_usb_extcon_pm_ops,
156 .of_match_table = qcom_usb_extcon_dt_match,
159 module_platform_driver(qcom_usb_extcon_driver);
161 MODULE_DESCRIPTION("QCOM USB ID extcon driver");
162 MODULE_AUTHOR("Stephen Boyd <stephen.boyd@linaro.org>");
163 MODULE_LICENSE("GPL v2");