uberry.c revision 1.3.8.2 1 1.3.8.2 wrstuden /* $NetBSD: uberry.c,v 1.3.8.2 2008/06/23 05:02:13 wrstuden Exp $ */
2 1.3.8.2 wrstuden
3 1.3.8.2 wrstuden /*-
4 1.3.8.2 wrstuden * Copyright (c) 2008 The NetBSD Foundation, Inc.
5 1.3.8.2 wrstuden * All rights reserved.
6 1.3.8.2 wrstuden *
7 1.3.8.2 wrstuden * This code is derived from software contributed to The NetBSD Foundation
8 1.3.8.2 wrstuden * by Christos Zoulas.
9 1.3.8.2 wrstuden *
10 1.3.8.2 wrstuden * Redistribution and use in source and binary forms, with or without
11 1.3.8.2 wrstuden * modification, are permitted provided that the following conditions
12 1.3.8.2 wrstuden * are met:
13 1.3.8.2 wrstuden * 1. Redistributions of source code must retain the above copyright
14 1.3.8.2 wrstuden * notice, this list of conditions and the following disclaimer.
15 1.3.8.2 wrstuden * 2. Redistributions in binary form must reproduce the above copyright
16 1.3.8.2 wrstuden * notice, this list of conditions and the following disclaimer in the
17 1.3.8.2 wrstuden * documentation and/or other materials provided with the distribution.
18 1.3.8.2 wrstuden * 3. All advertising materials mentioning features or use of this software
19 1.3.8.2 wrstuden * must display the following acknowledgement:
20 1.3.8.2 wrstuden * This product includes software developed by the NetBSD
21 1.3.8.2 wrstuden * Foundation, Inc. and its contributors.
22 1.3.8.2 wrstuden * 4. Neither the name of The NetBSD Foundation nor the names of its
23 1.3.8.2 wrstuden * contributors may be used to endorse or promote products derived
24 1.3.8.2 wrstuden * from this software without specific pberryr written permission.
25 1.3.8.2 wrstuden *
26 1.3.8.2 wrstuden * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27 1.3.8.2 wrstuden * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28 1.3.8.2 wrstuden * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 1.3.8.2 wrstuden * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30 1.3.8.2 wrstuden * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 1.3.8.2 wrstuden * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 1.3.8.2 wrstuden * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 1.3.8.2 wrstuden * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 1.3.8.2 wrstuden * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 1.3.8.2 wrstuden * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 1.3.8.2 wrstuden * POSSIBILITY OF SUCH DAMAGE.
37 1.3.8.2 wrstuden */
38 1.3.8.2 wrstuden
39 1.3.8.2 wrstuden #include <sys/cdefs.h>
40 1.3.8.2 wrstuden __KERNEL_RCSID(0, "$NetBSD: uberry.c,v 1.3.8.2 2008/06/23 05:02:13 wrstuden Exp $");
41 1.3.8.2 wrstuden
42 1.3.8.2 wrstuden #include <sys/param.h>
43 1.3.8.2 wrstuden #include <sys/systm.h>
44 1.3.8.2 wrstuden #include <sys/kernel.h>
45 1.3.8.2 wrstuden #include <sys/malloc.h>
46 1.3.8.2 wrstuden #include <sys/device.h>
47 1.3.8.2 wrstuden #include <sys/ioctl.h>
48 1.3.8.2 wrstuden #include <sys/conf.h>
49 1.3.8.2 wrstuden #include <sys/file.h>
50 1.3.8.2 wrstuden #include <sys/select.h>
51 1.3.8.2 wrstuden #include <sys/proc.h>
52 1.3.8.2 wrstuden #include <sys/vnode.h>
53 1.3.8.2 wrstuden #include <sys/poll.h>
54 1.3.8.2 wrstuden #include <sys/bus.h>
55 1.3.8.2 wrstuden
56 1.3.8.2 wrstuden #include <dev/usb/usb.h>
57 1.3.8.2 wrstuden #include <dev/usb/usbdi.h>
58 1.3.8.2 wrstuden #include <dev/usb/usbdi_util.h>
59 1.3.8.2 wrstuden #include <dev/usb/usbdivar.h>
60 1.3.8.2 wrstuden
61 1.3.8.2 wrstuden #include <dev/usb/usbdevs.h>
62 1.3.8.2 wrstuden
63 1.3.8.2 wrstuden #ifdef UBERRY_DEBUG
64 1.3.8.2 wrstuden #define DPRINTF(x) if (uberrydebug) logprintf x
65 1.3.8.2 wrstuden #define DPRINTFN(n, x) if (uberrydebug > n) logprintf x
66 1.3.8.2 wrstuden int uberrydebug = 0;
67 1.3.8.2 wrstuden #else
68 1.3.8.2 wrstuden #define DPRINTF(x)
69 1.3.8.2 wrstuden #define DPRINTFN(n, x)
70 1.3.8.2 wrstuden #endif
71 1.3.8.2 wrstuden
72 1.3.8.2 wrstuden struct uberry_softc {
73 1.3.8.2 wrstuden USBBASEDEVICE sc_dev;
74 1.3.8.2 wrstuden usbd_device_handle sc_udev;
75 1.3.8.2 wrstuden };
76 1.3.8.2 wrstuden
77 1.3.8.2 wrstuden /*
78 1.3.8.2 wrstuden * Note that we do not attach to USB_PRODUCT_RIM_BLACKBERRY_PEARL_DUAL
79 1.3.8.2 wrstuden * as we let umass claim the device instead.
80 1.3.8.2 wrstuden */
81 1.3.8.2 wrstuden static const struct usb_devno uberry_devs[] = {
82 1.3.8.2 wrstuden { USB_VENDOR_RIM, USB_PRODUCT_RIM_BLACKBERRY },
83 1.3.8.2 wrstuden { USB_VENDOR_RIM, USB_PRODUCT_RIM_BLACKBERRY_PEARL },
84 1.3.8.2 wrstuden };
85 1.3.8.2 wrstuden
86 1.3.8.2 wrstuden #define uberry_lookup(v, p) usb_lookup(uberry_devs, v, p)
87 1.3.8.2 wrstuden #define UBERRY_CONFIG_NO 1
88 1.3.8.2 wrstuden
89 1.3.8.2 wrstuden USB_DECLARE_DRIVER(uberry);
90 1.3.8.2 wrstuden
91 1.3.8.2 wrstuden static void
92 1.3.8.2 wrstuden uberry_cmd(struct uberry_softc *sc, uint8_t requestType, uint8_t reqno,
93 1.3.8.2 wrstuden uint8_t value, uint8_t index, void *data, uint8_t length)
94 1.3.8.2 wrstuden {
95 1.3.8.2 wrstuden usb_device_request_t req;
96 1.3.8.2 wrstuden usbd_status err;
97 1.3.8.2 wrstuden
98 1.3.8.2 wrstuden DPRINTF(("berry cmd type=%x, number=%x, value=%d, index=%d, len=%d\n",
99 1.3.8.2 wrstuden requestType, reqno, value, index, length));
100 1.3.8.2 wrstuden req.bmRequestType = requestType;
101 1.3.8.2 wrstuden req.bRequest = reqno;
102 1.3.8.2 wrstuden USETW(req.wValue, value);
103 1.3.8.2 wrstuden USETW(req.wIndex, index);
104 1.3.8.2 wrstuden USETW(req.wLength, length);
105 1.3.8.2 wrstuden
106 1.3.8.2 wrstuden if ((err = usbd_do_request(sc->sc_udev, &req, data)) != 0)
107 1.3.8.2 wrstuden aprint_error_dev(sc->sc_dev, "sending command failed %d\n",
108 1.3.8.2 wrstuden err);
109 1.3.8.2 wrstuden }
110 1.3.8.2 wrstuden
111 1.3.8.2 wrstuden static void
112 1.3.8.2 wrstuden uberry_charge(struct uberry_softc *sc)
113 1.3.8.2 wrstuden {
114 1.3.8.2 wrstuden char dummy[2];
115 1.3.8.2 wrstuden usbd_status err;
116 1.3.8.2 wrstuden
117 1.3.8.2 wrstuden if (sc->sc_udev->power != USB_MAX_POWER) {
118 1.3.8.2 wrstuden uberry_cmd(sc, UT_READ | UT_VENDOR, 0xa5, 0, 1, dummy, 2);
119 1.3.8.2 wrstuden uberry_cmd(sc, UT_WRITE | UT_VENDOR, 0xa2, 0, 1, dummy, 0);
120 1.3.8.2 wrstuden }
121 1.3.8.2 wrstuden
122 1.3.8.2 wrstuden err = usbd_set_config_no(sc->sc_udev, UBERRY_CONFIG_NO, 1);
123 1.3.8.2 wrstuden if (err) {
124 1.3.8.2 wrstuden aprint_error_dev(sc->sc_dev, "setting config no failed\n");
125 1.3.8.2 wrstuden return;
126 1.3.8.2 wrstuden }
127 1.3.8.2 wrstuden }
128 1.3.8.2 wrstuden
129 1.3.8.2 wrstuden /*
130 1.3.8.2 wrstuden * Expose both the USB mass storage interface and the database access one
131 1.3.8.2 wrstuden */
132 1.3.8.2 wrstuden static void
133 1.3.8.2 wrstuden uberry_dual_mode(struct uberry_softc *sc)
134 1.3.8.2 wrstuden {
135 1.3.8.2 wrstuden char dummy[2];
136 1.3.8.2 wrstuden usbd_status err;
137 1.3.8.2 wrstuden
138 1.3.8.2 wrstuden uberry_cmd(sc, UT_READ | UT_VENDOR, 0xa9, 1, 1, dummy, 2);
139 1.3.8.2 wrstuden
140 1.3.8.2 wrstuden err = usbd_set_config_no(sc->sc_udev, UBERRY_CONFIG_NO, 1);
141 1.3.8.2 wrstuden if (err) {
142 1.3.8.2 wrstuden aprint_error_dev(sc->sc_dev, "setting config no failed\n");
143 1.3.8.2 wrstuden return;
144 1.3.8.2 wrstuden }
145 1.3.8.2 wrstuden }
146 1.3.8.2 wrstuden
147 1.3.8.2 wrstuden
148 1.3.8.2 wrstuden USB_MATCH(uberry)
149 1.3.8.2 wrstuden {
150 1.3.8.2 wrstuden USB_MATCH_START(uberry, uaa);
151 1.3.8.2 wrstuden
152 1.3.8.2 wrstuden DPRINTFN(50,("uberry_match\n"));
153 1.3.8.2 wrstuden
154 1.3.8.2 wrstuden return (uberry_lookup(uaa->vendor, uaa->product) != NULL ?
155 1.3.8.2 wrstuden UMATCH_VENDOR_PRODUCT : UMATCH_NONE);
156 1.3.8.2 wrstuden }
157 1.3.8.2 wrstuden
158 1.3.8.2 wrstuden USB_ATTACH(uberry)
159 1.3.8.2 wrstuden {
160 1.3.8.2 wrstuden USB_ATTACH_START(uberry, sc, uaa);
161 1.3.8.2 wrstuden usbd_device_handle dev = uaa->device;
162 1.3.8.2 wrstuden char *devinfop;
163 1.3.8.2 wrstuden
164 1.3.8.2 wrstuden DPRINTFN(10,("uberry_attach: sc=%p\n", sc));
165 1.3.8.2 wrstuden
166 1.3.8.2 wrstuden sc->sc_dev = self;
167 1.3.8.2 wrstuden sc->sc_udev = dev;
168 1.3.8.2 wrstuden
169 1.3.8.2 wrstuden devinfop = usbd_devinfo_alloc(dev, 0);
170 1.3.8.2 wrstuden USB_ATTACH_SETUP;
171 1.3.8.2 wrstuden aprint_normal_dev(self, "%s\n", devinfop);
172 1.3.8.2 wrstuden usbd_devinfo_free(devinfop);
173 1.3.8.2 wrstuden
174 1.3.8.2 wrstuden uberry_charge(sc);
175 1.3.8.2 wrstuden if (uaa->product == USB_PRODUCT_RIM_BLACKBERRY_PEARL)
176 1.3.8.2 wrstuden uberry_dual_mode(sc);
177 1.3.8.2 wrstuden
178 1.3.8.2 wrstuden DPRINTFN(10, ("uberry_attach: %p\n", sc->sc_udev));
179 1.3.8.2 wrstuden
180 1.3.8.2 wrstuden if (!pmf_device_register(self, NULL, NULL))
181 1.3.8.2 wrstuden aprint_error_dev(self, "couldn't establish power handler\n");
182 1.3.8.2 wrstuden
183 1.3.8.2 wrstuden usbd_add_drv_event(USB_EVENT_DRIVER_ATTACH, sc->sc_udev,
184 1.3.8.2 wrstuden USBDEV(sc->sc_dev));
185 1.3.8.2 wrstuden
186 1.3.8.2 wrstuden USB_ATTACH_SUCCESS_RETURN;
187 1.3.8.2 wrstuden }
188 1.3.8.2 wrstuden
189 1.3.8.2 wrstuden USB_DETACH(uberry)
190 1.3.8.2 wrstuden {
191 1.3.8.2 wrstuden USB_DETACH_START(uberry, sc);
192 1.3.8.2 wrstuden DPRINTF(("uberry_detach: sc=%p flags=%d\n", sc, flags));
193 1.3.8.2 wrstuden
194 1.3.8.2 wrstuden pmf_device_deregister(self);
195 1.3.8.2 wrstuden
196 1.3.8.2 wrstuden usbd_add_drv_event(USB_EVENT_DRIVER_DETACH, sc->sc_udev,
197 1.3.8.2 wrstuden USBDEV(sc->sc_dev));
198 1.3.8.2 wrstuden
199 1.3.8.2 wrstuden return (0);
200 1.3.8.2 wrstuden }
201 1.3.8.2 wrstuden
202 1.3.8.2 wrstuden int
203 1.3.8.2 wrstuden uberry_activate(device_ptr_t self, enum devact act)
204 1.3.8.2 wrstuden {
205 1.3.8.2 wrstuden switch (act) {
206 1.3.8.2 wrstuden case DVACT_ACTIVATE:
207 1.3.8.2 wrstuden break;
208 1.3.8.2 wrstuden
209 1.3.8.2 wrstuden case DVACT_DEACTIVATE:
210 1.3.8.2 wrstuden break;
211 1.3.8.2 wrstuden }
212 1.3.8.2 wrstuden return (0);
213 1.3.8.2 wrstuden }
214