Home | History | Annotate | Line # | Download | only in tx
txcsbus.c revision 1.14
      1  1.14   thorpej /*	$NetBSD: txcsbus.c,v 1.14 2003/01/01 01:40:27 thorpej Exp $ */
      2   1.1       uch 
      3   1.5       uch /*-
      4   1.5       uch  * Copyright (c) 1999 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.1       uch 
     39   1.1       uch #include <sys/param.h>
     40   1.1       uch #include <sys/systm.h>
     41   1.1       uch #include <sys/device.h>
     42   1.1       uch 
     43   1.6  takemura #include <machine/intr.h>
     44   1.1       uch #include <machine/bus.h>
     45   1.6  takemura #include <machine/bus_space_hpcmips.h>
     46   1.1       uch 
     47   1.1       uch #include <machine/platid.h>
     48   1.1       uch #include <machine/platid_mask.h>
     49   1.1       uch 
     50   1.1       uch #include <hpcmips/tx/tx39var.h>
     51   1.1       uch #include <hpcmips/tx/txcsbusvar.h>
     52   1.1       uch #include <hpcmips/tx/tx39biuvar.h>
     53   1.1       uch #include <hpcmips/tx/tx39biureg.h>
     54   1.1       uch 
     55   1.1       uch #include "locators.h"
     56   1.1       uch 
     57   1.3       uch /* TX39 CS mapping. (nonconfigurationable) */
     58   1.3       uch const struct csmap {
     59   1.3       uch 	char	*cs_name;
     60   1.3       uch 	paddr_t	cs_addr;
     61   1.3       uch 	psize_t	cs_size;
     62   1.3       uch } __csmap[] = {
     63   1.3       uch 	[TX39_CS0]	= {"CS0(ROM)"	, TX39_SYSADDR_CS0	,
     64   1.3       uch 			   TX39_SYSADDR_CS_SIZE},
     65   1.3       uch 	[TX39_CS1]	= {"CS1"	, TX39_SYSADDR_CS1	,
     66   1.3       uch 			   TX39_SYSADDR_CS_SIZE},
     67   1.3       uch 	[TX39_CS2]	= {"CS2"	, TX39_SYSADDR_CS2	,
     68   1.3       uch 			   TX39_SYSADDR_CS_SIZE},
     69   1.3       uch 	[TX39_CS3]	= {"CS3"	, TX39_SYSADDR_CS3	,
     70   1.3       uch 			   TX39_SYSADDR_CS_SIZE},
     71   1.3       uch 	[TX39_MCS0]	= {"MCS0"	, TX39_SYSADDR_MCS0	,
     72   1.3       uch 			   TX39_SYSADDR_MCS_SIZE},
     73   1.3       uch 	[TX39_MCS1]	= {"MCS1"	, TX39_SYSADDR_MCS1	,
     74   1.3       uch 			   TX39_SYSADDR_MCS_SIZE},
     75   1.3       uch #ifdef TX391X
     76   1.3       uch 	[TX39_MCS2]	= {"MCS2"	, TX39_SYSADDR_MCS2	,
     77   1.3       uch 			   TX39_SYSADDR_MCS_SIZE},
     78   1.3       uch 	[TX39_MCS3]	= {"MCS3"	, TX39_SYSADDR_MCS3	,
     79   1.3       uch 			   TX39_SYSADDR_MCS_SIZE},
     80   1.3       uch #endif /* TX391X */
     81   1.3       uch 	[TX39_CARD1]	= {"CARD1(io/attr)", TX39_SYSADDR_CARD1	,
     82   1.3       uch 			   TX39_SYSADDR_CARD_SIZE},
     83   1.3       uch 	[TX39_CARD2]	= {"CARD2(io/attr)", TX39_SYSADDR_CARD2	,
     84   1.3       uch 			   TX39_SYSADDR_CARD_SIZE},
     85   1.3       uch 	[TX39_CARD1MEM]	= {"CARD1(mem)"	, TX39_SYSADDR_CARD1MEM	,
     86   1.3       uch 			   TX39_SYSADDR_CARD_SIZE},
     87   1.3       uch 	[TX39_CARD2MEM]	= {"CARD2(mem)"	, TX39_SYSADDR_CARD2MEM	,
     88   1.3       uch 			   TX39_SYSADDR_CARD_SIZE},
     89   1.3       uch };
     90   1.3       uch 
     91   1.5       uch int	txcsbus_match(struct device *, struct cfdata *, void *);
     92   1.5       uch void	txcsbus_attach(struct device *, struct device *, void *);
     93   1.5       uch int	txcsbus_print(void *, const char *);
     94   1.5       uch int	txcsbus_search(struct device *, struct cfdata *, void *);
     95   1.1       uch 
     96   1.1       uch struct txcsbus_softc {
     97   1.1       uch 	struct	device sc_dev;
     98   1.1       uch 	tx_chipset_tag_t sc_tc;
     99   1.1       uch 	/* chip select space tag */
    100   1.7       uch 	struct bus_space_tag_hpcmips *sc_cst[TX39_MAXCS];
    101   1.1       uch };
    102   1.1       uch 
    103  1.13   thorpej CFATTACH_DECL(txcsbus, sizeof(struct txcsbus_softc),
    104  1.13   thorpej     txcsbus_match, txcsbus_attach, NULL, NULL);
    105   1.1       uch 
    106   1.5       uch static bus_space_tag_t __txcsbus_alloc_cstag(struct txcsbus_softc *,
    107   1.5       uch     struct cs_handle *);
    108   1.1       uch 
    109   1.1       uch int
    110   1.5       uch txcsbus_match(struct device *parent, struct cfdata *cf, void *aux)
    111   1.1       uch {
    112   1.1       uch 	struct csbus_attach_args *cba = aux;
    113   1.1       uch 	platid_mask_t mask;
    114   1.1       uch 
    115   1.9   thorpej 	if (strcmp(cba->cba_busname, cf->cf_name))
    116   1.5       uch 		return (0);
    117   1.1       uch 
    118   1.5       uch 	if (cf->cf_loc[TXCSBUSIFCF_PLATFORM] == TXCSBUSIFCF_PLATFORM_DEFAULT)
    119   1.5       uch 		return (1);
    120   1.1       uch 
    121   1.1       uch 	mask = PLATID_DEREF(cf->cf_loc[TXCSBUSIFCF_PLATFORM]);
    122   1.5       uch 	if (platid_match(&platid, &mask))
    123   1.5       uch 		return (2);
    124   1.1       uch 
    125   1.5       uch 	return (0);
    126   1.1       uch }
    127   1.1       uch 
    128   1.1       uch void
    129   1.5       uch txcsbus_attach(struct device *parent, struct device *self, void *aux)
    130   1.1       uch {
    131   1.1       uch 	struct csbus_attach_args *cba = aux;
    132   1.1       uch 	struct txcsbus_softc *sc = (void*)self;
    133   1.1       uch 
    134   1.1       uch 	sc->sc_tc = cba->cba_tc;
    135   1.1       uch 	printf("\n");
    136   1.1       uch 
    137   1.1       uch 	/*
    138   1.1       uch 	 *	Attach external chip.
    139   1.1       uch 	 */
    140   1.1       uch 	config_search(txcsbus_search, self, txcsbus_print);
    141   1.1       uch }
    142   1.1       uch 
    143   1.1       uch int
    144   1.5       uch txcsbus_print(void *aux, const char *pnp)
    145   1.1       uch {
    146   1.3       uch #define PRINTIRQ(i) i, (i) / 32, (i) % 32
    147   1.3       uch 	struct cs_attach_args *ca = aux;
    148   1.3       uch 
    149   1.3       uch 	if (ca->ca_csreg.cs != TXCSBUSCF_REGCS_DEFAULT) {
    150  1.14   thorpej 		aprint_normal(" regcs %s %dbit %#x+%#x",
    151   1.5       uch 		    __csmap[ca->ca_csreg.cs].cs_name,
    152   1.5       uch 		    ca->ca_csreg.cswidth,
    153   1.5       uch 		    ca->ca_csreg.csbase,
    154   1.5       uch 		    ca->ca_csreg.cssize);
    155   1.3       uch 	}
    156   1.3       uch 
    157   1.3       uch 	if (ca->ca_csio.cs != TXCSBUSCF_IOCS_DEFAULT) {
    158  1.14   thorpej 		aprint_normal(" iocs %s %dbit %#x+%#x",
    159   1.5       uch 		    __csmap[ca->ca_csio.cs].cs_name,
    160   1.5       uch 		    ca->ca_csio.cswidth,
    161   1.5       uch 		    ca->ca_csio.csbase,
    162   1.5       uch 		    ca->ca_csio.cssize);
    163   1.3       uch 	}
    164   1.3       uch 
    165   1.3       uch 	if (ca->ca_csmem.cs != TXCSBUSCF_MEMCS_DEFAULT) {
    166  1.14   thorpej 		aprint_normal(" memcs %s %dbit %#x+%#x",
    167   1.5       uch 		    __csmap[ca->ca_csmem.cs].cs_name,
    168   1.5       uch 		    ca->ca_csmem.cswidth,
    169   1.5       uch 		    ca->ca_csmem.csbase,
    170   1.5       uch 		    ca->ca_csmem.cssize);
    171   1.3       uch 	}
    172   1.3       uch 
    173   1.3       uch 	if (ca->ca_irq1 != TXCSBUSCF_IRQ1_DEFAULT) {
    174  1.14   thorpej 		aprint_normal(" irq1 %d(%d:%d)", PRINTIRQ(ca->ca_irq1));
    175   1.3       uch 	}
    176   1.3       uch 
    177   1.3       uch 	if (ca->ca_irq2 != TXCSBUSCF_IRQ2_DEFAULT) {
    178  1.14   thorpej 		aprint_normal(" irq2 %d(%d:%d)", PRINTIRQ(ca->ca_irq2));
    179   1.3       uch 	}
    180   1.3       uch 
    181   1.3       uch 	if (ca->ca_irq3 != TXCSBUSCF_IRQ3_DEFAULT) {
    182  1.14   thorpej 		aprint_normal(" irq3 %d(%d:%d)", PRINTIRQ(ca->ca_irq3));
    183   1.3       uch 	}
    184   1.3       uch 
    185   1.5       uch 	return (UNCONF);
    186   1.1       uch }
    187   1.1       uch 
    188   1.1       uch int
    189   1.5       uch txcsbus_search(struct device *parent, struct cfdata *cf, void *aux)
    190   1.1       uch {
    191   1.1       uch 	struct txcsbus_softc *sc = (void*)parent;
    192   1.1       uch 	struct cs_attach_args ca;
    193   1.1       uch 
    194   1.1       uch 	ca.ca_tc		= sc->sc_tc;
    195   1.1       uch 
    196   1.1       uch 	ca.ca_csreg.cs		= cf->cf_loc[TXCSBUSCF_REGCS];
    197   1.1       uch 	ca.ca_csreg.csbase	= cf->cf_loc[TXCSBUSCF_REGCSBASE];
    198   1.1       uch 	ca.ca_csreg.cssize	= cf->cf_loc[TXCSBUSCF_REGCSSIZE];
    199   1.1       uch 	ca.ca_csreg.cswidth	= cf->cf_loc[TXCSBUSCF_REGCSWIDTH];
    200   1.2       uch 
    201   1.1       uch 	if (ca.ca_csreg.cs != TXCSBUSCF_REGCS_DEFAULT) {
    202   1.2       uch 		ca.ca_csreg.cstag = __txcsbus_alloc_cstag(sc, &ca.ca_csreg);
    203   1.1       uch 	}
    204   1.1       uch 
    205   1.1       uch 	ca.ca_csio.cs		= cf->cf_loc[TXCSBUSCF_IOCS];
    206   1.1       uch 	ca.ca_csio.csbase	= cf->cf_loc[TXCSBUSCF_IOCSBASE];
    207   1.1       uch 	ca.ca_csio.cssize	= cf->cf_loc[TXCSBUSCF_IOCSSIZE];
    208   1.1       uch 	ca.ca_csio.cswidth	= cf->cf_loc[TXCSBUSCF_IOCSWIDTH];
    209   1.2       uch 
    210   1.1       uch 	if (ca.ca_csio.cs != TXCSBUSCF_IOCS_DEFAULT) {
    211   1.2       uch 		ca.ca_csio.cstag = __txcsbus_alloc_cstag(sc, &ca.ca_csio);
    212   1.1       uch 	}
    213   1.2       uch 
    214   1.1       uch 	ca.ca_csmem.cs		= cf->cf_loc[TXCSBUSCF_MEMCS];
    215   1.1       uch 	ca.ca_csmem.csbase	= cf->cf_loc[TXCSBUSCF_MEMCSBASE];
    216   1.1       uch 	ca.ca_csmem.cssize	= cf->cf_loc[TXCSBUSCF_MEMCSSIZE];
    217   1.1       uch 	ca.ca_csmem.cswidth	= cf->cf_loc[TXCSBUSCF_MEMCSWIDTH];
    218   1.2       uch 
    219   1.1       uch 	if (ca.ca_csmem.cs != TXCSBUSCF_MEMCS_DEFAULT) {
    220   1.2       uch 		ca.ca_csmem.cstag = __txcsbus_alloc_cstag(sc, &ca.ca_csmem);
    221   1.1       uch 	}
    222   1.1       uch 
    223   1.1       uch 	ca.ca_irq1		= cf->cf_loc[TXCSBUSCF_IRQ1];
    224   1.1       uch 	ca.ca_irq2		= cf->cf_loc[TXCSBUSCF_IRQ2];
    225   1.1       uch 	ca.ca_irq3		= cf->cf_loc[TXCSBUSCF_IRQ3];
    226   1.1       uch 
    227  1.10   thorpej 	if (config_match(parent, cf, &ca)) {
    228   1.1       uch 		config_attach(parent, cf, &ca, txcsbus_print);
    229   1.1       uch 	}
    230   1.1       uch 
    231   1.5       uch 	return (0);
    232   1.1       uch }
    233   1.1       uch 
    234   1.1       uch bus_space_tag_t
    235   1.5       uch __txcsbus_alloc_cstag(struct txcsbus_softc *sc, struct cs_handle *csh)
    236   1.1       uch {
    237   1.1       uch 
    238   1.1       uch 	tx_chipset_tag_t tc = sc->sc_tc;
    239   1.1       uch 	int cs = csh->cs;
    240   1.1       uch 	int width = csh->cswidth;
    241   1.7       uch 	struct bus_space_tag_hpcmips *iot;
    242   1.1       uch 	txreg_t reg;
    243   1.1       uch 
    244   1.1       uch  	if (!TX39_ISCS(cs) && !TX39_ISMCS(cs) && !TX39_ISCARD(cs)) {
    245  1.11    provos 		panic("txcsbus_alloc_tag: bogus chip select %d", cs);
    246   1.1       uch 	}
    247   1.1       uch 
    248   1.1       uch 	/* Already setuped chip select */
    249   1.1       uch 	if (sc->sc_cst[cs]) {
    250   1.7       uch 		return (&sc->sc_cst[cs]->bst);
    251   1.1       uch 	}
    252   1.1       uch 
    253   1.1       uch 	iot = hpcmips_alloc_bus_space_tag();
    254   1.7       uch 	hpcmips_init_bus_space(iot, hpcmips_system_bus_space_hpcmips(),
    255   1.7       uch 	    __csmap[cs].cs_name, __csmap[cs].cs_addr, __csmap[cs].cs_size);
    256   1.1       uch 	sc->sc_cst[cs] = iot;
    257   1.1       uch 
    258   1.1       uch 	/* CS bus-width (configurationable) */
    259   1.1       uch 	switch (width) {
    260   1.1       uch 	default:
    261  1.11    provos 		panic("txcsbus_alloc_tag: bogus bus width %d", width);
    262   1.2       uch 
    263   1.1       uch 	case 32:
    264   1.1       uch 		if (TX39_ISCS(cs)) {
    265   1.1       uch 			reg = tx_conf_read(tc, TX39_MEMCONFIG0_REG);
    266   1.1       uch 			reg |= (1 << cs);
    267   1.1       uch 			tx_conf_write(tc, TX39_MEMCONFIG0_REG, reg);
    268   1.2       uch 		} else if(TX39_ISMCS(cs)) {
    269   1.1       uch #ifdef TX391X
    270   1.1       uch 			panic("txcsbus_alloc_tag: MCS is 16bit only");
    271   1.2       uch #endif /* TX391X */
    272   1.2       uch #ifdef TX392X
    273   1.1       uch 			reg = tx_conf_read(tc, TX39_MEMCONFIG1_REG);
    274   1.2       uch 			reg |= ((cs == TX39_MCS0) ?
    275   1.5       uch 			    TX39_MEMCONFIG1_MCS0_32 :
    276   1.5       uch 			    TX39_MEMCONFIG1_MCS1_32);
    277   1.1       uch 			tx_conf_write(tc, TX39_MEMCONFIG1_REG, reg);
    278   1.2       uch #endif /* TX392X */
    279   1.1       uch 		}
    280   1.1       uch 		break;
    281   1.2       uch 
    282   1.1       uch 	case 16:
    283   1.1       uch 		if (TX39_ISCS(cs)) {
    284   1.1       uch 			reg = tx_conf_read(tc, TX39_MEMCONFIG0_REG);
    285   1.1       uch 			reg &= ~(1 << cs);
    286   1.1       uch 			tx_conf_write(tc, TX39_MEMCONFIG0_REG, reg);
    287   1.2       uch 		} else if(TX39_ISMCS(cs)) {
    288   1.2       uch 			/* TX391X always 16bit port */
    289   1.1       uch #ifdef TX392X
    290   1.1       uch 			reg = tx_conf_read(tc, TX39_MEMCONFIG1_REG);
    291   1.2       uch 			reg &= ~((cs == TX39_MCS0) ?
    292   1.5       uch 			    TX39_MEMCONFIG1_MCS0_32 :
    293   1.5       uch 			    TX39_MEMCONFIG1_MCS1_32);
    294   1.1       uch 			tx_conf_write(tc, TX39_MEMCONFIG1_REG, reg);
    295   1.2       uch #endif /* TX392X */
    296   1.2       uch 		} else {
    297   1.2       uch 			/* CARD io/attr or mem */
    298   1.2       uch 			reg = tx_conf_read(tc, TX39_MEMCONFIG3_REG);
    299   1.2       uch 
    300   1.2       uch 			/* enable I/O access */
    301   1.2       uch 			reg |= (cs == TX39_CARD1) ?
    302   1.5       uch 			    TX39_MEMCONFIG3_CARD1IOEN :
    303   1.5       uch 			    TX39_MEMCONFIG3_CARD2IOEN;
    304   1.2       uch 			/* disable 8bit access */
    305   1.2       uch #ifdef TX392X
    306   1.2       uch 			reg &= ~((cs == TX39_CARD1) ?
    307   1.5       uch 			    TX39_MEMCONFIG3_CARD1_8SEL :
    308   1.5       uch 			    TX39_MEMCONFIG3_CARD2_8SEL);
    309   1.2       uch #endif /* TX392X */
    310   1.2       uch #ifdef TX391X
    311   1.2       uch 			reg &= ~TX39_MEMCONFIG3_PORT8SEL;
    312   1.2       uch #endif /* TX391X */
    313   1.2       uch 			tx_conf_write(tc, TX39_MEMCONFIG3_REG, reg);
    314   1.1       uch 		}
    315   1.1       uch 		break;
    316   1.2       uch 
    317   1.2       uch 	case 8:
    318   1.2       uch 		if (TX39_ISCARD(cs)) {
    319   1.2       uch 			reg = tx_conf_read(tc, TX39_MEMCONFIG3_REG);
    320   1.2       uch 
    321   1.2       uch 			/* enable I/O access */
    322   1.2       uch 			reg |= (cs == TX39_CARD1) ?
    323   1.5       uch 			    TX39_MEMCONFIG3_CARD1IOEN :
    324   1.5       uch 			    TX39_MEMCONFIG3_CARD2IOEN;
    325   1.2       uch 			/* disable 8bit access */
    326   1.2       uch #ifdef TX392X
    327   1.2       uch 			reg |= (cs == TX39_CARD1) ?
    328   1.5       uch 			    TX39_MEMCONFIG3_CARD1_8SEL :
    329   1.5       uch 			    TX39_MEMCONFIG3_CARD2_8SEL;
    330   1.2       uch #endif /* TX392X */
    331   1.2       uch #ifdef TX391X
    332   1.2       uch 			reg |= TX39_MEMCONFIG3_PORT8SEL;
    333   1.2       uch #endif /* TX391X */
    334   1.2       uch 			tx_conf_write(tc, TX39_MEMCONFIG3_REG, reg);
    335   1.2       uch 
    336   1.2       uch 		} else {
    337   1.2       uch 			panic("__txcsbus_alloc_cstag: CS%d 8bit mode is"
    338   1.5       uch 			    "not allowed", cs);
    339   1.2       uch 		}
    340   1.1       uch 	}
    341   1.1       uch 
    342   1.7       uch 	return (&iot->bst);
    343   1.1       uch }
    344