1 /* $NetBSD: pci_machdep.c,v 1.5 2006/06/30 17:54:51 freza Exp $ */
4 * Copyright (c) 1996 Christopher G. Demetriou. All rights reserved.
5 * Copyright (c) 1994 Charles M. Hannum. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. All advertising materials mentioning features or use of this software
16 * must display the following acknowledgement:
17 * This product includes software developed by Charles M. Hannum.
18 * 4. The name of the author may not be used to endorse or promote products
19 * derived from this software without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
22 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
23 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
24 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
25 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
26 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
30 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34 * Machine-specific functions for PCI autoconfiguration.
36 * On PCs, there are two methods of generating PCI configuration cycles.
37 * We try to detect the appropriate mechanism for this machine and set
38 * up a few function pointers to access the correct method directly.
40 * The configuration method can be hard-coded in the config file by
41 * using `options PCI_CONF_MODE=N', where `N' is the configuration mode
42 * as defined section 3.6.4.1, `Generating Configuration Cycles'.
45 #include <sys/cdefs.h>
46 __KERNEL_RCSID(0, "$NetBSD: pci_machdep.c,v 1.5 2006/06/30 17:54:51 freza Exp $");
48 #include <sys/types.h>
49 #include <sys/param.h>
51 #include <sys/systm.h>
52 #include <sys/errno.h>
53 #include <sys/device.h>
54 #include <sys/extent.h>
56 #include <uvm/uvm_extern.h>
58 #include <machine/bus.h>
59 #include <machine/intr.h>
61 #include <dev/pci/pcivar.h>
62 #include <dev/pci/pcireg.h>
63 #include <dev/pci/pcidevs.h>
64 #include <dev/pci/pciconf.h>
66 #include <powerpc/ibm4xx/ibm405gp.h>
67 #include <powerpc/ibm4xx/dev/pcicreg.h>
69 static struct powerpc_bus_space pci_iot
= {
70 _BUS_SPACE_LITTLE_ENDIAN
| _BUS_SPACE_MEM_TYPE
,
72 IBM405GP_PCIC0_BASE
, /* extent base */
73 IBM405GP_PCIC0_BASE
+ 8, /* extent limit */
76 static bus_space_handle_t pci_ioh
;
79 pci_machdep_init(void)
83 (bus_space_init(&pci_iot
, "pcicfg", NULL
, 0) ||
84 bus_space_map(&pci_iot
, IBM405GP_PCIC0_BASE
, 8, 0, &pci_ioh
)))
85 panic("Cannot map PCI registers");
89 pci_attach_hook(struct device
*parent
, struct device
*self
,
90 struct pcibus_attach_args
*pba
)
93 #ifdef PCI_CONFIGURE_VERBOSE
94 printf("pci_attach_hook\n");
95 ibm4xx_show_pci_map();
98 #ifdef PCI_CONFIGURE_VERBOSE
99 ibm4xx_show_pci_map();
104 pci_bus_maxdevs(pci_chipset_tag_t pc
, int busno
)
108 * Bus number is irrelevant. Configuration Mechanism 1 is in
109 * use, can have devices 0-32 (i.e. the `normal' range).
115 pci_make_tag(pci_chipset_tag_t pc
, int bus
, int device
, int function
)
119 if (bus
>= 256 || device
>= 32 || function
>= 8)
120 panic("pci_make_tag: bad request");
122 /* XXX magic number */
123 tag
= 0x80000000 | (bus
<< 16) | (device
<< 11) | (function
<< 8);
129 pci_decompose_tag(pci_chipset_tag_t pc
, pcitag_t tag
, int *bp
, int *dp
, int *fp
)
133 *bp
= (tag
>> 16) & 0xff;
135 *dp
= (tag
>> 11) & 0x1f;
137 *fp
= (tag
>> 8) & 0x07;
141 pci_conf_read(pci_chipset_tag_t pc
, pcitag_t tag
, int reg
)
145 /* 405GT BIOS disables interrupts here. Should we? --Art */
146 bus_space_write_4(&pci_iot
, pci_ioh
, PCIC_CFGADDR
, tag
| reg
);
147 data
= bus_space_read_4(&pci_iot
, pci_ioh
, PCIC_CFGDATA
);
148 /* 405GP pass2 errata #6 */
149 bus_space_write_4(&pci_iot
, pci_ioh
, PCIC_CFGADDR
, 0);
154 pci_conf_write(pci_chipset_tag_t pc
, pcitag_t tag
, int reg
, pcireg_t data
)
157 bus_space_write_4(&pci_iot
, pci_ioh
, PCIC_CFGADDR
, tag
| reg
);
158 bus_space_write_4(&pci_iot
, pci_ioh
, PCIC_CFGDATA
, data
);
159 /* 405GP pass2 errata #6 */
160 bus_space_write_4(&pci_iot
, pci_ioh
, PCIC_CFGADDR
, 0);
164 pci_intr_string(pci_chipset_tag_t pc
, pci_intr_handle_t ih
)
166 static char irqstr
[8]; /* 4 + 2 + NUL + sanity */
168 /* Make sure it looks sane, intr_establish does the real check. */
169 if (ih
< 0 || ih
> 99)
170 panic("pci_intr_string: handle %d won't fit two digits", ih
);
172 sprintf(irqstr
, "irq %d", ih
);
178 pci_intr_evcnt(pci_chipset_tag_t pc
, pci_intr_handle_t ih
)
181 /* XXX for now, no evcnt parent reported */
186 pci_intr_setattr(pci_chipset_tag_t pc
, pci_intr_handle_t
*ih
,
187 int attr
, uint64_t data
)
191 case PCI_INTR_MPSAFE
:
199 pci_intr_establish(pci_chipset_tag_t pc
, pci_intr_handle_t ih
, int level
,
200 int (*func
)(void *), void *arg
)
202 return intr_establish(ih
, IST_LEVEL
, level
, func
, arg
);
206 pci_intr_disestablish(pci_chipset_tag_t pc
, void *cookie
)
209 intr_disestablish(cookie
);
212 /* Avoid overconfiguration */
214 pci_conf_hook(pci_chipset_tag_t pc
, int bus
, int dev
, int func
, pcireg_t id
)
217 if ((PCI_VENDOR(id
) == PCI_VENDOR_IBM
&& PCI_PRODUCT(id
) == PCI_PRODUCT_IBM_405GP
) ||
218 (PCI_VENDOR(id
) == PCI_VENDOR_INTEL
&& PCI_PRODUCT(id
) == PCI_PRODUCT_INTEL_80960_RP
)) {
219 /* Don't configure the bridge and PCI probe. */
222 return PCI_CONF_DEFAULT
;