Home | History | Annotate | Line # | Download | only in tx
txcsbus.c revision 1.20.76.1
      1  1.20.76.1      yamt /*	$NetBSD: txcsbus.c,v 1.20.76.1 2008/05/18 12:32:04 yamt 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.1       uch  *
     19        1.5       uch  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20        1.5       uch  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21        1.5       uch  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22        1.5       uch  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23        1.5       uch  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24        1.5       uch  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25        1.5       uch  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26        1.5       uch  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27        1.5       uch  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28        1.5       uch  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29        1.5       uch  * POSSIBILITY OF SUCH DAMAGE.
     30        1.1       uch  */
     31       1.15     lukem 
     32       1.15     lukem #include <sys/cdefs.h>
     33  1.20.76.1      yamt __KERNEL_RCSID(0, "$NetBSD: txcsbus.c,v 1.20.76.1 2008/05/18 12:32:04 yamt Exp $");
     34        1.1       uch 
     35        1.1       uch #include <sys/param.h>
     36        1.1       uch #include <sys/systm.h>
     37        1.1       uch #include <sys/device.h>
     38        1.1       uch 
     39        1.6  takemura #include <machine/intr.h>
     40        1.1       uch #include <machine/bus.h>
     41        1.6  takemura #include <machine/bus_space_hpcmips.h>
     42        1.1       uch 
     43        1.1       uch #include <machine/platid.h>
     44        1.1       uch #include <machine/platid_mask.h>
     45        1.1       uch 
     46        1.1       uch #include <hpcmips/tx/tx39var.h>
     47        1.1       uch #include <hpcmips/tx/txcsbusvar.h>
     48        1.1       uch #include <hpcmips/tx/tx39biuvar.h>
     49        1.1       uch #include <hpcmips/tx/tx39biureg.h>
     50        1.1       uch 
     51        1.1       uch #include "locators.h"
     52        1.1       uch 
     53        1.3       uch /* TX39 CS mapping. (nonconfigurationable) */
     54        1.3       uch const struct csmap {
     55       1.16        he 	const char *cs_name;
     56        1.3       uch 	paddr_t	cs_addr;
     57        1.3       uch 	psize_t	cs_size;
     58        1.3       uch } __csmap[] = {
     59        1.3       uch 	[TX39_CS0]	= {"CS0(ROM)"	, TX39_SYSADDR_CS0	,
     60        1.3       uch 			   TX39_SYSADDR_CS_SIZE},
     61        1.3       uch 	[TX39_CS1]	= {"CS1"	, TX39_SYSADDR_CS1	,
     62        1.3       uch 			   TX39_SYSADDR_CS_SIZE},
     63        1.3       uch 	[TX39_CS2]	= {"CS2"	, TX39_SYSADDR_CS2	,
     64        1.3       uch 			   TX39_SYSADDR_CS_SIZE},
     65        1.3       uch 	[TX39_CS3]	= {"CS3"	, TX39_SYSADDR_CS3	,
     66        1.3       uch 			   TX39_SYSADDR_CS_SIZE},
     67        1.3       uch 	[TX39_MCS0]	= {"MCS0"	, TX39_SYSADDR_MCS0	,
     68        1.3       uch 			   TX39_SYSADDR_MCS_SIZE},
     69        1.3       uch 	[TX39_MCS1]	= {"MCS1"	, TX39_SYSADDR_MCS1	,
     70        1.3       uch 			   TX39_SYSADDR_MCS_SIZE},
     71        1.3       uch #ifdef TX391X
     72        1.3       uch 	[TX39_MCS2]	= {"MCS2"	, TX39_SYSADDR_MCS2	,
     73        1.3       uch 			   TX39_SYSADDR_MCS_SIZE},
     74        1.3       uch 	[TX39_MCS3]	= {"MCS3"	, TX39_SYSADDR_MCS3	,
     75        1.3       uch 			   TX39_SYSADDR_MCS_SIZE},
     76        1.3       uch #endif /* TX391X */
     77        1.3       uch 	[TX39_CARD1]	= {"CARD1(io/attr)", TX39_SYSADDR_CARD1	,
     78        1.3       uch 			   TX39_SYSADDR_CARD_SIZE},
     79        1.3       uch 	[TX39_CARD2]	= {"CARD2(io/attr)", TX39_SYSADDR_CARD2	,
     80        1.3       uch 			   TX39_SYSADDR_CARD_SIZE},
     81        1.3       uch 	[TX39_CARD1MEM]	= {"CARD1(mem)"	, TX39_SYSADDR_CARD1MEM	,
     82        1.3       uch 			   TX39_SYSADDR_CARD_SIZE},
     83        1.3       uch 	[TX39_CARD2MEM]	= {"CARD2(mem)"	, TX39_SYSADDR_CARD2MEM	,
     84        1.3       uch 			   TX39_SYSADDR_CARD_SIZE},
     85       1.18  nakayama 	[TX39_KUCS0]	= {"KUCS0"	, TX39_SYSADDR_KUSEG_CS0,
     86       1.18  nakayama 			   TX39_SYSADDR_KUCS_SIZE},
     87       1.18  nakayama 	[TX39_KUCS1]	= {"KUCS1"	, TX39_SYSADDR_KUSEG_CS1,
     88       1.18  nakayama 			   TX39_SYSADDR_KUCS_SIZE},
     89       1.18  nakayama 	[TX39_KUCS2]	= {"KUCS2"	, TX39_SYSADDR_KUSEG_CS2,
     90       1.18  nakayama 			   TX39_SYSADDR_KUCS_SIZE},
     91       1.18  nakayama 	[TX39_KUCS3]	= {"KUCS3"	, TX39_SYSADDR_KUSEG_CS3,
     92       1.18  nakayama 			   TX39_SYSADDR_KUCS_SIZE},
     93        1.3       uch };
     94        1.3       uch 
     95        1.5       uch int	txcsbus_match(struct device *, struct cfdata *, void *);
     96        1.5       uch void	txcsbus_attach(struct device *, struct device *, void *);
     97        1.5       uch int	txcsbus_print(void *, const char *);
     98       1.17  drochner int	txcsbus_search(struct device *, struct cfdata *,
     99       1.19  drochner 		       const int *, void *);
    100        1.1       uch 
    101        1.1       uch struct txcsbus_softc {
    102        1.1       uch 	struct	device sc_dev;
    103        1.1       uch 	tx_chipset_tag_t sc_tc;
    104        1.1       uch 	/* chip select space tag */
    105        1.7       uch 	struct bus_space_tag_hpcmips *sc_cst[TX39_MAXCS];
    106       1.18  nakayama 	int sc_pri;
    107        1.1       uch };
    108        1.1       uch 
    109       1.13   thorpej CFATTACH_DECL(txcsbus, sizeof(struct txcsbus_softc),
    110       1.13   thorpej     txcsbus_match, txcsbus_attach, NULL, NULL);
    111        1.1       uch 
    112        1.5       uch static bus_space_tag_t __txcsbus_alloc_cstag(struct txcsbus_softc *,
    113        1.5       uch     struct cs_handle *);
    114        1.1       uch 
    115        1.1       uch int
    116        1.5       uch txcsbus_match(struct device *parent, struct cfdata *cf, void *aux)
    117        1.1       uch {
    118        1.1       uch 	struct csbus_attach_args *cba = aux;
    119        1.1       uch 	platid_mask_t mask;
    120        1.1       uch 
    121        1.9   thorpej 	if (strcmp(cba->cba_busname, cf->cf_name))
    122        1.5       uch 		return (0);
    123        1.1       uch 
    124        1.5       uch 	if (cf->cf_loc[TXCSBUSIFCF_PLATFORM] == TXCSBUSIFCF_PLATFORM_DEFAULT)
    125        1.5       uch 		return (1);
    126        1.1       uch 
    127        1.1       uch 	mask = PLATID_DEREF(cf->cf_loc[TXCSBUSIFCF_PLATFORM]);
    128        1.5       uch 	if (platid_match(&platid, &mask))
    129        1.5       uch 		return (2);
    130        1.1       uch 
    131        1.5       uch 	return (0);
    132        1.1       uch }
    133        1.1       uch 
    134        1.1       uch void
    135        1.5       uch txcsbus_attach(struct device *parent, struct device *self, void *aux)
    136        1.1       uch {
    137        1.1       uch 	struct csbus_attach_args *cba = aux;
    138        1.1       uch 	struct txcsbus_softc *sc = (void*)self;
    139        1.1       uch 
    140        1.1       uch 	sc->sc_tc = cba->cba_tc;
    141        1.1       uch 	printf("\n");
    142        1.1       uch 
    143        1.1       uch 	/*
    144        1.1       uch 	 *	Attach external chip.
    145        1.1       uch 	 */
    146       1.18  nakayama 	/* higher priority devices attach first */
    147       1.18  nakayama 	sc->sc_pri = 2;
    148       1.18  nakayama 	config_search_ia(txcsbus_search, self, "txcsbus", txcsbus_print);
    149       1.18  nakayama 	/* then, normal priority devices */
    150       1.18  nakayama 	sc->sc_pri = 1;
    151       1.17  drochner 	config_search_ia(txcsbus_search, self, "txcsbus", txcsbus_print);
    152        1.1       uch }
    153        1.1       uch 
    154        1.1       uch int
    155        1.5       uch txcsbus_print(void *aux, const char *pnp)
    156        1.1       uch {
    157        1.3       uch #define PRINTIRQ(i) i, (i) / 32, (i) % 32
    158        1.3       uch 	struct cs_attach_args *ca = aux;
    159        1.3       uch 
    160        1.3       uch 	if (ca->ca_csreg.cs != TXCSBUSCF_REGCS_DEFAULT) {
    161       1.14   thorpej 		aprint_normal(" regcs %s %dbit %#x+%#x",
    162        1.5       uch 		    __csmap[ca->ca_csreg.cs].cs_name,
    163        1.5       uch 		    ca->ca_csreg.cswidth,
    164        1.5       uch 		    ca->ca_csreg.csbase,
    165        1.5       uch 		    ca->ca_csreg.cssize);
    166        1.3       uch 	}
    167        1.3       uch 
    168        1.3       uch 	if (ca->ca_csio.cs != TXCSBUSCF_IOCS_DEFAULT) {
    169       1.14   thorpej 		aprint_normal(" iocs %s %dbit %#x+%#x",
    170        1.5       uch 		    __csmap[ca->ca_csio.cs].cs_name,
    171        1.5       uch 		    ca->ca_csio.cswidth,
    172        1.5       uch 		    ca->ca_csio.csbase,
    173        1.5       uch 		    ca->ca_csio.cssize);
    174        1.3       uch 	}
    175        1.3       uch 
    176        1.3       uch 	if (ca->ca_csmem.cs != TXCSBUSCF_MEMCS_DEFAULT) {
    177       1.14   thorpej 		aprint_normal(" memcs %s %dbit %#x+%#x",
    178        1.5       uch 		    __csmap[ca->ca_csmem.cs].cs_name,
    179        1.5       uch 		    ca->ca_csmem.cswidth,
    180        1.5       uch 		    ca->ca_csmem.csbase,
    181        1.5       uch 		    ca->ca_csmem.cssize);
    182        1.3       uch 	}
    183        1.3       uch 
    184        1.3       uch 	if (ca->ca_irq1 != TXCSBUSCF_IRQ1_DEFAULT) {
    185       1.14   thorpej 		aprint_normal(" irq1 %d(%d:%d)", PRINTIRQ(ca->ca_irq1));
    186        1.3       uch 	}
    187        1.3       uch 
    188        1.3       uch 	if (ca->ca_irq2 != TXCSBUSCF_IRQ2_DEFAULT) {
    189       1.14   thorpej 		aprint_normal(" irq2 %d(%d:%d)", PRINTIRQ(ca->ca_irq2));
    190        1.3       uch 	}
    191        1.3       uch 
    192        1.3       uch 	if (ca->ca_irq3 != TXCSBUSCF_IRQ3_DEFAULT) {
    193       1.14   thorpej 		aprint_normal(" irq3 %d(%d:%d)", PRINTIRQ(ca->ca_irq3));
    194        1.3       uch 	}
    195        1.3       uch 
    196        1.5       uch 	return (UNCONF);
    197        1.1       uch }
    198        1.1       uch 
    199        1.1       uch int
    200       1.17  drochner txcsbus_search(struct device *parent, struct cfdata *cf,
    201       1.19  drochner 	       const int *ldesc, void *aux)
    202        1.1       uch {
    203        1.1       uch 	struct txcsbus_softc *sc = (void*)parent;
    204        1.1       uch 	struct cs_attach_args ca;
    205        1.1       uch 
    206        1.1       uch 	ca.ca_tc		= sc->sc_tc;
    207        1.1       uch 
    208        1.1       uch 	ca.ca_csreg.cs		= cf->cf_loc[TXCSBUSCF_REGCS];
    209        1.1       uch 	ca.ca_csreg.csbase	= cf->cf_loc[TXCSBUSCF_REGCSBASE];
    210        1.1       uch 	ca.ca_csreg.cssize	= cf->cf_loc[TXCSBUSCF_REGCSSIZE];
    211        1.1       uch 	ca.ca_csreg.cswidth	= cf->cf_loc[TXCSBUSCF_REGCSWIDTH];
    212        1.2       uch 
    213        1.1       uch 	if (ca.ca_csreg.cs != TXCSBUSCF_REGCS_DEFAULT) {
    214        1.2       uch 		ca.ca_csreg.cstag = __txcsbus_alloc_cstag(sc, &ca.ca_csreg);
    215        1.1       uch 	}
    216        1.1       uch 
    217        1.1       uch 	ca.ca_csio.cs		= cf->cf_loc[TXCSBUSCF_IOCS];
    218        1.1       uch 	ca.ca_csio.csbase	= cf->cf_loc[TXCSBUSCF_IOCSBASE];
    219        1.1       uch 	ca.ca_csio.cssize	= cf->cf_loc[TXCSBUSCF_IOCSSIZE];
    220        1.1       uch 	ca.ca_csio.cswidth	= cf->cf_loc[TXCSBUSCF_IOCSWIDTH];
    221        1.2       uch 
    222        1.1       uch 	if (ca.ca_csio.cs != TXCSBUSCF_IOCS_DEFAULT) {
    223        1.2       uch 		ca.ca_csio.cstag = __txcsbus_alloc_cstag(sc, &ca.ca_csio);
    224        1.1       uch 	}
    225        1.2       uch 
    226        1.1       uch 	ca.ca_csmem.cs		= cf->cf_loc[TXCSBUSCF_MEMCS];
    227        1.1       uch 	ca.ca_csmem.csbase	= cf->cf_loc[TXCSBUSCF_MEMCSBASE];
    228        1.1       uch 	ca.ca_csmem.cssize	= cf->cf_loc[TXCSBUSCF_MEMCSSIZE];
    229        1.1       uch 	ca.ca_csmem.cswidth	= cf->cf_loc[TXCSBUSCF_MEMCSWIDTH];
    230        1.2       uch 
    231        1.1       uch 	if (ca.ca_csmem.cs != TXCSBUSCF_MEMCS_DEFAULT) {
    232        1.2       uch 		ca.ca_csmem.cstag = __txcsbus_alloc_cstag(sc, &ca.ca_csmem);
    233        1.1       uch 	}
    234        1.1       uch 
    235        1.1       uch 	ca.ca_irq1		= cf->cf_loc[TXCSBUSCF_IRQ1];
    236        1.1       uch 	ca.ca_irq2		= cf->cf_loc[TXCSBUSCF_IRQ2];
    237        1.1       uch 	ca.ca_irq3		= cf->cf_loc[TXCSBUSCF_IRQ3];
    238        1.1       uch 
    239       1.18  nakayama 	if (config_match(parent, cf, &ca) == sc->sc_pri) {
    240        1.1       uch 		config_attach(parent, cf, &ca, txcsbus_print);
    241        1.1       uch 	}
    242        1.1       uch 
    243        1.5       uch 	return (0);
    244        1.1       uch }
    245        1.1       uch 
    246        1.1       uch bus_space_tag_t
    247        1.5       uch __txcsbus_alloc_cstag(struct txcsbus_softc *sc, struct cs_handle *csh)
    248        1.1       uch {
    249        1.1       uch 
    250        1.1       uch 	tx_chipset_tag_t tc = sc->sc_tc;
    251        1.1       uch 	int cs = csh->cs;
    252        1.1       uch 	int width = csh->cswidth;
    253        1.7       uch 	struct bus_space_tag_hpcmips *iot;
    254        1.1       uch 	txreg_t reg;
    255        1.1       uch 
    256       1.18  nakayama  	if (!TX39_ISCS(cs) && !TX39_ISMCS(cs) && !TX39_ISCARD(cs) &&
    257       1.18  nakayama 	    !TX39_ISKUCS(cs)) {
    258       1.11    provos 		panic("txcsbus_alloc_tag: bogus chip select %d", cs);
    259        1.1       uch 	}
    260        1.1       uch 
    261        1.1       uch 	/* Already setuped chip select */
    262        1.1       uch 	if (sc->sc_cst[cs]) {
    263        1.7       uch 		return (&sc->sc_cst[cs]->bst);
    264        1.1       uch 	}
    265        1.1       uch 
    266        1.1       uch 	iot = hpcmips_alloc_bus_space_tag();
    267        1.7       uch 	hpcmips_init_bus_space(iot, hpcmips_system_bus_space_hpcmips(),
    268        1.7       uch 	    __csmap[cs].cs_name, __csmap[cs].cs_addr, __csmap[cs].cs_size);
    269        1.1       uch 	sc->sc_cst[cs] = iot;
    270        1.1       uch 
    271        1.1       uch 	/* CS bus-width (configurationable) */
    272        1.1       uch 	switch (width) {
    273        1.1       uch 	default:
    274       1.11    provos 		panic("txcsbus_alloc_tag: bogus bus width %d", width);
    275        1.2       uch 
    276        1.1       uch 	case 32:
    277        1.1       uch 		if (TX39_ISCS(cs)) {
    278        1.1       uch 			reg = tx_conf_read(tc, TX39_MEMCONFIG0_REG);
    279        1.1       uch 			reg |= (1 << cs);
    280        1.1       uch 			tx_conf_write(tc, TX39_MEMCONFIG0_REG, reg);
    281        1.2       uch 		} else if(TX39_ISMCS(cs)) {
    282        1.1       uch #ifdef TX391X
    283        1.1       uch 			panic("txcsbus_alloc_tag: MCS is 16bit only");
    284        1.2       uch #endif /* TX391X */
    285        1.2       uch #ifdef TX392X
    286        1.1       uch 			reg = tx_conf_read(tc, TX39_MEMCONFIG1_REG);
    287        1.2       uch 			reg |= ((cs == TX39_MCS0) ?
    288        1.5       uch 			    TX39_MEMCONFIG1_MCS0_32 :
    289        1.5       uch 			    TX39_MEMCONFIG1_MCS1_32);
    290        1.1       uch 			tx_conf_write(tc, TX39_MEMCONFIG1_REG, reg);
    291        1.2       uch #endif /* TX392X */
    292        1.1       uch 		}
    293        1.1       uch 		break;
    294        1.2       uch 
    295        1.1       uch 	case 16:
    296        1.1       uch 		if (TX39_ISCS(cs)) {
    297        1.1       uch 			reg = tx_conf_read(tc, TX39_MEMCONFIG0_REG);
    298        1.1       uch 			reg &= ~(1 << cs);
    299        1.1       uch 			tx_conf_write(tc, TX39_MEMCONFIG0_REG, reg);
    300        1.2       uch 		} else if(TX39_ISMCS(cs)) {
    301        1.2       uch 			/* TX391X always 16bit port */
    302        1.1       uch #ifdef TX392X
    303        1.1       uch 			reg = tx_conf_read(tc, TX39_MEMCONFIG1_REG);
    304        1.2       uch 			reg &= ~((cs == TX39_MCS0) ?
    305        1.5       uch 			    TX39_MEMCONFIG1_MCS0_32 :
    306        1.5       uch 			    TX39_MEMCONFIG1_MCS1_32);
    307        1.1       uch 			tx_conf_write(tc, TX39_MEMCONFIG1_REG, reg);
    308        1.2       uch #endif /* TX392X */
    309       1.18  nakayama 		} else if (TX39_ISCARD(cs)) {
    310        1.2       uch 			/* CARD io/attr or mem */
    311        1.2       uch 			reg = tx_conf_read(tc, TX39_MEMCONFIG3_REG);
    312        1.2       uch 
    313        1.2       uch 			/* enable I/O access */
    314        1.2       uch 			reg |= (cs == TX39_CARD1) ?
    315        1.5       uch 			    TX39_MEMCONFIG3_CARD1IOEN :
    316        1.5       uch 			    TX39_MEMCONFIG3_CARD2IOEN;
    317        1.2       uch 			/* disable 8bit access */
    318        1.2       uch #ifdef TX392X
    319        1.2       uch 			reg &= ~((cs == TX39_CARD1) ?
    320        1.5       uch 			    TX39_MEMCONFIG3_CARD1_8SEL :
    321        1.5       uch 			    TX39_MEMCONFIG3_CARD2_8SEL);
    322        1.2       uch #endif /* TX392X */
    323        1.2       uch #ifdef TX391X
    324        1.2       uch 			reg &= ~TX39_MEMCONFIG3_PORT8SEL;
    325        1.2       uch #endif /* TX391X */
    326        1.2       uch 			tx_conf_write(tc, TX39_MEMCONFIG3_REG, reg);
    327        1.1       uch 		}
    328        1.1       uch 		break;
    329        1.2       uch 
    330        1.2       uch 	case 8:
    331        1.2       uch 		if (TX39_ISCARD(cs)) {
    332        1.2       uch 			reg = tx_conf_read(tc, TX39_MEMCONFIG3_REG);
    333        1.2       uch 
    334        1.2       uch 			/* enable I/O access */
    335        1.2       uch 			reg |= (cs == TX39_CARD1) ?
    336        1.5       uch 			    TX39_MEMCONFIG3_CARD1IOEN :
    337        1.5       uch 			    TX39_MEMCONFIG3_CARD2IOEN;
    338        1.2       uch 			/* disable 8bit access */
    339        1.2       uch #ifdef TX392X
    340        1.2       uch 			reg |= (cs == TX39_CARD1) ?
    341        1.5       uch 			    TX39_MEMCONFIG3_CARD1_8SEL :
    342        1.5       uch 			    TX39_MEMCONFIG3_CARD2_8SEL;
    343        1.2       uch #endif /* TX392X */
    344        1.2       uch #ifdef TX391X
    345        1.2       uch 			reg |= TX39_MEMCONFIG3_PORT8SEL;
    346        1.2       uch #endif /* TX391X */
    347        1.2       uch 			tx_conf_write(tc, TX39_MEMCONFIG3_REG, reg);
    348        1.2       uch 
    349        1.2       uch 		} else {
    350        1.2       uch 			panic("__txcsbus_alloc_cstag: CS%d 8bit mode is"
    351        1.5       uch 			    "not allowed", cs);
    352        1.2       uch 		}
    353        1.1       uch 	}
    354        1.1       uch 
    355        1.7       uch 	return (&iot->bst);
    356        1.1       uch }
    357