xref: /netbsd/sys/arch/arm/xscale/i80312var.h (revision bf9ec67e)
1 /*	$NetBSD: i80312var.h,v 1.5 2001/11/29 08:27:11 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 	bus_space_handle_t sc_mem_sh;
63 	bus_space_handle_t sc_intc_sh;
64 
65 	/*
66 	 * Secondary IDSEL Select bits for providing a private
67 	 * PCI device space.
68 	 */
69 	uint16_t sc_sisr;
70 
71 	/*
72 	 * We expect the board-specific front-end to have already mapped
73 	 * the PCI I/O spaces .. they're only 64K each, and I/O mappings
74 	 * tend to be smaller than a page size, so it's generally more
75 	 * efficient to map them all into virtual space in one fell swoop.
76 	 */
77 	vaddr_t	sc_piow_vaddr;		/* primary I/O window vaddr */
78 	vaddr_t sc_siow_vaddr;		/* secondary I/O window vaddr */
79 
80 	/*
81 	 * Variables that define the Primary Inbound window.  The base
82 	 * address is configured by a host via BAR #0.  The xlate variable
83 	 * defines the start of the local address space that it maps to.
84 	 * The size variable defines the byte size.
85 	 *
86 	 * This window is used for incoming PCI memory read/write cycles
87 	 * from a host.
88 	 *
89 	 * ...unless we're a host, in which case we make the Primary
90 	 * Inbound window work like the Secondary Inbound window, so
91 	 * that PCI devices on that bus can talk to our local RAM.
92 	 */
93 	uint32_t sc_pin_base;
94 	uint32_t sc_pin_xlate;
95 	uint32_t sc_pin_size;
96 
97 	/*
98 	 * Variables that define the Secondary Inbound window.  The
99 	 * base variable indicates the PCI base address of the window.
100 	 * The xlate variable defines the start of the local address
101 	 * space that it maps to.  The size variable defines the byte
102 	 * size.
103 	 *
104 	 * This window is used for DMA with devices on the secondary bus.
105 	 */
106 	uint32_t sc_sin_base;
107 	uint32_t sc_sin_xlate;
108 	uint32_t sc_sin_size;
109 
110 	/*
111 	 * This is the PCI address that the Primary Outbound Memory
112 	 * window maps to.
113 	 */
114 	uint32_t sc_pmemout_base;
115 	uint32_t sc_pmemout_size;
116 
117 	/*
118 	 * This is the PCI address that the Primary Outbound I/O
119 	 * window maps to.
120 	 */
121 	uint32_t sc_pioout_base;
122 	uint32_t sc_pioout_size;
123 
124 	/*
125 	 * This is the PCI address that the Secondary Outbound Memory
126 	 * window maps to.
127 	 */
128 	uint32_t sc_smemout_base;
129 	uint32_t sc_smemout_size;
130 
131 	/*
132 	 * This is the PCI address that the Secondary Outbound I/O
133 	 * window maps to.
134 	 */
135 	uint32_t sc_sioout_base;
136 	uint32_t sc_sioout_size;
137 
138 	/*
139 	 * This defines the private I/O and Memory spaces on the
140 	 * Secondary bus.
141 	 */
142 	uint32_t sc_privio_base;
143 	uint32_t sc_privio_size;
144 	uint32_t sc_privmem_base;
145 	uint32_t sc_privmem_size;
146 
147 	uint8_t sc_sder;	/* secondary decode enable register */
148 
149 	/* Bus space, DMA, and PCI tags for the PCI bus (private devices). */
150 	struct bus_space sc_pci_iot;
151 	struct bus_space sc_pci_memt;
152 	struct arm32_bus_dma_tag sc_pci_dmat;
153 	struct arm32_pci_chipset sc_pci_chipset;
154 
155 	/* GPIO state */
156 	uint8_t sc_gpio_dir;	/* GPIO pin direction (1 == output) */
157 	uint8_t sc_gpio_val;	/* GPIO output pin value */
158 };
159 
160 extern struct bus_space i80312_bs_tag;
161 extern struct i80312_softc *i80312_softc;
162 
163 void	i80312_sdram_bounds(bus_space_tag_t, bus_space_handle_t,
164 	    paddr_t *, psize_t *);
165 
166 void	i80312_attach(struct i80312_softc *);
167 
168 void	i80312_bs_init(bus_space_tag_t, void *);
169 void	i80312_io_bs_init(bus_space_tag_t, void *);
170 void	i80312_mem_bs_init(bus_space_tag_t, void *);
171 
172 void	i80312_gpio_set_direction(uint8_t, uint8_t);
173 void	i80312_gpio_set_val(uint8_t, uint8_t);
174 uint8_t	i80312_gpio_get_val(void);
175 
176 void	i80312_pci_dma_init(bus_dma_tag_t, void *);
177 
178 void	i80312_pci_init(pci_chipset_tag_t, void *);
179 
180 #endif /* _ARM_XSCALE_I80312VAR_H_ */
181