Merge ../torvalds-2.6/
[sfrench/cifs-2.6.git] / drivers / video / i810 / i810.h
1 /*-*- linux-c -*-
2  *  linux/drivers/video/i810.h -- Intel 810 General Definitions/Declarations
3  *
4  *      Copyright (C) 2001 Antonino Daplas<adaplas@pol.net>
5  *      All Rights Reserved      
6  *
7  *
8  *  This file is subject to the terms and conditions of the GNU General Public
9  *  License. See the file COPYING in the main directory of this archive for
10  *  more details.
11  */
12
13 #ifndef __I810_H__
14 #define __I810_H__
15
16 #include <linux/list.h>
17 #include <linux/agp_backend.h>
18 #include <linux/fb.h>
19 #include <linux/i2c.h>
20 #include <linux/i2c-id.h>
21 #include <linux/i2c-algo-bit.h>
22 #include <video/vga.h>
23
24 /* Fence */
25 #define TILEWALK_X            (0 << 12)
26 #define TILEWALK_Y            (1 << 12)
27
28 /* Raster ops */
29 #define COLOR_COPY_ROP        0xF0
30 #define PAT_COPY_ROP          0xCC
31 #define CLEAR_ROP             0x00
32 #define WHITE_ROP             0xFF
33 #define INVERT_ROP            0x55
34 #define XOR_ROP               0x5A
35
36 /* 2D Engine definitions */
37 #define SOLIDPATTERN          0x80000000
38 #define NONSOLID              0x00000000
39 #define BPP8                  (0 << 24)
40 #define BPP16                 (1 << 24)
41 #define BPP24                 (2 << 24)
42
43 #define PIXCONF8              (2 << 16)
44 #define PIXCONF15             (4 << 16)
45 #define PIXCONF16             (5 << 16)
46 #define PIXCONF24             (6 << 16)
47 #define PIXCONF32             (7 << 16)
48
49 #define DYN_COLOR_EN          (1 << 26)
50 #define DYN_COLOR_DIS         (0 << 26)
51 #define INCREMENT             0x00000000
52 #define DECREMENT             (0x01 << 30)
53 #define ARB_ON                0x00000001
54 #define ARB_OFF               0x00000000
55 #define SYNC_FLIP             0x00000000
56 #define ASYNC_FLIP            0x00000040
57 #define OPTYPE_MASK           0xE0000000
58 #define PARSER_MASK           0x001F8000 
59 #define D2_MASK               0x001FC000         /* 2D mask */
60
61 /* Instruction type */
62 /* There are more but pertains to 3D */
63 #define PARSER                0x00000000
64 #define BLIT                  (0x02 << 29)
65 #define RENDER                (0x03 << 29)
66             
67 /* Parser */
68 #define NOP                   0x00               /* No operation, padding */
69 #define BP_INT                (0x01 << 23)         /* Breakpoint interrupt */
70 #define USR_INT               (0x02 << 23)         /* User interrupt */
71 #define WAIT_FOR_EVNT         (0x03 << 23)         /* Wait for event */
72 #define FLUSH                 (0x04 << 23)              
73 #define CONTEXT_SEL           (0x05 << 23)
74 #define REPORT_HEAD           (0x07 << 23)
75 #define ARB_ON_OFF            (0x08 << 23)
76 #define OVERLAY_FLIP          (0x11 << 23)
77 #define LOAD_SCAN_INC         (0x12 << 23)
78 #define LOAD_SCAN_EX          (0x13 << 23)
79 #define FRONT_BUFFER          (0x14 << 23)
80 #define DEST_BUFFER           (0x15 << 23)
81 #define Z_BUFFER              (0x16 << 23)       
82
83 #define STORE_DWORD_IMM       (0x20 << 23)
84 #define STORE_DWORD_IDX       (0x21 << 23)
85 #define BATCH_BUFFER          (0x30 << 23)
86
87 /* Blit */
88 #define SETUP_BLIT                      0x00
89 #define SETUP_MONO_PATTERN_SL_BLT       (0x10 << 22)
90 #define PIXEL_BLT                       (0x20 << 22)
91 #define SCANLINE_BLT                    (0x21 << 22)
92 #define TEXT_BLT                        (0x22 << 22)
93 #define TEXT_IMM_BLT                    (0x30 << 22)
94 #define COLOR_BLT                       (0x40 << 22)
95 #define MONO_PAT_BLIT                   (0x42 << 22)
96 #define SOURCE_COPY_BLIT                (0x43 << 22)
97 #define MONO_SOURCE_COPY_BLIT           (0x44 << 22)
98 #define SOURCE_COPY_IMMEDIATE           (0x60 << 22)
99 #define MONO_SOURCE_COPY_IMMEDIATE      (0x61 << 22)
100
101 #define VERSION_MAJOR            0
102 #define VERSION_MINOR            9
103 #define VERSION_TEENIE           0
104 #define BRANCH_VERSION           ""
105
106
107 /* mvo: intel i815 */
108 #ifndef PCI_DEVICE_ID_INTEL_82815_100
109   #define PCI_DEVICE_ID_INTEL_82815_100           0x1102
110 #endif
111 #ifndef PCI_DEVICE_ID_INTEL_82815_NOAGP
112   #define PCI_DEVICE_ID_INTEL_82815_NOAGP         0x1112
113 #endif
114 #ifndef PCI_DEVICE_ID_INTEL_82815_FULL_CTRL
115   #define PCI_DEVICE_ID_INTEL_82815_FULL_CTRL     0x1130
116 #endif 
117
118 /* General Defines */
119 #define I810_PAGESIZE               4096
120 #define MAX_DMA_SIZE                (1024 * 4096)
121 #define SAREA_SIZE                  4096
122 #define PCI_I810_MISCC              0x72
123 #define MMIO_SIZE                   (512*1024)
124 #define GTT_SIZE                    (16*1024) 
125 #define RINGBUFFER_SIZE             (64*1024)
126 #define CURSOR_SIZE                 4096 
127 #define OFF                         0
128 #define ON                          1
129 #define MAX_KEY                     256
130 #define WAIT_COUNT                  10000000
131 #define IRING_PAD                   8
132 #define FONTDATAMAX                 8192
133 /* Masks (AND ops) and OR's */
134 #define FB_START_MASK               (0x3f << (32 - 6))
135 #define MMIO_ADDR_MASK              (0x1FFF << (32 - 13))
136 #define FREQ_MASK                   0x1EF
137 #define SCR_OFF                     0x20
138 #define DRAM_ON                     0x08            
139 #define DRAM_OFF                    0xE7
140 #define PG_ENABLE_MASK              0x01
141 #define RING_SIZE_MASK              (RINGBUFFER_SIZE - 1);
142
143 /* defines for restoring registers partially */
144 #define ADDR_MAP_MASK               (0x07 << 5)
145 #define DISP_CTRL                   ~0
146 #define PIXCONF_0                   (0x64 << 8)
147 #define PIXCONF_2                   (0xF3 << 24)
148 #define PIXCONF_1                   (0xF0 << 16)
149 #define MN_MASK                     0x3FF03FF
150 #define P_OR                        (0x7 << 4)                    
151 #define DAC_BIT                     (1 << 16)
152 #define INTERLACE_BIT               (1 << 7)
153 #define IER_MASK                    (3 << 13)
154 #define IMR_MASK                    (3 << 13)
155
156 /* Power Management */
157 #define DPMS_MASK                   0xF0000
158 #define POWERON                     0x00000
159 #define STANDBY                     0x20000
160 #define SUSPEND                     0x80000
161 #define POWERDOWN                   0xA0000
162 #define EMR_MASK                    ~0x3F
163 #define FW_BLC_MASK                 ~(0x3F|(7 << 8)|(0x3F << 12)|(7 << 20))
164
165 /* Ringbuffer */
166 #define RBUFFER_START_MASK          0xFFFFF000
167 #define RBUFFER_SIZE_MASK           0x001FF000
168 #define RBUFFER_HEAD_MASK           0x001FFFFC
169 #define RBUFFER_TAIL_MASK           0x001FFFF8
170
171 /* Video Timings */
172 #define REF_FREQ                    24000000
173 #define TARGET_N_MAX                30
174
175 #define MAX_PIXELCLOCK              230000000
176 #define MIN_PIXELCLOCK               15000000
177 #define VFMAX                       60
178 #define VFMIN                       60
179 #define HFMAX                       30000
180 #define HFMIN                       29000
181
182 /* Cursor */
183 #define CURSOR_ENABLE_MASK          0x1000             
184 #define CURSOR_MODE_64_TRANS        4
185 #define CURSOR_MODE_64_XOR          5
186 #define CURSOR_MODE_64_3C           6   
187 #define COORD_INACTIVE              0
188 #define COORD_ACTIVE                (1 << 4)
189 #define EXTENDED_PALETTE            1
190   
191 /* AGP Memory Types*/
192 #define AGP_NORMAL_MEMORY           0
193 #define AGP_DCACHE_MEMORY           1
194 #define AGP_PHYSICAL_MEMORY         2
195
196 /* Allocated resource Flags */
197 #define FRAMEBUFFER_REQ             1
198 #define MMIO_REQ                    2
199 #define PCI_DEVICE_ENABLED          4
200 #define HAS_FONTCACHE               8 
201
202 /* driver flags */
203 #define HAS_MTRR                    1
204 #define HAS_ACCELERATION            2
205 #define ALWAYS_SYNC                 4
206 #define LOCKUP                      8
207
208 struct gtt_data {
209         struct agp_memory *i810_fb_memory;
210         struct agp_memory *i810_cursor_memory;
211 };
212
213 struct mode_registers {
214         u32 pixclock, M, N, P;
215         u8 cr00, cr01, cr02, cr03;
216         u8 cr04, cr05, cr06, cr07;
217         u8 cr09, cr10, cr11, cr12;
218         u8 cr13, cr15, cr16, cr30;
219         u8 cr31, cr32, cr33, cr35, cr39;
220         u32 bpp8_100, bpp16_100;
221         u32 bpp24_100, bpp8_133;
222         u32 bpp16_133, bpp24_133;
223         u8 msr;
224 };
225
226 struct heap_data {
227         unsigned long physical;
228         __u8 __iomem *virtual;
229         u32 offset;
230         u32 size;
231 };      
232
233 struct state_registers {
234         u32 dclk_1d, dclk_2d, dclk_0ds;
235         u32 pixconf, fw_blc, pgtbl_ctl;
236         u32 fence0, hws_pga, dplystas;
237         u16 bltcntl, hwstam, ier, iir, imr;
238         u8 cr00, cr01, cr02, cr03, cr04;
239         u8 cr05, cr06, cr07, cr08, cr09;
240         u8 cr10, cr11, cr12, cr13, cr14;
241         u8 cr15, cr16, cr17, cr80, gr10;
242         u8 cr30, cr31, cr32, cr33, cr35;
243         u8 cr39, cr41, cr70, sr01, msr;
244 };
245
246 struct i810fb_par;
247
248 struct i810fb_i2c_chan {
249         struct i810fb_par *par;
250         struct i2c_adapter adapter;
251         struct i2c_algo_bit_data algo;
252 };
253
254 struct i810fb_par {
255         struct mode_registers    regs;
256         struct state_registers   hw_state;
257         struct gtt_data          i810_gtt;
258         struct fb_ops            i810fb_ops;
259         struct pci_dev           *dev;
260         struct heap_data         aperture;
261         struct heap_data         fb;
262         struct heap_data         iring;
263         struct heap_data         cursor_heap;
264         struct vgastate          state;
265         struct i810fb_i2c_chan   chan[2];
266         atomic_t                 use_count;
267         u32 pseudo_palette[17];
268         unsigned long mmio_start_phys;
269         u8 __iomem *mmio_start_virtual;
270         u8 *edid;
271         u32 pitch;
272         u32 pixconf;
273         u32 watermark;
274         u32 mem_freq;
275         u32 res_flags;
276         u32 dev_flags;
277         u32 cur_tail;
278         u32 depth;
279         u32 blit_bpp;
280         u32 ovract;
281         u32 cur_state;
282         int mtrr_reg;
283         u16 bltcntl;
284         u8 interlace;
285 };
286
287 /* 
288  * Register I/O
289  */
290 #define i810_readb(where, mmio) readb(mmio + where)
291 #define i810_readw(where, mmio) readw(mmio + where)
292 #define i810_readl(where, mmio) readl(mmio + where)
293 #define i810_writeb(where, mmio, val) writeb(val, mmio + where) 
294 #define i810_writew(where, mmio, val) writew(val, mmio + where)
295 #define i810_writel(where, mmio, val) writel(val, mmio + where)
296
297 #endif /* __I810_H__ */