aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/hid
diff options
context:
space:
mode:
authorDavid Herrmann <dh.herrmann@googlemail.com>2011-11-17 08:12:06 -0500
committerJiri Kosina <jkosina@suse.cz>2011-11-22 17:09:34 -0500
commit0b6815d75d8bf214998455d94061a40f3b4a77f3 (patch)
treefd8e5bca1ed7a805546f204faad80e3b91fc72b6 /drivers/hid
parent479901ba1847902623cc348b1d09c7d8979a9683 (diff)
HID: wiimote: Add extension handler stubs
All supported extensions report data as 6 byte block. All DRMs with extension data provide at least 6 extension bytes. Hence a generic handler for all extension bytes is sufficient and can be called on all DRMs. The handler distinguishes the input and passes it to the right handler. Motion+ passes data interleaved so we can have Motion+ and a regular extension enabled simultaneously. Signed-off-by: David Herrmann <dh.herrmann@googlemail.com> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/hid')
-rw-r--r--drivers/hid/hid-wiimote-core.c6
-rw-r--r--drivers/hid/hid-wiimote-ext.c29
-rw-r--r--drivers/hid/hid-wiimote.h2
3 files changed, 37 insertions, 0 deletions
diff --git a/drivers/hid/hid-wiimote-core.c b/drivers/hid/hid-wiimote-core.c
index 2ca8bfd350ad..d8ed1ec58e9f 100644
--- a/drivers/hid/hid-wiimote-core.c
+++ b/drivers/hid/hid-wiimote-core.c
@@ -857,6 +857,7 @@ static void handler_drm_KA(struct wiimote_data *wdata, const __u8 *payload)
857static void handler_drm_KE(struct wiimote_data *wdata, const __u8 *payload) 857static void handler_drm_KE(struct wiimote_data *wdata, const __u8 *payload)
858{ 858{
859 handler_keys(wdata, payload); 859 handler_keys(wdata, payload);
860 wiiext_handle(wdata, &payload[2]);
860} 861}
861 862
862static void handler_drm_KAI(struct wiimote_data *wdata, const __u8 *payload) 863static void handler_drm_KAI(struct wiimote_data *wdata, const __u8 *payload)
@@ -873,6 +874,7 @@ static void handler_drm_KAI(struct wiimote_data *wdata, const __u8 *payload)
873static void handler_drm_KEE(struct wiimote_data *wdata, const __u8 *payload) 874static void handler_drm_KEE(struct wiimote_data *wdata, const __u8 *payload)
874{ 875{
875 handler_keys(wdata, payload); 876 handler_keys(wdata, payload);
877 wiiext_handle(wdata, &payload[2]);
876} 878}
877 879
878static void handler_drm_KIE(struct wiimote_data *wdata, const __u8 *payload) 880static void handler_drm_KIE(struct wiimote_data *wdata, const __u8 *payload)
@@ -883,12 +885,14 @@ static void handler_drm_KIE(struct wiimote_data *wdata, const __u8 *payload)
883 ir_to_input2(wdata, &payload[7], false); 885 ir_to_input2(wdata, &payload[7], false);
884 ir_to_input3(wdata, &payload[9], true); 886 ir_to_input3(wdata, &payload[9], true);
885 input_sync(wdata->ir); 887 input_sync(wdata->ir);
888 wiiext_handle(wdata, &payload[12]);
886} 889}
887 890
888static void handler_drm_KAE(struct wiimote_data *wdata, const __u8 *payload) 891static void handler_drm_KAE(struct wiimote_data *wdata, const __u8 *payload)
889{ 892{
890 handler_keys(wdata, payload); 893 handler_keys(wdata, payload);
891 handler_accel(wdata, payload); 894 handler_accel(wdata, payload);
895 wiiext_handle(wdata, &payload[5]);
892} 896}
893 897
894static void handler_drm_KAIE(struct wiimote_data *wdata, const __u8 *payload) 898static void handler_drm_KAIE(struct wiimote_data *wdata, const __u8 *payload)
@@ -900,10 +904,12 @@ static void handler_drm_KAIE(struct wiimote_data *wdata, const __u8 *payload)
900 ir_to_input2(wdata, &payload[10], false); 904 ir_to_input2(wdata, &payload[10], false);
901 ir_to_input3(wdata, &payload[12], true); 905 ir_to_input3(wdata, &payload[12], true);
902 input_sync(wdata->ir); 906 input_sync(wdata->ir);
907 wiiext_handle(wdata, &payload[15]);
903} 908}
904 909
905static void handler_drm_E(struct wiimote_data *wdata, const __u8 *payload) 910static void handler_drm_E(struct wiimote_data *wdata, const __u8 *payload)
906{ 911{
912 wiiext_handle(wdata, payload);
907} 913}
908 914
909static void handler_drm_SKAI1(struct wiimote_data *wdata, const __u8 *payload) 915static void handler_drm_SKAI1(struct wiimote_data *wdata, const __u8 *payload)
diff --git a/drivers/hid/hid-wiimote-ext.c b/drivers/hid/hid-wiimote-ext.c
index b9254015c58f..ecc7b7b9b171 100644
--- a/drivers/hid/hid-wiimote-ext.c
+++ b/drivers/hid/hid-wiimote-ext.c
@@ -204,6 +204,35 @@ bool wiiext_active(struct wiimote_data *wdata)
204 return wdata->ext->motionp || wdata->ext->ext_type; 204 return wdata->ext->motionp || wdata->ext->ext_type;
205} 205}
206 206
207static void handler_motionp(struct wiimote_ext *ext, const __u8 *payload)
208{
209}
210
211static void handler_nunchuck(struct wiimote_ext *ext, const __u8 *payload)
212{
213}
214
215static void handler_classic(struct wiimote_ext *ext, const __u8 *payload)
216{
217}
218
219/* call this with state.lock spinlock held */
220void wiiext_handle(struct wiimote_data *wdata, const __u8 *payload)
221{
222 struct wiimote_ext *ext = wdata->ext;
223
224 if (!ext)
225 return;
226
227 if (ext->motionp && (payload[5] & 0x02)) {
228 handler_motionp(ext, payload);
229 } else if (ext->ext_type == WIIEXT_NUNCHUCK) {
230 handler_nunchuck(ext, payload);
231 } else if (ext->ext_type == WIIEXT_CLASSIC) {
232 handler_classic(ext, payload);
233 }
234}
235
207static ssize_t wiiext_show(struct device *dev, struct device_attribute *attr, 236static ssize_t wiiext_show(struct device *dev, struct device_attribute *attr,
208 char *buf) 237 char *buf)
209{ 238{
diff --git a/drivers/hid/hid-wiimote.h b/drivers/hid/hid-wiimote.h
index abbfab8f60b7..1f3e53a3a148 100644
--- a/drivers/hid/hid-wiimote.h
+++ b/drivers/hid/hid-wiimote.h
@@ -125,6 +125,7 @@ extern int wiiext_init(struct wiimote_data *wdata);
125extern void wiiext_deinit(struct wiimote_data *wdata); 125extern void wiiext_deinit(struct wiimote_data *wdata);
126extern void wiiext_event(struct wiimote_data *wdata, bool plugged); 126extern void wiiext_event(struct wiimote_data *wdata, bool plugged);
127extern bool wiiext_active(struct wiimote_data *wdata); 127extern bool wiiext_active(struct wiimote_data *wdata);
128extern void wiiext_handle(struct wiimote_data *wdata, const __u8 *payload);
128 129
129#else 130#else
130 131
@@ -132,6 +133,7 @@ static inline int wiiext_init(void *u) { return 0; }
132static inline void wiiext_deinit(void *u) { } 133static inline void wiiext_deinit(void *u) { }
133static inline void wiiext_event(void *u, bool p) { } 134static inline void wiiext_event(void *u, bool p) { }
134static inline bool wiiext_active(void *u) { return false; } 135static inline bool wiiext_active(void *u) { return false; }
136static inline void wiiext_handle(void *u, const __u8 *p) { }
135 137
136#endif 138#endif
137 139