Home | History | Annotate | Line # | Download | only in pci
pci_map.c revision 1.23.2.1
      1  1.23.2.1  wrstuden /*	$NetBSD: pci_map.c,v 1.23.2.1 2008/09/18 04:35:07 wrstuden Exp $	*/
      2       1.1   mycroft 
      3       1.5   mycroft /*-
      4       1.7   thorpej  * Copyright (c) 1998, 2000 The NetBSD Foundation, Inc.
      5       1.5   mycroft  * All rights reserved.
      6       1.5   mycroft  *
      7       1.5   mycroft  * This code is derived from software contributed to The NetBSD Foundation
      8       1.7   thorpej  * by Charles M. Hannum; by William R. Studenmund; by Jason R. Thorpe.
      9       1.1   mycroft  *
     10       1.1   mycroft  * Redistribution and use in source and binary forms, with or without
     11       1.1   mycroft  * modification, are permitted provided that the following conditions
     12       1.1   mycroft  * are met:
     13       1.1   mycroft  * 1. Redistributions of source code must retain the above copyright
     14       1.1   mycroft  *    notice, this list of conditions and the following disclaimer.
     15       1.1   mycroft  * 2. Redistributions in binary form must reproduce the above copyright
     16       1.1   mycroft  *    notice, this list of conditions and the following disclaimer in the
     17       1.1   mycroft  *    documentation and/or other materials provided with the distribution.
     18       1.1   mycroft  *
     19       1.5   mycroft  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20       1.5   mycroft  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21       1.5   mycroft  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22       1.5   mycroft  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23       1.5   mycroft  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24       1.5   mycroft  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25       1.5   mycroft  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26       1.5   mycroft  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27       1.5   mycroft  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28       1.5   mycroft  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29       1.5   mycroft  * POSSIBILITY OF SUCH DAMAGE.
     30       1.1   mycroft  */
     31       1.1   mycroft 
     32       1.1   mycroft /*
     33       1.1   mycroft  * PCI device mapping.
     34       1.1   mycroft  */
     35      1.10     lukem 
     36      1.10     lukem #include <sys/cdefs.h>
     37  1.23.2.1  wrstuden __KERNEL_RCSID(0, "$NetBSD: pci_map.c,v 1.23.2.1 2008/09/18 04:35:07 wrstuden Exp $");
     38       1.1   mycroft 
     39       1.1   mycroft #include <sys/param.h>
     40       1.1   mycroft #include <sys/systm.h>
     41       1.1   mycroft #include <sys/device.h>
     42       1.1   mycroft 
     43       1.1   mycroft #include <dev/pci/pcireg.h>
     44       1.1   mycroft #include <dev/pci/pcivar.h>
     45       1.1   mycroft 
     46       1.1   mycroft static int
     47      1.18  christos pci_io_find(pci_chipset_tag_t pc, pcitag_t tag, int reg, pcireg_t type,
     48       1.9   thorpej     bus_addr_t *basep, bus_size_t *sizep, int *flagsp)
     49       1.1   mycroft {
     50       1.1   mycroft 	pcireg_t address, mask;
     51       1.1   mycroft 	int s;
     52       1.1   mycroft 
     53       1.8   thorpej 	if (reg < PCI_MAPREG_START ||
     54       1.8   thorpej #if 0
     55       1.8   thorpej 	    /*
     56       1.8   thorpej 	     * Can't do this check; some devices have mapping registers
     57       1.8   thorpej 	     * way out in left field.
     58       1.8   thorpej 	     */
     59       1.8   thorpej 	    reg >= PCI_MAPREG_END ||
     60       1.8   thorpej #endif
     61       1.8   thorpej 	    (reg & 3))
     62       1.1   mycroft 		panic("pci_io_find: bad request");
     63       1.1   mycroft 
     64       1.1   mycroft 	/*
     65       1.1   mycroft 	 * Section 6.2.5.1, `Address Maps', tells us that:
     66       1.1   mycroft 	 *
     67       1.1   mycroft 	 * 1) The builtin software should have already mapped the device in a
     68       1.1   mycroft 	 * reasonable way.
     69       1.1   mycroft 	 *
     70       1.1   mycroft 	 * 2) A device which wants 2^n bytes of memory will hardwire the bottom
     71       1.1   mycroft 	 * n bits of the address to 0.  As recommended, we write all 1s and see
     72       1.1   mycroft 	 * what we get back.
     73       1.1   mycroft 	 */
     74       1.1   mycroft 	s = splhigh();
     75       1.1   mycroft 	address = pci_conf_read(pc, tag, reg);
     76       1.1   mycroft 	pci_conf_write(pc, tag, reg, 0xffffffff);
     77       1.1   mycroft 	mask = pci_conf_read(pc, tag, reg);
     78       1.1   mycroft 	pci_conf_write(pc, tag, reg, address);
     79       1.1   mycroft 	splx(s);
     80       1.1   mycroft 
     81       1.1   mycroft 	if (PCI_MAPREG_TYPE(address) != PCI_MAPREG_TYPE_IO) {
     82      1.22  jmcneill 		aprint_debug("pci_io_find: expected type i/o, found mem\n");
     83       1.1   mycroft 		return (1);
     84       1.1   mycroft 	}
     85       1.1   mycroft 
     86       1.2   mycroft 	if (PCI_MAPREG_IO_SIZE(mask) == 0) {
     87      1.19  macallan 		aprint_debug("pci_io_find: void region\n");
     88       1.2   mycroft 		return (1);
     89       1.2   mycroft 	}
     90       1.2   mycroft 
     91       1.1   mycroft 	if (basep != 0)
     92       1.1   mycroft 		*basep = PCI_MAPREG_IO_ADDR(address);
     93       1.1   mycroft 	if (sizep != 0)
     94       1.1   mycroft 		*sizep = PCI_MAPREG_IO_SIZE(mask);
     95       1.1   mycroft 	if (flagsp != 0)
     96       1.1   mycroft 		*flagsp = 0;
     97       1.1   mycroft 
     98       1.1   mycroft 	return (0);
     99       1.1   mycroft }
    100       1.1   mycroft 
    101       1.1   mycroft static int
    102       1.9   thorpej pci_mem_find(pci_chipset_tag_t pc, pcitag_t tag, int reg, pcireg_t type,
    103       1.9   thorpej     bus_addr_t *basep, bus_size_t *sizep, int *flagsp)
    104       1.1   mycroft {
    105       1.7   thorpej 	pcireg_t address, mask, address1 = 0, mask1 = 0xffffffff;
    106       1.7   thorpej 	u_int64_t waddress, wmask;
    107      1.15   gdamore 	int s, is64bit, isrom;
    108       1.7   thorpej 
    109       1.7   thorpej 	is64bit = (PCI_MAPREG_MEM_TYPE(type) == PCI_MAPREG_MEM_TYPE_64BIT);
    110      1.15   gdamore 	isrom = (reg == PCI_MAPREG_ROM);
    111       1.1   mycroft 
    112      1.15   gdamore 	if ((!isrom) && (reg < PCI_MAPREG_START ||
    113       1.8   thorpej #if 0
    114       1.8   thorpej 	    /*
    115       1.8   thorpej 	     * Can't do this check; some devices have mapping registers
    116       1.8   thorpej 	     * way out in left field.
    117       1.8   thorpej 	     */
    118       1.8   thorpej 	    reg >= PCI_MAPREG_END ||
    119       1.8   thorpej #endif
    120      1.15   gdamore 	    (reg & 3)))
    121       1.7   thorpej 		panic("pci_mem_find: bad request");
    122       1.7   thorpej 
    123       1.7   thorpej 	if (is64bit && (reg + 4) >= PCI_MAPREG_END)
    124       1.7   thorpej 		panic("pci_mem_find: bad 64-bit request");
    125       1.1   mycroft 
    126       1.1   mycroft 	/*
    127       1.1   mycroft 	 * Section 6.2.5.1, `Address Maps', tells us that:
    128       1.1   mycroft 	 *
    129       1.1   mycroft 	 * 1) The builtin software should have already mapped the device in a
    130       1.1   mycroft 	 * reasonable way.
    131       1.1   mycroft 	 *
    132       1.1   mycroft 	 * 2) A device which wants 2^n bytes of memory will hardwire the bottom
    133       1.1   mycroft 	 * n bits of the address to 0.  As recommended, we write all 1s and see
    134       1.1   mycroft 	 * what we get back.
    135       1.1   mycroft 	 */
    136       1.1   mycroft 	s = splhigh();
    137       1.1   mycroft 	address = pci_conf_read(pc, tag, reg);
    138       1.1   mycroft 	pci_conf_write(pc, tag, reg, 0xffffffff);
    139       1.1   mycroft 	mask = pci_conf_read(pc, tag, reg);
    140       1.1   mycroft 	pci_conf_write(pc, tag, reg, address);
    141       1.7   thorpej 	if (is64bit) {
    142       1.7   thorpej 		address1 = pci_conf_read(pc, tag, reg + 4);
    143       1.7   thorpej 		pci_conf_write(pc, tag, reg + 4, 0xffffffff);
    144       1.7   thorpej 		mask1 = pci_conf_read(pc, tag, reg + 4);
    145       1.7   thorpej 		pci_conf_write(pc, tag, reg + 4, address1);
    146       1.7   thorpej 	}
    147       1.1   mycroft 	splx(s);
    148       1.1   mycroft 
    149      1.15   gdamore 	if (!isrom) {
    150      1.15   gdamore 		/*
    151      1.15   gdamore 		 * roms should have an enable bit instead of a memory
    152      1.15   gdamore 		 * type decoder bit.  For normal BARs, make sure that
    153      1.15   gdamore 		 * the address decoder type matches what we asked for.
    154      1.15   gdamore 		 */
    155      1.15   gdamore 		if (PCI_MAPREG_TYPE(address) != PCI_MAPREG_TYPE_MEM) {
    156      1.15   gdamore 			printf("pci_mem_find: expected type mem, found i/o\n");
    157      1.15   gdamore 			return (1);
    158      1.15   gdamore 		}
    159      1.21     joerg 		/* XXX Allow 64bit bars for 32bit requests.*/
    160      1.15   gdamore 		if (PCI_MAPREG_MEM_TYPE(address) !=
    161      1.21     joerg 		    PCI_MAPREG_MEM_TYPE(type) &&
    162      1.21     joerg 		    PCI_MAPREG_MEM_TYPE(address) !=
    163      1.21     joerg 		    PCI_MAPREG_MEM_TYPE_64BIT) {
    164      1.15   gdamore 			printf("pci_mem_find: "
    165      1.15   gdamore 			    "expected mem type %08x, found %08x\n",
    166      1.15   gdamore 			    PCI_MAPREG_MEM_TYPE(type),
    167      1.15   gdamore 			    PCI_MAPREG_MEM_TYPE(address));
    168      1.15   gdamore 			return (1);
    169      1.15   gdamore 		}
    170       1.2   mycroft 	}
    171       1.2   mycroft 
    172       1.7   thorpej 	waddress = (u_int64_t)address1 << 32UL | address;
    173       1.7   thorpej 	wmask = (u_int64_t)mask1 << 32UL | mask;
    174       1.7   thorpej 
    175      1.11    bouyer 	if ((is64bit && PCI_MAPREG_MEM64_SIZE(wmask) == 0) ||
    176      1.11    bouyer 	    (!is64bit && PCI_MAPREG_MEM_SIZE(mask) == 0)) {
    177      1.20  macallan 		aprint_debug("pci_mem_find: void region\n");
    178       1.1   mycroft 		return (1);
    179       1.1   mycroft 	}
    180       1.1   mycroft 
    181       1.1   mycroft 	switch (PCI_MAPREG_MEM_TYPE(address)) {
    182       1.1   mycroft 	case PCI_MAPREG_MEM_TYPE_32BIT:
    183       1.1   mycroft 	case PCI_MAPREG_MEM_TYPE_32BIT_1M:
    184       1.1   mycroft 		break;
    185       1.1   mycroft 	case PCI_MAPREG_MEM_TYPE_64BIT:
    186       1.7   thorpej 		/*
    187       1.7   thorpej 		 * Handle the case of a 64-bit memory register on a
    188       1.7   thorpej 		 * platform with 32-bit addressing.  Make sure that
    189       1.7   thorpej 		 * the address assigned and the device's memory size
    190       1.7   thorpej 		 * fit in 32 bits.  We implicitly assume that if
    191       1.7   thorpej 		 * bus_addr_t is 64-bit, then so is bus_size_t.
    192       1.7   thorpej 		 */
    193       1.7   thorpej 		if (sizeof(u_int64_t) > sizeof(bus_addr_t) &&
    194       1.7   thorpej 		    (address1 != 0 || mask1 != 0xffffffff)) {
    195       1.7   thorpej 			printf("pci_mem_find: 64-bit memory map which is "
    196       1.7   thorpej 			    "inaccessible on a 32-bit platform\n");
    197       1.7   thorpej 			return (1);
    198       1.7   thorpej 		}
    199       1.7   thorpej 		break;
    200       1.1   mycroft 	default:
    201       1.1   mycroft 		printf("pci_mem_find: reserved mapping register type\n");
    202       1.1   mycroft 		return (1);
    203       1.1   mycroft 	}
    204       1.1   mycroft 
    205       1.7   thorpej 	if (sizeof(u_int64_t) > sizeof(bus_addr_t)) {
    206       1.7   thorpej 		if (basep != 0)
    207       1.7   thorpej 			*basep = PCI_MAPREG_MEM_ADDR(address);
    208       1.7   thorpej 		if (sizep != 0)
    209       1.7   thorpej 			*sizep = PCI_MAPREG_MEM_SIZE(mask);
    210       1.7   thorpej 	} else {
    211       1.7   thorpej 		if (basep != 0)
    212       1.7   thorpej 			*basep = PCI_MAPREG_MEM64_ADDR(waddress);
    213       1.7   thorpej 		if (sizep != 0)
    214       1.7   thorpej 			*sizep = PCI_MAPREG_MEM64_SIZE(wmask);
    215       1.7   thorpej 	}
    216       1.1   mycroft 	if (flagsp != 0)
    217      1.15   gdamore 		*flagsp = (isrom || PCI_MAPREG_MEM_PREFETCHABLE(address)) ?
    218       1.6  drochner 		    BUS_SPACE_MAP_PREFETCHABLE : 0;
    219       1.1   mycroft 
    220       1.1   mycroft 	return (0);
    221       1.7   thorpej }
    222       1.7   thorpej 
    223      1.12  drochner #define _PCI_MAPREG_TYPEBITS(reg) \
    224      1.12  drochner 	(PCI_MAPREG_TYPE(reg) == PCI_MAPREG_TYPE_IO ? \
    225      1.12  drochner 	reg & PCI_MAPREG_TYPE_MASK : \
    226      1.12  drochner 	reg & (PCI_MAPREG_TYPE_MASK|PCI_MAPREG_MEM_TYPE_MASK))
    227      1.12  drochner 
    228       1.7   thorpej pcireg_t
    229       1.9   thorpej pci_mapreg_type(pci_chipset_tag_t pc, pcitag_t tag, int reg)
    230       1.7   thorpej {
    231       1.7   thorpej 
    232      1.12  drochner 	return (_PCI_MAPREG_TYPEBITS(pci_conf_read(pc, tag, reg)));
    233      1.12  drochner }
    234      1.12  drochner 
    235      1.12  drochner int
    236      1.12  drochner pci_mapreg_probe(pci_chipset_tag_t pc, pcitag_t tag, int reg, pcireg_t *typep)
    237      1.12  drochner {
    238      1.12  drochner 	pcireg_t address, mask;
    239      1.12  drochner 	int s;
    240      1.13     perry 
    241      1.12  drochner 	s = splhigh();
    242      1.12  drochner 	address = pci_conf_read(pc, tag, reg);
    243      1.12  drochner 	pci_conf_write(pc, tag, reg, 0xffffffff);
    244      1.12  drochner 	mask = pci_conf_read(pc, tag, reg);
    245      1.12  drochner 	pci_conf_write(pc, tag, reg, address);
    246      1.12  drochner 	splx(s);
    247      1.12  drochner 
    248      1.12  drochner 	if (mask == 0) /* unimplemented mapping register */
    249      1.12  drochner 		return (0);
    250      1.12  drochner 
    251      1.12  drochner 	if (typep)
    252      1.12  drochner 		*typep = _PCI_MAPREG_TYPEBITS(address);
    253      1.12  drochner 	return (1);
    254       1.1   mycroft }
    255       1.1   mycroft 
    256       1.1   mycroft int
    257       1.9   thorpej pci_mapreg_info(pci_chipset_tag_t pc, pcitag_t tag, int reg, pcireg_t type,
    258       1.9   thorpej     bus_addr_t *basep, bus_size_t *sizep, int *flagsp)
    259       1.1   mycroft {
    260       1.1   mycroft 
    261       1.1   mycroft 	if (PCI_MAPREG_TYPE(type) == PCI_MAPREG_TYPE_IO)
    262       1.4   thorpej 		return (pci_io_find(pc, tag, reg, type, basep, sizep,
    263       1.4   thorpej 		    flagsp));
    264       1.1   mycroft 	else
    265       1.4   thorpej 		return (pci_mem_find(pc, tag, reg, type, basep, sizep,
    266       1.4   thorpej 		    flagsp));
    267       1.1   mycroft }
    268       1.1   mycroft 
    269       1.1   mycroft int
    270       1.9   thorpej pci_mapreg_map(struct pci_attach_args *pa, int reg, pcireg_t type,
    271       1.9   thorpej     int busflags, bus_space_tag_t *tagp, bus_space_handle_t *handlep,
    272       1.9   thorpej     bus_addr_t *basep, bus_size_t *sizep)
    273       1.1   mycroft {
    274  1.23.2.1  wrstuden 	return pci_mapreg_submap(pa, reg, type, busflags, 0, 0, tagp,
    275  1.23.2.1  wrstuden 	    handlep, basep, sizep);
    276  1.23.2.1  wrstuden }
    277  1.23.2.1  wrstuden 
    278  1.23.2.1  wrstuden int
    279  1.23.2.1  wrstuden pci_mapreg_submap(struct pci_attach_args *pa, int reg, pcireg_t type,
    280  1.23.2.1  wrstuden     int busflags, bus_size_t maxsize, bus_size_t offset, bus_space_tag_t *tagp,
    281  1.23.2.1  wrstuden 	bus_space_handle_t *handlep, bus_addr_t *basep, bus_size_t *sizep)
    282  1.23.2.1  wrstuden {
    283       1.1   mycroft 	bus_space_tag_t tag;
    284       1.1   mycroft 	bus_space_handle_t handle;
    285       1.1   mycroft 	bus_addr_t base;
    286       1.1   mycroft 	bus_size_t size;
    287       1.1   mycroft 	int flags;
    288       1.1   mycroft 
    289       1.1   mycroft 	if (PCI_MAPREG_TYPE(type) == PCI_MAPREG_TYPE_IO) {
    290       1.1   mycroft 		if ((pa->pa_flags & PCI_FLAGS_IO_ENABLED) == 0)
    291       1.1   mycroft 			return (1);
    292       1.1   mycroft 		if (pci_io_find(pa->pa_pc, pa->pa_tag, reg, type, &base,
    293       1.1   mycroft 		    &size, &flags))
    294       1.1   mycroft 			return (1);
    295       1.1   mycroft 		tag = pa->pa_iot;
    296       1.1   mycroft 	} else {
    297       1.1   mycroft 		if ((pa->pa_flags & PCI_FLAGS_MEM_ENABLED) == 0)
    298       1.1   mycroft 			return (1);
    299       1.1   mycroft 		if (pci_mem_find(pa->pa_pc, pa->pa_tag, reg, type, &base,
    300       1.1   mycroft 		    &size, &flags))
    301       1.1   mycroft 			return (1);
    302       1.1   mycroft 		tag = pa->pa_memt;
    303       1.1   mycroft 	}
    304       1.1   mycroft 
    305      1.15   gdamore 	if (reg == PCI_MAPREG_ROM) {
    306      1.15   gdamore 		pcireg_t 	mask;
    307      1.15   gdamore 		int		s;
    308      1.15   gdamore 		/* we have to enable the ROM address decoder... */
    309      1.15   gdamore 		s = splhigh();
    310      1.15   gdamore 		mask = pci_conf_read(pa->pa_pc, pa->pa_tag, reg);
    311      1.15   gdamore 		mask |= PCI_MAPREG_ROM_ENABLE;
    312      1.15   gdamore 		pci_conf_write(pa->pa_pc, pa->pa_tag, reg, mask);
    313      1.15   gdamore 		splx(s);
    314      1.15   gdamore 	}
    315      1.15   gdamore 
    316  1.23.2.1  wrstuden 	/* If we're called with maxsize/offset of 0, behave like
    317  1.23.2.1  wrstuden 	 * pci_mapreg_map.
    318  1.23.2.1  wrstuden 	 */
    319  1.23.2.1  wrstuden 
    320  1.23.2.1  wrstuden 	maxsize = (maxsize && offset) ? maxsize : size;
    321  1.23.2.1  wrstuden 	base += offset;
    322  1.23.2.1  wrstuden 
    323  1.23.2.1  wrstuden 	if ((maxsize < size && offset + maxsize <= size) || offset != 0)
    324  1.23.2.1  wrstuden 		return (1);
    325  1.23.2.1  wrstuden 
    326  1.23.2.1  wrstuden 	if (bus_space_map(tag, base, maxsize, busflags | flags, &handle))
    327       1.1   mycroft 		return (1);
    328       1.1   mycroft 
    329       1.1   mycroft 	if (tagp != 0)
    330       1.1   mycroft 		*tagp = tag;
    331       1.1   mycroft 	if (handlep != 0)
    332       1.1   mycroft 		*handlep = handle;
    333       1.1   mycroft 	if (basep != 0)
    334       1.1   mycroft 		*basep = base;
    335       1.1   mycroft 	if (sizep != 0)
    336  1.23.2.1  wrstuden 		*sizep = maxsize;
    337       1.1   mycroft 
    338       1.1   mycroft 	return (0);
    339       1.1   mycroft }
    340      1.16   gdamore 
    341      1.16   gdamore int
    342      1.16   gdamore pci_find_rom(struct pci_attach_args *pa, bus_space_tag_t bst,
    343      1.16   gdamore     bus_space_handle_t bsh, int type, bus_space_handle_t *romh, bus_size_t *sz)
    344      1.16   gdamore {
    345      1.16   gdamore 	bus_size_t	romsz, offset = 0, imagesz;
    346      1.16   gdamore 	uint16_t	ptr;
    347      1.16   gdamore 	int		done = 0;
    348      1.16   gdamore 
    349      1.16   gdamore 	if (pci_mem_find(pa->pa_pc, pa->pa_tag, PCI_MAPREG_ROM,
    350      1.16   gdamore 	    PCI_MAPREG_TYPE_ROM, NULL, &romsz, NULL))
    351      1.16   gdamore 		return 1;
    352      1.16   gdamore 
    353      1.16   gdamore 	/*
    354      1.16   gdamore 	 * no upper bound check; i cannot imagine a 4GB ROM, but
    355      1.16   gdamore 	 * it appears the spec would allow it!
    356      1.16   gdamore 	 */
    357      1.16   gdamore 	if (romsz < 1024)
    358      1.16   gdamore 		return 1;
    359      1.16   gdamore 
    360      1.16   gdamore 	while (offset < romsz && !done){
    361      1.16   gdamore 		struct pci_rom_header	hdr;
    362      1.16   gdamore 		struct pci_rom		rom;
    363      1.16   gdamore 
    364      1.16   gdamore 		hdr.romh_magic = bus_space_read_2(bst, bsh,
    365      1.16   gdamore 		    offset + offsetof (struct pci_rom_header, romh_magic));
    366      1.16   gdamore 		hdr.romh_data_ptr = bus_space_read_2(bst, bsh,
    367      1.16   gdamore 		    offset + offsetof (struct pci_rom_header, romh_data_ptr));
    368      1.16   gdamore 
    369      1.16   gdamore 		/* no warning: quite possibly ROM is simply not populated */
    370      1.16   gdamore 		if (hdr.romh_magic != PCI_ROM_HEADER_MAGIC)
    371      1.16   gdamore 			return 1;
    372      1.16   gdamore 
    373      1.16   gdamore 		ptr = offset + hdr.romh_data_ptr;
    374      1.16   gdamore 
    375      1.16   gdamore 		if (ptr > romsz) {
    376      1.16   gdamore 			printf("pci_find_rom: rom data ptr out of range\n");
    377      1.16   gdamore 			return 1;
    378      1.16   gdamore 		}
    379      1.16   gdamore 
    380      1.16   gdamore 		rom.rom_signature = bus_space_read_4(bst, bsh, ptr);
    381      1.16   gdamore 		rom.rom_vendor = bus_space_read_2(bst, bsh, ptr +
    382      1.16   gdamore 		    offsetof(struct pci_rom, rom_vendor));
    383      1.16   gdamore 		rom.rom_product = bus_space_read_2(bst, bsh, ptr +
    384      1.16   gdamore 		    offsetof(struct pci_rom, rom_product));
    385      1.16   gdamore 		rom.rom_class = bus_space_read_1(bst, bsh,
    386      1.16   gdamore 		    ptr + offsetof (struct pci_rom, rom_class));
    387      1.16   gdamore 		rom.rom_subclass = bus_space_read_1(bst, bsh,
    388      1.16   gdamore 		    ptr + offsetof (struct pci_rom, rom_subclass));
    389      1.16   gdamore 		rom.rom_interface = bus_space_read_1(bst, bsh,
    390      1.16   gdamore 		    ptr + offsetof (struct pci_rom, rom_interface));
    391      1.16   gdamore 		rom.rom_len = bus_space_read_2(bst, bsh,
    392      1.16   gdamore 		    ptr + offsetof (struct pci_rom, rom_len));
    393      1.16   gdamore 		rom.rom_code_type = bus_space_read_1(bst, bsh,
    394      1.16   gdamore 		    ptr + offsetof (struct pci_rom, rom_code_type));
    395      1.16   gdamore 		rom.rom_indicator = bus_space_read_1(bst, bsh,
    396      1.16   gdamore 		    ptr + offsetof (struct pci_rom, rom_indicator));
    397      1.16   gdamore 
    398      1.16   gdamore 		if (rom.rom_signature != PCI_ROM_SIGNATURE) {
    399      1.16   gdamore 			printf("pci_find_rom: bad rom data signature\n");
    400      1.16   gdamore 			return 1;
    401      1.16   gdamore 		}
    402      1.16   gdamore 
    403      1.16   gdamore 		imagesz = rom.rom_len * 512;
    404      1.16   gdamore 
    405      1.16   gdamore 		if ((rom.rom_vendor == PCI_VENDOR(pa->pa_id)) &&
    406      1.16   gdamore 		    (rom.rom_product == PCI_PRODUCT(pa->pa_id)) &&
    407      1.16   gdamore 		    (rom.rom_class == PCI_CLASS(pa->pa_class)) &&
    408      1.16   gdamore 		    (rom.rom_subclass == PCI_SUBCLASS(pa->pa_class)) &&
    409      1.16   gdamore 		    (rom.rom_interface == PCI_INTERFACE(pa->pa_class)) &&
    410      1.16   gdamore 		    (rom.rom_code_type == type)) {
    411      1.16   gdamore 			*sz = imagesz;
    412      1.16   gdamore 			bus_space_subregion(bst, bsh, offset, imagesz, romh);
    413      1.16   gdamore 			return 0;
    414      1.16   gdamore 		}
    415      1.16   gdamore 
    416      1.16   gdamore 		/* last image check */
    417      1.16   gdamore 		if (rom.rom_indicator & PCI_ROM_INDICATOR_LAST)
    418      1.16   gdamore 			return 1;
    419      1.16   gdamore 
    420      1.16   gdamore 		/* offset by size */
    421      1.16   gdamore 		offset += imagesz;
    422      1.16   gdamore 	}
    423      1.16   gdamore 	return 1;
    424      1.16   gdamore }
    425