pci_machdep.c revision 1.15 1 1.15 thomas /* $NetBSD: pci_machdep.c,v 1.15 1999/01/01 19:54:52 thomas Exp $ */
2 1.1 leo
3 1.1 leo /*
4 1.1 leo * Copyright (c) 1996 Leo Weppelman. All rights reserved.
5 1.7 cgd * Copyright (c) 1996, 1997 Christopher G. Demetriou. All rights reserved.
6 1.13 mycroft * Copyright (c) 1994 Charles M. Hannum. All rights reserved.
7 1.1 leo *
8 1.1 leo * Redistribution and use in source and binary forms, with or without
9 1.1 leo * modification, are permitted provided that the following conditions
10 1.1 leo * are met:
11 1.1 leo * 1. Redistributions of source code must retain the above copyright
12 1.1 leo * notice, this list of conditions and the following disclaimer.
13 1.1 leo * 2. Redistributions in binary form must reproduce the above copyright
14 1.1 leo * notice, this list of conditions and the following disclaimer in the
15 1.1 leo * documentation and/or other materials provided with the distribution.
16 1.1 leo * 3. All advertising materials mentioning features or use of this software
17 1.1 leo * must display the following acknowledgement:
18 1.13 mycroft * This product includes software developed by Charles M. Hannum.
19 1.1 leo * 4. The name of the author may not be used to endorse or promote products
20 1.1 leo * derived from this software without specific prior written permission.
21 1.1 leo *
22 1.1 leo * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
23 1.1 leo * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
24 1.1 leo * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
25 1.1 leo * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
26 1.1 leo * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
27 1.1 leo * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 1.1 leo * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 1.1 leo * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 1.1 leo * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
31 1.1 leo * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 1.1 leo */
33 1.1 leo
34 1.1 leo #include <sys/types.h>
35 1.1 leo #include <sys/param.h>
36 1.1 leo #include <sys/time.h>
37 1.1 leo #include <sys/systm.h>
38 1.1 leo #include <sys/errno.h>
39 1.1 leo #include <sys/device.h>
40 1.14 thomas #include <sys/malloc.h>
41 1.1 leo
42 1.1 leo #include <vm/vm.h>
43 1.1 leo #include <vm/vm_kern.h>
44 1.1 leo
45 1.1 leo #include <dev/pci/pcivar.h>
46 1.1 leo #include <dev/pci/pcireg.h>
47 1.1 leo
48 1.1 leo #include <machine/cpu.h>
49 1.1 leo #include <machine/iomap.h>
50 1.9 leo #include <machine/mfp.h>
51 1.10 leo #include <machine/bus.h>
52 1.10 leo
53 1.1 leo #include <atari/atari/device.h>
54 1.1 leo
55 1.9 leo /*
56 1.14 thomas * Sizes of pci memory and I/O area.
57 1.9 leo */
58 1.14 thomas #define PCI_MEM_END 0x10000000 /* 256 MByte */
59 1.14 thomas #define PCI_IO_END 0x10000000 /* 256 MByte */
60 1.14 thomas
61 1.14 thomas /*
62 1.14 thomas * We preserve some space at the begin of the pci area for 32BIT_1M
63 1.14 thomas * devices and standard vga.
64 1.14 thomas */
65 1.14 thomas #define PCI_MEM_START 0x00100000 /* 1 MByte */
66 1.15 thomas #define PCI_IO_START 0x00004000 /* 16 kByte (some PCI cards allow only
67 1.15 thomas I/O addresses up to 0xffff) */
68 1.14 thomas
69 1.14 thomas /*
70 1.14 thomas * Struct to hold the memory and I/O datas of the pci devices
71 1.14 thomas */
72 1.14 thomas struct pci_memreg {
73 1.14 thomas LIST_ENTRY(pci_memreg) link;
74 1.14 thomas int dev;
75 1.14 thomas pcitag_t tag;
76 1.14 thomas pcireg_t reg, address, mask;
77 1.14 thomas u_int32_t size;
78 1.14 thomas u_int32_t csr;
79 1.14 thomas };
80 1.14 thomas
81 1.14 thomas typedef LIST_HEAD(pci_memreg_head, pci_memreg) PCI_MEMREG;
82 1.9 leo
83 1.1 leo int pcibusprint __P((void *auxp, const char *));
84 1.5 leo int pcibusmatch __P((struct device *, struct cfdata *, void *));
85 1.1 leo void pcibusattach __P((struct device *, struct device *, void *));
86 1.1 leo
87 1.14 thomas static void enable_pci_devices __P((void));
88 1.14 thomas static void insert_into_list __P((PCI_MEMREG *head, struct pci_memreg *elem));
89 1.14 thomas static int overlap_pci_areas __P((struct pci_memreg *p,
90 1.14 thomas struct pci_memreg *self, u_int addr, u_int size, u_int what));
91 1.1 leo static int pci_config_offset __P((pcitag_t));
92 1.1 leo
93 1.1 leo struct cfattach pcibus_ca = {
94 1.1 leo sizeof(struct device), pcibusmatch, pcibusattach
95 1.1 leo };
96 1.1 leo
97 1.1 leo int
98 1.5 leo pcibusmatch(pdp, cfp, auxp)
99 1.1 leo struct device *pdp;
100 1.5 leo struct cfdata *cfp;
101 1.5 leo void *auxp;
102 1.1 leo {
103 1.1 leo if(atari_realconfig == 0)
104 1.1 leo return (0);
105 1.1 leo if (strcmp((char *)auxp, "pcibus") || cfp->cf_unit != 0)
106 1.1 leo return(0);
107 1.1 leo return(machineid & ATARI_HADES ? 1 : 0);
108 1.1 leo }
109 1.1 leo
110 1.1 leo void
111 1.1 leo pcibusattach(pdp, dp, auxp)
112 1.1 leo struct device *pdp, *dp;
113 1.1 leo void *auxp;
114 1.1 leo {
115 1.1 leo struct pcibus_attach_args pba;
116 1.11 leo bus_space_tag_t leb_alloc_bus_space_tag __P((void));
117 1.11 leo
118 1.1 leo
119 1.14 thomas enable_pci_devices();
120 1.14 thomas
121 1.1 leo pba.pba_busname = "pci";
122 1.4 leo pba.pba_pc = NULL;
123 1.1 leo pba.pba_bus = 0;
124 1.7 cgd pba.pba_flags = PCI_FLAGS_IO_ENABLED | PCI_FLAGS_MEM_ENABLED;
125 1.10 leo pba.pba_dmat = BUS_PCI_DMA_TAG;
126 1.11 leo pba.pba_iot = leb_alloc_bus_space_tag();
127 1.11 leo pba.pba_memt = leb_alloc_bus_space_tag();
128 1.11 leo if ((pba.pba_iot == NULL) || (pba.pba_memt == NULL)) {
129 1.11 leo printf("leb_alloc_bus_space_tag failed!\n");
130 1.11 leo return;
131 1.11 leo }
132 1.11 leo pba.pba_iot->base = PCI_IO_PHYS;
133 1.11 leo pba.pba_memt->base = PCI_MEM_PHYS;
134 1.6 leo
135 1.9 leo MFP2->mf_aer &= ~(0x27); /* PCI interrupts: HIGH -> LOW */
136 1.9 leo
137 1.6 leo printf("\n");
138 1.1 leo
139 1.1 leo config_found(dp, &pba, pcibusprint);
140 1.1 leo }
141 1.1 leo
142 1.1 leo int
143 1.1 leo pcibusprint(auxp, name)
144 1.1 leo void *auxp;
145 1.1 leo const char *name;
146 1.1 leo {
147 1.1 leo if(name == NULL)
148 1.1 leo return(UNCONF);
149 1.1 leo return(QUIET);
150 1.1 leo }
151 1.1 leo
152 1.1 leo void
153 1.1 leo pci_attach_hook(parent, self, pba)
154 1.1 leo struct device *parent, *self;
155 1.1 leo struct pcibus_attach_args *pba;
156 1.1 leo {
157 1.1 leo }
158 1.1 leo
159 1.1 leo /*
160 1.9 leo * Initialize the PCI-bus. The Atari-BIOS does not do this, so....
161 1.14 thomas * We only disable all devices here. Memory and I/O enabling is done
162 1.14 thomas * later at pcibusattach.
163 1.9 leo */
164 1.9 leo void
165 1.9 leo init_pci_bus()
166 1.9 leo {
167 1.9 leo pci_chipset_tag_t pc = NULL; /* XXX */
168 1.9 leo pcitag_t tag;
169 1.14 thomas pcireg_t csr;
170 1.14 thomas int device, id, maxndevs;
171 1.9 leo
172 1.14 thomas tag = 0;
173 1.14 thomas id = 0;
174 1.9 leo
175 1.9 leo maxndevs = pci_bus_maxdevs(pc, 0);
176 1.9 leo
177 1.9 leo for (device = 0; device < maxndevs; device++) {
178 1.9 leo
179 1.9 leo tag = pci_make_tag(pc, 0, device, 0);
180 1.9 leo id = pci_conf_read(pc, tag, PCI_ID_REG);
181 1.9 leo if (id == 0 || id == 0xffffffff)
182 1.9 leo continue;
183 1.9 leo
184 1.14 thomas csr = pci_conf_read(pc, tag, PCI_COMMAND_STATUS_REG);
185 1.14 thomas csr &= ~(PCI_COMMAND_MEM_ENABLE|PCI_COMMAND_IO_ENABLE);
186 1.14 thomas csr &= ~PCI_COMMAND_MASTER_ENABLE;
187 1.14 thomas pci_conf_write(pc, tag, PCI_COMMAND_STATUS_REG, csr);
188 1.14 thomas }
189 1.14 thomas }
190 1.14 thomas
191 1.14 thomas /*
192 1.14 thomas * insert a new element in an existing list that the ID's (size in struct
193 1.14 thomas * pci_memreg) are sorted.
194 1.14 thomas */
195 1.14 thomas static void
196 1.14 thomas insert_into_list(head, elem)
197 1.14 thomas PCI_MEMREG *head;
198 1.14 thomas struct pci_memreg *elem;
199 1.14 thomas {
200 1.14 thomas struct pci_memreg *p, *q;
201 1.14 thomas
202 1.14 thomas p = LIST_FIRST(head);
203 1.14 thomas q = NULL;
204 1.14 thomas
205 1.14 thomas for (; p != NULL && p->size < elem->size; q = p, p = LIST_NEXT(p, link));
206 1.14 thomas
207 1.14 thomas if (q == NULL) {
208 1.14 thomas LIST_INSERT_HEAD(head, elem, link);
209 1.14 thomas } else {
210 1.14 thomas LIST_INSERT_AFTER(q, elem, link);
211 1.14 thomas }
212 1.14 thomas }
213 1.14 thomas
214 1.14 thomas /*
215 1.14 thomas * Test if a new selected area overlaps with an already (probably preselected)
216 1.14 thomas * pci area.
217 1.14 thomas */
218 1.14 thomas static int
219 1.14 thomas overlap_pci_areas(p, self, addr, size, what)
220 1.14 thomas struct pci_memreg *p, *self;
221 1.14 thomas u_int addr, size, what;
222 1.14 thomas {
223 1.14 thomas struct pci_memreg *q;
224 1.14 thomas
225 1.14 thomas if (p == NULL)
226 1.14 thomas return 0;
227 1.14 thomas
228 1.14 thomas q = p;
229 1.14 thomas while (q != NULL) {
230 1.14 thomas if ((q != self) && (q->csr & what)) {
231 1.14 thomas if ((addr >= q->address) && (addr < (q->address + q->size))) {
232 1.14 thomas #ifdef DEBUG_PCI_MACHDEP
233 1.14 thomas printf("\noverlap area dev %d reg 0x%02x with dev %d reg 0x%02x",
234 1.14 thomas self->dev, self->reg, q->dev, q->reg);
235 1.14 thomas #endif
236 1.14 thomas return 1;
237 1.14 thomas }
238 1.14 thomas if ((q->address >= addr) && (q->address < (addr + size))) {
239 1.14 thomas #ifdef DEBUG_PCI_MACHDEP
240 1.14 thomas printf("\noverlap area dev %d reg 0x%02x with dev %d reg 0x%02x",
241 1.14 thomas self->dev, self->reg, q->dev, q->reg);
242 1.14 thomas #endif
243 1.14 thomas return 1;
244 1.14 thomas }
245 1.14 thomas }
246 1.14 thomas q = LIST_NEXT(q, link);
247 1.14 thomas }
248 1.14 thomas return 0;
249 1.14 thomas }
250 1.14 thomas
251 1.14 thomas /*
252 1.14 thomas * Enable memory and I/O on pci devices. Care about already enabled devices
253 1.14 thomas * (probabaly by the console driver).
254 1.14 thomas *
255 1.14 thomas * The idea behind the following code is:
256 1.14 thomas * We build a by sizes sorted list of the requirements of the different
257 1.14 thomas * pci devices. After that we choose the start addresses of that areas
258 1.14 thomas * in such a way that they are placed as closed as possible together.
259 1.14 thomas */
260 1.14 thomas static void
261 1.14 thomas enable_pci_devices()
262 1.14 thomas {
263 1.14 thomas PCI_MEMREG memlist;
264 1.14 thomas PCI_MEMREG iolist;
265 1.14 thomas struct pci_memreg *p, *q;
266 1.14 thomas int dev, reg, id, class;
267 1.14 thomas pcitag_t tag;
268 1.14 thomas pcireg_t csr, address, mask;
269 1.14 thomas pci_chipset_tag_t pc;
270 1.14 thomas int sizecnt, membase_1m;
271 1.14 thomas
272 1.14 thomas pc = 0;
273 1.14 thomas csr = 0;
274 1.14 thomas tag = 0;
275 1.14 thomas
276 1.14 thomas LIST_INIT(&memlist);
277 1.14 thomas LIST_INIT(&iolist);
278 1.14 thomas
279 1.14 thomas /*
280 1.14 thomas * first step: go through all devices and gather memory and I/O
281 1.14 thomas * sizes
282 1.14 thomas */
283 1.14 thomas for (dev = 0; dev < pci_bus_maxdevs(pc,0); dev++) {
284 1.14 thomas
285 1.14 thomas tag = pci_make_tag(pc, 0, dev, 0);
286 1.14 thomas id = pci_conf_read(pc, tag, PCI_ID_REG);
287 1.14 thomas if (id == 0 || id == 0xffffffff)
288 1.14 thomas continue;
289 1.14 thomas
290 1.14 thomas csr = pci_conf_read(pc, tag, PCI_COMMAND_STATUS_REG);
291 1.14 thomas
292 1.14 thomas /*
293 1.14 thomas * special case: if a display card is found and memory is enabled
294 1.14 thomas * preserve 128k at 0xa0000 as vga memory.
295 1.14 thomas */
296 1.14 thomas class = pci_conf_read(pc, tag, PCI_CLASS_REG);
297 1.14 thomas switch (PCI_CLASS(class)) {
298 1.14 thomas case PCI_CLASS_PREHISTORIC:
299 1.14 thomas case PCI_CLASS_DISPLAY:
300 1.14 thomas if (csr & (PCI_COMMAND_MEM_ENABLE | PCI_COMMAND_MASTER_ENABLE)) {
301 1.14 thomas p = (struct pci_memreg *)malloc(sizeof(struct pci_memreg),
302 1.14 thomas M_TEMP, M_WAITOK);
303 1.14 thomas memset(p, '\0', sizeof(struct pci_memreg));
304 1.14 thomas p->dev = dev;
305 1.14 thomas p->csr = csr;
306 1.14 thomas p->tag = tag;
307 1.14 thomas p->reg = 0; /* there is no register about this */
308 1.14 thomas p->size = 0x20000; /* 128kByte */
309 1.14 thomas p->mask = 0xfffe0000;
310 1.14 thomas p->address = 0xa0000;
311 1.14 thomas
312 1.14 thomas insert_into_list(&memlist, p);
313 1.9 leo }
314 1.9 leo }
315 1.9 leo
316 1.14 thomas for (reg = PCI_MAPREG_START; reg < PCI_MAPREG_END; reg += 4) {
317 1.14 thomas
318 1.14 thomas address = pci_conf_read(pc, tag, reg);
319 1.14 thomas pci_conf_write(pc, tag, reg, 0xffffffff);
320 1.14 thomas mask = pci_conf_read(pc, tag, reg);
321 1.14 thomas pci_conf_write(pc, tag, reg, address);
322 1.14 thomas if (mask == 0)
323 1.14 thomas continue; /* Register unused */
324 1.14 thomas
325 1.14 thomas p = (struct pci_memreg *)malloc(sizeof(struct pci_memreg),
326 1.14 thomas M_TEMP, M_WAITOK);
327 1.14 thomas memset(p, '\0', sizeof(struct pci_memreg));
328 1.14 thomas p->dev = dev;
329 1.14 thomas p->csr = csr;
330 1.14 thomas p->tag = tag;
331 1.14 thomas p->reg = reg;
332 1.14 thomas p->mask = mask;
333 1.14 thomas p->address = 0;
334 1.14 thomas
335 1.14 thomas if (mask & PCI_MAPREG_TYPE_IO) {
336 1.14 thomas p->size = PCI_MAPREG_IO_SIZE(mask);
337 1.14 thomas
338 1.14 thomas /*
339 1.14 thomas * if I/O is already enabled (probably by the console driver)
340 1.14 thomas * save the address in order to take care about it later.
341 1.14 thomas */
342 1.14 thomas if (csr & PCI_COMMAND_IO_ENABLE)
343 1.14 thomas p->address = address;
344 1.14 thomas
345 1.14 thomas insert_into_list(&iolist, p);
346 1.14 thomas } else {
347 1.14 thomas p->size = PCI_MAPREG_MEM_SIZE(mask);
348 1.14 thomas
349 1.14 thomas /*
350 1.14 thomas * if memory is already enabled (probably by the console driver)
351 1.14 thomas * save the address in order to take care about it later.
352 1.14 thomas */
353 1.14 thomas if (csr & PCI_COMMAND_MEM_ENABLE)
354 1.14 thomas p->address = address;
355 1.14 thomas
356 1.14 thomas insert_into_list(&memlist, p);
357 1.9 leo
358 1.14 thomas if (PCI_MAPREG_MEM_TYPE(mask) == PCI_MAPREG_MEM_TYPE_64BIT)
359 1.14 thomas reg++;
360 1.14 thomas }
361 1.14 thomas }
362 1.9 leo
363 1.14 thomas /*
364 1.14 thomas * Both interrupt pin & line are set to the device (== slot)
365 1.14 thomas * number. This makes sense on the atari because the
366 1.14 thomas * individual slots are hard-wired to a specific MFP-pin.
367 1.14 thomas */
368 1.14 thomas csr = (dev << PCI_INTERRUPT_PIN_SHIFT);
369 1.14 thomas csr |= (dev << PCI_INTERRUPT_LINE_SHIFT);
370 1.14 thomas pci_conf_write(pc, tag, PCI_INTERRUPT_REG, csr);
371 1.14 thomas }
372 1.14 thomas
373 1.14 thomas /*
374 1.14 thomas * second step: calculate the memory and I/O adresses beginning from
375 1.14 thomas * PCI_MEM_START and PCI_IO_START. Care about already mapped areas.
376 1.14 thomas *
377 1.14 thomas * beginn with memory list
378 1.14 thomas */
379 1.14 thomas
380 1.14 thomas address = PCI_MEM_START;
381 1.14 thomas sizecnt = 0;
382 1.14 thomas membase_1m = 0;
383 1.14 thomas p = LIST_FIRST(&memlist);
384 1.14 thomas while (p != NULL) {
385 1.14 thomas if (!(p->csr & PCI_COMMAND_MEM_ENABLE)) {
386 1.14 thomas if (PCI_MAPREG_MEM_TYPE(p->mask) == PCI_MAPREG_MEM_TYPE_32BIT_1M) {
387 1.14 thomas if (p->size > membase_1m)
388 1.14 thomas membase_1m = p->size;
389 1.14 thomas do {
390 1.14 thomas p->address = membase_1m;
391 1.14 thomas membase_1m += p->size;
392 1.14 thomas } while (overlap_pci_areas(LIST_FIRST(&memlist), p, p->address,
393 1.14 thomas p->size, PCI_COMMAND_MEM_ENABLE));
394 1.14 thomas if (membase_1m > 0x00100000) {
395 1.14 thomas /*
396 1.14 thomas * Should we panic here?
397 1.14 thomas */
398 1.14 thomas printf("\npcibus0: dev %d reg %d: memory not configured",
399 1.14 thomas p->dev, p->reg);
400 1.14 thomas p->reg = 0;
401 1.9 leo }
402 1.14 thomas } else {
403 1.9 leo
404 1.14 thomas if (sizecnt && (p->size > sizecnt))
405 1.14 thomas sizecnt = ((p->size + sizecnt) & p->mask) &
406 1.14 thomas PCI_MAPREG_MEM_ADDR_MASK;
407 1.14 thomas if (sizecnt > address) {
408 1.14 thomas address = sizecnt;
409 1.14 thomas sizecnt = 0;
410 1.14 thomas }
411 1.9 leo
412 1.14 thomas do {
413 1.14 thomas p->address = address + sizecnt;
414 1.14 thomas sizecnt += p->size;
415 1.14 thomas } while (overlap_pci_areas(LIST_FIRST(&memlist), p, p->address,
416 1.14 thomas p->size, PCI_COMMAND_MEM_ENABLE));
417 1.14 thomas
418 1.14 thomas if ((address + sizecnt) > PCI_MEM_END) {
419 1.14 thomas /*
420 1.14 thomas * Should we panic here?
421 1.14 thomas */
422 1.14 thomas printf("\npcibus0: dev %d reg %d: memory not configured",
423 1.14 thomas p->dev, p->reg);
424 1.14 thomas p->reg = 0;
425 1.14 thomas }
426 1.14 thomas }
427 1.14 thomas if (p->reg > 0) {
428 1.14 thomas pci_conf_write(pc, p->tag, p->reg, p->address);
429 1.14 thomas csr = pci_conf_read(pc, p->tag, PCI_COMMAND_STATUS_REG);
430 1.14 thomas csr |= PCI_COMMAND_MEM_ENABLE | PCI_COMMAND_MASTER_ENABLE;
431 1.14 thomas pci_conf_write(pc, p->tag, PCI_COMMAND_STATUS_REG, csr);
432 1.14 thomas }
433 1.14 thomas }
434 1.14 thomas p = LIST_NEXT(p, link);
435 1.14 thomas }
436 1.9 leo
437 1.14 thomas /*
438 1.14 thomas * now the I/O list
439 1.14 thomas */
440 1.14 thomas
441 1.14 thomas address = PCI_IO_START;
442 1.14 thomas sizecnt = 0;
443 1.14 thomas p = LIST_FIRST(&iolist);
444 1.14 thomas while (p != NULL) {
445 1.14 thomas if (!(p->csr & PCI_COMMAND_IO_ENABLE)) {
446 1.14 thomas
447 1.14 thomas if (sizecnt && (p->size > sizecnt))
448 1.14 thomas sizecnt = ((p->size + sizecnt) & p->mask) &
449 1.14 thomas PCI_MAPREG_IO_ADDR_MASK;
450 1.14 thomas if (sizecnt > address) {
451 1.14 thomas address = sizecnt;
452 1.14 thomas sizecnt = 0;
453 1.14 thomas }
454 1.14 thomas
455 1.14 thomas do {
456 1.14 thomas p->address = address + sizecnt;
457 1.14 thomas sizecnt += p->size;
458 1.14 thomas } while (overlap_pci_areas(LIST_FIRST(&iolist), p, p->address,
459 1.14 thomas p->size, PCI_COMMAND_IO_ENABLE));
460 1.9 leo
461 1.14 thomas if ((address + sizecnt) > PCI_IO_END) {
462 1.9 leo /*
463 1.14 thomas * Should we panic here?
464 1.9 leo */
465 1.14 thomas printf("\npcibus0: dev %d reg %d: io not configured",
466 1.14 thomas p->dev, p->reg);
467 1.14 thomas } else {
468 1.14 thomas pci_conf_write(pc, p->tag, p->reg, p->address);
469 1.14 thomas csr = pci_conf_read(pc, p->tag, PCI_COMMAND_STATUS_REG);
470 1.14 thomas csr |= PCI_COMMAND_IO_ENABLE | PCI_COMMAND_MASTER_ENABLE;
471 1.14 thomas pci_conf_write(pc, p->tag, PCI_COMMAND_STATUS_REG, csr);
472 1.14 thomas }
473 1.9 leo }
474 1.14 thomas p = LIST_NEXT(p, link);
475 1.14 thomas }
476 1.14 thomas
477 1.14 thomas #ifdef DEBUG_PCI_MACHDEP
478 1.14 thomas printf("\nI/O List:\n");
479 1.14 thomas p = LIST_FIRST(&iolist);
480 1.14 thomas
481 1.14 thomas while (p != NULL) {
482 1.14 thomas printf("\ndev: %d, reg: 0x%02x, size: 0x%08x, addr: 0x%08x", p->dev,
483 1.14 thomas p->reg, p->size, p->address);
484 1.14 thomas p = LIST_NEXT(p, link);
485 1.14 thomas }
486 1.14 thomas printf("\nMemlist:");
487 1.14 thomas p = LIST_FIRST(&memlist);
488 1.14 thomas
489 1.14 thomas while (p != NULL) {
490 1.14 thomas printf("\ndev: %d, reg: 0x%02x, size: 0x%08x, addr: 0x%08x", p->dev,
491 1.14 thomas p->reg, p->size, p->address);
492 1.14 thomas p = LIST_NEXT(p, link);
493 1.14 thomas }
494 1.14 thomas #endif
495 1.14 thomas
496 1.14 thomas /*
497 1.14 thomas * Free the lists
498 1.14 thomas */
499 1.14 thomas p = LIST_FIRST(&iolist);
500 1.14 thomas while (p != NULL) {
501 1.14 thomas q = p;
502 1.14 thomas LIST_REMOVE(q, link);
503 1.14 thomas free(p, M_WAITOK);
504 1.14 thomas p = LIST_FIRST(&iolist);
505 1.14 thomas }
506 1.14 thomas p = LIST_FIRST(&memlist);
507 1.14 thomas while (p != NULL) {
508 1.14 thomas q = p;
509 1.14 thomas LIST_REMOVE(q, link);
510 1.14 thomas free(p, M_WAITOK);
511 1.14 thomas p = LIST_FIRST(&memlist);
512 1.14 thomas }
513 1.9 leo }
514 1.9 leo
515 1.9 leo /*
516 1.1 leo * Atari_init.c maps the config areas NBPG bytes apart....
517 1.1 leo */
518 1.1 leo static int pci_config_offset(tag)
519 1.1 leo pcitag_t tag;
520 1.1 leo {
521 1.1 leo int device;
522 1.1 leo
523 1.1 leo device = (tag >> 11) & 0x1f;
524 1.1 leo return(device * NBPG);
525 1.1 leo }
526 1.1 leo
527 1.1 leo int
528 1.1 leo pci_bus_maxdevs(pc, busno)
529 1.1 leo pci_chipset_tag_t pc;
530 1.1 leo int busno;
531 1.1 leo {
532 1.1 leo return (4);
533 1.1 leo }
534 1.1 leo
535 1.1 leo pcitag_t
536 1.1 leo pci_make_tag(pc, bus, device, function)
537 1.1 leo pci_chipset_tag_t pc;
538 1.1 leo int bus, device, function;
539 1.1 leo {
540 1.1 leo return ((bus << 16) | (device << 11) | (function << 8));
541 1.1 leo }
542 1.1 leo
543 1.1 leo pcireg_t
544 1.1 leo pci_conf_read(pc, tag, reg)
545 1.1 leo pci_chipset_tag_t pc;
546 1.1 leo pcitag_t tag;
547 1.1 leo int reg;
548 1.1 leo {
549 1.1 leo u_long data;
550 1.1 leo
551 1.1 leo data = *(u_long *)(pci_conf_addr + pci_config_offset(tag) + reg);
552 1.9 leo return (bswap32(data));
553 1.1 leo }
554 1.1 leo
555 1.1 leo void
556 1.1 leo pci_conf_write(pc, tag, reg, data)
557 1.1 leo pci_chipset_tag_t pc;
558 1.1 leo pcitag_t tag;
559 1.1 leo int reg;
560 1.1 leo pcireg_t data;
561 1.1 leo {
562 1.9 leo *((u_long *)(pci_conf_addr + pci_config_offset(tag) + reg))
563 1.9 leo = bswap32(data);
564 1.1 leo }
565 1.1 leo
566 1.1 leo int
567 1.1 leo pci_intr_map(pc, intrtag, pin, line, ihp)
568 1.1 leo pci_chipset_tag_t pc;
569 1.1 leo pcitag_t intrtag;
570 1.1 leo int pin, line;
571 1.1 leo pci_intr_handle_t *ihp;
572 1.1 leo {
573 1.9 leo /*
574 1.9 leo * According to the PCI-spec, 255 means `unknown' or `no connection'.
575 1.9 leo * Interpret this as 'no interrupt assigned'.
576 1.9 leo */
577 1.9 leo if (line == 255) {
578 1.9 leo *ihp = -1;
579 1.9 leo return 1;
580 1.9 leo }
581 1.9 leo
582 1.9 leo /*
583 1.9 leo * Values are pretty useless because the on the Hades all interrupt
584 1.9 leo * lines for a card are tied together and hardwired to the TT-MFP
585 1.9 leo * I/O port.
586 1.9 leo */
587 1.9 leo *ihp = line;
588 1.9 leo return 0;
589 1.1 leo }
590 1.1 leo
591 1.1 leo const char *
592 1.1 leo pci_intr_string(pc, ih)
593 1.1 leo pci_chipset_tag_t pc;
594 1.1 leo pci_intr_handle_t ih;
595 1.1 leo {
596 1.1 leo static char irqstr[8]; /* 4 + 2 + NULL + sanity */
597 1.1 leo
598 1.9 leo if (ih == -1)
599 1.1 leo panic("pci_intr_string: bogus handle 0x%x\n", ih);
600 1.1 leo
601 1.3 christos sprintf(irqstr, "irq %d", ih);
602 1.1 leo return (irqstr);
603 1.1 leo
604 1.1 leo }
605 1.1 leo
606 1.9 leo /*
607 1.9 leo * The interrupt stuff is rather ugly. On the Hades, all interrupt lines
608 1.9 leo * for a slot are wired together and connected to IO 0,1,2 or 5 (slots:
609 1.9 leo * (0-3) on the TT-MFP. The Pci-config code initializes the irq. number
610 1.9 leo * to the slot position.
611 1.9 leo */
612 1.9 leo static pci_intr_info_t iinfo[4] = { { -1 }, { -1 }, { -1 }, { -1 } };
613 1.9 leo
614 1.9 leo static int iifun __P((int, int));
615 1.9 leo
616 1.9 leo static int
617 1.9 leo iifun(slot, sr)
618 1.9 leo int slot;
619 1.9 leo int sr;
620 1.9 leo {
621 1.9 leo pci_intr_info_t *iinfo_p;
622 1.9 leo int s;
623 1.9 leo
624 1.9 leo iinfo_p = &iinfo[slot];
625 1.9 leo
626 1.9 leo /*
627 1.9 leo * Disable the interrupts
628 1.9 leo */
629 1.9 leo MFP2->mf_imrb &= ~iinfo_p->imask;
630 1.9 leo
631 1.12 leo if ((sr & PSL_IPL) >= (iinfo_p->ipl & PSL_IPL)) {
632 1.9 leo /*
633 1.9 leo * We're running at a too high priority now.
634 1.9 leo */
635 1.9 leo add_sicallback((si_farg)iifun, (void*)slot, 0);
636 1.9 leo }
637 1.9 leo else {
638 1.9 leo s = splx(iinfo_p->ipl);
639 1.9 leo (void) (iinfo_p->ifunc)(iinfo_p->iarg);
640 1.9 leo splx(s);
641 1.9 leo
642 1.9 leo /*
643 1.9 leo * Re-enable interrupts after handling
644 1.9 leo */
645 1.9 leo MFP2->mf_imrb |= iinfo_p->imask;
646 1.9 leo }
647 1.9 leo return 1;
648 1.9 leo }
649 1.9 leo
650 1.1 leo void *
651 1.9 leo pci_intr_establish(pc, ih, level, ih_fun, ih_arg)
652 1.9 leo pci_chipset_tag_t pc;
653 1.9 leo pci_intr_handle_t ih;
654 1.9 leo int level;
655 1.9 leo int (*ih_fun) __P((void *));
656 1.9 leo void *ih_arg;
657 1.9 leo {
658 1.9 leo pci_intr_info_t *iinfo_p;
659 1.9 leo struct intrhand *ihand;
660 1.9 leo int slot;
661 1.9 leo
662 1.9 leo slot = ih;
663 1.9 leo iinfo_p = &iinfo[slot];
664 1.9 leo
665 1.9 leo if (iinfo_p->ipl > 0)
666 1.9 leo panic("pci_intr_establish: interrupt was already established\n");
667 1.9 leo
668 1.9 leo ihand = intr_establish((slot == 3) ? 23 : 16 + slot, USER_VEC, 0,
669 1.9 leo (hw_ifun_t)iifun, (void *)slot);
670 1.9 leo if (ihand != NULL) {
671 1.9 leo iinfo_p->ipl = level;
672 1.9 leo iinfo_p->imask = (slot == 3) ? 0x80 : (0x01 << slot);
673 1.9 leo iinfo_p->ifunc = ih_fun;
674 1.9 leo iinfo_p->iarg = ih_arg;
675 1.9 leo iinfo_p->ihand = ihand;
676 1.9 leo
677 1.9 leo /*
678 1.9 leo * Enable (unmask) the interrupt
679 1.9 leo */
680 1.9 leo MFP2->mf_imrb |= iinfo_p->imask;
681 1.9 leo MFP2->mf_ierb |= iinfo_p->imask;
682 1.9 leo return(iinfo_p);
683 1.9 leo }
684 1.1 leo return NULL;
685 1.1 leo }
686 1.1 leo
687 1.1 leo void
688 1.1 leo pci_intr_disestablish(pc, cookie)
689 1.1 leo pci_chipset_tag_t pc;
690 1.1 leo void *cookie;
691 1.1 leo {
692 1.9 leo pci_intr_info_t *iinfo_p = (pci_intr_info_t *)cookie;
693 1.9 leo
694 1.9 leo if (iinfo->ipl < 0)
695 1.9 leo panic("pci_intr_disestablish: interrupt was not established\n");
696 1.9 leo
697 1.9 leo MFP2->mf_imrb &= ~iinfo->imask;
698 1.9 leo MFP2->mf_ierb &= ~iinfo->imask;
699 1.9 leo (void) intr_disestablish(iinfo_p->ihand);
700 1.9 leo iinfo_p->ipl = -1;
701 1.1 leo }
702