blob: 69081d899492e6f79c701d0d3e4aa0d58a6b58c4 [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * Copyright (c) 1999-2002 Vojtech Pavlik
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 */
David Howells607ca462012-10-13 10:46:48 +01005#ifndef _GAMEPORT_H
6#define _GAMEPORT_H
Linus Torvalds1da177e2005-04-16 15:20:36 -07007
8#include <asm/io.h>
Dmitry Torokhov7e044e02009-05-09 16:08:05 -07009#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/list.h>
Arjan van de Ven286295e2006-02-19 00:22:03 -050011#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/device.h>
Tim Schmielau4e57b682005-10-30 15:03:48 -080013#include <linux/timer.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090014#include <linux/slab.h>
David Howells607ca462012-10-13 10:46:48 +010015#include <uapi/linux/gameport.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
17struct gameport {
18
19 void *port_data; /* Private pointer for gameport drivers */
20 char name[32];
21 char phys[32];
22
23 int io;
24 int speed;
25 int fuzz;
26
27 void (*trigger)(struct gameport *);
28 unsigned char (*read)(struct gameport *);
29 int (*cooked_read)(struct gameport *, int *, int *);
30 int (*calibrate)(struct gameport *, int *, int *);
31 int (*open)(struct gameport *, int);
32 void (*close)(struct gameport *);
33
34 struct timer_list poll_timer;
35 unsigned int poll_interval; /* in msecs */
36 spinlock_t timer_lock;
37 unsigned int poll_cnt;
38 void (*poll_handler)(struct gameport *);
39
40 struct gameport *parent, *child;
41
42 struct gameport_driver *drv;
Arjan van de Ven286295e2006-02-19 00:22:03 -050043 struct mutex drv_mutex; /* protects serio->drv so attributes can pin driver */
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45 struct device dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47 struct list_head node;
48};
49#define to_gameport_port(d) container_of(d, struct gameport, dev)
50
51struct gameport_driver {
Dmitry Torokhov37b0bb12010-09-13 23:53:55 -070052 const char *description;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54 int (*connect)(struct gameport *, struct gameport_driver *drv);
55 int (*reconnect)(struct gameport *);
56 void (*disconnect)(struct gameport *);
57
58 struct device_driver driver;
59
Dmitry Torokhov7e044e02009-05-09 16:08:05 -070060 bool ignore;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061};
62#define to_gameport_driver(d) container_of(d, struct gameport_driver, driver)
63
64int gameport_open(struct gameport *gameport, struct gameport_driver *drv, int mode);
65void gameport_close(struct gameport *gameport);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Adrian Bunk668d1e62005-05-28 02:11:12 -050067#if defined(CONFIG_GAMEPORT) || (defined(MODULE) && defined(CONFIG_GAMEPORT_MODULE))
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069void __gameport_register_port(struct gameport *gameport, struct module *owner);
Paul Gortmakereb5589a2011-05-27 09:02:11 -040070/* use a define to avoid include chaining to get THIS_MODULE */
71#define gameport_register_port(gameport) \
72 __gameport_register_port(gameport, THIS_MODULE)
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74void gameport_unregister_port(struct gameport *gameport);
75
Joe Perchesb9075fa2011-10-31 17:11:33 -070076__printf(2, 3)
77void gameport_set_phys(struct gameport *gameport, const char *fmt, ...);
Adrian Bunk668d1e62005-05-28 02:11:12 -050078
79#else
80
81static inline void gameport_register_port(struct gameport *gameport)
82{
83 return;
84}
85
86static inline void gameport_unregister_port(struct gameport *gameport)
87{
88 return;
89}
90
Joe Perchesb9075fa2011-10-31 17:11:33 -070091static inline __printf(2, 3)
92void gameport_set_phys(struct gameport *gameport, const char *fmt, ...)
Adrian Bunk668d1e62005-05-28 02:11:12 -050093{
94 return;
95}
96
97#endif
98
Linus Torvalds1da177e2005-04-16 15:20:36 -070099static inline struct gameport *gameport_allocate_port(void)
100{
Robert P. J. Daycd861282006-12-13 00:34:52 -0800101 struct gameport *gameport = kzalloc(sizeof(struct gameport), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
103 return gameport;
104}
105
106static inline void gameport_free_port(struct gameport *gameport)
107{
108 kfree(gameport);
109}
110
111static inline void gameport_set_name(struct gameport *gameport, const char *name)
112{
113 strlcpy(gameport->name, name, sizeof(gameport->name));
114}
115
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116/*
Akinobu Mita0b280022006-03-26 01:38:58 -0800117 * Use the following functions to manipulate gameport's per-port
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 * driver-specific data.
119 */
120static inline void *gameport_get_drvdata(struct gameport *gameport)
121{
122 return dev_get_drvdata(&gameport->dev);
123}
124
125static inline void gameport_set_drvdata(struct gameport *gameport, void *data)
126{
127 dev_set_drvdata(&gameport->dev, data);
128}
129
130/*
Akinobu Mita0b280022006-03-26 01:38:58 -0800131 * Use the following functions to pin gameport's driver in process context
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 */
133static inline int gameport_pin_driver(struct gameport *gameport)
134{
Arjan van de Ven286295e2006-02-19 00:22:03 -0500135 return mutex_lock_interruptible(&gameport->drv_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136}
137
138static inline void gameport_unpin_driver(struct gameport *gameport)
139{
Arjan van de Ven286295e2006-02-19 00:22:03 -0500140 mutex_unlock(&gameport->drv_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141}
142
Paul Gortmakereb5589a2011-05-27 09:02:11 -0400143int __must_check __gameport_register_driver(struct gameport_driver *drv,
Dmitry Torokhov6902c0b2008-06-06 01:33:22 -0400144 struct module *owner, const char *mod_name);
Paul Gortmakereb5589a2011-05-27 09:02:11 -0400145
146/* use a define to avoid include chaining to get THIS_MODULE & friends */
147#define gameport_register_driver(drv) \
148 __gameport_register_driver(drv, THIS_MODULE, KBUILD_MODNAME)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
150void gameport_unregister_driver(struct gameport_driver *drv);
151
Axel Lin45b26042012-04-03 23:51:08 -0700152/**
153 * module_gameport_driver() - Helper macro for registering a gameport driver
154 * @__gameport_driver: gameport_driver struct
155 *
156 * Helper macro for gameport drivers which do not do anything special in
157 * module init/exit. This eliminates a lot of boilerplate. Each module may
158 * only use this macro once, and calling it replaces module_init() and
159 * module_exit().
160 */
161#define module_gameport_driver(__gameport_driver) \
162 module_driver(__gameport_driver, gameport_register_driver, \
163 gameport_unregister_driver)
164
David Woodhouse25478bb2006-04-25 13:59:30 +0100165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166static inline void gameport_trigger(struct gameport *gameport)
167{
168 if (gameport->trigger)
169 gameport->trigger(gameport);
170 else
171 outb(0xff, gameport->io);
172}
173
174static inline unsigned char gameport_read(struct gameport *gameport)
175{
176 if (gameport->read)
177 return gameport->read(gameport);
178 else
179 return inb(gameport->io);
180}
181
182static inline int gameport_cooked_read(struct gameport *gameport, int *axes, int *buttons)
183{
184 if (gameport->cooked_read)
185 return gameport->cooked_read(gameport, axes, buttons);
186 else
187 return -1;
188}
189
190static inline int gameport_calibrate(struct gameport *gameport, int *axes, int *max)
191{
192 if (gameport->calibrate)
193 return gameport->calibrate(gameport, axes, max);
194 else
195 return -1;
196}
197
198static inline int gameport_time(struct gameport *gameport, int time)
199{
200 return (time * gameport->speed) / 1000;
201}
202
203static inline void gameport_set_poll_handler(struct gameport *gameport, void (*handler)(struct gameport *))
204{
205 gameport->poll_handler = handler;
206}
207
208static inline void gameport_set_poll_interval(struct gameport *gameport, unsigned int msecs)
209{
210 gameport->poll_interval = msecs;
211}
212
213void gameport_start_polling(struct gameport *gameport);
214void gameport_stop_polling(struct gameport *gameport);
215
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216#endif