anish kumar | 1993986 | 2012-08-17 09:57:22 -0700 | [diff] [blame] | 1 | /* |
| 2 | * drivers/extcon/extcon-adc-jack.c |
| 3 | * |
| 4 | * Analog Jack extcon driver with ADC-based detection capability. |
| 5 | * |
| 6 | * Copyright (C) 2012 Samsung Electronics |
| 7 | * MyungJoo Ham <myungjoo.ham@samsung.com> |
| 8 | * |
| 9 | * Modified for calling to IIO to get adc by <anish.singh@samsung.com> |
| 10 | * |
| 11 | * This program is free software; you can redistribute it and/or modify |
| 12 | * it under the terms of the GNU General Public License version 2 as |
| 13 | * published by the Free Software Foundation. |
| 14 | * |
| 15 | */ |
| 16 | |
Axel Lin | d9310e3 | 2012-10-02 09:16:53 +0900 | [diff] [blame] | 17 | #include <linux/module.h> |
anish kumar | 1993986 | 2012-08-17 09:57:22 -0700 | [diff] [blame] | 18 | #include <linux/slab.h> |
| 19 | #include <linux/device.h> |
| 20 | #include <linux/platform_device.h> |
| 21 | #include <linux/err.h> |
| 22 | #include <linux/interrupt.h> |
| 23 | #include <linux/workqueue.h> |
| 24 | #include <linux/iio/consumer.h> |
| 25 | #include <linux/extcon/extcon-adc-jack.h> |
| 26 | #include <linux/extcon.h> |
| 27 | |
| 28 | /** |
| 29 | * struct adc_jack_data - internal data for adc_jack device driver |
Chanwoo Choi | a75e1c7 | 2013-08-31 13:16:49 +0900 | [diff] [blame] | 30 | * @edev: extcon device. |
| 31 | * @cable_names: list of supported cables. |
| 32 | * @num_cables: size of cable_names. |
| 33 | * @adc_conditions: list of adc value conditions. |
| 34 | * @num_conditions: size of adc_conditions. |
| 35 | * @irq: irq number of attach/detach event (0 if not exist). |
| 36 | * @handling_delay: interrupt handler will schedule extcon event |
| 37 | * handling at handling_delay jiffies. |
| 38 | * @handler: extcon event handler called by interrupt handler. |
| 39 | * @chan: iio channel being queried. |
anish kumar | 1993986 | 2012-08-17 09:57:22 -0700 | [diff] [blame] | 40 | */ |
| 41 | struct adc_jack_data { |
Chanwoo Choi | 1876fd9 | 2014-04-21 20:49:30 +0900 | [diff] [blame] | 42 | struct extcon_dev *edev; |
anish kumar | 1993986 | 2012-08-17 09:57:22 -0700 | [diff] [blame] | 43 | |
| 44 | const char **cable_names; |
| 45 | int num_cables; |
| 46 | struct adc_jack_cond *adc_conditions; |
| 47 | int num_conditions; |
| 48 | |
| 49 | int irq; |
| 50 | unsigned long handling_delay; /* in jiffies */ |
| 51 | struct delayed_work handler; |
| 52 | |
| 53 | struct iio_channel *chan; |
| 54 | }; |
| 55 | |
| 56 | static void adc_jack_handler(struct work_struct *work) |
| 57 | { |
| 58 | struct adc_jack_data *data = container_of(to_delayed_work(work), |
| 59 | struct adc_jack_data, |
| 60 | handler); |
| 61 | u32 state = 0; |
| 62 | int ret, adc_val; |
| 63 | int i; |
| 64 | |
| 65 | ret = iio_read_channel_raw(data->chan, &adc_val); |
| 66 | if (ret < 0) { |
Chanwoo Choi | 1876fd9 | 2014-04-21 20:49:30 +0900 | [diff] [blame] | 67 | dev_err(&data->edev->dev, "read channel() error: %d\n", ret); |
anish kumar | 1993986 | 2012-08-17 09:57:22 -0700 | [diff] [blame] | 68 | return; |
| 69 | } |
| 70 | |
| 71 | /* Get state from adc value with adc_conditions */ |
| 72 | for (i = 0; i < data->num_conditions; i++) { |
| 73 | struct adc_jack_cond *def = &data->adc_conditions[i]; |
| 74 | if (!def->state) |
| 75 | break; |
| 76 | if (def->min_adc <= adc_val && def->max_adc >= adc_val) { |
| 77 | state = def->state; |
| 78 | break; |
| 79 | } |
| 80 | } |
| 81 | /* if no def has met, it means state = 0 (no cables attached) */ |
| 82 | |
Chanwoo Choi | 1876fd9 | 2014-04-21 20:49:30 +0900 | [diff] [blame] | 83 | extcon_set_state(data->edev, state); |
anish kumar | 1993986 | 2012-08-17 09:57:22 -0700 | [diff] [blame] | 84 | } |
| 85 | |
| 86 | static irqreturn_t adc_jack_irq_thread(int irq, void *_data) |
| 87 | { |
| 88 | struct adc_jack_data *data = _data; |
| 89 | |
Mark Brown | 1a82e81 | 2013-07-19 18:47:35 +0100 | [diff] [blame] | 90 | queue_delayed_work(system_power_efficient_wq, |
| 91 | &data->handler, data->handling_delay); |
anish kumar | 1993986 | 2012-08-17 09:57:22 -0700 | [diff] [blame] | 92 | return IRQ_HANDLED; |
| 93 | } |
| 94 | |
Bill Pemberton | 44f34fd | 2012-11-19 13:23:21 -0500 | [diff] [blame] | 95 | static int adc_jack_probe(struct platform_device *pdev) |
anish kumar | 1993986 | 2012-08-17 09:57:22 -0700 | [diff] [blame] | 96 | { |
| 97 | struct adc_jack_data *data; |
Jingoo Han | 7c0f6558 | 2013-09-11 13:22:18 +0900 | [diff] [blame] | 98 | struct adc_jack_pdata *pdata = dev_get_platdata(&pdev->dev); |
anish kumar | 1993986 | 2012-08-17 09:57:22 -0700 | [diff] [blame] | 99 | int i, err = 0; |
| 100 | |
| 101 | data = devm_kzalloc(&pdev->dev, sizeof(*data), GFP_KERNEL); |
| 102 | if (!data) |
| 103 | return -ENOMEM; |
| 104 | |
anish kumar | 1993986 | 2012-08-17 09:57:22 -0700 | [diff] [blame] | 105 | if (!pdata->cable_names) { |
anish kumar | 1993986 | 2012-08-17 09:57:22 -0700 | [diff] [blame] | 106 | dev_err(&pdev->dev, "error: cable_names not defined.\n"); |
Sangjung Woo | 4b5dd73 | 2014-04-21 19:10:09 +0900 | [diff] [blame] | 107 | return -EINVAL; |
anish kumar | 1993986 | 2012-08-17 09:57:22 -0700 | [diff] [blame] | 108 | } |
| 109 | |
Chanwoo Choi | 1876fd9 | 2014-04-21 20:49:30 +0900 | [diff] [blame] | 110 | data->edev = devm_extcon_dev_allocate(&pdev->dev, pdata->cable_names); |
| 111 | if (IS_ERR(data->edev)) { |
| 112 | dev_err(&pdev->dev, "failed to allocate extcon device\n"); |
| 113 | return -ENOMEM; |
| 114 | } |
Chanwoo Choi | 1876fd9 | 2014-04-21 20:49:30 +0900 | [diff] [blame] | 115 | data->edev->name = pdata->name; |
anish kumar | 1993986 | 2012-08-17 09:57:22 -0700 | [diff] [blame] | 116 | |
| 117 | /* Check the length of array and set num_cables */ |
Chanwoo Choi | 1876fd9 | 2014-04-21 20:49:30 +0900 | [diff] [blame] | 118 | for (i = 0; data->edev->supported_cable[i]; i++) |
anish kumar | 1993986 | 2012-08-17 09:57:22 -0700 | [diff] [blame] | 119 | ; |
| 120 | if (i == 0 || i > SUPPORTED_CABLE_MAX) { |
anish kumar | 1993986 | 2012-08-17 09:57:22 -0700 | [diff] [blame] | 121 | dev_err(&pdev->dev, "error: pdata->cable_names size = %d\n", |
| 122 | i - 1); |
Sangjung Woo | 4b5dd73 | 2014-04-21 19:10:09 +0900 | [diff] [blame] | 123 | return -EINVAL; |
anish kumar | 1993986 | 2012-08-17 09:57:22 -0700 | [diff] [blame] | 124 | } |
| 125 | data->num_cables = i; |
| 126 | |
| 127 | if (!pdata->adc_conditions || |
| 128 | !pdata->adc_conditions[0].state) { |
anish kumar | 1993986 | 2012-08-17 09:57:22 -0700 | [diff] [blame] | 129 | dev_err(&pdev->dev, "error: adc_conditions not defined.\n"); |
Sangjung Woo | 4b5dd73 | 2014-04-21 19:10:09 +0900 | [diff] [blame] | 130 | return -EINVAL; |
anish kumar | 1993986 | 2012-08-17 09:57:22 -0700 | [diff] [blame] | 131 | } |
| 132 | data->adc_conditions = pdata->adc_conditions; |
| 133 | |
| 134 | /* Check the length of array and set num_conditions */ |
| 135 | for (i = 0; data->adc_conditions[i].state; i++) |
| 136 | ; |
| 137 | data->num_conditions = i; |
| 138 | |
Guenter Roeck | 5aa57f0 | 2013-02-04 20:26:00 +0000 | [diff] [blame] | 139 | data->chan = iio_channel_get(&pdev->dev, pdata->consumer_channel); |
Sangjung Woo | 4b5dd73 | 2014-04-21 19:10:09 +0900 | [diff] [blame] | 140 | if (IS_ERR(data->chan)) |
| 141 | return PTR_ERR(data->chan); |
anish kumar | 1993986 | 2012-08-17 09:57:22 -0700 | [diff] [blame] | 142 | |
| 143 | data->handling_delay = msecs_to_jiffies(pdata->handling_delay_ms); |
| 144 | |
Linus Torvalds | 033d995 | 2012-10-02 09:54:49 -0700 | [diff] [blame] | 145 | INIT_DEFERRABLE_WORK(&data->handler, adc_jack_handler); |
anish kumar | 1993986 | 2012-08-17 09:57:22 -0700 | [diff] [blame] | 146 | |
| 147 | platform_set_drvdata(pdev, data); |
| 148 | |
Chanwoo Choi | 1876fd9 | 2014-04-21 20:49:30 +0900 | [diff] [blame] | 149 | err = devm_extcon_dev_register(&pdev->dev, data->edev); |
anish kumar | 1993986 | 2012-08-17 09:57:22 -0700 | [diff] [blame] | 150 | if (err) |
Sangjung Woo | 4b5dd73 | 2014-04-21 19:10:09 +0900 | [diff] [blame] | 151 | return err; |
anish kumar | 1993986 | 2012-08-17 09:57:22 -0700 | [diff] [blame] | 152 | |
| 153 | data->irq = platform_get_irq(pdev, 0); |
| 154 | if (!data->irq) { |
| 155 | dev_err(&pdev->dev, "platform_get_irq failed\n"); |
Sangjung Woo | 4b5dd73 | 2014-04-21 19:10:09 +0900 | [diff] [blame] | 156 | return -ENODEV; |
anish kumar | 1993986 | 2012-08-17 09:57:22 -0700 | [diff] [blame] | 157 | } |
| 158 | |
| 159 | err = request_any_context_irq(data->irq, adc_jack_irq_thread, |
| 160 | pdata->irq_flags, pdata->name, data); |
| 161 | |
Axel Lin | 0301975 | 2012-10-02 09:14:59 +0900 | [diff] [blame] | 162 | if (err < 0) { |
anish kumar | 1993986 | 2012-08-17 09:57:22 -0700 | [diff] [blame] | 163 | dev_err(&pdev->dev, "error: irq %d\n", data->irq); |
Sangjung Woo | 4b5dd73 | 2014-04-21 19:10:09 +0900 | [diff] [blame] | 164 | return err; |
anish kumar | 1993986 | 2012-08-17 09:57:22 -0700 | [diff] [blame] | 165 | } |
| 166 | |
Axel Lin | 0301975 | 2012-10-02 09:14:59 +0900 | [diff] [blame] | 167 | return 0; |
anish kumar | 1993986 | 2012-08-17 09:57:22 -0700 | [diff] [blame] | 168 | } |
| 169 | |
Bill Pemberton | 93ed032 | 2012-11-19 13:25:49 -0500 | [diff] [blame] | 170 | static int adc_jack_remove(struct platform_device *pdev) |
anish kumar | 1993986 | 2012-08-17 09:57:22 -0700 | [diff] [blame] | 171 | { |
| 172 | struct adc_jack_data *data = platform_get_drvdata(pdev); |
| 173 | |
| 174 | free_irq(data->irq, data); |
| 175 | cancel_work_sync(&data->handler.work); |
Ivan T. Ivanov | 5a696d9 | 2014-12-17 17:59:27 +0200 | [diff] [blame] | 176 | iio_channel_release(data->chan); |
anish kumar | 1993986 | 2012-08-17 09:57:22 -0700 | [diff] [blame] | 177 | |
| 178 | return 0; |
| 179 | } |
| 180 | |
| 181 | static struct platform_driver adc_jack_driver = { |
| 182 | .probe = adc_jack_probe, |
Bill Pemberton | 5f7e222 | 2012-11-19 13:20:06 -0500 | [diff] [blame] | 183 | .remove = adc_jack_remove, |
anish kumar | 1993986 | 2012-08-17 09:57:22 -0700 | [diff] [blame] | 184 | .driver = { |
| 185 | .name = "adc-jack", |
anish kumar | 1993986 | 2012-08-17 09:57:22 -0700 | [diff] [blame] | 186 | }, |
| 187 | }; |
| 188 | |
| 189 | module_platform_driver(adc_jack_driver); |
Axel Lin | d9310e3 | 2012-10-02 09:16:53 +0900 | [diff] [blame] | 190 | |
| 191 | MODULE_AUTHOR("MyungJoo Ham <myungjoo.ham@samsung.com>"); |
| 192 | MODULE_DESCRIPTION("ADC Jack extcon driver"); |
| 193 | MODULE_LICENSE("GPL v2"); |