plumiobus.c revision 1.10 1 1.10 drochner /* $NetBSD: plumiobus.c,v 1.10 2005/06/30 17:03:53 drochner Exp $ */
2 1.1 uch
3 1.4 uch /*-
4 1.4 uch * Copyright (c) 1999, 2000 The NetBSD Foundation, Inc.
5 1.1 uch * All rights reserved.
6 1.1 uch *
7 1.4 uch * This code is derived from software contributed to The NetBSD Foundation
8 1.4 uch * by UCHIYAMA Yasushi.
9 1.4 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.4 uch * 2. Redistributions in binary form must reproduce the above copyright
16 1.4 uch * notice, this list of conditions and the following disclaimer in the
17 1.4 uch * documentation and/or other materials provided with the distribution.
18 1.4 uch * 3. All advertising materials mentioning features or use of this software
19 1.4 uch * must display the following acknowledgement:
20 1.4 uch * This product includes software developed by the NetBSD
21 1.4 uch * Foundation, Inc. and its contributors.
22 1.4 uch * 4. Neither the name of The NetBSD Foundation nor the names of its
23 1.4 uch * contributors may be used to endorse or promote products derived
24 1.4 uch * from this software without specific prior written permission.
25 1.1 uch *
26 1.4 uch * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27 1.4 uch * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28 1.4 uch * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 1.4 uch * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30 1.4 uch * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 1.4 uch * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 1.4 uch * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 1.4 uch * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 1.4 uch * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 1.4 uch * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 1.4 uch * POSSIBILITY OF SUCH DAMAGE.
37 1.1 uch */
38 1.9 lukem
39 1.9 lukem #include <sys/cdefs.h>
40 1.10 drochner __KERNEL_RCSID(0, "$NetBSD: plumiobus.c,v 1.10 2005/06/30 17:03:53 drochner Exp $");
41 1.4 uch
42 1.3 uch #define PLUMIOBUSDEBUG
43 1.1 uch
44 1.1 uch #include <sys/param.h>
45 1.1 uch #include <sys/systm.h>
46 1.1 uch #include <sys/device.h>
47 1.1 uch #include <sys/malloc.h>
48 1.1 uch
49 1.1 uch #include <machine/bus.h>
50 1.1 uch #include <machine/intr.h>
51 1.1 uch
52 1.1 uch #include <hpcmips/tx/tx39var.h>
53 1.1 uch #include <hpcmips/dev/plumvar.h>
54 1.1 uch #include <hpcmips/dev/plumicuvar.h>
55 1.1 uch #include <hpcmips/dev/plumpowervar.h>
56 1.1 uch #include <hpcmips/dev/plumiobusreg.h>
57 1.1 uch #include <hpcmips/dev/plumiobusvar.h>
58 1.1 uch
59 1.1 uch #include "locators.h"
60 1.1 uch
61 1.3 uch #ifdef PLUMIOBUSDEBUG
62 1.3 uch int plumiobus_debug = 0;
63 1.3 uch #define DPRINTF(arg) if (plumiobus_debug) printf arg;
64 1.3 uch #define DPRINTFN(n, arg) if (plumiobus_debug > (n)) printf arg;
65 1.3 uch #else
66 1.3 uch #define DPRINTF(arg)
67 1.3 uch #define DPRINTFN(n, arg)
68 1.3 uch #endif
69 1.3 uch
70 1.4 uch int plumiobus_match(struct device *, struct cfdata *, void *);
71 1.4 uch void plumiobus_attach(struct device *, struct device *, void *);
72 1.4 uch int plumiobus_print(void *, const char *);
73 1.10 drochner int plumiobus_search(struct device *, struct cfdata *,
74 1.10 drochner const locdesc_t *, void *);
75 1.1 uch
76 1.1 uch struct plumisa_resource {
77 1.1 uch int pr_irq;
78 1.1 uch bus_space_tag_t pr_iot;
79 1.1 uch int pr_enabled;
80 1.1 uch };
81 1.1 uch
82 1.1 uch struct plumiobus_softc {
83 1.1 uch struct device sc_dev;
84 1.1 uch plum_chipset_tag_t sc_pc;
85 1.1 uch bus_space_tag_t sc_regt;
86 1.1 uch bus_space_handle_t sc_regh;
87 1.1 uch bus_space_tag_t sc_iot;
88 1.1 uch bus_space_handle_t sc_ioh;
89 1.1 uch struct plumisa_resource sc_isa[PLUM_IOBUS_IO5CSMAX];
90 1.1 uch };
91 1.1 uch
92 1.8 thorpej CFATTACH_DECL(plumiobus, sizeof(struct plumiobus_softc),
93 1.8 thorpej plumiobus_match, plumiobus_attach, NULL, NULL);
94 1.1 uch
95 1.4 uch bus_space_tag_t __plumiobus_subregion(bus_space_tag_t, bus_addr_t,
96 1.4 uch bus_size_t);
97 1.3 uch #ifdef PLUMIOBUSDEBUG
98 1.4 uch void plumiobus_dump(struct plumiobus_softc *);
99 1.3 uch #endif
100 1.1 uch
101 1.1 uch int
102 1.4 uch plumiobus_match(struct device *parent, struct cfdata *cf, void *aux)
103 1.1 uch {
104 1.4 uch
105 1.3 uch return (1);
106 1.1 uch }
107 1.1 uch
108 1.1 uch void
109 1.4 uch plumiobus_attach(struct device *parent, struct device *self, void *aux)
110 1.1 uch {
111 1.1 uch struct plum_attach_args *pa = aux;
112 1.1 uch struct plumiobus_softc *sc = (void*)self;
113 1.1 uch struct plumisa_resource *pr;
114 1.1 uch
115 1.1 uch sc->sc_pc = pa->pa_pc;
116 1.1 uch sc->sc_regt = pa->pa_regt;
117 1.1 uch sc->sc_iot = pa->pa_iot;
118 1.1 uch
119 1.1 uch if (bus_space_map(sc->sc_regt, PLUM_IOBUS_REGBASE,
120 1.4 uch PLUM_IOBUS_REGSIZE, 0, &sc->sc_regh)) {
121 1.1 uch printf(": register map failed.\n");
122 1.1 uch return;
123 1.1 uch }
124 1.1 uch printf("\n");
125 1.2 uch plum_power_establish(sc->sc_pc, PLUM_PWR_IO5);
126 1.2 uch
127 1.1 uch /* Address space <-> IRQ mapping */
128 1.1 uch pr = &sc->sc_isa[IO5CS0];
129 1.1 uch pr->pr_irq = PLUM_INT_EXT5IO0;
130 1.1 uch pr->pr_iot = __plumiobus_subregion(
131 1.1 uch sc->sc_iot,
132 1.1 uch PLUM_IOBUS_IOBASE + PLUM_IOBUS_IO5CS0BASE,
133 1.1 uch PLUM_IOBUS_IO5SIZE);
134 1.1 uch
135 1.1 uch pr = &sc->sc_isa[IO5CS1];
136 1.1 uch pr->pr_irq = PLUM_INT_EXT5IO1;
137 1.1 uch pr->pr_iot = __plumiobus_subregion(
138 1.1 uch sc->sc_iot,
139 1.1 uch PLUM_IOBUS_IOBASE + PLUM_IOBUS_IO5CS1BASE,
140 1.1 uch PLUM_IOBUS_IO5SIZE);
141 1.1 uch
142 1.1 uch pr = &sc->sc_isa[IO5CS2];
143 1.1 uch pr->pr_irq = PLUM_INT_EXT5IO2;
144 1.1 uch pr->pr_iot = __plumiobus_subregion(
145 1.1 uch sc->sc_iot,
146 1.1 uch PLUM_IOBUS_IOBASE + PLUM_IOBUS_IO5CS2BASE,
147 1.1 uch PLUM_IOBUS_IO5SIZE);
148 1.1 uch
149 1.1 uch pr = &sc->sc_isa[IO5CS3];
150 1.1 uch pr->pr_irq = PLUM_INT_EXT5IO3;
151 1.1 uch pr->pr_iot = __plumiobus_subregion(
152 1.1 uch sc->sc_iot,
153 1.1 uch PLUM_IOBUS_IOBASE + PLUM_IOBUS_IO5CS3BASE,
154 1.1 uch PLUM_IOBUS_IO5SIZE);
155 1.1 uch
156 1.1 uch pr = &sc->sc_isa[IO5CS4];
157 1.1 uch pr->pr_irq = PLUM_INT_EXT3IO0; /* XXX */
158 1.1 uch pr->pr_iot = __plumiobus_subregion(
159 1.1 uch sc->sc_iot,
160 1.1 uch PLUM_IOBUS_IOBASE + PLUM_IOBUS_IO5CS4BASE,
161 1.1 uch PLUM_IOBUS_IO5SIZE);
162 1.1 uch
163 1.1 uch
164 1.1 uch pr = &sc->sc_isa[IO5NCS];
165 1.1 uch pr->pr_irq = PLUM_INT_EXT3IO1;
166 1.1 uch pr->pr_iot = __plumiobus_subregion(
167 1.1 uch sc->sc_iot,
168 1.1 uch PLUM_IOBUS_IOBASE + PLUM_IOBUS_IO5CS5BASE,
169 1.1 uch PLUM_IOBUS_IO5SIZE);
170 1.1 uch
171 1.3 uch #ifdef PLUMIOBUSDEBUG
172 1.1 uch plumiobus_dump(sc);
173 1.3 uch #endif
174 1.2 uch
175 1.10 drochner config_search_ia(plumiobus_search, self, "plumiobusif", plumiobus_print);
176 1.1 uch }
177 1.1 uch
178 1.1 uch /* XXX something kludge */
179 1.1 uch bus_space_tag_t
180 1.4 uch __plumiobus_subregion(bus_space_tag_t t, bus_addr_t ofs, bus_size_t size)
181 1.1 uch {
182 1.1 uch struct hpcmips_bus_space *hbs;
183 1.1 uch
184 1.1 uch if (!(hbs = malloc(sizeof(struct hpcmips_bus_space),
185 1.4 uch M_DEVBUF, M_NOWAIT))) {
186 1.1 uch panic ("__plumiobus_subregion: no memory.");
187 1.1 uch }
188 1.1 uch *hbs = *t;
189 1.1 uch hbs->t_base += ofs;
190 1.1 uch hbs->t_size = size;
191 1.1 uch
192 1.3 uch return (hbs);
193 1.1 uch }
194 1.1 uch
195 1.1 uch int
196 1.10 drochner plumiobus_search(struct device *parent, struct cfdata *cf,
197 1.10 drochner const locdesc_t *ldesc, void *aux)
198 1.1 uch {
199 1.1 uch struct plumiobus_softc *sc = (void*)parent;
200 1.1 uch struct plumiobus_attach_args pba;
201 1.1 uch int slot;
202 1.1 uch
203 1.1 uch /* Disallow wildcarded IO5CS slot */
204 1.1 uch if (cf->cf_loc[PLUMIOBUSIFCF_SLOT] == PLUMIOBUSIFCF_SLOT_DEFAULT) {
205 1.1 uch printf("plumiobus_search: wildcarded slot, skipping\n");
206 1.3 uch return (0);
207 1.1 uch }
208 1.1 uch slot = pba.pba_slot = cf->cf_loc[PLUMIOBUSIFCF_SLOT];
209 1.1 uch
210 1.1 uch pba.pba_pc = sc->sc_pc;
211 1.1 uch pba.pba_iot = sc->sc_isa[slot].pr_iot;
212 1.1 uch pba.pba_irq = sc->sc_isa[slot].pr_irq;
213 1.1 uch pba.pba_busname = "plumisab";
214 1.1 uch
215 1.1 uch if (!(sc->sc_isa[slot].pr_enabled) && /* not attached slot */
216 1.6 thorpej config_match(parent, cf, &pba)) {
217 1.1 uch config_attach(parent, cf, &pba, plumiobus_print);
218 1.1 uch sc->sc_isa[slot].pr_enabled = 1;
219 1.1 uch }
220 1.1 uch
221 1.3 uch return (0);
222 1.1 uch }
223 1.1 uch
224 1.1 uch int
225 1.4 uch plumiobus_print(void *aux, const char *pnp)
226 1.1 uch {
227 1.4 uch
228 1.3 uch return (pnp ? QUIET : UNCONF);
229 1.1 uch }
230 1.1 uch
231 1.3 uch #ifdef PLUMIOBUSDEBUG
232 1.1 uch void
233 1.4 uch plumiobus_dump(struct plumiobus_softc *sc)
234 1.1 uch {
235 1.1 uch bus_space_tag_t regt = sc->sc_regt;
236 1.1 uch bus_space_handle_t regh = sc->sc_regh;
237 1.1 uch plumreg_t reg;
238 1.1 uch int i, wait;
239 1.1 uch
240 1.1 uch reg = plum_conf_read(regt, regh, PLUM_IOBUS_IOXBSZ_REG);
241 1.1 uch printf("8bit port:");
242 1.1 uch for (i = 0; i < 6; i++) {
243 1.1 uch if (reg & (1 << i)) {
244 1.1 uch printf(" IO5CS%d", i);
245 1.1 uch }
246 1.1 uch }
247 1.1 uch printf("\n");
248 1.1 uch
249 1.1 uch reg = PLUM_IOBUS_IOXCCNT_MASK &
250 1.4 uch plum_conf_read(regt, regh, PLUM_IOBUS_IOXCCNT_REG);
251 1.1 uch printf(" # of wait to become from the access begining: %d clock\n",
252 1.4 uch reg + 1);
253 1.1 uch reg = plum_conf_read(regt, regh, PLUM_IOBUS_IOXACNT_REG);
254 1.1 uch printf(" # of wait in access clock: ");
255 1.1 uch for (i = 0; i < 5; i++) {
256 1.1 uch wait = (reg >> (i * PLUM_IOBUS_IOXACNT_SHIFT))
257 1.4 uch & PLUM_IOBUS_IOXACNT_MASK;
258 1.1 uch printf("[CS%d:%d] ", i, wait + 1);
259 1.1 uch }
260 1.1 uch printf("\n");
261 1.1 uch
262 1.1 uch reg = PLUM_IOBUS_IOXSCNT_MASK &
263 1.4 uch plum_conf_read(regt, regh, PLUM_IOBUS_IOXSCNT_REG);
264 1.1 uch printf(" # of wait during access by I/O bus : %d clock\n", reg + 1);
265 1.1 uch
266 1.1 uch reg = plum_conf_read(regt, regh, PLUM_IOBUS_IDEMODE_REG);
267 1.1 uch if (reg & PLUM_IOBUS_IDEMODE) {
268 1.1 uch printf("IO5CS3,4 IDE mode\n");
269 1.1 uch }
270 1.1 uch }
271 1.3 uch #endif /* PLUMIOBUSDEBUG */
272