Home | History | Annotate | Line # | Download | only in pci
ttwoga.c revision 1.1.4.3
      1  1.1.4.3  thorpej /* $NetBSD: ttwoga.c,v 1.1.4.3 2003/01/03 16:38:41 thorpej Exp $ */
      2      1.1  thorpej 
      3      1.1  thorpej /*-
      4      1.1  thorpej  * Copyright (c) 1999 The NetBSD Foundation, Inc.
      5      1.1  thorpej  * All rights reserved.
      6      1.1  thorpej  *
      7      1.1  thorpej  * This code is derived from software contributed to The NetBSD Foundation
      8      1.1  thorpej  * by Jason R. Thorpe.
      9      1.1  thorpej  *
     10      1.1  thorpej  * Redistribution and use in source and binary forms, with or without
     11      1.1  thorpej  * modification, are permitted provided that the following conditions
     12      1.1  thorpej  * are met:
     13      1.1  thorpej  * 1. Redistributions of source code must retain the above copyright
     14      1.1  thorpej  *    notice, this list of conditions and the following disclaimer.
     15      1.1  thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     16      1.1  thorpej  *    notice, this list of conditions and the following disclaimer in the
     17      1.1  thorpej  *    documentation and/or other materials provided with the distribution.
     18      1.1  thorpej  * 3. All advertising materials mentioning features or use of this software
     19      1.1  thorpej  *    must display the following acknowledgement:
     20      1.1  thorpej  *	This product includes software developed by the NetBSD
     21      1.1  thorpej  *	Foundation, Inc. and its contributors.
     22      1.1  thorpej  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23      1.1  thorpej  *    contributors may be used to endorse or promote products derived
     24      1.1  thorpej  *    from this software without specific prior written permission.
     25      1.1  thorpej  *
     26      1.1  thorpej  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27      1.1  thorpej  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28      1.1  thorpej  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29      1.1  thorpej  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30      1.1  thorpej  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31      1.1  thorpej  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32      1.1  thorpej  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33      1.1  thorpej  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34      1.1  thorpej  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35      1.1  thorpej  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36      1.1  thorpej  * POSSIBILITY OF SUCH DAMAGE.
     37      1.1  thorpej  */
     38      1.1  thorpej 
     39      1.1  thorpej #include "opt_dec_2100_a500.h"
     40      1.1  thorpej #include "opt_dec_2100a_a500.h"
     41      1.1  thorpej 
     42      1.1  thorpej #include <sys/cdefs.h>			/* RCS ID & Copyright macro defns */
     43      1.1  thorpej 
     44  1.1.4.3  thorpej __KERNEL_RCSID(0, "$NetBSD: ttwoga.c,v 1.1.4.3 2003/01/03 16:38:41 thorpej Exp $");
     45      1.1  thorpej 
     46      1.1  thorpej #include <sys/param.h>
     47      1.1  thorpej #include <sys/systm.h>
     48      1.1  thorpej #include <sys/kernel.h>
     49      1.1  thorpej #include <sys/malloc.h>
     50      1.1  thorpej #include <sys/device.h>
     51      1.1  thorpej 
     52      1.1  thorpej #include <machine/autoconf.h>
     53      1.1  thorpej #include <machine/rpb.h>
     54      1.1  thorpej 
     55      1.1  thorpej #include <dev/isa/isareg.h>
     56      1.1  thorpej #include <dev/isa/isavar.h>
     57      1.1  thorpej 
     58      1.1  thorpej #include <dev/eisa/eisavar.h>
     59      1.1  thorpej 
     60      1.1  thorpej #include <dev/pci/pcireg.h>
     61      1.1  thorpej #include <dev/pci/pcivar.h>
     62      1.1  thorpej 
     63      1.1  thorpej #include <alpha/pci/ttwogareg.h>
     64      1.1  thorpej #include <alpha/pci/ttwogavar.h>
     65      1.1  thorpej 
     66      1.1  thorpej #if defined(DEC_2100_A500) || defined(DEC_2100A_A500)
     67      1.1  thorpej #include <alpha/pci/pci_2100_a500.h>
     68      1.1  thorpej #endif
     69      1.1  thorpej 
     70      1.1  thorpej int	ttwogamatch(struct device *, struct cfdata *, void *);
     71      1.1  thorpej void	ttwogaattach(struct device *, struct device *, void *);
     72      1.1  thorpej 
     73  1.1.4.2  nathanw CFATTACH_DECL(ttwoga, sizeof(struct device),
     74  1.1.4.2  nathanw     ttwogamatch, ttwogaattach, NULL, NULL);
     75      1.1  thorpej 
     76      1.1  thorpej int	ttwogaprint(void *, const char *);
     77      1.1  thorpej 
     78      1.1  thorpej int	ttwopcimatch(struct device *, struct cfdata *, void *);
     79      1.1  thorpej void	ttwopciattach(struct device *, struct device *, void *);
     80      1.1  thorpej 
     81  1.1.4.2  nathanw CFATTACH_DECL(ttwopci, sizeof(struct device),
     82  1.1.4.2  nathanw     ttwopcimatch, ttwopciattach, NULL, NULL);
     83      1.1  thorpej 
     84      1.1  thorpej int	ttwopciprint(void *, const char *);
     85      1.1  thorpej 
     86      1.1  thorpej /*
     87      1.1  thorpej  * There can be only one, but it might have 2 primary PCI busses.
     88      1.1  thorpej  */
     89      1.1  thorpej int ttwogafound;
     90      1.1  thorpej struct ttwoga_config ttwoga_configuration[2];
     91      1.1  thorpej 
     92      1.1  thorpej /* CBUS address bias for Gamma systems. */
     93      1.1  thorpej bus_addr_t ttwoga_gamma_cbus_bias;
     94      1.1  thorpej 
     95      1.1  thorpej #define	GIGABYTE	(1024UL * 1024UL * 1024UL)
     96      1.1  thorpej #define	MEGABYTE	(1024UL * 1024UL)
     97      1.1  thorpej 
     98      1.1  thorpej const struct ttwoga_sysmap ttwoga_sysmap[2] = {
     99      1.1  thorpej /*	  Base			System size	Bus size	*/
    100      1.1  thorpej 	{ T2_PCI0_SIO_BASE,	256UL * MEGABYTE, 8UL * MEGABYTE,
    101      1.1  thorpej 	  T2_PCI0_SMEM_BASE,	4UL * GIGABYTE,	128UL * MEGABYTE,
    102      1.1  thorpej 	  T2_PCI0_DMEM_BASE,	1UL * GIGABYTE,	1UL * GIGABYTE,
    103      1.1  thorpej 	  T2_PCI0_CONF_BASE,
    104      1.1  thorpej 	},
    105      1.1  thorpej 	{ T2_PCI1_SIO_BASE,	256UL * MEGABYTE, 8UL * MEGABYTE,
    106      1.1  thorpej 	  T2_PCI1_SMEM_BASE,	2UL * GIGABYTE,	64UL * MEGABYTE,
    107      1.1  thorpej 	  T2_PCI1_DMEM_BASE,	2UL * GIGABYTE,	2UL * GIGABYTE,
    108      1.1  thorpej 	  T2_PCI1_CONF_BASE,
    109      1.1  thorpej 	},
    110      1.1  thorpej };
    111      1.1  thorpej 
    112      1.1  thorpej #undef GIGABYTE
    113      1.1  thorpej #undef MEGABYTE
    114      1.1  thorpej 
    115      1.1  thorpej int
    116      1.1  thorpej ttwogamatch(struct device *parent, struct cfdata *match, void *aux)
    117      1.1  thorpej {
    118      1.1  thorpej 	struct mainbus_attach_args *ma = aux;
    119      1.1  thorpej 
    120      1.1  thorpej 	/* Make sure that we're looking for a T2 Gate Array. */
    121  1.1.4.2  nathanw 	if (strcmp(ma->ma_name, match->cf_name) != 0)
    122      1.1  thorpej 		return (0);
    123      1.1  thorpej 
    124      1.1  thorpej 	if (ttwogafound)
    125      1.1  thorpej 		return (0);
    126      1.1  thorpej 
    127      1.1  thorpej 	return (1);
    128      1.1  thorpej }
    129      1.1  thorpej 
    130      1.1  thorpej void
    131      1.1  thorpej ttwogaattach(struct device *parent, struct device *self, void *aux)
    132      1.1  thorpej {
    133      1.1  thorpej 	struct pcibus_attach_args pba;
    134      1.1  thorpej 	int hose;
    135      1.1  thorpej 
    136      1.1  thorpej 	printf("\n");
    137      1.1  thorpej 
    138      1.1  thorpej 	/* note that we've attached the chipset; can't have 2 T2s */
    139      1.1  thorpej 	ttwogafound = 1;
    140      1.1  thorpej 
    141      1.1  thorpej 	/*
    142      1.1  thorpej 	 * Don't do much here; real work is deferred to the ttwopci
    143      1.1  thorpej 	 * layer.
    144      1.1  thorpej 	 */
    145      1.1  thorpej 	for (hose = 0; hose < 1 /* XXX */; hose++) {
    146      1.1  thorpej #if 0 /* XXX */
    147      1.1  thorpej 		if (badaddr(_T2GA(hose, T2_IOCSR), sizeof(u_int64_t)))
    148      1.1  thorpej 			continue;
    149      1.1  thorpej #endif
    150      1.1  thorpej 		memset(&pba, 0, sizeof(pba));
    151      1.1  thorpej 		pba.pba_busname = "ttwopci";
    152      1.1  thorpej 		pba.pba_bus = hose;
    153      1.1  thorpej 
    154      1.1  thorpej 		(void) config_found(self, &pba, ttwogaprint);
    155      1.1  thorpej 	}
    156      1.1  thorpej }
    157      1.1  thorpej 
    158      1.1  thorpej int
    159      1.1  thorpej ttwogaprint(void *aux, const char *pnp)
    160      1.1  thorpej {
    161      1.1  thorpej 	struct pcibus_attach_args *pba = aux;
    162      1.1  thorpej 
    163      1.1  thorpej 	if (pnp)
    164  1.1.4.3  thorpej 		aprint_normal("%s at %s", pba->pba_busname, pnp);
    165  1.1.4.3  thorpej 	aprint_normal(" hose %d", pba->pba_bus);
    166      1.1  thorpej 	return (UNCONF);
    167      1.1  thorpej }
    168      1.1  thorpej 
    169      1.1  thorpej /*
    170      1.1  thorpej  * Set up the chipset's function pointers.
    171      1.1  thorpej  */
    172      1.1  thorpej struct ttwoga_config *
    173      1.1  thorpej ttwoga_init(int hose, int mallocsafe)
    174      1.1  thorpej {
    175      1.1  thorpej 	struct ttwoga_config *tcp;
    176      1.1  thorpej 
    177      1.1  thorpej 	if (hose < 0 || hose > 1)
    178      1.1  thorpej 		panic("ttwoga_init: bad hose # %d", hose);
    179      1.1  thorpej 
    180      1.1  thorpej 	tcp = &ttwoga_configuration[hose];
    181      1.1  thorpej 	tcp->tc_hose = hose;
    182      1.1  thorpej 
    183      1.1  thorpej 	tcp->tc_sysmap = &ttwoga_sysmap[hose];
    184      1.1  thorpej 
    185      1.1  thorpej 	/*
    186      1.1  thorpej 	 * Sable-Gamma has a CBUS address bias.
    187      1.1  thorpej 	 */
    188      1.1  thorpej 	ttwoga_gamma_cbus_bias = (alpha_implver() == ALPHA_IMPLVER_EV5) ?
    189      1.1  thorpej 	    T2_GAMMA_CBUS_BIAS : 0;
    190      1.1  thorpej 
    191      1.1  thorpej 	alpha_mb();
    192      1.1  thorpej 
    193      1.1  thorpej 	tcp->tc_io_bus_start = (T2GA(tcp, T2_HAE0_2) & HAE0_2_PUA2) << 23;
    194      1.1  thorpej 	tcp->tc_d_mem_bus_start = (T2GA(tcp, T2_HAE0_4) & HAE0_4_PUA1) << 30;
    195      1.1  thorpej 	tcp->tc_s_mem_bus_start = (T2GA(tcp, T2_HAE0_1) & HAE0_1_PUA1) << 27;
    196      1.1  thorpej 
    197      1.1  thorpej 	tcp->tc_rev  = (T2GA(tcp, T2_IOCSR) & IOCSR_TRN) >> IOCSR_TRN_SHIFT;
    198      1.1  thorpej 
    199      1.1  thorpej 	if (tcp->tc_initted == 0) {
    200      1.1  thorpej 		/* don't do these twice since they set up extents */
    201      1.1  thorpej 		ttwoga_bus_io_init(&tcp->tc_iot, tcp);
    202      1.1  thorpej 		ttwoga_bus_mem_init(&tcp->tc_memt, tcp);
    203      1.1  thorpej 	}
    204      1.1  thorpej 	tcp->tc_mallocsafe = mallocsafe;
    205      1.1  thorpej 
    206      1.1  thorpej 	ttwoga_pci_init(&tcp->tc_pc, tcp);
    207      1.1  thorpej 
    208      1.1  thorpej 	tcp->tc_initted = 1;
    209      1.1  thorpej 
    210      1.1  thorpej 	return (tcp);
    211      1.1  thorpej }
    212      1.1  thorpej 
    213      1.1  thorpej int
    214      1.1  thorpej ttwopcimatch(struct device *parent, struct cfdata *match, void *aux)
    215      1.1  thorpej {
    216      1.1  thorpej 	struct pcibus_attach_args *pba = aux;
    217      1.1  thorpej 
    218  1.1.4.2  nathanw 	if (strcmp(pba->pba_busname, match->cf_name) != 0)
    219      1.1  thorpej 		return (0);
    220      1.1  thorpej 
    221      1.1  thorpej 	if (match->cf_loc[PCIBUSCF_BUS] != PCIBUSCF_BUS_DEFAULT &&
    222      1.1  thorpej 	    match->cf_loc[PCIBUSCF_BUS] != pba->pba_bus)
    223      1.1  thorpej 		return (0);
    224      1.1  thorpej 
    225      1.1  thorpej 	return (1);
    226      1.1  thorpej }
    227      1.1  thorpej 
    228      1.1  thorpej void
    229      1.1  thorpej ttwopciattach(struct device *parent, struct device *self, void *aux)
    230      1.1  thorpej {
    231      1.1  thorpej 	struct pcibus_attach_args *pba = aux, npba;
    232      1.1  thorpej 	struct ttwoga_config *tcp;
    233      1.1  thorpej 
    234      1.1  thorpej 	/*
    235      1.1  thorpej 	 * set up the chipset's info; done one at console init time
    236      1.1  thorpej 	 * (maybe), but doesn't hurt to do it twice.
    237      1.1  thorpej 	 */
    238      1.1  thorpej 	tcp = ttwoga_init(pba->pba_bus, 1);
    239      1.1  thorpej 
    240      1.1  thorpej 	ttwoga_dma_init(tcp);
    241      1.1  thorpej 
    242      1.1  thorpej 	if (tcp->tc_rev < TRN_T3)
    243      1.1  thorpej 		printf(": T2 Gate Array rev. %d\n", tcp->tc_rev);
    244      1.1  thorpej 	else
    245      1.1  thorpej 		printf(": T3 or T4 Gate Array rev. %d\n", tcp->tc_rev);
    246      1.1  thorpej 
    247      1.1  thorpej 	if (tcp->tc_rev < 1)
    248      1.1  thorpej 		printf("%s: WARNING: T2 NOT PASS2... NO BETS...\n",
    249      1.1  thorpej 		    self->dv_xname);
    250      1.1  thorpej 
    251      1.1  thorpej 	switch (cputype) {
    252      1.1  thorpej #if defined(DEC_2100_A500) || defined(DEC_2100A_A500)
    253      1.1  thorpej 	case ST_DEC_2100_A500:
    254      1.1  thorpej 	case ST_DEC_2100A_A500:
    255      1.1  thorpej 		pci_2100_a500_pickintr(tcp);
    256      1.1  thorpej 		break;
    257      1.1  thorpej #endif
    258      1.1  thorpej 
    259      1.1  thorpej 	default:
    260      1.1  thorpej 		panic("ttwogaattach: shouldn't be here, really...");
    261      1.1  thorpej 	}
    262      1.1  thorpej 
    263      1.1  thorpej 	npba.pba_iot = &tcp->tc_iot;
    264      1.1  thorpej 	npba.pba_memt = &tcp->tc_memt;
    265      1.1  thorpej 	npba.pba_dmat =
    266      1.1  thorpej 	    alphabus_dma_get_tag(&tcp->tc_dmat_direct, ALPHA_BUS_PCI);
    267      1.1  thorpej 	npba.pba_pc = &tcp->tc_pc;
    268      1.1  thorpej 	npba.pba_bus = 0;
    269  1.1.4.1  nathanw 	npba.pba_bridgetag = NULL;
    270      1.1  thorpej 	npba.pba_flags = PCI_FLAGS_IO_ENABLED | PCI_FLAGS_MEM_ENABLED;
    271      1.1  thorpej 
    272      1.1  thorpej 	/*
    273      1.1  thorpej 	 * Hose 0 has the STDIO module.
    274      1.1  thorpej 	 */
    275      1.1  thorpej 	if (pba->pba_bus == 0) {
    276      1.1  thorpej 		npba.pba_busname = "sableio";
    277      1.1  thorpej 		(void) config_found(self, &npba, ttwopciprint);
    278      1.1  thorpej 	}
    279      1.1  thorpej 
    280      1.1  thorpej 	npba.pba_busname = "pci";
    281      1.1  thorpej 	(void) config_found(self, &npba, ttwopciprint);
    282      1.1  thorpej }
    283      1.1  thorpej 
    284      1.1  thorpej int
    285      1.1  thorpej ttwopciprint(void *aux, const char *pnp)
    286      1.1  thorpej {
    287      1.1  thorpej 	struct pcibus_attach_args *pba = aux;
    288      1.1  thorpej 
    289      1.1  thorpej 	if (pnp)
    290  1.1.4.3  thorpej 		aprint_normal("%s at %s", pba->pba_busname, pnp);
    291  1.1.4.3  thorpej 	aprint_normal(" bus %d", pba->pba_bus);
    292      1.1  thorpej 	return (UNCONF);
    293      1.1  thorpej }
    294