i80312var.h revision 1.3 1 /* $NetBSD: i80312var.h,v 1.3 2001/11/09 03:27:52 thorpej Exp $ */
2
3 /*
4 * Copyright (c) 2001 Wasabi Systems, Inc.
5 * All rights reserved.
6 *
7 * Written by Jason R. Thorpe for Wasabi Systems, Inc.
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
11 * are met:
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 * 3. All advertising materials mentioning features or use of this software
18 * must display the following acknowledgement:
19 * This product includes software developed for the NetBSD Project by
20 * Wasabi Systems, Inc.
21 * 4. The name of Wasabi Systems, Inc. may not be used to endorse
22 * or promote products derived from this software without specific prior
23 * written permission.
24 *
25 * THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND
26 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
27 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
28 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL WASABI SYSTEMS, INC
29 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35 * POSSIBILITY OF SUCH DAMAGE.
36 */
37
38 #ifndef _ARM_XSCALE_I80312VAR_H_
39 #define _ARM_XSCALE_I80312VAR_H_
40
41 #include <machine/bus.h>
42
43 #include <dev/pci/pcivar.h>
44
45 struct i80312_softc {
46 struct device sc_dev; /* generic device glue */
47
48 int sc_is_host; /* indicates if we're a host or
49 plugged into another host */
50
51 /*
52 * This is the bus_space and handle used to access the
53 * i80312 itself. This is filled in by the board-specific
54 * front-end.
55 */
56 bus_space_tag_t sc_st;
57 bus_space_handle_t sc_sh;
58
59 /* Handles for the various subregions. */
60 bus_space_handle_t sc_ppb_sh;
61 bus_space_handle_t sc_atu_sh;
62
63 /*
64 * Secondary IDSEL Select bits for providing a private
65 * PCI device space.
66 */
67 uint16_t sc_sisr;
68
69 /*
70 * We expect the board-specific front-end to have already mapped
71 * the PCI I/O spaces .. they're only 64K each, and I/O mappings
72 * tend to be smaller than a page size, so it's generally more
73 * efficient to map them all into virtual space in one fell swoop.
74 */
75 vaddr_t sc_piow_vaddr; /* primary I/O window vaddr */
76 vaddr_t sc_siow_vaddr; /* secondary I/O window vaddr */
77
78 /*
79 * Variables that define the Primary Inbound window. The base
80 * address is configured by a host via BAR #0. The xlate variable
81 * defines the start of the local address space that it maps to.
82 * The size variable defines the byte size.
83 *
84 * This window is used for incoming PCI memory read/write cycles
85 * from a host.
86 *
87 * ...unless we're a host, in which case we make the Primary
88 * Inbound window work like the Secondary Inbound window, so
89 * that PCI devices on that bus can talk to our local RAM.
90 */
91 uint32_t sc_pin_base;
92 uint32_t sc_pin_xlate;
93 uint32_t sc_pin_size;
94
95 /*
96 * Variables that define the Secondary Inbound window. The
97 * base variable indicates the PCI base address of the window.
98 * The xlate variable defines the start of the local address
99 * space that it maps to. The size variable defines the byte
100 * size.
101 *
102 * This window is used for DMA with devices on the secondary bus.
103 */
104 uint32_t sc_sin_base;
105 uint32_t sc_sin_xlate;
106 uint32_t sc_sin_size;
107
108 /*
109 * This is the PCI address that the Primary Outbound Memory
110 * window maps to.
111 */
112 uint32_t sc_pmemout_base;
113 uint32_t sc_pmemout_size;
114
115 /*
116 * This is the PCI address that the Primary Outbound I/O
117 * window maps to.
118 */
119 uint32_t sc_pioout_base;
120 uint32_t sc_pioout_size;
121
122 /*
123 * This is the PCI address that the Secondary Outbound Memory
124 * window maps to.
125 */
126 uint32_t sc_smemout_base;
127 uint32_t sc_smemout_size;
128
129 /*
130 * This is the PCI address that the Secondary Outbound I/O
131 * window maps to.
132 */
133 uint32_t sc_sioout_base;
134 uint32_t sc_sioout_size;
135
136 /*
137 * This defines the private I/O and Memory spaces on the
138 * Secondary bus.
139 */
140 uint32_t sc_privio_base;
141 uint32_t sc_privio_size;
142 uint32_t sc_privmem_base;
143 uint32_t sc_privmem_size;
144
145 uint8_t sc_sder; /* secondary decode enable register */
146
147 /* Bus space, DMA, and PCI tags for the PCI bus (private devices). */
148 struct bus_space sc_pci_iot;
149 struct bus_space sc_pci_memt;
150 struct arm32_bus_dma_tag sc_pci_dmat;
151 struct arm32_pci_chipset sc_pci_chipset;
152 };
153
154 extern struct bus_space i80312_bs_tag;
155
156 void i80312_sdram_bounds(bus_space_tag_t, bus_space_handle_t,
157 paddr_t *, psize_t *);
158
159 void i80312_attach(struct i80312_softc *);
160
161 void i80312_bs_init(bus_space_tag_t, void *);
162 void i80312_io_bs_init(bus_space_tag_t, void *);
163 void i80312_mem_bs_init(bus_space_tag_t, void *);
164
165 void i80312_pci_dma_init(bus_dma_tag_t, void *);
166
167 void i80312_pci_init(pci_chipset_tag_t, void *);
168
169 #endif /* _ARM_XSCALE_I80312VAR_H_ */
170