xref: /netbsd-src/sys/arch/evbppc/pmppc/pci/pci_machdep.c (revision bdc22b2e01993381dcefeff2bc9b56ca75a4235c)
1 /*	$NetBSD: pci_machdep.c,v 1.6 2016/10/19 00:08:41 nonaka Exp $	*/
2 
3 /*
4  * Copyright (c) 1996 Christopher G. Demetriou.  All rights reserved.
5  * Copyright (c) 1994 Charles M. Hannum.  All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
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.
20  *
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.
31  */
32 
33 /*
34  * Machine-specific functions for PCI autoconfiguration.
35  *
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.
39  *
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'.
43  */
44 
45 #include <sys/cdefs.h>
46 __KERNEL_RCSID(0, "$NetBSD: pci_machdep.c,v 1.6 2016/10/19 00:08:41 nonaka Exp $");
47 
48 #include <sys/param.h>
49 #include <sys/bus.h>
50 #include <sys/device.h>
51 #include <sys/errno.h>
52 #include <sys/extent.h>
53 #include <sys/intr.h>
54 #include <sys/malloc.h>
55 #include <sys/queue.h>
56 #include <sys/systm.h>
57 #include <sys/time.h>
58 
59 #include <uvm/uvm.h>
60 
61 #define _POWERPC_BUS_DMA_PRIVATE
62 
63 #include <dev/ic/cpc700reg.h>
64 
65 #include <machine/pmppc.h>
66 #include <machine/pio.h>
67 
68 #include <dev/pci/pcivar.h>
69 #include <dev/pci/pcireg.h>
70 #include <dev/pci/pcidevs.h>
71 #include <dev/pci/pciconf.h>
72 
73 #include <evbppc/pmppc/dev/mainbus.h>
74 
75 /*
76  * Address conversion as seen from a PCI master.
77  * XXX Shouldn't use 0x80000000, the actual value
78  * should come from the BAR.
79  */
80 #define PHYS_TO_PCI_MEM(x)	((x) + 0x80000000)
81 #define PCI_MEM_TO_PHYS(x)	((x) - 0x80000000)
82 
83 static bus_addr_t phys_to_pci(bus_dma_tag_t, bus_addr_t);
84 static bus_addr_t pci_to_phys(bus_dma_tag_t, bus_addr_t);
85 
86 extern struct powerpc_bus_dma_tag pci_bus_dma_tag;
87 
88 void
89 pmppc_pci_get_chipset_tag(pci_chipset_tag_t pc)
90 {
91 	pc->pc_conf_v = (void *)pc;
92 
93 	pc->pc_attach_hook = genppc_pci_indirect_attach_hook;
94 	pc->pc_bus_maxdevs = genppc_pci_bus_maxdevs;
95 	pc->pc_make_tag = genppc_pci_indirect_make_tag;
96 	pc->pc_conf_read = genppc_pci_indirect_conf_read;
97 	pc->pc_conf_write = genppc_pci_indirect_conf_write;
98 
99 	pc->pc_intr_v = (void *)pc;
100 
101 	pc->pc_intr_map = pmppc_pci_intr_map;
102 	pc->pc_intr_string = genppc_pci_intr_string;
103 	pc->pc_intr_evcnt = genppc_pci_intr_evcnt;
104 	pc->pc_intr_establish = genppc_pci_intr_establish;
105 	pc->pc_intr_disestablish = genppc_pci_intr_disestablish;
106 	pc->pc_intr_setattr = genppc_pci_intr_setattr;
107 	pc->pc_intr_type = genppc_pci_intr_type;
108 	pc->pc_intr_alloc = genppc_pci_intr_alloc;
109 	pc->pc_intr_release = genppc_pci_intr_release;
110 	pc->pc_intx_alloc = genppc_pci_intx_alloc;
111 
112 	pc->pc_msi_v = (void *)pc;
113 	genppc_pci_chipset_msi_init(pc);
114 
115 	pc->pc_msix_v = (void *)pc;
116 	genppc_pci_chipset_msix_init(pc);
117 
118 	pc->pc_conf_interrupt = pmppc_pci_conf_interrupt;
119 	pc->pc_decompose_tag = genppc_pci_indirect_decompose_tag;
120 	pc->pc_conf_hook = genppc_pci_conf_hook;
121 
122 	pc->pc_addr = mapiodev(CPC_PCICFGADR, 4, false);
123 	pc->pc_data = mapiodev(CPC_PCICFGDATA, 4, false);
124 	pc->pc_bus = 0;
125 	pc->pc_node = 0;
126 	pc->pc_memt = 0;
127 	pc->pc_iot = 0;
128 
129 	/* the following two lines are required because unlike other ports,
130 	 * we cannot just add PHYS_TO_BUS_MEM/BUS_MEM_TO_PHYS defines to
131 	 * bus.h, because it would impact other evbppc ports.
132 	 */
133 	pci_bus_dma_tag._dma_phys_to_bus_mem = phys_to_pci;
134 	pci_bus_dma_tag._dma_bus_mem_to_phys = pci_to_phys;
135 }
136 
137 
138 static bus_addr_t
139 phys_to_pci(bus_dma_tag_t t, bus_addr_t a)
140 {
141 	return PHYS_TO_PCI_MEM(a);
142 }
143 
144 static bus_addr_t pci_to_phys(bus_dma_tag_t t, bus_addr_t a)
145 {
146 	return PCI_MEM_TO_PHYS(a);
147 }
148 
149 int
150 pmppc_pci_intr_map(const struct pci_attach_args *pa, pci_intr_handle_t *ihp)
151 {
152 	int	pin = pa->pa_intrpin;
153 	int	line = pa->pa_intrline;
154 
155 	if (pin == 0) {
156 		/* No IRQ used. */
157 		goto bad;
158 	}
159 
160 	if (pin > 4) {
161 		printf("pci_intr_map: bad interrupt pin %d\n", pin);
162 		goto bad;
163 	}
164 
165 	if (line == 255) {
166 		printf("pci_intr_map: no mapping for pin %c\n", '@' + pin);
167 		goto bad;
168 	}
169 	/*printf("pci_intr_map pin=%d line=%d\n", pin, line);*/
170 
171 	switch (line & 3) {	/* XXX what should this be? */
172 	case 0: *ihp = PMPPC_I_BPMC_INTA; break;
173 	case 1: *ihp = PMPPC_I_BPMC_INTB; break;
174 	case 2: *ihp = PMPPC_I_BPMC_INTC; break;
175 	case 3: *ihp = PMPPC_I_BPMC_INTD; break;
176 	}
177 	return 0;
178 
179 bad:
180 	*ihp = -1;
181 	return 1;
182 }
183 
184 void
185 pmppc_pci_conf_interrupt(void *v, int bus, int dev, int pin, int swiz,
186     int *iline)
187 {
188 	int line;
189 
190 	line = (swiz + dev) & 3;
191 	/* XXX UGLY UGLY, figure out the real interrupt mapping */
192 	if (bus==3&&dev==2&&pin==1&&swiz==3) line=2;
193 /*
194 	printf("pci_conf_interrupt: bus=%d dev=%d pin=%d swiz=%d => line=%d\n",
195 		bus, dev, pin, swiz, line);
196 */
197 	*iline = line;
198 }
199