blob: 179db05f1954256999a2cb233ec168da47423b31 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _INTELFB_H
2#define _INTELFB_H
3
4/* $DHD: intelfb/intelfb.h,v 1.40 2003/06/27 15:06:25 dawes Exp $ */
5
6#include <linux/agp_backend.h>
7#include <linux/fb.h>
8
Dennis Munsie183b1212006-06-20 14:55:55 -04009#ifdef CONFIG_FB_INTEL_I2C
10#include <linux/i2c.h>
11#include <linux/i2c-algo-bit.h>
12#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070013
14/*** Version/name ***/
Dave Airlie9a906032006-03-23 21:53:05 +110015#define INTELFB_VERSION "0.9.4"
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#define INTELFB_MODULE_NAME "intelfb"
Dave Airlie9a906032006-03-23 21:53:05 +110017#define SUPPORTED_CHIPSETS "830M/845G/852GM/855GM/865G/915G/915GM/945G/945GM"
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
19
20/*** Debug/feature defines ***/
21
22#ifndef DEBUG
23#define DEBUG 0
24#endif
25
26#ifndef VERBOSE
27#define VERBOSE 0
28#endif
29
30#ifndef REGDUMP
31#define REGDUMP 0
32#endif
33
34#ifndef DETECT_VGA_CLASS_ONLY
35#define DETECT_VGA_CLASS_ONLY 1
36#endif
37
38#ifndef ALLOCATE_FOR_PANNING
39#define ALLOCATE_FOR_PANNING 1
40#endif
41
42#ifndef PREFERRED_MODE
43#define PREFERRED_MODE "1024x768-32@70"
44#endif
45
46/*** hw-related values ***/
47
Antonino A. Daplas4b3760c2005-12-19 15:11:40 +080048/* Resource Allocation */
49#define INTELFB_FB_ACQUIRED 1
50#define INTELFB_MMIO_ACQUIRED 2
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052/* PCI ids for supported devices */
53#define PCI_DEVICE_ID_INTEL_830M 0x3577
54#define PCI_DEVICE_ID_INTEL_845G 0x2562
55#define PCI_DEVICE_ID_INTEL_85XGM 0x3582
56#define PCI_DEVICE_ID_INTEL_865G 0x2572
57#define PCI_DEVICE_ID_INTEL_915G 0x2582
Scott MacKenzie3a590262005-11-07 01:00:33 -080058#define PCI_DEVICE_ID_INTEL_915GM 0x2592
Dave Airlie9639d5e2006-03-23 11:23:55 +110059#define PCI_DEVICE_ID_INTEL_945G 0x2772
Dave Airlie9a906032006-03-23 21:53:05 +110060#define PCI_DEVICE_ID_INTEL_945GM 0x27A2
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62/* Size of MMIO region */
63#define INTEL_REG_SIZE 0x80000
64
65#define STRIDE_ALIGNMENT 16
Dennis Munsiedf7df8a2006-05-27 18:17:52 +100066#define STRIDE_ALIGNMENT_I9XX 64
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
68#define PALETTE_8_ENTRIES 256
69
70
71/*** Macros ***/
72
73/* basic arithmetic */
74#define KB(x) ((x) * 1024)
75#define MB(x) ((x) * 1024 * 1024)
76#define BtoKB(x) ((x) / 1024)
77#define BtoMB(x) ((x) / 1024 / 1024)
78
79#define GTT_PAGE_SIZE KB(4)
80
81#define ROUND_UP_TO(x, y) (((x) + (y) - 1) / (y) * (y))
82#define ROUND_DOWN_TO(x, y) ((x) / (y) * (y))
83#define ROUND_UP_TO_PAGE(x) ROUND_UP_TO((x), GTT_PAGE_SIZE)
84#define ROUND_DOWN_TO_PAGE(x) ROUND_DOWN_TO((x), GTT_PAGE_SIZE)
85
86/* messages */
87#define PFX INTELFB_MODULE_NAME ": "
88
89#define ERR_MSG(fmt, args...) printk(KERN_ERR PFX fmt, ## args)
90#define WRN_MSG(fmt, args...) printk(KERN_WARNING PFX fmt, ## args)
91#define NOT_MSG(fmt, args...) printk(KERN_NOTICE PFX fmt, ## args)
92#define INF_MSG(fmt, args...) printk(KERN_INFO PFX fmt, ## args)
93#if DEBUG
94#define DBG_MSG(fmt, args...) printk(KERN_DEBUG PFX fmt, ## args)
95#else
96#define DBG_MSG(fmt, args...) while (0) printk(fmt, ## args)
97#endif
98
99/* get commonly used pointers */
100#define GET_DINFO(info) (info)->par
101
102/* misc macros */
103#define ACCEL(d, i) \
104 ((d)->accel && !(d)->ring_lockup && \
105 ((i)->var.accel_flags & FB_ACCELF_TEXT))
106
107/*#define NOACCEL_CHIPSET(d) \
108 ((d)->chipset != INTEL_865G)*/
109#define NOACCEL_CHIPSET(d) \
110 (0)
111
112#define FIXED_MODE(d) ((d)->fixed_mode)
113
114/*** Driver paramters ***/
115
116#define RINGBUFFER_SIZE KB(64)
117#define HW_CURSOR_SIZE KB(4)
118
119/* Intel agpgart driver */
120#define AGP_PHYSICAL_MEMORY 2
121
Dennis Munsie399fb432006-06-20 14:55:55 -0400122/* these are outputs from the chip - integrated only
123 external chips are via DVO or SDVO output */
124#define INTELFB_OUTPUT_UNUSED 0
125#define INTELFB_OUTPUT_ANALOG 1
126#define INTELFB_OUTPUT_DVO 2
127#define INTELFB_OUTPUT_SDVO 3
128#define INTELFB_OUTPUT_LVDS 4
129#define INTELFB_OUTPUT_TVOUT 5
130
131#define INTELFB_DVO_CHIP_NONE 0
132#define INTELFB_DVO_CHIP_LVDS 1
133#define INTELFB_DVO_CHIP_TMDS 2
134#define INTELFB_DVO_CHIP_TVOUT 4
135
136#define INTELFB_OUTPUT_PIPE_NC 0
137#define INTELFB_OUTPUT_PIPE_A 1
138#define INTELFB_OUTPUT_PIPE_B 2
139
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140/*** Data Types ***/
141
142/* supported chipsets */
143enum intel_chips {
144 INTEL_830M,
145 INTEL_845G,
146 INTEL_85XGM,
147 INTEL_852GM,
148 INTEL_852GME,
149 INTEL_855GM,
150 INTEL_855GME,
151 INTEL_865G,
Scott MacKenzie3a590262005-11-07 01:00:33 -0800152 INTEL_915G,
Dave Airlie9639d5e2006-03-23 11:23:55 +1100153 INTEL_915GM,
Dave Airlie9a906032006-03-23 21:53:05 +1100154 INTEL_945G,
155 INTEL_945GM,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156};
157
158struct intelfb_hwstate {
159 u32 vga0_divisor;
160 u32 vga1_divisor;
161 u32 vga_pd;
162 u32 dpll_a;
163 u32 dpll_b;
164 u32 fpa0;
165 u32 fpa1;
166 u32 fpb0;
167 u32 fpb1;
168 u32 palette_a[PALETTE_8_ENTRIES];
169 u32 palette_b[PALETTE_8_ENTRIES];
170 u32 htotal_a;
171 u32 hblank_a;
172 u32 hsync_a;
173 u32 vtotal_a;
174 u32 vblank_a;
175 u32 vsync_a;
176 u32 src_size_a;
177 u32 bclrpat_a;
178 u32 htotal_b;
179 u32 hblank_b;
180 u32 hsync_b;
181 u32 vtotal_b;
182 u32 vblank_b;
183 u32 vsync_b;
184 u32 src_size_b;
185 u32 bclrpat_b;
186 u32 adpa;
187 u32 dvoa;
188 u32 dvob;
189 u32 dvoc;
190 u32 dvoa_srcdim;
191 u32 dvob_srcdim;
192 u32 dvoc_srcdim;
193 u32 lvds;
194 u32 pipe_a_conf;
195 u32 pipe_b_conf;
196 u32 disp_arb;
197 u32 cursor_a_control;
198 u32 cursor_b_control;
199 u32 cursor_a_base;
200 u32 cursor_b_base;
201 u32 cursor_size;
202 u32 disp_a_ctrl;
203 u32 disp_b_ctrl;
204 u32 disp_a_base;
205 u32 disp_b_base;
206 u32 cursor_a_palette[4];
207 u32 cursor_b_palette[4];
208 u32 disp_a_stride;
209 u32 disp_b_stride;
210 u32 vgacntrl;
211 u32 add_id;
212 u32 swf0x[7];
213 u32 swf1x[7];
214 u32 swf3x[3];
215 u32 fence[8];
216 u32 instpm;
217 u32 mem_mode;
218 u32 fw_blc_0;
219 u32 fw_blc_1;
Eric Hustvedt9a5f0192006-06-20 14:36:41 -0400220 u16 hwstam;
221 u16 ier;
222 u16 iir;
223 u16 imr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224};
225
226struct intelfb_heap_data {
227 u32 physical;
228 u8 __iomem *virtual;
229 u32 offset; // in GATT pages
230 u32 size; // in bytes
231};
232
Dennis Munsie183b1212006-06-20 14:55:55 -0400233#ifdef CONFIG_FB_INTEL_I2C
234struct intelfb_i2c_chan {
235 struct intelfb_info *dinfo;
236 u32 reg;
237 struct i2c_adapter adapter;
238 struct i2c_algo_bit_data algo;
239};
240#endif
241
Dennis Munsie399fb432006-06-20 14:55:55 -0400242struct intelfb_output_rec {
243 int type;
244 int pipe;
245 int flags;
246
247#ifdef CONFIG_FB_INTEL_I2C
248 struct intelfb_i2c_chan i2c_bus;
249 struct intelfb_i2c_chan ddc_bus;
250#endif
251};
252
Eric Hustvedt76497572006-06-20 14:36:41 -0400253struct intelfb_vsync {
254 wait_queue_head_t wait;
255 unsigned int count;
Eric Hustvedtf80d0d22006-06-20 14:36:42 -0400256 int pan_display;
257 u32 pan_offset;
Eric Hustvedt76497572006-06-20 14:36:41 -0400258};
259
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260struct intelfb_info {
261 struct fb_info *info;
262 struct fb_ops *fbops;
263 struct pci_dev *pdev;
264
265 struct intelfb_hwstate save_state;
266
267 /* agpgart structs */
268 struct agp_memory *gtt_fb_mem; // use all stolen memory or vram
269 struct agp_memory *gtt_ring_mem; // ring buffer
270 struct agp_memory *gtt_cursor_mem; // hw cursor
271
272 /* use a gart reserved fb mem */
273 u8 fbmem_gart;
274
275 /* mtrr support */
276 u32 mtrr_reg;
277 u32 has_mtrr;
278
279 /* heap data */
280 struct intelfb_heap_data aperture;
281 struct intelfb_heap_data fb;
282 struct intelfb_heap_data ring;
283 struct intelfb_heap_data cursor;
284
285 /* mmio regs */
286 u32 mmio_base_phys;
287 u8 __iomem *mmio_base;
288
289 /* fb start offset (in bytes) */
290 u32 fb_start;
291
292 /* ring buffer */
Al Viro0fe6e2d2006-06-23 06:05:39 +0100293 u32 ring_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 u32 ring_tail;
295 u32 ring_tail_mask;
296 u32 ring_space;
297 u32 ring_lockup;
298
299 /* palette */
300 u32 pseudo_palette[17];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
302 /* chip info */
303 int pci_chipset;
304 int chipset;
305 const char *name;
306 int mobile;
307
308 /* current mode */
309 int bpp, depth;
310 u32 visual;
311 int xres, yres, pitch;
312 int pixclock;
313
314 /* current pipe */
315 int pipe;
316
317 /* some flags */
318 int accel;
319 int hwcursor;
320 int fixed_mode;
321 int ring_active;
Antonino A. Daplas4b3760c2005-12-19 15:11:40 +0800322 int flag;
Eric Hustvedt76497572006-06-20 14:36:41 -0400323 unsigned long irq_flags;
324 int open;
325
326 /* vsync */
327 struct intelfb_vsync vsync;
328 spinlock_t int_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
330 /* hw cursor */
331 int cursor_on;
332 int cursor_blanked;
333 u8 cursor_src[64];
334
335 /* initial parameters */
336 int initial_vga;
337 struct fb_var_screeninfo initial_var;
338 u32 initial_fb_base;
339 u32 initial_video_ram;
340 u32 initial_pitch;
341
342 /* driver registered */
343 int registered;
Dave Airlied0249602006-03-20 20:26:45 +1100344
345 /* index into plls */
346 int pll_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347};
348
Dave Airlie3aff13c2006-03-31 17:08:52 +1000349#define IS_I9XX(dinfo) (((dinfo)->chipset == INTEL_915G)||(dinfo->chipset == INTEL_915GM)||((dinfo)->chipset == INTEL_945G)||(dinfo->chipset==INTEL_945GM))
Dave Airlie8bb91f62006-03-23 13:06:32 +1100350
Eric Hustvedt37bced32006-06-20 14:36:42 -0400351#ifndef FBIO_WAITFORVSYNC
352#define FBIO_WAITFORVSYNC _IOW('F', 0x20, __u32)
353#endif
354
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355/*** function prototypes ***/
356
357extern int intelfb_var_to_depth(const struct fb_var_screeninfo *var);
358
359#endif /* _INTELFB_H */