It's "useful" not "usefull".
[dragonfly.git] / sys / bus / ppbus / ppbconf.c
blob5dcaadd88fe01fbf931dbe079cdf12d0f6083057
1 /*-
2 * Copyright (c) 1997, 1998, 1999 Nicolas Souchu
3 * All rights reserved.
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.
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
18 * FOR 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.
26 * $FreeBSD: src/sys/dev/ppbus/ppbconf.c,v 1.17.2.1 2000/05/24 00:20:57 n_hibma Exp $
27 * $DragonFly: src/sys/bus/ppbus/ppbconf.c,v 1.12 2008/05/18 03:02:53 pavalos Exp $
30 #include "opt_ppb_1284.h"
32 #include <sys/param.h>
33 #include <sys/systm.h>
34 #include <sys/kernel.h>
35 #include <sys/module.h>
36 #include <sys/bus.h>
37 #include <sys/malloc.h>
38 #include <sys/thread2.h>
40 #include "ppbconf.h"
41 #include "ppb_1284.h"
43 #include "ppbus_if.h"
45 #define DEVTOSOFTC(dev) ((struct ppb_data *)device_get_softc(dev))
47 MALLOC_DEFINE(M_PPBUSDEV, "ppbusdev", "Parallel Port bus device");
51 * Device methods
54 static void
55 ppbus_print_child(device_t bus, device_t dev)
57 struct ppb_device *ppbdev;
59 bus_print_child_header(bus, dev);
61 ppbdev = (struct ppb_device *)device_get_ivars(dev);
63 if (ppbdev->flags != 0)
64 kprintf(" flags 0x%x", ppbdev->flags);
66 kprintf(" on %s%d\n", device_get_name(bus), device_get_unit(bus));
68 return;
71 static int
72 ppbus_probe(device_t dev)
74 device_set_desc(dev, "Parallel port bus");
76 return (0);
80 * ppbus_add_child()
82 * Add a ppbus device, allocate/initialize the ivars
84 static device_t
85 ppbus_add_child(device_t bus, device_t parent, int order, const char *name, int unit)
87 struct ppb_device *ppbdev;
88 device_t child;
90 /* allocate ivars for the new ppbus child */
91 ppbdev = kmalloc(sizeof(struct ppb_device), M_PPBUSDEV, M_WAITOK | M_ZERO);
93 /* initialize the ivars */
94 ppbdev->name = name;
96 /* add the device as a child to the ppbus bus with the allocated
97 * ivars */
98 child = device_add_child_ordered(parent, order, name, unit);
99 device_set_ivars(child, ppbdev);
101 return child;
104 static int
105 ppbus_read_ivar(device_t bus, device_t dev, int index, uintptr_t* val)
107 struct ppb_device *ppbdev = (struct ppb_device *)device_get_ivars(dev);
109 switch (index) {
110 case PPBUS_IVAR_MODE:
111 /* XXX yet device mode = ppbus mode = chipset mode */
112 *val = (u_long)ppb_get_mode(bus);
113 ppbdev->mode = (u_short)*val;
114 break;
115 case PPBUS_IVAR_AVM:
116 *val = (u_long)ppbdev->avm;
117 break;
118 case PPBUS_IVAR_IRQ:
119 BUS_READ_IVAR(device_get_parent(bus), bus, PPC_IVAR_IRQ, val);
120 break;
121 default:
122 return (ENOENT);
125 return (0);
128 static int
129 ppbus_write_ivar(device_t bus, device_t dev, int index, u_long val)
131 struct ppb_device *ppbdev = (struct ppb_device *)device_get_ivars(dev);
133 switch (index) {
134 case PPBUS_IVAR_MODE:
135 /* XXX yet device mode = ppbus mode = chipset mode */
136 ppb_set_mode(bus,val);
137 ppbdev->mode = ppb_get_mode(bus);
138 break;
139 default:
140 return (ENOENT);
143 return (0);
146 #define PPB_PNP_PRINTER 0
147 #define PPB_PNP_MODEM 1
148 #define PPB_PNP_NET 2
149 #define PPB_PNP_HDC 3
150 #define PPB_PNP_PCMCIA 4
151 #define PPB_PNP_MEDIA 5
152 #define PPB_PNP_FDC 6
153 #define PPB_PNP_PORTS 7
154 #define PPB_PNP_SCANNER 8
155 #define PPB_PNP_DIGICAM 9
157 #ifndef DONTPROBE_1284
159 static char *pnp_tokens[] = {
160 "PRINTER", "MODEM", "NET", "HDC", "PCMCIA", "MEDIA",
161 "FDC", "PORTS", "SCANNER", "DIGICAM", "", NULL };
163 #if 0
164 static char *pnp_classes[] = {
165 "printer", "modem", "network device",
166 "hard disk", "PCMCIA", "multimedia device",
167 "floppy disk", "ports", "scanner",
168 "digital camera", "unknown device", NULL };
169 #endif
172 * search_token()
174 * Search the first occurence of a token within a string
176 * XXX should use strxxx() calls
178 static char *
179 search_token(char *str, int slen, char *token)
181 char *p;
182 int tlen, i, j;
184 #define UNKNOWN_LENGTH -1
186 if (slen == UNKNOWN_LENGTH)
187 /* get string's length */
188 for (slen = 0, p = str; *p != '\0'; p++)
189 slen ++;
191 /* get token's length */
192 for (tlen = 0, p = token; *p != '\0'; p++)
193 tlen ++;
195 if (tlen == 0)
196 return (str);
198 for (i = 0; i <= slen-tlen; i++) {
199 for (j = 0; j < tlen; j++)
200 if (str[i+j] != token[j])
201 break;
202 if (j == tlen)
203 return (&str[i]);
206 return (NULL);
210 * ppb_pnp_detect()
212 * Returns the class id. of the peripherial, -1 otherwise
214 static int
215 ppb_pnp_detect(device_t bus)
217 char *token, *class = 0;
218 int i, len, error;
219 int class_id = -1;
220 char str[PPB_PnP_STRING_SIZE+1];
221 int unit = device_get_unit(bus);
223 kprintf("Probing for PnP devices on ppbus%d:\n", unit);
225 if ((error = ppb_1284_read_id(bus, PPB_NIBBLE, str,
226 PPB_PnP_STRING_SIZE, &len)))
227 goto end_detect;
229 #ifdef DEBUG_1284
230 kprintf("ppb: <PnP> %d characters: ", len);
231 for (i = 0; i < len; i++)
232 kprintf("%c(0x%x) ", str[i], str[i]);
233 kprintf("\n");
234 #endif
236 /* replace ';' characters by '\0' */
237 for (i = 0; i < len; i++)
238 str[i] = (str[i] == ';') ? '\0' : str[i];
240 if ((token = search_token(str, len, "MFG")) != NULL ||
241 (token = search_token(str, len, "MANUFACTURER")) != NULL)
242 kprintf("ppbus%d: <%s", unit,
243 search_token(token, UNKNOWN_LENGTH, ":") + 1);
244 else
245 kprintf("ppbus%d: <unknown", unit);
247 if ((token = search_token(str, len, "MDL")) != NULL ||
248 (token = search_token(str, len, "MODEL")) != NULL)
249 kprintf(" %s",
250 search_token(token, UNKNOWN_LENGTH, ":") + 1);
251 else
252 kprintf(" unknown");
254 if ((token = search_token(str, len, "VER")) != NULL)
255 kprintf("/%s",
256 search_token(token, UNKNOWN_LENGTH, ":") + 1);
258 if ((token = search_token(str, len, "REV")) != NULL)
259 kprintf(".%s",
260 search_token(token, UNKNOWN_LENGTH, ":") + 1);
262 kprintf(">");
264 if ((token = search_token(str, len, "CLS")) != NULL) {
265 class = search_token(token, UNKNOWN_LENGTH, ":") + 1;
266 kprintf(" %s", class);
269 if ((token = search_token(str, len, "CMD")) != NULL ||
270 (token = search_token(str, len, "COMMAND")) != NULL)
271 kprintf(" %s",
272 search_token(token, UNKNOWN_LENGTH, ":") + 1);
274 kprintf("\n");
276 if (class)
277 /* identify class ident */
278 for (i = 0; pnp_tokens[i] != NULL; i++) {
279 if (search_token(class, len, pnp_tokens[i]) != NULL) {
280 class_id = i;
281 goto end_detect;
285 class_id = PPB_PnP_UNKNOWN;
287 end_detect:
288 return (class_id);
292 * ppb_scan_bus()
294 * Scan the ppbus for IEEE1284 compliant devices
296 static int
297 ppb_scan_bus(device_t bus)
299 struct ppb_data * ppb = (struct ppb_data *)device_get_softc(bus);
300 int error = 0;
301 int unit = device_get_unit(bus);
303 /* try all IEEE1284 modes, for one device only
305 * XXX We should implement the IEEE1284.3 standard to detect
306 * daisy chained devices
309 error = ppb_1284_negociate(bus, PPB_NIBBLE, PPB_REQUEST_ID);
311 if ((ppb->state == PPB_ERROR) && (ppb->error == PPB_NOT_IEEE1284))
312 goto end_scan;
314 ppb_1284_terminate(bus);
316 kprintf("ppbus%d: IEEE1284 device found ", unit);
318 if (!(error = ppb_1284_negociate(bus, PPB_NIBBLE, 0))) {
319 kprintf("/NIBBLE");
320 ppb_1284_terminate(bus);
323 if (!(error = ppb_1284_negociate(bus, PPB_PS2, 0))) {
324 kprintf("/PS2");
325 ppb_1284_terminate(bus);
328 if (!(error = ppb_1284_negociate(bus, PPB_ECP, 0))) {
329 kprintf("/ECP");
330 ppb_1284_terminate(bus);
333 if (!(error = ppb_1284_negociate(bus, PPB_ECP, PPB_USE_RLE))) {
334 kprintf("/ECP_RLE");
335 ppb_1284_terminate(bus);
338 if (!(error = ppb_1284_negociate(bus, PPB_EPP, 0))) {
339 kprintf("/EPP");
340 ppb_1284_terminate(bus);
343 /* try more IEEE1284 modes */
344 if (bootverbose) {
345 if (!(error = ppb_1284_negociate(bus, PPB_NIBBLE,
346 PPB_REQUEST_ID))) {
347 kprintf("/NIBBLE_ID");
348 ppb_1284_terminate(bus);
351 if (!(error = ppb_1284_negociate(bus, PPB_PS2,
352 PPB_REQUEST_ID))) {
353 kprintf("/PS2_ID");
354 ppb_1284_terminate(bus);
357 if (!(error = ppb_1284_negociate(bus, PPB_ECP,
358 PPB_REQUEST_ID))) {
359 kprintf("/ECP_ID");
360 ppb_1284_terminate(bus);
363 if (!(error = ppb_1284_negociate(bus, PPB_ECP,
364 PPB_REQUEST_ID | PPB_USE_RLE))) {
365 kprintf("/ECP_RLE_ID");
366 ppb_1284_terminate(bus);
369 if (!(error = ppb_1284_negociate(bus, PPB_COMPATIBLE,
370 PPB_EXTENSIBILITY_LINK))) {
371 kprintf("/Extensibility Link");
372 ppb_1284_terminate(bus);
376 kprintf("\n");
378 /* detect PnP devices */
379 ppb->class_id = ppb_pnp_detect(bus);
381 return (0);
383 end_scan:
384 return (error);
387 #endif /* !DONTPROBE_1284 */
389 static int
390 ppbus_attach(device_t dev)
393 /* Locate our children */
394 bus_generic_probe(dev);
396 #ifndef DONTPROBE_1284
397 /* detect IEEE1284 compliant devices */
398 ppb_scan_bus(dev);
399 #endif /* !DONTPROBE_1284 */
401 /* launch attachement of the added children */
402 bus_generic_attach(dev);
404 return 0;
407 static int
408 ppbus_setup_intr(device_t bus, device_t child, struct resource *r, int flags,
409 void (*ihand)(void *), void *arg,
410 void **cookiep, lwkt_serialize_t serializer)
412 int error;
413 struct ppb_data *ppb = DEVTOSOFTC(bus);
414 struct ppb_device *ppbdev = (struct ppb_device *)device_get_ivars(child);
416 /* a device driver must own the bus to register an interrupt */
417 if (ppb->ppb_owner != child)
418 return (EINVAL);
420 if ((error = BUS_SETUP_INTR(device_get_parent(bus), child, r, flags,
421 ihand, arg, cookiep, serializer)))
422 return (error);
424 /* store the resource and the cookie for eventually forcing
425 * handler unregistration
427 ppbdev->intr_cookie = *cookiep;
428 ppbdev->intr_resource = r;
430 return (0);
433 static int
434 ppbus_teardown_intr(device_t bus, device_t child, struct resource *r, void *ih)
436 struct ppb_data *ppb = DEVTOSOFTC(bus);
437 struct ppb_device *ppbdev = (struct ppb_device *)device_get_ivars(child);
439 /* a device driver must own the bus to unregister an interrupt */
440 if ((ppb->ppb_owner != child) || (ppbdev->intr_cookie != ih) ||
441 (ppbdev->intr_resource != r))
442 return (EINVAL);
444 ppbdev->intr_cookie = NULL;
445 ppbdev->intr_resource = NULL;
447 /* pass unregistration to the upper layer */
448 return (BUS_TEARDOWN_INTR(device_get_parent(bus), child, r, ih));
452 * ppb_request_bus()
454 * Allocate the device to perform transfers.
456 * how : PPB_WAIT or PPB_DONTWAIT
459 ppb_request_bus(device_t bus, device_t dev, int how)
461 int error = 0;
462 struct ppb_data *ppb = DEVTOSOFTC(bus);
463 struct ppb_device *ppbdev = (struct ppb_device *)device_get_ivars(dev);
465 while (!error) {
466 crit_enter();
467 if (ppb->ppb_owner) {
468 crit_exit();
469 switch (how) {
470 case (PPB_WAIT | PPB_INTR):
471 error = tsleep(ppb, PCATCH, "ppbreq", 0);
472 break;
474 case (PPB_WAIT | PPB_NOINTR):
475 error = tsleep(ppb, 0, "ppbreq", 0);
476 break;
478 default:
479 return (EWOULDBLOCK);
480 break;
483 } else {
484 ppb->ppb_owner = dev;
486 /* restore the context of the device
487 * The first time, ctx.valid is certainly false
488 * then do not change anything. This is useful for
489 * drivers that do not set there operating mode
490 * during attachement
492 if (ppbdev->ctx.valid)
493 ppb_set_mode(bus, ppbdev->ctx.mode);
495 crit_exit();
496 return (0);
500 return (error);
504 * ppb_release_bus()
506 * Release the device allocated with ppb_request_bus()
509 ppb_release_bus(device_t bus, device_t dev)
511 int error;
512 struct ppb_data *ppb = DEVTOSOFTC(bus);
513 struct ppb_device *ppbdev = (struct ppb_device *)device_get_ivars(dev);
515 if (ppbdev->intr_resource && ppbdev->intr_cookie) {
516 /* force interrupt handler unregistration when the ppbus is released */
517 if ((error = BUS_TEARDOWN_INTR(bus, dev, ppbdev->intr_resource,
518 ppbdev->intr_cookie)))
519 return (error);
520 ppbdev->intr_cookie = NULL;
521 ppbdev->intr_resource = NULL;
524 crit_enter();
525 if (ppb->ppb_owner != dev) {
526 crit_exit();
527 return (EACCES);
529 ppb->ppb_owner = 0;
530 crit_exit();
532 /* save the context of the device */
533 ppbdev->ctx.mode = ppb_get_mode(bus);
535 /* ok, now the context of the device is valid */
536 ppbdev->ctx.valid = 1;
538 /* wakeup waiting processes */
539 wakeup(ppb);
541 return (0);
544 static devclass_t ppbus_devclass;
546 static device_method_t ppbus_methods[] = {
547 /* device interface */
548 DEVMETHOD(device_probe, ppbus_probe),
549 DEVMETHOD(device_attach, ppbus_attach),
551 /* bus interface */
552 DEVMETHOD(bus_add_child, ppbus_add_child),
553 DEVMETHOD(bus_print_child, ppbus_print_child),
554 DEVMETHOD(bus_read_ivar, ppbus_read_ivar),
555 DEVMETHOD(bus_write_ivar, ppbus_write_ivar),
556 DEVMETHOD(bus_setup_intr, ppbus_setup_intr),
557 DEVMETHOD(bus_teardown_intr, ppbus_teardown_intr),
558 DEVMETHOD(bus_alloc_resource, bus_generic_alloc_resource),
560 { 0, 0 }
563 static driver_t ppbus_driver = {
564 "ppbus",
565 ppbus_methods,
566 sizeof(struct ppb_data),
568 DRIVER_MODULE(ppbus, ppc, ppbus_driver, ppbus_devclass, 0, 0);