Home | History | Annotate | Line # | Download | only in pnpbios
pnpbios.c revision 1.13
      1  1.13   thorpej /* $NetBSD: pnpbios.c,v 1.13 2000/04/22 06:38:24 thorpej Exp $ */
      2   1.1  drochner /*
      3  1.11    chopps  * Copyright (c) 2000 Christian E. Hopps.  All rights reserved.
      4   1.1  drochner  * Copyright (c) 1999
      5   1.1  drochner  * 	Matthias Drochner.  All rights reserved.
      6   1.1  drochner  *
      7   1.1  drochner  * Redistribution and use in source and binary forms, with or without
      8   1.1  drochner  * modification, are permitted provided that the following conditions
      9   1.1  drochner  * are met:
     10   1.1  drochner  * 1. Redistributions of source code must retain the above copyright
     11   1.1  drochner  *    notice, this list of conditions, and the following disclaimer.
     12   1.1  drochner  * 2. Redistributions in binary form must reproduce the above copyright
     13   1.1  drochner  *    notice, this list of conditions and the following disclaimer in the
     14   1.1  drochner  *    documentation and/or other materials provided with the distribution.
     15   1.1  drochner  *
     16   1.1  drochner  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
     17   1.1  drochner  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     18   1.1  drochner  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     19   1.1  drochner  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
     20   1.1  drochner  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     21   1.1  drochner  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     22   1.1  drochner  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     23   1.1  drochner  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     24   1.1  drochner  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     25   1.1  drochner  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     26   1.1  drochner  * SUCH DAMAGE.
     27  1.10     soren  */
     28  1.10     soren 
     29  1.10     soren /*
     30  1.10     soren  * PnP BIOS documentation is available at the following locations.
     31  1.10     soren  *
     32  1.10     soren  * http://www.microsoft.com/hwdev/download/respec/pnpbios.zip
     33  1.10     soren  * http://www.microsoft.com/hwdev/download/respec/biosclar.zip
     34  1.10     soren  * http://www.microsoft.com/hwdev/download/respec/devids.txt
     35  1.11    chopps  *
     36  1.11    chopps  * PNPBIOSEVENTS is unfinished.  After coding what I did I discovered
     37  1.11    chopps  * I had no platforms to test on so someone else will need to finish
     38  1.11    chopps  * it.  I didn't want to toss the code though
     39   1.1  drochner  */
     40   1.1  drochner 
     41   1.1  drochner #include <sys/param.h>
     42   1.1  drochner #include <sys/systm.h>
     43   1.1  drochner #include <sys/device.h>
     44   1.1  drochner #include <sys/malloc.h>
     45  1.11    chopps #include <sys/kernel.h>
     46  1.11    chopps #include <sys/kthread.h>
     47  1.11    chopps 
     48  1.11    chopps #include <vm/vm.h>
     49  1.11    chopps #include <vm/vm_kern.h>
     50  1.11    chopps 
     51   1.1  drochner #include <machine/isa_machdep.h>
     52   1.1  drochner #include <machine/segments.h>
     53  1.11    chopps 
     54  1.11    chopps #include <dev/isa/isareg.h>
     55  1.11    chopps #include <dev/isapnp/isapnpreg.h>
     56   1.1  drochner 
     57   1.1  drochner #include <arch/i386/pnpbios/pnpbiosvar.h>
     58  1.11    chopps #include <arch/i386/pnpbios/pnpbiosreg.h>
     59   1.1  drochner 
     60   1.1  drochner #include "opt_pnpbiosverbose.h"
     61   1.5      matt #include "isadma.h"
     62   1.2   thorpej #include "locators.h"
     63   1.1  drochner 
     64  1.11    chopps #ifdef PNPBIOSDEBUG
     65  1.11    chopps #define	DPRINTF(x) printf x
     66  1.11    chopps #else
     67  1.11    chopps #define	DPRINTF(x)
     68  1.11    chopps #endif
     69  1.11    chopps 
     70   1.1  drochner struct pnpbios_softc {
     71  1.11    chopps 	struct device		sc_dev;
     72  1.11    chopps 	isa_chipset_tag_t	sc_ic;
     73  1.11    chopps 	struct proc		*sc_evthread;
     74  1.11    chopps 
     75  1.11    chopps 	u_int8_t	*sc_evaddr;
     76  1.11    chopps 	int		sc_version;
     77  1.11    chopps 	int		sc_control;
     78  1.11    chopps 	int		sc_threadrun;
     79   1.1  drochner };
     80   1.1  drochner 
     81  1.11    chopps #define	PNPGET4(p)	((p)[0] + ((p)[1] << 8) + \
     82  1.11    chopps 			((p)[2] << 16) + ((p)[3] << 24))
     83  1.11    chopps 
     84  1.11    chopps /* bios calls */
     85  1.11    chopps int pnpbios_getapmtable __P((u_char *, size_t *));
     86  1.11    chopps int pnpbios_getdockinfo __P((struct pnpdockinfo *));
     87  1.11    chopps int pnpbios_getnode __P((int, int *, u_int8_t *, size_t));
     88  1.11    chopps int pnpbios_getnumnodes __P((int *, size_t *));
     89  1.11    chopps int pnpbios_getevent __P((u_int16_t *event));
     90  1.11    chopps int pnpbios_sendmessage __P((int));
     91  1.11    chopps int pnpbios_setnode __P((int, int, const u_int8_t *, size_t));
     92  1.11    chopps 
     93  1.11    chopps void pnpbios_create_event_thread __P((void *));
     94  1.11    chopps void pnpbios_event_thread __P((void *));
     95  1.11    chopps 
     96  1.11    chopps /* configuration stuff */
     97  1.11    chopps caddr_t pnpbios_mapit __P((u_long, u_long, int));
     98  1.11    chopps caddr_t pnpbios_find __P((void));
     99  1.11    chopps int pnpbios_match __P((struct device *, struct cfdata *, void *));
    100  1.11    chopps void pnpbios_attach __P((struct device *, struct device *, void *));
    101  1.11    chopps void pnpbios_printres __P((struct pnpresources *));
    102  1.11    chopps int pnpbios_print __P((void *, const char *));
    103  1.11    chopps void pnpbios_id_to_string __P((u_int32_t, char *));
    104  1.11    chopps void pnpbios_attachnode __P((struct pnpbios_softc *, int, const u_int8_t *,
    105  1.11    chopps     size_t));
    106  1.11    chopps int pnp_scan __P((const u_int8_t **, size_t,struct pnpresources *, int));
    107  1.11    chopps int pnpbios_submatch __P((struct device *, struct cfdata *, void *));
    108  1.11    chopps extern int pnpbioscall __P((int));
    109  1.11    chopps 
    110  1.11    chopps /* scanning functions */
    111  1.11    chopps int pnp_compatid __P((struct pnpresources *, const void *, size_t));
    112  1.11    chopps int pnp_newirq __P((struct pnpresources *, const void *, size_t));
    113  1.11    chopps int pnp_newdma __P((struct pnpresources *, const void *, size_t));
    114  1.11    chopps int pnp_newioport __P((struct pnpresources *, const void *, size_t));
    115  1.11    chopps int pnp_newfixedioport __P((struct pnpresources *, const void *, size_t));
    116  1.11    chopps #ifdef PNPBIOSDEBUG
    117  1.11    chopps int pnp_debugdump __P((struct pnpresources *, const void *, size_t));
    118  1.11    chopps #endif
    119   1.1  drochner 
    120  1.11    chopps /*
    121  1.11    chopps  * small ressource types (beginning with 1)
    122  1.11    chopps  */
    123  1.11    chopps static struct{
    124  1.11    chopps 	int (*handler) __P((struct pnpresources *, const void *, size_t));
    125  1.11    chopps 	int minlen, maxlen;
    126  1.11    chopps } smallrescs[] = {
    127  1.11    chopps 	{0, 2, 2}, /* PnP version number */
    128  1.11    chopps 	{0, 5, 6}, /* logical device id */
    129  1.11    chopps 	{pnp_compatid, 4, 4}, /* compatible device id */
    130  1.11    chopps 	{pnp_newirq, 2, 3}, /* irq  descriptor */
    131  1.11    chopps 	{pnp_newdma, 2, 2}, /* dma  descriptor */
    132  1.11    chopps 	{0, 0, 1}, /* start dep */
    133  1.11    chopps 	{0, 0, 0}, /* end dep */
    134  1.11    chopps 	{pnp_newioport, 7, 7}, /* io descriptor */
    135  1.11    chopps 	{pnp_newfixedioport, 3, 3}, /* fixed io descriptor */
    136  1.11    chopps 	{0, -1, -1}, /* reserved */
    137  1.11    chopps 	{0, -1, -1},
    138  1.11    chopps 	{0, -1, -1},
    139  1.11    chopps 	{0, -1, -1},
    140  1.11    chopps 	{0, 1, 7}, /* vendor defined */
    141  1.11    chopps 	{0, 1, 1} /* end */
    142  1.11    chopps };
    143   1.2   thorpej 
    144   1.1  drochner 
    145   1.1  drochner struct cfattach pnpbios_ca = {
    146   1.1  drochner 	sizeof(struct pnpbios_softc), pnpbios_match, pnpbios_attach
    147   1.1  drochner };
    148   1.1  drochner 
    149   1.1  drochner /*
    150   1.1  drochner  * Private stack and return value buffer. Spec (1.0a, ch. 4.3) says that
    151   1.1  drochner  * 1024 bytes must be available to the BIOS function.
    152   1.1  drochner  */
    153   1.1  drochner #define PNPBIOS_BUFSIZE 4096
    154   1.1  drochner 
    155   1.1  drochner int pnpbios_enabled = 1;
    156   1.1  drochner size_t pnpbios_entry;
    157   1.1  drochner caddr_t pnpbios_scratchbuf;
    158   1.1  drochner 
    159   1.2   thorpej /*
    160   1.2   thorpej  * There can be only one of these, and the i386 ISA code needs to
    161   1.2   thorpej  * reference this.
    162   1.2   thorpej  */
    163   1.2   thorpej struct pnpbios_softc *pnpbios_softc;
    164   1.2   thorpej 
    165   1.1  drochner #define PNPBIOS_SIGNATURE ('$' | ('P' << 8) | ('n' << 16) | ('P' << 24))
    166   1.1  drochner 
    167  1.11    chopps caddr_t
    168   1.1  drochner pnpbios_find()
    169   1.1  drochner {
    170   1.1  drochner 	caddr_t p, c;
    171  1.11    chopps 	u_int8_t cksum;
    172   1.1  drochner 	size_t structlen;
    173   1.1  drochner 
    174   1.1  drochner 	for (p = (caddr_t)ISA_HOLE_VADDR(0xf0000);
    175   1.1  drochner 	     p <= (caddr_t)ISA_HOLE_VADDR(0xffff0);
    176   1.1  drochner 	     p += 16) {
    177   1.1  drochner 		if (*(int *)p != PNPBIOS_SIGNATURE)
    178   1.1  drochner 			continue;
    179  1.11    chopps 		structlen = *(u_int8_t *)(p + 5);
    180   1.1  drochner 		if ((structlen < 0x21) ||
    181   1.1  drochner 		    ((p + structlen - 1) > (caddr_t)ISA_HOLE_VADDR(0xfffff)))
    182   1.1  drochner 			continue;
    183   1.1  drochner 
    184   1.1  drochner 		cksum = 0;
    185   1.1  drochner 		for (c = p; c < p + structlen; c++)
    186  1.11    chopps 			cksum += *(u_int8_t *)c;
    187   1.1  drochner 		if (cksum != 0)
    188   1.1  drochner 			continue;
    189   1.1  drochner 
    190   1.1  drochner 		if (*(char *)(p + 4) != 0x10) {
    191   1.1  drochner 			printf("unknown version %x\n", *(char *)(p + 4));
    192   1.1  drochner 			continue;
    193   1.1  drochner 		}
    194   1.1  drochner 
    195   1.1  drochner 		return (p);
    196   1.1  drochner 	}
    197   1.1  drochner 
    198   1.1  drochner 	return (0);
    199   1.1  drochner }
    200   1.1  drochner 
    201   1.1  drochner int
    202   1.1  drochner pnpbios_probe()
    203   1.1  drochner {
    204   1.1  drochner 
    205   1.1  drochner 	return (pnpbios_find() != 0);
    206   1.1  drochner }
    207   1.1  drochner 
    208  1.11    chopps int
    209   1.1  drochner pnpbios_match(parent, match, aux)
    210   1.1  drochner 	struct device *parent;
    211   1.1  drochner 	struct cfdata *match;
    212   1.1  drochner 	void *aux;
    213   1.1  drochner {
    214   1.1  drochner 	struct pnpbios_attach_args *paa = aux;
    215   1.1  drochner 
    216   1.1  drochner 	/* These are not the droids you're looking for. */
    217   1.1  drochner 	if (strcmp(paa->paa_busname, "pnpbios") != 0)
    218   1.1  drochner 		return (0);
    219   1.1  drochner 
    220   1.1  drochner 	/* There can be only one! */
    221   1.2   thorpej 	if (pnpbios_softc != NULL)
    222   1.1  drochner 		return (0);
    223   1.1  drochner 
    224   1.1  drochner 	return (pnpbios_enabled);
    225   1.1  drochner }
    226   1.1  drochner 
    227  1.11    chopps caddr_t
    228  1.11    chopps pnpbios_mapit(addr, len, prot)
    229   1.1  drochner 	u_long addr, len;
    230   1.1  drochner 	int prot;
    231   1.1  drochner {
    232   1.1  drochner 	u_long startpa, pa, endpa;
    233   1.1  drochner 	vaddr_t startva, va;
    234   1.1  drochner 
    235   1.1  drochner 	pa = startpa = i386_trunc_page(addr);
    236   1.1  drochner 	endpa = i386_round_page(addr + len);
    237   1.1  drochner 
    238   1.1  drochner 	va = startva = uvm_km_valloc(kernel_map, endpa - startpa);
    239   1.1  drochner 	if (!startva)
    240   1.1  drochner 		return (0);
    241   1.1  drochner 	for (; pa < endpa; pa += NBPG, va += NBPG)
    242   1.1  drochner 		pmap_kenter_pa(va, pa, prot);
    243   1.1  drochner 
    244   1.1  drochner 	return ((caddr_t)(startva + (addr - startpa)));
    245   1.1  drochner }
    246   1.1  drochner 
    247  1.11    chopps void
    248   1.1  drochner pnpbios_attach(parent, self, aux)
    249   1.1  drochner 	struct device *parent, *self;
    250   1.1  drochner 	void *aux;
    251   1.1  drochner {
    252   1.1  drochner 	struct pnpbios_softc *sc = (struct pnpbios_softc *)self;
    253   1.1  drochner 	struct pnpbios_attach_args *paa = aux;
    254  1.11    chopps 	struct pnpdevnode *dn;
    255   1.1  drochner 	caddr_t p;
    256  1.11    chopps 	unsigned int codepbase, datapbase, evaddrp;
    257   1.1  drochner 	caddr_t codeva, datava;
    258   1.1  drochner 	extern char pnpbiostramp[], epnpbiostramp[];
    259   1.1  drochner 	int res, num, i, size, idx;
    260  1.11    chopps #ifdef PNPBIOSVERBOSE
    261  1.11    chopps 	struct pnpdockinfo di;
    262  1.11    chopps #endif
    263  1.11    chopps #ifdef PNPBIOSEVENTS
    264  1.11    chopps 	int evtype;
    265  1.11    chopps #endif
    266  1.11    chopps 	u_int8_t *buf;
    267   1.1  drochner 
    268   1.2   thorpej 	pnpbios_softc = sc;
    269   1.1  drochner 	sc->sc_ic = paa->paa_ic;
    270   1.1  drochner 
    271   1.5      matt #if NISADMA > 0
    272   1.1  drochner 	isa_dmainit(sc->sc_ic, I386_BUS_SPACE_IO, &isa_bus_dma_tag, self);
    273   1.5      matt #endif
    274   1.1  drochner 
    275   1.1  drochner 	p = pnpbios_find();
    276   1.1  drochner 	if (!p)
    277   1.1  drochner 		panic("pnpbios_attach: disappeared");
    278   1.1  drochner 
    279  1.11    chopps 	sc->sc_version = *(u_int8_t *)(p + 0x04);
    280  1.11    chopps 	sc->sc_control = *(u_int8_t *)(p + 0x06);
    281  1.11    chopps 	evaddrp = *(u_int32_t *)(p + 0x09);
    282  1.11    chopps 	codepbase = *(u_int32_t *)(p + 0x13);
    283  1.11    chopps 	datapbase = *(u_int32_t *)(p + 0x1d);
    284  1.11    chopps 	pnpbios_entry = *(u_int16_t *)(p + 0x11);
    285  1.11    chopps 
    286  1.11    chopps #ifdef PNPBIOSEVENTS
    287  1.11    chopps 	/* if we have an event mechnism queue a thread to deal with them */
    288  1.11    chopps 	evtype = (sc->sc_control & PNP_IC_CONTORL_EVENT_MASK);
    289  1.11    chopps 	if (evtype == PNP_IC_CONTROL_EVENT_POLL) {
    290  1.11    chopps 		sc->sc_evaddr = pnpbios_mapit(evaddrp, NBPG,
    291  1.11    chopps 			VM_PROT_READ | VM_PROT_WRITE);
    292  1.11    chopps 		if (!sc->sc_evaddr)
    293  1.11    chopps 			printf("pnpbios: couldn't map event flag 0x%08x\n",
    294  1.11    chopps 			    evaddrp);
    295  1.11    chopps 		DPRINTF(("pnpbios: event flag vaddr 0x%08x\n",
    296  1.11    chopps 		    (int)sc->sc_evaddr));
    297  1.11    chopps 	}
    298  1.11    chopps #endif
    299   1.1  drochner #ifdef PNPBIOSVERBOSE
    300  1.11    chopps 	printf(": code %x, data %x, entry %x, control %x eventp %x\n%s",
    301  1.11    chopps 	    codepbase, datapbase, pnpbios_entry, sc->sc_control,
    302  1.11    chopps 	    (int)evaddrp, self->dv_xname);
    303   1.1  drochner #endif
    304   1.1  drochner 
    305  1.11    chopps 	codeva = pnpbios_mapit(codepbase, 0x10000,
    306   1.1  drochner 		VM_PROT_READ | VM_PROT_WRITE | VM_PROT_EXECUTE);
    307  1.11    chopps 	datava = pnpbios_mapit(datapbase, 0x10000,
    308   1.1  drochner 		VM_PROT_READ | VM_PROT_WRITE);
    309   1.1  drochner 	if (codeva == 0 || datava == 0) {
    310   1.1  drochner 		printf("no vm for mapping\n");
    311   1.1  drochner 		return;
    312   1.1  drochner 	}
    313   1.1  drochner 	pnpbios_scratchbuf = malloc(PNPBIOS_BUFSIZE, M_DEVBUF, M_NOWAIT);
    314   1.1  drochner 
    315   1.1  drochner 	setsegment(&gdt[GPNPBIOSCODE_SEL].sd, codeva, 0xffff,
    316   1.1  drochner 		   SDT_MEMERA, SEL_KPL, 0, 0);
    317   1.1  drochner 	setsegment(&gdt[GPNPBIOSDATA_SEL].sd, datava, 0xffff,
    318   1.1  drochner 		   SDT_MEMRWA, SEL_KPL, 0, 0);
    319   1.1  drochner 	setsegment(&gdt[GPNPBIOSSCRATCH_SEL].sd,
    320   1.1  drochner 		   pnpbios_scratchbuf, PNPBIOS_BUFSIZE - 1,
    321   1.1  drochner 		   SDT_MEMRWA, SEL_KPL, 0, 0);
    322   1.1  drochner 	setsegment(&gdt[GPNPBIOSTRAMP_SEL].sd,
    323   1.1  drochner 		   pnpbiostramp, epnpbiostramp - pnpbiostramp - 1,
    324   1.1  drochner 		   SDT_MEMERA, SEL_KPL, 1, 0);
    325   1.1  drochner 
    326   1.1  drochner 	res = pnpbios_getnumnodes(&num, &size);
    327   1.1  drochner 	if (res) {
    328   1.1  drochner 		printf("pnpbios_getnumnodes: error %d\n", res);
    329   1.1  drochner 		return;
    330   1.1  drochner 	}
    331   1.1  drochner 
    332  1.11    chopps 	printf(": nodes %d, max len %d\n", num, size);
    333   1.1  drochner 	buf = malloc(size, M_DEVBUF, M_NOWAIT);
    334   1.1  drochner 
    335   1.1  drochner 	idx = 0;
    336   1.6  drochner 	for (i = 0; i < num && idx != 0xff; i++) {
    337   1.3  drochner 		int node = idx;
    338   1.1  drochner 		res = pnpbios_getnode(1, &idx, buf, size);
    339   1.1  drochner 		if (res) {
    340   1.1  drochner 			printf("pnpbios_getnode: error %d\n", res);
    341   1.1  drochner 			continue;
    342   1.1  drochner 		}
    343  1.11    chopps 		dn = (struct pnpdevnode *)buf;
    344  1.11    chopps 		if (dn->dn_handle != node)
    345  1.11    chopps 			printf("node idx: called %d, got %d\n", node,
    346  1.11    chopps 			    dn->dn_handle);
    347  1.11    chopps 		pnpbios_attachnode(sc, node, buf, dn->dn_size);
    348   1.1  drochner 	}
    349   1.6  drochner 	if (i != num)
    350   1.6  drochner 		printf("got only %d nodes\n", i);
    351   1.1  drochner 	if (idx != 0xff)
    352   1.1  drochner 		printf("last idx=%x\n", idx);
    353   1.1  drochner 
    354   1.1  drochner 	free(buf, M_DEVBUF);
    355  1.11    chopps 
    356  1.11    chopps #ifdef PNPBIOSVERBOSE
    357  1.11    chopps 	res = pnpbios_getdockinfo(&di);
    358  1.11    chopps 	if (res == PNP_RC_SYSTEM_NOT_DOCKED)
    359  1.11    chopps 		printf("%s: not docked\n", sc->sc_dev.dv_xname);
    360  1.11    chopps 	else if (res)
    361  1.11    chopps 		DPRINTF(("pnpbios: dockinfo fails 0x%02x\n", res));
    362  1.11    chopps 	else {
    363  1.11    chopps 		char idstr[8];
    364  1.11    chopps 		pnpbios_id_to_string(di.di_id, idstr);
    365  1.11    chopps 		printf("%s: dock id %s serial number %d capabilities 0x%04x\n",
    366  1.11    chopps 		    sc->sc_dev.dv_xname, idstr, di.di_serial, di.di_cap);
    367  1.11    chopps 	}
    368  1.11    chopps #endif
    369  1.11    chopps #ifdef PNPBIOSEVENTS
    370  1.11    chopps 	/* if we have an event mechnism queue a thread to deal with them */
    371  1.11    chopps 	/* XXX need to update with irq if we do that */
    372  1.11    chopps 	if (evtype != PNP_IC_CONTROL_EVENT_NONE) {
    373  1.11    chopps 		if (evtype != PNP_IC_CONTROL_EVENT_POLL || sc->sc_evaddr) {
    374  1.11    chopps 			sc->sc_threadrun = 1;
    375  1.11    chopps 			config_pending_incr();
    376  1.11    chopps 			kthread_create(pnpbios_create_event_thread, sc);
    377  1.11    chopps 		}
    378  1.11    chopps 	}
    379  1.11    chopps #endif
    380   1.1  drochner }
    381   1.1  drochner 
    382  1.11    chopps int
    383   1.1  drochner pnpbios_getnumnodes(nump, sizep)
    384   1.1  drochner 	int *nump;
    385   1.1  drochner 	size_t *sizep;
    386   1.1  drochner {
    387   1.1  drochner 	int res;
    388   1.1  drochner 	short *help = (short *)(pnpbios_scratchbuf + PNPBIOS_BUFSIZE);
    389   1.1  drochner 
    390   1.1  drochner 	*--help = GSEL(GPNPBIOSDATA_SEL, SEL_KPL);
    391   1.1  drochner 	*--help = GSEL(GPNPBIOSSCRATCH_SEL, SEL_KPL);
    392   1.1  drochner 	*--help = 2; /* buffer offset for node size */
    393   1.1  drochner 	*--help = GSEL(GPNPBIOSSCRATCH_SEL, SEL_KPL);
    394   1.1  drochner 	*--help = 0; /* buffer offset for numnodes */
    395  1.11    chopps 	*--help = PNP_FC_GET_NUM_NODES;
    396   1.1  drochner 
    397   1.1  drochner 	res = pnpbioscall(((caddr_t)help) - pnpbios_scratchbuf);
    398   1.1  drochner 	if (res)
    399   1.1  drochner 		return (res);
    400   1.1  drochner 
    401   1.1  drochner 	*nump = *(short *)(pnpbios_scratchbuf + 0);
    402   1.1  drochner 	*sizep = *(short *)(pnpbios_scratchbuf + 2);
    403   1.1  drochner 	return (0);
    404   1.1  drochner }
    405   1.1  drochner 
    406  1.11    chopps int
    407   1.1  drochner pnpbios_getnode(flags, idxp, buf, len)
    408   1.1  drochner 	int flags;
    409   1.1  drochner 	int *idxp;
    410  1.11    chopps 	u_int8_t *buf;
    411   1.1  drochner 	size_t len;
    412   1.1  drochner {
    413   1.1  drochner 	int res;
    414   1.1  drochner 	short *help = (short *)(pnpbios_scratchbuf + PNPBIOS_BUFSIZE);
    415   1.1  drochner 
    416   1.1  drochner 	*--help = GSEL(GPNPBIOSDATA_SEL, SEL_KPL);
    417   1.1  drochner 	*--help = flags;
    418   1.1  drochner 	*--help = GSEL(GPNPBIOSSCRATCH_SEL, SEL_KPL);
    419   1.1  drochner 	*--help = 2; /* buffer offset for node data */
    420   1.1  drochner 	*--help = GSEL(GPNPBIOSSCRATCH_SEL, SEL_KPL);
    421   1.1  drochner 	*--help = 0; /* buffer offset for index in/out */
    422  1.11    chopps 	*--help = PNP_FC_GET_DEVICE_NODE;
    423   1.1  drochner 
    424   1.1  drochner 	*(short *)(pnpbios_scratchbuf + 0) = *idxp;
    425   1.1  drochner 
    426   1.1  drochner 	res = pnpbioscall(((caddr_t)help) - pnpbios_scratchbuf);
    427   1.1  drochner 	if (res)
    428   1.1  drochner 		return (res);
    429   1.1  drochner 
    430   1.1  drochner 	*idxp = *(short *)(pnpbios_scratchbuf + 0);
    431   1.1  drochner 	bcopy(pnpbios_scratchbuf + 2, buf, len);
    432   1.1  drochner 	return (0);
    433   1.1  drochner }
    434   1.1  drochner 
    435  1.11    chopps int
    436  1.11    chopps pnpbios_setnode(flags, idx, buf, len)
    437  1.11    chopps 	int flags, idx;
    438  1.11    chopps 	const u_int8_t *buf;
    439  1.11    chopps 	size_t len;
    440  1.11    chopps {
    441  1.11    chopps 	short *help = (short *)(pnpbios_scratchbuf + PNPBIOS_BUFSIZE);
    442  1.11    chopps 
    443  1.11    chopps 	*--help = GSEL(GPNPBIOSDATA_SEL, SEL_KPL);
    444  1.11    chopps 	*--help = flags;
    445  1.11    chopps 	*--help = GSEL(GPNPBIOSSCRATCH_SEL, SEL_KPL);
    446  1.11    chopps 	*--help = 0; /* buffer offset for node data */
    447  1.11    chopps 	*--help = idx;
    448  1.11    chopps 	*--help = PNP_FC_SET_DEVICE_NODE;
    449  1.11    chopps 
    450  1.11    chopps 	memcpy(pnpbios_scratchbuf, buf, len);
    451  1.11    chopps 
    452  1.11    chopps 	return (pnpbioscall(((caddr_t)help) - pnpbios_scratchbuf));
    453  1.11    chopps }
    454  1.11    chopps 
    455  1.11    chopps int
    456  1.11    chopps pnpbios_getevent(event)
    457  1.11    chopps 	u_int16_t *event;
    458  1.11    chopps {
    459  1.11    chopps 	int res;
    460  1.11    chopps 	short *help = (short *)(pnpbios_scratchbuf + PNPBIOS_BUFSIZE);
    461  1.11    chopps 
    462  1.11    chopps 	*--help = GSEL(GPNPBIOSDATA_SEL, SEL_KPL);
    463  1.11    chopps 	*--help = GSEL(GPNPBIOSSCRATCH_SEL, SEL_KPL);
    464  1.11    chopps 	*--help = 0; /* buffer offset for message data */
    465  1.11    chopps 	*--help = PNP_FC_GET_EVENT;
    466  1.11    chopps 
    467  1.11    chopps 	res = pnpbioscall(((caddr_t)help) - pnpbios_scratchbuf);
    468  1.11    chopps 	*event = pnpbios_scratchbuf[0] + (pnpbios_scratchbuf[1] << 8);
    469  1.11    chopps 	return (res);
    470  1.11    chopps }
    471  1.11    chopps 
    472  1.11    chopps int
    473  1.11    chopps pnpbios_sendmessage(msg)
    474  1.11    chopps 	int msg;
    475  1.11    chopps {
    476  1.11    chopps 	short *help = (short *)(pnpbios_scratchbuf + PNPBIOS_BUFSIZE);
    477  1.11    chopps 
    478  1.11    chopps 	*--help = GSEL(GPNPBIOSDATA_SEL, SEL_KPL);
    479  1.11    chopps 	*--help = msg;
    480  1.11    chopps 	*--help = PNP_FC_SEND_MESSAGE;
    481  1.11    chopps 
    482  1.11    chopps 	return (pnpbioscall(((caddr_t)help) - pnpbios_scratchbuf));
    483  1.11    chopps }
    484  1.11    chopps 
    485  1.11    chopps int
    486  1.11    chopps pnpbios_getdockinfo(di)
    487  1.11    chopps 	struct pnpdockinfo *di;
    488  1.11    chopps {
    489  1.11    chopps 	int res;
    490  1.11    chopps 	short *help = (short *)(pnpbios_scratchbuf + PNPBIOS_BUFSIZE);
    491  1.11    chopps 
    492  1.11    chopps 	*--help = GSEL(GPNPBIOSDATA_SEL, SEL_KPL);
    493  1.11    chopps 	*--help = GSEL(GPNPBIOSSCRATCH_SEL, SEL_KPL);
    494  1.11    chopps 	*--help = 0; /* buffer offset for dock info */
    495  1.11    chopps 	*--help = PNP_FC_GET_DOCK_INFO;
    496  1.11    chopps 
    497  1.11    chopps 	res = pnpbioscall(((caddr_t)help) - pnpbios_scratchbuf);
    498  1.11    chopps 	memcpy(di, pnpbios_scratchbuf, sizeof(*di));
    499  1.11    chopps 	return (res);
    500  1.11    chopps }
    501  1.11    chopps 
    502  1.11    chopps /* XXX we don't support more than PNPBIOS_BUFSIZE - (stacklen + 2) */
    503  1.11    chopps int
    504  1.11    chopps pnpbios_getapmtable(tab, len)
    505  1.11    chopps 	u_int8_t *tab;
    506  1.11    chopps 	size_t *len;
    507  1.11    chopps {
    508  1.11    chopps 	short *help = (short *)(pnpbios_scratchbuf + PNPBIOS_BUFSIZE);
    509  1.11    chopps 	size_t origlen, stacklen;
    510  1.11    chopps 	int res;
    511  1.11    chopps 
    512  1.11    chopps 	*--help = GSEL(GPNPBIOSDATA_SEL, SEL_KPL);
    513  1.11    chopps 	*--help = GSEL(GPNPBIOSSCRATCH_SEL, SEL_KPL);
    514  1.11    chopps 	*--help = 2; /* buffer offset for table */
    515  1.11    chopps 	*--help = GSEL(GPNPBIOSSCRATCH_SEL, SEL_KPL);
    516  1.11    chopps 	*--help = 0; /* buffer offset for length */
    517  1.11    chopps 	*--help = PNP_FC_GET_APM_TABLE;
    518  1.11    chopps 
    519  1.11    chopps 	origlen = *len;
    520  1.11    chopps 	stacklen = (caddr_t)help - pnpbios_scratchbuf;
    521  1.11    chopps 	if (origlen > PNPBIOS_BUFSIZE - stacklen - 2)
    522  1.11    chopps 		origlen = PNPBIOS_BUFSIZE - stacklen - 2;
    523  1.11    chopps 	*(u_int16_t *)(pnpbios_scratchbuf) = origlen;
    524  1.11    chopps 
    525  1.11    chopps 	res = pnpbioscall(((caddr_t)help) - pnpbios_scratchbuf);
    526  1.11    chopps 	*len = *(u_int16_t *)pnpbios_scratchbuf;
    527  1.11    chopps 	if (res)
    528  1.11    chopps 		return (res);
    529  1.11    chopps 	if (origlen && *len > origlen) {
    530  1.11    chopps 		printf("pnpbios: returned apm table exceed requested size\n");
    531  1.11    chopps 		return (PNP_RC_BUFFER_TOO_SMALL);
    532  1.11    chopps 	}
    533  1.11    chopps 	memcpy(tab, pnpbios_scratchbuf + 2, *len);
    534  1.11    chopps 	return (0);
    535  1.11    chopps }
    536  1.11    chopps 
    537  1.11    chopps void
    538  1.11    chopps pnpbios_id_to_string(pnpid, s)
    539  1.11    chopps 	u_int32_t pnpid;
    540   1.1  drochner 	char *s;
    541   1.1  drochner {
    542   1.1  drochner 	static char hex[] = "0123456789ABCDEF";
    543  1.11    chopps 	u_int8_t *id;
    544   1.1  drochner 
    545  1.11    chopps 	id = (u_int8_t *)&pnpid;
    546   1.1  drochner 	*s++ = 'A' + (id[0] >> 2) - 1;
    547   1.1  drochner 	*s++ = 'A' + ((id[0] & 3) << 3) + (id[1] >> 5) - 1;
    548   1.1  drochner 	*s++ = 'A' + (id[1] & 0x1f) - 1;
    549   1.1  drochner 	*s++ = hex[id[2] >> 4];
    550   1.1  drochner 	*s++ = hex[id[2] & 0x0f];
    551   1.1  drochner 	*s++ = hex[id[3] >> 4];
    552   1.1  drochner 	*s++ = hex[id[3] & 0x0f];
    553   1.1  drochner 	*s = '\0';
    554   1.1  drochner }
    555   1.1  drochner 
    556  1.11    chopps void
    557   1.1  drochner pnpbios_printres(r)
    558   1.1  drochner 	struct pnpresources *r;
    559   1.1  drochner {
    560   1.1  drochner 	struct pnp_mem *mem;
    561   1.1  drochner 	struct pnp_io *io;
    562   1.1  drochner 	struct pnp_irq *irq;
    563   1.1  drochner 	struct pnp_dma *dma;
    564   1.1  drochner 	int p = 0;
    565   1.1  drochner 
    566   1.1  drochner 	mem = SIMPLEQ_FIRST(&r->mem);
    567   1.1  drochner 	if (mem) {
    568   1.1  drochner 		printf("mem");
    569   1.1  drochner 		do {
    570   1.1  drochner 			printf(" %x", mem->minbase);
    571   1.1  drochner 			if (mem->len > 1)
    572   1.1  drochner 				printf("-%x", mem->minbase + mem->len - 1);
    573   1.1  drochner 		} while ((mem = SIMPLEQ_NEXT(mem, next)));
    574   1.1  drochner 		p++;
    575   1.1  drochner 	}
    576   1.1  drochner 	io = SIMPLEQ_FIRST(&r->io);
    577   1.1  drochner 	if (io) {
    578   1.1  drochner 		if (p++)
    579   1.1  drochner 			printf(", ");
    580   1.1  drochner 		printf("io");
    581   1.1  drochner 		do {
    582   1.1  drochner 			printf(" %x", io->minbase);
    583   1.1  drochner 			if (io->len > 1)
    584   1.1  drochner 				printf("-%x", io->minbase + io->len - 1);
    585   1.1  drochner 		} while ((io = SIMPLEQ_NEXT(io, next)));
    586   1.1  drochner 	}
    587   1.1  drochner 	irq = SIMPLEQ_FIRST(&r->irq);
    588   1.1  drochner 	if (irq) {
    589   1.1  drochner 		if (p++)
    590   1.1  drochner 			printf(", ");
    591   1.1  drochner 		printf("irq");
    592   1.1  drochner 		do {
    593   1.1  drochner 			printf(" %d", ffs(irq->mask) - 1);
    594   1.1  drochner 		} while ((irq = SIMPLEQ_NEXT(irq, next)));
    595   1.1  drochner 	}
    596   1.1  drochner 	dma = SIMPLEQ_FIRST(&r->dma);
    597   1.1  drochner 	if (dma) {
    598   1.1  drochner 		if (p)
    599   1.1  drochner 			printf(", ");
    600   1.1  drochner 		printf("dma");
    601   1.1  drochner 		do {
    602   1.1  drochner 			printf(" %d", ffs(dma->mask) - 1);
    603   1.1  drochner 		} while ((dma = SIMPLEQ_NEXT(dma, next)));
    604   1.1  drochner 	}
    605   1.1  drochner }
    606   1.1  drochner 
    607  1.11    chopps int
    608   1.1  drochner pnpbios_print(aux, pnp)
    609   1.1  drochner 	void *aux;
    610   1.1  drochner 	const char *pnp;
    611   1.1  drochner {
    612   1.1  drochner 	struct pnpbiosdev_attach_args *aa = aux;
    613   1.1  drochner 
    614   1.1  drochner 	if (pnp)
    615   1.1  drochner 		return (QUIET);
    616   1.1  drochner 
    617   1.2   thorpej 	printf(" index %d (%s", aa->idx, aa->primid);
    618   1.1  drochner 	if (aa->resc->longname)
    619   1.1  drochner 		printf(", %s", aa->resc->longname);
    620   1.1  drochner 	if (aa->idstr != aa->primid)
    621   1.1  drochner 		printf(", attached as %s", aa->idstr);
    622   1.2   thorpej 	printf(")");
    623   1.2   thorpej 
    624   1.2   thorpej 	return (0);
    625   1.2   thorpej }
    626   1.2   thorpej 
    627   1.2   thorpej void
    628   1.2   thorpej pnpbios_print_devres(dev, aa)
    629   1.2   thorpej 	struct device *dev;
    630   1.2   thorpej 	struct pnpbiosdev_attach_args *aa;
    631   1.2   thorpej {
    632   1.2   thorpej 
    633   1.2   thorpej 	printf("%s: ", dev->dv_xname);
    634   1.1  drochner 	pnpbios_printres(aa->resc);
    635   1.2   thorpej 	printf("\n");
    636   1.2   thorpej }
    637   1.1  drochner 
    638  1.11    chopps int
    639   1.2   thorpej pnpbios_submatch(parent, match, aux)
    640   1.2   thorpej 	struct device *parent;
    641   1.2   thorpej 	struct cfdata *match;
    642   1.2   thorpej 	void *aux;
    643   1.2   thorpej {
    644   1.2   thorpej 	struct pnpbiosdev_attach_args *aa = aux;
    645   1.2   thorpej 
    646   1.2   thorpej 	if (match->cf_loc[PNPBIOSCF_INDEX] != PNPBIOSCF_INDEX_DEFAULT &&
    647   1.2   thorpej 	    match->cf_loc[PNPBIOSCF_INDEX] != aa->idx)
    648   1.2   thorpej 		return (0);
    649   1.2   thorpej 
    650   1.2   thorpej 	return ((*match->cf_attach->ca_match)(parent, match, aux));
    651   1.1  drochner }
    652   1.1  drochner 
    653  1.11    chopps void
    654   1.2   thorpej pnpbios_attachnode(sc, idx, buf, len)
    655   1.1  drochner 	struct pnpbios_softc *sc;
    656   1.2   thorpej 	int idx;
    657  1.11    chopps 	const u_int8_t *buf;
    658   1.1  drochner 	size_t len;
    659   1.1  drochner {
    660  1.11    chopps 	struct pnpdevnode *dn;
    661  1.11    chopps 	const u_int8_t *p;
    662   1.1  drochner 	char idstr[8];
    663   1.1  drochner 	struct pnpresources r, s;
    664   1.1  drochner 	struct pnpbiosdev_attach_args aa;
    665   1.1  drochner 	struct pnp_compatid *compatid;
    666  1.11    chopps 	int res, i;
    667   1.1  drochner 
    668  1.11    chopps 	dn = (struct pnpdevnode *)buf;
    669  1.11    chopps 	pnpbios_id_to_string(dn->dn_product, idstr);
    670  1.11    chopps 	p = (u_char *)(dn + 1);
    671  1.11    chopps 
    672  1.11    chopps 	DPRINTF(("%s: type 0x%02x subtype 0x%02x dpi 0x%02x attr 0x%04x:\n",
    673  1.11    chopps 	    idstr, dn->dn_type, dn->dn_subtype, dn->dn_dpi, dn->dn_attr));
    674  1.11    chopps 	DPRINTF(("%s: allocated config scan:\n", idstr));
    675   1.1  drochner 	res = pnp_scan(&p, len - 12, &r, 0);
    676   1.1  drochner 	if (res < 0) {
    677   1.1  drochner 		printf("error in config data\n");
    678   1.1  drochner 		goto dump;
    679   1.1  drochner 	}
    680   1.1  drochner 
    681   1.1  drochner 	/*
    682   1.1  drochner 	 * the following is consistency check only for now
    683   1.1  drochner 	 */
    684  1.11    chopps 	DPRINTF(("\tpossible config scan:\n"));
    685   1.1  drochner 	res = pnp_scan(&p, len - (p - buf), &s, 0);
    686   1.1  drochner 	if (res < 0) {
    687   1.1  drochner 		printf("error in possible configuration\n");
    688   1.1  drochner 		goto dump;
    689   1.1  drochner 	}
    690   1.1  drochner 
    691  1.11    chopps 	DPRINTF(("\tcompat id scan:\n"));
    692   1.1  drochner 	res = pnp_scan(&p, len - (p - buf), &s, 0);
    693   1.1  drochner 	if (res < 0) {
    694   1.1  drochner 		printf("error in compatible ID\n");
    695   1.1  drochner 		goto dump;
    696   1.1  drochner 	}
    697   1.1  drochner 
    698   1.1  drochner 	if (p != buf + len) {
    699   1.8  drochner 		printf("%s: length mismatch in node %d: used %d of %d Bytes\n",
    700   1.8  drochner 		       sc->sc_dev.dv_xname, idx, p - buf, len);
    701   1.8  drochner 		if (p > buf + len) {
    702   1.8  drochner 			/* XXX shouldn't happen - pnp_scan should catch it */
    703   1.8  drochner 			goto dump;
    704   1.8  drochner 		}
    705   1.8  drochner 		/* Crappy BIOS: Buffer is not fully used. Be generous. */
    706   1.8  drochner 	}
    707   1.8  drochner 
    708   1.8  drochner 	if (r.nummem + r.numio + r.numirq + r.numdma == 0) {
    709   1.8  drochner #ifdef PNPBIOSVERBOSE
    710   1.8  drochner 		printf("%s", idstr);
    711   1.8  drochner 		if (r.longname)
    712   1.8  drochner 			printf(", %s", r.longname);
    713   1.8  drochner 		compatid = s.compatids;
    714   1.8  drochner 		while (compatid) {
    715   1.8  drochner 			printf(", %s", compatid->idstr);
    716   1.8  drochner 			compatid = compatid->next;
    717   1.8  drochner 		}
    718   1.8  drochner 		printf(" at %s index %d disabled\n", sc->sc_dev.dv_xname, idx);
    719   1.8  drochner #endif
    720   1.8  drochner 		return;
    721   1.1  drochner 	}
    722   1.1  drochner 
    723   1.1  drochner 	aa.pbt = 0; /* XXX placeholder */
    724   1.2   thorpej 	aa.idx = idx;
    725   1.1  drochner 	aa.resc = &r;
    726   1.1  drochner 	aa.ic = sc->sc_ic;
    727   1.1  drochner 	aa.primid = idstr;
    728   1.1  drochner 
    729   1.1  drochner 	/* first try the specific device ID */
    730   1.1  drochner 	aa.idstr = idstr;
    731   1.2   thorpej 	if (config_found_sm((struct device *)sc, &aa, pnpbios_print,
    732   1.2   thorpej 	    pnpbios_submatch))
    733   1.1  drochner 		return;
    734   1.1  drochner 
    735   1.1  drochner 	/* if no driver was found, try compatible IDs */
    736   1.1  drochner 	compatid = s.compatids;
    737   1.1  drochner 	while (compatid) {
    738   1.1  drochner 		aa.idstr = compatid->idstr;
    739   1.2   thorpej 		if (config_found_sm((struct device *)sc, &aa, pnpbios_print,
    740   1.2   thorpej 		    pnpbios_submatch))
    741   1.1  drochner 			return;
    742   1.1  drochner 		compatid = compatid->next;
    743   1.1  drochner 	}
    744   1.1  drochner 
    745   1.1  drochner #ifdef PNPBIOSVERBOSE
    746   1.1  drochner 	printf("%s", idstr);
    747   1.1  drochner 	if (r.longname)
    748   1.1  drochner 		printf(", %s", r.longname);
    749   1.1  drochner 	compatid = s.compatids;
    750   1.1  drochner 	while (compatid) {
    751   1.1  drochner 		printf(", %s", compatid->idstr);
    752   1.1  drochner 		compatid = compatid->next;
    753   1.1  drochner 	}
    754   1.1  drochner 	printf(" (");
    755   1.1  drochner 	pnpbios_printres(&r);
    756   1.2   thorpej 	printf(") at %s index %d ignored\n", sc->sc_dev.dv_xname, idx);
    757   1.1  drochner #endif
    758   1.1  drochner 
    759   1.1  drochner 	return;
    760   1.1  drochner 
    761   1.1  drochner 	/* XXX should free ressource lists */
    762   1.1  drochner 
    763   1.1  drochner dump:
    764  1.11    chopps 	i = 0;
    765  1.11    chopps #ifdef PNPBIOSDEBUG
    766  1.11    chopps 	/* print some useful info */
    767  1.11    chopps 	if (len >= sizeof(*dn)) {
    768  1.11    chopps 		printf("%s idx %d size %d type 0x%x:0x%x:0x%x attr 0x%x\n",
    769  1.11    chopps 		    idstr, dn->dn_handle, dn->dn_size, dn->dn_type,
    770  1.11    chopps 		    dn->dn_subtype, dn->dn_dpi, dn->dn_attr);
    771  1.11    chopps 		i += sizeof(*dn);
    772  1.11    chopps 	}
    773  1.11    chopps #endif
    774  1.11    chopps 	for (; i < len; i++)
    775   1.1  drochner 		printf(" %02x", buf[i]);
    776   1.1  drochner 	printf("\n");
    777   1.1  drochner }
    778   1.1  drochner 
    779  1.11    chopps int
    780   1.1  drochner pnp_scan(bufp, maxlen, r, in_depends)
    781  1.11    chopps 	const u_int8_t **bufp;
    782   1.1  drochner 	size_t maxlen;
    783   1.1  drochner 	struct pnpresources *r;
    784   1.1  drochner 	int in_depends;
    785   1.1  drochner {
    786  1.11    chopps 	const void *start;
    787  1.11    chopps 	const u_int8_t *p;
    788  1.11    chopps 	struct pnp_mem *mem;
    789   1.1  drochner 	int tag, type, len;
    790   1.1  drochner 	char *idstr;
    791   1.1  drochner 	int i;
    792  1.11    chopps 
    793  1.11    chopps 	p = *bufp;
    794   1.1  drochner 
    795   1.1  drochner 	bzero(r, sizeof(*r));
    796   1.1  drochner 	SIMPLEQ_INIT(&r->mem);
    797   1.1  drochner 	SIMPLEQ_INIT(&r->io);
    798   1.1  drochner 	SIMPLEQ_INIT(&r->irq);
    799   1.1  drochner 	SIMPLEQ_INIT(&r->dma);
    800   1.1  drochner 
    801   1.1  drochner 	for (;;) {
    802   1.1  drochner 		if (p >= *bufp + maxlen) {
    803   1.1  drochner 			printf("pnp_scanresources: end of buffer\n");
    804   1.1  drochner 			return (-1);
    805   1.1  drochner 		}
    806  1.11    chopps 		start = p;
    807  1.11    chopps 		tag = *p;
    808  1.11    chopps 		if (tag & ISAPNP_LARGE_TAG) {
    809  1.11    chopps 			len = *(u_int16_t *)(p + 1);
    810  1.11    chopps 			p += sizeof(struct pnplargeres) + len;
    811  1.11    chopps 
    812  1.11    chopps 			switch (tag) {
    813  1.11    chopps 			case ISAPNP_TAG_MEM_RANGE_DESC: {
    814  1.11    chopps 				const struct pnpmem16rangeres *res = start;
    815  1.11    chopps 				if (len != sizeof(*res) - 3) {
    816   1.1  drochner 					printf("pnp_scan: bad mem desc\n");
    817   1.1  drochner 					return (-1);
    818   1.1  drochner 				}
    819   1.1  drochner 
    820   1.1  drochner 				mem = malloc(sizeof(struct pnp_mem),
    821   1.1  drochner 					     M_DEVBUF, M_WAITOK);
    822  1.11    chopps 				mem->flags = res->r_flags;
    823  1.11    chopps 				mem->minbase = res->r_minbase << 8;
    824  1.11    chopps 				mem->maxbase = res->r_maxbase << 8;
    825  1.11    chopps 				mem->align = res->r_align;
    826   1.1  drochner 				if (mem->align == 0)
    827   1.1  drochner 					mem->align = 0x10000;
    828  1.11    chopps 				mem->len = res->r_len << 8;
    829  1.11    chopps 				DPRINTF(("\ttag memrange "));
    830   1.8  drochner 				goto gotmem;
    831  1.11    chopps 			}
    832  1.11    chopps 			case ISAPNP_TAG_ANSI_IDENT_STRING: {
    833  1.11    chopps 				const struct pnpansiidentres *res = start;
    834   1.1  drochner 				if (in_depends)
    835   1.1  drochner 					printf("ID in dep?\n");
    836   1.1  drochner 				idstr = malloc(len + 1, M_DEVBUF, M_NOWAIT);
    837   1.1  drochner 				for (i = 0; i < len; i++)
    838  1.11    chopps 					idstr[i] = res->r_id[i];
    839   1.1  drochner 				idstr[len] = '\0';
    840  1.11    chopps 
    841  1.11    chopps 				DPRINTF(("\ttag ansiident %s\n", idstr));
    842  1.11    chopps 
    843   1.9  drochner 				if (idstr[0] == '\0') {
    844   1.9  drochner 					/* disabled device */
    845   1.9  drochner 					free(idstr, M_DEVBUF);
    846   1.9  drochner 					break;
    847   1.9  drochner 				}
    848   1.1  drochner 				r->longname = idstr;
    849   1.7  drochner 				break;
    850  1.11    chopps 			}
    851  1.11    chopps 			case ISAPNP_TAG_MEM32_RANGE_DESC: {
    852  1.11    chopps 				const struct pnpmem32rangeres *res = start;
    853  1.11    chopps 				if (len != sizeof(*res) - 3) {
    854   1.7  drochner 					printf("pnp_scan: bad mem32 desc\n");
    855   1.7  drochner 					return (-1);
    856   1.7  drochner 				}
    857   1.7  drochner 
    858   1.7  drochner 				mem = malloc(sizeof(struct pnp_mem),
    859   1.7  drochner 					     M_DEVBUF, M_WAITOK);
    860  1.11    chopps 				mem->flags = res->r_flags;
    861  1.11    chopps 				mem->minbase = res->r_minbase;
    862  1.11    chopps 				mem->maxbase = res->r_maxbase;
    863  1.11    chopps 				mem->align = res->r_align;
    864  1.11    chopps 				mem->len = res->r_len;
    865  1.11    chopps 				DPRINTF(("\ttag mem32range "));
    866   1.8  drochner 				goto gotmem;
    867  1.11    chopps 			}
    868  1.11    chopps 			case ISAPNP_TAG_FIXED_MEM32_RANGE_DESC: {
    869  1.11    chopps 				const struct pnpfixedmem32rangeres *res = start;
    870  1.11    chopps 				if (len != sizeof(*res) - 3) {
    871   1.1  drochner 					printf("pnp_scan: bad mem32 desc\n");
    872   1.1  drochner 					return (-1);
    873   1.1  drochner 				}
    874   1.1  drochner 
    875   1.1  drochner 				mem = malloc(sizeof(struct pnp_mem),
    876   1.1  drochner 					     M_DEVBUF, M_WAITOK);
    877  1.11    chopps 				mem->flags = res->r_flags;
    878  1.11    chopps 				mem->minbase = res->r_base;
    879   1.1  drochner 				mem->maxbase = mem->minbase;
    880   1.1  drochner 				mem->align = 0;
    881  1.11    chopps 				mem->len = res->r_len;
    882  1.11    chopps 				DPRINTF(("\ttag fixedmem32range "));
    883   1.8  drochner gotmem:
    884   1.8  drochner 				if (mem->len == 0) { /* disabled */
    885  1.11    chopps 					DPRINTF(("zeroed\n"));
    886   1.8  drochner 					free(mem, M_DEVBUF);
    887   1.8  drochner 					break;
    888   1.8  drochner 				}
    889   1.8  drochner 				SIMPLEQ_INSERT_TAIL(&r->mem, mem, next);
    890   1.8  drochner 				r->nummem++;
    891  1.11    chopps 
    892  1.11    chopps 				DPRINTF(("flags %02x min %08x max %08x "
    893  1.11    chopps 				    "align %08x len %08x\n", mem->flags,
    894  1.11    chopps 				    mem->minbase, mem->maxbase, mem->align,
    895  1.11    chopps 				    mem->len));
    896  1.11    chopps 
    897   1.1  drochner 				break;
    898  1.11    chopps 			}
    899  1.11    chopps 			case ISAPNP_TAG_UNICODE_IDENT_STRING:
    900  1.11    chopps 			case ISAPNP_TAG_VENDOR_DEFINED:
    901   1.1  drochner 			default:
    902  1.11    chopps #ifdef PNPBIOSDEBUG
    903  1.11    chopps 				pnp_debugdump(r, start, len);
    904  1.11    chopps #endif
    905  1.11    chopps 				break;
    906   1.1  drochner 			}
    907   1.1  drochner 		} else {
    908   1.1  drochner 			type = (tag >> 3) & 0x0f;
    909   1.1  drochner 			len = tag & 0x07;
    910  1.11    chopps 			p += 1 + len;
    911   1.1  drochner 
    912   1.1  drochner 			if (type == 0 ||
    913   1.1  drochner 			    len < smallrescs[type - 1].minlen ||
    914   1.1  drochner 			    len > smallrescs[type - 1].maxlen) {
    915   1.1  drochner 				printf("pnp_scan: bad small resource\n");
    916   1.1  drochner 				return (-1);
    917   1.1  drochner 			}
    918  1.11    chopps 			if (type == ISAPNP_TAG_END) {
    919  1.11    chopps #ifdef PNPBIOSDEBUG
    920  1.11    chopps 				const struct pnpendres *res = start;
    921  1.11    chopps #endif
    922   1.1  drochner 				if (in_depends) {
    923  1.11    chopps 					/*
    924  1.11    chopps 					 * this seems to occur and is
    925  1.11    chopps 					 * an optimization to not require
    926  1.11    chopps 					 * the end dep in a depend
    927  1.11    chopps 					 * that ends the section
    928  1.11    chopps 					 */
    929  1.11    chopps 					p -= 1 + len;
    930   1.1  drochner 				}
    931  1.11    chopps 				DPRINTF(("\ttag end cksum %02x\n",
    932  1.11    chopps 				    res->r_cksum));
    933   1.1  drochner 				break;
    934   1.1  drochner 			}
    935  1.11    chopps 			if (type == ISAPNP_TAG_DEP_START) {
    936  1.11    chopps #ifdef PNPBIOSDEBUG
    937  1.11    chopps 				const struct pnpdepstartres *res = start;
    938  1.11    chopps #endif
    939   1.1  drochner 				struct pnpresources *new, *last;
    940  1.11    chopps 				int rv;
    941  1.11    chopps 
    942  1.11    chopps 				DPRINTF(("\ttag startdep flags %02x\n",
    943  1.11    chopps 				    len ? res->r_pri : ISAPNP_DEP_ACCEPTABLE));
    944   1.1  drochner 
    945   1.1  drochner 				if (r->dependant_link) {
    946   1.1  drochner 					printf("second dep?\n");
    947   1.1  drochner 					return (-1);
    948   1.1  drochner 				}
    949  1.11    chopps 				/* XXX not sure about this */
    950   1.1  drochner 				if (in_depends) {
    951   1.1  drochner 					*bufp = p;
    952   1.1  drochner 					return (1);
    953   1.1  drochner 				}
    954   1.1  drochner 				last = r;
    955   1.1  drochner 				do {
    956   1.1  drochner 					new = malloc(sizeof(*new),
    957   1.1  drochner 						     M_DEVBUF, M_NOWAIT);
    958   1.1  drochner 
    959  1.11    chopps 					rv = pnp_scan(&p, maxlen - (p - *bufp),
    960   1.1  drochner 						       new, 1);
    961  1.11    chopps 					if (rv < 0) {
    962  1.11    chopps 						printf("error in dependant "
    963  1.11    chopps 						    "function\n");
    964   1.1  drochner 						free(new, M_DEVBUF);
    965   1.1  drochner 						return (-1);
    966   1.1  drochner 					}
    967   1.1  drochner 					last->dependant_link = new;
    968   1.1  drochner 					last = new;
    969  1.11    chopps 				} while (rv > 0);
    970   1.1  drochner 				continue;
    971   1.1  drochner 			}
    972  1.11    chopps 			if (type == ISAPNP_TAG_DEP_END) {
    973  1.11    chopps 				DPRINTF(("\ttag enddep\n"));
    974   1.1  drochner 				if (!in_depends) {
    975  1.11    chopps 					printf("tag %d end dep?\n", tag);
    976   1.1  drochner 					return (-1);
    977   1.1  drochner 				}
    978   1.1  drochner 				break;
    979   1.1  drochner 			}
    980  1.11    chopps 			if (!smallrescs[type - 1].handler) {
    981  1.11    chopps #ifdef PNPBIOSDEBUG
    982  1.11    chopps 				pnp_debugdump(r, start, len);
    983  1.11    chopps #endif
    984  1.11    chopps 			} else if (
    985  1.11    chopps 			    (*smallrescs[type - 1].handler)(r, start, len))
    986  1.11    chopps 				return (-1);
    987   1.1  drochner 		}
    988   1.1  drochner 	}
    989   1.1  drochner 	*bufp = p;
    990   1.1  drochner 	return (0);
    991   1.1  drochner }
    992   1.1  drochner 
    993  1.11    chopps int
    994  1.11    chopps pnp_newirq(r, vres, len)
    995   1.1  drochner 	struct pnpresources *r;
    996  1.11    chopps 	const void *vres;
    997   1.1  drochner 	size_t len;
    998   1.1  drochner {
    999  1.11    chopps 	const struct pnpirqres *res;
   1000   1.1  drochner 	struct pnp_irq *irq;
   1001   1.1  drochner 
   1002  1.11    chopps 	res = vres;
   1003  1.11    chopps 	if (res->r_mask == 0) { /* disabled */
   1004  1.11    chopps 		DPRINTF(("\ttag irq zeroed\n"));
   1005   1.8  drochner 		return (0);
   1006   1.8  drochner 	}
   1007   1.1  drochner 	irq = malloc(sizeof(struct pnp_irq), M_DEVBUF, M_NOWAIT);
   1008  1.11    chopps 	irq->mask = res->r_mask;
   1009   1.1  drochner 	if (len > 2)
   1010  1.11    chopps 		irq->flags = res->r_info;
   1011   1.1  drochner 	else
   1012   1.1  drochner 		irq->flags = 0x01;
   1013   1.1  drochner 	SIMPLEQ_INSERT_TAIL(&r->irq, irq, next);
   1014   1.1  drochner 	r->numirq++;
   1015  1.11    chopps 
   1016  1.11    chopps 	DPRINTF(("\ttag irq flags %02x mask %04x\n", irq->flags,irq->mask));
   1017  1.11    chopps 
   1018   1.1  drochner 	return (0);
   1019   1.1  drochner }
   1020   1.1  drochner 
   1021  1.11    chopps int
   1022  1.11    chopps pnp_newdma(r, vres, len)
   1023   1.1  drochner 	struct pnpresources *r;
   1024  1.11    chopps 	const void *vres;
   1025   1.1  drochner 	size_t len;
   1026   1.1  drochner {
   1027  1.11    chopps 	const struct pnpdmares *res;
   1028   1.1  drochner 	struct pnp_dma *dma;
   1029   1.1  drochner 
   1030  1.11    chopps 	res = vres;
   1031  1.11    chopps 	if (res->r_mask == 0) { /* disabled */
   1032  1.11    chopps 		DPRINTF(("\ttag dma zeroed\n"));
   1033   1.8  drochner 		return (0);
   1034   1.8  drochner 	}
   1035   1.1  drochner 	dma = malloc(sizeof(struct pnp_dma), M_DEVBUF, M_NOWAIT);
   1036  1.11    chopps 	dma->mask = res->r_mask;
   1037  1.11    chopps 	dma->flags = res->r_flags;
   1038   1.1  drochner 	SIMPLEQ_INSERT_TAIL(&r->dma, dma, next);
   1039   1.1  drochner 	r->numdma++;
   1040  1.11    chopps 
   1041  1.11    chopps 	DPRINTF(("\ttag dma flags %02x mask %02x\n", dma->flags,dma->mask));
   1042  1.11    chopps 
   1043   1.1  drochner 	return (0);
   1044   1.1  drochner }
   1045   1.1  drochner 
   1046  1.11    chopps int
   1047  1.11    chopps pnp_newioport(r, vres, len)
   1048   1.1  drochner 	struct pnpresources *r;
   1049  1.11    chopps 	const void *vres;
   1050   1.1  drochner 	size_t len;
   1051   1.1  drochner {
   1052  1.11    chopps 	const struct pnpportres *res;
   1053   1.1  drochner 	struct pnp_io *io;
   1054   1.1  drochner 
   1055  1.11    chopps 	res = vres;
   1056  1.11    chopps 	if (res->r_len == 0) { /* disabled */
   1057  1.11    chopps 		DPRINTF(("\ttag io zeroed\n"));
   1058   1.8  drochner 		return (0);
   1059   1.8  drochner 	}
   1060   1.1  drochner 	io = malloc(sizeof(struct pnp_io), M_DEVBUF, M_NOWAIT);
   1061  1.11    chopps 	io->flags = res->r_flags;
   1062  1.11    chopps 	io->minbase = res->r_minbase;
   1063  1.11    chopps 	io->maxbase = res->r_maxbase;
   1064  1.11    chopps 	io->align = res->r_align;
   1065  1.11    chopps 	io->len = res->r_len;
   1066   1.8  drochner 	SIMPLEQ_INSERT_TAIL(&r->io, io, next);
   1067   1.8  drochner 	r->numio++;
   1068  1.11    chopps 
   1069  1.11    chopps 	DPRINTF(("\ttag io flags %02x min %04x max %04x align "
   1070  1.11    chopps 	    "0x%02x len 0x%02x\n", io->flags, io->minbase, io->maxbase,
   1071  1.11    chopps 	    io->align, io->len));
   1072  1.11    chopps 
   1073   1.8  drochner 	return (0);
   1074   1.8  drochner }
   1075   1.8  drochner 
   1076  1.11    chopps int
   1077  1.11    chopps pnp_newfixedioport(r, vres, len)
   1078   1.8  drochner 	struct pnpresources *r;
   1079  1.11    chopps 	const void *vres;
   1080   1.8  drochner 	size_t len;
   1081   1.8  drochner {
   1082  1.11    chopps 	const struct pnpfixedportres *res;
   1083   1.8  drochner 	struct pnp_io *io;
   1084   1.8  drochner 
   1085  1.11    chopps 	res = vres;
   1086  1.11    chopps 	if (res->r_len == 0) { /* disabled */
   1087  1.11    chopps 		DPRINTF(("\ttag fixedio zeroed\n"));
   1088   1.8  drochner 		return (0);
   1089   1.8  drochner 	}
   1090   1.8  drochner 	io = malloc(sizeof(struct pnp_io), M_DEVBUF, M_NOWAIT);
   1091   1.8  drochner 	io->flags = 1; /* 10 bit decoding */
   1092  1.11    chopps 	io->minbase = io->maxbase = res->r_base;
   1093   1.8  drochner 	io->align = 1;
   1094  1.11    chopps 	io->len = res->r_len;
   1095   1.1  drochner 	SIMPLEQ_INSERT_TAIL(&r->io, io, next);
   1096   1.1  drochner 	r->numio++;
   1097  1.11    chopps 
   1098  1.11    chopps 	DPRINTF(("\ttag fixedio flags %02x base %04x align %02x len %02x\n",
   1099  1.11    chopps 	    io->flags, io->minbase, io->align, io->len));
   1100  1.11    chopps 
   1101   1.1  drochner 	return (0);
   1102   1.1  drochner }
   1103   1.1  drochner 
   1104  1.11    chopps int
   1105  1.11    chopps pnp_compatid(r, vres, len)
   1106   1.1  drochner 	struct pnpresources *r;
   1107  1.11    chopps 	const void *vres;
   1108   1.1  drochner 	size_t len;
   1109   1.1  drochner {
   1110  1.11    chopps 	const struct pnpcompatres *res;
   1111   1.1  drochner 	struct pnp_compatid *id;
   1112   1.1  drochner 
   1113  1.11    chopps 	res = vres;
   1114   1.1  drochner 	id = malloc(sizeof(*id), M_DEVBUF, M_NOWAIT);
   1115  1.11    chopps 	pnpbios_id_to_string(res->r_id, id->idstr);
   1116   1.1  drochner 	id->next = r->compatids;
   1117   1.1  drochner 	r->compatids = id;
   1118  1.11    chopps 
   1119  1.11    chopps 	DPRINTF(("\ttag compatid %s\n", id->idstr));
   1120  1.11    chopps 
   1121  1.11    chopps 	return (0);
   1122  1.11    chopps }
   1123  1.11    chopps 
   1124  1.11    chopps #ifdef PNPBIOSDEBUG
   1125  1.11    chopps int
   1126  1.11    chopps pnp_debugdump(r, vres, len)
   1127  1.11    chopps 	struct pnpresources *r;
   1128  1.11    chopps 	const void *vres;
   1129  1.11    chopps 	size_t len;
   1130  1.11    chopps {
   1131  1.11    chopps 	const u_int8_t *res;
   1132  1.11    chopps 	int type, i;
   1133  1.11    chopps 
   1134  1.11    chopps 	if (res[0] & ISAPNP_LARGE_TAG) {
   1135  1.11    chopps 		type = res[0] & 0x7f;
   1136  1.11    chopps 		printf("\tTAG %02x len %04x %s", type, len, len ? "data" : "");
   1137  1.11    chopps 		i = 3;
   1138  1.11    chopps 	} else {
   1139  1.11    chopps 		type = (res[0] >> 3) & 0x0f;
   1140  1.11    chopps 		printf("\tTAG %02x len %02x %s", type, len, len ? "data" : "");
   1141  1.11    chopps 		i = 1;
   1142  1.11    chopps 	}
   1143  1.11    chopps 	for (; i < len; i++)
   1144  1.11    chopps 		printf(" %02x", res[i]);
   1145  1.11    chopps 	printf("\n");
   1146  1.11    chopps 
   1147   1.1  drochner 	return (0);
   1148   1.1  drochner }
   1149  1.11    chopps #endif
   1150   1.1  drochner 
   1151   1.1  drochner int
   1152   1.1  drochner pnpbios_io_map(pbt, resc, idx, tagp, hdlp)
   1153   1.1  drochner 	pnpbios_tag_t pbt;
   1154   1.1  drochner 	struct pnpresources *resc;
   1155   1.1  drochner 	int idx;
   1156   1.1  drochner 	bus_space_tag_t *tagp;
   1157   1.1  drochner 	bus_space_handle_t *hdlp;
   1158   1.1  drochner {
   1159   1.1  drochner 	struct pnp_io *io;
   1160   1.1  drochner 
   1161   1.1  drochner 	if (idx >= resc->numio)
   1162   1.1  drochner 		return (EINVAL);
   1163   1.1  drochner 
   1164   1.1  drochner 	io = SIMPLEQ_FIRST(&resc->io);
   1165   1.1  drochner 	while (idx--)
   1166   1.1  drochner 		io = SIMPLEQ_NEXT(io, next);
   1167   1.1  drochner 
   1168   1.1  drochner 	*tagp = I386_BUS_SPACE_IO;
   1169   1.1  drochner 	return (i386_memio_map(I386_BUS_SPACE_IO, io->minbase, io->len,
   1170   1.1  drochner 			       0, hdlp));
   1171  1.12      groo }
   1172  1.12      groo 
   1173  1.12      groo void
   1174  1.12      groo pnpbios_io_unmap(pbt, resc, idx, tag, hdl)
   1175  1.12      groo 	pnpbios_tag_t pbt;
   1176  1.12      groo 	struct pnpresources *resc;
   1177  1.12      groo 	int idx;
   1178  1.12      groo 	bus_space_tag_t tag;
   1179  1.12      groo 	bus_space_handle_t hdl;
   1180  1.12      groo {
   1181  1.12      groo 	struct pnp_io *io;
   1182  1.12      groo 
   1183  1.12      groo 	if (idx >= resc->numio)
   1184  1.12      groo 		return;
   1185  1.12      groo 
   1186  1.12      groo 	io = SIMPLEQ_FIRST(&resc->io);
   1187  1.12      groo 	while (idx--)
   1188  1.12      groo 		io = SIMPLEQ_NEXT(io, next);
   1189  1.12      groo 
   1190  1.12      groo 	i386_memio_unmap(tag, hdl, io->len);
   1191   1.1  drochner }
   1192   1.1  drochner 
   1193   1.1  drochner int
   1194   1.1  drochner pnpbios_getiobase(pbt, resc, idx, tagp, basep)
   1195   1.1  drochner 	pnpbios_tag_t pbt;
   1196   1.1  drochner 	struct pnpresources *resc;
   1197   1.1  drochner 	int idx;
   1198   1.1  drochner 	bus_space_tag_t *tagp;
   1199   1.1  drochner 	int *basep;
   1200   1.1  drochner {
   1201   1.1  drochner 	struct pnp_io *io;
   1202   1.1  drochner 
   1203   1.1  drochner 	if (idx >= resc->numio)
   1204   1.1  drochner 		return (EINVAL);
   1205   1.1  drochner 
   1206   1.1  drochner 	io = SIMPLEQ_FIRST(&resc->io);
   1207   1.1  drochner 	while (idx--)
   1208   1.1  drochner 		io = SIMPLEQ_NEXT(io, next);
   1209   1.1  drochner 
   1210   1.1  drochner 	if (tagp)
   1211   1.1  drochner 		*tagp = I386_BUS_SPACE_IO;
   1212   1.1  drochner 	if (basep)
   1213   1.1  drochner 		*basep = io->minbase;
   1214   1.1  drochner 	return (0);
   1215   1.1  drochner }
   1216   1.1  drochner 
   1217   1.1  drochner void *
   1218   1.1  drochner pnpbios_intr_establish(pbt, resc, idx, level, fcn, arg)
   1219   1.1  drochner 	pnpbios_tag_t pbt;
   1220   1.1  drochner 	struct pnpresources *resc;
   1221   1.1  drochner 	int idx, level;
   1222   1.1  drochner 	int (*fcn) __P((void *));
   1223   1.1  drochner 	void *arg;
   1224   1.1  drochner {
   1225   1.1  drochner 	struct pnp_irq *irq;
   1226   1.1  drochner 	int irqnum, type;
   1227   1.1  drochner 
   1228   1.1  drochner 	if (idx >= resc->numirq)
   1229   1.1  drochner 		return (0);
   1230   1.1  drochner 
   1231   1.1  drochner 	irq = SIMPLEQ_FIRST(&resc->irq);
   1232   1.1  drochner 	while (idx--)
   1233   1.1  drochner 		irq = SIMPLEQ_NEXT(irq, next);
   1234   1.1  drochner 
   1235   1.1  drochner 	irqnum = ffs(irq->mask) - 1;
   1236   1.1  drochner 	type = (irq->flags & 0x0c) ? IST_LEVEL : IST_EDGE;
   1237   1.1  drochner 
   1238   1.1  drochner 	return (isa_intr_establish(0, irqnum, type, level, fcn, arg));
   1239   1.1  drochner }
   1240   1.1  drochner 
   1241   1.1  drochner int
   1242  1.13   thorpej pnpbios_getirqnum(pbt, resc, idx, irqp, istp)
   1243   1.1  drochner 	pnpbios_tag_t pbt;
   1244   1.1  drochner 	struct pnpresources *resc;
   1245   1.1  drochner 	int idx;
   1246   1.1  drochner 	int *irqp;
   1247  1.13   thorpej 	int *istp;
   1248   1.1  drochner {
   1249   1.1  drochner 	struct pnp_irq *irq;
   1250   1.1  drochner 
   1251   1.1  drochner 	if (idx >= resc->numirq)
   1252   1.1  drochner 		return (EINVAL);
   1253   1.1  drochner 
   1254   1.1  drochner 	irq = SIMPLEQ_FIRST(&resc->irq);
   1255   1.1  drochner 	while (idx--)
   1256   1.1  drochner 		irq = SIMPLEQ_NEXT(irq, next);
   1257   1.1  drochner 
   1258  1.13   thorpej 	if (irqp != NULL)
   1259  1.13   thorpej 		*irqp = ffs(irq->mask) - 1;
   1260  1.13   thorpej 	if (istp != NULL)
   1261  1.13   thorpej 		*istp = (irq->flags & 0x0c) ? IST_LEVEL : IST_EDGE;
   1262   1.1  drochner 	return (0);
   1263   1.1  drochner }
   1264   1.1  drochner 
   1265   1.1  drochner int
   1266   1.1  drochner pnpbios_getdmachan(pbt, resc, idx, chanp)
   1267   1.1  drochner 	pnpbios_tag_t pbt;
   1268   1.1  drochner 	struct pnpresources *resc;
   1269   1.1  drochner 	int idx;
   1270   1.1  drochner 	int *chanp;
   1271   1.1  drochner {
   1272   1.1  drochner 	struct pnp_dma *dma;
   1273   1.1  drochner 
   1274   1.1  drochner 	if (idx >= resc->numdma)
   1275   1.1  drochner 		return (EINVAL);
   1276   1.1  drochner 
   1277   1.1  drochner 	dma = SIMPLEQ_FIRST(&resc->dma);
   1278   1.1  drochner 	while (idx--)
   1279   1.1  drochner 		dma = SIMPLEQ_NEXT(dma, next);
   1280   1.1  drochner 
   1281   1.1  drochner 	*chanp = ffs(dma->mask) - 1;
   1282   1.1  drochner 	return (0);
   1283   1.1  drochner }
   1284  1.11    chopps 
   1285  1.11    chopps #ifdef PNPBIOSEVENTS
   1286  1.11    chopps void
   1287  1.11    chopps pnpbios_create_event_thread(arg)
   1288  1.11    chopps 	void *arg;
   1289  1.11    chopps {
   1290  1.11    chopps 	struct pnpbios_softc *sc;
   1291  1.11    chopps 
   1292  1.11    chopps 	sc = arg;
   1293  1.11    chopps 	if (kthread_create1(pnpbios_event_thread, sc, &sc->sc_evthread,
   1294  1.11    chopps 	    "%s", sc->sc_dev.dv_xname))
   1295  1.11    chopps 		panic("pnpbios_create_event_thread");
   1296  1.11    chopps }
   1297  1.11    chopps 
   1298  1.11    chopps void
   1299  1.11    chopps pnpbios_event_thread(arg)
   1300  1.11    chopps 	void *arg;
   1301  1.11    chopps {
   1302  1.11    chopps 	struct pnpbios_softc *sc;
   1303  1.11    chopps 	u_int16_t event;
   1304  1.11    chopps 	u_int evflag;
   1305  1.11    chopps 	int rv, poll;
   1306  1.11    chopps 
   1307  1.11    chopps 	sc = arg;
   1308  1.11    chopps 	if ((sc->sc_control & PNP_IC_CONTORL_EVENT_MASK)
   1309  1.11    chopps 	    != PNP_IC_CONTROL_EVENT_POLL)
   1310  1.11    chopps 		poll = 0;
   1311  1.11    chopps 	else {
   1312  1.11    chopps 		poll = hz;
   1313  1.11    chopps 		rv = pnpbios_sendmessage(PNP_CM_PNP_OS_ACTIVE);
   1314  1.11    chopps 		DPRINTF(("pnpbios: os active returns 0x%02x\n", rv));
   1315  1.11    chopps 	}
   1316  1.11    chopps 
   1317  1.11    chopps 	config_pending_decr();
   1318  1.11    chopps 
   1319  1.11    chopps 	goto start;
   1320  1.11    chopps 	while (sc->sc_threadrun) {
   1321  1.11    chopps 		/* maybe we have an event */
   1322  1.11    chopps 		if (!poll)
   1323  1.11    chopps 			(void)tsleep(pnpbios_event_thread, PWAIT,
   1324  1.11    chopps 			    "pnpbiosevent", 0);
   1325  1.11    chopps 		else if (((evflag = *sc->sc_evaddr) & 0x01) == 0) {
   1326  1.11    chopps 			if (evflag)
   1327  1.11    chopps 				DPRINTF(("pnpbios: evflags 0x%02x\n", evflag));
   1328  1.11    chopps 			(void)tsleep(pnpbios_event_thread, PWAIT,
   1329  1.11    chopps 			    "pnpbiosevent", poll);
   1330  1.11    chopps 			continue;
   1331  1.11    chopps 		} else {
   1332  1.11    chopps 			DPRINTF(("pnpbios: evflags 0x%02x\n", evflag));
   1333  1.11    chopps 		}
   1334  1.11    chopps start:
   1335  1.11    chopps 		if ((rv = pnpbios_getevent(&event))) {
   1336  1.11    chopps 			DPRINTF(("pnpbios: getevent rc: 0x%02x\n", rv));
   1337  1.11    chopps #ifdef DIAGNOSTIC
   1338  1.11    chopps 			if (rv != PNP_RC_EVENTS_NOT_PENDING)
   1339  1.11    chopps 				printf("pnpbios: getevent failed: %d\n", rv);
   1340  1.11    chopps #endif
   1341  1.11    chopps 			continue;
   1342  1.11    chopps 		}
   1343  1.11    chopps 		switch (event) {
   1344  1.11    chopps 		case PNP_EID_ABOUT_TO_CHANGE_CONFIG:
   1345  1.11    chopps 			DPRINTF(("pnpbios: about to change event\n"));
   1346  1.11    chopps 			break;
   1347  1.11    chopps 		case PNP_EID_DOCK_CHANGED:
   1348  1.11    chopps 			DPRINTF(("pnpbios: dock changed event\n"));
   1349  1.11    chopps 			break;
   1350  1.11    chopps 		case PNP_EID_SYSTEM_DEVICE_CHANGED:
   1351  1.11    chopps 			DPRINTF(("pnpbios: system device changed event\n"));
   1352  1.11    chopps 			break;
   1353  1.11    chopps 		case PNP_EID_CONFIG_CHANGE_FAILED:
   1354  1.11    chopps 			DPRINTF(("pnpbios: config changed event\n"));
   1355  1.11    chopps 			break;
   1356  1.11    chopps 		case PNP_EID_UNKNOWN_SYSTEM_EVENT:
   1357  1.11    chopps #ifdef DIAGNOSTIC
   1358  1.11    chopps 			printf("pnpbios: \"unknown system event\"\n");
   1359  1.11    chopps #endif
   1360  1.11    chopps 			break;
   1361  1.11    chopps 		default:
   1362  1.11    chopps #ifdef DIAGNOSTIC
   1363  1.11    chopps #ifdef PNPBIOSVERBOSE
   1364  1.11    chopps 			if (event & PNP_EID_OEM_DEFINED_BIT)
   1365  1.11    chopps 				printf("pnpbios: vendor defined event 0x%04x\n",
   1366  1.11    chopps 				    event);
   1367  1.11    chopps 			else
   1368  1.11    chopps #endif
   1369  1.11    chopps 				printf("pnpbios: unkown event 0x%04x\n",
   1370  1.11    chopps 				    event);
   1371  1.11    chopps #endif
   1372  1.11    chopps 			break;
   1373  1.11    chopps 		}
   1374  1.11    chopps 	}
   1375  1.11    chopps 
   1376  1.11    chopps 	pnpbios_sendmessage(PNP_CM_PNP_OS_INACTIVE);
   1377  1.11    chopps 	kthread_exit(0);
   1378  1.11    chopps }
   1379  1.11    chopps #endif	/* PNPBIOSEVENTS */
   1380  1.11    chopps 
   1381