.. | .. |
---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-or-later |
---|
1 | 2 | /* |
---|
2 | 3 | * Copyright (c) 2000-2001 Vojtech Pavlik <vojtech@ucw.cz> |
---|
3 | 4 | * Copyright (c) 2001, 2007 Johann Deneux <johann.deneux@gmail.com> |
---|
.. | .. |
---|
5 | 6 | * USB/RS232 I-Force joysticks and wheels. |
---|
6 | 7 | */ |
---|
7 | 8 | |
---|
8 | | -/* |
---|
9 | | - * This program is free software; you can redistribute it and/or modify |
---|
10 | | - * it under the terms of the GNU General Public License as published by |
---|
11 | | - * the Free Software Foundation; either version 2 of the License, or |
---|
12 | | - * (at your option) any later version. |
---|
13 | | - * |
---|
14 | | - * This program is distributed in the hope that it will be useful, |
---|
15 | | - * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
16 | | - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
17 | | - * GNU General Public License for more details. |
---|
18 | | - * |
---|
19 | | - * You should have received a copy of the GNU General Public License |
---|
20 | | - * along with this program; if not, write to the Free Software |
---|
21 | | - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
---|
22 | | - */ |
---|
23 | | - |
---|
| 9 | +#include <linux/serio.h> |
---|
24 | 10 | #include "iforce.h" |
---|
25 | 11 | |
---|
26 | | -void iforce_serial_xmit(struct iforce *iforce) |
---|
| 12 | +struct iforce_serio { |
---|
| 13 | + struct iforce iforce; |
---|
| 14 | + |
---|
| 15 | + struct serio *serio; |
---|
| 16 | + int idx, pkt, len, id; |
---|
| 17 | + u8 csum; |
---|
| 18 | + u8 expect_packet; |
---|
| 19 | + u8 cmd_response[IFORCE_MAX_LENGTH]; |
---|
| 20 | + u8 cmd_response_len; |
---|
| 21 | + u8 data_in[IFORCE_MAX_LENGTH]; |
---|
| 22 | +}; |
---|
| 23 | + |
---|
| 24 | +static void iforce_serio_xmit(struct iforce *iforce) |
---|
27 | 25 | { |
---|
| 26 | + struct iforce_serio *iforce_serio = container_of(iforce, |
---|
| 27 | + struct iforce_serio, |
---|
| 28 | + iforce); |
---|
28 | 29 | unsigned char cs; |
---|
29 | 30 | int i; |
---|
30 | 31 | unsigned long flags; |
---|
.. | .. |
---|
38 | 39 | |
---|
39 | 40 | again: |
---|
40 | 41 | if (iforce->xmit.head == iforce->xmit.tail) { |
---|
41 | | - clear_bit(IFORCE_XMIT_RUNNING, iforce->xmit_flags); |
---|
| 42 | + iforce_clear_xmit_and_wake(iforce); |
---|
42 | 43 | spin_unlock_irqrestore(&iforce->xmit_lock, flags); |
---|
43 | 44 | return; |
---|
44 | 45 | } |
---|
45 | 46 | |
---|
46 | 47 | cs = 0x2b; |
---|
47 | 48 | |
---|
48 | | - serio_write(iforce->serio, 0x2b); |
---|
| 49 | + serio_write(iforce_serio->serio, 0x2b); |
---|
49 | 50 | |
---|
50 | | - serio_write(iforce->serio, iforce->xmit.buf[iforce->xmit.tail]); |
---|
| 51 | + serio_write(iforce_serio->serio, iforce->xmit.buf[iforce->xmit.tail]); |
---|
51 | 52 | cs ^= iforce->xmit.buf[iforce->xmit.tail]; |
---|
52 | 53 | XMIT_INC(iforce->xmit.tail, 1); |
---|
53 | 54 | |
---|
54 | 55 | for (i=iforce->xmit.buf[iforce->xmit.tail]; i >= 0; --i) { |
---|
55 | | - serio_write(iforce->serio, iforce->xmit.buf[iforce->xmit.tail]); |
---|
| 56 | + serio_write(iforce_serio->serio, |
---|
| 57 | + iforce->xmit.buf[iforce->xmit.tail]); |
---|
56 | 58 | cs ^= iforce->xmit.buf[iforce->xmit.tail]; |
---|
57 | 59 | XMIT_INC(iforce->xmit.tail, 1); |
---|
58 | 60 | } |
---|
59 | 61 | |
---|
60 | | - serio_write(iforce->serio, cs); |
---|
| 62 | + serio_write(iforce_serio->serio, cs); |
---|
61 | 63 | |
---|
62 | 64 | if (test_and_clear_bit(IFORCE_XMIT_AGAIN, iforce->xmit_flags)) |
---|
63 | 65 | goto again; |
---|
64 | 66 | |
---|
65 | | - clear_bit(IFORCE_XMIT_RUNNING, iforce->xmit_flags); |
---|
| 67 | + iforce_clear_xmit_and_wake(iforce); |
---|
66 | 68 | |
---|
67 | 69 | spin_unlock_irqrestore(&iforce->xmit_lock, flags); |
---|
68 | 70 | } |
---|
| 71 | + |
---|
| 72 | +static int iforce_serio_get_id(struct iforce *iforce, u8 id, |
---|
| 73 | + u8 *response_data, size_t *response_len) |
---|
| 74 | +{ |
---|
| 75 | + struct iforce_serio *iforce_serio = container_of(iforce, |
---|
| 76 | + struct iforce_serio, |
---|
| 77 | + iforce); |
---|
| 78 | + |
---|
| 79 | + iforce_serio->expect_packet = HI(FF_CMD_QUERY); |
---|
| 80 | + iforce_serio->cmd_response_len = 0; |
---|
| 81 | + |
---|
| 82 | + iforce_send_packet(iforce, FF_CMD_QUERY, &id); |
---|
| 83 | + |
---|
| 84 | + wait_event_interruptible_timeout(iforce->wait, |
---|
| 85 | + !iforce_serio->expect_packet, HZ); |
---|
| 86 | + |
---|
| 87 | + if (iforce_serio->expect_packet) { |
---|
| 88 | + iforce_serio->expect_packet = 0; |
---|
| 89 | + return -ETIMEDOUT; |
---|
| 90 | + } |
---|
| 91 | + |
---|
| 92 | + if (iforce_serio->cmd_response[0] != id) |
---|
| 93 | + return -EIO; |
---|
| 94 | + |
---|
| 95 | + memcpy(response_data, iforce_serio->cmd_response, |
---|
| 96 | + iforce_serio->cmd_response_len); |
---|
| 97 | + *response_len = iforce_serio->cmd_response_len; |
---|
| 98 | + |
---|
| 99 | + return 0; |
---|
| 100 | +} |
---|
| 101 | + |
---|
| 102 | +static int iforce_serio_start_io(struct iforce *iforce) |
---|
| 103 | +{ |
---|
| 104 | + /* No special handling required */ |
---|
| 105 | + return 0; |
---|
| 106 | +} |
---|
| 107 | + |
---|
| 108 | +static void iforce_serio_stop_io(struct iforce *iforce) |
---|
| 109 | +{ |
---|
| 110 | + //TODO: Wait for the last packets to be sent |
---|
| 111 | +} |
---|
| 112 | + |
---|
| 113 | +static const struct iforce_xport_ops iforce_serio_xport_ops = { |
---|
| 114 | + .xmit = iforce_serio_xmit, |
---|
| 115 | + .get_id = iforce_serio_get_id, |
---|
| 116 | + .start_io = iforce_serio_start_io, |
---|
| 117 | + .stop_io = iforce_serio_stop_io, |
---|
| 118 | +}; |
---|
69 | 119 | |
---|
70 | 120 | static void iforce_serio_write_wakeup(struct serio *serio) |
---|
71 | 121 | { |
---|
72 | 122 | struct iforce *iforce = serio_get_drvdata(serio); |
---|
73 | 123 | |
---|
74 | | - iforce_serial_xmit(iforce); |
---|
| 124 | + iforce_serio_xmit(iforce); |
---|
75 | 125 | } |
---|
76 | 126 | |
---|
77 | 127 | static irqreturn_t iforce_serio_irq(struct serio *serio, |
---|
78 | | - unsigned char data, unsigned int flags) |
---|
| 128 | + unsigned char data, unsigned int flags) |
---|
79 | 129 | { |
---|
80 | | - struct iforce *iforce = serio_get_drvdata(serio); |
---|
| 130 | + struct iforce_serio *iforce_serio = serio_get_drvdata(serio); |
---|
| 131 | + struct iforce *iforce = &iforce_serio->iforce; |
---|
81 | 132 | |
---|
82 | | - if (!iforce->pkt) { |
---|
| 133 | + if (!iforce_serio->pkt) { |
---|
83 | 134 | if (data == 0x2b) |
---|
84 | | - iforce->pkt = 1; |
---|
| 135 | + iforce_serio->pkt = 1; |
---|
85 | 136 | goto out; |
---|
86 | 137 | } |
---|
87 | 138 | |
---|
88 | | - if (!iforce->id) { |
---|
| 139 | + if (!iforce_serio->id) { |
---|
89 | 140 | if (data > 3 && data != 0xff) |
---|
90 | | - iforce->pkt = 0; |
---|
| 141 | + iforce_serio->pkt = 0; |
---|
91 | 142 | else |
---|
92 | | - iforce->id = data; |
---|
| 143 | + iforce_serio->id = data; |
---|
93 | 144 | goto out; |
---|
94 | 145 | } |
---|
95 | 146 | |
---|
96 | | - if (!iforce->len) { |
---|
| 147 | + if (!iforce_serio->len) { |
---|
97 | 148 | if (data > IFORCE_MAX_LENGTH) { |
---|
98 | | - iforce->pkt = 0; |
---|
99 | | - iforce->id = 0; |
---|
| 149 | + iforce_serio->pkt = 0; |
---|
| 150 | + iforce_serio->id = 0; |
---|
100 | 151 | } else { |
---|
101 | | - iforce->len = data; |
---|
| 152 | + iforce_serio->len = data; |
---|
102 | 153 | } |
---|
103 | 154 | goto out; |
---|
104 | 155 | } |
---|
105 | 156 | |
---|
106 | | - if (iforce->idx < iforce->len) { |
---|
107 | | - iforce->csum += iforce->data[iforce->idx++] = data; |
---|
| 157 | + if (iforce_serio->idx < iforce_serio->len) { |
---|
| 158 | + iforce_serio->data_in[iforce_serio->idx++] = data; |
---|
| 159 | + iforce_serio->csum += data; |
---|
108 | 160 | goto out; |
---|
109 | 161 | } |
---|
110 | 162 | |
---|
111 | | - if (iforce->idx == iforce->len) { |
---|
112 | | - iforce_process_packet(iforce, (iforce->id << 8) | iforce->idx, iforce->data); |
---|
113 | | - iforce->pkt = 0; |
---|
114 | | - iforce->id = 0; |
---|
115 | | - iforce->len = 0; |
---|
116 | | - iforce->idx = 0; |
---|
117 | | - iforce->csum = 0; |
---|
| 163 | + if (iforce_serio->idx == iforce_serio->len) { |
---|
| 164 | + /* Handle command completion */ |
---|
| 165 | + if (iforce_serio->expect_packet == iforce_serio->id) { |
---|
| 166 | + iforce_serio->expect_packet = 0; |
---|
| 167 | + memcpy(iforce_serio->cmd_response, |
---|
| 168 | + iforce_serio->data_in, IFORCE_MAX_LENGTH); |
---|
| 169 | + iforce_serio->cmd_response_len = iforce_serio->len; |
---|
| 170 | + |
---|
| 171 | + /* Signal that command is done */ |
---|
| 172 | + wake_up_all(&iforce->wait); |
---|
| 173 | + } else if (likely(iforce->type)) { |
---|
| 174 | + iforce_process_packet(iforce, iforce_serio->id, |
---|
| 175 | + iforce_serio->data_in, |
---|
| 176 | + iforce_serio->len); |
---|
| 177 | + } |
---|
| 178 | + |
---|
| 179 | + iforce_serio->pkt = 0; |
---|
| 180 | + iforce_serio->id = 0; |
---|
| 181 | + iforce_serio->len = 0; |
---|
| 182 | + iforce_serio->idx = 0; |
---|
| 183 | + iforce_serio->csum = 0; |
---|
118 | 184 | } |
---|
119 | 185 | out: |
---|
120 | 186 | return IRQ_HANDLED; |
---|
.. | .. |
---|
122 | 188 | |
---|
123 | 189 | static int iforce_serio_connect(struct serio *serio, struct serio_driver *drv) |
---|
124 | 190 | { |
---|
125 | | - struct iforce *iforce; |
---|
| 191 | + struct iforce_serio *iforce_serio; |
---|
126 | 192 | int err; |
---|
127 | 193 | |
---|
128 | | - iforce = kzalloc(sizeof(struct iforce), GFP_KERNEL); |
---|
129 | | - if (!iforce) |
---|
| 194 | + iforce_serio = kzalloc(sizeof(*iforce_serio), GFP_KERNEL); |
---|
| 195 | + if (!iforce_serio) |
---|
130 | 196 | return -ENOMEM; |
---|
131 | 197 | |
---|
132 | | - iforce->bus = IFORCE_232; |
---|
133 | | - iforce->serio = serio; |
---|
| 198 | + iforce_serio->iforce.xport_ops = &iforce_serio_xport_ops; |
---|
134 | 199 | |
---|
135 | | - serio_set_drvdata(serio, iforce); |
---|
| 200 | + iforce_serio->serio = serio; |
---|
| 201 | + serio_set_drvdata(serio, iforce_serio); |
---|
136 | 202 | |
---|
137 | 203 | err = serio_open(serio, drv); |
---|
138 | 204 | if (err) |
---|
139 | 205 | goto fail1; |
---|
140 | 206 | |
---|
141 | | - err = iforce_init_device(iforce); |
---|
| 207 | + err = iforce_init_device(&serio->dev, BUS_RS232, &iforce_serio->iforce); |
---|
142 | 208 | if (err) |
---|
143 | 209 | goto fail2; |
---|
144 | 210 | |
---|
.. | .. |
---|
146 | 212 | |
---|
147 | 213 | fail2: serio_close(serio); |
---|
148 | 214 | fail1: serio_set_drvdata(serio, NULL); |
---|
149 | | - kfree(iforce); |
---|
| 215 | + kfree(iforce_serio); |
---|
150 | 216 | return err; |
---|
151 | 217 | } |
---|
152 | 218 | |
---|
153 | 219 | static void iforce_serio_disconnect(struct serio *serio) |
---|
154 | 220 | { |
---|
155 | | - struct iforce *iforce = serio_get_drvdata(serio); |
---|
| 221 | + struct iforce_serio *iforce_serio = serio_get_drvdata(serio); |
---|
156 | 222 | |
---|
157 | | - input_unregister_device(iforce->dev); |
---|
| 223 | + input_unregister_device(iforce_serio->iforce.dev); |
---|
158 | 224 | serio_close(serio); |
---|
159 | 225 | serio_set_drvdata(serio, NULL); |
---|
160 | | - kfree(iforce); |
---|
| 226 | + kfree(iforce_serio); |
---|
161 | 227 | } |
---|
162 | 228 | |
---|
163 | 229 | static const struct serio_device_id iforce_serio_ids[] = { |
---|
.. | .. |
---|
183 | 249 | .connect = iforce_serio_connect, |
---|
184 | 250 | .disconnect = iforce_serio_disconnect, |
---|
185 | 251 | }; |
---|
| 252 | + |
---|
| 253 | +module_serio_driver(iforce_serio_drv); |
---|
| 254 | + |
---|
| 255 | +MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>, Johann Deneux <johann.deneux@gmail.com>"); |
---|
| 256 | +MODULE_DESCRIPTION("RS232 I-Force joysticks and wheels driver"); |
---|
| 257 | +MODULE_LICENSE("GPL"); |
---|