Home | History | Annotate | Line # | Download | only in pci
universe_pci.c revision 1.3
      1  1.3  sommerfe /* $NetBSD: universe_pci.c,v 1.3 2000/12/28 22:59:15 sommerfeld Exp $ */
      2  1.1  drochner 
      3  1.1  drochner /*
      4  1.1  drochner  * Copyright (c) 1999
      5  1.1  drochner  * 	Matthias Drochner.  All rights reserved.
      6  1.1  drochner  *
      7  1.1  drochner  * Redistribution and use in source and binary forms, with or without
      8  1.1  drochner  * modification, are permitted provided that the following conditions
      9  1.1  drochner  * are met:
     10  1.1  drochner  * 1. Redistributions of source code must retain the above copyright
     11  1.1  drochner  *    notice, this list of conditions, and the following disclaimer.
     12  1.1  drochner  * 2. Redistributions in binary form must reproduce the above copyright
     13  1.1  drochner  *    notice, this list of conditions and the following disclaimer in the
     14  1.1  drochner  *    documentation and/or other materials provided with the distribution.
     15  1.1  drochner  *
     16  1.1  drochner  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
     17  1.1  drochner  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     18  1.1  drochner  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     19  1.1  drochner  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
     20  1.1  drochner  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     21  1.1  drochner  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     22  1.1  drochner  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     23  1.1  drochner  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     24  1.1  drochner  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     25  1.1  drochner  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     26  1.1  drochner  * SUCH DAMAGE.
     27  1.1  drochner  */
     28  1.1  drochner 
     29  1.1  drochner /*
     30  1.1  drochner  * Common functions for PCI-VME-interfaces using the
     31  1.1  drochner  * Newbridge/Tundra Universe II chip (CA91C142).
     32  1.1  drochner  */
     33  1.1  drochner 
     34  1.1  drochner #include <sys/param.h>
     35  1.1  drochner #include <sys/systm.h>
     36  1.1  drochner #include <sys/device.h>
     37  1.1  drochner 
     38  1.1  drochner #include <dev/pci/pcireg.h>
     39  1.1  drochner #include <dev/pci/pcivar.h>
     40  1.1  drochner /*#include <dev/pci/pcidevs.h>*/
     41  1.1  drochner 
     42  1.1  drochner #include <machine/bus.h>
     43  1.1  drochner 
     44  1.1  drochner #include <dev/vme/vmereg.h>
     45  1.1  drochner #include <dev/vme/vmevar.h>
     46  1.1  drochner 
     47  1.1  drochner #include <dev/ic/universereg.h>
     48  1.1  drochner #include <dev/pci/universe_pci_var.h>
     49  1.1  drochner 
     50  1.1  drochner int univ_pci_intr __P((void *));
     51  1.1  drochner 
     52  1.1  drochner #define read_csr_4(d, reg) \
     53  1.1  drochner   bus_space_read_4(d->csrt, d->csrh, offsetof(struct universereg, reg))
     54  1.1  drochner #define write_csr_4(d, reg, val) \
     55  1.1  drochner   bus_space_write_4(d->csrt, d->csrh, offsetof(struct universereg, reg), val)
     56  1.1  drochner 
     57  1.1  drochner #define _pso(i) offsetof(struct universereg, __CONCAT(pcislv, i))
     58  1.1  drochner static int pcislvoffsets[8] = {
     59  1.1  drochner 	_pso(0), _pso(1), _pso(2), _pso(3),
     60  1.1  drochner 	_pso(4), _pso(5), _pso(6), _pso(7)
     61  1.1  drochner };
     62  1.1  drochner #undef _pso
     63  1.1  drochner 
     64  1.1  drochner #define read_pcislv(d, idx, reg) \
     65  1.1  drochner   bus_space_read_4(d->csrt, d->csrh, \
     66  1.1  drochner    pcislvoffsets[idx] + offsetof(struct universe_pcislvimg, reg))
     67  1.1  drochner #define write_pcislv(d, idx, reg, val) \
     68  1.1  drochner   bus_space_write_4(d->csrt, d->csrh, \
     69  1.1  drochner    pcislvoffsets[idx] + offsetof(struct universe_pcislvimg, reg), val)
     70  1.1  drochner 
     71  1.2  drochner 
     72  1.2  drochner #define _vso(i) offsetof(struct universereg, __CONCAT(vmeslv, i))
     73  1.2  drochner static int vmeslvoffsets[8] = {
     74  1.2  drochner 	_vso(0), _vso(1), _vso(2), _vso(3),
     75  1.2  drochner 	_vso(4), _vso(5), _vso(6), _vso(7)
     76  1.2  drochner };
     77  1.2  drochner #undef _vso
     78  1.2  drochner 
     79  1.2  drochner #define read_vmeslv(d, idx, reg) \
     80  1.2  drochner   bus_space_read_4(d->csrt, d->csrh, \
     81  1.2  drochner    vmeslvoffsets[idx] + offsetof(struct universe_vmeslvimg, reg))
     82  1.2  drochner #define write_vmeslv(d, idx, reg, val) \
     83  1.2  drochner   bus_space_write_4(d->csrt, d->csrh, \
     84  1.2  drochner    vmeslvoffsets[idx] + offsetof(struct universe_vmeslvimg, reg), val)
     85  1.2  drochner 
     86  1.1  drochner int
     87  1.2  drochner univ_pci_attach(d, pa, name, inthdl, intcookie)
     88  1.1  drochner 	struct univ_pci_data *d;
     89  1.1  drochner 	struct pci_attach_args *pa;
     90  1.2  drochner 	const char *name;
     91  1.2  drochner 	void (*inthdl) __P((void *, int, int));
     92  1.2  drochner 	void *intcookie;
     93  1.1  drochner {
     94  1.1  drochner 	pci_chipset_tag_t pc = pa->pa_pc;
     95  1.1  drochner 	pci_intr_handle_t ih;
     96  1.1  drochner 	const char *intrstr = NULL;
     97  1.1  drochner 	u_int32_t reg;
     98  1.2  drochner 	int i;
     99  1.1  drochner 
    100  1.1  drochner 	d->pc = pc;
    101  1.2  drochner 	strncpy(d->devname, name, sizeof(d->devname));
    102  1.2  drochner 	d->devname[sizeof(d->devname) - 1] = '\0';
    103  1.1  drochner 
    104  1.1  drochner 	if (pci_mapreg_map(pa, 0x10,
    105  1.1  drochner 			   PCI_MAPREG_TYPE_MEM | PCI_MAPREG_MEM_TYPE_32BIT,
    106  1.1  drochner 			   0, &d->csrt, &d->csrh, NULL, NULL) &&
    107  1.1  drochner 	    pci_mapreg_map(pa, 0x14,
    108  1.1  drochner 			   PCI_MAPREG_TYPE_MEM | PCI_MAPREG_MEM_TYPE_32BIT,
    109  1.1  drochner 			   0, &d->csrt, &d->csrh, NULL, NULL) &&
    110  1.1  drochner 	    pci_mapreg_map(pa, 0x10,
    111  1.1  drochner 			   PCI_MAPREG_TYPE_IO,
    112  1.1  drochner 			   0, &d->csrt, &d->csrh, NULL, NULL) &&
    113  1.1  drochner 	    pci_mapreg_map(pa, 0x14,
    114  1.1  drochner 			   PCI_MAPREG_TYPE_IO,
    115  1.1  drochner 			   0, &d->csrt, &d->csrh, NULL, NULL))
    116  1.1  drochner 		return (-1);
    117  1.1  drochner 
    118  1.2  drochner 	/* name sure the chip is in a sane state */
    119  1.2  drochner 	write_csr_4(d, lint_en, 0); /* mask all PCI interrupts */
    120  1.2  drochner 	write_csr_4(d, vint_en, 0); /* mask all VME interrupts */
    121  1.2  drochner 	write_csr_4(d, dgcs, 0x40000000); /* stop DMA activity */
    122  1.2  drochner 	for (i = 0; i < 8; i++) {
    123  1.2  drochner 		univ_pci_unmapvme(d, i);
    124  1.2  drochner 		univ_pci_unmappci(d, i);
    125  1.2  drochner 	}
    126  1.2  drochner 	write_csr_4(d, slsi, 0); /* disable "special PCI slave image" */
    127  1.1  drochner 
    128  1.1  drochner 	/* enable DMA */
    129  1.1  drochner 	pci_conf_write(pc, pa->pa_tag, PCI_COMMAND_STATUS_REG,
    130  1.1  drochner 	    pci_conf_read(pc, pa->pa_tag, PCI_COMMAND_STATUS_REG) |
    131  1.1  drochner 	    PCI_COMMAND_MASTER_ENABLE);
    132  1.1  drochner 
    133  1.2  drochner 	reg = read_csr_4(d, misc_ctl);
    134  1.2  drochner 	printf("%s: ", name);
    135  1.2  drochner 	if (reg & 0x00020000) /* SYSCON */
    136  1.2  drochner 		printf("VME bus controller, ");
    137  1.2  drochner 	reg = read_csr_4(d, mast_ctl);
    138  1.2  drochner 	printf("requesting at VME bus level %d\n", (reg >> 22) & 3);
    139  1.2  drochner 
    140  1.2  drochner 	/* Map and establish the PCI interrupt. */
    141  1.3  sommerfe 	if (pci_intr_map(pa, &ih)) {
    142  1.2  drochner 		printf("%s: couldn't map interrupt\n", name);
    143  1.1  drochner 		return (-1);
    144  1.1  drochner 	}
    145  1.1  drochner 	intrstr = pci_intr_string(pc, ih);
    146  1.1  drochner 	/*
    147  1.1  drochner 	 * Use a low interrupt level (the lowest?).
    148  1.1  drochner 	 * We will raise before calling a subdevice's handler.
    149  1.1  drochner 	 */
    150  1.1  drochner 	d->ih = pci_intr_establish(pc, ih, IPL_BIO, univ_pci_intr, d);
    151  1.1  drochner 	if (d->ih == NULL) {
    152  1.2  drochner 		printf("%s: couldn't establish interrupt", name);
    153  1.1  drochner 		if (intrstr != NULL)
    154  1.1  drochner 			printf(" at %s", intrstr);
    155  1.1  drochner 		printf("\n");
    156  1.1  drochner 		return (-1);
    157  1.1  drochner 	}
    158  1.2  drochner 	printf("%s: interrupting at %s\n", name, intrstr);
    159  1.2  drochner 
    160  1.2  drochner 	/* handle all VME interrupts (XXX should be configurable) */
    161  1.2  drochner 	d->vmeinthandler = inthdl;
    162  1.2  drochner 	d->vmeintcookie = intcookie;
    163  1.2  drochner 	write_csr_4(d, lint_stat, 0x00ff37ff); /* ack all pending IRQs */
    164  1.2  drochner 	write_csr_4(d, lint_en, 0x000000fe); /* enable VME IRQ 1..7 */
    165  1.1  drochner 
    166  1.1  drochner 	return (0);
    167  1.1  drochner }
    168  1.1  drochner 
    169  1.1  drochner int
    170  1.1  drochner univ_pci_mapvme(d, wnd, vmebase, len, am, datawidth, pcibase)
    171  1.1  drochner 	struct univ_pci_data *d;
    172  1.1  drochner 	int wnd;
    173  1.1  drochner 	vme_addr_t vmebase;
    174  1.1  drochner 	u_int32_t len;
    175  1.1  drochner 	vme_am_t am;
    176  1.1  drochner 	vme_datasize_t datawidth;
    177  1.1  drochner 	u_int32_t pcibase;
    178  1.1  drochner {
    179  1.1  drochner 	u_int32_t ctl = 0x80000000;
    180  1.1  drochner 
    181  1.1  drochner 	switch (am & VME_AM_ADRSIZEMASK) {
    182  1.1  drochner 	case VME_AM_A32:
    183  1.1  drochner 		ctl |= 0x00020000;
    184  1.1  drochner 		break;
    185  1.1  drochner 	case VME_AM_A24:
    186  1.1  drochner 		ctl |= 0x00010000;
    187  1.1  drochner 		break;
    188  1.1  drochner 	case VME_AM_A16:
    189  1.1  drochner 		break;
    190  1.1  drochner 	default:
    191  1.1  drochner 		return (EINVAL);
    192  1.1  drochner 	}
    193  1.1  drochner 	if (am & VME_AM_SUPER)
    194  1.1  drochner 		ctl |= 0x00001000;
    195  1.1  drochner 	if ((am & VME_AM_MODEMASK) == VME_AM_PRG)
    196  1.1  drochner 		ctl |= 0x00004000;
    197  1.1  drochner 	if (datawidth & VME_D32)
    198  1.1  drochner 		ctl |= 0x00800000;
    199  1.1  drochner 	else if (datawidth & VME_D16)
    200  1.1  drochner 		ctl |= 0x00400000;
    201  1.1  drochner 	else if (!(datawidth & VME_D8))
    202  1.1  drochner 		return (EINVAL);
    203  1.1  drochner 
    204  1.1  drochner #ifdef UNIV_DEBUG
    205  1.2  drochner 	printf("%s: wnd %d, map VME %x-%x to %x, ctl=%x\n",
    206  1.2  drochner 	       d->devname, wnd, vmebase, vmebase + len, pcibase, ctl);
    207  1.1  drochner #endif
    208  1.1  drochner 
    209  1.1  drochner 	write_pcislv(d, wnd, lsi_bs, pcibase);
    210  1.1  drochner 	write_pcislv(d, wnd, lsi_bd, pcibase + len);
    211  1.1  drochner 	write_pcislv(d, wnd, lsi_to, vmebase - pcibase);
    212  1.1  drochner 	write_pcislv(d, wnd, lsi_ctl, ctl);
    213  1.1  drochner 	return (0);
    214  1.1  drochner }
    215  1.1  drochner 
    216  1.1  drochner void
    217  1.1  drochner univ_pci_unmapvme(d, wnd)
    218  1.1  drochner 	struct univ_pci_data *d;
    219  1.1  drochner 	int wnd;
    220  1.1  drochner {
    221  1.1  drochner #ifdef UNIV_DEBUG
    222  1.2  drochner 	printf("%s: unmap VME wnd %d\n", d->devname, wnd);
    223  1.1  drochner #endif
    224  1.1  drochner 	write_pcislv(d, wnd, lsi_ctl, 0);
    225  1.1  drochner }
    226  1.1  drochner 
    227  1.2  drochner 
    228  1.2  drochner int
    229  1.2  drochner univ_pci_mappci(d, wnd, pcibase, len, vmebase, am)
    230  1.2  drochner 	struct univ_pci_data *d;
    231  1.2  drochner 	int wnd;
    232  1.2  drochner 	u_int32_t pcibase;
    233  1.2  drochner 	u_int32_t len;
    234  1.2  drochner 	vme_addr_t vmebase;
    235  1.2  drochner 	vme_am_t am;
    236  1.2  drochner {
    237  1.2  drochner 	u_int32_t ctl = 0x80000000;
    238  1.2  drochner 
    239  1.2  drochner 	switch (am & VME_AM_ADRSIZEMASK) {
    240  1.2  drochner 	case VME_AM_A32:
    241  1.2  drochner 		ctl |= 0x00020000;
    242  1.2  drochner 		break;
    243  1.2  drochner 	case VME_AM_A24:
    244  1.2  drochner 		ctl |= 0x00010000;
    245  1.2  drochner 		break;
    246  1.2  drochner 	case VME_AM_A16:
    247  1.2  drochner 		break;
    248  1.2  drochner 	default:
    249  1.2  drochner 		return (EINVAL);
    250  1.2  drochner 	}
    251  1.2  drochner 	if (am & VME_AM_SUPER)
    252  1.2  drochner 		ctl |= 0x00200000;
    253  1.2  drochner 	else
    254  1.2  drochner 		ctl |= 0x00300000; /* both */
    255  1.2  drochner 	if ((am & VME_AM_MODEMASK) == VME_AM_PRG)
    256  1.2  drochner 		ctl |= 0x00800000;
    257  1.2  drochner 	else
    258  1.2  drochner 		ctl |= 0x00c00000; /* both */
    259  1.2  drochner 
    260  1.2  drochner #ifdef UNIV_DEBUG
    261  1.2  drochner 	printf("%s: wnd %d, map PCI %x-%x to %x, ctl=%x\n",
    262  1.2  drochner 	       d->devname, wnd, pcibase, pcibase + len, vmebase, ctl);
    263  1.2  drochner #endif
    264  1.2  drochner 
    265  1.2  drochner 	write_vmeslv(d, wnd, vsi_bs, vmebase);
    266  1.2  drochner 	write_vmeslv(d, wnd, vsi_bd, vmebase + len);
    267  1.2  drochner 	write_vmeslv(d, wnd, vsi_to, pcibase - vmebase);
    268  1.2  drochner 	write_vmeslv(d, wnd, vsi_ctl, ctl);
    269  1.2  drochner 	return (0);
    270  1.2  drochner }
    271  1.2  drochner 
    272  1.2  drochner void
    273  1.2  drochner univ_pci_unmappci(d, wnd)
    274  1.2  drochner 	struct univ_pci_data *d;
    275  1.2  drochner 	int wnd;
    276  1.2  drochner {
    277  1.2  drochner #ifdef UNIV_DEBUG
    278  1.2  drochner 	printf("%s: unmap PCI wnd %d\n", d->devname, wnd);
    279  1.2  drochner #endif
    280  1.2  drochner 	write_vmeslv(d, wnd, vsi_ctl, 0);
    281  1.2  drochner }
    282  1.2  drochner 
    283  1.2  drochner int
    284  1.2  drochner univ_pci_vmebuserr(d, clear)
    285  1.2  drochner 	struct univ_pci_data *d;
    286  1.2  drochner 	int clear;
    287  1.2  drochner {
    288  1.2  drochner 	u_int32_t pcicsr;
    289  1.2  drochner 
    290  1.2  drochner 	pcicsr = read_csr_4(d, pci_csr);
    291  1.2  drochner 	if ((pcicsr & 0xf8000000) && clear)
    292  1.2  drochner 		write_csr_4(d, pci_csr, pcicsr | 0xf8000000);
    293  1.2  drochner 	return (pcicsr & 0x08000000); /* target abort */
    294  1.2  drochner }
    295  1.2  drochner 
    296  1.1  drochner int
    297  1.1  drochner univ_pci_intr(v)
    298  1.1  drochner 	void *v;
    299  1.1  drochner {
    300  1.1  drochner 	struct univ_pci_data *d = v;
    301  1.1  drochner 	u_int32_t intcsr;
    302  1.2  drochner 	int i, vec;
    303  1.1  drochner 
    304  1.1  drochner 	intcsr = read_csr_4(d, lint_stat) & 0xffffff;
    305  1.1  drochner 	if (!intcsr)
    306  1.1  drochner 		return (0);
    307  1.1  drochner 
    308  1.1  drochner 	/* ack everything */
    309  1.1  drochner 	write_csr_4(d, lint_stat, intcsr);
    310  1.2  drochner #ifdef UNIV_DEBUG
    311  1.2  drochner 	printf("%s: intr, lint_stat=%x\n", d->devname, intcsr);
    312  1.2  drochner #endif
    313  1.2  drochner 	if (intcsr & 0x000000fe) { /* VME interrupt */
    314  1.2  drochner 		for (i = 7; i >= 1; i--) {
    315  1.2  drochner 			if (!(intcsr & (1 << i)))
    316  1.2  drochner 				continue;
    317  1.2  drochner 			vec = read_csr_4(d, v_statid[i - 1]);
    318  1.2  drochner 			if (vec & 0x100) {
    319  1.2  drochner 				printf("%s: err irq %d\n", d->devname, i);
    320  1.2  drochner 				continue;
    321  1.2  drochner 			}
    322  1.2  drochner 			if (d->vmeinthandler)
    323  1.2  drochner 				(*d->vmeinthandler)(d->vmeintcookie, i, vec);
    324  1.2  drochner 		}
    325  1.2  drochner 	}
    326  1.1  drochner 
    327  1.1  drochner 	return (1);
    328  1.1  drochner }
    329