blob: df4ab5de15862c7ba35fb532174db56866ffff47 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (C) 1999-2002 Vojtech Pavlik
3*
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License version 2 as published by
6 * the Free Software Foundation.
7 */
David Howells607ca462012-10-13 10:46:48 +01008#ifndef _SERIO_H
9#define _SERIO_H
Linus Torvalds1da177e2005-04-16 15:20:36 -070010
Linus Torvalds1da177e2005-04-16 15:20:36 -070011
Dmitry Torokhov7e044e02009-05-09 16:08:05 -070012#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/interrupt.h>
14#include <linux/list.h>
15#include <linux/spinlock.h>
Arjan van de Venc4e32e92006-02-19 00:21:55 -050016#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/device.h>
18#include <linux/mod_devicetable.h>
David Howells607ca462012-10-13 10:46:48 +010019#include <uapi/linux/serio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
Stephen Chandler Paule1443d22015-07-15 10:20:17 -070021extern struct bus_type serio_bus;
22
Linus Torvalds1da177e2005-04-16 15:20:36 -070023struct serio {
24 void *port_data;
25
26 char name[32];
27 char phys[32];
Hans de Goede0456c662014-04-19 20:39:35 -070028 char firmware_id[128];
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Dmitry Torokhov7e044e02009-05-09 16:08:05 -070030 bool manual_bind;
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32 struct serio_device_id id;
33
34 spinlock_t lock; /* protects critical sections from port's interrupt handler */
35
36 int (*write)(struct serio *, unsigned char);
37 int (*open)(struct serio *);
38 void (*close)(struct serio *);
39 int (*start)(struct serio *);
40 void (*stop)(struct serio *);
41
Dmitry Eremin-Solenikov09822582010-10-04 21:46:10 -070042 struct serio *parent;
43 struct list_head child_node; /* Entry in parent->children list */
44 struct list_head children;
Jiri Kosina88aa0102006-10-11 01:45:31 -040045 unsigned int depth; /* level of nesting in serio hierarchy */
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47 struct serio_driver *drv; /* accessed from interrupt, must be protected by serio->lock and serio->sem */
Arjan van de Venc4e32e92006-02-19 00:21:55 -050048 struct mutex drv_mutex; /* protects serio->drv so attributes can pin driver */
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50 struct device dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52 struct list_head node;
53};
54#define to_serio_port(d) container_of(d, struct serio, dev)
55
56struct serio_driver {
Dmitry Torokhovceee4272010-09-13 23:53:55 -070057 const char *description;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Dmitry Torokhovceee4272010-09-13 23:53:55 -070059 const struct serio_device_id *id_table;
Dmitry Torokhov7e044e02009-05-09 16:08:05 -070060 bool manual_bind;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62 void (*write_wakeup)(struct serio *);
David Howells7d12e782006-10-05 14:55:46 +010063 irqreturn_t (*interrupt)(struct serio *, unsigned char, unsigned int);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 int (*connect)(struct serio *, struct serio_driver *drv);
65 int (*reconnect)(struct serio *);
66 void (*disconnect)(struct serio *);
67 void (*cleanup)(struct serio *);
68
69 struct device_driver driver;
70};
71#define to_serio_driver(d) container_of(d, struct serio_driver, driver)
72
73int serio_open(struct serio *serio, struct serio_driver *drv);
74void serio_close(struct serio *serio);
75void serio_rescan(struct serio *serio);
76void serio_reconnect(struct serio *serio);
David Howells7d12e782006-10-05 14:55:46 +010077irqreturn_t serio_interrupt(struct serio *serio, unsigned char data, unsigned int flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79void __serio_register_port(struct serio *serio, struct module *owner);
Paul Gortmakereb5589a2011-05-27 09:02:11 -040080
81/* use a define to avoid include chaining to get THIS_MODULE */
82#define serio_register_port(serio) \
83 __serio_register_port(serio, THIS_MODULE)
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
85void serio_unregister_port(struct serio *serio);
Dmitry Torokhovdbf4ccd2005-06-01 02:40:01 -050086void serio_unregister_child_port(struct serio *serio);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Paul Gortmakereb5589a2011-05-27 09:02:11 -040088int __must_check __serio_register_driver(struct serio_driver *drv,
89 struct module *owner, const char *mod_name);
90
91/* use a define to avoid include chaining to get THIS_MODULE & friends */
92#define serio_register_driver(drv) \
93 __serio_register_driver(drv, THIS_MODULE, KBUILD_MODNAME)
94
Linus Torvalds1da177e2005-04-16 15:20:36 -070095void serio_unregister_driver(struct serio_driver *drv);
96
Axel Linfa7f86d2012-04-03 23:50:15 -070097/**
98 * module_serio_driver() - Helper macro for registering a serio driver
99 * @__serio_driver: serio_driver struct
100 *
101 * Helper macro for serio drivers which do not do anything special in
102 * module init/exit. This eliminates a lot of boilerplate. Each module
103 * may only use this macro once, and calling it replaces module_init()
104 * and module_exit().
105 */
106#define module_serio_driver(__serio_driver) \
107 module_driver(__serio_driver, serio_register_driver, \
108 serio_unregister_driver)
109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110static inline int serio_write(struct serio *serio, unsigned char data)
111{
112 if (serio->write)
113 return serio->write(serio, data);
114 else
115 return -1;
116}
117
118static inline void serio_drv_write_wakeup(struct serio *serio)
119{
120 if (serio->drv && serio->drv->write_wakeup)
121 serio->drv->write_wakeup(serio);
122}
123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124/*
Akinobu Mita0b280022006-03-26 01:38:58 -0800125 * Use the following functions to manipulate serio's per-port
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 * driver-specific data.
127 */
128static inline void *serio_get_drvdata(struct serio *serio)
129{
130 return dev_get_drvdata(&serio->dev);
131}
132
133static inline void serio_set_drvdata(struct serio *serio, void *data)
134{
135 dev_set_drvdata(&serio->dev, data);
136}
137
138/*
Akinobu Mita0b280022006-03-26 01:38:58 -0800139 * Use the following functions to protect critical sections in
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 * driver code from port's interrupt handler
141 */
142static inline void serio_pause_rx(struct serio *serio)
143{
144 spin_lock_irq(&serio->lock);
145}
146
147static inline void serio_continue_rx(struct serio *serio)
148{
149 spin_unlock_irq(&serio->lock);
150}
151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152#endif