cgsixreg.h revision 1.4.24.3 1 1.4.24.3 skrll /* $NetBSD: cgsixreg.h,v 1.4.24.3 2004/09/21 13:33:26 skrll Exp $ */
2 1.1 pk
3 1.1 pk /*
4 1.1 pk * Copyright (c) 1993
5 1.1 pk * The Regents of the University of California. All rights reserved.
6 1.1 pk *
7 1.1 pk * This software was developed by the Computer Systems Engineering group
8 1.1 pk * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
9 1.1 pk * contributed to Berkeley.
10 1.1 pk *
11 1.1 pk * All advertising materials mentioning features or use of this software
12 1.1 pk * must display the following acknowledgement:
13 1.1 pk * This product includes software developed by the University of
14 1.1 pk * California, Lawrence Berkeley Laboratory.
15 1.1 pk *
16 1.1 pk * Redistribution and use in source and binary forms, with or without
17 1.1 pk * modification, are permitted provided that the following conditions
18 1.1 pk * are met:
19 1.1 pk * 1. Redistributions of source code must retain the above copyright
20 1.1 pk * notice, this list of conditions and the following disclaimer.
21 1.1 pk * 2. Redistributions in binary form must reproduce the above copyright
22 1.1 pk * notice, this list of conditions and the following disclaimer in the
23 1.1 pk * documentation and/or other materials provided with the distribution.
24 1.4.24.1 skrll * 3. Neither the name of the University nor the names of its contributors
25 1.1 pk * may be used to endorse or promote products derived from this software
26 1.1 pk * without specific prior written permission.
27 1.1 pk *
28 1.1 pk * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
29 1.1 pk * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
30 1.1 pk * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
31 1.1 pk * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
32 1.1 pk * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
33 1.1 pk * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
34 1.1 pk * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
35 1.1 pk * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
36 1.1 pk * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
37 1.1 pk * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38 1.1 pk * SUCH DAMAGE.
39 1.1 pk *
40 1.1 pk * @(#)cgsixreg.h 8.4 (Berkeley) 1/21/94
41 1.1 pk */
42 1.1 pk
43 1.1 pk /*
44 1.1 pk * CG6 display registers. (Note, I got tired of writing `cgsix' about
45 1.1 pk * halfway through and changed everything to cg6, but I probably missed
46 1.1 pk * some. Unfortunately, the way config works, we need to spell out `six'
47 1.1 pk * in some places anyway.)
48 1.1 pk *
49 1.1 pk * The cg6 is a complicated beastie. We have been unable to extract any
50 1.1 pk * documentation and most of the following are guesses based on a limited
51 1.1 pk * amount of reverse engineering.
52 1.1 pk *
53 1.1 pk * A cg6 is composed of numerous groups of control registers, all with TLAs:
54 1.1 pk * FBC - frame buffer control?
55 1.1 pk * FHC - fbc hardware configuration / control? register (32 bits)
56 1.1 pk * DHC - ???
57 1.1 pk * TEC - transform engine control?
58 1.1 pk * THC - TEC Hardware Configuration
59 1.1 pk * ROM - a 64Kbyte ROM with who knows what in it.
60 1.1 pk * colormap - see below
61 1.1 pk * frame buffer memory (video RAM)
62 1.1 pk * possible other stuff
63 1.1 pk *
64 1.1 pk * Like the cg3, the cg6 uses a Brooktree Video DAC (see btreg.h).
65 1.1 pk *
66 1.1 pk * Various revisions of the cgsix have various hardware bugs. So far,
67 1.1 pk * we have only seen rev 1 & 2.
68 1.1 pk */
69 1.1 pk
70 1.1 pk /* Control register banks offsets */
71 1.1 pk #define CGSIX_ROM_OFFSET 0x000000
72 1.1 pk #define CGSIX_BT_OFFSET 0x200000
73 1.1 pk #define CGSIX_DHC_OFFSET 0x240000
74 1.1 pk #define CGSIX_ALT_OFFSET 0x280000
75 1.1 pk #define CGSIX_FHC_OFFSET 0x300000
76 1.1 pk #define CGSIX_THC_OFFSET 0x301000
77 1.1 pk #define CGSIX_FBC_OFFSET 0x700000
78 1.1 pk #define CGSIX_TEC_OFFSET 0x701000
79 1.1 pk #define CGSIX_RAM_OFFSET 0x800000
80 1.1 pk
81 1.1 pk /* bits in FHC register */
82 1.1 pk #define FHC_FBID_MASK 0xff000000 /* bits 24..31 are frame buffer ID */
83 1.1 pk #define FHC_FBID_SHIFT 24
84 1.1 pk #define FHC_REV_MASK 0x00f00000 /* bits 20..23 are revision */
85 1.1 pk #define FHC_REV_SHIFT 20
86 1.1 pk #define FHC_FROP_DISABLE 0x00080000 /* disable fast/font? rasterops */
87 1.1 pk #define FHC_ROW_DISABLE 0x00040000 /* ??? */
88 1.1 pk #define FHC_SRC_DISABLE 0x00020000 /* ??? */
89 1.1 pk #define FHC_DST_DISABLE 0x00010000 /* disable destination cache */
90 1.1 pk #define FHC_RESET 0x00008000 /* ??? */
91 1.1 pk #define FHC_XXX0 0x00004000 /* ??? */
92 1.1 pk #define FHC_LEBO 0x00002000 /* set little endian byte order? */
93 1.1 pk #define FHC_RES_MASK 0x00001800 /* bits 11&12 are resolution */
94 1.1 pk #define FHC_RES_1024 0x00000000 /* res = 1024x768 */
95 1.1 pk #define FHC_RES_1152 0x00000800 /* res = 1152x900 */
96 1.1 pk #define FHC_RES_1280 0x00001000 /* res = 1280x1024 */
97 1.1 pk #define FHC_RES_1600 0x00001800 /* res = 1600x1200 */
98 1.1 pk #define FHC_CPU_MASK 0x00000600 /* bits 9&10 are cpu type */
99 1.1 pk #define FHC_CPU_SPARC 0x00000000 /* cpu = sparc */
100 1.1 pk #define FHC_CPU_68020 0x00000200 /* cpu = 68020 */
101 1.1 pk #define FHC_CPU_386 0x00000400 /* cpu = 80386 */
102 1.1 pk #define FHC_CPU_XXX 0x00000600 /* ??? */
103 1.1 pk #define FHC_TEST 0x00000100 /* ??? test window ??? */
104 1.1 pk #define FHC_TESTX_MASK 0x000000f0 /* bits 4..7 are test window X */
105 1.1 pk #define FHC_TESTX_SHIFT 4
106 1.1 pk #define FHC_TESTY_MASK 0x0000000f /* bits 0..3 are test window Y */
107 1.1 pk #define FHC_TESTY_SHIFT 0
108 1.1 pk
109 1.1 pk /*
110 1.1 pk * The layout of the THC.
111 1.1 pk */
112 1.1 pk struct cg6_thc {
113 1.1 pk u_int32_t thc_xxx0[512]; /* ??? */
114 1.1 pk u_int32_t thc_hsync1; /* horizontal sync timing */
115 1.1 pk u_int32_t thc_hsync2; /* more hsync timing */
116 1.1 pk u_int32_t thc_hsync3; /* yet more hsync timing */
117 1.1 pk u_int32_t thc_vsync1; /* vertical sync timing */
118 1.1 pk u_int32_t thc_vsync2; /* only two of these */
119 1.1 pk u_int32_t thc_refresh; /* refresh counter */
120 1.1 pk u_int32_t thc_misc; /* miscellaneous control & status */
121 1.1 pk u_int32_t thc_xxx1[56]; /* ??? */
122 1.1 pk u_int32_t thc_cursxy; /* cursor x,y position (16 bits each) */
123 1.1 pk u_int32_t thc_cursmask[32];/* cursor mask bits */
124 1.1 pk u_int32_t thc_cursbits[32];/* what to show where mask enabled */
125 1.1 pk };
126 1.1 pk
127 1.1 pk /* bits in thc_misc */
128 1.1 pk #define THC_MISC_XXX0 0xfff00000 /* unused */
129 1.1 pk #define THC_MISC_REVMASK 0x000f0000 /* cg6 revision? */
130 1.1 pk #define THC_MISC_REVSHIFT 16
131 1.1 pk #define THC_MISC_XXX1 0x0000e000 /* unused */
132 1.1 pk #define THC_MISC_RESET 0x00001000 /* ??? */
133 1.1 pk #define THC_MISC_XXX2 0x00000800 /* unused */
134 1.1 pk #define THC_MISC_VIDEN 0x00000400 /* video enable */
135 1.1 pk #define THC_MISC_SYNC 0x00000200 /* not sure what ... */
136 1.1 pk #define THC_MISC_VSYNC 0x00000100 /* ... these really are */
137 1.1 pk #define THC_MISC_SYNCEN 0x00000080 /* sync enable */
138 1.1 pk #define THC_MISC_CURSRES 0x00000040 /* cursor resolution */
139 1.1 pk #define THC_MISC_INTEN 0x00000020 /* v.retrace intr enable */
140 1.1 pk #define THC_MISC_INTR 0x00000010 /* intr pending / ack bit */
141 1.1 pk #define THC_MISC_XXX 0x0000000f /* ??? */
142 1.1 pk
143 1.1 pk /* cursor x / y position value for `off' */
144 1.1 pk #define THC_CURSOFF (65536-32) /* i.e., USHRT_MAX+1-32 */
145 1.1 pk
146 1.1 pk /*
147 1.1 pk * Partial description of TEC (needed to get around FHC rev 1 bugs).
148 1.1 pk */
149 1.1 pk struct cg6_tec_xxx {
150 1.1 pk u_int32_t tec_mv; /* matrix stuff */
151 1.1 pk u_int32_t tec_clip; /* clipping stuff */
152 1.1 pk u_int32_t tec_vdc; /* ??? */
153 1.1 pk };
154 1.1 pk
155 1.1 pk /*
156 1.1 pk * Partial description of FBC
157 1.1 pk *
158 1.1 pk * Most of this we don't care about; here are only the portions
159 1.1 pk * we need, most notably the blitter. Comments are merely my
160 1.1 pk * best guesses as to register functions, based largely on the
161 1.1 pk * X11R6.4 sunGX code. Some of these are here only so we can
162 1.1 pk * stuff canned values in them (eg, offx).
163 1.1 pk */
164 1.1 pk struct cg6_fbc {
165 1.4 tsutsui u_int32_t fbc_pad1[1];
166 1.3 tsutsui u_int32_t fbc_mode; /* mode setting */
167 1.1 pk u_int32_t fbc_clip; /* function unknown */
168 1.1 pk u_int32_t fbc_pad2[1];
169 1.1 pk u_int32_t fbc_s; /* global status */
170 1.1 pk u_int32_t fbc_draw; /* drawing pipeline status */
171 1.1 pk u_int32_t fbc_blit; /* blitter status */
172 1.1 pk u_int32_t fbc_pad3[25];
173 1.1 pk u_int32_t fbc_x0; /* blitter, src llx */
174 1.1 pk u_int32_t fbc_y0; /* blitter, src lly */
175 1.1 pk u_int32_t fbc_pad4[2];
176 1.1 pk u_int32_t fbc_x1; /* blitter, src urx */
177 1.1 pk u_int32_t fbc_y1; /* blitter, src ury */
178 1.1 pk u_int32_t fbc_pad5[2];
179 1.1 pk u_int32_t fbc_x2; /* blitter, dst llx */
180 1.1 pk u_int32_t fbc_y2; /* blitter, dst lly */
181 1.1 pk u_int32_t fbc_pad6[2];
182 1.1 pk u_int32_t fbc_x3; /* blitter, dst urx */
183 1.1 pk u_int32_t fbc_y3; /* blitter, dst ury */
184 1.1 pk u_int32_t fbc_pad7[2];
185 1.1 pk u_int32_t fbc_offx; /* x offset for drawing */
186 1.1 pk u_int32_t fbc_offy; /* y offset for drawing */
187 1.1 pk u_int32_t fbc_pad8[6];
188 1.1 pk u_int32_t fbc_clipminx; /* clip rectangle llx */
189 1.1 pk u_int32_t fbc_clipminy; /* clip rectangle lly */
190 1.1 pk u_int32_t fbc_pad9[2];
191 1.1 pk u_int32_t fbc_clipmaxx; /* clip rectangle urx */
192 1.1 pk u_int32_t fbc_clipmaxy; /* clip rectangle ury */
193 1.1 pk u_int32_t fbc_pad10[2];
194 1.1 pk u_int32_t fbc_fg; /* fg value for rop */
195 1.1 pk u_int32_t fbc_pad11[1];
196 1.1 pk u_int32_t fbc_alu; /* operation to be performed */
197 1.1 pk u_int32_t fbc_pad12[509];
198 1.1 pk u_int32_t fbc_arectx; /* rectangle drawing, x coord */
199 1.1 pk u_int32_t fbc_arecty; /* rectangle drawing, y coord */
200 1.1 pk /* actually much more, but nothing more we need */
201 1.1 pk };
202 1.1 pk
203 1.1 pk #if _CG6_LAYOUT_NOT_USED_ANYMORE
204 1.1 pk /*
205 1.1 pk * This structure exists only to compute the layout of the CG6
206 1.1 pk * hardware. Each of the individual substructures lives on a
207 1.1 pk * separate `page' (where a `page' is at least 4K), and many are
208 1.1 pk * very far apart. We avoid large offsets (which make for lousy
209 1.1 pk * code) by using pointers to the individual interesting pieces,
210 1.1 pk * and map them in independently (to avoid using up PTEs unnecessarily).
211 1.1 pk */
212 1.1 pk struct cg6_layout {
213 1.1 pk /* ROM at 0 */
214 1.1 pk union {
215 1.2 eeh int un_id; /* ID = ?? */
216 1.1 pk char un_rom[65536]; /* 64K rom */
217 1.1 pk char un_pad[0x200000];
218 1.1 pk } cg6_rom_un;
219 1.1 pk
220 1.1 pk /* Brooktree DAC at 0x200000 */
221 1.1 pk union {
222 1.1 pk struct bt_regs un_btregs;
223 1.1 pk char un_pad[0x040000];
224 1.1 pk } cg6_bt_un;
225 1.1 pk
226 1.1 pk /* DHC, whatever that is, at 0x240000 */
227 1.1 pk union {
228 1.1 pk char un_pad[0x40000];
229 1.1 pk } cg6_dhc_un;
230 1.1 pk
231 1.1 pk /* ALT, whatever that is, at 0x280000 */
232 1.1 pk union {
233 1.1 pk char un_pad[0x80000];
234 1.1 pk } cg6_alt_un;
235 1.1 pk
236 1.1 pk /* FHC register at 0x300000 */
237 1.1 pk union {
238 1.1 pk int un_fhc;
239 1.1 pk char un_pad[0x1000];
240 1.1 pk } cg6_fhc_un;
241 1.1 pk
242 1.1 pk /* THC at 0x301000 */
243 1.1 pk union {
244 1.1 pk struct cg6_thc un_thc;
245 1.1 pk char un_pad[0x400000 - 0x1000];
246 1.1 pk } cg6_thc_un;
247 1.1 pk
248 1.1 pk /* FBC at 0x700000 */
249 1.1 pk union {
250 1.1 pk char un_pad[0x1000];
251 1.1 pk } cg6_fbc_un;
252 1.1 pk
253 1.1 pk /* TEC at 0x701000 */
254 1.1 pk union {
255 1.1 pk char un_pad[0x100000 - 0x1000];
256 1.1 pk struct cg6_tec_xxx un_tec;
257 1.1 pk } cg6_tec_un;
258 1.1 pk
259 1.1 pk /* Video RAM at 0x800000 */
260 1.1 pk char cg6_ram[1024 * 1024]; /* approx.? */
261 1.1 pk };
262 1.1 pk #endif
263