irmce.c revision 1.8 1 1.8 thorpej /* $NetBSD: irmce.c,v 1.8 2021/08/07 16:19:16 thorpej Exp $ */
2 1.1 jmcneill
3 1.1 jmcneill /*-
4 1.1 jmcneill * Copyright (c) 2011 Jared D. McNeill <jmcneill (at) invisible.ca>
5 1.1 jmcneill * All rights reserved.
6 1.1 jmcneill *
7 1.1 jmcneill * Redistribution and use in source and binary forms, with or without
8 1.1 jmcneill * modification, are permitted provided that the following conditions
9 1.1 jmcneill * are met:
10 1.1 jmcneill * 1. Redistributions of source code must retain the above copyright
11 1.1 jmcneill * notice, this list of conditions and the following disclaimer.
12 1.1 jmcneill * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 jmcneill * notice, this list of conditions and the following disclaimer in the
14 1.1 jmcneill * documentation and/or other materials provided with the distribution.
15 1.1 jmcneill *
16 1.1 jmcneill * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS''
17 1.1 jmcneill * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
18 1.1 jmcneill * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19 1.1 jmcneill * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
20 1.1 jmcneill * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21 1.1 jmcneill * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22 1.1 jmcneill * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23 1.1 jmcneill * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24 1.1 jmcneill * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25 1.1 jmcneill * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26 1.1 jmcneill * POSSIBILITY OF SUCH DAMAGE.
27 1.1 jmcneill */
28 1.1 jmcneill
29 1.1 jmcneill /*
30 1.1 jmcneill * IR receiver/transceiver for Windows Media Center
31 1.1 jmcneill */
32 1.1 jmcneill
33 1.1 jmcneill #include <sys/cdefs.h>
34 1.8 thorpej __KERNEL_RCSID(0, "$NetBSD: irmce.c,v 1.8 2021/08/07 16:19:16 thorpej Exp $");
35 1.1 jmcneill
36 1.1 jmcneill #include <sys/types.h>
37 1.1 jmcneill #include <sys/param.h>
38 1.1 jmcneill #include <sys/systm.h>
39 1.1 jmcneill #include <sys/device.h>
40 1.1 jmcneill #include <sys/conf.h>
41 1.1 jmcneill #include <sys/bus.h>
42 1.1 jmcneill #include <sys/select.h>
43 1.1 jmcneill #include <sys/module.h>
44 1.1 jmcneill
45 1.1 jmcneill #include <dev/usb/usb.h>
46 1.1 jmcneill #include <dev/usb/usbdi.h>
47 1.1 jmcneill #include <dev/usb/usbdi_util.h>
48 1.1 jmcneill #include <dev/usb/usbdevs.h>
49 1.1 jmcneill
50 1.1 jmcneill #include <dev/ir/ir.h>
51 1.1 jmcneill #include <dev/ir/cirio.h>
52 1.1 jmcneill #include <dev/ir/cirvar.h>
53 1.1 jmcneill
54 1.1 jmcneill enum irmce_state {
55 1.1 jmcneill IRMCE_STATE_HEADER,
56 1.1 jmcneill IRMCE_STATE_IRDATA,
57 1.1 jmcneill IRMCE_STATE_CMDHEADER,
58 1.1 jmcneill IRMCE_STATE_CMDDATA,
59 1.1 jmcneill };
60 1.1 jmcneill
61 1.1 jmcneill struct irmce_softc {
62 1.1 jmcneill device_t sc_dev;
63 1.1 jmcneill device_t sc_cirdev;
64 1.1 jmcneill
65 1.2 skrll struct usbd_device * sc_udev;
66 1.2 skrll struct usbd_interface * sc_iface;
67 1.1 jmcneill
68 1.1 jmcneill int sc_bulkin_ep;
69 1.1 jmcneill uint16_t sc_bulkin_maxpktsize;
70 1.2 skrll struct usbd_pipe * sc_bulkin_pipe;
71 1.2 skrll struct usbd_xfer * sc_bulkin_xfer;
72 1.1 jmcneill uint8_t * sc_bulkin_buffer;
73 1.1 jmcneill
74 1.1 jmcneill int sc_bulkout_ep;
75 1.1 jmcneill uint16_t sc_bulkout_maxpktsize;
76 1.2 skrll struct usbd_pipe * sc_bulkout_pipe;
77 1.2 skrll struct usbd_xfer * sc_bulkout_xfer;
78 1.1 jmcneill uint8_t * sc_bulkout_buffer;
79 1.1 jmcneill
80 1.1 jmcneill bool sc_raw;
81 1.1 jmcneill
82 1.1 jmcneill uint8_t sc_ir_buf[16];
83 1.1 jmcneill size_t sc_ir_bufused;
84 1.1 jmcneill size_t sc_ir_resid;
85 1.1 jmcneill enum irmce_state sc_ir_state;
86 1.1 jmcneill uint8_t sc_ir_header;
87 1.1 jmcneill
88 1.1 jmcneill bool sc_rc6_hb[256];
89 1.1 jmcneill size_t sc_rc6_nhb;
90 1.1 jmcneill };
91 1.1 jmcneill
92 1.1 jmcneill static int irmce_match(device_t, cfdata_t, void *);
93 1.1 jmcneill static void irmce_attach(device_t, device_t, void *);
94 1.1 jmcneill static int irmce_detach(device_t, int);
95 1.1 jmcneill static void irmce_childdet(device_t, device_t);
96 1.1 jmcneill static int irmce_activate(device_t, enum devact);
97 1.1 jmcneill static int irmce_rescan(device_t, const char *, const int *);
98 1.1 jmcneill
99 1.1 jmcneill static int irmce_print(void *, const char *);
100 1.1 jmcneill
101 1.1 jmcneill static int irmce_reset(struct irmce_softc *);
102 1.1 jmcneill
103 1.1 jmcneill static int irmce_open(void *, int, int, struct proc *);
104 1.1 jmcneill static int irmce_close(void *, int, int, struct proc *);
105 1.1 jmcneill static int irmce_read(void *, struct uio *, int);
106 1.1 jmcneill static int irmce_write(void *, struct uio *, int);
107 1.1 jmcneill static int irmce_setparams(void *, struct cir_params *);
108 1.1 jmcneill
109 1.1 jmcneill static const struct cir_methods irmce_cir_methods = {
110 1.1 jmcneill .im_open = irmce_open,
111 1.1 jmcneill .im_close = irmce_close,
112 1.1 jmcneill .im_read = irmce_read,
113 1.1 jmcneill .im_write = irmce_write,
114 1.1 jmcneill .im_setparams = irmce_setparams,
115 1.1 jmcneill };
116 1.1 jmcneill
117 1.1 jmcneill static const struct {
118 1.1 jmcneill uint16_t vendor;
119 1.1 jmcneill uint16_t product;
120 1.1 jmcneill } irmce_devices[] = {
121 1.1 jmcneill { USB_VENDOR_SMK, USB_PRODUCT_SMK_MCE_IR },
122 1.1 jmcneill };
123 1.1 jmcneill
124 1.1 jmcneill CFATTACH_DECL2_NEW(irmce, sizeof(struct irmce_softc),
125 1.1 jmcneill irmce_match, irmce_attach, irmce_detach, irmce_activate,
126 1.1 jmcneill irmce_rescan, irmce_childdet);
127 1.1 jmcneill
128 1.1 jmcneill static int
129 1.1 jmcneill irmce_match(device_t parent, cfdata_t match, void *opaque)
130 1.1 jmcneill {
131 1.1 jmcneill struct usbif_attach_arg *uiaa = opaque;
132 1.1 jmcneill unsigned int i;
133 1.1 jmcneill
134 1.1 jmcneill for (i = 0; i < __arraycount(irmce_devices); i++) {
135 1.2 skrll if (irmce_devices[i].vendor == uiaa->uiaa_vendor &&
136 1.2 skrll irmce_devices[i].product == uiaa->uiaa_product)
137 1.1 jmcneill return UMATCH_VENDOR_PRODUCT;
138 1.1 jmcneill }
139 1.1 jmcneill
140 1.1 jmcneill return UMATCH_NONE;
141 1.1 jmcneill }
142 1.1 jmcneill
143 1.1 jmcneill static void
144 1.1 jmcneill irmce_attach(device_t parent, device_t self, void *opaque)
145 1.1 jmcneill {
146 1.1 jmcneill struct irmce_softc *sc = device_private(self);
147 1.1 jmcneill struct usbif_attach_arg *uiaa = opaque;
148 1.1 jmcneill usb_endpoint_descriptor_t *ed;
149 1.1 jmcneill char *devinfop;
150 1.1 jmcneill unsigned int i;
151 1.1 jmcneill uint8_t nep;
152 1.1 jmcneill
153 1.3 maya if (!pmf_device_register(self, NULL, NULL))
154 1.3 maya aprint_error_dev(self, "couldn't establish power handler\n");
155 1.1 jmcneill
156 1.1 jmcneill aprint_naive("\n");
157 1.1 jmcneill
158 1.2 skrll devinfop = usbd_devinfo_alloc(uiaa->uiaa_device, 0);
159 1.1 jmcneill aprint_normal(": %s\n", devinfop);
160 1.1 jmcneill usbd_devinfo_free(devinfop);
161 1.1 jmcneill
162 1.1 jmcneill sc->sc_dev = self;
163 1.2 skrll sc->sc_udev = uiaa->uiaa_device;
164 1.2 skrll sc->sc_iface = uiaa->uiaa_iface;
165 1.1 jmcneill
166 1.1 jmcneill nep = 0;
167 1.1 jmcneill usbd_endpoint_count(sc->sc_iface, &nep);
168 1.1 jmcneill sc->sc_bulkin_ep = sc->sc_bulkout_ep = -1;
169 1.1 jmcneill for (i = 0; i < nep; i++) {
170 1.1 jmcneill int dir, type;
171 1.1 jmcneill
172 1.1 jmcneill ed = usbd_interface2endpoint_descriptor(sc->sc_iface, i);
173 1.1 jmcneill if (ed == NULL) {
174 1.1 jmcneill aprint_error_dev(self,
175 1.1 jmcneill "couldn't read endpoint descriptor %d\n", i);
176 1.1 jmcneill continue;
177 1.1 jmcneill }
178 1.1 jmcneill
179 1.1 jmcneill dir = UE_GET_DIR(ed->bEndpointAddress);
180 1.1 jmcneill type = UE_GET_XFERTYPE(ed->bmAttributes);
181 1.1 jmcneill
182 1.1 jmcneill if (type != UE_BULK)
183 1.1 jmcneill continue;
184 1.1 jmcneill
185 1.1 jmcneill if (dir == UE_DIR_IN && sc->sc_bulkin_ep == -1) {
186 1.1 jmcneill sc->sc_bulkin_ep = ed->bEndpointAddress;
187 1.1 jmcneill sc->sc_bulkin_maxpktsize =
188 1.1 jmcneill UE_GET_SIZE(UGETW(ed->wMaxPacketSize)) *
189 1.1 jmcneill (UE_GET_TRANS(UGETW(ed->wMaxPacketSize)) + 1);
190 1.1 jmcneill }
191 1.1 jmcneill if (dir == UE_DIR_OUT && sc->sc_bulkout_ep == -1) {
192 1.1 jmcneill sc->sc_bulkout_ep = ed->bEndpointAddress;
193 1.1 jmcneill sc->sc_bulkout_maxpktsize =
194 1.1 jmcneill UE_GET_SIZE(UGETW(ed->wMaxPacketSize)) *
195 1.1 jmcneill (UE_GET_TRANS(UGETW(ed->wMaxPacketSize)) + 1);
196 1.1 jmcneill }
197 1.1 jmcneill }
198 1.1 jmcneill
199 1.6 christos aprint_debug_dev(self, "in 0x%02x/%d out 0x%02x/%d\n",
200 1.1 jmcneill sc->sc_bulkin_ep, sc->sc_bulkin_maxpktsize,
201 1.1 jmcneill sc->sc_bulkout_ep, sc->sc_bulkout_maxpktsize);
202 1.1 jmcneill
203 1.1 jmcneill if (sc->sc_bulkin_maxpktsize < 16 || sc->sc_bulkout_maxpktsize < 16) {
204 1.1 jmcneill aprint_error_dev(self, "bad maxpktsize\n");
205 1.1 jmcneill return;
206 1.1 jmcneill }
207 1.2 skrll usbd_status err;
208 1.1 jmcneill
209 1.2 skrll err = usbd_open_pipe(sc->sc_iface, sc->sc_bulkin_ep,
210 1.2 skrll USBD_EXCLUSIVE_USE, &sc->sc_bulkin_pipe);
211 1.2 skrll if (err) {
212 1.2 skrll aprint_error_dev(sc->sc_dev,
213 1.2 skrll "couldn't open bulk-in pipe: %s\n", usbd_errstr(err));
214 1.1 jmcneill return;
215 1.1 jmcneill }
216 1.2 skrll err = usbd_open_pipe(sc->sc_iface, sc->sc_bulkout_ep,
217 1.2 skrll USBD_EXCLUSIVE_USE, &sc->sc_bulkout_pipe);
218 1.2 skrll if (err) {
219 1.2 skrll aprint_error_dev(sc->sc_dev,
220 1.2 skrll "couldn't open bulk-out pipe: %s\n", usbd_errstr(err));
221 1.2 skrll usbd_close_pipe(sc->sc_bulkin_pipe);
222 1.2 skrll sc->sc_bulkin_pipe = NULL;
223 1.1 jmcneill return;
224 1.1 jmcneill }
225 1.1 jmcneill
226 1.2 skrll int error;
227 1.2 skrll error = usbd_create_xfer(sc->sc_bulkin_pipe, sc->sc_bulkin_maxpktsize,
228 1.4 skrll 0, 0, &sc->sc_bulkin_xfer);
229 1.2 skrll if (error) {
230 1.2 skrll goto fail;
231 1.2 skrll }
232 1.2 skrll
233 1.2 skrll error = usbd_create_xfer(sc->sc_bulkout_pipe,
234 1.2 skrll sc->sc_bulkout_maxpktsize, USBD_FORCE_SHORT_XFER, 0,
235 1.2 skrll &sc->sc_bulkout_xfer);
236 1.2 skrll if (error) {
237 1.2 skrll goto fail;
238 1.2 skrll }
239 1.2 skrll sc->sc_bulkin_buffer = usbd_get_buffer(sc->sc_bulkin_xfer);
240 1.2 skrll sc->sc_bulkout_buffer = usbd_get_buffer(sc->sc_bulkout_xfer);
241 1.2 skrll
242 1.1 jmcneill irmce_rescan(self, NULL, NULL);
243 1.2 skrll return;
244 1.2 skrll
245 1.2 skrll fail:
246 1.2 skrll if (sc->sc_bulkin_xfer)
247 1.2 skrll usbd_destroy_xfer(sc->sc_bulkin_xfer);
248 1.2 skrll if (sc->sc_bulkout_xfer)
249 1.2 skrll usbd_destroy_xfer(sc->sc_bulkout_xfer);
250 1.1 jmcneill }
251 1.1 jmcneill
252 1.1 jmcneill static int
253 1.1 jmcneill irmce_detach(device_t self, int flags)
254 1.1 jmcneill {
255 1.1 jmcneill struct irmce_softc *sc = device_private(self);
256 1.1 jmcneill int error;
257 1.1 jmcneill
258 1.1 jmcneill if (sc->sc_cirdev) {
259 1.1 jmcneill error = config_detach(sc->sc_cirdev, flags);
260 1.1 jmcneill if (error)
261 1.1 jmcneill return error;
262 1.1 jmcneill }
263 1.1 jmcneill
264 1.2 skrll if (sc->sc_bulkin_pipe) {
265 1.2 skrll usbd_abort_pipe(sc->sc_bulkin_pipe);
266 1.2 skrll }
267 1.2 skrll if (sc->sc_bulkout_pipe) {
268 1.2 skrll usbd_abort_pipe(sc->sc_bulkout_pipe);
269 1.2 skrll }
270 1.1 jmcneill if (sc->sc_bulkin_xfer) {
271 1.2 skrll usbd_destroy_xfer(sc->sc_bulkin_xfer);
272 1.1 jmcneill sc->sc_bulkin_buffer = NULL;
273 1.1 jmcneill sc->sc_bulkin_xfer = NULL;
274 1.1 jmcneill }
275 1.1 jmcneill if (sc->sc_bulkout_xfer) {
276 1.2 skrll usbd_destroy_xfer(sc->sc_bulkout_xfer);
277 1.1 jmcneill sc->sc_bulkout_buffer = NULL;
278 1.1 jmcneill sc->sc_bulkout_xfer = NULL;
279 1.1 jmcneill }
280 1.2 skrll if (sc->sc_bulkin_pipe) {
281 1.2 skrll usbd_close_pipe(sc->sc_bulkin_pipe);
282 1.2 skrll sc->sc_bulkin_pipe = NULL;
283 1.2 skrll }
284 1.2 skrll if (sc->sc_bulkout_pipe) {
285 1.2 skrll usbd_close_pipe(sc->sc_bulkout_pipe);
286 1.2 skrll sc->sc_bulkout_pipe = NULL;
287 1.2 skrll }
288 1.1 jmcneill
289 1.1 jmcneill pmf_device_deregister(self);
290 1.1 jmcneill
291 1.1 jmcneill return 0;
292 1.1 jmcneill }
293 1.1 jmcneill
294 1.1 jmcneill static int
295 1.1 jmcneill irmce_activate(device_t self, enum devact act)
296 1.1 jmcneill {
297 1.1 jmcneill return 0;
298 1.1 jmcneill }
299 1.1 jmcneill
300 1.1 jmcneill static int
301 1.1 jmcneill irmce_rescan(device_t self, const char *ifattr, const int *locators)
302 1.1 jmcneill {
303 1.1 jmcneill struct irmce_softc *sc = device_private(self);
304 1.1 jmcneill struct ir_attach_args iaa;
305 1.1 jmcneill
306 1.1 jmcneill if (sc->sc_cirdev == NULL) {
307 1.1 jmcneill iaa.ia_type = IR_TYPE_CIR;
308 1.1 jmcneill iaa.ia_methods = &irmce_cir_methods;
309 1.1 jmcneill iaa.ia_handle = sc;
310 1.7 thorpej sc->sc_cirdev =
311 1.8 thorpej config_found(self, &iaa, irmce_print, CFARGS_NONE);
312 1.1 jmcneill }
313 1.1 jmcneill
314 1.1 jmcneill return 0;
315 1.1 jmcneill }
316 1.1 jmcneill
317 1.1 jmcneill static int
318 1.1 jmcneill irmce_print(void *priv, const char *pnp)
319 1.1 jmcneill {
320 1.1 jmcneill if (pnp)
321 1.1 jmcneill aprint_normal("cir at %s", pnp);
322 1.1 jmcneill
323 1.1 jmcneill return UNCONF;
324 1.1 jmcneill }
325 1.1 jmcneill
326 1.1 jmcneill static void
327 1.1 jmcneill irmce_childdet(device_t self, device_t child)
328 1.1 jmcneill {
329 1.1 jmcneill struct irmce_softc *sc = device_private(self);
330 1.1 jmcneill
331 1.1 jmcneill if (sc->sc_cirdev == child)
332 1.1 jmcneill sc->sc_cirdev = NULL;
333 1.1 jmcneill }
334 1.1 jmcneill
335 1.1 jmcneill static int
336 1.1 jmcneill irmce_reset(struct irmce_softc *sc)
337 1.1 jmcneill {
338 1.1 jmcneill static const uint8_t reset_cmd[] = { 0x00, 0xff, 0xaa };
339 1.1 jmcneill uint8_t *p = sc->sc_bulkout_buffer;
340 1.1 jmcneill usbd_status err;
341 1.1 jmcneill uint32_t wlen;
342 1.1 jmcneill unsigned int n;
343 1.1 jmcneill
344 1.1 jmcneill for (n = 0; n < __arraycount(reset_cmd); n++)
345 1.1 jmcneill *p++ = reset_cmd[n];
346 1.1 jmcneill
347 1.1 jmcneill wlen = sizeof(reset_cmd);
348 1.2 skrll err = usbd_bulk_transfer(sc->sc_bulkout_xfer, sc->sc_bulkout_pipe,
349 1.2 skrll USBD_FORCE_SHORT_XFER, USBD_DEFAULT_TIMEOUT,
350 1.2 skrll sc->sc_bulkout_buffer, &wlen);
351 1.1 jmcneill if (err != USBD_NORMAL_COMPLETION) {
352 1.1 jmcneill if (err == USBD_INTERRUPTED)
353 1.1 jmcneill return EINTR;
354 1.1 jmcneill else if (err == USBD_TIMEOUT)
355 1.1 jmcneill return ETIMEDOUT;
356 1.1 jmcneill else
357 1.1 jmcneill return EIO;
358 1.1 jmcneill }
359 1.1 jmcneill
360 1.1 jmcneill return 0;
361 1.1 jmcneill }
362 1.1 jmcneill
363 1.1 jmcneill static int
364 1.1 jmcneill irmce_open(void *priv, int flag, int mode, struct proc *p)
365 1.1 jmcneill {
366 1.1 jmcneill struct irmce_softc *sc = priv;
367 1.2 skrll int err = irmce_reset(sc);
368 1.1 jmcneill if (err) {
369 1.1 jmcneill aprint_error_dev(sc->sc_dev,
370 1.1 jmcneill "couldn't reset device: %s\n", usbd_errstr(err));
371 1.1 jmcneill }
372 1.1 jmcneill sc->sc_ir_state = IRMCE_STATE_HEADER;
373 1.1 jmcneill sc->sc_rc6_nhb = 0;
374 1.1 jmcneill
375 1.1 jmcneill return 0;
376 1.1 jmcneill }
377 1.1 jmcneill
378 1.1 jmcneill static int
379 1.1 jmcneill irmce_close(void *priv, int flag, int mode, struct proc *p)
380 1.1 jmcneill {
381 1.1 jmcneill struct irmce_softc *sc = priv;
382 1.1 jmcneill
383 1.1 jmcneill if (sc->sc_bulkin_pipe) {
384 1.1 jmcneill usbd_abort_pipe(sc->sc_bulkin_pipe);
385 1.1 jmcneill }
386 1.1 jmcneill if (sc->sc_bulkout_pipe) {
387 1.1 jmcneill usbd_abort_pipe(sc->sc_bulkout_pipe);
388 1.1 jmcneill }
389 1.1 jmcneill
390 1.1 jmcneill return 0;
391 1.1 jmcneill }
392 1.1 jmcneill
393 1.1 jmcneill static int
394 1.1 jmcneill irmce_rc6_decode(struct irmce_softc *sc, uint8_t *buf, size_t buflen,
395 1.1 jmcneill struct uio *uio)
396 1.1 jmcneill {
397 1.1 jmcneill bool *hb = &sc->sc_rc6_hb[0];
398 1.1 jmcneill unsigned int n;
399 1.1 jmcneill int state, pulse;
400 1.1 jmcneill uint32_t data;
401 1.1 jmcneill uint8_t mode;
402 1.1 jmcneill bool idle = false;
403 1.1 jmcneill
404 1.1 jmcneill for (n = 0; n < buflen; n++) {
405 1.1 jmcneill state = (buf[n] & 0x80) ? 1 : 0;
406 1.1 jmcneill pulse = (buf[n] & 0x7f) * 50;
407 1.1 jmcneill
408 1.1 jmcneill if (pulse >= 300 && pulse <= 600) {
409 1.1 jmcneill hb[sc->sc_rc6_nhb++] = state;
410 1.1 jmcneill } else if (pulse >= 680 && pulse <= 1080) {
411 1.1 jmcneill hb[sc->sc_rc6_nhb++] = state;
412 1.1 jmcneill hb[sc->sc_rc6_nhb++] = state;
413 1.1 jmcneill } else if (pulse >= 1150 && pulse <= 1450) {
414 1.1 jmcneill hb[sc->sc_rc6_nhb++] = state;
415 1.1 jmcneill hb[sc->sc_rc6_nhb++] = state;
416 1.1 jmcneill hb[sc->sc_rc6_nhb++] = state;
417 1.1 jmcneill } else if (pulse >= 2400 && pulse <= 2800) {
418 1.1 jmcneill hb[sc->sc_rc6_nhb++] = state;
419 1.1 jmcneill hb[sc->sc_rc6_nhb++] = state;
420 1.1 jmcneill hb[sc->sc_rc6_nhb++] = state;
421 1.1 jmcneill hb[sc->sc_rc6_nhb++] = state;
422 1.1 jmcneill hb[sc->sc_rc6_nhb++] = state;
423 1.1 jmcneill hb[sc->sc_rc6_nhb++] = state;
424 1.1 jmcneill } else if (pulse > 3000) {
425 1.1 jmcneill if (sc->sc_rc6_nhb & 1)
426 1.1 jmcneill hb[sc->sc_rc6_nhb++] = state;
427 1.1 jmcneill idle = true;
428 1.1 jmcneill break;
429 1.1 jmcneill } else {
430 1.1 jmcneill aprint_debug_dev(sc->sc_dev,
431 1.1 jmcneill "error parsing RC6 stream (pulse=%d)\n", pulse);
432 1.1 jmcneill return EIO;
433 1.1 jmcneill }
434 1.1 jmcneill }
435 1.1 jmcneill
436 1.1 jmcneill if (!idle)
437 1.1 jmcneill return 0;
438 1.1 jmcneill
439 1.1 jmcneill if (sc->sc_rc6_nhb < 20) {
440 1.1 jmcneill aprint_debug_dev(sc->sc_dev, "not enough RC6 data\n");
441 1.1 jmcneill return EIO;
442 1.1 jmcneill }
443 1.1 jmcneill
444 1.1 jmcneill /* RC6 leader 11111100 */
445 1.1 jmcneill if (!hb[0] || !hb[1] || !hb[2] || !hb[3] || !hb[4] || !hb[5] ||
446 1.1 jmcneill hb[6] || hb[7]) {
447 1.1 jmcneill aprint_debug_dev(sc->sc_dev, "bad RC6 leader\n");
448 1.1 jmcneill return EIO;
449 1.1 jmcneill }
450 1.1 jmcneill
451 1.1 jmcneill /* start bit 10 */
452 1.1 jmcneill if (!hb[8] || hb[9]) {
453 1.1 jmcneill aprint_debug_dev(sc->sc_dev, "missing RC6 start bit\n");
454 1.1 jmcneill return EIO;
455 1.1 jmcneill }
456 1.1 jmcneill
457 1.1 jmcneill /* mode info */
458 1.1 jmcneill mode = 0x00;
459 1.1 jmcneill for (n = 10; n < 15; n += 2) {
460 1.1 jmcneill if (hb[n] && !hb[n + 1])
461 1.1 jmcneill mode = (mode << 1) | 1;
462 1.1 jmcneill else if (!hb[n] && hb[n + 1])
463 1.1 jmcneill mode = (mode << 1) | 0;
464 1.1 jmcneill else {
465 1.1 jmcneill aprint_debug_dev(sc->sc_dev, "bad RC6 mode bits\n");
466 1.1 jmcneill return EIO;
467 1.1 jmcneill }
468 1.1 jmcneill }
469 1.1 jmcneill
470 1.1 jmcneill data = 0;
471 1.1 jmcneill for (n = 20; n < sc->sc_rc6_nhb; n += 2) {
472 1.1 jmcneill if (hb[n] && !hb[n + 1])
473 1.1 jmcneill data = (data << 1) | 1;
474 1.1 jmcneill else if (!hb[n] && hb[n + 1])
475 1.1 jmcneill data = (data << 1) | 0;
476 1.1 jmcneill else {
477 1.1 jmcneill aprint_debug_dev(sc->sc_dev, "bad RC6 data bits\n");
478 1.1 jmcneill return EIO;
479 1.1 jmcneill }
480 1.1 jmcneill }
481 1.1 jmcneill
482 1.1 jmcneill sc->sc_rc6_nhb = 0;
483 1.1 jmcneill
484 1.1 jmcneill return uiomove(&data, sizeof(data), uio);
485 1.1 jmcneill }
486 1.1 jmcneill
487 1.1 jmcneill static int
488 1.1 jmcneill irmce_process(struct irmce_softc *sc, uint8_t *buf, size_t buflen,
489 1.1 jmcneill struct uio *uio)
490 1.1 jmcneill {
491 1.1 jmcneill uint8_t *p = buf;
492 1.1 jmcneill uint8_t data, cmd;
493 1.1 jmcneill int error;
494 1.1 jmcneill
495 1.1 jmcneill while (p - buf < (ssize_t)buflen) {
496 1.1 jmcneill switch (sc->sc_ir_state) {
497 1.1 jmcneill case IRMCE_STATE_HEADER:
498 1.1 jmcneill sc->sc_ir_header = data = *p++;
499 1.1 jmcneill if ((data & 0xe0) == 0x80 && (data & 0x1f) != 0x1f) {
500 1.1 jmcneill sc->sc_ir_bufused = 0;
501 1.1 jmcneill sc->sc_ir_resid = data & 0x1f;
502 1.1 jmcneill sc->sc_ir_state = IRMCE_STATE_IRDATA;
503 1.1 jmcneill if (sc->sc_ir_resid > sizeof(sc->sc_ir_buf))
504 1.1 jmcneill return EIO;
505 1.1 jmcneill if (sc->sc_ir_resid == 0)
506 1.1 jmcneill sc->sc_ir_state = IRMCE_STATE_HEADER;
507 1.1 jmcneill } else {
508 1.1 jmcneill sc->sc_ir_state = IRMCE_STATE_CMDHEADER;
509 1.1 jmcneill }
510 1.1 jmcneill break;
511 1.1 jmcneill case IRMCE_STATE_CMDHEADER:
512 1.1 jmcneill cmd = *p++;
513 1.1 jmcneill data = sc->sc_ir_header;
514 1.1 jmcneill if (data == 0x00 && cmd == 0x9f)
515 1.1 jmcneill sc->sc_ir_resid = 1;
516 1.1 jmcneill else if (data == 0xff && cmd == 0x0b)
517 1.1 jmcneill sc->sc_ir_resid = 2;
518 1.1 jmcneill else if (data == 0x9f) {
519 1.1 jmcneill if (cmd == 0x04 || cmd == 0x06 ||
520 1.1 jmcneill cmd == 0x0c || cmd == 0x15) {
521 1.1 jmcneill sc->sc_ir_resid = 2;
522 1.1 jmcneill } else if (cmd == 0x01 || cmd == 0x08 ||
523 1.1 jmcneill cmd == 0x14) {
524 1.1 jmcneill sc->sc_ir_resid = 1;
525 1.1 jmcneill }
526 1.1 jmcneill }
527 1.1 jmcneill if (sc->sc_ir_resid > 0)
528 1.1 jmcneill sc->sc_ir_state = IRMCE_STATE_CMDDATA;
529 1.1 jmcneill else
530 1.1 jmcneill sc->sc_ir_state = IRMCE_STATE_HEADER;
531 1.1 jmcneill break;
532 1.1 jmcneill case IRMCE_STATE_IRDATA:
533 1.1 jmcneill sc->sc_ir_resid--;
534 1.1 jmcneill sc->sc_ir_buf[sc->sc_ir_bufused++] = *p;
535 1.1 jmcneill p++;
536 1.1 jmcneill if (sc->sc_ir_resid == 0) {
537 1.1 jmcneill sc->sc_ir_state = IRMCE_STATE_HEADER;
538 1.1 jmcneill error = irmce_rc6_decode(sc,
539 1.1 jmcneill sc->sc_ir_buf, sc->sc_ir_bufused, uio);
540 1.1 jmcneill if (error)
541 1.1 jmcneill sc->sc_rc6_nhb = 0;
542 1.1 jmcneill }
543 1.1 jmcneill break;
544 1.1 jmcneill case IRMCE_STATE_CMDDATA:
545 1.1 jmcneill p++;
546 1.1 jmcneill sc->sc_ir_resid--;
547 1.1 jmcneill if (sc->sc_ir_resid == 0)
548 1.1 jmcneill sc->sc_ir_state = IRMCE_STATE_HEADER;
549 1.1 jmcneill break;
550 1.1 jmcneill }
551 1.1 jmcneill
552 1.1 jmcneill }
553 1.1 jmcneill
554 1.1 jmcneill return 0;
555 1.1 jmcneill }
556 1.1 jmcneill
557 1.1 jmcneill static int
558 1.1 jmcneill irmce_read(void *priv, struct uio *uio, int flag)
559 1.1 jmcneill {
560 1.1 jmcneill struct irmce_softc *sc = priv;
561 1.1 jmcneill usbd_status err;
562 1.1 jmcneill uint32_t rlen;
563 1.1 jmcneill int error = 0;
564 1.1 jmcneill
565 1.1 jmcneill while (uio->uio_resid > 0) {
566 1.1 jmcneill rlen = sc->sc_bulkin_maxpktsize;
567 1.1 jmcneill err = usbd_bulk_transfer(sc->sc_bulkin_xfer,
568 1.2 skrll sc->sc_bulkin_pipe, USBD_SHORT_XFER_OK,
569 1.2 skrll USBD_DEFAULT_TIMEOUT, sc->sc_bulkin_buffer, &rlen);
570 1.1 jmcneill if (err != USBD_NORMAL_COMPLETION) {
571 1.1 jmcneill if (err == USBD_INTERRUPTED)
572 1.1 jmcneill return EINTR;
573 1.1 jmcneill else if (err == USBD_TIMEOUT)
574 1.1 jmcneill continue;
575 1.1 jmcneill else
576 1.1 jmcneill return EIO;
577 1.1 jmcneill }
578 1.1 jmcneill
579 1.1 jmcneill if (sc->sc_raw) {
580 1.1 jmcneill error = uiomove(sc->sc_bulkin_buffer, rlen, uio);
581 1.1 jmcneill break;
582 1.1 jmcneill } else {
583 1.1 jmcneill error = irmce_process(sc, sc->sc_bulkin_buffer,
584 1.1 jmcneill rlen, uio);
585 1.1 jmcneill if (error)
586 1.1 jmcneill break;
587 1.1 jmcneill }
588 1.1 jmcneill }
589 1.1 jmcneill
590 1.1 jmcneill return error;
591 1.1 jmcneill }
592 1.1 jmcneill
593 1.1 jmcneill static int
594 1.1 jmcneill irmce_write(void *priv, struct uio *uio, int flag)
595 1.1 jmcneill {
596 1.1 jmcneill return EIO;
597 1.1 jmcneill }
598 1.1 jmcneill
599 1.1 jmcneill static int
600 1.1 jmcneill irmce_setparams(void *priv, struct cir_params *params)
601 1.1 jmcneill {
602 1.1 jmcneill struct irmce_softc *sc = priv;
603 1.1 jmcneill
604 1.1 jmcneill if (params->raw > 1)
605 1.1 jmcneill return EINVAL;
606 1.1 jmcneill sc->sc_raw = params->raw;
607 1.1 jmcneill
608 1.1 jmcneill return 0;
609 1.1 jmcneill }
610 1.1 jmcneill
611 1.1 jmcneill MODULE(MODULE_CLASS_DRIVER, irmce, NULL);
612 1.1 jmcneill
613 1.1 jmcneill #ifdef _MODULE
614 1.1 jmcneill #include "ioconf.c"
615 1.1 jmcneill #endif
616 1.1 jmcneill
617 1.1 jmcneill static int
618 1.1 jmcneill irmce_modcmd(modcmd_t cmd, void *opaque)
619 1.1 jmcneill {
620 1.1 jmcneill switch (cmd) {
621 1.1 jmcneill case MODULE_CMD_INIT:
622 1.1 jmcneill #ifdef _MODULE
623 1.1 jmcneill return config_init_component(cfdriver_ioconf_irmce,
624 1.1 jmcneill cfattach_ioconf_irmce, cfdata_ioconf_irmce);
625 1.1 jmcneill #else
626 1.1 jmcneill return 0;
627 1.1 jmcneill #endif
628 1.1 jmcneill case MODULE_CMD_FINI:
629 1.1 jmcneill #ifdef _MODULE
630 1.1 jmcneill return config_fini_component(cfdriver_ioconf_irmce,
631 1.1 jmcneill cfattach_ioconf_irmce, cfdata_ioconf_irmce);
632 1.1 jmcneill #else
633 1.1 jmcneill return 0;
634 1.1 jmcneill #endif
635 1.1 jmcneill default:
636 1.1 jmcneill return ENOTTY;
637 1.1 jmcneill }
638 1.1 jmcneill }
639