i80312_mainbus.c revision 1.3.4.3 1 1.3.4.3 nathanw /* $NetBSD: i80312_mainbus.c,v 1.3.4.3 2002/10/18 02:36:30 nathanw Exp $ */
2 1.3.4.2 nathanw
3 1.3.4.2 nathanw /*
4 1.3.4.2 nathanw * Copyright (c) 2001, 2002 Wasabi Systems, Inc.
5 1.3.4.2 nathanw * All rights reserved.
6 1.3.4.2 nathanw *
7 1.3.4.2 nathanw * Written by Jason R. Thorpe for Wasabi Systems, Inc.
8 1.3.4.2 nathanw *
9 1.3.4.2 nathanw * Redistribution and use in source and binary forms, with or without
10 1.3.4.2 nathanw * modification, are permitted provided that the following conditions
11 1.3.4.2 nathanw * are met:
12 1.3.4.2 nathanw * 1. Redistributions of source code must retain the above copyright
13 1.3.4.2 nathanw * notice, this list of conditions and the following disclaimer.
14 1.3.4.2 nathanw * 2. Redistributions in binary form must reproduce the above copyright
15 1.3.4.2 nathanw * notice, this list of conditions and the following disclaimer in the
16 1.3.4.2 nathanw * documentation and/or other materials provided with the distribution.
17 1.3.4.2 nathanw * 3. All advertising materials mentioning features or use of this software
18 1.3.4.2 nathanw * must display the following acknowledgement:
19 1.3.4.2 nathanw * This product includes software developed for the NetBSD Project by
20 1.3.4.2 nathanw * Wasabi Systems, Inc.
21 1.3.4.2 nathanw * 4. The name of Wasabi Systems, Inc. may not be used to endorse
22 1.3.4.2 nathanw * or promote products derived from this software without specific prior
23 1.3.4.2 nathanw * written permission.
24 1.3.4.2 nathanw *
25 1.3.4.2 nathanw * THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND
26 1.3.4.2 nathanw * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
27 1.3.4.2 nathanw * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
28 1.3.4.2 nathanw * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL WASABI SYSTEMS, INC
29 1.3.4.2 nathanw * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 1.3.4.2 nathanw * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 1.3.4.2 nathanw * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 1.3.4.2 nathanw * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 1.3.4.2 nathanw * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 1.3.4.2 nathanw * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35 1.3.4.2 nathanw * POSSIBILITY OF SUCH DAMAGE.
36 1.3.4.2 nathanw */
37 1.3.4.2 nathanw
38 1.3.4.2 nathanw /*
39 1.3.4.2 nathanw * IQ80310 front-end for the i80312 Companion I/O chip. We take care
40 1.3.4.2 nathanw * of setting up the i80312 memory map, PCI interrupt routing, etc.,
41 1.3.4.2 nathanw * which are all specific to the board the i80312 is wired up to.
42 1.3.4.2 nathanw */
43 1.3.4.2 nathanw
44 1.3.4.2 nathanw #include <sys/param.h>
45 1.3.4.2 nathanw #include <sys/systm.h>
46 1.3.4.2 nathanw #include <sys/device.h>
47 1.3.4.2 nathanw
48 1.3.4.2 nathanw #include <machine/autoconf.h>
49 1.3.4.2 nathanw #include <machine/bus.h>
50 1.3.4.2 nathanw
51 1.3.4.2 nathanw #include <evbarm/iq80310/iq80310reg.h>
52 1.3.4.2 nathanw #include <evbarm/iq80310/iq80310var.h>
53 1.3.4.2 nathanw
54 1.3.4.2 nathanw #include <arm/xscale/i80312reg.h>
55 1.3.4.2 nathanw #include <arm/xscale/i80312var.h>
56 1.3.4.2 nathanw
57 1.3.4.2 nathanw #include <dev/pci/pcireg.h>
58 1.3.4.2 nathanw #include <dev/pci/pcidevs.h>
59 1.3.4.2 nathanw
60 1.3.4.2 nathanw int i80312_mainbus_match(struct device *, struct cfdata *, void *);
61 1.3.4.2 nathanw void i80312_mainbus_attach(struct device *, struct device *, void *);
62 1.3.4.2 nathanw
63 1.3.4.3 nathanw CFATTACH_DECL(iopxs_mainbus, sizeof(struct i80312_softc),
64 1.3.4.3 nathanw i80312_mainbus_match, i80312_mainbus_attach, NULL, NULL);
65 1.3.4.2 nathanw
66 1.3.4.2 nathanw /* There can be only one. */
67 1.3.4.2 nathanw int i80312_mainbus_found;
68 1.3.4.2 nathanw
69 1.3.4.2 nathanw int
70 1.3.4.2 nathanw i80312_mainbus_match(struct device *parent, struct cfdata *cf, void *aux)
71 1.3.4.2 nathanw {
72 1.3.4.2 nathanw #if 0
73 1.3.4.2 nathanw struct mainbus_attach_args *ma = aux;
74 1.3.4.2 nathanw #endif
75 1.3.4.2 nathanw
76 1.3.4.2 nathanw if (i80312_mainbus_found)
77 1.3.4.2 nathanw return (0);
78 1.3.4.2 nathanw
79 1.3.4.2 nathanw #if 1
80 1.3.4.2 nathanw /* XXX Shoot arch/arm/mainbus in the head. */
81 1.3.4.2 nathanw return (1);
82 1.3.4.2 nathanw #else
83 1.3.4.3 nathanw if (strcmp(cf->cf_name, ma->ma_name) == 0)
84 1.3.4.2 nathanw return (1);
85 1.3.4.2 nathanw
86 1.3.4.2 nathanw return (0);
87 1.3.4.2 nathanw #endif
88 1.3.4.2 nathanw }
89 1.3.4.2 nathanw
90 1.3.4.2 nathanw void
91 1.3.4.2 nathanw i80312_mainbus_attach(struct device *parent, struct device *self, void *aux)
92 1.3.4.2 nathanw {
93 1.3.4.2 nathanw struct i80312_softc *sc = (void *) self;
94 1.3.4.2 nathanw paddr_t memstart;
95 1.3.4.2 nathanw psize_t memsize;
96 1.3.4.2 nathanw
97 1.3.4.2 nathanw i80312_mainbus_found = 1;
98 1.3.4.2 nathanw
99 1.3.4.2 nathanw /*
100 1.3.4.2 nathanw * Fill in the space tag for the i80312's own devices,
101 1.3.4.2 nathanw * and hand-craft the space handle for it (the device
102 1.3.4.2 nathanw * was mapped during early bootstrap).
103 1.3.4.2 nathanw */
104 1.3.4.2 nathanw i80312_bs_init(&i80312_bs_tag, sc);
105 1.3.4.2 nathanw sc->sc_st = &i80312_bs_tag;
106 1.3.4.2 nathanw sc->sc_sh = IQ80310_80312_VBASE;
107 1.3.4.2 nathanw
108 1.3.4.2 nathanw /*
109 1.3.4.2 nathanw * Slice off a subregion for the Memory Controller -- we need it
110 1.3.4.2 nathanw * here in order read the memory size.
111 1.3.4.2 nathanw */
112 1.3.4.2 nathanw if (bus_space_subregion(sc->sc_st, sc->sc_sh, I80312_MEM_BASE,
113 1.3.4.2 nathanw I80312_MEM_SIZE, &sc->sc_mem_sh))
114 1.3.4.3 nathanw panic("%s: unable to subregion MEM registers",
115 1.3.4.2 nathanw sc->sc_dev.dv_xname);
116 1.3.4.2 nathanw
117 1.3.4.2 nathanw /*
118 1.3.4.2 nathanw * We have mapped the the PCI I/O windows in the early
119 1.3.4.2 nathanw * bootstrap phase.
120 1.3.4.2 nathanw */
121 1.3.4.2 nathanw sc->sc_piow_vaddr = IQ80310_PIOW_VBASE;
122 1.3.4.2 nathanw sc->sc_siow_vaddr = IQ80310_SIOW_VBASE;
123 1.3.4.2 nathanw
124 1.3.4.2 nathanw /* Some boards are always considered "host". */
125 1.3.4.2 nathanw #if defined(IOP310_TEAMASA_NPWR)
126 1.3.4.2 nathanw sc->sc_is_host = 1;
127 1.3.4.2 nathanw #else /* Default to stock IQ80310 */
128 1.3.4.2 nathanw sc->sc_is_host = CPLD_READ(IQ80310_BACKPLANE_DET) & 1;
129 1.3.4.2 nathanw
130 1.3.4.2 nathanw /*
131 1.3.4.2 nathanw * Set the subsystem vendor/device IDs to "Cyclone" "PCI-700",
132 1.3.4.2 nathanw * which is the board-specific identification.
133 1.3.4.2 nathanw */
134 1.3.4.2 nathanw bus_space_write_4(sc->sc_st, sc->sc_sh,
135 1.3.4.2 nathanw I80312_ATU_BASE + PCI_SUBSYS_ID_REG,
136 1.3.4.2 nathanw PCI_ID_CODE(PCI_VENDOR_CYCLONE, PCI_PRODUCT_CYCLONE_PCI_700));
137 1.3.4.2 nathanw #endif
138 1.3.4.2 nathanw
139 1.3.4.2 nathanw printf(": i80312 Companion I/O, acting as PCI %s\n",
140 1.3.4.2 nathanw sc->sc_is_host ? "host" : "slave");
141 1.3.4.2 nathanw
142 1.3.4.2 nathanw i80312_sdram_bounds(sc->sc_st, sc->sc_mem_sh, &memstart, &memsize);
143 1.3.4.2 nathanw
144 1.3.4.2 nathanw /*
145 1.3.4.2 nathanw * Set the Primary Inbound window xlate base to the start
146 1.3.4.2 nathanw * of RAM. Set the size to 4K, for now. Just for testing
147 1.3.4.2 nathanw * in a host. This obviously has to be customized for each
148 1.3.4.2 nathanw * IQ310 application.
149 1.3.4.2 nathanw *
150 1.3.4.2 nathanw * Note the first 4K of the window is reserved for the
151 1.3.4.2 nathanw * messaging unit, so no RAM is going to be accessed here.
152 1.3.4.2 nathanw *
153 1.3.4.2 nathanw * ..unless we're a host -- in which case, make it work like
154 1.3.4.2 nathanw * the Secondary Inbound window (below).
155 1.3.4.2 nathanw */
156 1.3.4.2 nathanw if (sc->sc_is_host) {
157 1.3.4.2 nathanw sc->sc_pin_base = memstart;
158 1.3.4.2 nathanw sc->sc_pin_xlate = memstart;
159 1.3.4.2 nathanw sc->sc_pin_size = memsize;
160 1.3.4.2 nathanw } else {
161 1.3.4.2 nathanw sc->sc_pin_xlate = memstart;
162 1.3.4.2 nathanw sc->sc_pin_size = 4096;
163 1.3.4.2 nathanw }
164 1.3.4.2 nathanw
165 1.3.4.2 nathanw /*
166 1.3.4.2 nathanw * Map the Secondary Inbound window 1:1 with local RAM.
167 1.3.4.2 nathanw */
168 1.3.4.2 nathanw sc->sc_sin_base = memstart;
169 1.3.4.2 nathanw sc->sc_sin_xlate = memstart;
170 1.3.4.2 nathanw sc->sc_sin_size = memsize;
171 1.3.4.2 nathanw
172 1.3.4.2 nathanw /*
173 1.3.4.2 nathanw * XXX Don't use the Primary Outbound windows, for now.
174 1.3.4.2 nathanw */
175 1.3.4.2 nathanw sc->sc_pmemout_size = 0;
176 1.3.4.2 nathanw sc->sc_pioout_size = 0;
177 1.3.4.2 nathanw
178 1.3.4.2 nathanw /*
179 1.3.4.2 nathanw * Set the Secondary Outbound Memory window to map 1:1
180 1.3.4.2 nathanw * PCI:Local.
181 1.3.4.2 nathanw */
182 1.3.4.2 nathanw sc->sc_smemout_base = I80312_PCI_XLATE_SMW_BASE;
183 1.3.4.2 nathanw sc->sc_smemout_size = I80312_PCI_XLATE_MSIZE;
184 1.3.4.2 nathanw
185 1.3.4.2 nathanw /*
186 1.3.4.2 nathanw * Set the Secondary Outbound I/O window to map
187 1.3.4.2 nathanw * to PCI address 0 for all 64K of the I/O space.
188 1.3.4.2 nathanw */
189 1.3.4.2 nathanw sc->sc_sioout_base = 0;
190 1.3.4.2 nathanw sc->sc_sioout_size = I80312_PCI_XLATE_IOSIZE;
191 1.3.4.2 nathanw
192 1.3.4.2 nathanw /*
193 1.3.4.2 nathanw * XXX For now, suppress all secondary IDSELs (thus making all
194 1.3.4.2 nathanw * devices from S_AD[11]..S_AD[25] private).
195 1.3.4.2 nathanw */
196 1.3.4.2 nathanw sc->sc_sisr = 0x3ff;
197 1.3.4.2 nathanw
198 1.3.4.2 nathanw /*
199 1.3.4.2 nathanw * XXX For now, make the entire Secondary Outbound address
200 1.3.4.2 nathanw * spaces private.
201 1.3.4.2 nathanw */
202 1.3.4.2 nathanw sc->sc_privio_base = sc->sc_sioout_base;
203 1.3.4.2 nathanw sc->sc_privio_size = sc->sc_sioout_size;
204 1.3.4.2 nathanw sc->sc_privmem_base = sc->sc_smemout_base;
205 1.3.4.2 nathanw sc->sc_privmem_size = sc->sc_smemout_size;
206 1.3.4.2 nathanw
207 1.3.4.2 nathanw /*
208 1.3.4.2 nathanw * Initialize the interrupt part of our PCI chipset tag.
209 1.3.4.2 nathanw */
210 1.3.4.2 nathanw iq80310_pci_init(&sc->sc_pci_chipset, sc);
211 1.3.4.2 nathanw
212 1.3.4.2 nathanw i80312_attach(sc);
213 1.3.4.2 nathanw }
214