Home | History | Annotate | Line # | Download | only in pci
pci_machdep.c revision 1.9.34.1
      1  1.9.34.1  pgoyette /*	$NetBSD: pci_machdep.c,v 1.9.34.1 2016/11/04 14:49:02 pgoyette Exp $	*/
      2       1.1      matt 
      3       1.1      matt /*
      4       1.1      matt  * Copyright (c) 1996 Christopher G. Demetriou.  All rights reserved.
      5       1.1      matt  * Copyright (c) 1994 Charles M. Hannum.  All rights reserved.
      6       1.1      matt  *
      7       1.1      matt  * Redistribution and use in source and binary forms, with or without
      8       1.1      matt  * modification, are permitted provided that the following conditions
      9       1.1      matt  * are met:
     10       1.1      matt  * 1. Redistributions of source code must retain the above copyright
     11       1.1      matt  *    notice, this list of conditions and the following disclaimer.
     12       1.1      matt  * 2. Redistributions in binary form must reproduce the above copyright
     13       1.1      matt  *    notice, this list of conditions and the following disclaimer in the
     14       1.1      matt  *    documentation and/or other materials provided with the distribution.
     15       1.1      matt  * 3. All advertising materials mentioning features or use of this software
     16       1.1      matt  *    must display the following acknowledgement:
     17       1.1      matt  *	This product includes software developed by Charles M. Hannum.
     18       1.1      matt  * 4. The name of the author may not be used to endorse or promote products
     19       1.1      matt  *    derived from this software without specific prior written permission.
     20       1.1      matt  *
     21       1.1      matt  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     22       1.1      matt  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     23       1.1      matt  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     24       1.1      matt  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     25       1.1      matt  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     26       1.1      matt  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     27       1.1      matt  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     28       1.1      matt  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     29       1.1      matt  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     30       1.1      matt  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     31       1.1      matt  */
     32       1.1      matt 
     33       1.1      matt /*
     34       1.1      matt  * Machine-specific functions for PCI autoconfiguration.
     35       1.1      matt  *
     36       1.1      matt  * On PCs, there are two methods of generating PCI configuration cycles.
     37       1.1      matt  * We try to detect the appropriate mechanism for this machine and set
     38       1.1      matt  * up a few function pointers to access the correct method directly.
     39       1.1      matt  */
     40       1.1      matt 
     41       1.1      matt #include <sys/types.h>
     42       1.1      matt #include <sys/param.h>
     43       1.1      matt #include <sys/time.h>
     44       1.1      matt #include <sys/systm.h>
     45       1.1      matt #include <sys/errno.h>
     46       1.1      matt #include <sys/extent.h>
     47       1.1      matt #include <sys/device.h>
     48       1.1      matt 
     49       1.1      matt #include <uvm/uvm_extern.h>
     50       1.1      matt 
     51       1.1      matt #define _POWERPC_BUS_DMA_PRIVATE
     52       1.9    dyoung #include <sys/bus.h>
     53       1.1      matt #include <machine/intr.h>
     54       1.1      matt 
     55       1.1      matt #include <dev/isa/isavar.h>
     56       1.1      matt 
     57       1.1      matt #include <dev/pci/pcivar.h>
     58       1.1      matt #include <dev/pci/pcireg.h>
     59       1.1      matt #include <dev/pci/pcidevs.h>
     60       1.1      matt #include <dev/pci/pciconf.h>
     61       1.1      matt 
     62       1.3   garbled void
     63       1.3   garbled ibmnws_pci_get_chipset_tag_indirect(pci_chipset_tag_t pc)
     64       1.3   garbled {
     65       1.3   garbled 
     66       1.3   garbled 	pc->pc_conf_v = (void *)pc;
     67       1.3   garbled 
     68       1.3   garbled 	pc->pc_attach_hook = genppc_pci_indirect_attach_hook;
     69       1.3   garbled 	pc->pc_bus_maxdevs = ibmnws_pci_bus_maxdevs;
     70       1.3   garbled 	pc->pc_make_tag = genppc_pci_indirect_make_tag;
     71       1.3   garbled 	pc->pc_conf_read = genppc_pci_indirect_conf_read;
     72       1.3   garbled 	pc->pc_conf_write = genppc_pci_indirect_conf_write;
     73       1.3   garbled 
     74       1.3   garbled 	pc->pc_intr_v = (void *)pc;
     75       1.3   garbled 
     76       1.3   garbled 	pc->pc_intr_map = genppc_pci_intr_map;
     77       1.3   garbled 	pc->pc_intr_string = genppc_pci_intr_string;
     78       1.3   garbled 	pc->pc_intr_evcnt = genppc_pci_intr_evcnt;
     79       1.3   garbled 	pc->pc_intr_establish = genppc_pci_intr_establish;
     80       1.3   garbled 	pc->pc_intr_disestablish = genppc_pci_intr_disestablish;
     81       1.7      matt 	pc->pc_intr_setattr = genppc_pci_intr_setattr;
     82  1.9.34.1  pgoyette 	pc->pc_intr_type = genppc_pci_intr_type;
     83  1.9.34.1  pgoyette 	pc->pc_intr_alloc = genppc_pci_intr_alloc;
     84  1.9.34.1  pgoyette 	pc->pc_intr_release = genppc_pci_intr_release;
     85  1.9.34.1  pgoyette 	pc->pc_intx_alloc = genppc_pci_intx_alloc;
     86  1.9.34.1  pgoyette 
     87  1.9.34.1  pgoyette 	pc->pc_msi_v = (void *)pc;
     88  1.9.34.1  pgoyette 	genppc_pci_chipset_msi_init(pc);
     89  1.9.34.1  pgoyette 
     90  1.9.34.1  pgoyette 	pc->pc_msix_v = (void *)pc;
     91  1.9.34.1  pgoyette 	genppc_pci_chipset_msix_init(pc);
     92       1.3   garbled 
     93       1.3   garbled 	pc->pc_conf_interrupt = genppc_pci_conf_interrupt;
     94       1.3   garbled 	pc->pc_decompose_tag = genppc_pci_indirect_decompose_tag;
     95       1.3   garbled 	pc->pc_conf_hook = ibmnws_pci_conf_hook;
     96       1.3   garbled 
     97       1.8      matt 	pc->pc_addr = mapiodev(PCI_MODE1_ADDRESS_REG, 4, false);
     98       1.8      matt 	pc->pc_data = mapiodev(PCI_MODE1_DATA_REG, 4, false);
     99       1.3   garbled 	pc->pc_bus = 0;
    100       1.3   garbled 	pc->pc_node = 0;
    101       1.3   garbled 	pc->pc_memt = 0;
    102       1.3   garbled 	pc->pc_iot = 0;
    103       1.3   garbled }
    104       1.1      matt 
    105       1.1      matt int
    106       1.6      matt ibmnws_pci_bus_maxdevs(void *v, int busno)
    107       1.1      matt {
    108       1.1      matt 
    109       1.1      matt 	/*
    110       1.1      matt 	 * Bus number is irrelevant.  Configuration Mechanism 1 is in
    111       1.1      matt 	 * use, can have devices 0-32 (i.e. the `normal' range).
    112       1.1      matt 	 */
    113       1.1      matt 	return (32);
    114       1.1      matt }
    115       1.1      matt 
    116       1.1      matt int
    117       1.7      matt ibmnws_pci_conf_hook(void *v, int bus, int dev, int func, pcireg_t id)
    118       1.1      matt {
    119       1.1      matt 
    120       1.1      matt 	/*
    121       1.1      matt 	 * The P9100 board found in some IBM machines cannot be
    122       1.1      matt 	 * over-configured.
    123       1.1      matt 	 */
    124       1.1      matt 	if (PCI_VENDOR(id) == PCI_VENDOR_WEITEK &&
    125       1.1      matt 	    PCI_PRODUCT(id) == PCI_PRODUCT_WEITEK_P9100)
    126       1.1      matt 		return 0;
    127       1.1      matt 
    128       1.2   gdamore 	return (PCI_CONF_DEFAULT);
    129       1.1      matt }
    130