blob: 13963b4c8801f3c8afafd14a8759f6ab9464f1a7 [file] [log] [blame]
David Herrmannfb51b442011-07-05 13:45:08 +02001/*
David Herrmann92eda7e2013-05-05 23:12:45 +02002 * HID driver for Nintendo Wii / Wii U peripherals
3 * Copyright (c) 2011-2013 David Herrmann <dh.herrmann@gmail.com>
David Herrmannfb51b442011-07-05 13:45:08 +02004 */
5
6/*
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the Free
9 * Software Foundation; either version 2 of the License, or (at your option)
10 * any later version.
11 */
12
David Herrmann29d28062011-09-06 13:50:34 +020013#include <linux/completion.h>
David Herrmann672bc4e2011-07-05 13:45:11 +020014#include <linux/device.h>
David Herrmann02fb72a2011-07-05 13:45:09 +020015#include <linux/hid.h>
David Herrmann672bc4e2011-07-05 13:45:11 +020016#include <linux/input.h>
David Herrmannfb51b442011-07-05 13:45:08 +020017#include <linux/module.h>
David Herrmann29d28062011-09-06 13:50:34 +020018#include <linux/mutex.h>
David Herrmann23c063c2011-07-05 13:45:14 +020019#include <linux/spinlock.h>
David Herrmann02fb72a2011-07-05 13:45:09 +020020#include "hid-ids.h"
David Herrmann7e274402011-11-17 14:11:59 +010021#include "hid-wiimote.h"
David Herrmannfb51b442011-07-05 13:45:08 +020022
David Herrmann13938532013-05-05 23:12:46 +020023/* output queue handling */
24
David Herrmannd758b1f02013-05-05 23:12:50 +020025static int wiimote_hid_send(struct hid_device *hdev, __u8 *buffer,
26 size_t count)
David Herrmann0c218f12011-07-05 13:45:13 +020027{
28 __u8 *buf;
David Herrmannd758b1f02013-05-05 23:12:50 +020029 int ret;
David Herrmann0c218f12011-07-05 13:45:13 +020030
31 if (!hdev->hid_output_raw_report)
32 return -ENODEV;
33
34 buf = kmemdup(buffer, count, GFP_KERNEL);
35 if (!buf)
36 return -ENOMEM;
37
38 ret = hdev->hid_output_raw_report(hdev, buf, count, HID_OUTPUT_REPORT);
39
40 kfree(buf);
41 return ret;
42}
43
David Herrmann13938532013-05-05 23:12:46 +020044static void wiimote_queue_worker(struct work_struct *work)
David Herrmann23c063c2011-07-05 13:45:14 +020045{
David Herrmann13938532013-05-05 23:12:46 +020046 struct wiimote_queue *queue = container_of(work, struct wiimote_queue,
47 worker);
48 struct wiimote_data *wdata = container_of(queue, struct wiimote_data,
49 queue);
David Herrmann23c063c2011-07-05 13:45:14 +020050 unsigned long flags;
David Herrmannd758b1f02013-05-05 23:12:50 +020051 int ret;
David Herrmann23c063c2011-07-05 13:45:14 +020052
David Herrmann13938532013-05-05 23:12:46 +020053 spin_lock_irqsave(&wdata->queue.lock, flags);
David Herrmann23c063c2011-07-05 13:45:14 +020054
David Herrmann13938532013-05-05 23:12:46 +020055 while (wdata->queue.head != wdata->queue.tail) {
56 spin_unlock_irqrestore(&wdata->queue.lock, flags);
David Herrmannd758b1f02013-05-05 23:12:50 +020057 ret = wiimote_hid_send(wdata->hdev,
David Herrmann13938532013-05-05 23:12:46 +020058 wdata->queue.outq[wdata->queue.tail].data,
59 wdata->queue.outq[wdata->queue.tail].size);
David Herrmannd758b1f02013-05-05 23:12:50 +020060 if (ret < 0) {
61 spin_lock_irqsave(&wdata->state.lock, flags);
62 wiimote_cmd_abort(wdata);
63 spin_unlock_irqrestore(&wdata->state.lock, flags);
64 }
David Herrmann13938532013-05-05 23:12:46 +020065 spin_lock_irqsave(&wdata->queue.lock, flags);
David Herrmann23c063c2011-07-05 13:45:14 +020066
David Herrmann13938532013-05-05 23:12:46 +020067 wdata->queue.tail = (wdata->queue.tail + 1) % WIIMOTE_BUFSIZE;
David Herrmann23c063c2011-07-05 13:45:14 +020068 }
69
David Herrmann13938532013-05-05 23:12:46 +020070 spin_unlock_irqrestore(&wdata->queue.lock, flags);
David Herrmann23c063c2011-07-05 13:45:14 +020071}
72
73static void wiimote_queue(struct wiimote_data *wdata, const __u8 *buffer,
74 size_t count)
75{
76 unsigned long flags;
77 __u8 newhead;
78
79 if (count > HID_MAX_BUFFER_SIZE) {
80 hid_warn(wdata->hdev, "Sending too large output report\n");
David Herrmannd758b1f02013-05-05 23:12:50 +020081
82 spin_lock_irqsave(&wdata->queue.lock, flags);
83 goto out_error;
David Herrmann23c063c2011-07-05 13:45:14 +020084 }
85
86 /*
87 * Copy new request into our output queue and check whether the
88 * queue is full. If it is full, discard this request.
89 * If it is empty we need to start a new worker that will
90 * send out the buffer to the hid device.
91 * If the queue is not empty, then there must be a worker
92 * that is currently sending out our buffer and this worker
93 * will reschedule itself until the queue is empty.
94 */
95
David Herrmann13938532013-05-05 23:12:46 +020096 spin_lock_irqsave(&wdata->queue.lock, flags);
David Herrmann23c063c2011-07-05 13:45:14 +020097
David Herrmann13938532013-05-05 23:12:46 +020098 memcpy(wdata->queue.outq[wdata->queue.head].data, buffer, count);
99 wdata->queue.outq[wdata->queue.head].size = count;
100 newhead = (wdata->queue.head + 1) % WIIMOTE_BUFSIZE;
David Herrmann23c063c2011-07-05 13:45:14 +0200101
David Herrmann13938532013-05-05 23:12:46 +0200102 if (wdata->queue.head == wdata->queue.tail) {
103 wdata->queue.head = newhead;
104 schedule_work(&wdata->queue.worker);
105 } else if (newhead != wdata->queue.tail) {
106 wdata->queue.head = newhead;
David Herrmann23c063c2011-07-05 13:45:14 +0200107 } else {
108 hid_warn(wdata->hdev, "Output queue is full");
David Herrmannd758b1f02013-05-05 23:12:50 +0200109 goto out_error;
David Herrmann23c063c2011-07-05 13:45:14 +0200110 }
111
David Herrmannd758b1f02013-05-05 23:12:50 +0200112 goto out_unlock;
113
114out_error:
115 wiimote_cmd_abort(wdata);
116out_unlock:
David Herrmann13938532013-05-05 23:12:46 +0200117 spin_unlock_irqrestore(&wdata->queue.lock, flags);
David Herrmann23c063c2011-07-05 13:45:14 +0200118}
119
David Herrmannc003ec22011-09-06 13:50:26 +0200120/*
121 * This sets the rumble bit on the given output report if rumble is
122 * currently enabled.
123 * \cmd1 must point to the second byte in the output report => &cmd[1]
124 * This must be called on nearly every output report before passing it
125 * into the output queue!
126 */
127static inline void wiiproto_keep_rumble(struct wiimote_data *wdata, __u8 *cmd1)
128{
129 if (wdata->state.flags & WIIPROTO_FLAG_RUMBLE)
130 *cmd1 |= 0x01;
131}
132
David Herrmann20cef812013-05-05 23:12:52 +0200133void wiiproto_req_rumble(struct wiimote_data *wdata, __u8 rumble)
David Herrmannc003ec22011-09-06 13:50:26 +0200134{
135 __u8 cmd[2];
136
137 rumble = !!rumble;
138 if (rumble == !!(wdata->state.flags & WIIPROTO_FLAG_RUMBLE))
139 return;
140
141 if (rumble)
142 wdata->state.flags |= WIIPROTO_FLAG_RUMBLE;
143 else
144 wdata->state.flags &= ~WIIPROTO_FLAG_RUMBLE;
145
146 cmd[0] = WIIPROTO_REQ_RUMBLE;
147 cmd[1] = 0;
148
149 wiiproto_keep_rumble(wdata, &cmd[1]);
150 wiimote_queue(wdata, cmd, sizeof(cmd));
151}
152
David Herrmann6c5ae0182013-05-05 23:12:54 +0200153void wiiproto_req_leds(struct wiimote_data *wdata, int leds)
David Herrmanndb308342011-07-05 13:45:17 +0200154{
155 __u8 cmd[2];
156
David Herrmann32a0d9a2011-07-05 13:45:18 +0200157 leds &= WIIPROTO_FLAGS_LEDS;
158 if ((wdata->state.flags & WIIPROTO_FLAGS_LEDS) == leds)
159 return;
160 wdata->state.flags = (wdata->state.flags & ~WIIPROTO_FLAGS_LEDS) | leds;
161
David Herrmanndb308342011-07-05 13:45:17 +0200162 cmd[0] = WIIPROTO_REQ_LED;
163 cmd[1] = 0;
164
165 if (leds & WIIPROTO_FLAG_LED1)
166 cmd[1] |= 0x10;
167 if (leds & WIIPROTO_FLAG_LED2)
168 cmd[1] |= 0x20;
169 if (leds & WIIPROTO_FLAG_LED3)
170 cmd[1] |= 0x40;
171 if (leds & WIIPROTO_FLAG_LED4)
172 cmd[1] |= 0x80;
173
David Herrmannc003ec22011-09-06 13:50:26 +0200174 wiiproto_keep_rumble(wdata, &cmd[1]);
David Herrmanndb308342011-07-05 13:45:17 +0200175 wiimote_queue(wdata, cmd, sizeof(cmd));
176}
177
David Herrmann2cb5e4b2011-08-17 11:43:23 +0200178/*
179 * Check what peripherals of the wiimote are currently
180 * active and select a proper DRM that supports all of
181 * the requested data inputs.
David Herrmann4148b6b2013-05-05 23:12:57 +0200182 *
183 * Not all combinations are actually supported. The following
184 * combinations work only with limitations:
185 * - IR cam in extended or full mode disables any data transmission
186 * of extension controllers. There is no DRM mode that supports
187 * extension bytes plus extended/full IR.
188 * - IR cam with accelerometer and extension *_EXT8 is not supported.
189 * However, all extensions that need *_EXT8 are devices that don't
190 * support IR cameras. Hence, this shouldn't happen under normal
191 * operation.
192 * - *_EXT16 is only supported in combination with buttons and
193 * accelerometer. No IR or similar can be active simultaneously. As
194 * above, all modules that require it are mutually exclusive with
195 * IR/etc. so this doesn't matter.
David Herrmann2cb5e4b2011-08-17 11:43:23 +0200196 */
197static __u8 select_drm(struct wiimote_data *wdata)
198{
David Herrmannf363e4f2011-09-06 13:50:30 +0200199 __u8 ir = wdata->state.flags & WIIPROTO_FLAGS_IR;
David Herrmann4148b6b2013-05-05 23:12:57 +0200200 bool ext;
201
202 ext = (wdata->state.flags & WIIPROTO_FLAG_EXT_USED) ||
203 (wdata->state.flags & WIIPROTO_FLAG_MP_USED);
David Herrmannf363e4f2011-09-06 13:50:30 +0200204
David Herrmannf1d4bed2013-05-05 23:12:58 +0200205 /* some 3rd-party balance-boards are hard-coded to KEE, *sigh* */
206 if (wdata->state.devtype == WIIMOTE_DEV_BALANCE_BOARD) {
207 if (ext)
208 return WIIPROTO_REQ_DRM_KEE;
209 else
210 return WIIPROTO_REQ_DRM_K;
211 }
212
David Herrmannf363e4f2011-09-06 13:50:30 +0200213 if (ir == WIIPROTO_FLAG_IR_BASIC) {
David Herrmann4148b6b2013-05-05 23:12:57 +0200214 if (wdata->state.flags & WIIPROTO_FLAG_ACCEL) {
215 if (ext)
216 return WIIPROTO_REQ_DRM_KAIE;
217 else
218 return WIIPROTO_REQ_DRM_KAI;
219 } else {
David Herrmannf363e4f2011-09-06 13:50:30 +0200220 return WIIPROTO_REQ_DRM_KIE;
David Herrmann4148b6b2013-05-05 23:12:57 +0200221 }
David Herrmannf363e4f2011-09-06 13:50:30 +0200222 } else if (ir == WIIPROTO_FLAG_IR_EXT) {
223 return WIIPROTO_REQ_DRM_KAI;
224 } else if (ir == WIIPROTO_FLAG_IR_FULL) {
225 return WIIPROTO_REQ_DRM_SKAI1;
226 } else {
David Herrmanncb992212011-11-17 14:12:01 +0100227 if (wdata->state.flags & WIIPROTO_FLAG_ACCEL) {
228 if (ext)
229 return WIIPROTO_REQ_DRM_KAE;
230 else
231 return WIIPROTO_REQ_DRM_KA;
232 } else {
233 if (ext)
David Herrmann4148b6b2013-05-05 23:12:57 +0200234 return WIIPROTO_REQ_DRM_KEE;
David Herrmanncb992212011-11-17 14:12:01 +0100235 else
236 return WIIPROTO_REQ_DRM_K;
237 }
David Herrmannf363e4f2011-09-06 13:50:30 +0200238 }
David Herrmann2cb5e4b2011-08-17 11:43:23 +0200239}
240
David Herrmann7e274402011-11-17 14:11:59 +0100241void wiiproto_req_drm(struct wiimote_data *wdata, __u8 drm)
David Herrmann2cb5e4b2011-08-17 11:43:23 +0200242{
243 __u8 cmd[3];
244
David Herrmannd76f89e2013-05-05 23:13:03 +0200245 if (wdata->state.flags & WIIPROTO_FLAG_DRM_LOCKED)
246 drm = wdata->state.drm;
247 else if (drm == WIIPROTO_REQ_NULL)
David Herrmann2cb5e4b2011-08-17 11:43:23 +0200248 drm = select_drm(wdata);
249
250 cmd[0] = WIIPROTO_REQ_DRM;
251 cmd[1] = 0;
252 cmd[2] = drm;
253
David Herrmann43d782a2011-11-17 14:12:12 +0100254 wdata->state.drm = drm;
David Herrmannc003ec22011-09-06 13:50:26 +0200255 wiiproto_keep_rumble(wdata, &cmd[1]);
David Herrmann2cb5e4b2011-08-17 11:43:23 +0200256 wiimote_queue(wdata, cmd, sizeof(cmd));
257}
258
David Herrmanndcf39232013-05-05 23:12:53 +0200259void wiiproto_req_status(struct wiimote_data *wdata)
David Herrmanne3979a92011-09-06 13:50:38 +0200260{
261 __u8 cmd[2];
262
263 cmd[0] = WIIPROTO_REQ_SREQ;
264 cmd[1] = 0;
265
266 wiiproto_keep_rumble(wdata, &cmd[1]);
267 wiimote_queue(wdata, cmd, sizeof(cmd));
268}
269
David Herrmann0ea16752013-05-05 23:12:55 +0200270void wiiproto_req_accel(struct wiimote_data *wdata, __u8 accel)
David Herrmann98a558a2011-09-06 13:50:28 +0200271{
272 accel = !!accel;
273 if (accel == !!(wdata->state.flags & WIIPROTO_FLAG_ACCEL))
274 return;
275
276 if (accel)
277 wdata->state.flags |= WIIPROTO_FLAG_ACCEL;
278 else
279 wdata->state.flags &= ~WIIPROTO_FLAG_ACCEL;
280
281 wiiproto_req_drm(wdata, WIIPROTO_REQ_NULL);
282}
283
David Herrmann3b5f03c2013-05-05 23:12:56 +0200284void wiiproto_req_ir1(struct wiimote_data *wdata, __u8 flags)
David Herrmannfc221cd2011-09-06 13:50:36 +0200285{
286 __u8 cmd[2];
287
288 cmd[0] = WIIPROTO_REQ_IR1;
289 cmd[1] = flags;
290
291 wiiproto_keep_rumble(wdata, &cmd[1]);
292 wiimote_queue(wdata, cmd, sizeof(cmd));
293}
294
David Herrmann3b5f03c2013-05-05 23:12:56 +0200295void wiiproto_req_ir2(struct wiimote_data *wdata, __u8 flags)
David Herrmannfc221cd2011-09-06 13:50:36 +0200296{
297 __u8 cmd[2];
298
299 cmd[0] = WIIPROTO_REQ_IR2;
300 cmd[1] = flags;
301
302 wiiproto_keep_rumble(wdata, &cmd[1]);
303 wiimote_queue(wdata, cmd, sizeof(cmd));
304}
305
David Herrmannbe1ecd62011-09-06 13:50:33 +0200306#define wiiproto_req_wreg(wdata, os, buf, sz) \
307 wiiproto_req_wmem((wdata), false, (os), (buf), (sz))
308
309#define wiiproto_req_weeprom(wdata, os, buf, sz) \
310 wiiproto_req_wmem((wdata), true, (os), (buf), (sz))
311
312static void wiiproto_req_wmem(struct wiimote_data *wdata, bool eeprom,
313 __u32 offset, const __u8 *buf, __u8 size)
314{
315 __u8 cmd[22];
316
317 if (size > 16 || size == 0) {
318 hid_warn(wdata->hdev, "Invalid length %d wmem request\n", size);
319 return;
320 }
321
322 memset(cmd, 0, sizeof(cmd));
323 cmd[0] = WIIPROTO_REQ_WMEM;
324 cmd[2] = (offset >> 16) & 0xff;
325 cmd[3] = (offset >> 8) & 0xff;
326 cmd[4] = offset & 0xff;
327 cmd[5] = size;
328 memcpy(&cmd[6], buf, size);
329
330 if (!eeprom)
331 cmd[1] |= 0x04;
332
333 wiiproto_keep_rumble(wdata, &cmd[1]);
334 wiimote_queue(wdata, cmd, sizeof(cmd));
335}
336
David Herrmann1d3452c2011-11-17 14:12:11 +0100337void wiiproto_req_rmem(struct wiimote_data *wdata, bool eeprom, __u32 offset,
338 __u16 size)
David Herrmannfad8c0e2011-11-17 14:12:00 +0100339{
340 __u8 cmd[7];
341
342 if (size == 0) {
343 hid_warn(wdata->hdev, "Invalid length %d rmem request\n", size);
344 return;
345 }
346
347 cmd[0] = WIIPROTO_REQ_RMEM;
348 cmd[1] = 0;
349 cmd[2] = (offset >> 16) & 0xff;
350 cmd[3] = (offset >> 8) & 0xff;
351 cmd[4] = offset & 0xff;
352 cmd[5] = (size >> 8) & 0xff;
353 cmd[6] = size & 0xff;
354
355 if (!eeprom)
356 cmd[1] |= 0x04;
357
358 wiiproto_keep_rumble(wdata, &cmd[1]);
359 wiimote_queue(wdata, cmd, sizeof(cmd));
360}
361
David Herrmann33e84012011-09-06 13:50:35 +0200362/* requries the cmd-mutex to be held */
David Herrmann7e274402011-11-17 14:11:59 +0100363int wiimote_cmd_write(struct wiimote_data *wdata, __u32 offset,
David Herrmann33e84012011-09-06 13:50:35 +0200364 const __u8 *wmem, __u8 size)
365{
366 unsigned long flags;
367 int ret;
368
369 spin_lock_irqsave(&wdata->state.lock, flags);
370 wiimote_cmd_set(wdata, WIIPROTO_REQ_WMEM, 0);
371 wiiproto_req_wreg(wdata, offset, wmem, size);
372 spin_unlock_irqrestore(&wdata->state.lock, flags);
373
374 ret = wiimote_cmd_wait(wdata);
375 if (!ret && wdata->state.cmd_err)
376 ret = -EIO;
377
378 return ret;
379}
380
David Herrmannfad8c0e2011-11-17 14:12:00 +0100381/* requries the cmd-mutex to be held */
382ssize_t wiimote_cmd_read(struct wiimote_data *wdata, __u32 offset, __u8 *rmem,
383 __u8 size)
384{
385 unsigned long flags;
386 ssize_t ret;
387
388 spin_lock_irqsave(&wdata->state.lock, flags);
389 wdata->state.cmd_read_size = size;
390 wdata->state.cmd_read_buf = rmem;
391 wiimote_cmd_set(wdata, WIIPROTO_REQ_RMEM, offset & 0xffff);
392 wiiproto_req_rreg(wdata, offset, size);
393 spin_unlock_irqrestore(&wdata->state.lock, flags);
394
395 ret = wiimote_cmd_wait(wdata);
396
397 spin_lock_irqsave(&wdata->state.lock, flags);
398 wdata->state.cmd_read_buf = NULL;
399 spin_unlock_irqrestore(&wdata->state.lock, flags);
400
401 if (!ret) {
402 if (wdata->state.cmd_read_size == 0)
403 ret = -EIO;
404 else
405 ret = wdata->state.cmd_read_size;
406 }
407
408 return ret;
409}
410
David Herrmannc57ff762013-05-05 23:12:48 +0200411/* requires the cmd-mutex to be held */
412static int wiimote_cmd_init_ext(struct wiimote_data *wdata)
413{
414 __u8 wmem;
415 int ret;
416
417 /* initialize extension */
418 wmem = 0x55;
419 ret = wiimote_cmd_write(wdata, 0xa400f0, &wmem, sizeof(wmem));
420 if (ret)
421 return ret;
422
423 /* disable default encryption */
424 wmem = 0x0;
425 ret = wiimote_cmd_write(wdata, 0xa400fb, &wmem, sizeof(wmem));
426 if (ret)
427 return ret;
428
429 return 0;
430}
431
432/* requires the cmd-mutex to be held */
David Herrmann4148b6b2013-05-05 23:12:57 +0200433static __u8 wiimote_cmd_read_ext(struct wiimote_data *wdata, __u8 *rmem)
David Herrmannc57ff762013-05-05 23:12:48 +0200434{
David Herrmannc57ff762013-05-05 23:12:48 +0200435 int ret;
436
437 /* read extension ID */
438 ret = wiimote_cmd_read(wdata, 0xa400fa, rmem, 6);
439 if (ret != 6)
440 return WIIMOTE_EXT_NONE;
441
David Herrmann4148b6b2013-05-05 23:12:57 +0200442 hid_dbg(wdata->hdev, "extension ID: %02x:%02x %02x:%02x %02x:%02x\n",
443 rmem[0], rmem[1], rmem[2], rmem[3], rmem[4], rmem[5]);
444
David Herrmannc57ff762013-05-05 23:12:48 +0200445 if (rmem[0] == 0xff && rmem[1] == 0xff && rmem[2] == 0xff &&
446 rmem[3] == 0xff && rmem[4] == 0xff && rmem[5] == 0xff)
447 return WIIMOTE_EXT_NONE;
448
David Herrmannb6ee67b2013-05-05 23:12:59 +0200449 if (rmem[4] == 0x00 && rmem[5] == 0x00)
450 return WIIMOTE_EXT_NUNCHUK;
David Herrmann9d6f9ec2013-05-05 23:13:00 +0200451 if (rmem[4] == 0x01 && rmem[5] == 0x01)
452 return WIIMOTE_EXT_CLASSIC_CONTROLLER;
David Herrmannf1d4bed2013-05-05 23:12:58 +0200453 if (rmem[4] == 0x04 && rmem[5] == 0x02)
454 return WIIMOTE_EXT_BALANCE_BOARD;
455
David Herrmannc57ff762013-05-05 23:12:48 +0200456 return WIIMOTE_EXT_UNKNOWN;
457}
458
David Herrmann4148b6b2013-05-05 23:12:57 +0200459/* requires the cmd-mutex to be held */
460static int wiimote_cmd_init_mp(struct wiimote_data *wdata)
461{
462 __u8 wmem;
463 int ret;
464
465 /* initialize MP */
466 wmem = 0x55;
467 ret = wiimote_cmd_write(wdata, 0xa600f0, &wmem, sizeof(wmem));
468 if (ret)
469 return ret;
470
471 /* disable default encryption */
472 wmem = 0x0;
473 ret = wiimote_cmd_write(wdata, 0xa600fb, &wmem, sizeof(wmem));
474 if (ret)
475 return ret;
476
477 return 0;
478}
479
480/* requires the cmd-mutex to be held */
481static bool wiimote_cmd_map_mp(struct wiimote_data *wdata, __u8 exttype)
482{
483 __u8 wmem;
484
485 /* map MP with correct pass-through mode */
486 switch (exttype) {
David Herrmann9d6f9ec2013-05-05 23:13:00 +0200487 case WIIMOTE_EXT_CLASSIC_CONTROLLER:
488 wmem = 0x07;
489 break;
David Herrmannb6ee67b2013-05-05 23:12:59 +0200490 case WIIMOTE_EXT_NUNCHUK:
491 wmem = 0x05;
492 break;
David Herrmann4148b6b2013-05-05 23:12:57 +0200493 default:
494 wmem = 0x04;
495 break;
496 }
497
498 return wiimote_cmd_write(wdata, 0xa600fe, &wmem, sizeof(wmem));
499}
500
501/* requires the cmd-mutex to be held */
502static bool wiimote_cmd_read_mp(struct wiimote_data *wdata, __u8 *rmem)
503{
504 int ret;
505
506 /* read motion plus ID */
507 ret = wiimote_cmd_read(wdata, 0xa600fa, rmem, 6);
508 if (ret != 6)
509 return false;
510
511 hid_dbg(wdata->hdev, "motion plus ID: %02x:%02x %02x:%02x %02x:%02x\n",
512 rmem[0], rmem[1], rmem[2], rmem[3], rmem[4], rmem[5]);
513
514 if (rmem[5] == 0x05)
515 return true;
516
517 hid_info(wdata->hdev, "unknown motion plus ID: %02x:%02x %02x:%02x %02x:%02x\n",
518 rmem[0], rmem[1], rmem[2], rmem[3], rmem[4], rmem[5]);
519
520 return false;
521}
522
523/* requires the cmd-mutex to be held */
524static __u8 wiimote_cmd_read_mp_mapped(struct wiimote_data *wdata)
525{
526 int ret;
527 __u8 rmem[6];
528
529 /* read motion plus ID */
530 ret = wiimote_cmd_read(wdata, 0xa400fa, rmem, 6);
531 if (ret != 6)
532 return WIIMOTE_MP_NONE;
533
534 hid_dbg(wdata->hdev, "mapped motion plus ID: %02x:%02x %02x:%02x %02x:%02x\n",
535 rmem[0], rmem[1], rmem[2], rmem[3], rmem[4], rmem[5]);
536
537 if (rmem[0] == 0xff && rmem[1] == 0xff && rmem[2] == 0xff &&
538 rmem[3] == 0xff && rmem[4] == 0xff && rmem[5] == 0xff)
539 return WIIMOTE_MP_NONE;
540
541 if (rmem[4] == 0x04 && rmem[5] == 0x05)
542 return WIIMOTE_MP_SINGLE;
543 else if (rmem[4] == 0x05 && rmem[5] == 0x05)
544 return WIIMOTE_MP_PASSTHROUGH_NUNCHUK;
545 else if (rmem[4] == 0x07 && rmem[5] == 0x05)
546 return WIIMOTE_MP_PASSTHROUGH_CLASSIC;
547
548 return WIIMOTE_MP_UNKNOWN;
549}
550
David Herrmann27f06942013-05-05 23:12:51 +0200551/* device module handling */
552
553static const __u8 * const wiimote_devtype_mods[WIIMOTE_DEV_NUM] = {
554 [WIIMOTE_DEV_PENDING] = (const __u8[]){
555 WIIMOD_NULL,
556 },
557 [WIIMOTE_DEV_UNKNOWN] = (const __u8[]){
558 WIIMOD_NULL,
559 },
560 [WIIMOTE_DEV_GENERIC] = (const __u8[]){
David Herrmann20cef812013-05-05 23:12:52 +0200561 WIIMOD_KEYS,
562 WIIMOD_RUMBLE,
David Herrmanndcf39232013-05-05 23:12:53 +0200563 WIIMOD_BATTERY,
David Herrmann6c5ae0182013-05-05 23:12:54 +0200564 WIIMOD_LED1,
565 WIIMOD_LED2,
566 WIIMOD_LED3,
567 WIIMOD_LED4,
David Herrmann0ea16752013-05-05 23:12:55 +0200568 WIIMOD_ACCEL,
David Herrmann3b5f03c2013-05-05 23:12:56 +0200569 WIIMOD_IR,
David Herrmann27f06942013-05-05 23:12:51 +0200570 WIIMOD_NULL,
571 },
572 [WIIMOTE_DEV_GEN10] = (const __u8[]){
David Herrmann20cef812013-05-05 23:12:52 +0200573 WIIMOD_KEYS,
574 WIIMOD_RUMBLE,
David Herrmanndcf39232013-05-05 23:12:53 +0200575 WIIMOD_BATTERY,
David Herrmann6c5ae0182013-05-05 23:12:54 +0200576 WIIMOD_LED1,
577 WIIMOD_LED2,
578 WIIMOD_LED3,
579 WIIMOD_LED4,
David Herrmann0ea16752013-05-05 23:12:55 +0200580 WIIMOD_ACCEL,
David Herrmann3b5f03c2013-05-05 23:12:56 +0200581 WIIMOD_IR,
David Herrmann27f06942013-05-05 23:12:51 +0200582 WIIMOD_NULL,
583 },
584 [WIIMOTE_DEV_GEN20] = (const __u8[]){
David Herrmann20cef812013-05-05 23:12:52 +0200585 WIIMOD_KEYS,
586 WIIMOD_RUMBLE,
David Herrmanndcf39232013-05-05 23:12:53 +0200587 WIIMOD_BATTERY,
David Herrmann6c5ae0182013-05-05 23:12:54 +0200588 WIIMOD_LED1,
589 WIIMOD_LED2,
590 WIIMOD_LED3,
591 WIIMOD_LED4,
David Herrmann0ea16752013-05-05 23:12:55 +0200592 WIIMOD_ACCEL,
David Herrmann3b5f03c2013-05-05 23:12:56 +0200593 WIIMOD_IR,
David Herrmann27f06942013-05-05 23:12:51 +0200594 WIIMOD_NULL,
595 },
David Herrmannf1d4bed2013-05-05 23:12:58 +0200596 [WIIMOTE_DEV_BALANCE_BOARD] = (const __u8[]) {
597 WIIMOD_BATTERY,
598 WIIMOD_LED1,
599 WIIMOD_NULL,
600 },
David Herrmann27f06942013-05-05 23:12:51 +0200601};
602
603static void wiimote_modules_load(struct wiimote_data *wdata,
604 unsigned int devtype)
605{
606 bool need_input = false;
607 const __u8 *mods, *iter;
608 const struct wiimod_ops *ops;
609 int ret;
610
611 mods = wiimote_devtype_mods[devtype];
612
613 for (iter = mods; *iter != WIIMOD_NULL; ++iter) {
614 if (wiimod_table[*iter]->flags & WIIMOD_FLAG_INPUT) {
615 need_input = true;
616 break;
617 }
618 }
619
620 if (need_input) {
621 wdata->input = input_allocate_device();
622 if (!wdata->input)
623 return;
624
625 input_set_drvdata(wdata->input, wdata);
626 wdata->input->dev.parent = &wdata->hdev->dev;
627 wdata->input->id.bustype = wdata->hdev->bus;
628 wdata->input->id.vendor = wdata->hdev->vendor;
629 wdata->input->id.product = wdata->hdev->product;
630 wdata->input->id.version = wdata->hdev->version;
631 wdata->input->name = WIIMOTE_NAME;
632 }
633
634 for (iter = mods; *iter != WIIMOD_NULL; ++iter) {
635 ops = wiimod_table[*iter];
636 if (!ops->probe)
637 continue;
638
639 ret = ops->probe(ops, wdata);
640 if (ret)
641 goto error;
642 }
643
644 if (wdata->input) {
645 ret = input_register_device(wdata->input);
646 if (ret)
647 goto error;
648 }
649
650 spin_lock_irq(&wdata->state.lock);
651 wdata->state.devtype = devtype;
652 spin_unlock_irq(&wdata->state.lock);
653 return;
654
655error:
656 for ( ; iter-- != mods; ) {
657 ops = wiimod_table[*iter];
658 if (ops->remove)
659 ops->remove(ops, wdata);
660 }
661
662 if (wdata->input) {
663 input_free_device(wdata->input);
664 wdata->input = NULL;
665 }
666}
667
668static void wiimote_modules_unload(struct wiimote_data *wdata)
669{
670 const __u8 *mods, *iter;
671 const struct wiimod_ops *ops;
672 unsigned long flags;
673
674 mods = wiimote_devtype_mods[wdata->state.devtype];
675
676 spin_lock_irqsave(&wdata->state.lock, flags);
677 wdata->state.devtype = WIIMOTE_DEV_UNKNOWN;
678 spin_unlock_irqrestore(&wdata->state.lock, flags);
679
680 /* find end of list */
681 for (iter = mods; *iter != WIIMOD_NULL; ++iter)
682 /* empty */ ;
683
684 if (wdata->input) {
685 input_get_device(wdata->input);
686 input_unregister_device(wdata->input);
687 }
688
689 for ( ; iter-- != mods; ) {
690 ops = wiimod_table[*iter];
691 if (ops->remove)
692 ops->remove(ops, wdata);
693 }
694
695 if (wdata->input) {
696 input_put_device(wdata->input);
697 wdata->input = NULL;
698 }
699}
700
David Herrmann4148b6b2013-05-05 23:12:57 +0200701/* device extension handling */
702
703static void wiimote_ext_load(struct wiimote_data *wdata, unsigned int ext)
704{
705 unsigned long flags;
706 const struct wiimod_ops *ops;
707 int ret;
708
709 ops = wiimod_ext_table[ext];
710
711 if (ops->probe) {
712 ret = ops->probe(ops, wdata);
713 if (ret)
714 ext = WIIMOTE_EXT_UNKNOWN;
715 }
716
717 spin_lock_irqsave(&wdata->state.lock, flags);
718 wdata->state.exttype = ext;
719 spin_unlock_irqrestore(&wdata->state.lock, flags);
720}
721
722static void wiimote_ext_unload(struct wiimote_data *wdata)
723{
724 unsigned long flags;
725 const struct wiimod_ops *ops;
726
727 ops = wiimod_ext_table[wdata->state.exttype];
728
729 spin_lock_irqsave(&wdata->state.lock, flags);
730 wdata->state.exttype = WIIMOTE_EXT_UNKNOWN;
731 wdata->state.flags &= ~WIIPROTO_FLAG_EXT_USED;
732 spin_unlock_irqrestore(&wdata->state.lock, flags);
733
734 if (ops->remove)
735 ops->remove(ops, wdata);
736}
737
738static void wiimote_mp_load(struct wiimote_data *wdata)
739{
740 unsigned long flags;
741 const struct wiimod_ops *ops;
742 int ret;
743 __u8 mode = 2;
744
745 ops = &wiimod_mp;
746 if (ops->probe) {
747 ret = ops->probe(ops, wdata);
748 if (ret)
749 mode = 1;
750 }
751
752 spin_lock_irqsave(&wdata->state.lock, flags);
753 wdata->state.mp = mode;
754 spin_unlock_irqrestore(&wdata->state.lock, flags);
755}
756
757static void wiimote_mp_unload(struct wiimote_data *wdata)
758{
759 unsigned long flags;
760 const struct wiimod_ops *ops;
761
762 if (wdata->state.mp < 2)
763 return;
764
765 ops = &wiimod_mp;
766
767 spin_lock_irqsave(&wdata->state.lock, flags);
768 wdata->state.mp = 0;
769 wdata->state.flags &= ~WIIPROTO_FLAG_MP_USED;
770 spin_unlock_irqrestore(&wdata->state.lock, flags);
771
772 if (ops->remove)
773 ops->remove(ops, wdata);
774}
775
David Herrmannc57ff762013-05-05 23:12:48 +0200776/* device (re-)initialization and detection */
777
778static const char *wiimote_devtype_names[WIIMOTE_DEV_NUM] = {
779 [WIIMOTE_DEV_PENDING] = "Pending",
780 [WIIMOTE_DEV_UNKNOWN] = "Unknown",
781 [WIIMOTE_DEV_GENERIC] = "Generic",
782 [WIIMOTE_DEV_GEN10] = "Nintendo Wii Remote (Gen 1)",
783 [WIIMOTE_DEV_GEN20] = "Nintendo Wii Remote Plus (Gen 2)",
David Herrmannf1d4bed2013-05-05 23:12:58 +0200784 [WIIMOTE_DEV_BALANCE_BOARD] = "Nintendo Wii Balance Board",
David Herrmannc57ff762013-05-05 23:12:48 +0200785};
786
787/* Try to guess the device type based on all collected information. We
788 * first try to detect by static extension types, then VID/PID and the
789 * device name. If we cannot detect the device, we use
790 * WIIMOTE_DEV_GENERIC so all modules will get probed on the device. */
791static void wiimote_init_set_type(struct wiimote_data *wdata,
792 __u8 exttype)
793{
794 __u8 devtype = WIIMOTE_DEV_GENERIC;
795 __u16 vendor, product;
796 const char *name;
797
798 vendor = wdata->hdev->vendor;
799 product = wdata->hdev->product;
800 name = wdata->hdev->name;
801
David Herrmannf1d4bed2013-05-05 23:12:58 +0200802 if (exttype == WIIMOTE_EXT_BALANCE_BOARD) {
803 devtype = WIIMOTE_DEV_BALANCE_BOARD;
804 goto done;
805 }
806
David Herrmannc57ff762013-05-05 23:12:48 +0200807 if (!strcmp(name, "Nintendo RVL-CNT-01")) {
808 devtype = WIIMOTE_DEV_GEN10;
809 goto done;
810 } else if (!strcmp(name, "Nintendo RVL-CNT-01-TR")) {
811 devtype = WIIMOTE_DEV_GEN20;
812 goto done;
David Herrmannf1d4bed2013-05-05 23:12:58 +0200813 } else if (!strcmp(name, "Nintendo RVL-WBC-01")) {
814 devtype = WIIMOTE_DEV_BALANCE_BOARD;
815 goto done;
David Herrmannc57ff762013-05-05 23:12:48 +0200816 }
817
818 if (vendor == USB_VENDOR_ID_NINTENDO) {
819 if (product == USB_DEVICE_ID_NINTENDO_WIIMOTE) {
820 devtype = WIIMOTE_DEV_GEN10;
821 goto done;
822 } else if (product == USB_DEVICE_ID_NINTENDO_WIIMOTE2) {
823 devtype = WIIMOTE_DEV_GEN20;
824 goto done;
825 }
826 }
827
828done:
829 if (devtype == WIIMOTE_DEV_GENERIC)
830 hid_info(wdata->hdev, "cannot detect device; NAME: %s VID: %04x PID: %04x EXT: %04x\n",
831 name, vendor, product, exttype);
832 else
833 hid_info(wdata->hdev, "detected device: %s\n",
834 wiimote_devtype_names[devtype]);
835
David Herrmann27f06942013-05-05 23:12:51 +0200836 wiimote_modules_load(wdata, devtype);
David Herrmannc57ff762013-05-05 23:12:48 +0200837}
838
839static void wiimote_init_detect(struct wiimote_data *wdata)
840{
David Herrmann4148b6b2013-05-05 23:12:57 +0200841 __u8 exttype = WIIMOTE_EXT_NONE, extdata[6];
David Herrmannc57ff762013-05-05 23:12:48 +0200842 bool ext;
843 int ret;
844
845 wiimote_cmd_acquire_noint(wdata);
846
847 spin_lock_irq(&wdata->state.lock);
David Herrmann27f06942013-05-05 23:12:51 +0200848 wdata->state.devtype = WIIMOTE_DEV_UNKNOWN;
David Herrmannc57ff762013-05-05 23:12:48 +0200849 wiimote_cmd_set(wdata, WIIPROTO_REQ_SREQ, 0);
850 wiiproto_req_status(wdata);
851 spin_unlock_irq(&wdata->state.lock);
852
853 ret = wiimote_cmd_wait_noint(wdata);
854 if (ret)
855 goto out_release;
856
857 spin_lock_irq(&wdata->state.lock);
858 ext = wdata->state.flags & WIIPROTO_FLAG_EXT_PLUGGED;
859 spin_unlock_irq(&wdata->state.lock);
860
861 if (!ext)
862 goto out_release;
863
864 wiimote_cmd_init_ext(wdata);
David Herrmann4148b6b2013-05-05 23:12:57 +0200865 exttype = wiimote_cmd_read_ext(wdata, extdata);
David Herrmannc57ff762013-05-05 23:12:48 +0200866
867out_release:
868 wiimote_cmd_release(wdata);
869 wiimote_init_set_type(wdata, exttype);
David Herrmann4148b6b2013-05-05 23:12:57 +0200870 /* schedule MP timer */
871 mod_timer(&wdata->timer, jiffies + HZ * 4);
872}
873
874/*
875 * MP hotplug events are not generated by the wiimote. Therefore, we need
876 * polling to detect it. We use a 4s interval for polling MP registers. This
877 * seems reasonable considering applications can trigger it manually via
878 * sysfs requests.
879 */
880static void wiimote_init_poll_mp(struct wiimote_data *wdata)
881{
882 bool mp;
883 __u8 mpdata[6];
884
885 wiimote_cmd_acquire_noint(wdata);
886 wiimote_cmd_init_mp(wdata);
887 mp = wiimote_cmd_read_mp(wdata, mpdata);
888 wiimote_cmd_release(wdata);
889
890 /* load/unload MP module if it changed */
891 if (mp) {
892 if (!wdata->state.mp) {
893 hid_info(wdata->hdev, "detected extension: Nintendo Wii Motion Plus\n");
894 wiimote_mp_load(wdata);
895 }
896 } else if (wdata->state.mp) {
897 wiimote_mp_unload(wdata);
898 }
899
900 mod_timer(&wdata->timer, jiffies + HZ * 4);
901}
902
903/*
904 * Check whether the wiimote is in the expected state. The extension registers
905 * may change during hotplug and initialization so we might get hotplug events
906 * that we caused by remapping some memory.
907 * We use some heuristics here to check known states. If the wiimote is in the
908 * expected state, we can ignore the hotplug event.
909 *
910 * Returns "true" if the device is in expected state, "false" if we should
911 * redo hotplug handling and extension initialization.
912 */
913static bool wiimote_init_check(struct wiimote_data *wdata)
914{
915 __u32 flags;
916 __u8 type, data[6];
917 bool ret, poll_mp;
918
919 spin_lock_irq(&wdata->state.lock);
920 flags = wdata->state.flags;
921 spin_unlock_irq(&wdata->state.lock);
922
923 wiimote_cmd_acquire_noint(wdata);
924
925 /* If MP is used and active, but the extension is not, we expect:
926 * read_mp_mapped() == WIIMOTE_MP_SINGLE
927 * state.flags == !EXT_ACTIVE && !MP_PLUGGED && MP_ACTIVE
928 * We do not check EXT_PLUGGED because it might change during
929 * initialization of MP without extensions.
930 * - If MP is unplugged/replugged, read_mp_mapped() fails
931 * - If EXT is plugged, MP_PLUGGED will get set */
932 if (wdata->state.exttype == WIIMOTE_EXT_NONE &&
933 wdata->state.mp > 0 && (flags & WIIPROTO_FLAG_MP_USED)) {
934 type = wiimote_cmd_read_mp_mapped(wdata);
935 ret = type == WIIMOTE_MP_SINGLE;
936
937 spin_lock_irq(&wdata->state.lock);
938 ret = ret && !(wdata->state.flags & WIIPROTO_FLAG_EXT_ACTIVE);
939 ret = ret && !(wdata->state.flags & WIIPROTO_FLAG_MP_PLUGGED);
940 ret = ret && (wdata->state.flags & WIIPROTO_FLAG_MP_ACTIVE);
941 spin_unlock_irq(&wdata->state.lock);
942
943 if (!ret)
944 hid_dbg(wdata->hdev, "state left: !EXT && MP\n");
945
946 /* while MP is mapped, we get EXT_PLUGGED events */
947 poll_mp = false;
948
949 goto out_release;
950 }
951
952 /* If MP is unused, but the extension port is used, we expect:
953 * read_ext == state.exttype
954 * state.flags == !MP_ACTIVE && EXT_ACTIVE
955 * - If MP is plugged/unplugged, our timer detects it
956 * - If EXT is unplugged/replugged, EXT_ACTIVE will become unset */
957 if (!(flags & WIIPROTO_FLAG_MP_USED) &&
958 wdata->state.exttype != WIIMOTE_EXT_NONE) {
959 type = wiimote_cmd_read_ext(wdata, data);
960 ret = type == wdata->state.exttype;
961
962 spin_lock_irq(&wdata->state.lock);
963 ret = ret && !(wdata->state.flags & WIIPROTO_FLAG_MP_ACTIVE);
964 ret = ret && (wdata->state.flags & WIIPROTO_FLAG_EXT_ACTIVE);
965 spin_unlock_irq(&wdata->state.lock);
966
967 if (!ret)
968 hid_dbg(wdata->hdev, "state left: EXT && !MP\n");
969
970 /* poll MP for hotplug events */
971 poll_mp = true;
972
973 goto out_release;
974 }
975
976 /* If neither MP nor an extension are used, we expect:
977 * read_ext() == WIIMOTE_EXT_NONE
978 * state.flags == !MP_ACTIVE && !EXT_ACTIVE && !EXT_PLUGGED
979 * No need to perform any action in this case as everything is
980 * disabled already.
981 * - If MP is plugged/unplugged, our timer detects it
982 * - If EXT is plugged, EXT_PLUGGED will be set */
983 if (!(flags & WIIPROTO_FLAG_MP_USED) &&
984 wdata->state.exttype == WIIMOTE_EXT_NONE) {
985 type = wiimote_cmd_read_ext(wdata, data);
986 ret = type == wdata->state.exttype;
987
988 spin_lock_irq(&wdata->state.lock);
989 ret = ret && !(wdata->state.flags & WIIPROTO_FLAG_EXT_ACTIVE);
990 ret = ret && !(wdata->state.flags & WIIPROTO_FLAG_MP_ACTIVE);
991 ret = ret && !(wdata->state.flags & WIIPROTO_FLAG_EXT_PLUGGED);
992 spin_unlock_irq(&wdata->state.lock);
993
994 if (!ret)
995 hid_dbg(wdata->hdev, "state left: !EXT && !MP\n");
996
997 /* poll MP for hotplug events */
998 poll_mp = true;
999
1000 goto out_release;
1001 }
1002
1003 /* The trickiest part is if both EXT and MP are active. We cannot read
1004 * the EXT ID, anymore, because MP is mapped over it. However, we use
1005 * a handy trick here:
1006 * - EXT_ACTIVE is unset whenever !MP_PLUGGED is sent
1007 * MP_PLUGGED might be re-sent again before we are scheduled, but
1008 * EXT_ACTIVE will stay unset.
1009 * So it is enough to check for mp_mapped() and MP_ACTIVE and
1010 * EXT_ACTIVE. EXT_PLUGGED is a sanity check. */
1011 if (wdata->state.exttype != WIIMOTE_EXT_NONE &&
1012 wdata->state.mp > 0 && (flags & WIIPROTO_FLAG_MP_USED)) {
1013 type = wiimote_cmd_read_mp_mapped(wdata);
1014 ret = type != WIIMOTE_MP_NONE;
1015 ret = ret && type != WIIMOTE_MP_UNKNOWN;
1016 ret = ret && type != WIIMOTE_MP_SINGLE;
1017
1018 spin_lock_irq(&wdata->state.lock);
1019 ret = ret && (wdata->state.flags & WIIPROTO_FLAG_EXT_PLUGGED);
1020 ret = ret && (wdata->state.flags & WIIPROTO_FLAG_EXT_ACTIVE);
1021 ret = ret && (wdata->state.flags & WIIPROTO_FLAG_MP_ACTIVE);
1022 spin_unlock_irq(&wdata->state.lock);
1023
1024 if (!ret)
1025 hid_dbg(wdata->hdev, "state left: EXT && MP\n");
1026
1027 /* while MP is mapped, we get EXT_PLUGGED events */
1028 poll_mp = false;
1029
1030 goto out_release;
1031 }
1032
1033 /* unknown state */
1034 ret = false;
1035
1036out_release:
1037 wiimote_cmd_release(wdata);
1038
1039 /* only poll for MP if requested and if state didn't change */
1040 if (ret && poll_mp)
1041 wiimote_init_poll_mp(wdata);
1042
1043 return ret;
1044}
1045
1046static const char *wiimote_exttype_names[WIIMOTE_EXT_NUM] = {
1047 [WIIMOTE_EXT_NONE] = "None",
1048 [WIIMOTE_EXT_UNKNOWN] = "Unknown",
David Herrmannb6ee67b2013-05-05 23:12:59 +02001049 [WIIMOTE_EXT_NUNCHUK] = "Nintendo Wii Nunchuk",
David Herrmann9d6f9ec2013-05-05 23:13:00 +02001050 [WIIMOTE_EXT_CLASSIC_CONTROLLER] = "Nintendo Wii Classic Controller",
David Herrmannf1d4bed2013-05-05 23:12:58 +02001051 [WIIMOTE_EXT_BALANCE_BOARD] = "Nintendo Wii Balance Board",
David Herrmann4148b6b2013-05-05 23:12:57 +02001052};
1053
1054/*
1055 * Handle hotplug events
1056 * If we receive an hotplug event and the device-check failed, we deinitialize
1057 * the extension ports, re-read all extension IDs and set the device into
1058 * the desired state. This involves mapping MP into the main extension
1059 * registers, setting up extension passthrough modes and initializing the
1060 * requested extensions.
1061 */
1062static void wiimote_init_hotplug(struct wiimote_data *wdata)
1063{
1064 __u8 exttype, extdata[6], mpdata[6];
1065 __u32 flags;
1066 bool mp;
1067
1068 hid_dbg(wdata->hdev, "detect extensions..\n");
1069
1070 wiimote_cmd_acquire_noint(wdata);
1071
1072 spin_lock_irq(&wdata->state.lock);
1073
1074 /* get state snapshot that we will then work on */
1075 flags = wdata->state.flags;
1076
1077 /* disable event forwarding temporarily */
1078 wdata->state.flags &= ~WIIPROTO_FLAG_EXT_ACTIVE;
1079 wdata->state.flags &= ~WIIPROTO_FLAG_MP_ACTIVE;
1080
1081 spin_unlock_irq(&wdata->state.lock);
1082
1083 /* init extension and MP (deactivates current extension or MP) */
1084 wiimote_cmd_init_ext(wdata);
1085 wiimote_cmd_init_mp(wdata);
1086 mp = wiimote_cmd_read_mp(wdata, mpdata);
1087 exttype = wiimote_cmd_read_ext(wdata, extdata);
1088
1089 wiimote_cmd_release(wdata);
1090
1091 /* load/unload extension module if it changed */
1092 if (exttype != wdata->state.exttype) {
1093 /* unload previous extension */
1094 wiimote_ext_unload(wdata);
1095
1096 if (exttype == WIIMOTE_EXT_UNKNOWN) {
1097 hid_info(wdata->hdev, "cannot detect extension; %02x:%02x %02x:%02x %02x:%02x\n",
1098 extdata[0], extdata[1], extdata[2],
1099 extdata[3], extdata[4], extdata[5]);
1100 } else if (exttype == WIIMOTE_EXT_NONE) {
1101 spin_lock_irq(&wdata->state.lock);
1102 wdata->state.exttype = WIIMOTE_EXT_NONE;
1103 spin_unlock_irq(&wdata->state.lock);
1104 } else {
1105 hid_info(wdata->hdev, "detected extension: %s\n",
1106 wiimote_exttype_names[exttype]);
1107 /* try loading new extension */
1108 wiimote_ext_load(wdata, exttype);
1109 }
1110 }
1111
1112 /* load/unload MP module if it changed */
1113 if (mp) {
1114 if (!wdata->state.mp) {
1115 hid_info(wdata->hdev, "detected extension: Nintendo Wii Motion Plus\n");
1116 wiimote_mp_load(wdata);
1117 }
1118 } else if (wdata->state.mp) {
1119 wiimote_mp_unload(wdata);
1120 }
1121
1122 /* if MP is not used, do not map or activate it */
1123 if (!(flags & WIIPROTO_FLAG_MP_USED))
1124 mp = false;
1125
1126 /* map MP into main extension registers if used */
1127 if (mp) {
1128 wiimote_cmd_acquire_noint(wdata);
1129 wiimote_cmd_map_mp(wdata, exttype);
1130 wiimote_cmd_release(wdata);
1131
1132 /* delete MP hotplug timer */
1133 del_timer_sync(&wdata->timer);
1134 } else {
1135 /* reschedule MP hotplug timer */
1136 mod_timer(&wdata->timer, jiffies + HZ * 4);
1137 }
1138
1139 spin_lock_irq(&wdata->state.lock);
1140
1141 /* enable data forwarding again and set expected hotplug state */
1142 if (mp) {
1143 wdata->state.flags |= WIIPROTO_FLAG_MP_ACTIVE;
1144 if (wdata->state.exttype == WIIMOTE_EXT_NONE) {
1145 wdata->state.flags &= ~WIIPROTO_FLAG_EXT_PLUGGED;
1146 wdata->state.flags &= ~WIIPROTO_FLAG_MP_PLUGGED;
1147 } else {
1148 wdata->state.flags &= ~WIIPROTO_FLAG_EXT_PLUGGED;
1149 wdata->state.flags |= WIIPROTO_FLAG_MP_PLUGGED;
1150 wdata->state.flags |= WIIPROTO_FLAG_EXT_ACTIVE;
1151 }
1152 } else if (wdata->state.exttype != WIIMOTE_EXT_NONE) {
1153 wdata->state.flags |= WIIPROTO_FLAG_EXT_ACTIVE;
1154 }
1155
1156 /* request status report for hotplug state updates */
1157 wiiproto_req_status(wdata);
1158
1159 spin_unlock_irq(&wdata->state.lock);
1160
1161 hid_dbg(wdata->hdev, "detected extensions: MP: %d EXT: %d\n",
1162 wdata->state.mp, wdata->state.exttype);
David Herrmannc57ff762013-05-05 23:12:48 +02001163}
1164
1165static void wiimote_init_worker(struct work_struct *work)
1166{
1167 struct wiimote_data *wdata = container_of(work, struct wiimote_data,
1168 init_worker);
1169
1170 if (wdata->state.devtype == WIIMOTE_DEV_PENDING)
1171 wiimote_init_detect(wdata);
David Herrmann4148b6b2013-05-05 23:12:57 +02001172 if (!wiimote_init_check(wdata))
1173 wiimote_init_hotplug(wdata);
1174}
1175
1176void __wiimote_schedule(struct wiimote_data *wdata)
1177{
1178 if (!(wdata->state.flags & WIIPROTO_FLAG_EXITING))
1179 schedule_work(&wdata->init_worker);
1180}
1181
1182static void wiimote_schedule(struct wiimote_data *wdata)
1183{
1184 unsigned long flags;
1185
1186 spin_lock_irqsave(&wdata->state.lock, flags);
1187 __wiimote_schedule(wdata);
1188 spin_unlock_irqrestore(&wdata->state.lock, flags);
1189}
1190
1191static void wiimote_init_timeout(unsigned long arg)
1192{
1193 struct wiimote_data *wdata = (void*)arg;
1194
1195 wiimote_schedule(wdata);
David Herrmannc57ff762013-05-05 23:12:48 +02001196}
1197
1198/* protocol handlers */
1199
David Herrmann1abb9ad2011-07-05 13:45:16 +02001200static void handler_keys(struct wiimote_data *wdata, const __u8 *payload)
1201{
David Herrmann20cef812013-05-05 23:12:52 +02001202 const __u8 *iter, *mods;
1203 const struct wiimod_ops *ops;
1204
David Herrmann4148b6b2013-05-05 23:12:57 +02001205 ops = wiimod_ext_table[wdata->state.exttype];
1206 if (ops->in_keys) {
1207 ops->in_keys(wdata, payload);
1208 return;
1209 }
1210
David Herrmann20cef812013-05-05 23:12:52 +02001211 mods = wiimote_devtype_mods[wdata->state.devtype];
1212 for (iter = mods; *iter != WIIMOD_NULL; ++iter) {
1213 ops = wiimod_table[*iter];
1214 if (ops->in_keys) {
1215 ops->in_keys(wdata, payload);
1216 break;
1217 }
1218 }
David Herrmann1abb9ad2011-07-05 13:45:16 +02001219}
1220
David Herrmannefcf9182011-09-06 13:50:29 +02001221static void handler_accel(struct wiimote_data *wdata, const __u8 *payload)
1222{
David Herrmann0ea16752013-05-05 23:12:55 +02001223 const __u8 *iter, *mods;
1224 const struct wiimod_ops *ops;
David Herrmannefcf9182011-09-06 13:50:29 +02001225
David Herrmann4148b6b2013-05-05 23:12:57 +02001226 ops = wiimod_ext_table[wdata->state.exttype];
1227 if (ops->in_accel) {
1228 ops->in_accel(wdata, payload);
1229 return;
1230 }
1231
David Herrmann0ea16752013-05-05 23:12:55 +02001232 mods = wiimote_devtype_mods[wdata->state.devtype];
1233 for (iter = mods; *iter != WIIMOD_NULL; ++iter) {
1234 ops = wiimod_table[*iter];
1235 if (ops->in_accel) {
1236 ops->in_accel(wdata, payload);
1237 break;
1238 }
1239 }
David Herrmannefcf9182011-09-06 13:50:29 +02001240}
1241
David Herrmann4148b6b2013-05-05 23:12:57 +02001242static bool valid_ext_handler(const struct wiimod_ops *ops, size_t len)
1243{
1244 if (!ops->in_ext)
1245 return false;
1246 if ((ops->flags & WIIMOD_FLAG_EXT8) && len < 8)
1247 return false;
1248 if ((ops->flags & WIIMOD_FLAG_EXT16) && len < 16)
1249 return false;
1250
1251 return true;
1252}
1253
1254static void handler_ext(struct wiimote_data *wdata, const __u8 *payload,
1255 size_t len)
1256{
1257 const __u8 *iter, *mods;
1258 const struct wiimod_ops *ops;
1259 bool is_mp;
1260
1261 if (len < 6)
1262 return;
1263
1264 /* if MP is active, track MP slot hotplugging */
1265 if (wdata->state.flags & WIIPROTO_FLAG_MP_ACTIVE) {
1266 /* this bit is set for invalid events (eg. during hotplug) */
1267 if (payload[5] & 0x01)
1268 return;
1269
1270 if (payload[4] & 0x01) {
1271 if (!(wdata->state.flags & WIIPROTO_FLAG_MP_PLUGGED)) {
1272 hid_dbg(wdata->hdev, "MP hotplug: 1\n");
1273 wdata->state.flags |= WIIPROTO_FLAG_MP_PLUGGED;
1274 __wiimote_schedule(wdata);
1275 }
1276 } else {
1277 if (wdata->state.flags & WIIPROTO_FLAG_MP_PLUGGED) {
1278 hid_dbg(wdata->hdev, "MP hotplug: 0\n");
1279 wdata->state.flags &= ~WIIPROTO_FLAG_MP_PLUGGED;
1280 wdata->state.flags &= ~WIIPROTO_FLAG_EXT_ACTIVE;
1281 __wiimote_schedule(wdata);
1282 }
1283 }
1284
1285 /* detect MP data that is sent interleaved with EXT data */
1286 is_mp = payload[5] & 0x02;
1287 } else {
1288 is_mp = false;
1289 }
1290
1291 /* ignore EXT events if no extension is active */
1292 if (!(wdata->state.flags & WIIPROTO_FLAG_EXT_ACTIVE) && !is_mp)
1293 return;
1294
1295 /* try forwarding to extension handler, first */
1296 ops = wiimod_ext_table[wdata->state.exttype];
1297 if (is_mp && ops->in_mp) {
1298 ops->in_mp(wdata, payload);
1299 return;
1300 } else if (!is_mp && valid_ext_handler(ops, len)) {
1301 ops->in_ext(wdata, payload);
1302 return;
1303 }
1304
1305 /* try forwarding to MP handler */
1306 ops = &wiimod_mp;
1307 if (is_mp && ops->in_mp) {
1308 ops->in_mp(wdata, payload);
1309 return;
1310 } else if (!is_mp && valid_ext_handler(ops, len)) {
1311 ops->in_ext(wdata, payload);
1312 return;
1313 }
1314
1315 /* try forwarding to loaded modules */
1316 mods = wiimote_devtype_mods[wdata->state.devtype];
1317 for (iter = mods; *iter != WIIMOD_NULL; ++iter) {
1318 ops = wiimod_table[*iter];
1319 if (is_mp && ops->in_mp) {
1320 ops->in_mp(wdata, payload);
1321 return;
1322 } else if (!is_mp && valid_ext_handler(ops, len)) {
1323 ops->in_ext(wdata, payload);
1324 return;
1325 }
1326 }
1327}
1328
David Herrmann3b5f03c2013-05-05 23:12:56 +02001329#define ir_to_input0(wdata, ir, packed) handler_ir((wdata), (ir), (packed), 0)
1330#define ir_to_input1(wdata, ir, packed) handler_ir((wdata), (ir), (packed), 1)
1331#define ir_to_input2(wdata, ir, packed) handler_ir((wdata), (ir), (packed), 2)
1332#define ir_to_input3(wdata, ir, packed) handler_ir((wdata), (ir), (packed), 3)
David Herrmanneac39e72011-09-06 13:50:31 +02001333
David Herrmann3b5f03c2013-05-05 23:12:56 +02001334static void handler_ir(struct wiimote_data *wdata, const __u8 *payload,
1335 bool packed, unsigned int id)
David Herrmanneac39e72011-09-06 13:50:31 +02001336{
David Herrmann3b5f03c2013-05-05 23:12:56 +02001337 const __u8 *iter, *mods;
1338 const struct wiimod_ops *ops;
David Herrmanneac39e72011-09-06 13:50:31 +02001339
David Herrmann4148b6b2013-05-05 23:12:57 +02001340 ops = wiimod_ext_table[wdata->state.exttype];
1341 if (ops->in_ir) {
1342 ops->in_ir(wdata, payload, packed, id);
1343 return;
1344 }
1345
David Herrmann3b5f03c2013-05-05 23:12:56 +02001346 mods = wiimote_devtype_mods[wdata->state.devtype];
1347 for (iter = mods; *iter != WIIMOD_NULL; ++iter) {
1348 ops = wiimod_table[*iter];
1349 if (ops->in_ir) {
1350 ops->in_ir(wdata, payload, packed, id);
1351 break;
1352 }
David Herrmanneac39e72011-09-06 13:50:31 +02001353 }
David Herrmanneac39e72011-09-06 13:50:31 +02001354}
David Herrmannefcf9182011-09-06 13:50:29 +02001355
David Herrmann2d44e3d2013-04-02 19:58:36 +02001356/* reduced status report with "BB BB" key data only */
1357static void handler_status_K(struct wiimote_data *wdata,
1358 const __u8 *payload)
David Herrmannc87019e2011-08-17 11:43:24 +02001359{
1360 handler_keys(wdata, payload);
1361
1362 /* on status reports the drm is reset so we need to resend the drm */
1363 wiiproto_req_drm(wdata, WIIPROTO_REQ_NULL);
David Herrmann2d44e3d2013-04-02 19:58:36 +02001364}
1365
1366/* extended status report with "BB BB LF 00 00 VV" data */
1367static void handler_status(struct wiimote_data *wdata, const __u8 *payload)
1368{
1369 handler_status_K(wdata, payload);
David Herrmanne3979a92011-09-06 13:50:38 +02001370
David Herrmannc57ff762013-05-05 23:12:48 +02001371 /* update extension status */
1372 if (payload[2] & 0x02) {
David Herrmann4148b6b2013-05-05 23:12:57 +02001373 if (!(wdata->state.flags & WIIPROTO_FLAG_EXT_PLUGGED)) {
1374 hid_dbg(wdata->hdev, "EXT hotplug: 1\n");
1375 wdata->state.flags |= WIIPROTO_FLAG_EXT_PLUGGED;
1376 __wiimote_schedule(wdata);
1377 }
David Herrmannc57ff762013-05-05 23:12:48 +02001378 } else {
David Herrmann4148b6b2013-05-05 23:12:57 +02001379 if (wdata->state.flags & WIIPROTO_FLAG_EXT_PLUGGED) {
1380 hid_dbg(wdata->hdev, "EXT hotplug: 0\n");
1381 wdata->state.flags &= ~WIIPROTO_FLAG_EXT_PLUGGED;
1382 wdata->state.flags &= ~WIIPROTO_FLAG_MP_PLUGGED;
1383 wdata->state.flags &= ~WIIPROTO_FLAG_EXT_ACTIVE;
1384 wdata->state.flags &= ~WIIPROTO_FLAG_MP_ACTIVE;
1385 __wiimote_schedule(wdata);
1386 }
David Herrmannc57ff762013-05-05 23:12:48 +02001387 }
David Herrmanncb992212011-11-17 14:12:01 +01001388
David Herrmann6b80bb92013-05-05 23:12:49 +02001389 wdata->state.cmd_battery = payload[5];
1390 if (wiimote_cmd_pending(wdata, WIIPROTO_REQ_SREQ, 0))
David Herrmanne3979a92011-09-06 13:50:38 +02001391 wiimote_cmd_complete(wdata);
David Herrmannc87019e2011-08-17 11:43:24 +02001392}
1393
David Herrmann2d44e3d2013-04-02 19:58:36 +02001394/* reduced generic report with "BB BB" key data only */
1395static void handler_generic_K(struct wiimote_data *wdata, const __u8 *payload)
1396{
1397 handler_keys(wdata, payload);
1398}
1399
David Herrmannbe1ecd62011-09-06 13:50:33 +02001400static void handler_data(struct wiimote_data *wdata, const __u8 *payload)
1401{
David Herrmannfad8c0e2011-11-17 14:12:00 +01001402 __u16 offset = payload[3] << 8 | payload[4];
1403 __u8 size = (payload[2] >> 4) + 1;
1404 __u8 err = payload[2] & 0x0f;
1405
David Herrmannbe1ecd62011-09-06 13:50:33 +02001406 handler_keys(wdata, payload);
David Herrmannfad8c0e2011-11-17 14:12:00 +01001407
1408 if (wiimote_cmd_pending(wdata, WIIPROTO_REQ_RMEM, offset)) {
1409 if (err)
1410 size = 0;
1411 else if (size > wdata->state.cmd_read_size)
1412 size = wdata->state.cmd_read_size;
1413
1414 wdata->state.cmd_read_size = size;
1415 if (wdata->state.cmd_read_buf)
1416 memcpy(wdata->state.cmd_read_buf, &payload[5], size);
1417 wiimote_cmd_complete(wdata);
1418 }
David Herrmannbe1ecd62011-09-06 13:50:33 +02001419}
1420
David Herrmannc87019e2011-08-17 11:43:24 +02001421static void handler_return(struct wiimote_data *wdata, const __u8 *payload)
1422{
1423 __u8 err = payload[3];
1424 __u8 cmd = payload[2];
1425
1426 handler_keys(wdata, payload);
1427
David Herrmann33e84012011-09-06 13:50:35 +02001428 if (wiimote_cmd_pending(wdata, cmd, 0)) {
1429 wdata->state.cmd_err = err;
1430 wiimote_cmd_complete(wdata);
1431 } else if (err) {
David Herrmannc87019e2011-08-17 11:43:24 +02001432 hid_warn(wdata->hdev, "Remote error %hhu on req %hhu\n", err,
1433 cmd);
David Herrmann33e84012011-09-06 13:50:35 +02001434 }
David Herrmannc87019e2011-08-17 11:43:24 +02001435}
1436
David Herrmannefcf9182011-09-06 13:50:29 +02001437static void handler_drm_KA(struct wiimote_data *wdata, const __u8 *payload)
1438{
1439 handler_keys(wdata, payload);
1440 handler_accel(wdata, payload);
1441}
1442
David Herrmann7336b9f2011-09-06 13:50:32 +02001443static void handler_drm_KE(struct wiimote_data *wdata, const __u8 *payload)
1444{
1445 handler_keys(wdata, payload);
David Herrmann4148b6b2013-05-05 23:12:57 +02001446 handler_ext(wdata, &payload[2], 8);
David Herrmann7336b9f2011-09-06 13:50:32 +02001447}
1448
David Herrmannefcf9182011-09-06 13:50:29 +02001449static void handler_drm_KAI(struct wiimote_data *wdata, const __u8 *payload)
1450{
1451 handler_keys(wdata, payload);
1452 handler_accel(wdata, payload);
David Herrmanneac39e72011-09-06 13:50:31 +02001453 ir_to_input0(wdata, &payload[5], false);
1454 ir_to_input1(wdata, &payload[8], false);
1455 ir_to_input2(wdata, &payload[11], false);
1456 ir_to_input3(wdata, &payload[14], false);
David Herrmanneac39e72011-09-06 13:50:31 +02001457}
1458
David Herrmann7336b9f2011-09-06 13:50:32 +02001459static void handler_drm_KEE(struct wiimote_data *wdata, const __u8 *payload)
1460{
1461 handler_keys(wdata, payload);
David Herrmann4148b6b2013-05-05 23:12:57 +02001462 handler_ext(wdata, &payload[2], 19);
David Herrmann7336b9f2011-09-06 13:50:32 +02001463}
1464
David Herrmanneac39e72011-09-06 13:50:31 +02001465static void handler_drm_KIE(struct wiimote_data *wdata, const __u8 *payload)
1466{
1467 handler_keys(wdata, payload);
1468 ir_to_input0(wdata, &payload[2], false);
1469 ir_to_input1(wdata, &payload[4], true);
1470 ir_to_input2(wdata, &payload[7], false);
1471 ir_to_input3(wdata, &payload[9], true);
David Herrmann4148b6b2013-05-05 23:12:57 +02001472 handler_ext(wdata, &payload[12], 9);
David Herrmannefcf9182011-09-06 13:50:29 +02001473}
1474
1475static void handler_drm_KAE(struct wiimote_data *wdata, const __u8 *payload)
1476{
1477 handler_keys(wdata, payload);
1478 handler_accel(wdata, payload);
David Herrmann4148b6b2013-05-05 23:12:57 +02001479 handler_ext(wdata, &payload[5], 16);
David Herrmannefcf9182011-09-06 13:50:29 +02001480}
1481
1482static void handler_drm_KAIE(struct wiimote_data *wdata, const __u8 *payload)
1483{
1484 handler_keys(wdata, payload);
1485 handler_accel(wdata, payload);
David Herrmanneac39e72011-09-06 13:50:31 +02001486 ir_to_input0(wdata, &payload[5], false);
1487 ir_to_input1(wdata, &payload[7], true);
1488 ir_to_input2(wdata, &payload[10], false);
1489 ir_to_input3(wdata, &payload[12], true);
David Herrmann4148b6b2013-05-05 23:12:57 +02001490 handler_ext(wdata, &payload[15], 6);
David Herrmannefcf9182011-09-06 13:50:29 +02001491}
1492
David Herrmann7336b9f2011-09-06 13:50:32 +02001493static void handler_drm_E(struct wiimote_data *wdata, const __u8 *payload)
1494{
David Herrmann4148b6b2013-05-05 23:12:57 +02001495 handler_ext(wdata, payload, 21);
David Herrmann7336b9f2011-09-06 13:50:32 +02001496}
1497
David Herrmannefcf9182011-09-06 13:50:29 +02001498static void handler_drm_SKAI1(struct wiimote_data *wdata, const __u8 *payload)
1499{
1500 handler_keys(wdata, payload);
1501
1502 wdata->state.accel_split[0] = payload[2];
1503 wdata->state.accel_split[1] = (payload[0] >> 1) & (0x10 | 0x20);
1504 wdata->state.accel_split[1] |= (payload[1] << 1) & (0x40 | 0x80);
David Herrmanneac39e72011-09-06 13:50:31 +02001505
1506 ir_to_input0(wdata, &payload[3], false);
1507 ir_to_input1(wdata, &payload[12], false);
David Herrmannefcf9182011-09-06 13:50:29 +02001508}
1509
1510static void handler_drm_SKAI2(struct wiimote_data *wdata, const __u8 *payload)
1511{
1512 __u8 buf[5];
1513
1514 handler_keys(wdata, payload);
1515
1516 wdata->state.accel_split[1] |= (payload[0] >> 5) & (0x01 | 0x02);
1517 wdata->state.accel_split[1] |= (payload[1] >> 3) & (0x04 | 0x08);
1518
1519 buf[0] = 0;
1520 buf[1] = 0;
1521 buf[2] = wdata->state.accel_split[0];
1522 buf[3] = payload[2];
1523 buf[4] = wdata->state.accel_split[1];
1524 handler_accel(wdata, buf);
David Herrmanneac39e72011-09-06 13:50:31 +02001525
1526 ir_to_input2(wdata, &payload[3], false);
1527 ir_to_input3(wdata, &payload[12], false);
David Herrmannefcf9182011-09-06 13:50:29 +02001528}
1529
David Herrmanna4d19192011-07-05 13:45:15 +02001530struct wiiproto_handler {
1531 __u8 id;
1532 size_t size;
1533 void (*func)(struct wiimote_data *wdata, const __u8 *payload);
1534};
1535
1536static struct wiiproto_handler handlers[] = {
David Herrmannc87019e2011-08-17 11:43:24 +02001537 { .id = WIIPROTO_REQ_STATUS, .size = 6, .func = handler_status },
David Herrmann2d44e3d2013-04-02 19:58:36 +02001538 { .id = WIIPROTO_REQ_STATUS, .size = 2, .func = handler_status_K },
David Herrmannbe1ecd62011-09-06 13:50:33 +02001539 { .id = WIIPROTO_REQ_DATA, .size = 21, .func = handler_data },
David Herrmann2d44e3d2013-04-02 19:58:36 +02001540 { .id = WIIPROTO_REQ_DATA, .size = 2, .func = handler_generic_K },
David Herrmannc87019e2011-08-17 11:43:24 +02001541 { .id = WIIPROTO_REQ_RETURN, .size = 4, .func = handler_return },
David Herrmann2d44e3d2013-04-02 19:58:36 +02001542 { .id = WIIPROTO_REQ_RETURN, .size = 2, .func = handler_generic_K },
David Herrmann1abb9ad2011-07-05 13:45:16 +02001543 { .id = WIIPROTO_REQ_DRM_K, .size = 2, .func = handler_keys },
David Herrmannefcf9182011-09-06 13:50:29 +02001544 { .id = WIIPROTO_REQ_DRM_KA, .size = 5, .func = handler_drm_KA },
David Herrmann2d44e3d2013-04-02 19:58:36 +02001545 { .id = WIIPROTO_REQ_DRM_KA, .size = 2, .func = handler_generic_K },
David Herrmann7336b9f2011-09-06 13:50:32 +02001546 { .id = WIIPROTO_REQ_DRM_KE, .size = 10, .func = handler_drm_KE },
David Herrmann2d44e3d2013-04-02 19:58:36 +02001547 { .id = WIIPROTO_REQ_DRM_KE, .size = 2, .func = handler_generic_K },
David Herrmannefcf9182011-09-06 13:50:29 +02001548 { .id = WIIPROTO_REQ_DRM_KAI, .size = 17, .func = handler_drm_KAI },
David Herrmann2d44e3d2013-04-02 19:58:36 +02001549 { .id = WIIPROTO_REQ_DRM_KAI, .size = 2, .func = handler_generic_K },
David Herrmann7336b9f2011-09-06 13:50:32 +02001550 { .id = WIIPROTO_REQ_DRM_KEE, .size = 21, .func = handler_drm_KEE },
David Herrmann2d44e3d2013-04-02 19:58:36 +02001551 { .id = WIIPROTO_REQ_DRM_KEE, .size = 2, .func = handler_generic_K },
David Herrmannefcf9182011-09-06 13:50:29 +02001552 { .id = WIIPROTO_REQ_DRM_KAE, .size = 21, .func = handler_drm_KAE },
David Herrmann2d44e3d2013-04-02 19:58:36 +02001553 { .id = WIIPROTO_REQ_DRM_KAE, .size = 2, .func = handler_generic_K },
David Herrmanneac39e72011-09-06 13:50:31 +02001554 { .id = WIIPROTO_REQ_DRM_KIE, .size = 21, .func = handler_drm_KIE },
David Herrmann2d44e3d2013-04-02 19:58:36 +02001555 { .id = WIIPROTO_REQ_DRM_KIE, .size = 2, .func = handler_generic_K },
David Herrmannefcf9182011-09-06 13:50:29 +02001556 { .id = WIIPROTO_REQ_DRM_KAIE, .size = 21, .func = handler_drm_KAIE },
David Herrmann2d44e3d2013-04-02 19:58:36 +02001557 { .id = WIIPROTO_REQ_DRM_KAIE, .size = 2, .func = handler_generic_K },
David Herrmann7336b9f2011-09-06 13:50:32 +02001558 { .id = WIIPROTO_REQ_DRM_E, .size = 21, .func = handler_drm_E },
David Herrmannefcf9182011-09-06 13:50:29 +02001559 { .id = WIIPROTO_REQ_DRM_SKAI1, .size = 21, .func = handler_drm_SKAI1 },
1560 { .id = WIIPROTO_REQ_DRM_SKAI2, .size = 21, .func = handler_drm_SKAI2 },
David Herrmanna4d19192011-07-05 13:45:15 +02001561 { .id = 0 }
1562};
1563
David Herrmann02fb72a2011-07-05 13:45:09 +02001564static int wiimote_hid_event(struct hid_device *hdev, struct hid_report *report,
1565 u8 *raw_data, int size)
1566{
David Herrmann4d36e972011-07-05 13:45:12 +02001567 struct wiimote_data *wdata = hid_get_drvdata(hdev);
David Herrmanna4d19192011-07-05 13:45:15 +02001568 struct wiiproto_handler *h;
1569 int i;
David Herrmann32a0d9a2011-07-05 13:45:18 +02001570 unsigned long flags;
David Herrmann4d36e972011-07-05 13:45:12 +02001571
David Herrmann02fb72a2011-07-05 13:45:09 +02001572 if (size < 1)
1573 return -EINVAL;
1574
David Herrmann32a0d9a2011-07-05 13:45:18 +02001575 spin_lock_irqsave(&wdata->state.lock, flags);
1576
David Herrmanna4d19192011-07-05 13:45:15 +02001577 for (i = 0; handlers[i].id; ++i) {
1578 h = &handlers[i];
David Herrmann7336b9f2011-09-06 13:50:32 +02001579 if (h->id == raw_data[0] && h->size < size) {
David Herrmanna4d19192011-07-05 13:45:15 +02001580 h->func(wdata, &raw_data[1]);
David Herrmann2d44e3d2013-04-02 19:58:36 +02001581 break;
David Herrmann7336b9f2011-09-06 13:50:32 +02001582 }
David Herrmanna4d19192011-07-05 13:45:15 +02001583 }
1584
David Herrmann2d44e3d2013-04-02 19:58:36 +02001585 if (!handlers[i].id)
David Herrmann7336b9f2011-09-06 13:50:32 +02001586 hid_warn(hdev, "Unhandled report %hhu size %d\n", raw_data[0],
1587 size);
1588
David Herrmann32a0d9a2011-07-05 13:45:18 +02001589 spin_unlock_irqrestore(&wdata->state.lock, flags);
1590
David Herrmann02fb72a2011-07-05 13:45:09 +02001591 return 0;
1592}
1593
David Herrmanne894d0e2011-07-05 13:45:10 +02001594static struct wiimote_data *wiimote_create(struct hid_device *hdev)
1595{
1596 struct wiimote_data *wdata;
1597
1598 wdata = kzalloc(sizeof(*wdata), GFP_KERNEL);
1599 if (!wdata)
1600 return NULL;
1601
1602 wdata->hdev = hdev;
1603 hid_set_drvdata(hdev, wdata);
1604
David Herrmann13938532013-05-05 23:12:46 +02001605 spin_lock_init(&wdata->queue.lock);
1606 INIT_WORK(&wdata->queue.worker, wiimote_queue_worker);
David Herrmann23c063c2011-07-05 13:45:14 +02001607
David Herrmann32a0d9a2011-07-05 13:45:18 +02001608 spin_lock_init(&wdata->state.lock);
David Herrmann29d28062011-09-06 13:50:34 +02001609 init_completion(&wdata->state.ready);
1610 mutex_init(&wdata->state.sync);
David Herrmann43d782a2011-11-17 14:12:12 +01001611 wdata->state.drm = WIIPROTO_REQ_DRM_K;
David Herrmann6b80bb92013-05-05 23:12:49 +02001612 wdata->state.cmd_battery = 0xff;
David Herrmann32a0d9a2011-07-05 13:45:18 +02001613
David Herrmannc57ff762013-05-05 23:12:48 +02001614 INIT_WORK(&wdata->init_worker, wiimote_init_worker);
David Herrmann4148b6b2013-05-05 23:12:57 +02001615 setup_timer(&wdata->timer, wiimote_init_timeout, (long)wdata);
David Herrmannc57ff762013-05-05 23:12:48 +02001616
David Herrmanne894d0e2011-07-05 13:45:10 +02001617 return wdata;
1618}
1619
1620static void wiimote_destroy(struct wiimote_data *wdata)
1621{
David Herrmann4148b6b2013-05-05 23:12:57 +02001622 unsigned long flags;
1623
David Herrmann43e5e7c2011-11-17 14:12:10 +01001624 wiidebug_deinit(wdata);
David Herrmann4148b6b2013-05-05 23:12:57 +02001625
1626 /* prevent init_worker from being scheduled again */
1627 spin_lock_irqsave(&wdata->state.lock, flags);
1628 wdata->state.flags |= WIIPROTO_FLAG_EXITING;
1629 spin_unlock_irqrestore(&wdata->state.lock, flags);
David Herrmann3989ef62011-08-17 11:43:20 +02001630
David Herrmann20cef812013-05-05 23:12:52 +02001631 cancel_work_sync(&wdata->init_worker);
David Herrmann4148b6b2013-05-05 23:12:57 +02001632 del_timer_sync(&wdata->timer);
1633
1634 wiimote_mp_unload(wdata);
1635 wiimote_ext_unload(wdata);
David Herrmann27f06942013-05-05 23:12:51 +02001636 wiimote_modules_unload(wdata);
David Herrmann13938532013-05-05 23:12:46 +02001637 cancel_work_sync(&wdata->queue.worker);
David Herrmann5682b1a2013-05-05 23:12:47 +02001638 hid_hw_close(wdata->hdev);
David Herrmann3989ef62011-08-17 11:43:20 +02001639 hid_hw_stop(wdata->hdev);
1640
David Herrmanne894d0e2011-07-05 13:45:10 +02001641 kfree(wdata);
1642}
1643
David Herrmann02fb72a2011-07-05 13:45:09 +02001644static int wiimote_hid_probe(struct hid_device *hdev,
1645 const struct hid_device_id *id)
1646{
David Herrmanne894d0e2011-07-05 13:45:10 +02001647 struct wiimote_data *wdata;
David Herrmann02fb72a2011-07-05 13:45:09 +02001648 int ret;
1649
David Herrmann90120d62011-11-17 14:12:14 +01001650 hdev->quirks |= HID_QUIRK_NO_INIT_REPORTS;
1651
David Herrmanne894d0e2011-07-05 13:45:10 +02001652 wdata = wiimote_create(hdev);
1653 if (!wdata) {
1654 hid_err(hdev, "Can't alloc device\n");
1655 return -ENOMEM;
1656 }
1657
David Herrmann02fb72a2011-07-05 13:45:09 +02001658 ret = hid_parse(hdev);
1659 if (ret) {
1660 hid_err(hdev, "HID parse failed\n");
David Herrmanne894d0e2011-07-05 13:45:10 +02001661 goto err;
David Herrmann02fb72a2011-07-05 13:45:09 +02001662 }
1663
1664 ret = hid_hw_start(hdev, HID_CONNECT_HIDRAW);
1665 if (ret) {
1666 hid_err(hdev, "HW start failed\n");
David Herrmanne894d0e2011-07-05 13:45:10 +02001667 goto err;
David Herrmann02fb72a2011-07-05 13:45:09 +02001668 }
1669
David Herrmann5682b1a2013-05-05 23:12:47 +02001670 ret = hid_hw_open(hdev);
1671 if (ret) {
1672 hid_err(hdev, "cannot start hardware I/O\n");
1673 goto err_stop;
1674 }
1675
David Herrmann43e5e7c2011-11-17 14:12:10 +01001676 ret = wiidebug_init(wdata);
1677 if (ret)
1678 goto err_free;
1679
David Herrmann02fb72a2011-07-05 13:45:09 +02001680 hid_info(hdev, "New device registered\n");
David Herrmann32a0d9a2011-07-05 13:45:18 +02001681
David Herrmannc57ff762013-05-05 23:12:48 +02001682 /* schedule device detection */
David Herrmann4148b6b2013-05-05 23:12:57 +02001683 wiimote_schedule(wdata);
David Herrmannc57ff762013-05-05 23:12:48 +02001684
David Herrmann02fb72a2011-07-05 13:45:09 +02001685 return 0;
David Herrmanne894d0e2011-07-05 13:45:10 +02001686
David Herrmann3989ef62011-08-17 11:43:20 +02001687err_free:
1688 wiimote_destroy(wdata);
1689 return ret;
1690
David Herrmann672bc4e2011-07-05 13:45:11 +02001691err_stop:
1692 hid_hw_stop(hdev);
David Herrmanne894d0e2011-07-05 13:45:10 +02001693err:
David Herrmannf363e4f2011-09-06 13:50:30 +02001694 input_free_device(wdata->ir);
David Herrmann98a558a2011-09-06 13:50:28 +02001695 input_free_device(wdata->accel);
David Herrmann3989ef62011-08-17 11:43:20 +02001696 kfree(wdata);
David Herrmanne894d0e2011-07-05 13:45:10 +02001697 return ret;
David Herrmann02fb72a2011-07-05 13:45:09 +02001698}
1699
1700static void wiimote_hid_remove(struct hid_device *hdev)
1701{
David Herrmanne894d0e2011-07-05 13:45:10 +02001702 struct wiimote_data *wdata = hid_get_drvdata(hdev);
1703
David Herrmann02fb72a2011-07-05 13:45:09 +02001704 hid_info(hdev, "Device removed\n");
David Herrmanne894d0e2011-07-05 13:45:10 +02001705 wiimote_destroy(wdata);
David Herrmann02fb72a2011-07-05 13:45:09 +02001706}
1707
1708static const struct hid_device_id wiimote_hid_devices[] = {
1709 { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_NINTENDO,
1710 USB_DEVICE_ID_NINTENDO_WIIMOTE) },
David Herrmanna33042f2013-04-02 19:58:35 +02001711 { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_NINTENDO,
1712 USB_DEVICE_ID_NINTENDO_WIIMOTE2) },
David Herrmann02fb72a2011-07-05 13:45:09 +02001713 { }
1714};
1715MODULE_DEVICE_TABLE(hid, wiimote_hid_devices);
1716
1717static struct hid_driver wiimote_hid_driver = {
1718 .name = "wiimote",
1719 .id_table = wiimote_hid_devices,
1720 .probe = wiimote_hid_probe,
1721 .remove = wiimote_hid_remove,
1722 .raw_event = wiimote_hid_event,
1723};
H Hartley Sweetenf4254582012-12-17 15:28:26 -07001724module_hid_driver(wiimote_hid_driver);
David Herrmann02fb72a2011-07-05 13:45:09 +02001725
David Herrmannfb51b442011-07-05 13:45:08 +02001726MODULE_LICENSE("GPL");
1727MODULE_AUTHOR("David Herrmann <dh.herrmann@gmail.com>");
David Herrmann92eda7e2013-05-05 23:12:45 +02001728MODULE_DESCRIPTION("Driver for Nintendo Wii / Wii U peripherals");