Merge branch 'efi-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[deliverable/linux.git] / drivers / extcon / extcon-adc-jack.c
CommitLineData
19939860 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
d9310e35 17#include <linux/module.h>
19939860 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
a75e1c73
CC
30 * @edev: extcon device.
31 * @cable_names: list of supported cables.
a75e1c73
CC
32 * @adc_conditions: list of adc value conditions.
33 * @num_conditions: size of adc_conditions.
34 * @irq: irq number of attach/detach event (0 if not exist).
35 * @handling_delay: interrupt handler will schedule extcon event
36 * handling at handling_delay jiffies.
37 * @handler: extcon event handler called by interrupt handler.
38 * @chan: iio channel being queried.
19939860 39 */
40struct adc_jack_data {
1876fd9a 41 struct extcon_dev *edev;
19939860 42
73b6ecdb 43 const unsigned int **cable_names;
19939860 44 struct adc_jack_cond *adc_conditions;
45 int num_conditions;
46
47 int irq;
48 unsigned long handling_delay; /* in jiffies */
49 struct delayed_work handler;
50
51 struct iio_channel *chan;
52};
53
54static void adc_jack_handler(struct work_struct *work)
55{
56 struct adc_jack_data *data = container_of(to_delayed_work(work),
57 struct adc_jack_data,
58 handler);
59 u32 state = 0;
60 int ret, adc_val;
61 int i;
62
63 ret = iio_read_channel_raw(data->chan, &adc_val);
64 if (ret < 0) {
1876fd9a 65 dev_err(&data->edev->dev, "read channel() error: %d\n", ret);
19939860 66 return;
67 }
68
69 /* Get state from adc value with adc_conditions */
70 for (i = 0; i < data->num_conditions; i++) {
71 struct adc_jack_cond *def = &data->adc_conditions[i];
72 if (!def->state)
73 break;
74 if (def->min_adc <= adc_val && def->max_adc >= adc_val) {
75 state = def->state;
76 break;
77 }
78 }
79 /* if no def has met, it means state = 0 (no cables attached) */
80
1876fd9a 81 extcon_set_state(data->edev, state);
19939860 82}
83
84static irqreturn_t adc_jack_irq_thread(int irq, void *_data)
85{
86 struct adc_jack_data *data = _data;
87
1a82e81e
MB
88 queue_delayed_work(system_power_efficient_wq,
89 &data->handler, data->handling_delay);
19939860 90 return IRQ_HANDLED;
91}
92
44f34fd4 93static int adc_jack_probe(struct platform_device *pdev)
19939860 94{
95 struct adc_jack_data *data;
7c0f6558 96 struct adc_jack_pdata *pdata = dev_get_platdata(&pdev->dev);
19939860 97 int i, err = 0;
98
99 data = devm_kzalloc(&pdev->dev, sizeof(*data), GFP_KERNEL);
100 if (!data)
101 return -ENOMEM;
102
19939860 103 if (!pdata->cable_names) {
19939860 104 dev_err(&pdev->dev, "error: cable_names not defined.\n");
4b5dd738 105 return -EINVAL;
19939860 106 }
107
1876fd9a
CC
108 data->edev = devm_extcon_dev_allocate(&pdev->dev, pdata->cable_names);
109 if (IS_ERR(data->edev)) {
110 dev_err(&pdev->dev, "failed to allocate extcon device\n");
111 return -ENOMEM;
112 }
19939860 113
19939860 114 if (!pdata->adc_conditions ||
115 !pdata->adc_conditions[0].state) {
19939860 116 dev_err(&pdev->dev, "error: adc_conditions not defined.\n");
4b5dd738 117 return -EINVAL;
19939860 118 }
119 data->adc_conditions = pdata->adc_conditions;
120
121 /* Check the length of array and set num_conditions */
122 for (i = 0; data->adc_conditions[i].state; i++)
123 ;
124 data->num_conditions = i;
125
5aa57f0a 126 data->chan = iio_channel_get(&pdev->dev, pdata->consumer_channel);
4b5dd738
SW
127 if (IS_ERR(data->chan))
128 return PTR_ERR(data->chan);
19939860 129
130 data->handling_delay = msecs_to_jiffies(pdata->handling_delay_ms);
131
033d9959 132 INIT_DEFERRABLE_WORK(&data->handler, adc_jack_handler);
19939860 133
134 platform_set_drvdata(pdev, data);
135
1876fd9a 136 err = devm_extcon_dev_register(&pdev->dev, data->edev);
19939860 137 if (err)
4b5dd738 138 return err;
19939860 139
140 data->irq = platform_get_irq(pdev, 0);
141 if (!data->irq) {
142 dev_err(&pdev->dev, "platform_get_irq failed\n");
4b5dd738 143 return -ENODEV;
19939860 144 }
145
146 err = request_any_context_irq(data->irq, adc_jack_irq_thread,
147 pdata->irq_flags, pdata->name, data);
148
03019759 149 if (err < 0) {
19939860 150 dev_err(&pdev->dev, "error: irq %d\n", data->irq);
4b5dd738 151 return err;
19939860 152 }
153
03019759 154 return 0;
19939860 155}
156
93ed0327 157static int adc_jack_remove(struct platform_device *pdev)
19939860 158{
159 struct adc_jack_data *data = platform_get_drvdata(pdev);
160
161 free_irq(data->irq, data);
162 cancel_work_sync(&data->handler.work);
5a696d97 163 iio_channel_release(data->chan);
19939860 164
165 return 0;
166}
167
168static struct platform_driver adc_jack_driver = {
169 .probe = adc_jack_probe,
5f7e2228 170 .remove = adc_jack_remove,
19939860 171 .driver = {
172 .name = "adc-jack",
19939860 173 },
174};
175
176module_platform_driver(adc_jack_driver);
d9310e35
AL
177
178MODULE_AUTHOR("MyungJoo Ham <myungjoo.ham@samsung.com>");
179MODULE_DESCRIPTION("ADC Jack extcon driver");
180MODULE_LICENSE("GPL v2");
This page took 0.235367 seconds and 5 git commands to generate.