blob: 531031a15cdda723d0df620f2584152b9e519c9b [file] [log] [blame]
Rob Herringcd6484e2017-02-02 13:48:07 -06001/*
2 * Copyright (C) 2016-2017 Linaro Ltd., Rob Herring <robh@kernel.org>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 and
6 * only version 2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 */
13#ifndef _LINUX_SERDEV_H
14#define _LINUX_SERDEV_H
15
16#include <linux/types.h>
17#include <linux/device.h>
Sebastian Reichel5659dab2017-03-28 17:59:32 +020018#include <linux/termios.h>
Sebastian Reichel756db772017-03-28 17:59:33 +020019#include <linux/delay.h>
Rob Herringcd6484e2017-02-02 13:48:07 -060020
21struct serdev_controller;
22struct serdev_device;
23
24/*
25 * serdev device structures
26 */
27
28/**
29 * struct serdev_device_ops - Callback operations for a serdev device
30 * @receive_buf: Function called with data received from device.
31 * @write_wakeup: Function called when ready to transmit more data.
32 */
33struct serdev_device_ops {
34 int (*receive_buf)(struct serdev_device *, const unsigned char *, size_t);
35 void (*write_wakeup)(struct serdev_device *);
36};
37
38/**
39 * struct serdev_device - Basic representation of an serdev device
40 * @dev: Driver model representation of the device.
41 * @nr: Device number on serdev bus.
42 * @ctrl: serdev controller managing this device.
43 * @ops: Device operations.
Andrey Smirnov6fe729c2017-04-04 07:22:33 -070044 * @write_comp Completion used by serdev_device_write() internally
45 * @write_lock Lock to serialize access when writing data
Rob Herringcd6484e2017-02-02 13:48:07 -060046 */
47struct serdev_device {
48 struct device dev;
49 int nr;
50 struct serdev_controller *ctrl;
51 const struct serdev_device_ops *ops;
Andrey Smirnov6fe729c2017-04-04 07:22:33 -070052 struct completion write_comp;
53 struct mutex write_lock;
Rob Herringcd6484e2017-02-02 13:48:07 -060054};
55
56static inline struct serdev_device *to_serdev_device(struct device *d)
57{
58 return container_of(d, struct serdev_device, dev);
59}
60
61/**
62 * struct serdev_device_driver - serdev slave device driver
63 * @driver: serdev device drivers should initialize name field of this
64 * structure.
65 * @probe: binds this driver to a serdev device.
66 * @remove: unbinds this driver from the serdev device.
67 */
68struct serdev_device_driver {
69 struct device_driver driver;
70 int (*probe)(struct serdev_device *);
71 void (*remove)(struct serdev_device *);
72};
73
74static inline struct serdev_device_driver *to_serdev_device_driver(struct device_driver *d)
75{
76 return container_of(d, struct serdev_device_driver, driver);
77}
78
Ulrich Hecht3a19cfc2018-01-22 18:56:32 +010079enum serdev_parity {
80 SERDEV_PARITY_NONE,
81 SERDEV_PARITY_EVEN,
82 SERDEV_PARITY_ODD,
83};
84
Rob Herringcd6484e2017-02-02 13:48:07 -060085/*
86 * serdev controller structures
87 */
88struct serdev_controller_ops {
89 int (*write_buf)(struct serdev_controller *, const unsigned char *, size_t);
90 void (*write_flush)(struct serdev_controller *);
91 int (*write_room)(struct serdev_controller *);
92 int (*open)(struct serdev_controller *);
93 void (*close)(struct serdev_controller *);
94 void (*set_flow_control)(struct serdev_controller *, bool);
Ulrich Hecht3a19cfc2018-01-22 18:56:32 +010095 int (*set_parity)(struct serdev_controller *, enum serdev_parity);
Rob Herringcd6484e2017-02-02 13:48:07 -060096 unsigned int (*set_baudrate)(struct serdev_controller *, unsigned int);
Sebastian Reichelb3f80c82017-03-28 17:59:31 +020097 void (*wait_until_sent)(struct serdev_controller *, long);
Sebastian Reichel5659dab2017-03-28 17:59:32 +020098 int (*get_tiocm)(struct serdev_controller *);
99 int (*set_tiocm)(struct serdev_controller *, unsigned int, unsigned int);
Rob Herringcd6484e2017-02-02 13:48:07 -0600100};
101
102/**
103 * struct serdev_controller - interface to the serdev controller
104 * @dev: Driver model representation of the device.
105 * @nr: number identifier for this controller/bus.
106 * @serdev: Pointer to slave device for this controller.
107 * @ops: Controller operations.
108 */
109struct serdev_controller {
110 struct device dev;
111 unsigned int nr;
112 struct serdev_device *serdev;
113 const struct serdev_controller_ops *ops;
114};
115
116static inline struct serdev_controller *to_serdev_controller(struct device *d)
117{
118 return container_of(d, struct serdev_controller, dev);
119}
120
121static inline void *serdev_device_get_drvdata(const struct serdev_device *serdev)
122{
123 return dev_get_drvdata(&serdev->dev);
124}
125
126static inline void serdev_device_set_drvdata(struct serdev_device *serdev, void *data)
127{
128 dev_set_drvdata(&serdev->dev, data);
129}
130
131/**
132 * serdev_device_put() - decrement serdev device refcount
133 * @serdev serdev device.
134 */
135static inline void serdev_device_put(struct serdev_device *serdev)
136{
137 if (serdev)
138 put_device(&serdev->dev);
139}
140
141static inline void serdev_device_set_client_ops(struct serdev_device *serdev,
142 const struct serdev_device_ops *ops)
143{
144 serdev->ops = ops;
145}
146
147static inline
148void *serdev_controller_get_drvdata(const struct serdev_controller *ctrl)
149{
150 return ctrl ? dev_get_drvdata(&ctrl->dev) : NULL;
151}
152
153static inline void serdev_controller_set_drvdata(struct serdev_controller *ctrl,
154 void *data)
155{
156 dev_set_drvdata(&ctrl->dev, data);
157}
158
159/**
160 * serdev_controller_put() - decrement controller refcount
161 * @ctrl serdev controller.
162 */
163static inline void serdev_controller_put(struct serdev_controller *ctrl)
164{
165 if (ctrl)
166 put_device(&ctrl->dev);
167}
168
169struct serdev_device *serdev_device_alloc(struct serdev_controller *);
170int serdev_device_add(struct serdev_device *);
171void serdev_device_remove(struct serdev_device *);
172
173struct serdev_controller *serdev_controller_alloc(struct device *, size_t);
174int serdev_controller_add(struct serdev_controller *);
175void serdev_controller_remove(struct serdev_controller *);
176
177static inline void serdev_controller_write_wakeup(struct serdev_controller *ctrl)
178{
179 struct serdev_device *serdev = ctrl->serdev;
180
181 if (!serdev || !serdev->ops->write_wakeup)
182 return;
183
Andrey Smirnov9d1d9942017-03-16 08:14:16 -0700184 serdev->ops->write_wakeup(serdev);
Rob Herringcd6484e2017-02-02 13:48:07 -0600185}
186
187static inline int serdev_controller_receive_buf(struct serdev_controller *ctrl,
188 const unsigned char *data,
189 size_t count)
190{
191 struct serdev_device *serdev = ctrl->serdev;
192
193 if (!serdev || !serdev->ops->receive_buf)
Johan Hovoldfd00cf82017-11-03 15:30:53 +0100194 return 0;
Rob Herringcd6484e2017-02-02 13:48:07 -0600195
Andrey Smirnov9d1d9942017-03-16 08:14:16 -0700196 return serdev->ops->receive_buf(serdev, data, count);
Rob Herringcd6484e2017-02-02 13:48:07 -0600197}
198
199#if IS_ENABLED(CONFIG_SERIAL_DEV_BUS)
200
201int serdev_device_open(struct serdev_device *);
202void serdev_device_close(struct serdev_device *);
Andrey Smirnov2cb67d22017-12-20 22:51:15 -0800203int devm_serdev_device_open(struct device *, struct serdev_device *);
Rob Herringcd6484e2017-02-02 13:48:07 -0600204unsigned int serdev_device_set_baudrate(struct serdev_device *, unsigned int);
205void serdev_device_set_flow_control(struct serdev_device *, bool);
Stefan Wahren6bdc00d2017-04-28 13:47:21 +0200206int serdev_device_write_buf(struct serdev_device *, const unsigned char *, size_t);
Sebastian Reichelb3f80c82017-03-28 17:59:31 +0200207void serdev_device_wait_until_sent(struct serdev_device *, long);
Sebastian Reichel5659dab2017-03-28 17:59:32 +0200208int serdev_device_get_tiocm(struct serdev_device *);
209int serdev_device_set_tiocm(struct serdev_device *, int, int);
Andrey Smirnov6fe729c2017-04-04 07:22:33 -0700210void serdev_device_write_wakeup(struct serdev_device *);
211int serdev_device_write(struct serdev_device *, const unsigned char *, size_t, unsigned long);
Rob Herringcd6484e2017-02-02 13:48:07 -0600212void serdev_device_write_flush(struct serdev_device *);
213int serdev_device_write_room(struct serdev_device *);
214
215/*
216 * serdev device driver functions
217 */
218int __serdev_device_driver_register(struct serdev_device_driver *, struct module *);
219#define serdev_device_driver_register(sdrv) \
220 __serdev_device_driver_register(sdrv, THIS_MODULE)
221
222/**
223 * serdev_device_driver_unregister() - unregister an serdev client driver
224 * @sdrv: the driver to unregister
225 */
226static inline void serdev_device_driver_unregister(struct serdev_device_driver *sdrv)
227{
228 if (sdrv)
229 driver_unregister(&sdrv->driver);
230}
231
232#define module_serdev_device_driver(__serdev_device_driver) \
233 module_driver(__serdev_device_driver, serdev_device_driver_register, \
234 serdev_device_driver_unregister)
235
236#else
237
238static inline int serdev_device_open(struct serdev_device *sdev)
239{
240 return -ENODEV;
241}
242static inline void serdev_device_close(struct serdev_device *sdev) {}
243static inline unsigned int serdev_device_set_baudrate(struct serdev_device *sdev, unsigned int baudrate)
244{
245 return 0;
246}
247static inline void serdev_device_set_flow_control(struct serdev_device *sdev, bool enable) {}
Stefan Wahren6bdc00d2017-04-28 13:47:21 +0200248static inline int serdev_device_write_buf(struct serdev_device *serdev,
249 const unsigned char *buf,
250 size_t count)
251{
252 return -ENODEV;
253}
Sebastian Reichelb3f80c82017-03-28 17:59:31 +0200254static inline void serdev_device_wait_until_sent(struct serdev_device *sdev, long timeout) {}
Sebastian Reichel5659dab2017-03-28 17:59:32 +0200255static inline int serdev_device_get_tiocm(struct serdev_device *serdev)
256{
257 return -ENOTSUPP;
258}
259static inline int serdev_device_set_tiocm(struct serdev_device *serdev, int set, int clear)
260{
261 return -ENOTSUPP;
262}
Andrey Smirnov6fe729c2017-04-04 07:22:33 -0700263static inline int serdev_device_write(struct serdev_device *sdev, const unsigned char *buf,
264 size_t count, unsigned long timeout)
Rob Herringcd6484e2017-02-02 13:48:07 -0600265{
266 return -ENODEV;
267}
268static inline void serdev_device_write_flush(struct serdev_device *sdev) {}
269static inline int serdev_device_write_room(struct serdev_device *sdev)
270{
271 return 0;
272}
273
274#define serdev_device_driver_register(x)
275#define serdev_device_driver_unregister(x)
276
277#endif /* CONFIG_SERIAL_DEV_BUS */
278
Sebastian Reichel756db772017-03-28 17:59:33 +0200279static inline bool serdev_device_get_cts(struct serdev_device *serdev)
280{
281 int status = serdev_device_get_tiocm(serdev);
282 return !!(status & TIOCM_CTS);
283}
284
285static inline int serdev_device_wait_for_cts(struct serdev_device *serdev, bool state, int timeout_ms)
286{
287 unsigned long timeout;
288 bool signal;
289
290 timeout = jiffies + msecs_to_jiffies(timeout_ms);
291 while (time_is_after_jiffies(timeout)) {
292 signal = serdev_device_get_cts(serdev);
293 if (signal == state)
294 return 0;
295 usleep_range(1000, 2000);
296 }
297
298 return -ETIMEDOUT;
299}
300
301static inline int serdev_device_set_rts(struct serdev_device *serdev, bool enable)
302{
303 if (enable)
304 return serdev_device_set_tiocm(serdev, TIOCM_RTS, 0);
305 else
306 return serdev_device_set_tiocm(serdev, 0, TIOCM_RTS);
307}
308
Ulrich Hecht3a19cfc2018-01-22 18:56:32 +0100309int serdev_device_set_parity(struct serdev_device *serdev,
310 enum serdev_parity parity);
311
Rob Herringbed35c62017-02-02 13:48:08 -0600312/*
313 * serdev hooks into TTY core
314 */
315struct tty_port;
316struct tty_driver;
317
318#ifdef CONFIG_SERIAL_DEV_CTRL_TTYPORT
319struct device *serdev_tty_port_register(struct tty_port *port,
320 struct device *parent,
321 struct tty_driver *drv, int idx);
Johan Hovold8cde11b2017-05-18 17:33:00 +0200322int serdev_tty_port_unregister(struct tty_port *port);
Rob Herringbed35c62017-02-02 13:48:08 -0600323#else
324static inline struct device *serdev_tty_port_register(struct tty_port *port,
325 struct device *parent,
326 struct tty_driver *drv, int idx)
327{
328 return ERR_PTR(-ENODEV);
329}
Johan Hovold8cde11b2017-05-18 17:33:00 +0200330static inline int serdev_tty_port_unregister(struct tty_port *port)
331{
332 return -ENODEV;
333}
Rob Herringbed35c62017-02-02 13:48:08 -0600334#endif /* CONFIG_SERIAL_DEV_CTRL_TTYPORT */
335
Rob Herringcd6484e2017-02-02 13:48:07 -0600336#endif /*_LINUX_SERDEV_H */