Home | History | Annotate | Line # | Download | only in pci
tsc.c revision 1.2.4.1
      1  1.2.4.1  thorpej /* $NetBSD: tsc.c,v 1.2.4.1 2000/06/27 19:46:04 thorpej Exp $ */
      2      1.1     ross 
      3      1.1     ross /*-
      4      1.1     ross  * Copyright (c) 1999 by Ross Harvey.  All rights reserved.
      5      1.1     ross  *
      6      1.1     ross  * Redistribution and use in source and binary forms, with or without
      7      1.1     ross  * modification, are permitted provided that the following conditions
      8      1.1     ross  * are met:
      9      1.1     ross  * 1. Redistributions of source code must retain the above copyright
     10      1.1     ross  *    notice, this list of conditions and the following disclaimer.
     11      1.1     ross  * 2. Redistributions in binary form must reproduce the above copyright
     12      1.1     ross  *    notice, this list of conditions and the following disclaimer in the
     13      1.1     ross  *    documentation and/or other materials provided with the distribution.
     14      1.1     ross  * 3. All advertising materials mentioning features or use of this software
     15      1.1     ross  *    must display the following acknowledgement:
     16      1.1     ross  *	This product includes software developed by Ross Harvey.
     17      1.1     ross  * 4. The name of Ross Harvey may not be used to endorse or promote products
     18      1.1     ross  *    derived from this software without specific prior written permission.
     19      1.1     ross  *
     20      1.1     ross  * THIS SOFTWARE IS PROVIDED BY ROSS HARVEY ``AS IS'' AND ANY EXPRESS
     21      1.1     ross  * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
     22      1.1     ross  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURP0SE
     23      1.1     ross  * ARE DISCLAIMED.  IN NO EVENT SHALL ROSS HARVEY BE LIABLE FOR ANY
     24      1.1     ross  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     25      1.1     ross  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     26      1.1     ross  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     27      1.1     ross  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     28      1.1     ross  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     29      1.1     ross  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     30      1.1     ross  * SUCH DAMAGE.
     31      1.1     ross  *
     32      1.1     ross  */
     33      1.1     ross 
     34      1.1     ross #include "opt_dec_6600.h"
     35      1.1     ross 
     36      1.1     ross #include <sys/cdefs.h>
     37      1.1     ross 
     38  1.2.4.1  thorpej __KERNEL_RCSID(0, "$NetBSD: tsc.c,v 1.2.4.1 2000/06/27 19:46:04 thorpej Exp $");
     39      1.1     ross 
     40      1.1     ross #include <sys/param.h>
     41      1.1     ross #include <sys/systm.h>
     42      1.1     ross #include <sys/device.h>
     43      1.1     ross #include <sys/malloc.h>
     44      1.1     ross 
     45      1.1     ross #include <machine/autoconf.h>
     46      1.1     ross #include <machine/rpb.h>
     47  1.2.4.1  thorpej #include <machine/sysarch.h>
     48      1.1     ross 
     49      1.1     ross #include <dev/isa/isareg.h>
     50      1.1     ross #include <dev/isa/isavar.h>
     51      1.1     ross #include <dev/pci/pcireg.h>
     52      1.1     ross #include <dev/pci/pcivar.h>
     53      1.1     ross #include <alpha/pci/tsreg.h>
     54      1.1     ross #include <alpha/pci/tsvar.h>
     55      1.1     ross 
     56      1.1     ross #ifdef DEC_6600
     57      1.1     ross #include <alpha/pci/pci_6600.h>
     58      1.1     ross #endif
     59      1.1     ross 
     60      1.1     ross #define tsc() { Generate ctags(1) key. }
     61      1.1     ross 
     62      1.1     ross int	tscmatch __P((struct device *, struct cfdata *, void *));
     63      1.1     ross void	tscattach __P((struct device *, struct device *, void *));
     64      1.1     ross 
     65      1.1     ross struct cfattach tsc_ca = {
     66      1.1     ross 	sizeof(struct tsc_softc), tscmatch, tscattach,
     67      1.1     ross };
     68      1.1     ross 
     69      1.1     ross extern struct cfdriver tsc_cd;
     70      1.1     ross 
     71      1.1     ross struct tsp_config tsp_configuration[2];
     72      1.1     ross 
     73      1.1     ross static int tscprint __P((void *, const char *pnp));
     74      1.1     ross 
     75      1.1     ross int	tspmatch __P((struct device *, struct cfdata *, void *));
     76      1.1     ross void	tspattach __P((struct device *, struct device *, void *));
     77      1.1     ross 
     78      1.1     ross struct cfattach tsp_ca = {
     79      1.1     ross 	sizeof(struct tsp_softc), tspmatch, tspattach,
     80      1.1     ross };
     81      1.1     ross 
     82      1.1     ross extern struct cfdriver tsp_cd;
     83      1.1     ross 
     84      1.1     ross static int tspprint __P((void *, const char *pnp));
     85      1.1     ross 
     86  1.2.4.1  thorpej static int tsp_bus_get_window __P((int, int,
     87  1.2.4.1  thorpej 	struct alpha_bus_space_translation *));
     88      1.1     ross 
     89  1.2.4.1  thorpej /* There can be only one */
     90      1.1     ross static int tscfound;
     91      1.1     ross 
     92  1.2.4.1  thorpej /* Which hose is the display console connected to? */
     93  1.2.4.1  thorpej int tsp_console_hose;
     94  1.2.4.1  thorpej 
     95      1.1     ross int
     96      1.1     ross tscmatch(parent, match, aux)
     97      1.1     ross 	struct device *parent;
     98      1.1     ross 	struct cfdata *match;
     99      1.1     ross 	void *aux;
    100      1.1     ross {
    101      1.1     ross 	struct mainbus_attach_args *ma = aux;
    102      1.1     ross 
    103      1.1     ross 	return cputype == ST_DEC_6600
    104      1.1     ross 	    && strcmp(ma->ma_name, tsc_cd.cd_name) == 0
    105      1.1     ross 	    && !tscfound;
    106      1.1     ross }
    107      1.1     ross 
    108      1.1     ross void tscattach(parent, self, aux)
    109      1.1     ross 	struct device *parent, *self;
    110      1.1     ross 	void *aux;
    111      1.1     ross {
    112      1.1     ross 	int i;
    113      1.1     ross 	int nbus;
    114      1.1     ross 	u_int64_t csc, aar;
    115      1.1     ross 	struct tsp_attach_args tsp;
    116      1.1     ross 	struct mainbus_attach_args *ma = aux;
    117      1.1     ross 
    118      1.1     ross 	tscfound = 1;
    119      1.1     ross 
    120      1.1     ross 	csc = LDQP(TS_C_CSC);
    121      1.1     ross 
    122      1.1     ross 	nbus = 1 + (CSC_BC(csc) >= 2);
    123      1.1     ross 	printf(": 21272 Core Logic Chipset, Cchip rev %d\n"
    124      1.1     ross 		"%s%d: %c Dchips, %d memory bus%s of %d bytes\n",
    125      1.1     ross 		(int)MISC_REV(LDQP(TS_C_MISC)),
    126      1.1     ross 		ma->ma_name, ma->ma_slot, "2448"[CSC_BC(csc)],
    127      1.1     ross 		nbus, nbus > 1 ? "es" : "", 16 + 16 * ((csc & CSC_AW) != 0));
    128      1.1     ross 	printf("%s%d: arrays present: ", ma->ma_name, ma->ma_slot);
    129      1.1     ross 	for(i = 0; i < 4; ++i) {
    130      1.1     ross 		aar = LDQP(TS_C_AAR0 + i * TS_STEP);
    131      1.1     ross 		printf("%s%dMB%s", i ? ", " : "", (8 << AAR_ASIZ(aar)) & ~0xf,
    132      1.1     ross 		    aar & AAR_SPLIT ? " (split)" : "");
    133      1.1     ross 	}
    134      1.1     ross 	printf(", Dchip 0 rev %d\n", (int)LDQP(TS_D_DREV) & 0xf);
    135      1.1     ross 
    136      1.1     ross 	bzero(&tsp, sizeof tsp);
    137      1.1     ross 	tsp.tsp_name = "tsp";
    138      1.1     ross 	config_found(self, &tsp, NULL);
    139      1.1     ross 
    140      1.1     ross 	if(LDQP(TS_C_CSC) & CSC_P1P) {
    141      1.1     ross 		++tsp.tsp_slot;
    142      1.1     ross 		config_found(self, &tsp, tscprint);
    143      1.1     ross 	}
    144      1.1     ross }
    145      1.1     ross 
    146      1.1     ross static int
    147      1.1     ross tscprint(aux, p)
    148      1.1     ross 	void *aux;
    149      1.1     ross 	const char *p;
    150      1.1     ross {
    151      1.1     ross 	register struct tsp_attach_args *tsp = aux;
    152      1.1     ross 
    153      1.1     ross 	if(p)
    154      1.1     ross 		printf("%s%d at %s", tsp->tsp_name, tsp->tsp_slot, p);
    155      1.1     ross 	return UNCONF;
    156      1.1     ross }
    157      1.1     ross 
    158      1.1     ross #define tsp() { Generate ctags(1) key. }
    159      1.1     ross 
    160      1.1     ross int
    161      1.1     ross tspmatch(parent, match, aux)
    162      1.1     ross 	struct device *parent;
    163      1.1     ross 	struct cfdata *match;
    164      1.1     ross 	void *aux;
    165      1.1     ross {
    166      1.1     ross 	struct tsp_attach_args *t = aux;
    167      1.1     ross 
    168      1.1     ross 	return  cputype == ST_DEC_6600
    169      1.1     ross 	    && strcmp(t->tsp_name, tsp_cd.cd_name) == 0;
    170      1.1     ross }
    171      1.1     ross 
    172  1.2.4.1  thorpej void
    173  1.2.4.1  thorpej tspattach(parent, self, aux)
    174      1.1     ross 	struct device *parent, *self;
    175      1.1     ross 	void *aux;
    176      1.1     ross {
    177      1.1     ross 	struct pcibus_attach_args pba;
    178      1.1     ross 	struct tsp_attach_args *t = aux;
    179      1.1     ross 	struct tsp_config *pcp;
    180      1.1     ross 
    181      1.1     ross 	printf("\n");
    182      1.1     ross 	pcp = tsp_init(1, t->tsp_slot);
    183      1.1     ross 	tsp_dma_init(pcp);
    184      1.1     ross 	pci_6600_pickintr(pcp);
    185      1.1     ross 	pba.pba_busname = "pci";
    186      1.1     ross 	pba.pba_iot = &pcp->pc_iot;
    187      1.1     ross 	pba.pba_memt = &pcp->pc_memt;
    188      1.1     ross 	pba.pba_dmat =
    189      1.1     ross 	    alphabus_dma_get_tag(&pcp->pc_dmat_direct, ALPHA_BUS_PCI);
    190      1.1     ross 	pba.pba_pc = &pcp->pc_pc;
    191      1.1     ross 	pba.pba_bus = 0;
    192      1.2  thorpej 	pba.pba_flags = PCI_FLAGS_IO_ENABLED | PCI_FLAGS_MEM_ENABLED |
    193      1.2  thorpej 	    PCI_FLAGS_MRL_OKAY | PCI_FLAGS_MRM_OKAY | PCI_FLAGS_MWI_OKAY;
    194      1.1     ross 	config_found(self, &pba, tspprint);
    195      1.1     ross }
    196      1.1     ross 
    197      1.1     ross struct tsp_config *
    198      1.1     ross tsp_init(mallocsafe, n)
    199      1.1     ross 	int mallocsafe;
    200      1.1     ross 	int n;	/* Pchip number */
    201      1.1     ross {
    202      1.1     ross 	struct tsp_config *pcp;
    203      1.1     ross 
    204      1.1     ross 	KASSERT((n | 1) == 1);
    205      1.1     ross 	pcp = &tsp_configuration[n];
    206      1.1     ross 	pcp->pc_pslot = n;
    207      1.1     ross 	pcp->pc_iobase = TS_Pn(n, 0);
    208      1.1     ross 	pcp->pc_csr = S_PAGE(TS_Pn(n, P_CSRBASE));
    209      1.1     ross 	if (!pcp->pc_initted) {
    210      1.1     ross 		tsp_bus_io_init(&pcp->pc_iot, pcp);
    211      1.1     ross 		tsp_bus_mem_init(&pcp->pc_memt, pcp);
    212  1.2.4.1  thorpej 
    213  1.2.4.1  thorpej 		alpha_bus_window_count[ALPHA_BUS_TYPE_PCI_IO] = 1;
    214  1.2.4.1  thorpej 		alpha_bus_window_count[ALPHA_BUS_TYPE_PCI_MEM] = 1;
    215  1.2.4.1  thorpej 
    216  1.2.4.1  thorpej 		alpha_bus_get_window = tsp_bus_get_window;
    217      1.1     ross 	}
    218      1.1     ross 	pcp->pc_mallocsafe = mallocsafe;
    219      1.1     ross 	tsp_pci_init(&pcp->pc_pc, pcp);
    220      1.1     ross 	pcp->pc_initted = 1;
    221      1.1     ross 	return pcp;
    222      1.1     ross }
    223      1.1     ross 
    224      1.1     ross static int
    225      1.1     ross tspprint(aux, p)
    226      1.1     ross 	void *aux;
    227      1.1     ross 	const char *p;
    228      1.1     ross {
    229      1.1     ross 	register struct pcibus_attach_args *pci = aux;
    230      1.1     ross 
    231      1.1     ross 	if(p)
    232      1.1     ross 		printf("%s at %s", pci->pba_busname, p);
    233      1.1     ross 	printf(" bus %d", pci->pba_bus);
    234      1.1     ross 	return UNCONF;
    235  1.2.4.1  thorpej }
    236  1.2.4.1  thorpej 
    237  1.2.4.1  thorpej static int
    238  1.2.4.1  thorpej tsp_bus_get_window(type, window, abst)
    239  1.2.4.1  thorpej 	int type, window;
    240  1.2.4.1  thorpej 	struct alpha_bus_space_translation *abst;
    241  1.2.4.1  thorpej {
    242  1.2.4.1  thorpej 	struct tsp_config *tsp = &tsp_configuration[tsp_console_hose];
    243  1.2.4.1  thorpej 	bus_space_tag_t st;
    244  1.2.4.1  thorpej 	int error;
    245  1.2.4.1  thorpej 
    246  1.2.4.1  thorpej 	switch (type) {
    247  1.2.4.1  thorpej 	case ALPHA_BUS_TYPE_PCI_IO:
    248  1.2.4.1  thorpej 		st = &tsp->pc_iot;
    249  1.2.4.1  thorpej 		break;
    250  1.2.4.1  thorpej 
    251  1.2.4.1  thorpej 	case ALPHA_BUS_TYPE_PCI_MEM:
    252  1.2.4.1  thorpej 		st = &tsp->pc_memt;
    253  1.2.4.1  thorpej 		break;
    254  1.2.4.1  thorpej 
    255  1.2.4.1  thorpej 	default:
    256  1.2.4.1  thorpej 		panic("tsp_bus_get_window");
    257  1.2.4.1  thorpej 	}
    258  1.2.4.1  thorpej 
    259  1.2.4.1  thorpej 	error = alpha_bus_space_get_window(st, window, abst);
    260  1.2.4.1  thorpej 	if (error)
    261  1.2.4.1  thorpej 		return (error);
    262  1.2.4.1  thorpej 
    263  1.2.4.1  thorpej 	abst->abst_sys_start = TS_PHYSADDR(abst->abst_sys_start);
    264  1.2.4.1  thorpej 	abst->abst_sys_end = TS_PHYSADDR(abst->abst_sys_end);
    265  1.2.4.1  thorpej 
    266  1.2.4.1  thorpej 	return (0);
    267      1.1     ross }
    268