blob: d2da6aa7f27d0eb1ccb4c874711446e3952e5367 [file] [log] [blame]
Richard Genoud84130aa2014-05-13 20:20:43 +02001/*
2 * Helpers for controlling modem lines via GPIO
3 *
4 * Copyright (C) 2014 Paratronic S.A.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
Richard Genoud84130aa2014-05-13 20:20:43 +020015 */
16
17#include <linux/err.h>
18#include <linux/device.h>
Uwe Kleine-Königce59e482015-09-30 10:19:41 +020019#include <linux/irq.h>
Richard Genoud84130aa2014-05-13 20:20:43 +020020#include <linux/gpio/consumer.h>
Alexander Shiyan93b88772014-09-20 09:34:45 +040021#include <linux/termios.h>
Uwe Kleine-Königce59e482015-09-30 10:19:41 +020022#include <linux/serial_core.h>
Romain Izard82a3f872016-02-23 15:54:54 +010023#include <linux/module.h>
Richard Genoud84130aa2014-05-13 20:20:43 +020024
25#include "serial_mctrl_gpio.h"
26
27struct mctrl_gpios {
Uwe Kleine-Königce59e482015-09-30 10:19:41 +020028 struct uart_port *port;
Richard Genoud84130aa2014-05-13 20:20:43 +020029 struct gpio_desc *gpio[UART_GPIO_MAX];
Uwe Kleine-Königce59e482015-09-30 10:19:41 +020030 int irq[UART_GPIO_MAX];
31 unsigned int mctrl_prev;
32 bool mctrl_on;
Richard Genoud84130aa2014-05-13 20:20:43 +020033};
34
35static const struct {
36 const char *name;
37 unsigned int mctrl;
38 bool dir_out;
39} mctrl_gpios_desc[UART_GPIO_MAX] = {
40 { "cts", TIOCM_CTS, false, },
41 { "dsr", TIOCM_DSR, false, },
42 { "dcd", TIOCM_CD, false, },
43 { "rng", TIOCM_RNG, false, },
44 { "rts", TIOCM_RTS, true, },
45 { "dtr", TIOCM_DTR, true, },
Richard Genoud84130aa2014-05-13 20:20:43 +020046};
47
48void mctrl_gpio_set(struct mctrl_gpios *gpios, unsigned int mctrl)
49{
50 enum mctrl_gpio_idx i;
Rojhalat Ibrahim834296a2014-11-17 18:31:30 +010051 struct gpio_desc *desc_array[UART_GPIO_MAX];
52 int value_array[UART_GPIO_MAX];
53 unsigned int count = 0;
Richard Genoud84130aa2014-05-13 20:20:43 +020054
Yegor Yefremov434be0a2016-05-31 10:59:17 +020055 if (gpios == NULL)
56 return;
57
Richard Genoud84130aa2014-05-13 20:20:43 +020058 for (i = 0; i < UART_GPIO_MAX; i++)
Uwe Kleine-König445df7f2015-05-19 21:56:29 +020059 if (gpios->gpio[i] && mctrl_gpios_desc[i].dir_out) {
Rojhalat Ibrahim834296a2014-11-17 18:31:30 +010060 desc_array[count] = gpios->gpio[i];
61 value_array[count] = !!(mctrl & mctrl_gpios_desc[i].mctrl);
62 count++;
63 }
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +020064 gpiod_set_array_value(count, desc_array, value_array);
Richard Genoud84130aa2014-05-13 20:20:43 +020065}
66EXPORT_SYMBOL_GPL(mctrl_gpio_set);
67
68struct gpio_desc *mctrl_gpio_to_gpiod(struct mctrl_gpios *gpios,
69 enum mctrl_gpio_idx gidx)
70{
Uwe Kleine-König9e9f0792015-02-12 15:24:41 +010071 return gpios->gpio[gidx];
Richard Genoud84130aa2014-05-13 20:20:43 +020072}
73EXPORT_SYMBOL_GPL(mctrl_gpio_to_gpiod);
74
75unsigned int mctrl_gpio_get(struct mctrl_gpios *gpios, unsigned int *mctrl)
76{
77 enum mctrl_gpio_idx i;
78
Yegor Yefremov434be0a2016-05-31 10:59:17 +020079 if (gpios == NULL)
80 return *mctrl;
81
Richard Genoud84130aa2014-05-13 20:20:43 +020082 for (i = 0; i < UART_GPIO_MAX; i++) {
Uwe Kleine-König9e9f0792015-02-12 15:24:41 +010083 if (gpios->gpio[i] && !mctrl_gpios_desc[i].dir_out) {
Richard Genoud84130aa2014-05-13 20:20:43 +020084 if (gpiod_get_value(gpios->gpio[i]))
85 *mctrl |= mctrl_gpios_desc[i].mctrl;
86 else
87 *mctrl &= ~mctrl_gpios_desc[i].mctrl;
88 }
89 }
90
91 return *mctrl;
92}
93EXPORT_SYMBOL_GPL(mctrl_gpio_get);
94
Yegor Yefremovbf5cee62016-05-31 10:59:16 +020095unsigned int
96mctrl_gpio_get_outputs(struct mctrl_gpios *gpios, unsigned int *mctrl)
97{
98 enum mctrl_gpio_idx i;
99
Yegor Yefremov434be0a2016-05-31 10:59:17 +0200100 if (gpios == NULL)
101 return *mctrl;
102
Yegor Yefremovbf5cee62016-05-31 10:59:16 +0200103 for (i = 0; i < UART_GPIO_MAX; i++) {
104 if (gpios->gpio[i] && mctrl_gpios_desc[i].dir_out) {
105 if (gpiod_get_value(gpios->gpio[i]))
106 *mctrl |= mctrl_gpios_desc[i].mctrl;
107 else
108 *mctrl &= ~mctrl_gpios_desc[i].mctrl;
109 }
110 }
111
112 return *mctrl;
113}
114EXPORT_SYMBOL_GPL(mctrl_gpio_get_outputs);
115
Uwe Kleine-König7d8c70d2015-09-30 10:19:40 +0200116struct mctrl_gpios *mctrl_gpio_init_noauto(struct device *dev, unsigned int idx)
Richard Genoud84130aa2014-05-13 20:20:43 +0200117{
118 struct mctrl_gpios *gpios;
119 enum mctrl_gpio_idx i;
Richard Genoud84130aa2014-05-13 20:20:43 +0200120
121 gpios = devm_kzalloc(dev, sizeof(*gpios), GFP_KERNEL);
122 if (!gpios)
123 return ERR_PTR(-ENOMEM);
124
125 for (i = 0; i < UART_GPIO_MAX; i++) {
Uwe Kleine-König1d267ea2015-02-12 15:24:42 +0100126 enum gpiod_flags flags;
Richard Genoud84130aa2014-05-13 20:20:43 +0200127
128 if (mctrl_gpios_desc[i].dir_out)
Uwe Kleine-König1d267ea2015-02-12 15:24:42 +0100129 flags = GPIOD_OUT_LOW;
Richard Genoud84130aa2014-05-13 20:20:43 +0200130 else
Uwe Kleine-König1d267ea2015-02-12 15:24:42 +0100131 flags = GPIOD_IN;
132
133 gpios->gpio[i] =
134 devm_gpiod_get_index_optional(dev,
135 mctrl_gpios_desc[i].name,
136 idx, flags);
137
138 if (IS_ERR(gpios->gpio[i]))
Fabio Estevam13bc2bb2015-03-10 12:23:18 -0300139 return ERR_CAST(gpios->gpio[i]);
Richard Genoud84130aa2014-05-13 20:20:43 +0200140 }
141
142 return gpios;
143}
Uwe Kleine-König7d8c70d2015-09-30 10:19:40 +0200144EXPORT_SYMBOL_GPL(mctrl_gpio_init_noauto);
Richard Genoud84130aa2014-05-13 20:20:43 +0200145
Uwe Kleine-Königce59e482015-09-30 10:19:41 +0200146#define MCTRL_ANY_DELTA (TIOCM_RI | TIOCM_DSR | TIOCM_CD | TIOCM_CTS)
147static irqreturn_t mctrl_gpio_irq_handle(int irq, void *context)
148{
149 struct mctrl_gpios *gpios = context;
150 struct uart_port *port = gpios->port;
151 u32 mctrl = gpios->mctrl_prev;
152 u32 mctrl_diff;
Yegor Yefremovd11df6182016-04-29 10:45:07 +0200153 unsigned long flags;
Uwe Kleine-Königce59e482015-09-30 10:19:41 +0200154
155 mctrl_gpio_get(gpios, &mctrl);
156
Yegor Yefremovd11df6182016-04-29 10:45:07 +0200157 spin_lock_irqsave(&port->lock, flags);
158
Uwe Kleine-Königce59e482015-09-30 10:19:41 +0200159 mctrl_diff = mctrl ^ gpios->mctrl_prev;
160 gpios->mctrl_prev = mctrl;
161
162 if (mctrl_diff & MCTRL_ANY_DELTA && port->state != NULL) {
163 if ((mctrl_diff & mctrl) & TIOCM_RI)
164 port->icount.rng++;
165
166 if ((mctrl_diff & mctrl) & TIOCM_DSR)
167 port->icount.dsr++;
168
169 if (mctrl_diff & TIOCM_CD)
170 uart_handle_dcd_change(port, mctrl & TIOCM_CD);
171
172 if (mctrl_diff & TIOCM_CTS)
173 uart_handle_cts_change(port, mctrl & TIOCM_CTS);
174
175 wake_up_interruptible(&port->state->port.delta_msr_wait);
176 }
177
Yegor Yefremovd11df6182016-04-29 10:45:07 +0200178 spin_unlock_irqrestore(&port->lock, flags);
179
Uwe Kleine-Königce59e482015-09-30 10:19:41 +0200180 return IRQ_HANDLED;
181}
182
183struct mctrl_gpios *mctrl_gpio_init(struct uart_port *port, unsigned int idx)
184{
185 struct mctrl_gpios *gpios;
186 enum mctrl_gpio_idx i;
187
188 gpios = mctrl_gpio_init_noauto(port->dev, idx);
189 if (IS_ERR(gpios))
190 return gpios;
191
192 gpios->port = port;
193
194 for (i = 0; i < UART_GPIO_MAX; ++i) {
195 int ret;
196
197 if (!gpios->gpio[i] || mctrl_gpios_desc[i].dir_out)
198 continue;
199
200 ret = gpiod_to_irq(gpios->gpio[i]);
201 if (ret <= 0) {
202 dev_err(port->dev,
203 "failed to find corresponding irq for %s (idx=%d, err=%d)\n",
204 mctrl_gpios_desc[i].name, idx, ret);
205 return ERR_PTR(ret);
206 }
207 gpios->irq[i] = ret;
208
209 /* irqs should only be enabled in .enable_ms */
210 irq_set_status_flags(gpios->irq[i], IRQ_NOAUTOEN);
211
212 ret = devm_request_irq(port->dev, gpios->irq[i],
213 mctrl_gpio_irq_handle,
214 IRQ_TYPE_EDGE_BOTH, dev_name(port->dev),
215 gpios);
216 if (ret) {
217 /* alternatively implement polling */
218 dev_err(port->dev,
219 "failed to request irq for %s (idx=%d, err=%d)\n",
220 mctrl_gpios_desc[i].name, idx, ret);
221 return ERR_PTR(ret);
222 }
223 }
224
225 return gpios;
226}
Uwe Kleine-König4f71a2e2015-12-13 11:30:02 +0100227EXPORT_SYMBOL_GPL(mctrl_gpio_init);
Uwe Kleine-Königce59e482015-09-30 10:19:41 +0200228
Richard Genoud84130aa2014-05-13 20:20:43 +0200229void mctrl_gpio_free(struct device *dev, struct mctrl_gpios *gpios)
230{
231 enum mctrl_gpio_idx i;
232
Yegor Yefremov434be0a2016-05-31 10:59:17 +0200233 if (gpios == NULL)
234 return;
235
Uwe Kleine-Königce59e482015-09-30 10:19:41 +0200236 for (i = 0; i < UART_GPIO_MAX; i++) {
237 if (gpios->irq[i])
238 devm_free_irq(gpios->port->dev, gpios->irq[i], gpios);
239
Uwe Kleine-König445df7f2015-05-19 21:56:29 +0200240 if (gpios->gpio[i])
Richard Genoud84130aa2014-05-13 20:20:43 +0200241 devm_gpiod_put(dev, gpios->gpio[i]);
Uwe Kleine-Königce59e482015-09-30 10:19:41 +0200242 }
Richard Genoud84130aa2014-05-13 20:20:43 +0200243 devm_kfree(dev, gpios);
244}
245EXPORT_SYMBOL_GPL(mctrl_gpio_free);
Uwe Kleine-Königce59e482015-09-30 10:19:41 +0200246
247void mctrl_gpio_enable_ms(struct mctrl_gpios *gpios)
248{
249 enum mctrl_gpio_idx i;
250
Yegor Yefremov434be0a2016-05-31 10:59:17 +0200251 if (gpios == NULL)
252 return;
253
Uwe Kleine-Königce59e482015-09-30 10:19:41 +0200254 /* .enable_ms may be called multiple times */
255 if (gpios->mctrl_on)
256 return;
257
258 gpios->mctrl_on = true;
259
260 /* get initial status of modem lines GPIOs */
261 mctrl_gpio_get(gpios, &gpios->mctrl_prev);
262
263 for (i = 0; i < UART_GPIO_MAX; ++i) {
264 if (!gpios->irq[i])
265 continue;
266
267 enable_irq(gpios->irq[i]);
268 }
269}
270EXPORT_SYMBOL_GPL(mctrl_gpio_enable_ms);
271
272void mctrl_gpio_disable_ms(struct mctrl_gpios *gpios)
273{
274 enum mctrl_gpio_idx i;
275
Yegor Yefremov434be0a2016-05-31 10:59:17 +0200276 if (gpios == NULL)
277 return;
278
Uwe Kleine-Königce59e482015-09-30 10:19:41 +0200279 if (!gpios->mctrl_on)
280 return;
281
282 gpios->mctrl_on = false;
283
284 for (i = 0; i < UART_GPIO_MAX; ++i) {
285 if (!gpios->irq[i])
286 continue;
287
288 disable_irq(gpios->irq[i]);
289 }
290}
Uwe Kleine-König4f71a2e2015-12-13 11:30:02 +0100291EXPORT_SYMBOL_GPL(mctrl_gpio_disable_ms);
Romain Izard82a3f872016-02-23 15:54:54 +0100292
293MODULE_LICENSE("GPL");