Home | History | Annotate | Line # | Download | only in pci
      1  1.65    andvar /*	$NetBSD: pci_machdep.c,v 1.65 2024/09/07 06:17:38 andvar 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.40     lukem #include <sys/cdefs.h>
     35  1.65    andvar __KERNEL_RCSID(0, "$NetBSD: pci_machdep.c,v 1.65 2024/09/07 06:17:38 andvar Exp $");
     36  1.40     lukem 
     37  1.31       leo #include "opt_mbtype.h"
     38  1.40     lukem 
     39   1.1       leo #include <sys/types.h>
     40   1.1       leo #include <sys/param.h>
     41   1.1       leo #include <sys/time.h>
     42   1.1       leo #include <sys/systm.h>
     43   1.1       leo #include <sys/errno.h>
     44   1.1       leo #include <sys/device.h>
     45  1.59   thorpej #include <sys/kmem.h>
     46   1.1       leo 
     47  1.30       leo #define _ATARI_BUS_DMA_PRIVATE
     48  1.52    dyoung #include <sys/bus.h>
     49   1.1       leo 
     50   1.1       leo #include <dev/pci/pcivar.h>
     51   1.1       leo #include <dev/pci/pcireg.h>
     52  1.55   tsutsui #include <dev/pci/pcidevs.h>
     53   1.1       leo 
     54  1.30       leo #include <uvm/uvm_extern.h>
     55  1.30       leo 
     56   1.1       leo #include <machine/cpu.h>
     57   1.1       leo #include <machine/iomap.h>
     58   1.9       leo #include <machine/mfp.h>
     59  1.10       leo 
     60   1.1       leo #include <atari/atari/device.h>
     61  1.17       leo #include <atari/pci/pci_vga.h>
     62   1.1       leo 
     63   1.9       leo /*
     64  1.14    thomas  * Sizes of pci memory and I/O area.
     65   1.9       leo  */
     66  1.14    thomas #define PCI_MEM_END     0x10000000      /* 256 MByte */
     67  1.14    thomas #define PCI_IO_END      0x10000000      /* 256 MByte */
     68  1.14    thomas 
     69  1.14    thomas /*
     70  1.14    thomas  * We preserve some space at the begin of the pci area for 32BIT_1M
     71  1.14    thomas  * devices and standard vga.
     72  1.14    thomas  */
     73  1.14    thomas #define PCI_MEM_START   0x00100000      /*   1 MByte */
     74  1.15    thomas #define PCI_IO_START    0x00004000      /*  16 kByte (some PCI cards allow only
     75  1.25       leo 					    I/O addresses up to 0xffff) */
     76  1.20    thomas 
     77  1.20    thomas /*
     78  1.62    andvar  * PCI memory and IO should be aligned according to these masks
     79  1.20    thomas  */
     80  1.20    thomas #define PCI_MACHDEP_IO_ALIGN_MASK	0xffffff00
     81  1.20    thomas #define PCI_MACHDEP_MEM_ALIGN_MASK	0xfffff000
     82  1.20    thomas 
     83  1.19       leo /*
     84  1.19       leo  * Convert a PCI 'device' number to a slot number.
     85  1.19       leo  */
     86  1.19       leo #define	DEV2SLOT(dev)	(3 - dev)
     87  1.14    thomas 
     88  1.14    thomas /*
     89  1.14    thomas  * Struct to hold the memory and I/O datas of the pci devices
     90  1.14    thomas  */
     91  1.14    thomas struct pci_memreg {
     92  1.57   tsutsui 	LIST_ENTRY(pci_memreg) link;
     93  1.57   tsutsui 	int dev;
     94  1.57   tsutsui 	pcitag_t tag;
     95  1.57   tsutsui 	pcireg_t reg, address, mask;
     96  1.57   tsutsui 	uint32_t size;
     97  1.57   tsutsui 	uint32_t csr;
     98  1.14    thomas };
     99  1.14    thomas 
    100  1.14    thomas typedef LIST_HEAD(pci_memreg_head, pci_memreg) PCI_MEMREG;
    101   1.9       leo 
    102  1.30       leo /*
    103  1.30       leo  * Entry points for PCI DMA.  Use only the 'standard' functions.
    104  1.30       leo  */
    105  1.44       dsl int	_bus_dmamap_create(bus_dma_tag_t, bus_size_t, int, bus_size_t,
    106  1.44       dsl 	    bus_size_t, int, bus_dmamap_t *);
    107  1.30       leo struct atari_bus_dma_tag pci_bus_dma_tag = {
    108  1.30       leo 	0,
    109  1.33       leo #if defined(_ATARIHW_)
    110  1.31       leo 	0x80000000, /* On the Hades, CPU memory starts here PCI-wise */
    111  1.31       leo #else
    112  1.31       leo 	0,
    113  1.31       leo #endif
    114  1.30       leo 	_bus_dmamap_create,
    115  1.30       leo 	_bus_dmamap_destroy,
    116  1.30       leo 	_bus_dmamap_load,
    117  1.30       leo 	_bus_dmamap_load_mbuf,
    118  1.30       leo 	_bus_dmamap_load_uio,
    119  1.30       leo 	_bus_dmamap_load_raw,
    120  1.30       leo 	_bus_dmamap_unload,
    121  1.30       leo 	_bus_dmamap_sync,
    122  1.30       leo };
    123  1.30       leo 
    124  1.51   tsutsui int	ataripcibusprint(void *, const char *);
    125  1.51   tsutsui int	pcibusmatch(device_t, cfdata_t, void *);
    126  1.51   tsutsui void	pcibusattach(device_t, device_t, void *);
    127  1.44       dsl 
    128  1.44       dsl static void enable_pci_devices(void);
    129  1.44       dsl static void insert_into_list(PCI_MEMREG *head, struct pci_memreg *elem);
    130  1.44       dsl static int overlap_pci_areas(struct pci_memreg *p,
    131  1.57   tsutsui     struct pci_memreg *self, u_int addr, u_int size, u_int what);
    132   1.1       leo 
    133  1.51   tsutsui CFATTACH_DECL_NEW(pcib, 0,
    134  1.38   thorpej     pcibusmatch, pcibusattach, NULL, NULL);
    135   1.1       leo 
    136  1.27       leo /*
    137  1.27       leo  * We need some static storage to probe pci-busses for VGA cards during
    138  1.27       leo  * early console init.
    139  1.27       leo  */
    140  1.27       leo static struct atari_bus_space	bs_storage[2];	/* 1 iot, 1 memt */
    141  1.27       leo 
    142   1.1       leo int
    143  1.51   tsutsui pcibusmatch(device_t parent, cfdata_t cf, void *aux)
    144   1.1       leo {
    145  1.57   tsutsui 	static int nmatched = 0;
    146  1.26       leo 
    147  1.51   tsutsui 	if (strcmp((char *)aux, "pcib"))
    148  1.48   tsutsui 		return 0;	/* Wrong number... */
    149  1.26       leo 
    150  1.48   tsutsui 	if (atari_realconfig == 0)
    151  1.48   tsutsui 		return 1;
    152  1.27       leo 
    153  1.57   tsutsui 	if ((machineid & (ATARI_HADES|ATARI_MILAN)) != 0) {
    154  1.26       leo 		/*
    155  1.31       leo 		 * Both Hades and Milan have only one pci bus
    156  1.26       leo 		 */
    157  1.26       leo 		if (nmatched)
    158  1.48   tsutsui 			return 0;
    159  1.26       leo 		nmatched++;
    160  1.48   tsutsui 		return 1;
    161  1.26       leo 	}
    162  1.48   tsutsui 	return 0;
    163   1.1       leo }
    164   1.1       leo 
    165   1.1       leo void
    166  1.51   tsutsui pcibusattach(device_t parent, device_t self, void *aux)
    167   1.1       leo {
    168  1.57   tsutsui 	struct pcibus_attach_args pba;
    169   1.1       leo 
    170   1.4       leo 	pba.pba_pc      = NULL;
    171   1.1       leo 	pba.pba_bus     = 0;
    172  1.35   thorpej 	pba.pba_bridgetag = NULL;
    173  1.50    dyoung 	pba.pba_flags	= PCI_FLAGS_IO_OKAY | PCI_FLAGS_MEM_OKAY;
    174  1.30       leo 	pba.pba_dmat	= &pci_bus_dma_tag;
    175  1.27       leo 	pba.pba_iot     = leb_alloc_bus_space_tag(&bs_storage[0]);
    176  1.29       leo 	pba.pba_memt    = leb_alloc_bus_space_tag(&bs_storage[1]);
    177  1.11       leo 	if ((pba.pba_iot == NULL) || (pba.pba_memt == NULL)) {
    178  1.11       leo 		printf("leb_alloc_bus_space_tag failed!\n");
    179  1.11       leo 		return;
    180  1.11       leo 	}
    181  1.11       leo 	pba.pba_iot->base  = PCI_IO_PHYS;
    182  1.11       leo 	pba.pba_memt->base = PCI_MEM_PHYS;
    183   1.6       leo 
    184  1.51   tsutsui 	if (self == NULL) {
    185  1.27       leo 		/*
    186  1.27       leo 		 * Scan the bus for a VGA-card that we support. If we
    187  1.27       leo 		 * find one, try to initialize it to a 'standard' text
    188  1.27       leo 		 * mode (80x25).
    189  1.27       leo 		 */
    190  1.32       leo 		check_for_vga(pba.pba_iot, pba.pba_memt);
    191  1.27       leo 		return;
    192  1.27       leo 	}
    193  1.27       leo 
    194  1.27       leo 	enable_pci_devices();
    195  1.27       leo 
    196  1.31       leo #if defined(_ATARIHW_)
    197   1.9       leo 	MFP2->mf_aer &= ~(0x27); /* PCI interrupts: HIGH -> LOW */
    198  1.31       leo #endif
    199   1.9       leo 
    200   1.6       leo 	printf("\n");
    201   1.1       leo 
    202  1.61   thorpej 	config_found(self, &pba, ataripcibusprint, CFARGS_NONE);
    203   1.1       leo }
    204   1.1       leo 
    205   1.1       leo int
    206  1.51   tsutsui ataripcibusprint(void *aux, const char *name)
    207   1.1       leo {
    208  1.48   tsutsui 
    209  1.48   tsutsui 	if (name == NULL)
    210  1.48   tsutsui 		return UNCONF;
    211  1.48   tsutsui 	return QUIET;
    212   1.1       leo }
    213   1.1       leo 
    214   1.1       leo void
    215  1.51   tsutsui pci_attach_hook(device_t parent, device_t self, struct pcibus_attach_args *pba)
    216   1.1       leo {
    217   1.1       leo }
    218   1.1       leo 
    219   1.1       leo /*
    220   1.9       leo  * Initialize the PCI-bus. The Atari-BIOS does not do this, so....
    221  1.14    thomas  * We only disable all devices here. Memory and I/O enabling is done
    222  1.14    thomas  * later at pcibusattach.
    223   1.9       leo  */
    224   1.9       leo void
    225  1.47    cegger init_pci_bus(void)
    226   1.9       leo {
    227   1.9       leo 	pci_chipset_tag_t	pc = NULL; /* XXX */
    228   1.9       leo 	pcitag_t		tag;
    229  1.14    thomas 	pcireg_t		csr;
    230  1.57   tsutsui 	int			device, maxndevs;
    231  1.58   tsutsui 	uint32_t		id;
    232   1.9       leo 
    233  1.14    thomas 	tag   = 0;
    234  1.14    thomas 	id    = 0;
    235  1.63   tsutsui 
    236   1.9       leo 	maxndevs = pci_bus_maxdevs(pc, 0);
    237   1.9       leo 
    238   1.9       leo 	for (device = 0; device < maxndevs; device++) {
    239   1.9       leo 
    240   1.9       leo 		tag = pci_make_tag(pc, 0, device, 0);
    241   1.9       leo 		id  = pci_conf_read(pc, tag, PCI_ID_REG);
    242   1.9       leo 		if (id == 0 || id == 0xffffffff)
    243   1.9       leo 			continue;
    244   1.9       leo 
    245  1.14    thomas 		csr = pci_conf_read(pc, tag, PCI_COMMAND_STATUS_REG);
    246  1.14    thomas 		csr &= ~(PCI_COMMAND_MEM_ENABLE|PCI_COMMAND_IO_ENABLE);
    247  1.14    thomas 		csr &= ~PCI_COMMAND_MASTER_ENABLE;
    248  1.14    thomas 		pci_conf_write(pc, tag, PCI_COMMAND_STATUS_REG, csr);
    249  1.14    thomas 	}
    250  1.14    thomas }
    251  1.14    thomas 
    252  1.14    thomas /*
    253  1.14    thomas  * insert a new element in an existing list that the ID's (size in struct
    254  1.14    thomas  * pci_memreg) are sorted.
    255  1.14    thomas  */
    256  1.14    thomas static void
    257  1.45       dsl insert_into_list(PCI_MEMREG *head, struct pci_memreg *elem)
    258  1.14    thomas {
    259  1.57   tsutsui 	struct pci_memreg *p, *q;
    260  1.14    thomas 
    261  1.57   tsutsui 	p = LIST_FIRST(head);
    262  1.57   tsutsui 	q = NULL;
    263  1.14    thomas 
    264  1.57   tsutsui 	for (; p != NULL && p->size < elem->size;
    265  1.57   tsutsui 	    q = p, p = LIST_NEXT(p, link))
    266  1.57   tsutsui 		;
    267  1.57   tsutsui 
    268  1.57   tsutsui 	if (q == NULL) {
    269  1.57   tsutsui 		LIST_INSERT_HEAD(head, elem, link);
    270  1.57   tsutsui 	} else {
    271  1.57   tsutsui 		LIST_INSERT_AFTER(q, elem, link);
    272  1.57   tsutsui 	}
    273  1.14    thomas }
    274  1.14    thomas 
    275  1.14    thomas /*
    276  1.14    thomas  * Test if a new selected area overlaps with an already (probably preselected)
    277  1.14    thomas  * pci area.
    278  1.14    thomas  */
    279  1.14    thomas static int
    280  1.57   tsutsui overlap_pci_areas(struct pci_memreg *p, struct pci_memreg *self, u_int addr,
    281  1.57   tsutsui     u_int size, u_int what)
    282  1.14    thomas {
    283  1.57   tsutsui 	struct pci_memreg *q;
    284  1.14    thomas 
    285  1.57   tsutsui 	if (p == NULL)
    286  1.57   tsutsui 		return 0;
    287  1.63   tsutsui 
    288  1.57   tsutsui 	q = p;
    289  1.57   tsutsui 	while (q != NULL) {
    290  1.57   tsutsui 		if ((q != self) && (q->csr & what)) {
    291  1.57   tsutsui 			if ((addr >= q->address) &&
    292  1.57   tsutsui 			    (addr < (q->address + q->size))) {
    293  1.14    thomas #ifdef DEBUG_PCI_MACHDEP
    294  1.57   tsutsui 				printf("\noverlap area dev %d reg 0x%02x "
    295  1.57   tsutsui 				    "with dev %d reg 0x%02x",
    296  1.57   tsutsui 				    self->dev, self->reg, q->dev, q->reg);
    297  1.14    thomas #endif
    298  1.57   tsutsui 				return 1;
    299  1.57   tsutsui 			}
    300  1.57   tsutsui 			if ((q->address >= addr) &&
    301  1.57   tsutsui 			    (q->address < (addr + size))) {
    302  1.14    thomas #ifdef DEBUG_PCI_MACHDEP
    303  1.57   tsutsui 				printf("\noverlap area dev %d reg 0x%02x "
    304  1.57   tsutsui 				    "with dev %d reg 0x%02x",
    305  1.57   tsutsui 				    self->dev, self->reg, q->dev, q->reg);
    306  1.14    thomas #endif
    307  1.57   tsutsui 				return 1;
    308  1.57   tsutsui 			}
    309  1.57   tsutsui 		}
    310  1.57   tsutsui 		q = LIST_NEXT(q, link);
    311  1.14    thomas 	}
    312  1.57   tsutsui 	return 0;
    313  1.14    thomas }
    314  1.14    thomas 
    315  1.14    thomas /*
    316  1.14    thomas  * Enable memory and I/O on pci devices. Care about already enabled devices
    317  1.65    andvar  * (probably by the console driver).
    318  1.14    thomas  *
    319  1.14    thomas  * The idea behind the following code is:
    320  1.14    thomas  * We build a by sizes sorted list of the requirements of the different
    321  1.14    thomas  * pci devices. After that we choose the start addresses of that areas
    322  1.14    thomas  * in such a way that they are placed as closed as possible together.
    323  1.14    thomas  */
    324  1.14    thomas static void
    325  1.47    cegger enable_pci_devices(void)
    326  1.14    thomas {
    327  1.57   tsutsui 	PCI_MEMREG memlist;
    328  1.57   tsutsui 	PCI_MEMREG iolist;
    329  1.57   tsutsui 	struct pci_memreg *p, *q;
    330  1.57   tsutsui 	int dev, reg;
    331  1.58   tsutsui 	uint32_t id, class;
    332  1.57   tsutsui 	pcitag_t tag;
    333  1.57   tsutsui 	pcireg_t csr, address, mask;
    334  1.57   tsutsui 	pci_chipset_tag_t pc;
    335  1.57   tsutsui 	int sizecnt, membase_1m;
    336  1.57   tsutsui 
    337  1.57   tsutsui 	pc = 0;
    338  1.57   tsutsui 	csr = 0;
    339  1.57   tsutsui 	tag = 0;
    340  1.14    thomas 
    341  1.57   tsutsui 	LIST_INIT(&memlist);
    342  1.57   tsutsui 	LIST_INIT(&iolist);
    343  1.14    thomas 
    344  1.14    thomas 	/*
    345  1.57   tsutsui 	 * first step: go through all devices and gather memory and I/O
    346  1.57   tsutsui 	 * sizes
    347  1.14    thomas 	 */
    348  1.57   tsutsui 	for (dev = 0; dev < pci_bus_maxdevs(pc,0); dev++) {
    349  1.57   tsutsui 
    350  1.57   tsutsui 		tag = pci_make_tag(pc, 0, dev, 0);
    351  1.57   tsutsui 		id  = pci_conf_read(pc, tag, PCI_ID_REG);
    352  1.57   tsutsui 		if (id == 0 || id == 0xffffffff)
    353  1.57   tsutsui 			continue;
    354  1.14    thomas 
    355  1.57   tsutsui 		csr = pci_conf_read(pc, tag, PCI_COMMAND_STATUS_REG);
    356  1.14    thomas 
    357  1.14    thomas 		/*
    358  1.57   tsutsui 		 * special case: if a display card is found and memory is
    359  1.57   tsutsui 		 * enabled preserve 128k at 0xa0000 as vga memory.
    360  1.57   tsutsui 		 * XXX: if a display card is found without being enabled,
    361  1.57   tsutsui 		 * leave it alone! You will usually only create conflicts
    362  1.64    andvar 		 * by enabling it.
    363  1.20    thomas 		 */
    364  1.57   tsutsui 		class = pci_conf_read(pc, tag, PCI_CLASS_REG);
    365  1.57   tsutsui 		switch (PCI_CLASS(class)) {
    366  1.57   tsutsui 		case PCI_CLASS_PREHISTORIC:
    367  1.57   tsutsui 		case PCI_CLASS_DISPLAY:
    368  1.57   tsutsui 			if (csr & (PCI_COMMAND_MEM_ENABLE |
    369  1.57   tsutsui 			    PCI_COMMAND_MASTER_ENABLE)) {
    370  1.59   thorpej 				p = kmem_zalloc(sizeof(struct pci_memreg),
    371  1.59   thorpej 				    KM_SLEEP);
    372  1.57   tsutsui 				p->dev = dev;
    373  1.57   tsutsui 				p->csr = csr;
    374  1.57   tsutsui 				p->tag = tag;
    375  1.57   tsutsui 				p->reg = 0;	/* there is no register
    376  1.57   tsutsui 						   about this */
    377  1.57   tsutsui 				p->size = 0x20000; /* 128kByte */
    378  1.57   tsutsui 				p->mask = 0xfffe0000;
    379  1.57   tsutsui 				p->address = 0xa0000;
    380  1.57   tsutsui 
    381  1.57   tsutsui 				insert_into_list(&memlist, p);
    382  1.57   tsutsui 			} else
    383  1.57   tsutsui 				continue;
    384  1.20    thomas 		}
    385  1.20    thomas 
    386  1.57   tsutsui 		for (reg = PCI_MAPREG_START; reg < PCI_MAPREG_END; reg += 4) {
    387  1.57   tsutsui 			address = pci_conf_read(pc, tag, reg);
    388  1.57   tsutsui 			pci_conf_write(pc, tag, reg, 0xffffffff);
    389  1.57   tsutsui 			mask    = pci_conf_read(pc, tag, reg);
    390  1.57   tsutsui 			pci_conf_write(pc, tag, reg, address);
    391  1.57   tsutsui 			if (mask == 0)
    392  1.57   tsutsui 				continue; /* Register unused */
    393  1.57   tsutsui 
    394  1.59   thorpej 			p = kmem_zalloc(sizeof(struct pci_memreg),
    395  1.59   thorpej 			    KM_SLEEP);
    396  1.57   tsutsui 			p->dev = dev;
    397  1.57   tsutsui 			p->csr = csr;
    398  1.57   tsutsui 			p->tag = tag;
    399  1.57   tsutsui 			p->reg = reg;
    400  1.57   tsutsui 			p->mask = mask;
    401  1.57   tsutsui 			p->address = 0;
    402  1.57   tsutsui 
    403  1.57   tsutsui 			if ((mask & PCI_MAPREG_TYPE_IO) != 0) {
    404  1.57   tsutsui 				p->size = PCI_MAPREG_IO_SIZE(mask);
    405  1.57   tsutsui 
    406  1.57   tsutsui 				/*
    407  1.57   tsutsui 				 * Align IO if necessary
    408  1.57   tsutsui 				 */
    409  1.57   tsutsui 				if (p->size < PCI_MAPREG_IO_SIZE(
    410  1.57   tsutsui 				    PCI_MACHDEP_IO_ALIGN_MASK)) {
    411  1.57   tsutsui 					p->mask = PCI_MACHDEP_IO_ALIGN_MASK;
    412  1.57   tsutsui 					p->size = PCI_MAPREG_IO_SIZE(p->mask);
    413  1.57   tsutsui 				}
    414  1.57   tsutsui 
    415  1.57   tsutsui 				/*
    416  1.57   tsutsui 				 * if I/O is already enabled
    417  1.57   tsutsui 				 * (probably by the console driver)
    418  1.57   tsutsui 				 * save the address in order to take care
    419  1.57   tsutsui 				 * about it later.
    420  1.57   tsutsui 				 */
    421  1.57   tsutsui 				if ((csr & PCI_COMMAND_IO_ENABLE) != 0)
    422  1.57   tsutsui 					p->address = address;
    423  1.57   tsutsui 
    424  1.57   tsutsui 				insert_into_list(&iolist, p);
    425  1.57   tsutsui 			} else {
    426  1.57   tsutsui 				p->size = PCI_MAPREG_MEM_SIZE(mask);
    427  1.57   tsutsui 
    428  1.57   tsutsui 				/*
    429  1.57   tsutsui 				 * Align memory if necessary
    430  1.57   tsutsui 				 */
    431  1.57   tsutsui 				if (p->size < PCI_MAPREG_IO_SIZE(
    432  1.57   tsutsui 				    PCI_MACHDEP_MEM_ALIGN_MASK)) {
    433  1.57   tsutsui 					p->mask = PCI_MACHDEP_MEM_ALIGN_MASK;
    434  1.57   tsutsui 					p->size = PCI_MAPREG_MEM_SIZE(p->mask);
    435  1.57   tsutsui 				}
    436  1.57   tsutsui 
    437  1.57   tsutsui 				/*
    438  1.57   tsutsui 				 * if memory is already enabled
    439  1.57   tsutsui 				 * (probably by the console driver)
    440  1.57   tsutsui 				 * save the address in order to take care
    441  1.57   tsutsui 				 * about it later.
    442  1.57   tsutsui 				 */
    443  1.57   tsutsui 				if ((csr & PCI_COMMAND_MEM_ENABLE) != 0)
    444  1.57   tsutsui 					p->address = address;
    445  1.57   tsutsui 
    446  1.57   tsutsui 				insert_into_list(&memlist, p);
    447  1.57   tsutsui 
    448  1.57   tsutsui 				if (PCI_MAPREG_MEM_TYPE(mask) ==
    449  1.57   tsutsui 				    PCI_MAPREG_MEM_TYPE_64BIT)
    450  1.57   tsutsui 					reg++;
    451  1.57   tsutsui 			}
    452  1.57   tsutsui 		}
    453  1.57   tsutsui 
    454  1.57   tsutsui #if defined(_ATARIHW_)
    455  1.20    thomas 		/*
    456  1.57   tsutsui 		 * Both interrupt pin & line are set to the device (== slot)
    457  1.57   tsutsui 		 * number. This makes sense on the atari Hades because the
    458  1.57   tsutsui 		 * individual slots are hard-wired to a specific MFP-pin.
    459  1.14    thomas 		 */
    460  1.57   tsutsui 		csr  = (DEV2SLOT(dev) << PCI_INTERRUPT_PIN_SHIFT);
    461  1.57   tsutsui 		csr |= (DEV2SLOT(dev) << PCI_INTERRUPT_LINE_SHIFT);
    462  1.57   tsutsui 		pci_conf_write(pc, tag, PCI_INTERRUPT_REG, csr);
    463  1.57   tsutsui #else
    464  1.14    thomas 		/*
    465  1.57   tsutsui 		 * On the Milan, we accept the BIOS's choice.
    466  1.20    thomas 		 */
    467  1.20    thomas 		/*
    468  1.57   tsutsui 		 * ..except the secondary IDE interrupt that
    469  1.57   tsutsui 		 * the BIOS doesn't setup.
    470  1.14    thomas 		 */
    471  1.57   tsutsui #define PIIX_PCIB_MBIRQ0	0x70
    472  1.57   tsutsui 		if ((PCI_VENDOR(id) == PCI_VENDOR_INTEL) &&
    473  1.57   tsutsui 		    (PCI_PRODUCT(id) == PCI_PRODUCT_INTEL_82371FB_ISA)) {
    474  1.57   tsutsui 			/*
    475  1.57   tsutsui 			 * Set Interrupt Routing for MBIRQ0 to IRQ15.
    476  1.57   tsutsui 			 * Note Milan's ROM bootloader v1.2 and v1.4
    477  1.57   tsutsui 			 * incorrectly set MBIRQ0 to IRQ14 (not 15)
    478  1.57   tsutsui 			 * and unused MBIRQ1 to IRQ 15,
    479  1.57   tsutsui 			 * so explicitly disable MBIRQ1.
    480  1.57   tsutsui 			 */
    481  1.57   tsutsui 			csr = pci_conf_read(pc, tag, PIIX_PCIB_MBIRQ0);
    482  1.57   tsutsui 			csr &= ~0x0000ffff;
    483  1.57   tsutsui 			/* MBIRQ1: disable, MBIRQ0: IRQ15 */
    484  1.57   tsutsui 			csr |=  0x0000800f;
    485  1.57   tsutsui 			pci_conf_write(pc, tag, PIIX_PCIB_MBIRQ0, csr);
    486  1.57   tsutsui #ifdef DEBUG_PCI_MACHDEP
    487  1.57   tsutsui 			printf("\npcib0: enable and route MBIRQ0 to irq 15\n");
    488  1.57   tsutsui #endif
    489  1.57   tsutsui 		}
    490  1.57   tsutsui #endif
    491  1.57   tsutsui 	}
    492  1.14    thomas 
    493  1.57   tsutsui 	/*
    494  1.57   tsutsui 	 * second step: calculate the memory and I/O addresses beginning from
    495  1.57   tsutsui 	 * PCI_MEM_START and PCI_IO_START. Care about already mapped areas.
    496  1.57   tsutsui 	 *
    497  1.57   tsutsui 	 * begin with memory list
    498  1.57   tsutsui 	 */
    499   1.9       leo 
    500  1.57   tsutsui 	address = PCI_MEM_START;
    501  1.57   tsutsui 	sizecnt = 0;
    502  1.57   tsutsui 	membase_1m = 0;
    503  1.57   tsutsui 	p = LIST_FIRST(&memlist);
    504  1.57   tsutsui 	while (p != NULL) {
    505  1.57   tsutsui 		if ((p->csr & PCI_COMMAND_MEM_ENABLE) == 0) {
    506  1.57   tsutsui 			if (PCI_MAPREG_MEM_TYPE(p->mask) ==
    507  1.57   tsutsui 			    PCI_MAPREG_MEM_TYPE_32BIT_1M) {
    508  1.57   tsutsui 				if (p->size > membase_1m)
    509  1.57   tsutsui 					membase_1m = p->size;
    510  1.57   tsutsui 				do {
    511  1.57   tsutsui 					p->address = membase_1m;
    512  1.57   tsutsui 					membase_1m += p->size;
    513  1.57   tsutsui 				} while (overlap_pci_areas(LIST_FIRST(&memlist),
    514  1.57   tsutsui 				    p, p->address, p->size,
    515  1.57   tsutsui 				    PCI_COMMAND_MEM_ENABLE));
    516  1.57   tsutsui 				if (membase_1m > 0x00100000) {
    517  1.57   tsutsui 					/*
    518  1.57   tsutsui 					 * Should we panic here?
    519  1.57   tsutsui 					 */
    520  1.57   tsutsui 					printf("\npcibus0: dev %d reg %d:"
    521  1.57   tsutsui 					    " memory not configured",
    522  1.57   tsutsui 					    p->dev, p->reg);
    523  1.57   tsutsui 					p->reg = 0;
    524  1.57   tsutsui 				}
    525  1.57   tsutsui 			} else {
    526  1.57   tsutsui 				if (sizecnt && (p->size > sizecnt))
    527  1.57   tsutsui 					sizecnt =
    528  1.57   tsutsui 					    ((p->size + sizecnt) & p->mask) &
    529  1.57   tsutsui 					    PCI_MAPREG_MEM_ADDR_MASK;
    530  1.57   tsutsui 				if (sizecnt > address) {
    531  1.57   tsutsui 					address = sizecnt;
    532  1.57   tsutsui 					sizecnt = 0;
    533  1.57   tsutsui 				}
    534  1.57   tsutsui 
    535  1.57   tsutsui 				do {
    536  1.57   tsutsui 					p->address = address + sizecnt;
    537  1.57   tsutsui 					sizecnt += p->size;
    538  1.57   tsutsui 				} while (overlap_pci_areas(LIST_FIRST(&memlist),
    539  1.57   tsutsui 				    p, p->address, p->size,
    540  1.57   tsutsui 				    PCI_COMMAND_MEM_ENABLE));
    541  1.57   tsutsui 
    542  1.57   tsutsui 				if ((address + sizecnt) > PCI_MEM_END) {
    543  1.57   tsutsui 					/*
    544  1.57   tsutsui 					 * Should we panic here?
    545  1.57   tsutsui 					 */
    546  1.57   tsutsui 					printf("\npcibus0: dev %d reg %d:"
    547  1.57   tsutsui 					    " memory not configured",
    548  1.57   tsutsui 					    p->dev, p->reg);
    549  1.57   tsutsui 					p->reg = 0;
    550  1.57   tsutsui 				}
    551  1.57   tsutsui 			}
    552  1.57   tsutsui 			if (p->reg > 0) {
    553  1.57   tsutsui 				pci_conf_write(pc, p->tag, p->reg, p->address);
    554  1.57   tsutsui 				csr = pci_conf_read(pc, p->tag,
    555  1.57   tsutsui 				    PCI_COMMAND_STATUS_REG);
    556  1.57   tsutsui 				csr |= PCI_COMMAND_MEM_ENABLE |
    557  1.57   tsutsui 				    PCI_COMMAND_MASTER_ENABLE;
    558  1.57   tsutsui 				pci_conf_write(pc, p->tag,
    559  1.57   tsutsui 				    PCI_COMMAND_STATUS_REG, csr);
    560  1.57   tsutsui 				p->csr = csr;
    561  1.57   tsutsui 			}
    562  1.57   tsutsui 		}
    563  1.57   tsutsui 		p = LIST_NEXT(p, link);
    564  1.14    thomas 	}
    565   1.9       leo 
    566  1.33       leo 	/*
    567  1.57   tsutsui 	 * now the I/O list
    568  1.33       leo 	 */
    569  1.14    thomas 
    570  1.57   tsutsui 	address = PCI_IO_START;
    571  1.57   tsutsui 	sizecnt = 0;
    572  1.57   tsutsui 	p = LIST_FIRST(&iolist);
    573  1.57   tsutsui 	while (p != NULL) {
    574  1.57   tsutsui 		if (!(p->csr & PCI_COMMAND_IO_ENABLE)) {
    575   1.9       leo 
    576  1.57   tsutsui 			if (sizecnt && (p->size > sizecnt))
    577  1.57   tsutsui 				sizecnt = ((p->size + sizecnt) & p->mask) &
    578  1.57   tsutsui 				    PCI_MAPREG_IO_ADDR_MASK;
    579  1.57   tsutsui 			if (sizecnt > address) {
    580  1.57   tsutsui 				address = sizecnt;
    581  1.57   tsutsui 				sizecnt = 0;
    582  1.57   tsutsui 			}
    583  1.57   tsutsui 
    584  1.57   tsutsui 			do {
    585  1.57   tsutsui 				p->address = address + sizecnt;
    586  1.57   tsutsui 				sizecnt += p->size;
    587  1.57   tsutsui 			} while (overlap_pci_areas(LIST_FIRST(&iolist), p,
    588  1.57   tsutsui 			    p->address, p->size, PCI_COMMAND_IO_ENABLE));
    589  1.57   tsutsui 
    590  1.57   tsutsui 			if ((address + sizecnt) > PCI_IO_END) {
    591  1.57   tsutsui 				/*
    592  1.57   tsutsui 				 * Should we panic here?
    593  1.57   tsutsui 				 */
    594  1.57   tsutsui 				printf("\npcibus0: dev %d reg %d:"
    595  1.57   tsutsui 				    " io not configured",
    596  1.57   tsutsui 				    p->dev, p->reg);
    597  1.57   tsutsui 			} else {
    598  1.57   tsutsui 				pci_conf_write(pc, p->tag, p->reg, p->address);
    599  1.57   tsutsui 				csr = pci_conf_read(pc, p->tag,
    600  1.57   tsutsui 				    PCI_COMMAND_STATUS_REG);
    601  1.57   tsutsui 				csr |= PCI_COMMAND_IO_ENABLE |
    602  1.57   tsutsui 				    PCI_COMMAND_MASTER_ENABLE;
    603  1.57   tsutsui 				pci_conf_write(pc, p->tag,
    604  1.57   tsutsui 				    PCI_COMMAND_STATUS_REG, csr);
    605  1.57   tsutsui 				p->csr = csr;
    606  1.57   tsutsui 			}
    607  1.14    thomas 		}
    608  1.57   tsutsui 		p = LIST_NEXT(p, link);
    609  1.57   tsutsui 	}
    610   1.9       leo 
    611  1.57   tsutsui #ifdef DEBUG_PCI_MACHDEP
    612  1.57   tsutsui 	printf("\nI/O List:\n");
    613  1.57   tsutsui 	p = LIST_FIRST(&iolist);
    614   1.9       leo 
    615  1.57   tsutsui 	while (p != NULL) {
    616  1.57   tsutsui 		printf("\ndev: %d, reg: 0x%02x, size: 0x%08x, addr: 0x%08x",
    617  1.57   tsutsui 		    p->dev, p->reg, p->size, p->address);
    618  1.57   tsutsui 		p = LIST_NEXT(p, link);
    619   1.9       leo 	}
    620  1.57   tsutsui 	printf("\nMemlist:");
    621  1.57   tsutsui 	p = LIST_FIRST(&memlist);
    622  1.14    thomas 
    623  1.57   tsutsui 	while (p != NULL) {
    624  1.57   tsutsui 		printf("\ndev: %d, reg: 0x%02x, size: 0x%08x, addr: 0x%08x",
    625  1.57   tsutsui 		    p->dev, p->reg, p->size, p->address);
    626  1.57   tsutsui 		p = LIST_NEXT(p, link);
    627  1.57   tsutsui 	}
    628  1.14    thomas #endif
    629  1.14    thomas 
    630  1.57   tsutsui 	/*
    631  1.57   tsutsui 	 * Free the lists
    632  1.57   tsutsui 	 */
    633  1.14    thomas 	p = LIST_FIRST(&iolist);
    634  1.57   tsutsui 	while (p != NULL) {
    635  1.57   tsutsui 		q = p;
    636  1.57   tsutsui 		LIST_REMOVE(q, link);
    637  1.59   thorpej 		kmem_free(p, sizeof(*p));
    638  1.57   tsutsui 		p = LIST_FIRST(&iolist);
    639  1.57   tsutsui 	}
    640  1.14    thomas 	p = LIST_FIRST(&memlist);
    641  1.57   tsutsui 	while (p != NULL) {
    642  1.57   tsutsui 		q = p;
    643  1.57   tsutsui 		LIST_REMOVE(q, link);
    644  1.59   thorpej 		kmem_free(p, sizeof(*p));
    645  1.57   tsutsui 		p = LIST_FIRST(&memlist);
    646  1.57   tsutsui 	}
    647   1.9       leo }
    648   1.9       leo 
    649   1.1       leo pcitag_t
    650  1.46       dsl pci_make_tag(pci_chipset_tag_t pc, int bus, int device, int function)
    651   1.1       leo {
    652  1.48   tsutsui 
    653  1.48   tsutsui 	return (bus << 16) | (device << 11) | (function << 8);
    654  1.34   thorpej }
    655  1.34   thorpej 
    656  1.34   thorpej void
    657  1.46       dsl pci_decompose_tag(pci_chipset_tag_t pc, pcitag_t tag, int *bp, int *dp, int *fp)
    658  1.34   thorpej {
    659  1.34   thorpej 
    660  1.34   thorpej 	if (bp != NULL)
    661  1.34   thorpej 		*bp = (tag >> 16) & 0xff;
    662  1.34   thorpej 	if (dp != NULL)
    663  1.34   thorpej 		*dp = (tag >> 11) & 0x1f;
    664  1.34   thorpej 	if (fp != NULL)
    665  1.34   thorpej 		*fp = (tag >> 8) & 0x7;
    666   1.1       leo }
    667   1.1       leo 
    668   1.1       leo int
    669  1.49    dyoung pci_intr_map(const struct pci_attach_args *pa, pci_intr_handle_t *ihp)
    670   1.1       leo {
    671  1.28  sommerfe 	int line = pa->pa_intrline;
    672  1.28  sommerfe 
    673  1.33       leo #if defined(_MILANHW_)
    674  1.33       leo 	/*
    675  1.33       leo 	 * On the Hades, the 'pin' info is useless.
    676  1.33       leo 	 */
    677  1.33       leo 	{
    678  1.33       leo 		int pin = pa->pa_intrpin;
    679  1.33       leo 
    680  1.33       leo 		if (pin == 0) {
    681  1.33       leo 			/* No IRQ used. */
    682  1.33       leo 			goto bad;
    683  1.33       leo 		}
    684  1.33       leo 		if (pin > PCI_INTERRUPT_PIN_MAX) {
    685  1.33       leo 			printf("pci_intr_map: bad interrupt pin %d\n", pin);
    686  1.33       leo 			goto bad;
    687  1.33       leo 		}
    688  1.33       leo 	}
    689  1.33       leo #endif /* _MILANHW_ */
    690  1.33       leo 
    691   1.9       leo 	/*
    692   1.9       leo 	 * According to the PCI-spec, 255 means `unknown' or `no connection'.
    693   1.9       leo 	 * Interpret this as 'no interrupt assigned'.
    694   1.9       leo 	 */
    695  1.33       leo 	if (line == 255)
    696  1.33       leo 		goto bad;
    697   1.9       leo 
    698   1.9       leo 	/*
    699  1.31       leo 	 * Values are pretty useless on the Hades since all interrupt
    700  1.31       leo 	 * lines for a card are tied together and hardwired to a
    701  1.31       leo 	 * specific TT-MFP I/O port.
    702  1.33       leo 	 * On the Milan, they are tied to the ICU.
    703   1.9       leo 	 */
    704  1.33       leo #if defined(_MILANHW_)
    705  1.33       leo 	if (line >= 16) {
    706  1.33       leo 		printf("pci_intr_map: bad interrupt line %d\n", line);
    707  1.33       leo 		goto bad;
    708  1.33       leo 	}
    709  1.33       leo 	if (line == 2) {
    710  1.33       leo 		printf("pci_intr_map: changed line 2 to line 9\n");
    711  1.33       leo 		line = 9;
    712  1.33       leo 	}
    713  1.33       leo 	/* Assume line == 0 means unassigned */
    714  1.33       leo 	if (line == 0)
    715  1.33       leo 		goto bad;
    716  1.33       leo #endif
    717   1.9       leo 	*ihp = line;
    718   1.9       leo 	return 0;
    719  1.33       leo 
    720  1.33       leo bad:
    721  1.33       leo 	*ihp = -1;
    722  1.33       leo 	return 1;
    723   1.1       leo }
    724   1.1       leo 
    725   1.1       leo const char *
    726  1.57   tsutsui pci_intr_string(pci_chipset_tag_t pc, pci_intr_handle_t ih, char *buf,
    727  1.57   tsutsui     size_t len)
    728   1.1       leo {
    729  1.57   tsutsui 
    730   1.9       leo 	if (ih == -1)
    731  1.36    provos 		panic("pci_intr_string: bogus handle 0x%x", ih);
    732   1.1       leo 
    733  1.54  christos 	snprintf(buf, len, "irq %d", ih);
    734  1.54  christos 	return buf;
    735  1.22       cgd }
    736  1.22       cgd 
    737  1.22       cgd const struct evcnt *
    738  1.45       dsl pci_intr_evcnt(pci_chipset_tag_t pc, pci_intr_handle_t ih)
    739  1.22       cgd {
    740  1.22       cgd 
    741  1.22       cgd 	/* XXX for now, no evcnt parent reported */
    742  1.22       cgd 	return NULL;
    743   1.1       leo }
    744