]> CyberLeo.Net >> Repos - FreeBSD/releng/8.2.git/blob - sys/dev/usb/misc/ufm.c
Copy stable/8 to releng/8.2 in preparation for FreeBSD-8.2 release.
[FreeBSD/releng/8.2.git] / sys / dev / usb / misc / ufm.c
1 /*-
2  * Copyright (c) 2001 M. Warner Losh
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions, and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
18  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  *
26  * This code is based on ugen.c and ulpt.c developed by Lennart Augustsson.
27  * This code includes software developed by the NetBSD Foundation, Inc. and
28  * its contributors.
29  */
30
31 #include <sys/cdefs.h>
32 __FBSDID("$FreeBSD$");
33
34
35 #include <sys/stdint.h>
36 #include <sys/stddef.h>
37 #include <sys/param.h>
38 #include <sys/queue.h>
39 #include <sys/types.h>
40 #include <sys/systm.h>
41 #include <sys/kernel.h>
42 #include <sys/bus.h>
43 #include <sys/linker_set.h>
44 #include <sys/module.h>
45 #include <sys/lock.h>
46 #include <sys/mutex.h>
47 #include <sys/condvar.h>
48 #include <sys/sysctl.h>
49 #include <sys/sx.h>
50 #include <sys/unistd.h>
51 #include <sys/callout.h>
52 #include <sys/malloc.h>
53 #include <sys/priv.h>
54 #include <sys/conf.h>
55 #include <sys/fcntl.h>
56
57 #include <dev/usb/usb.h>
58 #include <dev/usb/usbdi.h>
59 #include "usbdevs.h"
60
61 #define USB_DEBUG_VAR usb_debug
62 #include <dev/usb/usb_debug.h>
63
64 #include <dev/usb/ufm_ioctl.h>
65
66 #define UFM_CMD0                0x00
67 #define UFM_CMD_SET_FREQ        0x01
68 #define UFM_CMD2                0x02
69
70 struct ufm_softc {
71         struct usb_fifo_sc sc_fifo;
72         struct mtx sc_mtx;
73
74         struct usb_device *sc_udev;
75
76         uint32_t sc_unit;
77         uint32_t sc_freq;
78
79         uint8_t sc_name[16];
80 };
81
82 /* prototypes */
83
84 static device_probe_t ufm_probe;
85 static device_attach_t ufm_attach;
86 static device_detach_t ufm_detach;
87
88 static usb_fifo_ioctl_t ufm_ioctl;
89
90 static struct usb_fifo_methods ufm_fifo_methods = {
91         .f_ioctl = &ufm_ioctl,
92         .basename[0] = "ufm",
93 };
94
95 static int      ufm_do_req(struct ufm_softc *, uint8_t, uint16_t, uint16_t,
96                     uint8_t *);
97 static int      ufm_set_freq(struct ufm_softc *, void *);
98 static int      ufm_get_freq(struct ufm_softc *, void *);
99 static int      ufm_start(struct ufm_softc *, void *);
100 static int      ufm_stop(struct ufm_softc *, void *);
101 static int      ufm_get_stat(struct ufm_softc *, void *);
102
103 static devclass_t ufm_devclass;
104
105 static device_method_t ufm_methods[] = {
106         DEVMETHOD(device_probe, ufm_probe),
107         DEVMETHOD(device_attach, ufm_attach),
108         DEVMETHOD(device_detach, ufm_detach),
109         {0, 0}
110 };
111
112 static driver_t ufm_driver = {
113         .name = "ufm",
114         .methods = ufm_methods,
115         .size = sizeof(struct ufm_softc),
116 };
117
118 DRIVER_MODULE(ufm, uhub, ufm_driver, ufm_devclass, NULL, 0);
119 MODULE_DEPEND(ufm, usb, 1, 1, 1);
120 MODULE_VERSION(ufm, 1);
121
122 static int
123 ufm_probe(device_t dev)
124 {
125         struct usb_attach_arg *uaa = device_get_ivars(dev);
126
127         if (uaa->usb_mode != USB_MODE_HOST) {
128                 return (ENXIO);
129         }
130         if ((uaa->info.idVendor == USB_VENDOR_CYPRESS) &&
131             (uaa->info.idProduct == USB_PRODUCT_CYPRESS_FMRADIO)) {
132                 return (0);
133         }
134         return (ENXIO);
135 }
136
137 static int
138 ufm_attach(device_t dev)
139 {
140         struct usb_attach_arg *uaa = device_get_ivars(dev);
141         struct ufm_softc *sc = device_get_softc(dev);
142         int error;
143
144         sc->sc_udev = uaa->device;
145         sc->sc_unit = device_get_unit(dev);
146
147         snprintf(sc->sc_name, sizeof(sc->sc_name), "%s",
148             device_get_nameunit(dev));
149
150         mtx_init(&sc->sc_mtx, "ufm lock", NULL, MTX_DEF | MTX_RECURSE);
151
152         device_set_usb_desc(dev);
153
154         error = usb_fifo_attach(uaa->device, sc, &sc->sc_mtx,
155             &ufm_fifo_methods, &sc->sc_fifo,
156             device_get_unit(dev), 0 - 1, uaa->info.bIfaceIndex,
157             UID_ROOT, GID_OPERATOR, 0644);
158         if (error) {
159                 goto detach;
160         }
161         return (0);                     /* success */
162
163 detach:
164         ufm_detach(dev);
165         return (ENXIO);
166 }
167
168 static int
169 ufm_detach(device_t dev)
170 {
171         struct ufm_softc *sc = device_get_softc(dev);
172
173         usb_fifo_detach(&sc->sc_fifo);
174
175         mtx_destroy(&sc->sc_mtx);
176
177         return (0);
178 }
179
180 static int
181 ufm_do_req(struct ufm_softc *sc, uint8_t request,
182     uint16_t value, uint16_t index, uint8_t *retbuf)
183 {
184         int error;
185
186         struct usb_device_request req;
187         uint8_t buf[1];
188
189         req.bmRequestType = UT_READ_VENDOR_DEVICE;
190         req.bRequest = request;
191         USETW(req.wValue, value);
192         USETW(req.wIndex, index);
193         USETW(req.wLength, 1);
194
195         error = usbd_do_request(sc->sc_udev, NULL, &req, buf);
196
197         if (retbuf) {
198                 *retbuf = buf[0];
199         }
200         if (error) {
201                 return (ENXIO);
202         }
203         return (0);
204 }
205
206 static int
207 ufm_set_freq(struct ufm_softc *sc, void *addr)
208 {
209         int freq = *(int *)addr;
210
211         /*
212          * Freq now is in Hz.  We need to convert it to the frequency
213          * that the radio wants.  This frequency is 10.7MHz above
214          * the actual frequency.  We then need to convert to
215          * units of 12.5kHz.  We add one to the IFM to make rounding
216          * easier.
217          */
218         mtx_lock(&sc->sc_mtx);
219         sc->sc_freq = freq;
220         mtx_unlock(&sc->sc_mtx);
221
222         freq = (freq + 10700001) / 12500;
223
224         /* This appears to set the frequency */
225         if (ufm_do_req(sc, UFM_CMD_SET_FREQ,
226             freq >> 8, freq, NULL) != 0) {
227                 return (EIO);
228         }
229         /* Not sure what this does */
230         if (ufm_do_req(sc, UFM_CMD0,
231             0x96, 0xb7, NULL) != 0) {
232                 return (EIO);
233         }
234         return (0);
235 }
236
237 static int
238 ufm_get_freq(struct ufm_softc *sc, void *addr)
239 {
240         int *valp = (int *)addr;
241
242         mtx_lock(&sc->sc_mtx);
243         *valp = sc->sc_freq;
244         mtx_unlock(&sc->sc_mtx);
245         return (0);
246 }
247
248 static int
249 ufm_start(struct ufm_softc *sc, void *addr)
250 {
251         uint8_t ret;
252
253         if (ufm_do_req(sc, UFM_CMD0,
254             0x00, 0xc7, &ret)) {
255                 return (EIO);
256         }
257         if (ufm_do_req(sc, UFM_CMD2,
258             0x01, 0x00, &ret)) {
259                 return (EIO);
260         }
261         if (ret & 0x1) {
262                 return (EIO);
263         }
264         return (0);
265 }
266
267 static int
268 ufm_stop(struct ufm_softc *sc, void *addr)
269 {
270         if (ufm_do_req(sc, UFM_CMD0,
271             0x16, 0x1C, NULL)) {
272                 return (EIO);
273         }
274         if (ufm_do_req(sc, UFM_CMD2,
275             0x00, 0x00, NULL)) {
276                 return (EIO);
277         }
278         return (0);
279 }
280
281 static int
282 ufm_get_stat(struct ufm_softc *sc, void *addr)
283 {
284         uint8_t ret;
285
286         /*
287          * Note, there's a 240ms settle time before the status
288          * will be valid, so sleep that amount.
289          */
290         usb_pause_mtx(NULL, hz / 4);
291
292         if (ufm_do_req(sc, UFM_CMD0,
293             0x00, 0x24, &ret)) {
294                 return (EIO);
295         }
296         *(int *)addr = ret;
297
298         return (0);
299 }
300
301 static int
302 ufm_ioctl(struct usb_fifo *fifo, u_long cmd, void *addr,
303     int fflags)
304 {
305         struct ufm_softc *sc = usb_fifo_softc(fifo);
306         int error = 0;
307
308         if ((fflags & (FWRITE | FREAD)) != (FWRITE | FREAD)) {
309                 return (EACCES);
310         }
311
312         switch (cmd) {
313         case FM_SET_FREQ:
314                 error = ufm_set_freq(sc, addr);
315                 break;
316         case FM_GET_FREQ:
317                 error = ufm_get_freq(sc, addr);
318                 break;
319         case FM_START:
320                 error = ufm_start(sc, addr);
321                 break;
322         case FM_STOP:
323                 error = ufm_stop(sc, addr);
324                 break;
325         case FM_GET_STAT:
326                 error = ufm_get_stat(sc, addr);
327                 break;
328         default:
329                 error = ENOTTY;
330                 break;
331         }
332         return (error);
333 }