2 * Debug support for HID Nintendo Wiimote devices
3 * Copyright (c) 2011 David Herrmann
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)
13 #include <linux/debugfs.h>
14 #include <linux/module.h>
15 #include <linux/seq_file.h>
16 #include <linux/spinlock.h>
17 #include <linux/uaccess.h>
18 #include "hid-wiimote.h"
20 struct wiimote_debug
{
21 struct wiimote_data
*wdata
;
22 struct dentry
*eeprom
;
26 static ssize_t
wiidebug_eeprom_read(struct file
*f
, char __user
*u
, size_t s
,
29 struct wiimote_debug
*dbg
= f
->private_data
;
30 struct wiimote_data
*wdata
= dbg
->wdata
;
43 ret
= wiimote_cmd_acquire(wdata
);
47 spin_lock_irqsave(&wdata
->state
.lock
, flags
);
48 wdata
->state
.cmd_read_size
= s
;
49 wdata
->state
.cmd_read_buf
= buf
;
50 wiimote_cmd_set(wdata
, WIIPROTO_REQ_RMEM
, *off
& 0xffff);
51 wiiproto_req_reeprom(wdata
, *off
, s
);
52 spin_unlock_irqrestore(&wdata
->state
.lock
, flags
);
54 ret
= wiimote_cmd_wait(wdata
);
56 size
= wdata
->state
.cmd_read_size
;
58 spin_lock_irqsave(&wdata
->state
.lock
, flags
);
59 wdata
->state
.cmd_read_buf
= NULL
;
60 spin_unlock_irqrestore(&wdata
->state
.lock
, flags
);
62 wiimote_cmd_release(wdata
);
69 if (copy_to_user(u
, buf
, size
))
78 static const struct file_operations wiidebug_eeprom_fops
= {
81 .read
= wiidebug_eeprom_read
,
82 .llseek
= generic_file_llseek
,
85 static const char *wiidebug_drmmap
[] = {
86 [WIIPROTO_REQ_NULL
] = "NULL",
87 [WIIPROTO_REQ_DRM_K
] = "K",
88 [WIIPROTO_REQ_DRM_KA
] = "KA",
89 [WIIPROTO_REQ_DRM_KE
] = "KE",
90 [WIIPROTO_REQ_DRM_KAI
] = "KAI",
91 [WIIPROTO_REQ_DRM_KEE
] = "KEE",
92 [WIIPROTO_REQ_DRM_KAE
] = "KAE",
93 [WIIPROTO_REQ_DRM_KIE
] = "KIE",
94 [WIIPROTO_REQ_DRM_KAIE
] = "KAIE",
95 [WIIPROTO_REQ_DRM_E
] = "E",
96 [WIIPROTO_REQ_DRM_SKAI1
] = "SKAI1",
97 [WIIPROTO_REQ_DRM_SKAI2
] = "SKAI2",
98 [WIIPROTO_REQ_MAX
] = NULL
101 static int wiidebug_drm_show(struct seq_file
*f
, void *p
)
103 struct wiimote_debug
*dbg
= f
->private;
104 const char *str
= NULL
;
108 spin_lock_irqsave(&dbg
->wdata
->state
.lock
, flags
);
109 drm
= dbg
->wdata
->state
.drm
;
110 spin_unlock_irqrestore(&dbg
->wdata
->state
.lock
, flags
);
112 if (drm
< WIIPROTO_REQ_MAX
)
113 str
= wiidebug_drmmap
[drm
];
117 seq_printf(f
, "%s\n", str
);
122 static int wiidebug_drm_open(struct inode
*i
, struct file
*f
)
124 return single_open(f
, wiidebug_drm_show
, i
->i_private
);
127 static ssize_t
wiidebug_drm_write(struct file
*f
, const char __user
*u
,
128 size_t s
, loff_t
*off
)
130 struct wiimote_debug
*dbg
= f
->private_data
;
139 len
= min((size_t) 15, s
);
140 if (copy_from_user(buf
, u
, len
))
145 for (i
= 0; i
< WIIPROTO_REQ_MAX
; ++i
) {
146 if (!wiidebug_drmmap
[i
])
148 if (!strcasecmp(buf
, wiidebug_drmmap
[i
]))
152 if (i
== WIIPROTO_REQ_MAX
)
153 i
= simple_strtoul(buf
, NULL
, 10);
155 spin_lock_irqsave(&dbg
->wdata
->state
.lock
, flags
);
156 wiiproto_req_drm(dbg
->wdata
, (__u8
) i
);
157 spin_unlock_irqrestore(&dbg
->wdata
->state
.lock
, flags
);
162 static const struct file_operations wiidebug_drm_fops
= {
163 .owner
= THIS_MODULE
,
164 .open
= wiidebug_drm_open
,
167 .write
= wiidebug_drm_write
,
168 .release
= single_release
,
171 int wiidebug_init(struct wiimote_data
*wdata
)
173 struct wiimote_debug
*dbg
;
177 dbg
= kzalloc(sizeof(*dbg
), GFP_KERNEL
);
183 dbg
->eeprom
= debugfs_create_file("eeprom", S_IRUSR
,
184 dbg
->wdata
->hdev
->debug_dir
, dbg
, &wiidebug_eeprom_fops
);
188 dbg
->drm
= debugfs_create_file("drm", S_IRUSR
,
189 dbg
->wdata
->hdev
->debug_dir
, dbg
, &wiidebug_drm_fops
);
193 spin_lock_irqsave(&wdata
->state
.lock
, flags
);
195 spin_unlock_irqrestore(&wdata
->state
.lock
, flags
);
200 debugfs_remove(dbg
->eeprom
);
206 void wiidebug_deinit(struct wiimote_data
*wdata
)
208 struct wiimote_debug
*dbg
= wdata
->debug
;
214 spin_lock_irqsave(&wdata
->state
.lock
, flags
);
216 spin_unlock_irqrestore(&wdata
->state
.lock
, flags
);
218 debugfs_remove(dbg
->drm
);
219 debugfs_remove(dbg
->eeprom
);