txcsbus.c revision 1.23 1 /* $NetBSD: txcsbus.c,v 1.23 2021/04/24 23:36:38 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.23 2021/04/24 23:36:38 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 CFARG_SEARCH, txcsbus_search,
148 CFARG_EOL);
149
150 /* then, normal priority devices */
151 sc->sc_pri = 1;
152 config_search(self, NULL,
153 CFARG_SEARCH, txcsbus_search,
154 CFARG_EOL);
155 }
156
157 int
158 txcsbus_print(void *aux, const char *pnp)
159 {
160 #define PRINTIRQ(i) i, (i) / 32, (i) % 32
161 struct cs_attach_args *ca = aux;
162
163 if (ca->ca_csreg.cs != TXCSBUSCF_REGCS_DEFAULT) {
164 aprint_normal(" regcs %s %dbit %#x+%#x",
165 __csmap[ca->ca_csreg.cs].cs_name,
166 ca->ca_csreg.cswidth,
167 ca->ca_csreg.csbase,
168 ca->ca_csreg.cssize);
169 }
170
171 if (ca->ca_csio.cs != TXCSBUSCF_IOCS_DEFAULT) {
172 aprint_normal(" iocs %s %dbit %#x+%#x",
173 __csmap[ca->ca_csio.cs].cs_name,
174 ca->ca_csio.cswidth,
175 ca->ca_csio.csbase,
176 ca->ca_csio.cssize);
177 }
178
179 if (ca->ca_csmem.cs != TXCSBUSCF_MEMCS_DEFAULT) {
180 aprint_normal(" memcs %s %dbit %#x+%#x",
181 __csmap[ca->ca_csmem.cs].cs_name,
182 ca->ca_csmem.cswidth,
183 ca->ca_csmem.csbase,
184 ca->ca_csmem.cssize);
185 }
186
187 if (ca->ca_irq1 != TXCSBUSCF_IRQ1_DEFAULT) {
188 aprint_normal(" irq1 %d(%d:%d)", PRINTIRQ(ca->ca_irq1));
189 }
190
191 if (ca->ca_irq2 != TXCSBUSCF_IRQ2_DEFAULT) {
192 aprint_normal(" irq2 %d(%d:%d)", PRINTIRQ(ca->ca_irq2));
193 }
194
195 if (ca->ca_irq3 != TXCSBUSCF_IRQ3_DEFAULT) {
196 aprint_normal(" irq3 %d(%d:%d)", PRINTIRQ(ca->ca_irq3));
197 }
198
199 return (UNCONF);
200 }
201
202 int
203 txcsbus_search(device_t parent, cfdata_t cf, const int *ldesc, void *aux)
204 {
205 struct txcsbus_softc *sc = device_private(parent);
206 struct cs_attach_args ca;
207
208 ca.ca_tc = sc->sc_tc;
209
210 ca.ca_csreg.cs = cf->cf_loc[TXCSBUSCF_REGCS];
211 ca.ca_csreg.csbase = cf->cf_loc[TXCSBUSCF_REGCSBASE];
212 ca.ca_csreg.cssize = cf->cf_loc[TXCSBUSCF_REGCSSIZE];
213 ca.ca_csreg.cswidth = cf->cf_loc[TXCSBUSCF_REGCSWIDTH];
214
215 if (ca.ca_csreg.cs != TXCSBUSCF_REGCS_DEFAULT) {
216 ca.ca_csreg.cstag = __txcsbus_alloc_cstag(sc, &ca.ca_csreg);
217 }
218
219 ca.ca_csio.cs = cf->cf_loc[TXCSBUSCF_IOCS];
220 ca.ca_csio.csbase = cf->cf_loc[TXCSBUSCF_IOCSBASE];
221 ca.ca_csio.cssize = cf->cf_loc[TXCSBUSCF_IOCSSIZE];
222 ca.ca_csio.cswidth = cf->cf_loc[TXCSBUSCF_IOCSWIDTH];
223
224 if (ca.ca_csio.cs != TXCSBUSCF_IOCS_DEFAULT) {
225 ca.ca_csio.cstag = __txcsbus_alloc_cstag(sc, &ca.ca_csio);
226 }
227
228 ca.ca_csmem.cs = cf->cf_loc[TXCSBUSCF_MEMCS];
229 ca.ca_csmem.csbase = cf->cf_loc[TXCSBUSCF_MEMCSBASE];
230 ca.ca_csmem.cssize = cf->cf_loc[TXCSBUSCF_MEMCSSIZE];
231 ca.ca_csmem.cswidth = cf->cf_loc[TXCSBUSCF_MEMCSWIDTH];
232
233 if (ca.ca_csmem.cs != TXCSBUSCF_MEMCS_DEFAULT) {
234 ca.ca_csmem.cstag = __txcsbus_alloc_cstag(sc, &ca.ca_csmem);
235 }
236
237 ca.ca_irq1 = cf->cf_loc[TXCSBUSCF_IRQ1];
238 ca.ca_irq2 = cf->cf_loc[TXCSBUSCF_IRQ2];
239 ca.ca_irq3 = cf->cf_loc[TXCSBUSCF_IRQ3];
240
241 if (/*XXX*/config_probe(parent, cf, &ca) == sc->sc_pri) {
242 config_attach(parent, cf, &ca, txcsbus_print, CFARG_EOL);
243 }
244
245 return (0);
246 }
247
248 bus_space_tag_t
249 __txcsbus_alloc_cstag(struct txcsbus_softc *sc, struct cs_handle *csh)
250 {
251
252 tx_chipset_tag_t tc = sc->sc_tc;
253 int cs = csh->cs;
254 int width = csh->cswidth;
255 struct bus_space_tag_hpcmips *iot;
256 txreg_t reg;
257
258 if (!TX39_ISCS(cs) && !TX39_ISMCS(cs) && !TX39_ISCARD(cs) &&
259 !TX39_ISKUCS(cs)) {
260 panic("txcsbus_alloc_tag: bogus chip select %d", cs);
261 }
262
263 /* Already setuped chip select */
264 if (sc->sc_cst[cs]) {
265 return (&sc->sc_cst[cs]->bst);
266 }
267
268 iot = hpcmips_alloc_bus_space_tag();
269 hpcmips_init_bus_space(iot, hpcmips_system_bus_space_hpcmips(),
270 __csmap[cs].cs_name, __csmap[cs].cs_addr, __csmap[cs].cs_size);
271 sc->sc_cst[cs] = iot;
272
273 /* CS bus-width (configurationable) */
274 switch (width) {
275 default:
276 panic("txcsbus_alloc_tag: bogus bus width %d", width);
277
278 case 32:
279 if (TX39_ISCS(cs)) {
280 reg = tx_conf_read(tc, TX39_MEMCONFIG0_REG);
281 reg |= (1 << cs);
282 tx_conf_write(tc, TX39_MEMCONFIG0_REG, reg);
283 } else if(TX39_ISMCS(cs)) {
284 #ifdef TX391X
285 panic("txcsbus_alloc_tag: MCS is 16bit only");
286 #endif /* TX391X */
287 #ifdef TX392X
288 reg = tx_conf_read(tc, TX39_MEMCONFIG1_REG);
289 reg |= ((cs == TX39_MCS0) ?
290 TX39_MEMCONFIG1_MCS0_32 :
291 TX39_MEMCONFIG1_MCS1_32);
292 tx_conf_write(tc, TX39_MEMCONFIG1_REG, reg);
293 #endif /* TX392X */
294 }
295 break;
296
297 case 16:
298 if (TX39_ISCS(cs)) {
299 reg = tx_conf_read(tc, TX39_MEMCONFIG0_REG);
300 reg &= ~(1 << cs);
301 tx_conf_write(tc, TX39_MEMCONFIG0_REG, reg);
302 } else if(TX39_ISMCS(cs)) {
303 /* TX391X always 16bit port */
304 #ifdef TX392X
305 reg = tx_conf_read(tc, TX39_MEMCONFIG1_REG);
306 reg &= ~((cs == TX39_MCS0) ?
307 TX39_MEMCONFIG1_MCS0_32 :
308 TX39_MEMCONFIG1_MCS1_32);
309 tx_conf_write(tc, TX39_MEMCONFIG1_REG, reg);
310 #endif /* TX392X */
311 } else if (TX39_ISCARD(cs)) {
312 /* CARD io/attr or mem */
313 reg = tx_conf_read(tc, TX39_MEMCONFIG3_REG);
314
315 /* enable I/O access */
316 reg |= (cs == TX39_CARD1) ?
317 TX39_MEMCONFIG3_CARD1IOEN :
318 TX39_MEMCONFIG3_CARD2IOEN;
319 /* disable 8bit access */
320 #ifdef TX392X
321 reg &= ~((cs == TX39_CARD1) ?
322 TX39_MEMCONFIG3_CARD1_8SEL :
323 TX39_MEMCONFIG3_CARD2_8SEL);
324 #endif /* TX392X */
325 #ifdef TX391X
326 reg &= ~TX39_MEMCONFIG3_PORT8SEL;
327 #endif /* TX391X */
328 tx_conf_write(tc, TX39_MEMCONFIG3_REG, reg);
329 }
330 break;
331
332 case 8:
333 if (TX39_ISCARD(cs)) {
334 reg = tx_conf_read(tc, TX39_MEMCONFIG3_REG);
335
336 /* enable I/O access */
337 reg |= (cs == TX39_CARD1) ?
338 TX39_MEMCONFIG3_CARD1IOEN :
339 TX39_MEMCONFIG3_CARD2IOEN;
340 /* disable 8bit access */
341 #ifdef TX392X
342 reg |= (cs == TX39_CARD1) ?
343 TX39_MEMCONFIG3_CARD1_8SEL :
344 TX39_MEMCONFIG3_CARD2_8SEL;
345 #endif /* TX392X */
346 #ifdef TX391X
347 reg |= TX39_MEMCONFIG3_PORT8SEL;
348 #endif /* TX391X */
349 tx_conf_write(tc, TX39_MEMCONFIG3_REG, reg);
350
351 } else {
352 panic("__txcsbus_alloc_cstag: CS%d 8bit mode is"
353 "not allowed", cs);
354 }
355 }
356
357 return (&iot->bst);
358 }
359