xref: /netbsd-src/sys/dev/usb/stuirda.c (revision f89f6560d453f5e37386cc7938c072d2f528b9fa)
1 /*	$NetBSD: stuirda.c,v 1.16 2014/09/21 17:02:24 christos Exp $	*/
2 
3 /*
4  * Copyright (c) 2001,2007 The NetBSD Foundation, Inc.
5  * All rights reserved.
6  *
7  * This code is derived from software contributed to The NetBSD Foundation
8  * by Lennart Augustsson (lennart@augustsson.net).
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29  * POSSIBILITY OF SUCH DAMAGE.
30  */
31 
32 #include <sys/cdefs.h>
33 __KERNEL_RCSID(0, "$NetBSD: stuirda.c,v 1.16 2014/09/21 17:02:24 christos Exp $");
34 
35 #include <sys/param.h>
36 
37 #include <sys/device.h>
38 #include <sys/systm.h>
39 #include <sys/kernel.h>
40 #include <sys/device.h>
41 #include <sys/ioctl.h>
42 #include <sys/conf.h>
43 #include <sys/file.h>
44 #include <sys/poll.h>
45 #include <sys/select.h>
46 #include <sys/proc.h>
47 
48 
49 #include <dev/firmload.h>
50 #include <dev/usb/usb.h>
51 #include <dev/usb/usbdi.h>
52 #include <dev/usb/usbdi_util.h>
53 #include <dev/usb/usbdevs.h>
54 
55 #include <dev/ir/ir.h>
56 #include <dev/ir/irdaio.h>
57 #include <dev/ir/irframevar.h>
58 
59 #include <dev/usb/uirdavar.h>
60 
61 #ifdef UIRDA_DEBUG
62 #define DPRINTF(x)	if (stuirdadebug) printf x
63 #define DPRINTFN(n,x)	if (stuirdadebug>(n)) printf x
64 int	stuirdadebug = 1;
65 #else
66 #define DPRINTF(x)
67 #define DPRINTFN(n,x)
68 #endif
69 
70 struct stuirda_softc {
71 	struct uirda_softc sc_uirda;
72 };
73 
74 int stuirda_fwload(struct uirda_softc *sc);
75 
76 /*
77  * These devices need firmware download.
78  */
79 Static const struct usb_devno stuirda_devs[] = {
80 	{ USB_VENDOR_SIGMATEL, USB_PRODUCT_SIGMATEL_SIR4116 },
81 	{ USB_VENDOR_SIGMATEL, USB_PRODUCT_SIGMATEL_FIR4210 },
82 	{ USB_VENDOR_SIGMATEL, USB_PRODUCT_SIGMATEL_VFIR4220 },
83 };
84 #define stuirda_lookup(v, p) (usb_lookup(stuirda_devs, v, p))
85 
86 int stuirda_write(void *h, struct uio *uio, int flag);
87 
88 struct irframe_methods stuirda_methods = {
89 	uirda_open, uirda_close, uirda_read, stuirda_write, uirda_poll,
90 	uirda_kqfilter, uirda_set_params, uirda_get_speeds,
91 	uirda_get_turnarounds
92 };
93 
94 #define STUIRDA_HEADER_SIZE 3
95 
96 #define stuirda_activate uirda_activate
97 #define stuirda_detach uirda_detach
98 
99 int             stuirda_match(device_t, cfdata_t, void *);
100 void            stuirda_attach(device_t, device_t, void *);
101 int             stuirda_detach(device_t, int);
102 int             stuirda_activate(device_t, enum devact);
103 extern struct cfdriver stuirda_cd;
104 CFATTACH_DECL_NEW(stuirda, sizeof(struct stuirda_softc), stuirda_match, stuirda_attach, stuirda_detach, stuirda_activate);
105 
106 int
107 stuirda_match(device_t parent, cfdata_t match, void *aux)
108 {
109 	struct usbif_attach_arg *uaa = aux;
110 
111 	DPRINTFN(50,("stuirda_match\n"));
112 
113 	if (stuirda_lookup(uaa->vendor, uaa->product) != NULL)
114 		return (UMATCH_VENDOR_PRODUCT);
115 
116 	return (UMATCH_NONE);
117 }
118 
119 void uirda_attach(device_t, device_t, void *);
120 
121 void
122 stuirda_attach(device_t parent, device_t self, void *aux)
123 {
124 	struct stuirda_softc *sc = device_private(self);
125 
126 	sc->sc_uirda.sc_loadfw = stuirda_fwload;
127 	sc->sc_uirda.sc_irm = &stuirda_methods;
128 	sc->sc_uirda.sc_hdszi = STUIRDA_HEADER_SIZE;
129 
130 	uirda_attach(parent,self,aux);
131 }
132 
133 int
134 stuirda_fwload(struct uirda_softc *sc) {
135 
136 
137 	int rc;
138 	firmware_handle_t fh;
139 	off_t fwsize;
140 	usb_device_descriptor_t usbddsc;
141 	usbd_xfer_handle	fwxfer;
142 	usbd_pipe_handle	fwpipe;
143 	usbd_status status;
144 	usb_device_request_t req;
145 	char *buffer;
146 	char *p;
147 	char fwname[12];
148 	int n;
149 	u_int8_t *usbbuf;
150 	/* size_t bsize; */
151 
152 	printf("%s: needing to download firmware\n",
153 		device_xname(sc->sc_dev));
154 
155 	status = usbd_get_device_desc(sc->sc_udev, &usbddsc);
156 	if (status) {
157 		printf("%s: can't get device descriptor, status %d\n",
158 		    device_xname(sc->sc_dev), status);
159 		return status;
160 	}
161 
162 	rc = usbd_get_class_desc(sc->sc_udev, UDESC_IRDA, 0,
163 		USB_IRDA_DESCRIPTOR_SIZE, &sc->sc_irdadesc);
164 	printf("error %d reading class desc\n", rc);
165 
166 	snprintf(fwname, sizeof(fwname), "4210%02x%02x.sb",
167 		usbddsc.bcdDevice[1],
168 		usbddsc.bcdDevice[0]);
169 
170 	printf("%s: Attempting to load firmware %s\n",
171 		device_xname(sc->sc_dev), fwname);
172 
173 	rc = firmware_open("stuirda", fwname, &fh);
174 
175 	if (rc) {
176 		printf("%s: Cannot load firmware\n",
177 			device_xname(sc->sc_dev));
178 		return rc;
179 	}
180 	fwsize = firmware_get_size(fh);
181 
182 	printf("%s: Firmware size %lld\n",
183 		device_xname(sc->sc_dev), (long long)fwsize);
184 
185 	buffer = firmware_malloc(fwsize);
186 	if (buffer == NULL) {
187 		printf("%s: Cannot load firmware: out of memory\n",
188 			device_xname(sc->sc_dev));
189 		goto giveup2;
190 	}
191 
192 	rc = firmware_read(fh, 0, buffer, (size_t)fwsize);
193 
194 	if (rc) {
195 		printf("%s: Cannot read firmware\n", device_xname(sc->sc_dev));
196 		goto giveup3;
197 	}
198 
199 	for (p = buffer + sizeof("Product Version:");
200 	    p < buffer + fwsize - 5; p++) {
201 
202 		if (0x1A == *p)
203 			break;
204 	}
205 	if (0x1a != *p || memcmp(p+1, "STMP", 4) != 0) {
206 		/* firmware bad */
207 		printf("%s: Bad firmware\n", device_xname(sc->sc_dev));
208 		goto giveup3;
209 	}
210 
211 	p += 5;
212 
213 	req.bmRequestType = UT_WRITE_VENDOR_DEVICE;
214 	req.bRequest = 2 /* XXX magic */;
215 	USETW(req.wValue, 0);
216 	USETW(req.wIndex, 0);
217 	USETW(req.wLength, 0);
218 	rc = usbd_do_request(sc->sc_udev, &req, 0);
219 	if (rc) {
220 		printf("%s: Cannot switch to f/w d/l mode, error %d\n",
221 			device_xname(sc->sc_dev), rc);
222 		goto giveup3;
223 	}
224 
225 	delay(100000);
226 
227 	rc = usbd_open_pipe(sc->sc_iface, sc->sc_wr_addr, 0, &fwpipe);
228 	if (rc) {
229 		printf("%s: Cannot open pipe, rc=%d\n",
230 		    device_xname(sc->sc_dev), rc);
231 		goto giveup3;
232 	}
233 	fwxfer = usbd_alloc_xfer(sc->sc_udev);
234 	if (fwxfer == NULL) {
235 		printf("%s: Cannot alloc xfer\n", device_xname(sc->sc_dev));
236 		goto giveup4;
237 	}
238 	usbbuf = usbd_alloc_buffer(fwxfer, 1024);
239 	if (usbbuf == NULL) {
240 		printf("%s: Cannot alloc usb buf\n", device_xname(sc->sc_dev));
241 		goto giveup5;
242 	}
243 	n = (buffer + fwsize - p);
244 	while (n > 0) {
245 		if (n > 1023)
246 			n = 1023;
247 		memcpy(usbbuf, p, n);
248 		rc = usbd_bulk_transfer(fwxfer, fwpipe,
249 		    USBD_SYNCHRONOUS|USBD_FORCE_SHORT_XFER,
250 		    5000, usbbuf, &n, "uirda-fw-wr");
251 		printf("%s: write: rc=%d, %d left\n",
252 		    device_xname(sc->sc_dev), rc, n);
253 		if (rc) {
254 			printf("%s: write: rc=%d, %d bytes written\n",
255 			    device_xname(sc->sc_dev), rc, n);
256 			goto giveup4;
257 		}
258 		printf("%s: written %d\n", device_xname(sc->sc_dev), n);
259 		p += n;
260 		n = (buffer + fwsize - p);
261 	}
262 	delay(100000);
263 	/* TODO: more code here */
264 	rc = 0;
265 	usbd_free_buffer(fwxfer);
266 
267 	giveup5: usbd_free_xfer(fwxfer);
268 	giveup4: usbd_close_pipe(fwpipe);
269 	giveup3: firmware_free(buffer, fwsize);
270 	giveup2: firmware_close(fh);
271 
272 	return rc;
273 
274 }
275 
276 int
277 stuirda_write(void *h, struct uio *uio, int flag)
278 {
279 	struct uirda_softc *sc = h;
280 	usbd_status err;
281 	u_int32_t n;
282 	int error = 0;
283 
284 	DPRINTFN(1,("%s: sc=%p\n", __func__, sc));
285 
286 	if (sc->sc_dying)
287 		return (EIO);
288 
289 #ifdef DIAGNOSTIC
290 	if (sc->sc_wr_buf == NULL)
291 		return (EINVAL);
292 #endif
293 
294 	n = uio->uio_resid;
295 	if (n > sc->sc_params.maxsize)
296 		return (EINVAL);
297 
298 	sc->sc_refcnt++;
299 	mutex_enter(&sc->sc_wr_buf_lk);
300 
301 	sc->sc_wr_buf[0] = UIRDA_EB_NO_CHANGE | UIRDA_NO_SPEED;
302 
303 	sc->sc_wr_buf[1] = 0;
304 	sc->sc_wr_buf[2] = 7; /* XXX turnaround - maximum for now */
305 	if ((n > 0 && (n % 128) == 0 && (n % 512) != 0)) {
306 		sc->sc_wr_buf[1] = 1;
307 	}
308 
309 	error = uiomove(sc->sc_wr_buf + STUIRDA_HEADER_SIZE, n, uio);
310 	if (!error) {
311 		DPRINTFN(1, ("uirdawrite: transfer %d bytes\n", n));
312 
313 		n += STUIRDA_HEADER_SIZE + sc->sc_wr_buf[1];
314 		err = usbd_bulk_transfer(sc->sc_wr_xfer, sc->sc_wr_pipe,
315 			  USBD_FORCE_SHORT_XFER|USBD_NO_COPY,
316 			  UIRDA_WR_TIMEOUT,
317 			  sc->sc_wr_buf, &n, "uirdawr");
318 		DPRINTFN(2, ("uirdawrite: err=%d\n", err));
319 		if (err) {
320 			if (err == USBD_INTERRUPTED)
321 				error = EINTR;
322 			else if (err == USBD_TIMEOUT)
323 				error = ETIMEDOUT;
324 			else
325 				error = EIO;
326 		}
327 	}
328 
329 	mutex_exit(&sc->sc_wr_buf_lk);
330 	if (--sc->sc_refcnt < 0)
331 		usb_detach_wakeupold(sc->sc_dev);
332 
333 	DPRINTFN(1,("%s: sc=%p done\n", __func__, sc));
334 	return (error);
335 }
336