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