Home | History | Annotate | Line # | Download | only in tx
tx39biu.c revision 1.8.6.3
      1  1.8.6.3    skrll /*	$NetBSD: tx39biu.c,v 1.8.6.3 2004/09/21 13:16:12 skrll Exp $ */
      2      1.1      uch 
      3      1.5      uch /*-
      4      1.6      uch  * Copyright (c) 1999-2002 The NetBSD Foundation, Inc.
      5      1.1      uch  * All rights reserved.
      6      1.1      uch  *
      7      1.5      uch  * This code is derived from software contributed to The NetBSD Foundation
      8      1.5      uch  * by UCHIYAMA Yasushi.
      9      1.5      uch  *
     10      1.1      uch  * Redistribution and use in source and binary forms, with or without
     11      1.1      uch  * modification, are permitted provided that the following conditions
     12      1.1      uch  * are met:
     13      1.1      uch  * 1. Redistributions of source code must retain the above copyright
     14      1.1      uch  *    notice, this list of conditions and the following disclaimer.
     15      1.5      uch  * 2. Redistributions in binary form must reproduce the above copyright
     16      1.5      uch  *    notice, this list of conditions and the following disclaimer in the
     17      1.5      uch  *    documentation and/or other materials provided with the distribution.
     18      1.5      uch  * 3. All advertising materials mentioning features or use of this software
     19      1.5      uch  *    must display the following acknowledgement:
     20      1.5      uch  *        This product includes software developed by the NetBSD
     21      1.5      uch  *        Foundation, Inc. and its contributors.
     22      1.5      uch  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23      1.5      uch  *    contributors may be used to endorse or promote products derived
     24      1.5      uch  *    from this software without specific prior written permission.
     25      1.1      uch  *
     26      1.5      uch  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27      1.5      uch  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28      1.5      uch  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29      1.5      uch  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30      1.5      uch  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31      1.5      uch  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32      1.5      uch  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33      1.5      uch  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34      1.5      uch  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35      1.5      uch  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36      1.5      uch  * POSSIBILITY OF SUCH DAMAGE.
     37      1.1      uch  */
     38      1.5      uch 
     39  1.8.6.1    skrll #include <sys/cdefs.h>
     40  1.8.6.3    skrll __KERNEL_RCSID(0, "$NetBSD: tx39biu.c,v 1.8.6.3 2004/09/21 13:16:12 skrll Exp $");
     41  1.8.6.1    skrll 
     42      1.1      uch #include "opt_tx39_watchdogtimer.h"
     43      1.6      uch #include "opt_tx39biu_debug.h"
     44      1.1      uch 
     45      1.1      uch #include <sys/param.h>
     46      1.1      uch #include <sys/systm.h>
     47      1.1      uch #include <sys/device.h>
     48      1.1      uch 
     49      1.1      uch #include <machine/bus.h>
     50      1.6      uch #include <machine/debug.h>
     51      1.1      uch 
     52      1.1      uch #include <hpcmips/tx/tx39var.h>
     53      1.1      uch #include <hpcmips/tx/tx39biureg.h>
     54      1.6      uch #include <hpcmips/tx/txcsbusvar.h>
     55      1.1      uch 
     56      1.6      uch #ifdef	TX39BIU_DEBUG
     57      1.6      uch #define DPRINTF_ENABLE
     58      1.6      uch #define DPRINTF_DEBUG	tx39biu_debug
     59      1.6      uch #endif
     60      1.6      uch #include <machine/debug.h>
     61      1.1      uch 
     62      1.1      uch #define ISSET(x, s)	((x) & (1 << (s)))
     63      1.6      uch #define ISSETPRINT(r, s, m) dbg_bitmask_print((u_int32_t)(r),		\
     64      1.6      uch 	TX39_MEMCONFIG ## s ## _ ##m, #m)
     65      1.1      uch 
     66      1.5      uch int	tx39biu_match(struct device *, struct cfdata *, void *);
     67      1.5      uch void	tx39biu_attach(struct device *, struct device *, void *);
     68      1.5      uch void	tx39biu_callback(struct device *);
     69      1.5      uch int	tx39biu_print(void *, const char *);
     70      1.5      uch int	tx39biu_intr(void *);
     71      1.1      uch 
     72      1.1      uch static void *__sc; /* XXX */
     73      1.6      uch #ifdef TX39BIU_DEBUG
     74      1.5      uch void	tx39biu_dump(tx_chipset_tag_t);
     75      1.6      uch #endif
     76      1.1      uch 
     77      1.1      uch struct tx39biu_softc {
     78      1.1      uch 	struct	device sc_dev;
     79      1.1      uch 	tx_chipset_tag_t sc_tc;
     80      1.1      uch };
     81      1.1      uch 
     82      1.8  thorpej CFATTACH_DECL(tx39biu, sizeof(struct tx39biu_softc),
     83      1.8  thorpej     tx39biu_match, tx39biu_attach, NULL, NULL);
     84      1.1      uch 
     85      1.1      uch int
     86      1.1      uch tx39biu_match(parent, cf, aux)
     87      1.1      uch 	struct device *parent;
     88      1.1      uch 	struct cfdata *cf;
     89      1.1      uch 	void *aux;
     90      1.1      uch {
     91      1.5      uch 	return (ATTACH_NORMAL);
     92      1.1      uch }
     93      1.1      uch 
     94      1.1      uch void
     95      1.1      uch tx39biu_attach(parent, self, aux)
     96      1.1      uch 	struct device *parent;
     97      1.1      uch 	struct device *self;
     98      1.1      uch 	void *aux;
     99      1.1      uch {
    100      1.1      uch 	struct txsim_attach_args *ta = aux;
    101      1.1      uch 	struct tx39biu_softc *sc = (void*)self;
    102      1.1      uch 	tx_chipset_tag_t tc;
    103      1.1      uch #ifdef TX39_WATCHDOGTIMER
    104      1.1      uch 	txreg_t reg;
    105      1.1      uch #endif
    106      1.1      uch 
    107      1.1      uch 	sc->sc_tc = tc = ta->ta_tc;
    108      1.1      uch 	printf("\n");
    109      1.6      uch #ifdef TX39BIU_DEBUG
    110      1.1      uch 	tx39biu_dump(tc);
    111      1.1      uch #endif
    112      1.1      uch 
    113      1.1      uch #ifdef TX39_WATCHDOGTIMER
    114      1.1      uch 	/*
    115      1.1      uch 	 * CLRWRBUSERRINT Bus error connected CPU HwInt0
    116      1.1      uch 	 */
    117      1.1      uch 	reg = tx_conf_read(tc, TX39_MEMCONFIG4_REG);
    118      1.1      uch 	reg |= TX39_MEMCONFIG4_ENWATCH;
    119      1.1      uch 	reg = TX39_MEMCONFIG4_WATCHTIMEVAL_SET(reg, 0xf);
    120      1.1      uch 	tx_conf_write(tc, TX39_MEMCONFIG4_REG, reg);
    121      1.1      uch 
    122      1.1      uch 	reg = tx_conf_read(tc, TX39_MEMCONFIG4_REG);
    123      1.1      uch 	if (reg & TX39_MEMCONFIG4_ENWATCH) {
    124      1.1      uch 		int i;
    125      1.1      uch 		i = TX39_MEMCONFIG4_WATCHTIMEVAL(reg);
    126      1.1      uch 		i = (1000 * (i + 1) * 64) / 36864;
    127      1.1      uch 		printf("WatchDogTimerRate: %dus\n", i);
    128      1.1      uch 	}
    129      1.1      uch #endif
    130      1.1      uch 	__sc = sc;
    131      1.1      uch 
    132      1.1      uch 	/*	Clear watch dog timer interrupt */
    133      1.1      uch 	tx39biu_intr(sc);
    134      1.1      uch 
    135      1.1      uch 	/*
    136      1.1      uch 	 *	Chip select virtual bridge
    137      1.1      uch 	 */
    138      1.1      uch 	config_defer(self, tx39biu_callback);
    139      1.1      uch }
    140      1.1      uch 
    141      1.1      uch void
    142      1.1      uch tx39biu_callback(self)
    143      1.1      uch 	struct device *self;
    144      1.1      uch {
    145      1.1      uch 	struct tx39biu_softc *sc = (void*)self;
    146      1.1      uch 	struct csbus_attach_args cba;
    147      1.1      uch 
    148      1.1      uch 	cba.cba_busname = "txcsbus";
    149      1.1      uch 	cba.cba_tc = sc->sc_tc;
    150      1.1      uch 	config_found(self, &cba, tx39biu_print);
    151      1.1      uch }
    152      1.1      uch 
    153      1.1      uch int
    154      1.1      uch tx39biu_print(aux, pnp)
    155      1.1      uch 	void *aux;
    156      1.1      uch 	const char *pnp;
    157      1.1      uch {
    158      1.5      uch 	return (pnp ? QUIET : UNCONF);
    159      1.1      uch }
    160      1.1      uch 
    161      1.1      uch int
    162      1.1      uch tx39biu_intr(arg)
    163      1.1      uch 	void *arg;
    164      1.1      uch {
    165      1.1      uch 	struct tx39biu_softc *sc = __sc;
    166      1.1      uch 	tx_chipset_tag_t tc;
    167      1.1      uch 	txreg_t reg;
    168      1.1      uch 
    169      1.1      uch 	if (!sc) {
    170      1.5      uch 		return (0);
    171      1.1      uch 	}
    172      1.1      uch 	tc = sc->sc_tc;
    173      1.1      uch 	/* Clear interrupt */
    174      1.1      uch 	reg = tx_conf_read(tc, TX39_MEMCONFIG4_REG);
    175      1.1      uch 	reg |= TX39_MEMCONFIG4_CLRWRBUSERRINT;
    176      1.1      uch 	tx_conf_write(tc, TX39_MEMCONFIG4_REG, reg);
    177      1.1      uch 	reg = tx_conf_read(tc, TX39_MEMCONFIG4_REG);
    178      1.1      uch 	reg &= ~TX39_MEMCONFIG4_CLRWRBUSERRINT;
    179      1.1      uch 	tx_conf_write(tc, TX39_MEMCONFIG4_REG, reg);
    180      1.1      uch 
    181      1.5      uch 	return (0);
    182      1.1      uch }
    183      1.1      uch 
    184      1.6      uch #ifdef TX39BIU_DEBUG
    185      1.1      uch void
    186      1.2      uch tx39biu_dump(tc)
    187      1.1      uch 	tx_chipset_tag_t tc;
    188      1.1      uch {
    189      1.3      uch 	char *rowsel[] = {"18,17:9", "22,18,20,19,17:9", "20,22,21,19,17:9",
    190      1.3      uch 			  "22,23,21,19,17:9"};
    191      1.3      uch 	char *colsel[] = {"22,20,18,8:1", "19,18,8:2", "21,20,18,8:2",
    192      1.3      uch 			  "23,22,20,18,8:2", "24,22,20,18,8:2",
    193      1.3      uch 			  "18,p,X,8:0","22,p,X,21,8:0", "18,p,X,21,8:1",
    194      1.3      uch 			  "22,p,X,23,21,8:1", "24,23,21,8:2"};
    195      1.1      uch 	txreg_t reg;
    196      1.1      uch 	int i;
    197      1.1      uch 	/*
    198      1.1      uch 	 *	Memory config 0 register
    199      1.1      uch 	 */
    200      1.1      uch 	reg = tx_conf_read(tc, TX39_MEMCONFIG0_REG);
    201      1.1      uch 	printf(" config0:");
    202      1.1      uch 	ISSETPRINT(reg, 0, ENDCLKOUTTRI);
    203      1.1      uch 	ISSETPRINT(reg, 0, DISDQMINIT);
    204      1.1      uch 	ISSETPRINT(reg, 0, ENSDRAMPD);
    205      1.1      uch 	ISSETPRINT(reg, 0, SHOWDINO);
    206      1.1      uch 	ISSETPRINT(reg, 0, ENRMAP2);
    207      1.1      uch 	ISSETPRINT(reg, 0, ENRMAP1);
    208      1.1      uch 	ISSETPRINT(reg, 0, ENWRINPAGE);
    209      1.1      uch 	ISSETPRINT(reg, 0, ENCS3USER);
    210      1.1      uch 	ISSETPRINT(reg, 0, ENCS2USER);
    211      1.1      uch 	ISSETPRINT(reg, 0, ENCS1USER);
    212      1.1      uch 	ISSETPRINT(reg, 0, ENCS1DRAM);
    213      1.1      uch 	ISSETPRINT(reg, 0, CS3SIZE);
    214      1.1      uch 	ISSETPRINT(reg, 0, CS2SIZE);
    215      1.1      uch 	ISSETPRINT(reg, 0, CS1SIZE);
    216      1.1      uch 	ISSETPRINT(reg, 0, CS0SIZE);
    217      1.1      uch 	printf("\n");
    218      1.1      uch 	for (i = 0; i < 2; i++) {
    219      1.1      uch 		int r, c;
    220      1.1      uch 		printf(" BANK%d: ", i);
    221      1.1      uch 		switch (i ? TX39_MEMCONFIG0_BANK1CONF(reg)
    222      1.5      uch 		    : TX39_MEMCONFIG0_BANK0CONF(reg)) {
    223      1.1      uch 		case TX39_MEMCONFIG0_BANKCONF_16BITSDRAM:
    224      1.1      uch 			printf("16bit SDRAM");
    225      1.1      uch 			break;
    226      1.1      uch 		case TX39_MEMCONFIG0_BANKCONF_8BITSDRAM:
    227      1.1      uch 			printf("8bit SDRAM");
    228      1.1      uch 			break;
    229      1.1      uch 		case TX39_MEMCONFIG0_BANKCONF_32BITSDHDRAM:
    230      1.1      uch 			printf("32bit DRAM/HDRAM");
    231      1.1      uch 			break;
    232      1.1      uch 		case TX39_MEMCONFIG0_BANKCONF_16BITSDHDRAM:
    233      1.1      uch 			printf("16bit DRAM/HDRAM");
    234      1.1      uch 			break;
    235      1.1      uch 		}
    236      1.1      uch 		if (i == 1) {
    237      1.1      uch 			r = TX39_MEMCONFIG0_ROWSEL1(reg);
    238      1.1      uch 			c = TX39_MEMCONFIG0_COLSEL1(reg);
    239      1.1      uch 		} else {
    240      1.1      uch 			r = TX39_MEMCONFIG0_ROWSEL0(reg);
    241      1.1      uch 			c = TX39_MEMCONFIG0_COLSEL0(reg);
    242      1.1      uch 		}
    243      1.1      uch 		printf(" ROW %s COL %s\n", rowsel[r], colsel[c]);
    244      1.1      uch 	}
    245      1.1      uch 
    246      1.1      uch 	/*
    247      1.1      uch 	 *	Memory config 3 register
    248      1.1      uch 	 */
    249      1.1      uch 	printf(" config3:");
    250      1.1      uch 	reg = tx_conf_read(tc, TX39_MEMCONFIG3_REG);
    251      1.1      uch #ifdef TX391X
    252      1.1      uch 	ISSETPRINT(reg, 3, ENMCS3PAGE);
    253      1.1      uch 	ISSETPRINT(reg, 3, ENMCS2PAGE);
    254      1.1      uch 	ISSETPRINT(reg, 3, ENMCS1PAGE);
    255      1.1      uch 	ISSETPRINT(reg, 3, ENMCS0PAGE);
    256      1.1      uch #endif /* TX391X */
    257      1.1      uch 	ISSETPRINT(reg, 3, ENCS3PAGE);
    258      1.1      uch 	ISSETPRINT(reg, 3, ENCS2PAGE);
    259      1.1      uch 	ISSETPRINT(reg, 3, ENCS1PAGE);
    260      1.1      uch 	ISSETPRINT(reg, 3, ENCS0PAGE);
    261      1.1      uch 	ISSETPRINT(reg, 3, CARD2WAITEN);
    262      1.1      uch 	ISSETPRINT(reg, 3, CARD1WAITEN);
    263      1.1      uch 	ISSETPRINT(reg, 3, CARD2IOEN);
    264      1.1      uch 	ISSETPRINT(reg, 3, CARD1IOEN);
    265      1.1      uch #ifdef TX391X
    266      1.1      uch 	ISSETPRINT(reg, 3, PORT8SEL);
    267      1.1      uch #endif /* TX391X */
    268      1.1      uch #ifdef TX392X
    269      1.1      uch 	ISSETPRINT(reg, 3, CARD2_8SEL);
    270      1.1      uch 	ISSETPRINT(reg, 3, CARD1_8SEL);
    271      1.1      uch #endif /* TX392X */
    272      1.1      uch 
    273      1.1      uch 	printf("\n");
    274      1.1      uch 
    275      1.1      uch 	/*
    276      1.1      uch 	 *	Memory config 4 register
    277      1.1      uch 	 */
    278      1.1      uch 	reg = tx_conf_read(tc, TX39_MEMCONFIG4_REG);
    279      1.1      uch 	printf(" config4:");
    280      1.1      uch 	ISSETPRINT(reg, 4, ENBANK1HDRAM);
    281      1.1      uch 	ISSETPRINT(reg, 4, ENBANK0HDRAM);
    282      1.1      uch 	ISSETPRINT(reg, 4, ENARB);
    283      1.1      uch 	ISSETPRINT(reg, 4, DISSNOOP);
    284      1.1      uch 	ISSETPRINT(reg, 4, CLRWRBUSERRINT);
    285      1.1      uch 	ISSETPRINT(reg, 4, ENBANK1OPT);
    286      1.1      uch 	ISSETPRINT(reg, 4, ENBANK0OPT);
    287      1.1      uch 	ISSETPRINT(reg, 4, ENWATCH);
    288      1.1      uch 	ISSETPRINT(reg, 4, MEMPOWERDOWN);
    289      1.1      uch 	ISSETPRINT(reg, 4, ENRFSH1);
    290      1.1      uch 	ISSETPRINT(reg, 4, ENRFSH0);
    291      1.1      uch 	if (reg & TX39_MEMCONFIG4_ENWATCH) {
    292      1.1      uch 		i = TX39_MEMCONFIG4_WATCHTIMEVAL(reg);
    293      1.1      uch 		i = (1000 * (i + 1) * 64) / 36864;
    294      1.1      uch 		printf("WatchDogTimerRate: %dus", i);
    295      1.1      uch 	}
    296      1.1      uch 	printf("\n");
    297      1.1      uch }
    298      1.6      uch #endif /* TX39BIU_DEBUG */
    299