tcbus.c revision 1.23 1 1.23 dsl /* $NetBSD: tcbus.c,v 1.23 2009/03/14 15:36:12 dsl Exp $ */
2 1.1 nisimura
3 1.21 nisimura /*-
4 1.21 nisimura * Copyright (c) 1999, 2000 The NetBSD Foundation, Inc.
5 1.21 nisimura * All rights reserved.
6 1.21 nisimura *
7 1.21 nisimura * This code is derived from software contributed to The NetBSD Foundation
8 1.21 nisimura * by Tohru Nishimura.
9 1.1 nisimura *
10 1.1 nisimura * Redistribution and use in source and binary forms, with or without
11 1.1 nisimura * modification, are permitted provided that the following conditions
12 1.1 nisimura * are met:
13 1.1 nisimura * 1. Redistributions of source code must retain the above copyright
14 1.1 nisimura * notice, this list of conditions and the following disclaimer.
15 1.1 nisimura * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 nisimura * notice, this list of conditions and the following disclaimer in the
17 1.1 nisimura * documentation and/or other materials provided with the distribution.
18 1.1 nisimura *
19 1.21 nisimura * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 1.21 nisimura * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 1.21 nisimura * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 1.21 nisimura * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 1.21 nisimura * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 1.21 nisimura * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 1.21 nisimura * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 1.21 nisimura * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 1.21 nisimura * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 1.21 nisimura * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 1.21 nisimura * POSSIBILITY OF SUCH DAMAGE.
30 1.1 nisimura */
31 1.1 nisimura
32 1.21 nisimura #include <sys/cdefs.h>
33 1.23 dsl __KERNEL_RCSID(0, "$NetBSD: tcbus.c,v 1.23 2009/03/14 15:36:12 dsl Exp $");
34 1.10 nisimura
35 1.10 nisimura /*
36 1.10 nisimura * Which system models were configured?
37 1.10 nisimura */
38 1.10 nisimura #include "opt_dec_3max.h"
39 1.10 nisimura #include "opt_dec_3min.h"
40 1.10 nisimura #include "opt_dec_maxine.h"
41 1.10 nisimura #include "opt_dec_3maxplus.h"
42 1.1 nisimura
43 1.1 nisimura #include <sys/param.h>
44 1.1 nisimura #include <sys/systm.h>
45 1.1 nisimura #include <sys/device.h>
46 1.1 nisimura
47 1.1 nisimura #include <machine/autoconf.h>
48 1.7 simonb #include <machine/sysconf.h>
49 1.1 nisimura
50 1.1 nisimura #define _PMAX_BUS_DMA_PRIVATE
51 1.1 nisimura #include <machine/bus.h>
52 1.1 nisimura
53 1.1 nisimura #include <dev/tc/tcvar.h>
54 1.1 nisimura #include <pmax/pmax/pmaxtype.h>
55 1.1 nisimura
56 1.22 dsl static const struct evcnt *tc_ds_intr_evcnt(struct device *, void *);
57 1.22 dsl static void tc_ds_intr_establish(struct device *, void *,
58 1.22 dsl int, int (*)(void *), void *);
59 1.22 dsl static void tc_ds_intr_disestablish(struct device *, void *);
60 1.22 dsl static bus_dma_tag_t tc_ds_get_dma_tag(int);
61 1.1 nisimura
62 1.5 simonb extern struct tcbus_attach_args kn02_tc_desc[]; /* XXX */
63 1.5 simonb extern struct tcbus_attach_args kmin_tc_desc[]; /* XXX */
64 1.5 simonb extern struct tcbus_attach_args xine_tc_desc[]; /* XXX */
65 1.5 simonb extern struct tcbus_attach_args kn03_tc_desc[]; /* XXX */
66 1.1 nisimura
67 1.22 dsl static int tcbus_match(struct device *, struct cfdata *, void *);
68 1.22 dsl static void tcbus_attach(struct device *, struct device *, void *);
69 1.1 nisimura
70 1.16 thorpej CFATTACH_DECL(tcbus, sizeof(struct tc_softc),
71 1.16 thorpej tcbus_match, tcbus_attach, NULL, NULL);
72 1.1 nisimura
73 1.1 nisimura static int tcbus_found;
74 1.1 nisimura
75 1.10 nisimura static int
76 1.23 dsl tcbus_match(struct device *parent, struct cfdata *cfdata, void *aux)
77 1.1 nisimura {
78 1.1 nisimura struct mainbus_attach_args *ma = aux;
79 1.1 nisimura
80 1.1 nisimura if (tcbus_found || strcmp(ma->ma_name, "tcbus"))
81 1.1 nisimura return 0;
82 1.1 nisimura
83 1.1 nisimura return 1;
84 1.1 nisimura }
85 1.1 nisimura
86 1.10 nisimura static void
87 1.1 nisimura tcbus_attach(parent, self, aux)
88 1.1 nisimura struct device *parent, *self;
89 1.1 nisimura void *aux;
90 1.1 nisimura {
91 1.1 nisimura struct tcbus_attach_args *tba;
92 1.1 nisimura
93 1.1 nisimura tcbus_found = 1;
94 1.1 nisimura
95 1.1 nisimura switch (systype) {
96 1.1 nisimura #ifdef DEC_3MAX
97 1.1 nisimura case DS_3MAX:
98 1.1 nisimura tba = &kn02_tc_desc[0]; break;
99 1.1 nisimura #endif
100 1.1 nisimura #ifdef DEC_3MIN
101 1.1 nisimura case DS_3MIN:
102 1.1 nisimura tba = &kmin_tc_desc[0]; break;
103 1.1 nisimura #endif
104 1.1 nisimura #ifdef DEC_MAXINE
105 1.1 nisimura case DS_MAXINE:
106 1.1 nisimura tba = &xine_tc_desc[0]; break;
107 1.1 nisimura #endif
108 1.1 nisimura #ifdef DEC_3MAXPLUS
109 1.1 nisimura case DS_3MAXPLUS:
110 1.1 nisimura tba = &kn03_tc_desc[0]; break;
111 1.1 nisimura #endif
112 1.1 nisimura default:
113 1.3 nisimura panic("tcbus_attach: no TURBOchannel configured for systype = %d", systype);
114 1.1 nisimura }
115 1.1 nisimura
116 1.1 nisimura tba->tba_busname = "tc";
117 1.1 nisimura tba->tba_memt = 0;
118 1.11 cgd tba->tba_intr_evcnt = tc_ds_intr_evcnt;
119 1.1 nisimura tba->tba_intr_establish = tc_ds_intr_establish;
120 1.1 nisimura tba->tba_intr_disestablish = tc_ds_intr_disestablish;
121 1.1 nisimura tba->tba_get_dma_tag = tc_ds_get_dma_tag;
122 1.1 nisimura
123 1.1 nisimura tcattach(parent, self, tba);
124 1.11 cgd }
125 1.11 cgd
126 1.11 cgd /*
127 1.11 cgd * Dispatch to model specific interrupt line evcnt fetch rontine
128 1.11 cgd */
129 1.12 nisimura static const struct evcnt *
130 1.23 dsl tc_ds_intr_evcnt(struct device *dev, void *cookie)
131 1.11 cgd {
132 1.11 cgd
133 1.11 cgd /* XXX for now, no evcnt parent reported */
134 1.11 cgd return NULL;
135 1.1 nisimura }
136 1.1 nisimura
137 1.1 nisimura /*
138 1.10 nisimura * Dispatch to model specific interrupt establishing routine
139 1.1 nisimura */
140 1.5 simonb static void
141 1.1 nisimura tc_ds_intr_establish(dev, cookie, level, handler, val)
142 1.1 nisimura struct device *dev;
143 1.1 nisimura void *cookie;
144 1.1 nisimura int level;
145 1.22 dsl int (*handler)(void *);
146 1.1 nisimura void *val;
147 1.1 nisimura {
148 1.10 nisimura
149 1.13 tsutsui (*platform.intr_establish)(dev, cookie, level, handler, val);
150 1.1 nisimura }
151 1.1 nisimura
152 1.5 simonb static void
153 1.23 dsl tc_ds_intr_disestablish(struct device *dev, void *arg)
154 1.1 nisimura {
155 1.10 nisimura
156 1.13 tsutsui printf("cannot disestablish TC interrupts\n");
157 1.10 nisimura }
158 1.10 nisimura
159 1.10 nisimura /*
160 1.10 nisimura * Return the DMA tag for use by the specified TURBOchannel slot.
161 1.10 nisimura */
162 1.10 nisimura static bus_dma_tag_t
163 1.23 dsl tc_ds_get_dma_tag(int slot)
164 1.10 nisimura {
165 1.10 nisimura /*
166 1.10 nisimura * All DECstations use the default DMA tag.
167 1.10 nisimura */
168 1.10 nisimura return (&pmax_default_bus_dma_tag);
169 1.1 nisimura }
170 1.1 nisimura
171 1.17 ad #include "wsdisplay.h"
172 1.17 ad
173 1.17 ad #if NWSDISPLAY > 0
174 1.17 ad
175 1.17 ad #include "sfb.h"
176 1.17 ad /* #include "sfbp.h" */
177 1.17 ad #include "cfb.h"
178 1.17 ad #include "mfb.h"
179 1.17 ad #include "tfb.h"
180 1.17 ad #include "xcfb.h"
181 1.17 ad #include "px.h"
182 1.17 ad #include "pxg.h"
183 1.17 ad
184 1.17 ad #include <pmax/pmax/cons.h>
185 1.17 ad #include <machine/dec_prom.h>
186 1.17 ad
187 1.22 dsl int tc_checkslot(tc_addr_t, char *);
188 1.17 ad
189 1.17 ad struct cnboards {
190 1.17 ad const char *cb_tcname;
191 1.17 ad void (*cb_cnattach)(tc_addr_t);
192 1.17 ad } static const cnboards[] = {
193 1.17 ad #if NXCFB > 0
194 1.17 ad { "PMAG-DV ", xcfb_cnattach },
195 1.17 ad #endif
196 1.17 ad #if NSFB > 0
197 1.17 ad { "PMAGB-BA", sfb_cnattach },
198 1.17 ad #endif
199 1.17 ad #if NSFBP > 0
200 1.17 ad { "PMAGD ", sfbp_cnattach },
201 1.17 ad #endif
202 1.17 ad #if NCFB > 0
203 1.17 ad { "PMAG-BA ", cfb_cnattach },
204 1.17 ad #endif
205 1.17 ad #if NMFB > 0
206 1.17 ad { "PMAG-AA ", mfb_cnattach },
207 1.17 ad #endif
208 1.17 ad #if NTFB > 0
209 1.17 ad { "PMAG-JA ", tfb_cnattach },
210 1.17 ad #endif
211 1.17 ad #if NPX > 0
212 1.17 ad { "PMAG-CA ", px_cnattach },
213 1.17 ad #endif
214 1.17 ad #if NPXG > 0
215 1.17 ad { "PMAG-DA ", pxg_cnattach },
216 1.17 ad { "PMAG-FA ", pxg_cnattach },
217 1.17 ad { "PMAG-FB ", pxg_cnattach },
218 1.17 ad { "PMAGB-FA", pxg_cnattach },
219 1.17 ad { "PMAGB-FB", pxg_cnattach },
220 1.17 ad #endif
221 1.17 ad };
222 1.17 ad
223 1.17 ad int
224 1.23 dsl tcfb_cnattach(int slotno)
225 1.17 ad {
226 1.17 ad paddr_t tcaddr;
227 1.17 ad char tcname[TC_ROM_LLEN];
228 1.17 ad int i;
229 1.17 ad
230 1.17 ad tcaddr = (*callv->_slot_address)(slotno);
231 1.17 ad if (tc_badaddr(tcaddr) || tc_checkslot(tcaddr, tcname) == 0)
232 1.17 ad panic("TC console designated by PROM does not exist!?");
233 1.17 ad
234 1.17 ad for (i = 0; i < sizeof(cnboards) / sizeof(cnboards[0]); i++)
235 1.17 ad if (strncmp(tcname, cnboards[i].cb_tcname, TC_ROM_LLEN) == 0)
236 1.17 ad break;
237 1.17 ad
238 1.17 ad if (i == sizeof(cnboards) / sizeof(cnboards[0]))
239 1.17 ad return (0);
240 1.17 ad
241 1.20 ad (cnboards[i].cb_cnattach)((tc_addr_t)TC_PHYS_TO_UNCACHED(tcaddr));
242 1.17 ad return (1);
243 1.17 ad }
244 1.17 ad
245 1.17 ad #endif /* NWSDISPLAY */
246