Lines Matching +full:ext +full:- +full:gen
1 // SPDX-License-Identifier: GPL-2.0-or-later
4 * Copyright (c) 2011-2013 David Herrmann <dh.herrmann@gmail.com>
17 #include "hid-ids.h"
18 #include "hid-wiimote.h"
28 if (!hdev->ll_driver->output_report) in wiimote_hid_send()
29 return -ENODEV; in wiimote_hid_send()
33 return -ENOMEM; in wiimote_hid_send()
50 spin_lock_irqsave(&wdata->queue.lock, flags); in wiimote_queue_worker()
52 while (wdata->queue.head != wdata->queue.tail) { in wiimote_queue_worker()
53 spin_unlock_irqrestore(&wdata->queue.lock, flags); in wiimote_queue_worker()
54 ret = wiimote_hid_send(wdata->hdev, in wiimote_queue_worker()
55 wdata->queue.outq[wdata->queue.tail].data, in wiimote_queue_worker()
56 wdata->queue.outq[wdata->queue.tail].size); in wiimote_queue_worker()
58 spin_lock_irqsave(&wdata->state.lock, flags); in wiimote_queue_worker()
60 spin_unlock_irqrestore(&wdata->state.lock, flags); in wiimote_queue_worker()
62 spin_lock_irqsave(&wdata->queue.lock, flags); in wiimote_queue_worker()
64 wdata->queue.tail = (wdata->queue.tail + 1) % WIIMOTE_BUFSIZE; in wiimote_queue_worker()
67 spin_unlock_irqrestore(&wdata->queue.lock, flags); in wiimote_queue_worker()
77 hid_warn(wdata->hdev, "Sending too large output report\n"); in wiimote_queue()
79 spin_lock_irqsave(&wdata->queue.lock, flags); in wiimote_queue()
93 spin_lock_irqsave(&wdata->queue.lock, flags); in wiimote_queue()
95 memcpy(wdata->queue.outq[wdata->queue.head].data, buffer, count); in wiimote_queue()
96 wdata->queue.outq[wdata->queue.head].size = count; in wiimote_queue()
97 newhead = (wdata->queue.head + 1) % WIIMOTE_BUFSIZE; in wiimote_queue()
99 if (wdata->queue.head == wdata->queue.tail) { in wiimote_queue()
100 wdata->queue.head = newhead; in wiimote_queue()
101 schedule_work(&wdata->queue.worker); in wiimote_queue()
102 } else if (newhead != wdata->queue.tail) { in wiimote_queue()
103 wdata->queue.head = newhead; in wiimote_queue()
105 hid_warn(wdata->hdev, "Output queue is full"); in wiimote_queue()
114 spin_unlock_irqrestore(&wdata->queue.lock, flags); in wiimote_queue()
126 if (wdata->state.flags & WIIPROTO_FLAG_RUMBLE) in wiiproto_keep_rumble()
135 if (rumble == !!(wdata->state.flags & WIIPROTO_FLAG_RUMBLE)) in wiiproto_req_rumble()
139 wdata->state.flags |= WIIPROTO_FLAG_RUMBLE; in wiiproto_req_rumble()
141 wdata->state.flags &= ~WIIPROTO_FLAG_RUMBLE; in wiiproto_req_rumble()
155 if ((wdata->state.flags & WIIPROTO_FLAGS_LEDS) == leds) in wiiproto_req_leds()
157 wdata->state.flags = (wdata->state.flags & ~WIIPROTO_FLAGS_LEDS) | leds; in wiiproto_req_leds()
182 * - IR cam in extended or full mode disables any data transmission
185 * - IR cam with accelerometer and extension *_EXT8 is not supported.
189 * - *_EXT16 is only supported in combination with buttons and
196 __u8 ir = wdata->state.flags & WIIPROTO_FLAGS_IR; in select_drm()
197 bool ext; in select_drm() local
199 ext = (wdata->state.flags & WIIPROTO_FLAG_EXT_USED) || in select_drm()
200 (wdata->state.flags & WIIPROTO_FLAG_MP_USED); in select_drm()
202 /* some 3rd-party balance-boards are hard-coded to KEE, *sigh* */ in select_drm()
203 if (wdata->state.devtype == WIIMOTE_DEV_BALANCE_BOARD) { in select_drm()
204 if (ext) in select_drm()
211 if (wdata->state.flags & WIIPROTO_FLAG_ACCEL) { in select_drm()
226 if (wdata->state.flags & WIIPROTO_FLAG_ACCEL) { in select_drm()
227 if (ext) in select_drm()
232 if (ext) in select_drm()
244 if (wdata->state.flags & WIIPROTO_FLAG_DRM_LOCKED) in wiiproto_req_drm()
245 drm = wdata->state.drm; in wiiproto_req_drm()
253 wdata->state.drm = drm; in wiiproto_req_drm()
272 if (accel == !!(wdata->state.flags & WIIPROTO_FLAG_ACCEL)) in wiiproto_req_accel()
276 wdata->state.flags |= WIIPROTO_FLAG_ACCEL; in wiiproto_req_accel()
278 wdata->state.flags &= ~WIIPROTO_FLAG_ACCEL; in wiiproto_req_accel()
317 hid_warn(wdata->hdev, "Invalid length %d wmem request\n", size); in wiiproto_req_wmem()
342 hid_warn(wdata->hdev, "Invalid length %d rmem request\n", size); in wiiproto_req_rmem()
361 /* requries the cmd-mutex to be held */
368 spin_lock_irqsave(&wdata->state.lock, flags); in wiimote_cmd_write()
371 spin_unlock_irqrestore(&wdata->state.lock, flags); in wiimote_cmd_write()
374 if (!ret && wdata->state.cmd_err) in wiimote_cmd_write()
375 ret = -EIO; in wiimote_cmd_write()
380 /* requries the cmd-mutex to be held */
387 spin_lock_irqsave(&wdata->state.lock, flags); in wiimote_cmd_read()
388 wdata->state.cmd_read_size = size; in wiimote_cmd_read()
389 wdata->state.cmd_read_buf = rmem; in wiimote_cmd_read()
392 spin_unlock_irqrestore(&wdata->state.lock, flags); in wiimote_cmd_read()
396 spin_lock_irqsave(&wdata->state.lock, flags); in wiimote_cmd_read()
397 wdata->state.cmd_read_buf = NULL; in wiimote_cmd_read()
398 spin_unlock_irqrestore(&wdata->state.lock, flags); in wiimote_cmd_read()
401 if (wdata->state.cmd_read_size == 0) in wiimote_cmd_read()
402 ret = -EIO; in wiimote_cmd_read()
404 ret = wdata->state.cmd_read_size; in wiimote_cmd_read()
410 /* requires the cmd-mutex to be held */
431 /* requires the cmd-mutex to be held */
441 hid_dbg(wdata->hdev, "extension ID: %6phC\n", rmem); in wiimote_cmd_read_ext()
465 /* requires the cmd-mutex to be held */
486 /* requires the cmd-mutex to be held */
491 /* map MP with correct pass-through mode */ in wiimote_cmd_map_mp()
509 /* requires the cmd-mutex to be held */
519 hid_dbg(wdata->hdev, "motion plus ID: %6phC\n", rmem); in wiimote_cmd_read_mp()
524 hid_info(wdata->hdev, "unknown motion plus ID: %6phC\n", rmem); in wiimote_cmd_read_mp()
529 /* requires the cmd-mutex to be held */
540 hid_dbg(wdata->hdev, "mapped motion plus ID: %6phC\n", rmem); in wiimote_cmd_read_mp_mapped()
631 if (wiimod_table[*iter]->flags & WIIMOD_FLAG_INPUT) { in wiimote_modules_load()
638 wdata->input = input_allocate_device(); in wiimote_modules_load()
639 if (!wdata->input) in wiimote_modules_load()
642 input_set_drvdata(wdata->input, wdata); in wiimote_modules_load()
643 wdata->input->dev.parent = &wdata->hdev->dev; in wiimote_modules_load()
644 wdata->input->id.bustype = wdata->hdev->bus; in wiimote_modules_load()
645 wdata->input->id.vendor = wdata->hdev->vendor; in wiimote_modules_load()
646 wdata->input->id.product = wdata->hdev->product; in wiimote_modules_load()
647 wdata->input->id.version = wdata->hdev->version; in wiimote_modules_load()
648 wdata->input->name = WIIMOTE_NAME; in wiimote_modules_load()
653 if (!ops->probe) in wiimote_modules_load()
656 ret = ops->probe(ops, wdata); in wiimote_modules_load()
661 if (wdata->input) { in wiimote_modules_load()
662 ret = input_register_device(wdata->input); in wiimote_modules_load()
667 spin_lock_irq(&wdata->state.lock); in wiimote_modules_load()
668 wdata->state.devtype = devtype; in wiimote_modules_load()
669 spin_unlock_irq(&wdata->state.lock); in wiimote_modules_load()
673 for ( ; iter-- != mods; ) { in wiimote_modules_load()
675 if (ops->remove) in wiimote_modules_load()
676 ops->remove(ops, wdata); in wiimote_modules_load()
679 if (wdata->input) { in wiimote_modules_load()
680 input_free_device(wdata->input); in wiimote_modules_load()
681 wdata->input = NULL; in wiimote_modules_load()
691 mods = wiimote_devtype_mods[wdata->state.devtype]; in wiimote_modules_unload()
693 spin_lock_irqsave(&wdata->state.lock, flags); in wiimote_modules_unload()
694 wdata->state.devtype = WIIMOTE_DEV_UNKNOWN; in wiimote_modules_unload()
695 spin_unlock_irqrestore(&wdata->state.lock, flags); in wiimote_modules_unload()
701 if (wdata->input) { in wiimote_modules_unload()
702 input_get_device(wdata->input); in wiimote_modules_unload()
703 input_unregister_device(wdata->input); in wiimote_modules_unload()
706 for ( ; iter-- != mods; ) { in wiimote_modules_unload()
708 if (ops->remove) in wiimote_modules_unload()
709 ops->remove(ops, wdata); in wiimote_modules_unload()
712 if (wdata->input) { in wiimote_modules_unload()
713 input_put_device(wdata->input); in wiimote_modules_unload()
714 wdata->input = NULL; in wiimote_modules_unload()
720 static void wiimote_ext_load(struct wiimote_data *wdata, unsigned int ext) in wiimote_ext_load() argument
726 ops = wiimod_ext_table[ext]; in wiimote_ext_load()
728 if (ops->probe) { in wiimote_ext_load()
729 ret = ops->probe(ops, wdata); in wiimote_ext_load()
731 ext = WIIMOTE_EXT_UNKNOWN; in wiimote_ext_load()
734 spin_lock_irqsave(&wdata->state.lock, flags); in wiimote_ext_load()
735 wdata->state.exttype = ext; in wiimote_ext_load()
736 spin_unlock_irqrestore(&wdata->state.lock, flags); in wiimote_ext_load()
744 ops = wiimod_ext_table[wdata->state.exttype]; in wiimote_ext_unload()
746 spin_lock_irqsave(&wdata->state.lock, flags); in wiimote_ext_unload()
747 wdata->state.exttype = WIIMOTE_EXT_UNKNOWN; in wiimote_ext_unload()
748 wdata->state.flags &= ~WIIPROTO_FLAG_EXT_USED; in wiimote_ext_unload()
749 spin_unlock_irqrestore(&wdata->state.lock, flags); in wiimote_ext_unload()
751 if (ops->remove) in wiimote_ext_unload()
752 ops->remove(ops, wdata); in wiimote_ext_unload()
763 if (ops->probe) { in wiimote_mp_load()
764 ret = ops->probe(ops, wdata); in wiimote_mp_load()
769 spin_lock_irqsave(&wdata->state.lock, flags); in wiimote_mp_load()
770 wdata->state.mp = mode; in wiimote_mp_load()
771 spin_unlock_irqrestore(&wdata->state.lock, flags); in wiimote_mp_load()
779 if (wdata->state.mp < 2) in wiimote_mp_unload()
784 spin_lock_irqsave(&wdata->state.lock, flags); in wiimote_mp_unload()
785 wdata->state.mp = 0; in wiimote_mp_unload()
786 wdata->state.flags &= ~WIIPROTO_FLAG_MP_USED; in wiimote_mp_unload()
787 spin_unlock_irqrestore(&wdata->state.lock, flags); in wiimote_mp_unload()
789 if (ops->remove) in wiimote_mp_unload()
790 ops->remove(ops, wdata); in wiimote_mp_unload()
793 /* device (re-)initialization and detection */
799 [WIIMOTE_DEV_GEN10] = "Nintendo Wii Remote (Gen 1)",
800 [WIIMOTE_DEV_GEN20] = "Nintendo Wii Remote Plus (Gen 2)",
816 vendor = wdata->hdev->vendor; in wiimote_init_set_type()
817 product = wdata->hdev->product; in wiimote_init_set_type()
818 name = wdata->hdev->name; in wiimote_init_set_type()
828 if (!strcmp(name, "Nintendo RVL-CNT-01")) { in wiimote_init_set_type()
831 } else if (!strcmp(name, "Nintendo RVL-CNT-01-TR")) { in wiimote_init_set_type()
834 } else if (!strcmp(name, "Nintendo RVL-WBC-01")) { in wiimote_init_set_type()
837 } else if (!strcmp(name, "Nintendo RVL-CNT-01-UC")) { in wiimote_init_set_type()
854 hid_info(wdata->hdev, "cannot detect device; NAME: %s VID: %04x PID: %04x EXT: %04x\n", in wiimote_init_set_type()
857 hid_info(wdata->hdev, "detected device: %s\n", in wiimote_init_set_type()
866 bool ext; in wiimote_init_detect() local
871 spin_lock_irq(&wdata->state.lock); in wiimote_init_detect()
872 wdata->state.devtype = WIIMOTE_DEV_UNKNOWN; in wiimote_init_detect()
875 spin_unlock_irq(&wdata->state.lock); in wiimote_init_detect()
881 spin_lock_irq(&wdata->state.lock); in wiimote_init_detect()
882 ext = wdata->state.flags & WIIPROTO_FLAG_EXT_PLUGGED; in wiimote_init_detect()
883 spin_unlock_irq(&wdata->state.lock); in wiimote_init_detect()
885 if (!ext) in wiimote_init_detect()
896 spin_lock_irq(&wdata->state.lock); in wiimote_init_detect()
897 if (!(wdata->state.flags & WIIPROTO_FLAG_BUILTIN_MP) && in wiimote_init_detect()
898 !(wdata->state.flags & WIIPROTO_FLAG_NO_MP)) in wiimote_init_detect()
899 mod_timer(&wdata->timer, jiffies + HZ * 4); in wiimote_init_detect()
900 spin_unlock_irq(&wdata->state.lock); in wiimote_init_detect()
921 if (!wdata->state.mp) { in wiimote_init_poll_mp()
922 hid_info(wdata->hdev, "detected extension: Nintendo Wii Motion Plus\n"); in wiimote_init_poll_mp()
925 } else if (wdata->state.mp) { in wiimote_init_poll_mp()
929 mod_timer(&wdata->timer, jiffies + HZ * 4); in wiimote_init_poll_mp()
948 spin_lock_irq(&wdata->state.lock); in wiimote_init_check()
949 flags = wdata->state.flags; in wiimote_init_check()
950 spin_unlock_irq(&wdata->state.lock); in wiimote_init_check()
959 * - If MP is unplugged/replugged, read_mp_mapped() fails in wiimote_init_check()
960 * - If EXT is plugged, MP_PLUGGED will get set */ in wiimote_init_check()
961 if (wdata->state.exttype == WIIMOTE_EXT_NONE && in wiimote_init_check()
962 wdata->state.mp > 0 && (flags & WIIPROTO_FLAG_MP_USED)) { in wiimote_init_check()
966 spin_lock_irq(&wdata->state.lock); in wiimote_init_check()
967 ret = ret && !(wdata->state.flags & WIIPROTO_FLAG_EXT_ACTIVE); in wiimote_init_check()
968 ret = ret && !(wdata->state.flags & WIIPROTO_FLAG_MP_PLUGGED); in wiimote_init_check()
969 ret = ret && (wdata->state.flags & WIIPROTO_FLAG_MP_ACTIVE); in wiimote_init_check()
970 spin_unlock_irq(&wdata->state.lock); in wiimote_init_check()
973 hid_dbg(wdata->hdev, "state left: !EXT && MP\n"); in wiimote_init_check()
984 * - If MP is plugged/unplugged, our timer detects it in wiimote_init_check()
985 * - If EXT is unplugged/replugged, EXT_ACTIVE will become unset */ in wiimote_init_check()
987 wdata->state.exttype != WIIMOTE_EXT_NONE) { in wiimote_init_check()
989 ret = type == wdata->state.exttype; in wiimote_init_check()
991 spin_lock_irq(&wdata->state.lock); in wiimote_init_check()
992 ret = ret && !(wdata->state.flags & WIIPROTO_FLAG_MP_ACTIVE); in wiimote_init_check()
993 ret = ret && (wdata->state.flags & WIIPROTO_FLAG_EXT_ACTIVE); in wiimote_init_check()
994 spin_unlock_irq(&wdata->state.lock); in wiimote_init_check()
997 hid_dbg(wdata->hdev, "state left: EXT && !MP\n"); in wiimote_init_check()
1010 * - If MP is plugged/unplugged, our timer detects it in wiimote_init_check()
1011 * - If EXT is plugged, EXT_PLUGGED will be set */ in wiimote_init_check()
1013 wdata->state.exttype == WIIMOTE_EXT_NONE) { in wiimote_init_check()
1015 ret = type == wdata->state.exttype; in wiimote_init_check()
1017 spin_lock_irq(&wdata->state.lock); in wiimote_init_check()
1018 ret = ret && !(wdata->state.flags & WIIPROTO_FLAG_EXT_ACTIVE); in wiimote_init_check()
1019 ret = ret && !(wdata->state.flags & WIIPROTO_FLAG_MP_ACTIVE); in wiimote_init_check()
1020 ret = ret && !(wdata->state.flags & WIIPROTO_FLAG_EXT_PLUGGED); in wiimote_init_check()
1021 spin_unlock_irq(&wdata->state.lock); in wiimote_init_check()
1024 hid_dbg(wdata->hdev, "state left: !EXT && !MP\n"); in wiimote_init_check()
1032 /* The trickiest part is if both EXT and MP are active. We cannot read in wiimote_init_check()
1033 * the EXT ID, anymore, because MP is mapped over it. However, we use in wiimote_init_check()
1035 * - EXT_ACTIVE is unset whenever !MP_PLUGGED is sent in wiimote_init_check()
1036 * MP_PLUGGED might be re-sent again before we are scheduled, but in wiimote_init_check()
1040 if (wdata->state.exttype != WIIMOTE_EXT_NONE && in wiimote_init_check()
1041 wdata->state.mp > 0 && (flags & WIIPROTO_FLAG_MP_USED)) { in wiimote_init_check()
1047 spin_lock_irq(&wdata->state.lock); in wiimote_init_check()
1048 ret = ret && (wdata->state.flags & WIIPROTO_FLAG_EXT_PLUGGED); in wiimote_init_check()
1049 ret = ret && (wdata->state.flags & WIIPROTO_FLAG_EXT_ACTIVE); in wiimote_init_check()
1050 ret = ret && (wdata->state.flags & WIIPROTO_FLAG_MP_ACTIVE); in wiimote_init_check()
1051 spin_unlock_irq(&wdata->state.lock); in wiimote_init_check()
1054 hid_dbg(wdata->hdev, "state left: EXT && MP\n"); in wiimote_init_check()
1089 * If we receive an hotplug event and the device-check failed, we deinitialize
1090 * the extension ports, re-read all extension IDs and set the device into
1101 hid_dbg(wdata->hdev, "detect extensions..\n"); in wiimote_init_hotplug()
1105 spin_lock_irq(&wdata->state.lock); in wiimote_init_hotplug()
1108 flags = wdata->state.flags; in wiimote_init_hotplug()
1111 wdata->state.flags &= ~WIIPROTO_FLAG_EXT_ACTIVE; in wiimote_init_hotplug()
1112 wdata->state.flags &= ~WIIPROTO_FLAG_MP_ACTIVE; in wiimote_init_hotplug()
1114 spin_unlock_irq(&wdata->state.lock); in wiimote_init_hotplug()
1129 if (exttype != wdata->state.exttype) { in wiimote_init_hotplug()
1134 hid_info(wdata->hdev, "cannot detect extension; %6phC\n", in wiimote_init_hotplug()
1137 spin_lock_irq(&wdata->state.lock); in wiimote_init_hotplug()
1138 wdata->state.exttype = WIIMOTE_EXT_NONE; in wiimote_init_hotplug()
1139 spin_unlock_irq(&wdata->state.lock); in wiimote_init_hotplug()
1141 hid_info(wdata->hdev, "detected extension: %s\n", in wiimote_init_hotplug()
1150 if (!wdata->state.mp) { in wiimote_init_hotplug()
1151 hid_info(wdata->hdev, "detected extension: Nintendo Wii Motion Plus\n"); in wiimote_init_hotplug()
1154 } else if (wdata->state.mp) { in wiimote_init_hotplug()
1169 del_timer_sync(&wdata->timer); in wiimote_init_hotplug()
1174 mod_timer(&wdata->timer, jiffies + HZ * 4); in wiimote_init_hotplug()
1177 spin_lock_irq(&wdata->state.lock); in wiimote_init_hotplug()
1181 wdata->state.flags |= WIIPROTO_FLAG_MP_ACTIVE; in wiimote_init_hotplug()
1182 if (wdata->state.exttype == WIIMOTE_EXT_NONE) { in wiimote_init_hotplug()
1183 wdata->state.flags &= ~WIIPROTO_FLAG_EXT_PLUGGED; in wiimote_init_hotplug()
1184 wdata->state.flags &= ~WIIPROTO_FLAG_MP_PLUGGED; in wiimote_init_hotplug()
1186 wdata->state.flags &= ~WIIPROTO_FLAG_EXT_PLUGGED; in wiimote_init_hotplug()
1187 wdata->state.flags |= WIIPROTO_FLAG_MP_PLUGGED; in wiimote_init_hotplug()
1188 wdata->state.flags |= WIIPROTO_FLAG_EXT_ACTIVE; in wiimote_init_hotplug()
1190 } else if (wdata->state.exttype != WIIMOTE_EXT_NONE) { in wiimote_init_hotplug()
1191 wdata->state.flags |= WIIPROTO_FLAG_EXT_ACTIVE; in wiimote_init_hotplug()
1197 spin_unlock_irq(&wdata->state.lock); in wiimote_init_hotplug()
1199 hid_dbg(wdata->hdev, "detected extensions: MP: %d EXT: %d\n", in wiimote_init_hotplug()
1200 wdata->state.mp, wdata->state.exttype); in wiimote_init_hotplug()
1209 if (wdata->state.devtype == WIIMOTE_DEV_PENDING) { in wiimote_init_worker()
1218 kobject_uevent(&wdata->hdev->dev.kobj, KOBJ_CHANGE); in wiimote_init_worker()
1223 if (!(wdata->state.flags & WIIPROTO_FLAG_EXITING)) in __wiimote_schedule()
1224 schedule_work(&wdata->init_worker); in __wiimote_schedule()
1231 spin_lock_irqsave(&wdata->state.lock, flags); in wiimote_schedule()
1233 spin_unlock_irqrestore(&wdata->state.lock, flags); in wiimote_schedule()
1250 ops = wiimod_ext_table[wdata->state.exttype]; in handler_keys()
1251 if (ops->in_keys) { in handler_keys()
1252 ops->in_keys(wdata, payload); in handler_keys()
1256 mods = wiimote_devtype_mods[wdata->state.devtype]; in handler_keys()
1259 if (ops->in_keys) { in handler_keys()
1260 ops->in_keys(wdata, payload); in handler_keys()
1271 ops = wiimod_ext_table[wdata->state.exttype]; in handler_accel()
1272 if (ops->in_accel) { in handler_accel()
1273 ops->in_accel(wdata, payload); in handler_accel()
1277 mods = wiimote_devtype_mods[wdata->state.devtype]; in handler_accel()
1280 if (ops->in_accel) { in handler_accel()
1281 ops->in_accel(wdata, payload); in handler_accel()
1289 if (!ops->in_ext) in valid_ext_handler()
1291 if ((ops->flags & WIIMOD_FLAG_EXT8) && len < 8) in valid_ext_handler()
1293 if ((ops->flags & WIIMOD_FLAG_EXT16) && len < 16) in valid_ext_handler()
1318 if (wdata->state.flags & WIIPROTO_FLAG_MP_ACTIVE) { in handler_ext()
1324 if (!(wdata->state.flags & WIIPROTO_FLAG_MP_PLUGGED)) { in handler_ext()
1325 hid_dbg(wdata->hdev, "MP hotplug: 1\n"); in handler_ext()
1326 wdata->state.flags |= WIIPROTO_FLAG_MP_PLUGGED; in handler_ext()
1330 if (wdata->state.flags & WIIPROTO_FLAG_MP_PLUGGED) { in handler_ext()
1331 hid_dbg(wdata->hdev, "MP hotplug: 0\n"); in handler_ext()
1332 wdata->state.flags &= ~WIIPROTO_FLAG_MP_PLUGGED; in handler_ext()
1333 wdata->state.flags &= ~WIIPROTO_FLAG_EXT_ACTIVE; in handler_ext()
1338 /* detect MP data that is sent interleaved with EXT data */ in handler_ext()
1344 /* ignore EXT events if no extension is active */ in handler_ext()
1345 if (!(wdata->state.flags & WIIPROTO_FLAG_EXT_ACTIVE) && !is_mp) in handler_ext()
1349 ops = wiimod_ext_table[wdata->state.exttype]; in handler_ext()
1350 if (is_mp && ops->in_mp) { in handler_ext()
1351 ops->in_mp(wdata, payload); in handler_ext()
1354 ops->in_ext(wdata, payload); in handler_ext()
1360 if (is_mp && ops->in_mp) { in handler_ext()
1361 ops->in_mp(wdata, payload); in handler_ext()
1364 ops->in_ext(wdata, payload); in handler_ext()
1369 mods = wiimote_devtype_mods[wdata->state.devtype]; in handler_ext()
1372 if (is_mp && ops->in_mp) { in handler_ext()
1373 ops->in_mp(wdata, payload); in handler_ext()
1376 ops->in_ext(wdata, payload); in handler_ext()
1393 ops = wiimod_ext_table[wdata->state.exttype]; in handler_ir()
1394 if (ops->in_ir) { in handler_ir()
1395 ops->in_ir(wdata, payload, packed, id); in handler_ir()
1399 mods = wiimote_devtype_mods[wdata->state.devtype]; in handler_ir()
1402 if (ops->in_ir) { in handler_ir()
1403 ops->in_ir(wdata, payload, packed, id); in handler_ir()
1426 if (!(wdata->state.flags & WIIPROTO_FLAG_EXT_PLUGGED)) { in handler_status()
1427 hid_dbg(wdata->hdev, "EXT hotplug: 1\n"); in handler_status()
1428 wdata->state.flags |= WIIPROTO_FLAG_EXT_PLUGGED; in handler_status()
1432 if (wdata->state.flags & WIIPROTO_FLAG_EXT_PLUGGED) { in handler_status()
1433 hid_dbg(wdata->hdev, "EXT hotplug: 0\n"); in handler_status()
1434 wdata->state.flags &= ~WIIPROTO_FLAG_EXT_PLUGGED; in handler_status()
1435 wdata->state.flags &= ~WIIPROTO_FLAG_MP_PLUGGED; in handler_status()
1436 wdata->state.flags &= ~WIIPROTO_FLAG_EXT_ACTIVE; in handler_status()
1437 wdata->state.flags &= ~WIIPROTO_FLAG_MP_ACTIVE; in handler_status()
1442 wdata->state.cmd_battery = payload[5]; in handler_status()
1464 else if (size > wdata->state.cmd_read_size) in handler_data()
1465 size = wdata->state.cmd_read_size; in handler_data()
1467 wdata->state.cmd_read_size = size; in handler_data()
1468 if (wdata->state.cmd_read_buf) in handler_data()
1469 memcpy(wdata->state.cmd_read_buf, &payload[5], size); in handler_data()
1482 wdata->state.cmd_err = err; in handler_return()
1485 hid_warn(wdata->hdev, "Remote error %hhu on req %hhu\n", err, in handler_return()
1555 wdata->state.accel_split[0] = payload[2]; in handler_drm_SKAI1()
1556 wdata->state.accel_split[1] = (payload[0] >> 1) & (0x10 | 0x20); in handler_drm_SKAI1()
1557 wdata->state.accel_split[1] |= (payload[1] << 1) & (0x40 | 0x80); in handler_drm_SKAI1()
1569 wdata->state.accel_split[1] |= (payload[0] >> 5) & (0x01 | 0x02); in handler_drm_SKAI2()
1570 wdata->state.accel_split[1] |= (payload[1] >> 3) & (0x04 | 0x08); in handler_drm_SKAI2()
1574 buf[2] = wdata->state.accel_split[0]; in handler_drm_SKAI2()
1576 buf[4] = wdata->state.accel_split[1]; in handler_drm_SKAI2()
1626 return -EINVAL; in wiimote_hid_event()
1630 if (h->id == raw_data[0] && h->size < size) { in wiimote_hid_event()
1631 spin_lock_irqsave(&wdata->state.lock, flags); in wiimote_hid_event()
1632 h->func(wdata, &raw_data[1]); in wiimote_hid_event()
1633 spin_unlock_irqrestore(&wdata->state.lock, flags); in wiimote_hid_event()
1653 spin_lock_irqsave(&wdata->state.lock, flags); in wiimote_ext_show()
1654 type = wdata->state.exttype; in wiimote_ext_show()
1655 spin_unlock_irqrestore(&wdata->state.lock, flags); in wiimote_ext_show()
1687 return -EINVAL; in wiimote_ext_store()
1704 spin_lock_irqsave(&wdata->state.lock, flags); in wiimote_dev_show()
1705 type = wdata->state.devtype; in wiimote_dev_show()
1706 spin_unlock_irqrestore(&wdata->state.lock, flags); in wiimote_dev_show()
1737 wdata->hdev = hdev; in wiimote_create()
1740 spin_lock_init(&wdata->queue.lock); in wiimote_create()
1741 INIT_WORK(&wdata->queue.worker, wiimote_queue_worker); in wiimote_create()
1743 spin_lock_init(&wdata->state.lock); in wiimote_create()
1744 init_completion(&wdata->state.ready); in wiimote_create()
1745 mutex_init(&wdata->state.sync); in wiimote_create()
1746 wdata->state.drm = WIIPROTO_REQ_DRM_K; in wiimote_create()
1747 wdata->state.cmd_battery = 0xff; in wiimote_create()
1749 INIT_WORK(&wdata->init_worker, wiimote_init_worker); in wiimote_create()
1750 timer_setup(&wdata->timer, wiimote_init_timeout, 0); in wiimote_create()
1762 spin_lock_irqsave(&wdata->state.lock, flags); in wiimote_destroy()
1763 wdata->state.flags |= WIIPROTO_FLAG_EXITING; in wiimote_destroy()
1764 spin_unlock_irqrestore(&wdata->state.lock, flags); in wiimote_destroy()
1766 cancel_work_sync(&wdata->init_worker); in wiimote_destroy()
1767 del_timer_sync(&wdata->timer); in wiimote_destroy()
1769 device_remove_file(&wdata->hdev->dev, &dev_attr_devtype); in wiimote_destroy()
1770 device_remove_file(&wdata->hdev->dev, &dev_attr_extension); in wiimote_destroy()
1775 cancel_work_sync(&wdata->queue.worker); in wiimote_destroy()
1776 hid_hw_close(wdata->hdev); in wiimote_destroy()
1777 hid_hw_stop(wdata->hdev); in wiimote_destroy()
1788 hdev->quirks |= HID_QUIRK_NO_INIT_REPORTS; in wiimote_hid_probe()
1793 return -ENOMEM; in wiimote_hid_probe()
1814 ret = device_create_file(&hdev->dev, &dev_attr_extension); in wiimote_hid_probe()
1820 ret = device_create_file(&hdev->dev, &dev_attr_devtype); in wiimote_hid_probe()
1842 device_remove_file(&wdata->hdev->dev, &dev_attr_extension); in wiimote_hid_probe()
1848 input_free_device(wdata->ir); in wiimote_hid_probe()
1849 input_free_device(wdata->accel); in wiimote_hid_probe()
1872 MODULE_PARM_DESC(dpad_as_analog, "Use D-Pad as main analog input");