Home | History | Annotate | Line # | Download | only in pci
pci_map.c revision 1.7
      1  1.7   thorpej /*	$NetBSD: pci_map.c,v 1.7 2000/05/10 16:58:42 thorpej 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  * 3. All advertising materials mentioning features or use of this software
     19  1.1   mycroft  *    must display the following acknowledgement:
     20  1.5   mycroft  *        This product includes software developed by the NetBSD
     21  1.5   mycroft  *        Foundation, Inc. and its contributors.
     22  1.5   mycroft  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23  1.5   mycroft  *    contributors may be used to endorse or promote products derived
     24  1.5   mycroft  *    from this software without specific prior written permission.
     25  1.1   mycroft  *
     26  1.5   mycroft  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27  1.5   mycroft  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28  1.5   mycroft  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29  1.5   mycroft  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30  1.5   mycroft  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31  1.5   mycroft  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32  1.5   mycroft  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33  1.5   mycroft  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34  1.5   mycroft  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35  1.5   mycroft  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36  1.5   mycroft  * POSSIBILITY OF SUCH DAMAGE.
     37  1.1   mycroft  */
     38  1.1   mycroft 
     39  1.1   mycroft /*
     40  1.1   mycroft  * PCI device mapping.
     41  1.1   mycroft  */
     42  1.1   mycroft 
     43  1.1   mycroft #include <sys/param.h>
     44  1.1   mycroft #include <sys/systm.h>
     45  1.1   mycroft #include <sys/device.h>
     46  1.1   mycroft 
     47  1.1   mycroft #include <dev/pci/pcireg.h>
     48  1.1   mycroft #include <dev/pci/pcivar.h>
     49  1.1   mycroft 
     50  1.1   mycroft static int pci_io_find __P((pci_chipset_tag_t, pcitag_t, int, pcireg_t,
     51  1.1   mycroft     bus_addr_t *, bus_size_t *, int *));
     52  1.1   mycroft static int pci_mem_find __P((pci_chipset_tag_t, pcitag_t, int, pcireg_t,
     53  1.1   mycroft     bus_addr_t *, bus_size_t *, int *));
     54  1.1   mycroft 
     55  1.1   mycroft static int
     56  1.1   mycroft pci_io_find(pc, tag, reg, type, basep, sizep, flagsp)
     57  1.1   mycroft 	pci_chipset_tag_t pc;
     58  1.1   mycroft 	pcitag_t tag;
     59  1.1   mycroft 	int reg;
     60  1.1   mycroft 	pcireg_t type;
     61  1.1   mycroft 	bus_addr_t *basep;
     62  1.1   mycroft 	bus_size_t *sizep;
     63  1.1   mycroft 	int *flagsp;
     64  1.1   mycroft {
     65  1.1   mycroft 	pcireg_t address, mask;
     66  1.1   mycroft 	int s;
     67  1.1   mycroft 
     68  1.1   mycroft 	if (reg < PCI_MAPREG_START || reg >= PCI_MAPREG_END || (reg & 3))
     69  1.1   mycroft 		panic("pci_io_find: bad request");
     70  1.1   mycroft 
     71  1.1   mycroft 	/*
     72  1.1   mycroft 	 * Section 6.2.5.1, `Address Maps', tells us that:
     73  1.1   mycroft 	 *
     74  1.1   mycroft 	 * 1) The builtin software should have already mapped the device in a
     75  1.1   mycroft 	 * reasonable way.
     76  1.1   mycroft 	 *
     77  1.1   mycroft 	 * 2) A device which wants 2^n bytes of memory will hardwire the bottom
     78  1.1   mycroft 	 * n bits of the address to 0.  As recommended, we write all 1s and see
     79  1.1   mycroft 	 * what we get back.
     80  1.1   mycroft 	 */
     81  1.1   mycroft 	s = splhigh();
     82  1.1   mycroft 	address = pci_conf_read(pc, tag, reg);
     83  1.1   mycroft 	pci_conf_write(pc, tag, reg, 0xffffffff);
     84  1.1   mycroft 	mask = pci_conf_read(pc, tag, reg);
     85  1.1   mycroft 	pci_conf_write(pc, tag, reg, address);
     86  1.1   mycroft 	splx(s);
     87  1.1   mycroft 
     88  1.1   mycroft 	if (PCI_MAPREG_TYPE(address) != PCI_MAPREG_TYPE_IO) {
     89  1.1   mycroft 		printf("pci_io_find: expected type i/o, found mem\n");
     90  1.1   mycroft 		return (1);
     91  1.1   mycroft 	}
     92  1.1   mycroft 
     93  1.2   mycroft 	if (PCI_MAPREG_IO_SIZE(mask) == 0) {
     94  1.2   mycroft 		printf("pci_io_find: void region\n");
     95  1.2   mycroft 		return (1);
     96  1.2   mycroft 	}
     97  1.2   mycroft 
     98  1.1   mycroft 	if (basep != 0)
     99  1.1   mycroft 		*basep = PCI_MAPREG_IO_ADDR(address);
    100  1.1   mycroft 	if (sizep != 0)
    101  1.1   mycroft 		*sizep = PCI_MAPREG_IO_SIZE(mask);
    102  1.1   mycroft 	if (flagsp != 0)
    103  1.1   mycroft 		*flagsp = 0;
    104  1.1   mycroft 
    105  1.1   mycroft 	return (0);
    106  1.1   mycroft }
    107  1.1   mycroft 
    108  1.1   mycroft static int
    109  1.1   mycroft pci_mem_find(pc, tag, reg, type, basep, sizep, flagsp)
    110  1.1   mycroft 	pci_chipset_tag_t pc;
    111  1.1   mycroft 	pcitag_t tag;
    112  1.1   mycroft 	int reg;
    113  1.1   mycroft 	pcireg_t type;
    114  1.1   mycroft 	bus_addr_t *basep;
    115  1.1   mycroft 	bus_size_t *sizep;
    116  1.1   mycroft 	int *flagsp;
    117  1.1   mycroft {
    118  1.7   thorpej 	pcireg_t address, mask, address1 = 0, mask1 = 0xffffffff;
    119  1.7   thorpej 	u_int64_t waddress, wmask;
    120  1.7   thorpej 	int s, is64bit;
    121  1.7   thorpej 
    122  1.7   thorpej 	is64bit = (PCI_MAPREG_MEM_TYPE(type) == PCI_MAPREG_MEM_TYPE_64BIT);
    123  1.1   mycroft 
    124  1.1   mycroft 	if (reg < PCI_MAPREG_START || reg >= PCI_MAPREG_END || (reg & 3))
    125  1.7   thorpej 		panic("pci_mem_find: bad request");
    126  1.7   thorpej 
    127  1.7   thorpej 	if (is64bit && (reg + 4) >= PCI_MAPREG_END)
    128  1.7   thorpej 		panic("pci_mem_find: bad 64-bit request");
    129  1.1   mycroft 
    130  1.1   mycroft 	/*
    131  1.1   mycroft 	 * Section 6.2.5.1, `Address Maps', tells us that:
    132  1.1   mycroft 	 *
    133  1.1   mycroft 	 * 1) The builtin software should have already mapped the device in a
    134  1.1   mycroft 	 * reasonable way.
    135  1.1   mycroft 	 *
    136  1.1   mycroft 	 * 2) A device which wants 2^n bytes of memory will hardwire the bottom
    137  1.1   mycroft 	 * n bits of the address to 0.  As recommended, we write all 1s and see
    138  1.1   mycroft 	 * what we get back.
    139  1.1   mycroft 	 */
    140  1.1   mycroft 	s = splhigh();
    141  1.1   mycroft 	address = pci_conf_read(pc, tag, reg);
    142  1.1   mycroft 	pci_conf_write(pc, tag, reg, 0xffffffff);
    143  1.1   mycroft 	mask = pci_conf_read(pc, tag, reg);
    144  1.1   mycroft 	pci_conf_write(pc, tag, reg, address);
    145  1.7   thorpej 	if (is64bit) {
    146  1.7   thorpej 		address1 = pci_conf_read(pc, tag, reg + 4);
    147  1.7   thorpej 		pci_conf_write(pc, tag, reg + 4, 0xffffffff);
    148  1.7   thorpej 		mask1 = pci_conf_read(pc, tag, reg + 4);
    149  1.7   thorpej 		pci_conf_write(pc, tag, reg + 4, address1);
    150  1.7   thorpej 	}
    151  1.1   mycroft 	splx(s);
    152  1.1   mycroft 
    153  1.1   mycroft 	if (PCI_MAPREG_TYPE(address) != PCI_MAPREG_TYPE_MEM) {
    154  1.1   mycroft 		printf("pci_mem_find: expected type mem, found i/o\n");
    155  1.1   mycroft 		return (1);
    156  1.1   mycroft 	}
    157  1.1   mycroft 	if (PCI_MAPREG_MEM_TYPE(address) != PCI_MAPREG_MEM_TYPE(type)) {
    158  1.1   mycroft 		printf("pci_mem_find: expected mem type %08x, found %08x\n",
    159  1.1   mycroft 		    PCI_MAPREG_MEM_TYPE(type),
    160  1.1   mycroft 		    PCI_MAPREG_MEM_TYPE(address));
    161  1.2   mycroft 		return (1);
    162  1.2   mycroft 	}
    163  1.2   mycroft 
    164  1.7   thorpej 	waddress = (u_int64_t)address1 << 32UL | address;
    165  1.7   thorpej 	wmask = (u_int64_t)mask1 << 32UL | mask;
    166  1.7   thorpej 
    167  1.7   thorpej 	if (PCI_MAPREG_MEM64_SIZE(wmask) == 0) {
    168  1.2   mycroft 		printf("pci_mem_find: void region\n");
    169  1.1   mycroft 		return (1);
    170  1.1   mycroft 	}
    171  1.1   mycroft 
    172  1.1   mycroft 	switch (PCI_MAPREG_MEM_TYPE(address)) {
    173  1.1   mycroft 	case PCI_MAPREG_MEM_TYPE_32BIT:
    174  1.1   mycroft 	case PCI_MAPREG_MEM_TYPE_32BIT_1M:
    175  1.1   mycroft 		break;
    176  1.1   mycroft 	case PCI_MAPREG_MEM_TYPE_64BIT:
    177  1.7   thorpej 		/*
    178  1.7   thorpej 		 * Handle the case of a 64-bit memory register on a
    179  1.7   thorpej 		 * platform with 32-bit addressing.  Make sure that
    180  1.7   thorpej 		 * the address assigned and the device's memory size
    181  1.7   thorpej 		 * fit in 32 bits.  We implicitly assume that if
    182  1.7   thorpej 		 * bus_addr_t is 64-bit, then so is bus_size_t.
    183  1.7   thorpej 		 */
    184  1.7   thorpej 		if (sizeof(u_int64_t) > sizeof(bus_addr_t) &&
    185  1.7   thorpej 		    (address1 != 0 || mask1 != 0xffffffff)) {
    186  1.7   thorpej 			printf("pci_mem_find: 64-bit memory map which is "
    187  1.7   thorpej 			    "inaccessible on a 32-bit platform\n");
    188  1.7   thorpej 			return (1);
    189  1.7   thorpej 		}
    190  1.7   thorpej 		break;
    191  1.1   mycroft 	default:
    192  1.1   mycroft 		printf("pci_mem_find: reserved mapping register type\n");
    193  1.1   mycroft 		return (1);
    194  1.1   mycroft 	}
    195  1.1   mycroft 
    196  1.7   thorpej 	if (sizeof(u_int64_t) > sizeof(bus_addr_t)) {
    197  1.7   thorpej 		if (basep != 0)
    198  1.7   thorpej 			*basep = PCI_MAPREG_MEM_ADDR(address);
    199  1.7   thorpej 		if (sizep != 0)
    200  1.7   thorpej 			*sizep = PCI_MAPREG_MEM_SIZE(mask);
    201  1.7   thorpej 	} else {
    202  1.7   thorpej 		if (basep != 0)
    203  1.7   thorpej 			*basep = PCI_MAPREG_MEM64_ADDR(waddress);
    204  1.7   thorpej 		if (sizep != 0)
    205  1.7   thorpej 			*sizep = PCI_MAPREG_MEM64_SIZE(wmask);
    206  1.7   thorpej 	}
    207  1.1   mycroft 	if (flagsp != 0)
    208  1.6  drochner 		*flagsp = PCI_MAPREG_MEM_PREFETCHABLE(address) ?
    209  1.6  drochner 		    BUS_SPACE_MAP_PREFETCHABLE : 0;
    210  1.1   mycroft 
    211  1.1   mycroft 	return (0);
    212  1.7   thorpej }
    213  1.7   thorpej 
    214  1.7   thorpej pcireg_t
    215  1.7   thorpej pci_mapreg_type(pc, tag, reg)
    216  1.7   thorpej 	pci_chipset_tag_t pc;
    217  1.7   thorpej 	pcitag_t tag;
    218  1.7   thorpej 	int reg;
    219  1.7   thorpej {
    220  1.7   thorpej 	pcireg_t rv;
    221  1.7   thorpej 
    222  1.7   thorpej 	rv = pci_conf_read(pc, tag, reg);
    223  1.7   thorpej 	if (PCI_MAPREG_TYPE(rv) == PCI_MAPREG_TYPE_IO)
    224  1.7   thorpej 		rv &= PCI_MAPREG_TYPE_MASK;
    225  1.7   thorpej 	else
    226  1.7   thorpej 		rv &= PCI_MAPREG_TYPE_MASK|PCI_MAPREG_MEM_TYPE_MASK;
    227  1.7   thorpej 	return (rv);
    228  1.1   mycroft }
    229  1.1   mycroft 
    230  1.1   mycroft int
    231  1.4   thorpej pci_mapreg_info(pc, tag, reg, type, basep, sizep, flagsp)
    232  1.4   thorpej 	pci_chipset_tag_t pc;
    233  1.4   thorpej 	pcitag_t tag;
    234  1.1   mycroft 	int reg;
    235  1.1   mycroft 	pcireg_t type;
    236  1.1   mycroft 	bus_addr_t *basep;
    237  1.1   mycroft 	bus_size_t *sizep;
    238  1.4   thorpej 	int *flagsp;
    239  1.1   mycroft {
    240  1.1   mycroft 
    241  1.1   mycroft 	if (PCI_MAPREG_TYPE(type) == PCI_MAPREG_TYPE_IO)
    242  1.4   thorpej 		return (pci_io_find(pc, tag, reg, type, basep, sizep,
    243  1.4   thorpej 		    flagsp));
    244  1.1   mycroft 	else
    245  1.4   thorpej 		return (pci_mem_find(pc, tag, reg, type, basep, sizep,
    246  1.4   thorpej 		    flagsp));
    247  1.1   mycroft }
    248  1.1   mycroft 
    249  1.1   mycroft int
    250  1.1   mycroft pci_mapreg_map(pa, reg, type, busflags, tagp, handlep, basep, sizep)
    251  1.1   mycroft 	struct pci_attach_args *pa;
    252  1.1   mycroft 	int reg, busflags;
    253  1.1   mycroft 	pcireg_t type;
    254  1.1   mycroft 	bus_space_tag_t *tagp;
    255  1.1   mycroft 	bus_space_handle_t *handlep;
    256  1.1   mycroft 	bus_addr_t *basep;
    257  1.1   mycroft 	bus_size_t *sizep;
    258  1.1   mycroft {
    259  1.1   mycroft 	bus_space_tag_t tag;
    260  1.1   mycroft 	bus_space_handle_t handle;
    261  1.1   mycroft 	bus_addr_t base;
    262  1.1   mycroft 	bus_size_t size;
    263  1.1   mycroft 	int flags;
    264  1.1   mycroft 
    265  1.1   mycroft 	if (PCI_MAPREG_TYPE(type) == PCI_MAPREG_TYPE_IO) {
    266  1.1   mycroft 		if ((pa->pa_flags & PCI_FLAGS_IO_ENABLED) == 0)
    267  1.1   mycroft 			return (1);
    268  1.1   mycroft 		if (pci_io_find(pa->pa_pc, pa->pa_tag, reg, type, &base,
    269  1.1   mycroft 		    &size, &flags))
    270  1.1   mycroft 			return (1);
    271  1.1   mycroft 		tag = pa->pa_iot;
    272  1.1   mycroft 	} else {
    273  1.1   mycroft 		if ((pa->pa_flags & PCI_FLAGS_MEM_ENABLED) == 0)
    274  1.1   mycroft 			return (1);
    275  1.1   mycroft 		if (pci_mem_find(pa->pa_pc, pa->pa_tag, reg, type, &base,
    276  1.1   mycroft 		    &size, &flags))
    277  1.1   mycroft 			return (1);
    278  1.1   mycroft 		tag = pa->pa_memt;
    279  1.1   mycroft 	}
    280  1.1   mycroft 
    281  1.1   mycroft 	if (bus_space_map(tag, base, size, busflags | flags, &handle))
    282  1.1   mycroft 		return (1);
    283  1.1   mycroft 
    284  1.1   mycroft 	if (tagp != 0)
    285  1.1   mycroft 		*tagp = tag;
    286  1.1   mycroft 	if (handlep != 0)
    287  1.1   mycroft 		*handlep = handle;
    288  1.1   mycroft 	if (basep != 0)
    289  1.1   mycroft 		*basep = base;
    290  1.1   mycroft 	if (sizep != 0)
    291  1.1   mycroft 		*sizep = size;
    292  1.1   mycroft 
    293  1.1   mycroft 	return (0);
    294  1.1   mycroft }
    295