blob: b55a12d95eb22ebe641add5c6c9e9602803b2793 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001 /*-*- linux-c -*-
2 * linux/drivers/video/i810_main.c -- Intel 810 frame buffer device
3 *
4 * Copyright (C) 2001 Antonino Daplas<adaplas@pol.net>
5 * All Rights Reserved
6 *
7 * Contributors:
8 * Michael Vogt <mvogt@acm.org> - added support for Intel 815 chipsets
9 * and enabling the power-on state of
10 * external VGA connectors for
11 * secondary displays
12 *
13 * Fredrik Andersson <krueger@shell.linux.se> - alpha testing of
14 * the VESA GTF
15 *
16 * Brad Corrion <bcorrion@web-co.com> - alpha testing of customized
17 * timings support
18 *
19 * The code framework is a modification of vfb.c by Geert Uytterhoeven.
20 * DotClock and PLL calculations are partly based on i810_driver.c
21 * in xfree86 v4.0.3 by Precision Insight.
22 * Watermark calculation and tables are based on i810_wmark.c
23 * in xfre86 v4.0.3 by Precision Insight. Slight modifications
24 * only to allow for integer operations instead of floating point.
25 *
26 * This file is subject to the terms and conditions of the GNU General Public
27 * License. See the file COPYING in the main directory of this archive for
28 * more details.
29 */
30
31#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/kernel.h>
33#include <linux/errno.h>
34#include <linux/string.h>
35#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/slab.h>
37#include <linux/fb.h>
38#include <linux/init.h>
39#include <linux/pci.h>
40#include <linux/pci_ids.h>
41#include <linux/resource.h>
42#include <linux/unistd.h>
Antonino A. Daplasc5eec032006-01-09 20:53:43 -080043#include <linux/console.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45#include <asm/io.h>
46#include <asm/div64.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <asm/page.h>
48
49#include "i810_regs.h"
50#include "i810.h"
51#include "i810_main.h"
52
Adrian Bunka0aa7d02006-01-09 20:54:04 -080053/*
54 * voffset - framebuffer offset in MiB from aperture start address. In order for
55 * the driver to work with X, we must try to use memory holes left untouched by X. The
56 * following table lists where X's different surfaces start at.
57 *
58 * ---------------------------------------------
59 * : : 64 MiB : 32 MiB :
60 * ----------------------------------------------
61 * : FrontBuffer : 0 : 0 :
62 * : DepthBuffer : 48 : 16 :
63 * : BackBuffer : 56 : 24 :
64 * ----------------------------------------------
65 *
66 * So for chipsets with 64 MiB Aperture sizes, 32 MiB for v_offset is okay, allowing up to
67 * 15 + 1 MiB of Framebuffer memory. For 32 MiB Aperture sizes, a v_offset of 8 MiB should
68 * work, allowing 7 + 1 MiB of Framebuffer memory.
69 * Note, the size of the hole may change depending on how much memory you allocate to X,
70 * and how the memory is split up between these surfaces.
71 *
72 * Note: Anytime the DepthBuffer or FrontBuffer is overlapped, X would still run but with
73 * DRI disabled. But if the Frontbuffer is overlapped, X will fail to load.
74 *
75 * Experiment with v_offset to find out which works best for you.
76 */
Andrew Morton9e8a3d22006-05-20 15:00:33 -070077static u32 v_offset_default __devinitdata; /* For 32 MiB Aper size, 8 should be the default */
78static u32 voffset __devinitdata;
Adrian Bunka0aa7d02006-01-09 20:54:04 -080079
80static int i810fb_cursor(struct fb_info *info, struct fb_cursor *cursor);
81static int __devinit i810fb_init_pci (struct pci_dev *dev,
82 const struct pci_device_id *entry);
83static void __exit i810fb_remove_pci(struct pci_dev *dev);
84static int i810fb_resume(struct pci_dev *dev);
85static int i810fb_suspend(struct pci_dev *dev, pm_message_t state);
86
87/* Chipset Specific Functions */
88static int i810fb_set_par (struct fb_info *info);
89static int i810fb_getcolreg (u8 regno, u8 *red, u8 *green, u8 *blue,
90 u8 *transp, struct fb_info *info);
91static int i810fb_setcolreg (unsigned regno, unsigned red, unsigned green, unsigned blue,
92 unsigned transp, struct fb_info *info);
93static int i810fb_pan_display(struct fb_var_screeninfo *var, struct fb_info *info);
94static int i810fb_blank (int blank_mode, struct fb_info *info);
95
96/* Initialization */
97static void i810fb_release_resource (struct fb_info *info, struct i810fb_par *par);
98
Linus Torvalds1da177e2005-04-16 15:20:36 -070099/* PCI */
100static const char *i810_pci_list[] __devinitdata = {
101 "Intel(R) 810 Framebuffer Device" ,
102 "Intel(R) 810-DC100 Framebuffer Device" ,
103 "Intel(R) 810E Framebuffer Device" ,
104 "Intel(R) 815 (Internal Graphics 100Mhz FSB) Framebuffer Device" ,
105 "Intel(R) 815 (Internal Graphics only) Framebuffer Device" ,
106 "Intel(R) 815 (Internal Graphics with AGP) Framebuffer Device"
107};
108
109static struct pci_device_id i810fb_pci_tbl[] = {
110 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82810_IG1,
111 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 },
112 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82810_IG3,
113 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 1 },
114 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82810E_IG,
115 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 2 },
116 /* mvo: added i815 PCI-ID */
117 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82815_100,
118 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 3 },
119 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82815_NOAGP,
120 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 4 },
121 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82815_CGC,
122 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 5 },
123 { 0 },
124};
125
126static struct pci_driver i810fb_driver = {
127 .name = "i810fb",
128 .id_table = i810fb_pci_tbl,
129 .probe = i810fb_init_pci,
130 .remove = __exit_p(i810fb_remove_pci),
131 .suspend = i810fb_suspend,
132 .resume = i810fb_resume,
133};
134
Antonino A. Daplas74f6ae82005-09-09 13:10:04 -0700135static char *mode_option __devinitdata = NULL;
136static int vram __devinitdata = 4;
137static int bpp __devinitdata = 8;
Antonino A. Daplas595e8a92005-09-12 09:15:16 +0800138static int mtrr __devinitdata;
139static int accel __devinitdata;
140static int hsync1 __devinitdata;
141static int hsync2 __devinitdata;
142static int vsync1 __devinitdata;
143static int vsync2 __devinitdata;
144static int xres __devinitdata;
145static int yres __devinitdata;
146static int vyres __devinitdata;
147static int sync __devinitdata;
Antonino A. Daplas747a5052005-09-12 09:16:47 +0800148static int extvga __devinitdata;
Antonino A. Daplas595e8a92005-09-12 09:15:16 +0800149static int dcolor __devinitdata;
Manuel Lauss00d340b92006-02-01 03:06:54 -0800150static int ddc3 __devinitdata = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
152/*------------------------------------------------------------*/
153
154/**************************************************************
155 * Hardware Low Level Routines *
156 **************************************************************/
157
158/**
159 * i810_screen_off - turns off/on display
160 * @mmio: address of register space
161 * @mode: on or off
162 *
163 * DESCRIPTION:
164 * Blanks/unblanks the display
165 */
166static void i810_screen_off(u8 __iomem *mmio, u8 mode)
167{
168 u32 count = WAIT_COUNT;
169 u8 val;
170
171 i810_writeb(SR_INDEX, mmio, SR01);
172 val = i810_readb(SR_DATA, mmio);
173 val = (mode == OFF) ? val | SCR_OFF :
174 val & ~SCR_OFF;
175
176 while((i810_readw(DISP_SL, mmio) & 0xFFF) && count--);
177 i810_writeb(SR_INDEX, mmio, SR01);
178 i810_writeb(SR_DATA, mmio, val);
179}
180
181/**
182 * i810_dram_off - turns off/on dram refresh
183 * @mmio: address of register space
184 * @mode: on or off
185 *
186 * DESCRIPTION:
187 * Turns off DRAM refresh. Must be off for only 2 vsyncs
188 * before data becomes corrupt
189 */
190static void i810_dram_off(u8 __iomem *mmio, u8 mode)
191{
192 u8 val;
193
194 val = i810_readb(DRAMCH, mmio);
195 val &= DRAM_OFF;
196 val = (mode == OFF) ? val : val | DRAM_ON;
197 i810_writeb(DRAMCH, mmio, val);
198}
199
200/**
201 * i810_protect_regs - allows rw/ro mode of certain VGA registers
202 * @mmio: address of register space
203 * @mode: protect/unprotect
204 *
205 * DESCRIPTION:
206 * The IBM VGA standard allows protection of certain VGA registers.
207 * This will protect or unprotect them.
208 */
209static void i810_protect_regs(u8 __iomem *mmio, int mode)
210{
211 u8 reg;
212
213 i810_writeb(CR_INDEX_CGA, mmio, CR11);
214 reg = i810_readb(CR_DATA_CGA, mmio);
215 reg = (mode == OFF) ? reg & ~0x80 :
216 reg | 0x80;
217
218 i810_writeb(CR_INDEX_CGA, mmio, CR11);
219 i810_writeb(CR_DATA_CGA, mmio, reg);
220}
221
222/**
223 * i810_load_pll - loads values for the hardware PLL clock
224 * @par: pointer to i810fb_par structure
225 *
226 * DESCRIPTION:
227 * Loads the P, M, and N registers.
228 */
229static void i810_load_pll(struct i810fb_par *par)
230{
231 u32 tmp1, tmp2;
232 u8 __iomem *mmio = par->mmio_start_virtual;
233
234 tmp1 = par->regs.M | par->regs.N << 16;
235 tmp2 = i810_readl(DCLK_2D, mmio);
236 tmp2 &= ~MN_MASK;
237 i810_writel(DCLK_2D, mmio, tmp1 | tmp2);
238
239 tmp1 = par->regs.P;
240 tmp2 = i810_readl(DCLK_0DS, mmio);
241 tmp2 &= ~(P_OR << 16);
242 i810_writel(DCLK_0DS, mmio, (tmp1 << 16) | tmp2);
243
244 i810_writeb(MSR_WRITE, mmio, par->regs.msr | 0xC8 | 1);
245
246}
247
248/**
249 * i810_load_vga - load standard VGA registers
250 * @par: pointer to i810fb_par structure
251 *
252 * DESCRIPTION:
253 * Load values to VGA registers
254 */
255static void i810_load_vga(struct i810fb_par *par)
256{
257 u8 __iomem *mmio = par->mmio_start_virtual;
258
259 /* interlace */
260 i810_writeb(CR_INDEX_CGA, mmio, CR70);
261 i810_writeb(CR_DATA_CGA, mmio, par->interlace);
262
263 i810_writeb(CR_INDEX_CGA, mmio, CR00);
264 i810_writeb(CR_DATA_CGA, mmio, par->regs.cr00);
265 i810_writeb(CR_INDEX_CGA, mmio, CR01);
266 i810_writeb(CR_DATA_CGA, mmio, par->regs.cr01);
267 i810_writeb(CR_INDEX_CGA, mmio, CR02);
268 i810_writeb(CR_DATA_CGA, mmio, par->regs.cr02);
269 i810_writeb(CR_INDEX_CGA, mmio, CR03);
270 i810_writeb(CR_DATA_CGA, mmio, par->regs.cr03);
271 i810_writeb(CR_INDEX_CGA, mmio, CR04);
272 i810_writeb(CR_DATA_CGA, mmio, par->regs.cr04);
273 i810_writeb(CR_INDEX_CGA, mmio, CR05);
274 i810_writeb(CR_DATA_CGA, mmio, par->regs.cr05);
275 i810_writeb(CR_INDEX_CGA, mmio, CR06);
276 i810_writeb(CR_DATA_CGA, mmio, par->regs.cr06);
277 i810_writeb(CR_INDEX_CGA, mmio, CR09);
278 i810_writeb(CR_DATA_CGA, mmio, par->regs.cr09);
279 i810_writeb(CR_INDEX_CGA, mmio, CR10);
280 i810_writeb(CR_DATA_CGA, mmio, par->regs.cr10);
281 i810_writeb(CR_INDEX_CGA, mmio, CR11);
282 i810_writeb(CR_DATA_CGA, mmio, par->regs.cr11);
283 i810_writeb(CR_INDEX_CGA, mmio, CR12);
284 i810_writeb(CR_DATA_CGA, mmio, par->regs.cr12);
285 i810_writeb(CR_INDEX_CGA, mmio, CR15);
286 i810_writeb(CR_DATA_CGA, mmio, par->regs.cr15);
287 i810_writeb(CR_INDEX_CGA, mmio, CR16);
288 i810_writeb(CR_DATA_CGA, mmio, par->regs.cr16);
289}
290
291/**
292 * i810_load_vgax - load extended VGA registers
293 * @par: pointer to i810fb_par structure
294 *
295 * DESCRIPTION:
296 * Load values to extended VGA registers
297 */
298static void i810_load_vgax(struct i810fb_par *par)
299{
300 u8 __iomem *mmio = par->mmio_start_virtual;
301
302 i810_writeb(CR_INDEX_CGA, mmio, CR30);
303 i810_writeb(CR_DATA_CGA, mmio, par->regs.cr30);
304 i810_writeb(CR_INDEX_CGA, mmio, CR31);
305 i810_writeb(CR_DATA_CGA, mmio, par->regs.cr31);
306 i810_writeb(CR_INDEX_CGA, mmio, CR32);
307 i810_writeb(CR_DATA_CGA, mmio, par->regs.cr32);
308 i810_writeb(CR_INDEX_CGA, mmio, CR33);
309 i810_writeb(CR_DATA_CGA, mmio, par->regs.cr33);
310 i810_writeb(CR_INDEX_CGA, mmio, CR35);
311 i810_writeb(CR_DATA_CGA, mmio, par->regs.cr35);
312 i810_writeb(CR_INDEX_CGA, mmio, CR39);
313 i810_writeb(CR_DATA_CGA, mmio, par->regs.cr39);
314}
315
316/**
317 * i810_load_2d - load grahics registers
318 * @par: pointer to i810fb_par structure
319 *
320 * DESCRIPTION:
321 * Load values to graphics registers
322 */
323static void i810_load_2d(struct i810fb_par *par)
324{
325 u32 tmp;
326 u8 tmp8;
327 u8 __iomem *mmio = par->mmio_start_virtual;
328
329 i810_writel(FW_BLC, mmio, par->watermark);
330 tmp = i810_readl(PIXCONF, mmio);
331 tmp |= 1 | 1 << 20;
332 i810_writel(PIXCONF, mmio, tmp);
333
334 i810_writel(OVRACT, mmio, par->ovract);
335
336 i810_writeb(GR_INDEX, mmio, GR10);
337 tmp8 = i810_readb(GR_DATA, mmio);
338 tmp8 |= 2;
339 i810_writeb(GR_INDEX, mmio, GR10);
340 i810_writeb(GR_DATA, mmio, tmp8);
341}
342
343/**
344 * i810_hires - enables high resolution mode
345 * @mmio: address of register space
346 */
347static void i810_hires(u8 __iomem *mmio)
348{
349 u8 val;
350
351 i810_writeb(CR_INDEX_CGA, mmio, CR80);
352 val = i810_readb(CR_DATA_CGA, mmio);
353 i810_writeb(CR_INDEX_CGA, mmio, CR80);
354 i810_writeb(CR_DATA_CGA, mmio, val | 1);
Antonino A. Daplas63edcea2005-09-09 13:10:05 -0700355 /* Stop LCD displays from flickering */
356 i810_writel(MEM_MODE, mmio, i810_readl(MEM_MODE, mmio) | 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357}
358
359/**
360 * i810_load_pitch - loads the characters per line of the display
361 * @par: pointer to i810fb_par structure
362 *
363 * DESCRIPTION:
364 * Loads the characters per line
365 */
366static void i810_load_pitch(struct i810fb_par *par)
367{
368 u32 tmp, pitch;
369 u8 val;
370 u8 __iomem *mmio = par->mmio_start_virtual;
371
372 pitch = par->pitch >> 3;
373 i810_writeb(SR_INDEX, mmio, SR01);
374 val = i810_readb(SR_DATA, mmio);
375 val &= 0xE0;
376 val |= 1 | 1 << 2;
377 i810_writeb(SR_INDEX, mmio, SR01);
378 i810_writeb(SR_DATA, mmio, val);
379
380 tmp = pitch & 0xFF;
381 i810_writeb(CR_INDEX_CGA, mmio, CR13);
382 i810_writeb(CR_DATA_CGA, mmio, (u8) tmp);
383
384 tmp = pitch >> 8;
385 i810_writeb(CR_INDEX_CGA, mmio, CR41);
386 val = i810_readb(CR_DATA_CGA, mmio) & ~0x0F;
387 i810_writeb(CR_INDEX_CGA, mmio, CR41);
388 i810_writeb(CR_DATA_CGA, mmio, (u8) tmp | val);
389}
390
391/**
392 * i810_load_color - loads the color depth of the display
393 * @par: pointer to i810fb_par structure
394 *
395 * DESCRIPTION:
396 * Loads the color depth of the display and the graphics engine
397 */
398static void i810_load_color(struct i810fb_par *par)
399{
400 u8 __iomem *mmio = par->mmio_start_virtual;
401 u32 reg1;
402 u16 reg2;
403
404 reg1 = i810_readl(PIXCONF, mmio) & ~(0xF0000 | 1 << 27);
405 reg2 = i810_readw(BLTCNTL, mmio) & ~0x30;
406
407 reg1 |= 0x8000 | par->pixconf;
408 reg2 |= par->bltcntl;
409 i810_writel(PIXCONF, mmio, reg1);
410 i810_writew(BLTCNTL, mmio, reg2);
411}
412
413/**
414 * i810_load_regs - loads all registers for the mode
415 * @par: pointer to i810fb_par structure
416 *
417 * DESCRIPTION:
418 * Loads registers
419 */
420static void i810_load_regs(struct i810fb_par *par)
421{
422 u8 __iomem *mmio = par->mmio_start_virtual;
423
424 i810_screen_off(mmio, OFF);
425 i810_protect_regs(mmio, OFF);
426 i810_dram_off(mmio, OFF);
427 i810_load_pll(par);
428 i810_load_vga(par);
429 i810_load_vgax(par);
430 i810_dram_off(mmio, ON);
431 i810_load_2d(par);
432 i810_hires(mmio);
433 i810_screen_off(mmio, ON);
434 i810_protect_regs(mmio, ON);
435 i810_load_color(par);
436 i810_load_pitch(par);
437}
438
439static void i810_write_dac(u8 regno, u8 red, u8 green, u8 blue,
440 u8 __iomem *mmio)
441{
442 i810_writeb(CLUT_INDEX_WRITE, mmio, regno);
443 i810_writeb(CLUT_DATA, mmio, red);
444 i810_writeb(CLUT_DATA, mmio, green);
445 i810_writeb(CLUT_DATA, mmio, blue);
446}
447
448static void i810_read_dac(u8 regno, u8 *red, u8 *green, u8 *blue,
449 u8 __iomem *mmio)
450{
451 i810_writeb(CLUT_INDEX_READ, mmio, regno);
452 *red = i810_readb(CLUT_DATA, mmio);
453 *green = i810_readb(CLUT_DATA, mmio);
454 *blue = i810_readb(CLUT_DATA, mmio);
455}
456
457/************************************************************
458 * VGA State Restore *
459 ************************************************************/
460static void i810_restore_pll(struct i810fb_par *par)
461{
462 u32 tmp1, tmp2;
463 u8 __iomem *mmio = par->mmio_start_virtual;
464
465 tmp1 = par->hw_state.dclk_2d;
466 tmp2 = i810_readl(DCLK_2D, mmio);
467 tmp1 &= ~MN_MASK;
468 tmp2 &= MN_MASK;
469 i810_writel(DCLK_2D, mmio, tmp1 | tmp2);
470
471 tmp1 = par->hw_state.dclk_1d;
472 tmp2 = i810_readl(DCLK_1D, mmio);
473 tmp1 &= ~MN_MASK;
474 tmp2 &= MN_MASK;
475 i810_writel(DCLK_1D, mmio, tmp1 | tmp2);
476
477 i810_writel(DCLK_0DS, mmio, par->hw_state.dclk_0ds);
478}
479
480static void i810_restore_dac(struct i810fb_par *par)
481{
482 u32 tmp1, tmp2;
483 u8 __iomem *mmio = par->mmio_start_virtual;
484
485 tmp1 = par->hw_state.pixconf;
486 tmp2 = i810_readl(PIXCONF, mmio);
487 tmp1 &= DAC_BIT;
488 tmp2 &= ~DAC_BIT;
489 i810_writel(PIXCONF, mmio, tmp1 | tmp2);
490}
491
492static void i810_restore_vgax(struct i810fb_par *par)
493{
494 u8 i, j;
495 u8 __iomem *mmio = par->mmio_start_virtual;
496
497 for (i = 0; i < 4; i++) {
498 i810_writeb(CR_INDEX_CGA, mmio, CR30+i);
499 i810_writeb(CR_DATA_CGA, mmio, *(&(par->hw_state.cr30) + i));
500 }
501 i810_writeb(CR_INDEX_CGA, mmio, CR35);
502 i810_writeb(CR_DATA_CGA, mmio, par->hw_state.cr35);
503 i810_writeb(CR_INDEX_CGA, mmio, CR39);
504 i810_writeb(CR_DATA_CGA, mmio, par->hw_state.cr39);
505 i810_writeb(CR_INDEX_CGA, mmio, CR41);
506 i810_writeb(CR_DATA_CGA, mmio, par->hw_state.cr39);
507
508 /*restore interlace*/
509 i810_writeb(CR_INDEX_CGA, mmio, CR70);
510 i = par->hw_state.cr70;
511 i &= INTERLACE_BIT;
512 j = i810_readb(CR_DATA_CGA, mmio);
513 i810_writeb(CR_INDEX_CGA, mmio, CR70);
514 i810_writeb(CR_DATA_CGA, mmio, j | i);
515
516 i810_writeb(CR_INDEX_CGA, mmio, CR80);
517 i810_writeb(CR_DATA_CGA, mmio, par->hw_state.cr80);
518 i810_writeb(MSR_WRITE, mmio, par->hw_state.msr);
519 i810_writeb(SR_INDEX, mmio, SR01);
520 i = (par->hw_state.sr01) & ~0xE0 ;
521 j = i810_readb(SR_DATA, mmio) & 0xE0;
522 i810_writeb(SR_INDEX, mmio, SR01);
523 i810_writeb(SR_DATA, mmio, i | j);
524}
525
526static void i810_restore_vga(struct i810fb_par *par)
527{
528 u8 i;
529 u8 __iomem *mmio = par->mmio_start_virtual;
530
531 for (i = 0; i < 10; i++) {
532 i810_writeb(CR_INDEX_CGA, mmio, CR00 + i);
533 i810_writeb(CR_DATA_CGA, mmio, *((&par->hw_state.cr00) + i));
534 }
535 for (i = 0; i < 8; i++) {
536 i810_writeb(CR_INDEX_CGA, mmio, CR10 + i);
537 i810_writeb(CR_DATA_CGA, mmio, *((&par->hw_state.cr10) + i));
538 }
539}
540
541static void i810_restore_addr_map(struct i810fb_par *par)
542{
543 u8 tmp;
544 u8 __iomem *mmio = par->mmio_start_virtual;
545
546 i810_writeb(GR_INDEX, mmio, GR10);
547 tmp = i810_readb(GR_DATA, mmio);
548 tmp &= ADDR_MAP_MASK;
549 tmp |= par->hw_state.gr10;
550 i810_writeb(GR_INDEX, mmio, GR10);
551 i810_writeb(GR_DATA, mmio, tmp);
552}
553
554static void i810_restore_2d(struct i810fb_par *par)
555{
556 u32 tmp_long;
557 u16 tmp_word;
558 u8 __iomem *mmio = par->mmio_start_virtual;
559
560 tmp_word = i810_readw(BLTCNTL, mmio);
561 tmp_word &= ~(3 << 4);
562 tmp_word |= par->hw_state.bltcntl;
563 i810_writew(BLTCNTL, mmio, tmp_word);
564
565 i810_dram_off(mmio, OFF);
566 i810_writel(PIXCONF, mmio, par->hw_state.pixconf);
567 i810_dram_off(mmio, ON);
568
569 tmp_word = i810_readw(HWSTAM, mmio);
570 tmp_word &= 3 << 13;
571 tmp_word |= par->hw_state.hwstam;
572 i810_writew(HWSTAM, mmio, tmp_word);
573
574 tmp_long = i810_readl(FW_BLC, mmio);
575 tmp_long &= FW_BLC_MASK;
576 tmp_long |= par->hw_state.fw_blc;
577 i810_writel(FW_BLC, mmio, tmp_long);
578
579 i810_writel(HWS_PGA, mmio, par->hw_state.hws_pga);
580 i810_writew(IER, mmio, par->hw_state.ier);
581 i810_writew(IMR, mmio, par->hw_state.imr);
582 i810_writel(DPLYSTAS, mmio, par->hw_state.dplystas);
583}
584
585static void i810_restore_vga_state(struct i810fb_par *par)
586{
587 u8 __iomem *mmio = par->mmio_start_virtual;
588
589 i810_screen_off(mmio, OFF);
590 i810_protect_regs(mmio, OFF);
591 i810_dram_off(mmio, OFF);
592 i810_restore_pll(par);
593 i810_restore_dac(par);
594 i810_restore_vga(par);
595 i810_restore_vgax(par);
596 i810_restore_addr_map(par);
597 i810_dram_off(mmio, ON);
598 i810_restore_2d(par);
599 i810_screen_off(mmio, ON);
600 i810_protect_regs(mmio, ON);
601}
602
603/***********************************************************************
604 * VGA State Save *
605 ***********************************************************************/
606
607static void i810_save_vgax(struct i810fb_par *par)
608{
609 u8 i;
610 u8 __iomem *mmio = par->mmio_start_virtual;
611
612 for (i = 0; i < 4; i++) {
613 i810_writeb(CR_INDEX_CGA, mmio, CR30 + i);
614 *(&(par->hw_state.cr30) + i) = i810_readb(CR_DATA_CGA, mmio);
615 }
616 i810_writeb(CR_INDEX_CGA, mmio, CR35);
617 par->hw_state.cr35 = i810_readb(CR_DATA_CGA, mmio);
618 i810_writeb(CR_INDEX_CGA, mmio, CR39);
619 par->hw_state.cr39 = i810_readb(CR_DATA_CGA, mmio);
620 i810_writeb(CR_INDEX_CGA, mmio, CR41);
621 par->hw_state.cr41 = i810_readb(CR_DATA_CGA, mmio);
622 i810_writeb(CR_INDEX_CGA, mmio, CR70);
623 par->hw_state.cr70 = i810_readb(CR_DATA_CGA, mmio);
624 par->hw_state.msr = i810_readb(MSR_READ, mmio);
625 i810_writeb(CR_INDEX_CGA, mmio, CR80);
626 par->hw_state.cr80 = i810_readb(CR_DATA_CGA, mmio);
627 i810_writeb(SR_INDEX, mmio, SR01);
628 par->hw_state.sr01 = i810_readb(SR_DATA, mmio);
629}
630
631static void i810_save_vga(struct i810fb_par *par)
632{
633 u8 i;
634 u8 __iomem *mmio = par->mmio_start_virtual;
635
636 for (i = 0; i < 10; i++) {
637 i810_writeb(CR_INDEX_CGA, mmio, CR00 + i);
638 *((&par->hw_state.cr00) + i) = i810_readb(CR_DATA_CGA, mmio);
639 }
640 for (i = 0; i < 8; i++) {
641 i810_writeb(CR_INDEX_CGA, mmio, CR10 + i);
642 *((&par->hw_state.cr10) + i) = i810_readb(CR_DATA_CGA, mmio);
643 }
644}
645
646static void i810_save_2d(struct i810fb_par *par)
647{
648 u8 __iomem *mmio = par->mmio_start_virtual;
649
650 par->hw_state.dclk_2d = i810_readl(DCLK_2D, mmio);
651 par->hw_state.dclk_1d = i810_readl(DCLK_1D, mmio);
652 par->hw_state.dclk_0ds = i810_readl(DCLK_0DS, mmio);
653 par->hw_state.pixconf = i810_readl(PIXCONF, mmio);
654 par->hw_state.fw_blc = i810_readl(FW_BLC, mmio);
655 par->hw_state.bltcntl = i810_readw(BLTCNTL, mmio);
656 par->hw_state.hwstam = i810_readw(HWSTAM, mmio);
657 par->hw_state.hws_pga = i810_readl(HWS_PGA, mmio);
658 par->hw_state.ier = i810_readw(IER, mmio);
659 par->hw_state.imr = i810_readw(IMR, mmio);
660 par->hw_state.dplystas = i810_readl(DPLYSTAS, mmio);
661}
662
663static void i810_save_vga_state(struct i810fb_par *par)
664{
665 i810_save_vga(par);
666 i810_save_vgax(par);
667 i810_save_2d(par);
668}
669
670/************************************************************
671 * Helpers *
672 ************************************************************/
673/**
674 * get_line_length - calculates buffer pitch in bytes
675 * @par: pointer to i810fb_par structure
676 * @xres_virtual: virtual resolution of the frame
677 * @bpp: bits per pixel
678 *
679 * DESCRIPTION:
680 * Calculates buffer pitch in bytes.
681 */
682static u32 get_line_length(struct i810fb_par *par, int xres_virtual, int bpp)
683{
684 u32 length;
685
686 length = xres_virtual*bpp;
687 length = (length+31)&-32;
688 length >>= 3;
689 return length;
690}
691
692/**
693 * i810_calc_dclk - calculates the P, M, and N values of a pixelclock value
694 * @freq: target pixelclock in picoseconds
695 * @m: where to write M register
696 * @n: where to write N register
697 * @p: where to write P register
698 *
699 * DESCRIPTION:
700 * Based on the formula Freq_actual = (4*M*Freq_ref)/(N^P)
701 * Repeatedly computes the Freq until the actual Freq is equal to
702 * the target Freq or until the loop count is zero. In the latter
703 * case, the actual frequency nearest the target will be used.
704 */
705static void i810_calc_dclk(u32 freq, u32 *m, u32 *n, u32 *p)
706{
707 u32 m_reg, n_reg, p_divisor, n_target_max;
708 u32 m_target, n_target, p_target, n_best, m_best, mod;
709 u32 f_out, target_freq, diff = 0, mod_min, diff_min;
710
711 diff_min = mod_min = 0xFFFFFFFF;
712 n_best = m_best = m_target = f_out = 0;
713
714 target_freq = freq;
715 n_target_max = 30;
716
717 /*
718 * find P such that target freq is 16x reference freq (Hz).
719 */
720 p_divisor = 1;
721 p_target = 0;
722 while(!((1000000 * p_divisor)/(16 * 24 * target_freq)) &&
723 p_divisor <= 32) {
724 p_divisor <<= 1;
725 p_target++;
726 }
727
728 n_reg = m_reg = n_target = 3;
729 while (diff_min && mod_min && (n_target < n_target_max)) {
730 f_out = (p_divisor * n_reg * 1000000)/(4 * 24 * m_reg);
731 mod = (p_divisor * n_reg * 1000000) % (4 * 24 * m_reg);
732 m_target = m_reg;
733 n_target = n_reg;
734 if (f_out <= target_freq) {
735 n_reg++;
736 diff = target_freq - f_out;
737 } else {
738 m_reg++;
739 diff = f_out - target_freq;
740 }
741
742 if (diff_min > diff) {
743 diff_min = diff;
744 n_best = n_target;
745 m_best = m_target;
746 }
747
748 if (!diff && mod_min > mod) {
749 mod_min = mod;
750 n_best = n_target;
751 m_best = m_target;
752 }
753 }
754 if (m) *m = (m_best - 2) & 0x3FF;
755 if (n) *n = (n_best - 2) & 0x3FF;
756 if (p) *p = (p_target << 4);
757}
758
759/*************************************************************
760 * Hardware Cursor Routines *
761 *************************************************************/
762
763/**
764 * i810_enable_cursor - show or hide the hardware cursor
765 * @mmio: address of register space
766 * @mode: show (1) or hide (0)
767 *
768 * Description:
769 * Shows or hides the hardware cursor
770 */
771static void i810_enable_cursor(u8 __iomem *mmio, int mode)
772{
773 u32 temp;
774
775 temp = i810_readl(PIXCONF, mmio);
776 temp = (mode == ON) ? temp | CURSOR_ENABLE_MASK :
777 temp & ~CURSOR_ENABLE_MASK;
778
779 i810_writel(PIXCONF, mmio, temp);
780}
781
782static void i810_reset_cursor_image(struct i810fb_par *par)
783{
784 u8 __iomem *addr = par->cursor_heap.virtual;
785 int i, j;
786
787 for (i = 64; i--; ) {
788 for (j = 0; j < 8; j++) {
789 i810_writeb(j, addr, 0xff);
790 i810_writeb(j+8, addr, 0x00);
791 }
792 addr +=16;
793 }
794}
795
796static void i810_load_cursor_image(int width, int height, u8 *data,
797 struct i810fb_par *par)
798{
799 u8 __iomem *addr = par->cursor_heap.virtual;
800 int i, j, w = width/8;
801 int mod = width % 8, t_mask, d_mask;
802
803 t_mask = 0xff >> mod;
804 d_mask = ~(0xff >> mod);
805 for (i = height; i--; ) {
806 for (j = 0; j < w; j++) {
807 i810_writeb(j+0, addr, 0x00);
808 i810_writeb(j+8, addr, *data++);
809 }
810 if (mod) {
811 i810_writeb(j+0, addr, t_mask);
812 i810_writeb(j+8, addr, *data++ & d_mask);
813 }
814 addr += 16;
815 }
816}
817
818static void i810_load_cursor_colors(int fg, int bg, struct fb_info *info)
819{
Antonino A. Daplasc019c0e2006-01-09 20:53:03 -0800820 struct i810fb_par *par = info->par;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 u8 __iomem *mmio = par->mmio_start_virtual;
822 u8 red, green, blue, trans, temp;
823
824 i810fb_getcolreg(bg, &red, &green, &blue, &trans, info);
825
826 temp = i810_readb(PIXCONF1, mmio);
827 i810_writeb(PIXCONF1, mmio, temp | EXTENDED_PALETTE);
828
829 i810_write_dac(4, red, green, blue, mmio);
830
831 i810_writeb(PIXCONF1, mmio, temp);
832
833 i810fb_getcolreg(fg, &red, &green, &blue, &trans, info);
834 temp = i810_readb(PIXCONF1, mmio);
835 i810_writeb(PIXCONF1, mmio, temp | EXTENDED_PALETTE);
836
837 i810_write_dac(5, red, green, blue, mmio);
838
839 i810_writeb(PIXCONF1, mmio, temp);
840}
841
842/**
843 * i810_init_cursor - initializes the cursor
844 * @par: pointer to i810fb_par structure
845 *
846 * DESCRIPTION:
847 * Initializes the cursor registers
848 */
849static void i810_init_cursor(struct i810fb_par *par)
850{
851 u8 __iomem *mmio = par->mmio_start_virtual;
852
853 i810_enable_cursor(mmio, OFF);
854 i810_writel(CURBASE, mmio, par->cursor_heap.physical);
855 i810_writew(CURCNTR, mmio, COORD_ACTIVE | CURSOR_MODE_64_XOR);
856}
857
858/*********************************************************************
859 * Framebuffer hook helpers *
860 *********************************************************************/
861/**
862 * i810_round_off - Round off values to capability of hardware
863 * @var: pointer to fb_var_screeninfo structure
864 *
865 * DESCRIPTION:
866 * @var contains user-defined information for the mode to be set.
867 * This will try modify those values to ones nearest the
868 * capability of the hardware
869 */
870static void i810_round_off(struct fb_var_screeninfo *var)
871{
872 u32 xres, yres, vxres, vyres;
873
874 /*
875 * Presently supports only these configurations
876 */
877
878 xres = var->xres;
879 yres = var->yres;
880 vxres = var->xres_virtual;
881 vyres = var->yres_virtual;
882
883 var->bits_per_pixel += 7;
884 var->bits_per_pixel &= ~7;
885
886 if (var->bits_per_pixel < 8)
887 var->bits_per_pixel = 8;
888 if (var->bits_per_pixel > 32)
889 var->bits_per_pixel = 32;
890
891 round_off_xres(&xres);
892 if (xres < 40)
893 xres = 40;
894 if (xres > 2048)
895 xres = 2048;
896 xres = (xres + 7) & ~7;
897
898 if (vxres < xres)
899 vxres = xres;
900
901 round_off_yres(&xres, &yres);
902 if (yres < 1)
903 yres = 1;
904 if (yres >= 2048)
905 yres = 2048;
906
907 if (vyres < yres)
908 vyres = yres;
909
910 if (var->bits_per_pixel == 32)
911 var->accel_flags = 0;
912
913 /* round of horizontal timings to nearest 8 pixels */
914 var->left_margin = (var->left_margin + 4) & ~7;
915 var->right_margin = (var->right_margin + 4) & ~7;
916 var->hsync_len = (var->hsync_len + 4) & ~7;
917
918 if (var->vmode & FB_VMODE_INTERLACED) {
919 if (!((yres + var->upper_margin + var->vsync_len +
920 var->lower_margin) & 1))
921 var->upper_margin++;
922 }
923
924 var->xres = xres;
925 var->yres = yres;
926 var->xres_virtual = vxres;
927 var->yres_virtual = vyres;
928}
929
930/**
931 * set_color_bitfields - sets rgba fields
932 * @var: pointer to fb_var_screeninfo
933 *
934 * DESCRIPTION:
935 * The length, offset and ordering for each color field
936 * (red, green, blue) will be set as specified
937 * by the hardware
938 */
939static void set_color_bitfields(struct fb_var_screeninfo *var)
940{
941 switch (var->bits_per_pixel) {
942 case 8:
943 var->red.offset = 0;
944 var->red.length = 8;
945 var->green.offset = 0;
946 var->green.length = 8;
947 var->blue.offset = 0;
948 var->blue.length = 8;
949 var->transp.offset = 0;
950 var->transp.length = 0;
951 break;
952 case 16:
953 var->green.length = (var->green.length == 5) ? 5 : 6;
954 var->red.length = 5;
955 var->blue.length = 5;
956 var->transp.length = 6 - var->green.length;
957 var->blue.offset = 0;
958 var->green.offset = 5;
959 var->red.offset = 5 + var->green.length;
960 var->transp.offset = (5 + var->red.offset) & 15;
961 break;
962 case 24: /* RGB 888 */
963 case 32: /* RGBA 8888 */
964 var->red.offset = 16;
965 var->red.length = 8;
966 var->green.offset = 8;
967 var->green.length = 8;
968 var->blue.offset = 0;
969 var->blue.length = 8;
970 var->transp.length = var->bits_per_pixel - 24;
971 var->transp.offset = (var->transp.length) ? 24 : 0;
972 break;
973 }
974 var->red.msb_right = 0;
975 var->green.msb_right = 0;
976 var->blue.msb_right = 0;
977 var->transp.msb_right = 0;
978}
979
980/**
981 * i810_check_params - check if contents in var are valid
982 * @var: pointer to fb_var_screeninfo
983 * @info: pointer to fb_info
984 *
985 * DESCRIPTION:
986 * This will check if the framebuffer size is sufficient
987 * for the current mode and if the user's monitor has the
988 * required specifications to display the current mode.
989 */
990static int i810_check_params(struct fb_var_screeninfo *var,
991 struct fb_info *info)
992{
Antonino A. Daplasc019c0e2006-01-09 20:53:03 -0800993 struct i810fb_par *par = info->par;
Antonino A. Daplas883f6452005-09-12 09:13:32 +0800994 int line_length, vidmem, mode_valid = 0, retval = 0;
Antonino A. Daplas74f6ae82005-09-09 13:10:04 -0700995 u32 vyres = var->yres_virtual, vxres = var->xres_virtual;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 /*
997 * Memory limit
998 */
Antonino A. Daplas74f6ae82005-09-09 13:10:04 -0700999 line_length = get_line_length(par, vxres, var->bits_per_pixel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 vidmem = line_length*vyres;
Antonino A. Daplas74f6ae82005-09-09 13:10:04 -07001001
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 if (vidmem > par->fb.size) {
1003 vyres = par->fb.size/line_length;
Antonino A. Daplas74f6ae82005-09-09 13:10:04 -07001004 if (vyres < var->yres) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 vyres = yres;
1006 vxres = par->fb.size/vyres;
1007 vxres /= var->bits_per_pixel >> 3;
1008 line_length = get_line_length(par, vxres,
1009 var->bits_per_pixel);
1010 vidmem = line_length * yres;
Antonino A. Daplas74f6ae82005-09-09 13:10:04 -07001011 if (vxres < var->xres) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 printk("i810fb: required video memory, "
1013 "%d bytes, for %dx%d-%d (virtual) "
1014 "is out of range\n",
1015 vidmem, vxres, vyres,
1016 var->bits_per_pixel);
1017 return -ENOMEM;
1018 }
1019 }
1020 }
Antonino A. Daplas74f6ae82005-09-09 13:10:04 -07001021
1022 var->xres_virtual = vxres;
1023 var->yres_virtual = vyres;
1024
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 /*
1026 * Monitor limit
1027 */
1028 switch (var->bits_per_pixel) {
1029 case 8:
1030 info->monspecs.dclkmax = 234000000;
1031 break;
1032 case 16:
1033 info->monspecs.dclkmax = 229000000;
1034 break;
1035 case 24:
1036 case 32:
1037 info->monspecs.dclkmax = 204000000;
1038 break;
1039 }
Antonino A. Daplas74f6ae82005-09-09 13:10:04 -07001040
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 info->monspecs.dclkmin = 15000000;
1042
Antonino A. Daplas74f6ae82005-09-09 13:10:04 -07001043 if (!fb_validate_mode(var, info))
1044 mode_valid = 1;
1045
1046#ifdef CONFIG_FB_I810_I2C
1047 if (!mode_valid && info->monspecs.gtf &&
1048 !fb_get_mode(FB_MAXTIMINGS, 0, var, info))
1049 mode_valid = 1;
1050
1051 if (!mode_valid && info->monspecs.modedb_len) {
1052 struct fb_videomode *mode;
1053
1054 mode = fb_find_best_mode(var, &info->modelist);
1055 if (mode) {
1056 fb_videomode_to_var(var, mode);
1057 mode_valid = 1;
Denis Vlasenkodb9f1d92005-05-01 08:59:24 -07001058 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 }
Antonino A. Daplas74f6ae82005-09-09 13:10:04 -07001060#endif
1061 if (!mode_valid && info->monspecs.modedb_len == 0) {
1062 if (fb_get_mode(FB_MAXTIMINGS, 0, var, info)) {
1063 int default_sync = (info->monspecs.hfmin-HFMIN)
1064 |(info->monspecs.hfmax-HFMAX)
1065 |(info->monspecs.vfmin-VFMIN)
1066 |(info->monspecs.vfmax-VFMAX);
1067 printk("i810fb: invalid video mode%s\n",
1068 default_sync ? "" : ". Specifying "
1069 "vsyncN/hsyncN parameters may help");
Antonino A. Daplas883f6452005-09-12 09:13:32 +08001070 retval = -EINVAL;
Antonino A. Daplas74f6ae82005-09-09 13:10:04 -07001071 }
1072 }
1073
Antonino A. Daplas883f6452005-09-12 09:13:32 +08001074 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075}
1076
1077/**
1078 * encode_fix - fill up fb_fix_screeninfo structure
1079 * @fix: pointer to fb_fix_screeninfo
1080 * @info: pointer to fb_info
1081 *
1082 * DESCRIPTION:
1083 * This will set up parameters that are unmodifiable by the user.
1084 */
1085static int encode_fix(struct fb_fix_screeninfo *fix, struct fb_info *info)
1086{
Antonino A. Daplasc019c0e2006-01-09 20:53:03 -08001087 struct i810fb_par *par = info->par;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088
1089 memset(fix, 0, sizeof(struct fb_fix_screeninfo));
1090
1091 strcpy(fix->id, "I810");
1092 fix->smem_start = par->fb.physical;
1093 fix->smem_len = par->fb.size;
1094 fix->type = FB_TYPE_PACKED_PIXELS;
1095 fix->type_aux = 0;
1096 fix->xpanstep = 8;
1097 fix->ypanstep = 1;
1098
1099 switch (info->var.bits_per_pixel) {
1100 case 8:
1101 fix->visual = FB_VISUAL_PSEUDOCOLOR;
1102 break;
1103 case 16:
1104 case 24:
1105 case 32:
1106 if (info->var.nonstd)
1107 fix->visual = FB_VISUAL_DIRECTCOLOR;
1108 else
1109 fix->visual = FB_VISUAL_TRUECOLOR;
1110 break;
1111 default:
1112 return -EINVAL;
1113 }
1114 fix->ywrapstep = 0;
1115 fix->line_length = par->pitch;
1116 fix->mmio_start = par->mmio_start_phys;
1117 fix->mmio_len = MMIO_SIZE;
1118 fix->accel = FB_ACCEL_I810;
1119
1120 return 0;
1121}
1122
1123/**
1124 * decode_var - modify par according to contents of var
1125 * @var: pointer to fb_var_screeninfo
1126 * @par: pointer to i810fb_par
1127 *
1128 * DESCRIPTION:
1129 * Based on the contents of @var, @par will be dynamically filled up.
1130 * @par contains all information necessary to modify the hardware.
1131*/
1132static void decode_var(const struct fb_var_screeninfo *var,
1133 struct i810fb_par *par)
1134{
1135 u32 xres, yres, vxres, vyres;
1136
1137 xres = var->xres;
1138 yres = var->yres;
1139 vxres = var->xres_virtual;
1140 vyres = var->yres_virtual;
1141
1142 switch (var->bits_per_pixel) {
1143 case 8:
1144 par->pixconf = PIXCONF8;
1145 par->bltcntl = 0;
1146 par->depth = 1;
1147 par->blit_bpp = BPP8;
1148 break;
1149 case 16:
1150 if (var->green.length == 5)
1151 par->pixconf = PIXCONF15;
1152 else
1153 par->pixconf = PIXCONF16;
1154 par->bltcntl = 16;
1155 par->depth = 2;
1156 par->blit_bpp = BPP16;
1157 break;
1158 case 24:
1159 par->pixconf = PIXCONF24;
1160 par->bltcntl = 32;
1161 par->depth = 3;
1162 par->blit_bpp = BPP24;
1163 break;
1164 case 32:
1165 par->pixconf = PIXCONF32;
1166 par->bltcntl = 0;
1167 par->depth = 4;
1168 par->blit_bpp = 3 << 24;
1169 break;
1170 }
1171 if (var->nonstd && var->bits_per_pixel != 8)
1172 par->pixconf |= 1 << 27;
1173
1174 i810_calc_dclk(var->pixclock, &par->regs.M,
1175 &par->regs.N, &par->regs.P);
1176 i810fb_encode_registers(var, par, xres, yres);
1177
1178 par->watermark = i810_get_watermark(var, par);
1179 par->pitch = get_line_length(par, vxres, var->bits_per_pixel);
1180}
1181
1182/**
1183 * i810fb_getcolreg - gets red, green and blue values of the hardware DAC
1184 * @regno: DAC index
1185 * @red: red
1186 * @green: green
1187 * @blue: blue
1188 * @transp: transparency (alpha)
1189 * @info: pointer to fb_info
1190 *
1191 * DESCRIPTION:
1192 * Gets the red, green and blue values of the hardware DAC as pointed by @regno
1193 * and writes them to @red, @green and @blue respectively
1194 */
1195static int i810fb_getcolreg(u8 regno, u8 *red, u8 *green, u8 *blue,
1196 u8 *transp, struct fb_info *info)
1197{
Antonino A. Daplasc019c0e2006-01-09 20:53:03 -08001198 struct i810fb_par *par = info->par;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 u8 __iomem *mmio = par->mmio_start_virtual;
1200 u8 temp;
1201
1202 if (info->fix.visual == FB_VISUAL_DIRECTCOLOR) {
1203 if ((info->var.green.length == 5 && regno > 31) ||
1204 (info->var.green.length == 6 && regno > 63))
1205 return 1;
1206 }
1207
1208 temp = i810_readb(PIXCONF1, mmio);
1209 i810_writeb(PIXCONF1, mmio, temp & ~EXTENDED_PALETTE);
1210
1211 if (info->fix.visual == FB_VISUAL_DIRECTCOLOR &&
1212 info->var.green.length == 5)
1213 i810_read_dac(regno * 8, red, green, blue, mmio);
1214
1215 else if (info->fix.visual == FB_VISUAL_DIRECTCOLOR &&
1216 info->var.green.length == 6) {
1217 u8 tmp;
1218
1219 i810_read_dac(regno * 8, red, &tmp, blue, mmio);
1220 i810_read_dac(regno * 4, &tmp, green, &tmp, mmio);
1221 }
1222 else
1223 i810_read_dac(regno, red, green, blue, mmio);
1224
1225 *transp = 0;
1226 i810_writeb(PIXCONF1, mmio, temp);
1227
1228 return 0;
1229}
1230
1231/******************************************************************
1232 * Framebuffer device-specific hooks *
1233 ******************************************************************/
1234
1235static int i810fb_open(struct fb_info *info, int user)
1236{
Antonino A. Daplasc019c0e2006-01-09 20:53:03 -08001237 struct i810fb_par *par = info->par;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 u32 count = atomic_read(&par->use_count);
1239
1240 if (count == 0) {
1241 memset(&par->state, 0, sizeof(struct vgastate));
1242 par->state.flags = VGA_SAVE_CMAP;
1243 par->state.vgabase = par->mmio_start_virtual;
1244 save_vga(&par->state);
1245
1246 i810_save_vga_state(par);
1247 }
1248
1249 atomic_inc(&par->use_count);
1250
1251 return 0;
1252}
1253
1254static int i810fb_release(struct fb_info *info, int user)
1255{
Antonino A. Daplasc019c0e2006-01-09 20:53:03 -08001256 struct i810fb_par *par = info->par;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 u32 count;
1258
1259 count = atomic_read(&par->use_count);
1260 if (count == 0)
1261 return -EINVAL;
1262
1263 if (count == 1) {
1264 i810_restore_vga_state(par);
1265 restore_vga(&par->state);
1266 }
1267
1268 atomic_dec(&par->use_count);
1269
1270 return 0;
1271}
1272
1273
1274static int i810fb_setcolreg(unsigned regno, unsigned red, unsigned green,
1275 unsigned blue, unsigned transp,
1276 struct fb_info *info)
1277{
Antonino A. Daplasc019c0e2006-01-09 20:53:03 -08001278 struct i810fb_par *par = info->par;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 u8 __iomem *mmio = par->mmio_start_virtual;
1280 u8 temp;
1281 int i;
1282
1283 if (regno > 255) return 1;
1284
1285 if (info->fix.visual == FB_VISUAL_DIRECTCOLOR) {
1286 if ((info->var.green.length == 5 && regno > 31) ||
1287 (info->var.green.length == 6 && regno > 63))
1288 return 1;
1289 }
1290
1291 if (info->var.grayscale)
1292 red = green = blue = (19595 * red + 38470 * green +
1293 7471 * blue) >> 16;
1294
1295 temp = i810_readb(PIXCONF1, mmio);
1296 i810_writeb(PIXCONF1, mmio, temp & ~EXTENDED_PALETTE);
1297
1298 if (info->fix.visual == FB_VISUAL_DIRECTCOLOR &&
1299 info->var.green.length == 5) {
1300 for (i = 0; i < 8; i++)
1301 i810_write_dac((u8) (regno * 8) + i, (u8) red,
1302 (u8) green, (u8) blue, mmio);
1303 } else if (info->fix.visual == FB_VISUAL_DIRECTCOLOR &&
1304 info->var.green.length == 6) {
1305 u8 r, g, b;
1306
1307 if (regno < 32) {
1308 for (i = 0; i < 8; i++)
1309 i810_write_dac((u8) (regno * 8) + i,
1310 (u8) red, (u8) green,
1311 (u8) blue, mmio);
1312 }
1313 i810_read_dac((u8) (regno*4), &r, &g, &b, mmio);
1314 for (i = 0; i < 4; i++)
1315 i810_write_dac((u8) (regno*4) + i, r, (u8) green,
1316 b, mmio);
1317 } else if (info->fix.visual == FB_VISUAL_PSEUDOCOLOR) {
1318 i810_write_dac((u8) regno, (u8) red, (u8) green,
1319 (u8) blue, mmio);
1320 }
1321
1322 i810_writeb(PIXCONF1, mmio, temp);
1323
1324 if (regno < 16) {
1325 switch (info->var.bits_per_pixel) {
1326 case 16:
1327 if (info->fix.visual == FB_VISUAL_DIRECTCOLOR) {
1328 if (info->var.green.length == 5)
1329 ((u32 *)info->pseudo_palette)[regno] =
1330 (regno << 10) | (regno << 5) |
1331 regno;
1332 else
1333 ((u32 *)info->pseudo_palette)[regno] =
1334 (regno << 11) | (regno << 5) |
1335 regno;
1336 } else {
1337 if (info->var.green.length == 5) {
1338 /* RGB 555 */
1339 ((u32 *)info->pseudo_palette)[regno] =
1340 ((red & 0xf800) >> 1) |
1341 ((green & 0xf800) >> 6) |
1342 ((blue & 0xf800) >> 11);
1343 } else {
1344 /* RGB 565 */
1345 ((u32 *)info->pseudo_palette)[regno] =
1346 (red & 0xf800) |
1347 ((green & 0xf800) >> 5) |
1348 ((blue & 0xf800) >> 11);
1349 }
1350 }
1351 break;
1352 case 24: /* RGB 888 */
1353 case 32: /* RGBA 8888 */
1354 if (info->fix.visual == FB_VISUAL_DIRECTCOLOR)
1355 ((u32 *)info->pseudo_palette)[regno] =
1356 (regno << 16) | (regno << 8) |
1357 regno;
1358 else
1359 ((u32 *)info->pseudo_palette)[regno] =
1360 ((red & 0xff00) << 8) |
1361 (green & 0xff00) |
1362 ((blue & 0xff00) >> 8);
1363 break;
1364 }
1365 }
1366 return 0;
1367}
1368
1369static int i810fb_pan_display(struct fb_var_screeninfo *var,
1370 struct fb_info *info)
1371{
Antonino A. Daplasc019c0e2006-01-09 20:53:03 -08001372 struct i810fb_par *par = info->par;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 u32 total;
1374
1375 total = var->xoffset * par->depth +
1376 var->yoffset * info->fix.line_length;
1377 i810fb_load_front(total, info);
1378
1379 return 0;
1380}
1381
1382static int i810fb_blank (int blank_mode, struct fb_info *info)
1383{
Antonino A. Daplasc019c0e2006-01-09 20:53:03 -08001384 struct i810fb_par *par = info->par;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 u8 __iomem *mmio = par->mmio_start_virtual;
1386 int mode = 0, pwr, scr_off = 0;
1387
1388 pwr = i810_readl(PWR_CLKC, mmio);
1389
1390 switch (blank_mode) {
1391 case FB_BLANK_UNBLANK:
1392 mode = POWERON;
1393 pwr |= 1;
1394 scr_off = ON;
1395 break;
1396 case FB_BLANK_NORMAL:
1397 mode = POWERON;
1398 pwr |= 1;
1399 scr_off = OFF;
1400 break;
1401 case FB_BLANK_VSYNC_SUSPEND:
1402 mode = STANDBY;
1403 pwr |= 1;
1404 scr_off = OFF;
1405 break;
1406 case FB_BLANK_HSYNC_SUSPEND:
1407 mode = SUSPEND;
1408 pwr |= 1;
1409 scr_off = OFF;
1410 break;
1411 case FB_BLANK_POWERDOWN:
1412 mode = POWERDOWN;
1413 pwr &= ~1;
1414 scr_off = OFF;
1415 break;
1416 default:
1417 return -EINVAL;
1418 }
1419
1420 i810_screen_off(mmio, scr_off);
1421 i810_writel(HVSYNC, mmio, mode);
1422 i810_writel(PWR_CLKC, mmio, pwr);
1423
1424 return 0;
1425}
1426
1427static int i810fb_set_par(struct fb_info *info)
1428{
Antonino A. Daplasc019c0e2006-01-09 20:53:03 -08001429 struct i810fb_par *par = info->par;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430
1431 decode_var(&info->var, par);
1432 i810_load_regs(par);
1433 i810_init_cursor(par);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 encode_fix(&info->fix, info);
1435
1436 if (info->var.accel_flags && !(par->dev_flags & LOCKUP)) {
1437 info->flags = FBINFO_DEFAULT | FBINFO_HWACCEL_YPAN |
1438 FBINFO_HWACCEL_COPYAREA | FBINFO_HWACCEL_FILLRECT |
1439 FBINFO_HWACCEL_IMAGEBLIT;
1440 info->pixmap.scan_align = 2;
1441 } else {
1442 info->pixmap.scan_align = 1;
1443 info->flags = FBINFO_DEFAULT | FBINFO_HWACCEL_YPAN;
1444 }
1445 return 0;
1446}
1447
1448static int i810fb_check_var(struct fb_var_screeninfo *var,
1449 struct fb_info *info)
1450{
1451 int err;
1452
1453 if (IS_DVT) {
1454 var->vmode &= ~FB_VMODE_MASK;
1455 var->vmode |= FB_VMODE_NONINTERLACED;
1456 }
1457 if (var->vmode & FB_VMODE_DOUBLE) {
1458 var->vmode &= ~FB_VMODE_MASK;
1459 var->vmode |= FB_VMODE_NONINTERLACED;
1460 }
1461
1462 i810_round_off(var);
1463 if ((err = i810_check_params(var, info)))
1464 return err;
1465
1466 i810fb_fill_var_timings(var);
1467 set_color_bitfields(var);
1468 return 0;
1469}
1470
1471static int i810fb_cursor(struct fb_info *info, struct fb_cursor *cursor)
1472{
Antonino A. Daplasc019c0e2006-01-09 20:53:03 -08001473 struct i810fb_par *par = info->par;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 u8 __iomem *mmio = par->mmio_start_virtual;
1475
James Simmons4c7ffe02005-09-09 13:04:31 -07001476 if (!par->dev_flags & LOCKUP)
1477 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478
1479 if (cursor->image.width > 64 || cursor->image.height > 64)
1480 return -ENXIO;
1481
1482 if ((i810_readl(CURBASE, mmio) & 0xf) != par->cursor_heap.physical) {
1483 i810_init_cursor(par);
1484 cursor->set |= FB_CUR_SETALL;
1485 }
1486
1487 i810_enable_cursor(mmio, OFF);
1488
1489 if (cursor->set & FB_CUR_SETPOS) {
1490 u32 tmp;
1491
1492 tmp = (cursor->image.dx - info->var.xoffset) & 0xffff;
1493 tmp |= (cursor->image.dy - info->var.yoffset) << 16;
1494 i810_writel(CURPOS, mmio, tmp);
1495 }
1496
1497 if (cursor->set & FB_CUR_SETSIZE)
1498 i810_reset_cursor_image(par);
1499
1500 if (cursor->set & FB_CUR_SETCMAP)
1501 i810_load_cursor_colors(cursor->image.fg_color,
1502 cursor->image.bg_color,
1503 info);
1504
1505 if (cursor->set & (FB_CUR_SETSHAPE | FB_CUR_SETIMAGE)) {
1506 int size = ((cursor->image.width + 7) >> 3) *
1507 cursor->image.height;
1508 int i;
Antonino A. Daplas8a2cda02006-03-22 00:07:36 -08001509 u8 *data = kmalloc(64 * 8, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510
1511 if (data == NULL)
1512 return -ENOMEM;
1513
1514 switch (cursor->rop) {
1515 case ROP_XOR:
1516 for (i = 0; i < size; i++)
1517 data[i] = cursor->image.data[i] ^ cursor->mask[i];
1518 break;
1519 case ROP_COPY:
1520 default:
1521 for (i = 0; i < size; i++)
1522 data[i] = cursor->image.data[i] & cursor->mask[i];
1523 break;
1524 }
1525
1526 i810_load_cursor_image(cursor->image.width,
1527 cursor->image.height, data,
1528 par);
1529 kfree(data);
1530 }
1531
1532 if (cursor->enable)
1533 i810_enable_cursor(mmio, ON);
1534
1535 return 0;
1536}
1537
1538static struct fb_ops i810fb_ops __devinitdata = {
1539 .owner = THIS_MODULE,
1540 .fb_open = i810fb_open,
1541 .fb_release = i810fb_release,
1542 .fb_check_var = i810fb_check_var,
1543 .fb_set_par = i810fb_set_par,
1544 .fb_setcolreg = i810fb_setcolreg,
1545 .fb_blank = i810fb_blank,
1546 .fb_pan_display = i810fb_pan_display,
1547 .fb_fillrect = i810fb_fillrect,
1548 .fb_copyarea = i810fb_copyarea,
1549 .fb_imageblit = i810fb_imageblit,
1550 .fb_cursor = i810fb_cursor,
1551 .fb_sync = i810fb_sync,
1552};
1553
1554/***********************************************************************
1555 * Power Management *
1556 ***********************************************************************/
David Brownellc78a7c22006-08-14 23:11:06 -07001557static int i810fb_suspend(struct pci_dev *dev, pm_message_t mesg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558{
1559 struct fb_info *info = pci_get_drvdata(dev);
Antonino A. Daplasc019c0e2006-01-09 20:53:03 -08001560 struct i810fb_par *par = info->par;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561
David Brownellc78a7c22006-08-14 23:11:06 -07001562 par->cur_state = mesg.event;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563
David Brownellc78a7c22006-08-14 23:11:06 -07001564 switch (mesg.event) {
1565 case PM_EVENT_FREEZE:
1566 case PM_EVENT_PRETHAW:
1567 dev->dev.power.power_state = mesg;
Antonino A. Daplasc5eec032006-01-09 20:53:43 -08001568 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570
Antonino A. Daplasc5eec032006-01-09 20:53:43 -08001571 acquire_console_sem();
1572 fb_set_suspend(info, 1);
1573
1574 if (info->fbops->fb_sync)
1575 info->fbops->fb_sync(info);
1576
1577 i810fb_blank(FB_BLANK_POWERDOWN, info);
1578 agp_unbind_memory(par->i810_gtt.i810_fb_memory);
1579 agp_unbind_memory(par->i810_gtt.i810_cursor_memory);
1580
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 pci_save_state(dev);
Antonino A. Daplasc5eec032006-01-09 20:53:43 -08001582 pci_disable_device(dev);
David Brownellc78a7c22006-08-14 23:11:06 -07001583 pci_set_power_state(dev, pci_choose_state(dev, mesg));
Antonino A. Daplasc5eec032006-01-09 20:53:43 -08001584 release_console_sem();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585
1586 return 0;
1587}
1588
1589static int i810fb_resume(struct pci_dev *dev)
1590{
1591 struct fb_info *info = pci_get_drvdata(dev);
Antonino A. Daplasc019c0e2006-01-09 20:53:03 -08001592 struct i810fb_par *par = info->par;
Antonino A. Daplasc5eec032006-01-09 20:53:43 -08001593 int cur_state = par->cur_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594
Antonino A. Daplasc5eec032006-01-09 20:53:43 -08001595 par->cur_state = PM_EVENT_ON;
1596
1597 if (cur_state == PM_EVENT_FREEZE) {
1598 pci_set_power_state(dev, PCI_D0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 return 0;
Antonino A. Daplasc5eec032006-01-09 20:53:43 -08001600 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601
Antonino A. Daplasc5eec032006-01-09 20:53:43 -08001602 acquire_console_sem();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 pci_set_power_state(dev, PCI_D0);
Antonino A. Daplasc5eec032006-01-09 20:53:43 -08001604 pci_restore_state(dev);
Antonino A. Daplas9237ed02006-10-03 01:14:54 -07001605
1606 if (pci_enable_device(dev))
1607 goto fail;
1608
Antonino A. Daplasc5eec032006-01-09 20:53:43 -08001609 pci_set_master(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 agp_bind_memory(par->i810_gtt.i810_fb_memory,
1611 par->fb.offset);
1612 agp_bind_memory(par->i810_gtt.i810_cursor_memory,
1613 par->cursor_heap.offset);
Antonino A. Daplasc5eec032006-01-09 20:53:43 -08001614 i810fb_set_par(info);
1615 fb_set_suspend (info, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 info->fbops->fb_blank(VESA_NO_BLANKING, info);
Antonino A. Daplas9237ed02006-10-03 01:14:54 -07001617fail:
Antonino A. Daplasc5eec032006-01-09 20:53:43 -08001618 release_console_sem();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 return 0;
1620}
1621/***********************************************************************
1622 * AGP resource allocation *
1623 ***********************************************************************/
1624
1625static void __devinit i810_fix_pointers(struct i810fb_par *par)
1626{
1627 par->fb.physical = par->aperture.physical+(par->fb.offset << 12);
1628 par->fb.virtual = par->aperture.virtual+(par->fb.offset << 12);
1629 par->iring.physical = par->aperture.physical +
1630 (par->iring.offset << 12);
1631 par->iring.virtual = par->aperture.virtual +
1632 (par->iring.offset << 12);
1633 par->cursor_heap.virtual = par->aperture.virtual+
1634 (par->cursor_heap.offset << 12);
1635}
1636
1637static void __devinit i810_fix_offsets(struct i810fb_par *par)
1638{
1639 if (vram + 1 > par->aperture.size >> 20)
1640 vram = (par->aperture.size >> 20) - 1;
1641 if (v_offset_default > (par->aperture.size >> 20))
1642 v_offset_default = (par->aperture.size >> 20);
1643 if (vram + v_offset_default + 1 > par->aperture.size >> 20)
1644 v_offset_default = (par->aperture.size >> 20) - (vram + 1);
1645
1646 par->fb.size = vram << 20;
1647 par->fb.offset = v_offset_default << 20;
1648 par->fb.offset >>= 12;
1649
1650 par->iring.offset = par->fb.offset + (par->fb.size >> 12);
1651 par->iring.size = RINGBUFFER_SIZE;
1652
1653 par->cursor_heap.offset = par->iring.offset + (RINGBUFFER_SIZE >> 12);
1654 par->cursor_heap.size = 4096;
1655}
1656
1657static int __devinit i810_alloc_agp_mem(struct fb_info *info)
1658{
Antonino A. Daplasc019c0e2006-01-09 20:53:03 -08001659 struct i810fb_par *par = info->par;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 int size;
1661 struct agp_bridge_data *bridge;
1662
1663 i810_fix_offsets(par);
1664 size = par->fb.size + par->iring.size;
1665
1666 if (!(bridge = agp_backend_acquire(par->dev))) {
1667 printk("i810fb_alloc_fbmem: cannot acquire agpgart\n");
1668 return -ENODEV;
1669 }
1670 if (!(par->i810_gtt.i810_fb_memory =
1671 agp_allocate_memory(bridge, size >> 12, AGP_NORMAL_MEMORY))) {
1672 printk("i810fb_alloc_fbmem: can't allocate framebuffer "
1673 "memory\n");
1674 agp_backend_release(bridge);
1675 return -ENOMEM;
1676 }
1677 if (agp_bind_memory(par->i810_gtt.i810_fb_memory,
1678 par->fb.offset)) {
1679 printk("i810fb_alloc_fbmem: can't bind framebuffer memory\n");
1680 agp_backend_release(bridge);
1681 return -EBUSY;
1682 }
1683
1684 if (!(par->i810_gtt.i810_cursor_memory =
1685 agp_allocate_memory(bridge, par->cursor_heap.size >> 12,
1686 AGP_PHYSICAL_MEMORY))) {
1687 printk("i810fb_alloc_cursormem: can't allocate"
1688 "cursor memory\n");
1689 agp_backend_release(bridge);
1690 return -ENOMEM;
1691 }
1692 if (agp_bind_memory(par->i810_gtt.i810_cursor_memory,
1693 par->cursor_heap.offset)) {
1694 printk("i810fb_alloc_cursormem: cannot bind cursor memory\n");
1695 agp_backend_release(bridge);
1696 return -EBUSY;
1697 }
1698
1699 par->cursor_heap.physical = par->i810_gtt.i810_cursor_memory->physical;
1700
1701 i810_fix_pointers(par);
1702
1703 agp_backend_release(bridge);
1704
1705 return 0;
1706}
1707
1708/***************************************************************
1709 * Initialization *
1710 ***************************************************************/
1711
1712/**
1713 * i810_init_monspecs
1714 * @info: pointer to device specific info structure
1715 *
1716 * DESCRIPTION:
1717 * Sets the the user monitor's horizontal and vertical
1718 * frequency limits
1719 */
1720static void __devinit i810_init_monspecs(struct fb_info *info)
1721{
1722 if (!hsync1)
1723 hsync1 = HFMIN;
1724 if (!hsync2)
1725 hsync2 = HFMAX;
1726 if (!info->monspecs.hfmax)
1727 info->monspecs.hfmax = hsync2;
1728 if (!info->monspecs.hfmin)
1729 info->monspecs.hfmin = hsync1;
1730 if (hsync2 < hsync1)
1731 info->monspecs.hfmin = hsync2;
1732
1733 if (!vsync1)
1734 vsync1 = VFMIN;
1735 if (!vsync2)
1736 vsync2 = VFMAX;
1737 if (IS_DVT && vsync1 < 60)
1738 vsync1 = 60;
1739 if (!info->monspecs.vfmax)
1740 info->monspecs.vfmax = vsync2;
1741 if (!info->monspecs.vfmin)
1742 info->monspecs.vfmin = vsync1;
1743 if (vsync2 < vsync1)
1744 info->monspecs.vfmin = vsync2;
1745}
1746
1747/**
1748 * i810_init_defaults - initializes default values to use
1749 * @par: pointer to i810fb_par structure
1750 * @info: pointer to current fb_info structure
1751 */
1752static void __devinit i810_init_defaults(struct i810fb_par *par,
1753 struct fb_info *info)
1754{
1755 if (voffset)
1756 v_offset_default = voffset;
1757 else if (par->aperture.size > 32 * 1024 * 1024)
1758 v_offset_default = 16;
1759 else
1760 v_offset_default = 8;
1761
1762 if (!vram)
1763 vram = 1;
1764
1765 if (accel)
1766 par->dev_flags |= HAS_ACCELERATION;
1767
1768 if (sync)
1769 par->dev_flags |= ALWAYS_SYNC;
1770
Manuel Lauss00d340b92006-02-01 03:06:54 -08001771 par->ddc_num = ddc3;
1772
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 if (bpp < 8)
1774 bpp = 8;
1775
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 par->i810fb_ops = i810fb_ops;
Antonino A. Daplas595e8a92005-09-12 09:15:16 +08001777
1778 if (xres)
1779 info->var.xres = xres;
1780 else
1781 info->var.xres = 640;
1782
1783 if (yres)
1784 info->var.yres = yres;
1785 else
1786 info->var.yres = 480;
1787
1788 if (!vyres)
1789 vyres = (vram << 20)/(info->var.xres*bpp >> 3);
1790
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 info->var.yres_virtual = vyres;
1792 info->var.bits_per_pixel = bpp;
1793
1794 if (dcolor)
1795 info->var.nonstd = 1;
1796
1797 if (par->dev_flags & HAS_ACCELERATION)
1798 info->var.accel_flags = 1;
1799
1800 i810_init_monspecs(info);
1801}
1802
1803/**
1804 * i810_init_device - initialize device
1805 * @par: pointer to i810fb_par structure
1806 */
1807static void __devinit i810_init_device(struct i810fb_par *par)
1808{
1809 u8 reg;
1810 u8 __iomem *mmio = par->mmio_start_virtual;
1811
1812 if (mtrr) set_mtrr(par);
1813
1814 i810_init_cursor(par);
1815
1816 /* mvo: enable external vga-connector (for laptops) */
Antonino A. Daplas747a5052005-09-12 09:16:47 +08001817 if (extvga) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 i810_writel(HVSYNC, mmio, 0);
1819 i810_writel(PWR_CLKC, mmio, 3);
1820 }
1821
1822 pci_read_config_byte(par->dev, 0x50, &reg);
1823 reg &= FREQ_MASK;
1824 par->mem_freq = (reg) ? 133 : 100;
1825
1826}
1827
1828static int __devinit
1829i810_allocate_pci_resource(struct i810fb_par *par,
1830 const struct pci_device_id *entry)
1831{
1832 int err;
1833
1834 if ((err = pci_enable_device(par->dev))) {
1835 printk("i810fb_init: cannot enable device\n");
1836 return err;
1837 }
1838 par->res_flags |= PCI_DEVICE_ENABLED;
1839
1840 if (pci_resource_len(par->dev, 0) > 512 * 1024) {
1841 par->aperture.physical = pci_resource_start(par->dev, 0);
1842 par->aperture.size = pci_resource_len(par->dev, 0);
1843 par->mmio_start_phys = pci_resource_start(par->dev, 1);
1844 } else {
1845 par->aperture.physical = pci_resource_start(par->dev, 1);
1846 par->aperture.size = pci_resource_len(par->dev, 1);
1847 par->mmio_start_phys = pci_resource_start(par->dev, 0);
1848 }
1849 if (!par->aperture.size) {
1850 printk("i810fb_init: device is disabled\n");
1851 return -ENOMEM;
1852 }
1853
1854 if (!request_mem_region(par->aperture.physical,
1855 par->aperture.size,
1856 i810_pci_list[entry->driver_data])) {
1857 printk("i810fb_init: cannot request framebuffer region\n");
1858 return -ENODEV;
1859 }
1860 par->res_flags |= FRAMEBUFFER_REQ;
1861
1862 par->aperture.virtual = ioremap_nocache(par->aperture.physical,
1863 par->aperture.size);
1864 if (!par->aperture.virtual) {
1865 printk("i810fb_init: cannot remap framebuffer region\n");
1866 return -ENODEV;
1867 }
1868
1869 if (!request_mem_region(par->mmio_start_phys,
1870 MMIO_SIZE,
1871 i810_pci_list[entry->driver_data])) {
1872 printk("i810fb_init: cannot request mmio region\n");
1873 return -ENODEV;
1874 }
1875 par->res_flags |= MMIO_REQ;
1876
1877 par->mmio_start_virtual = ioremap_nocache(par->mmio_start_phys,
1878 MMIO_SIZE);
1879 if (!par->mmio_start_virtual) {
1880 printk("i810fb_init: cannot remap mmio region\n");
1881 return -ENODEV;
1882 }
1883
1884 return 0;
1885}
1886
Antonino A. Daplas74f6ae82005-09-09 13:10:04 -07001887static void __devinit i810fb_find_init_mode(struct fb_info *info)
1888{
1889 struct fb_videomode mode;
1890 struct fb_var_screeninfo var;
Antonino A. Daplas883f6452005-09-12 09:13:32 +08001891 struct fb_monspecs *specs = &info->monspecs;
Antonino A. Daplas74f6ae82005-09-09 13:10:04 -07001892 int found = 0;
1893#ifdef CONFIG_FB_I810_I2C
1894 int i;
Manuel Lauss00d340b92006-02-01 03:06:54 -08001895 int err = 1;
Antonino A. Daplas74f6ae82005-09-09 13:10:04 -07001896 struct i810fb_par *par = info->par;
1897#endif
1898
1899 INIT_LIST_HEAD(&info->modelist);
1900 memset(&mode, 0, sizeof(struct fb_videomode));
1901 var = info->var;
1902#ifdef CONFIG_FB_I810_I2C
1903 i810_create_i2c_busses(par);
1904
Manuel Lauss00d340b92006-02-01 03:06:54 -08001905 for (i = 0; i < par->ddc_num + 1; i++) {
1906 err = i810_probe_i2c_connector(info, &par->edid, i);
Antonino A. Daplas74f6ae82005-09-09 13:10:04 -07001907 if (!err)
1908 break;
1909 }
1910
1911 if (!err)
1912 printk("i810fb_init_pci: DDC probe successful\n");
1913
Antonino A. Daplas883f6452005-09-12 09:13:32 +08001914 fb_edid_to_monspecs(par->edid, specs);
Antonino A. Daplas74f6ae82005-09-09 13:10:04 -07001915
Antonino A. Daplas883f6452005-09-12 09:13:32 +08001916 if (specs->modedb == NULL)
Antonino A. Daplas74f6ae82005-09-09 13:10:04 -07001917 printk("i810fb_init_pci: Unable to get Mode Database\n");
1918
Antonino A. Daplas74f6ae82005-09-09 13:10:04 -07001919 fb_videomode_to_modelist(specs->modedb, specs->modedb_len,
1920 &info->modelist);
1921 if (specs->modedb != NULL) {
Antonino A. Daplas5ee1ef92005-11-07 01:00:55 -08001922 struct fb_videomode *m;
Antonino A. Daplas595e8a92005-09-12 09:15:16 +08001923
Antonino A. Daplas5ee1ef92005-11-07 01:00:55 -08001924 if (xres && yres) {
Antonino A. Daplas595e8a92005-09-12 09:15:16 +08001925 if ((m = fb_find_best_mode(&var, &info->modelist))) {
1926 mode = *m;
1927 found = 1;
1928 }
1929 }
1930
Antonino A. Daplas74f6ae82005-09-09 13:10:04 -07001931 if (!found) {
Antonino A. Daplas5ee1ef92005-11-07 01:00:55 -08001932 m = fb_find_best_display(&info->monspecs, &info->modelist);
1933 mode = *m;
Antonino A. Daplas74f6ae82005-09-09 13:10:04 -07001934 found = 1;
1935 }
1936
1937 fb_videomode_to_var(&var, &mode);
1938 }
1939#endif
1940 if (mode_option)
1941 fb_find_mode(&var, info, mode_option, specs->modedb,
1942 specs->modedb_len, (found) ? &mode : NULL,
1943 info->var.bits_per_pixel);
1944
1945 info->var = var;
1946 fb_destroy_modedb(specs->modedb);
1947 specs->modedb = NULL;
1948}
1949
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950#ifndef MODULE
Antonino A. Daplas74f6ae82005-09-09 13:10:04 -07001951static int __devinit i810fb_setup(char *options)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952{
1953 char *this_opt, *suffix = NULL;
1954
1955 if (!options || !*options)
1956 return 0;
1957
1958 while ((this_opt = strsep(&options, ",")) != NULL) {
1959 if (!strncmp(this_opt, "mtrr", 4))
1960 mtrr = 1;
1961 else if (!strncmp(this_opt, "accel", 5))
1962 accel = 1;
Antonino A. Daplas747a5052005-09-12 09:16:47 +08001963 else if (!strncmp(this_opt, "extvga", 6))
1964 extvga = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 else if (!strncmp(this_opt, "sync", 4))
1966 sync = 1;
1967 else if (!strncmp(this_opt, "vram:", 5))
1968 vram = (simple_strtoul(this_opt+5, NULL, 0));
1969 else if (!strncmp(this_opt, "voffset:", 8))
1970 voffset = (simple_strtoul(this_opt+8, NULL, 0));
1971 else if (!strncmp(this_opt, "xres:", 5))
1972 xres = simple_strtoul(this_opt+5, NULL, 0);
1973 else if (!strncmp(this_opt, "yres:", 5))
1974 yres = simple_strtoul(this_opt+5, NULL, 0);
1975 else if (!strncmp(this_opt, "vyres:", 6))
1976 vyres = simple_strtoul(this_opt+6, NULL, 0);
1977 else if (!strncmp(this_opt, "bpp:", 4))
1978 bpp = simple_strtoul(this_opt+4, NULL, 0);
1979 else if (!strncmp(this_opt, "hsync1:", 7)) {
1980 hsync1 = simple_strtoul(this_opt+7, &suffix, 0);
1981 if (strncmp(suffix, "H", 1))
1982 hsync1 *= 1000;
1983 } else if (!strncmp(this_opt, "hsync2:", 7)) {
1984 hsync2 = simple_strtoul(this_opt+7, &suffix, 0);
1985 if (strncmp(suffix, "H", 1))
1986 hsync2 *= 1000;
1987 } else if (!strncmp(this_opt, "vsync1:", 7))
1988 vsync1 = simple_strtoul(this_opt+7, NULL, 0);
1989 else if (!strncmp(this_opt, "vsync2:", 7))
1990 vsync2 = simple_strtoul(this_opt+7, NULL, 0);
1991 else if (!strncmp(this_opt, "dcolor", 6))
1992 dcolor = 1;
Manuel Lauss00d340b92006-02-01 03:06:54 -08001993 else if (!strncmp(this_opt, "ddc3", 4))
1994 ddc3 = 3;
Antonino A. Daplas74f6ae82005-09-09 13:10:04 -07001995 else
1996 mode_option = this_opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 }
1998 return 0;
1999}
2000#endif
2001
2002static int __devinit i810fb_init_pci (struct pci_dev *dev,
2003 const struct pci_device_id *entry)
2004{
2005 struct fb_info *info;
2006 struct i810fb_par *par = NULL;
Antonino A. Daplas74f6ae82005-09-09 13:10:04 -07002007 struct fb_videomode mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 int i, err = -1, vfreq, hfreq, pixclock;
2009
2010 i = 0;
2011
2012 info = framebuffer_alloc(sizeof(struct i810fb_par), &dev->dev);
2013 if (!info)
2014 return -ENOMEM;
2015
Antonino A. Daplas74f6ae82005-09-09 13:10:04 -07002016 par = info->par;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 par->dev = dev;
2018
2019 if (!(info->pixmap.addr = kmalloc(8*1024, GFP_KERNEL))) {
2020 i810fb_release_resource(info, par);
2021 return -ENOMEM;
2022 }
2023 memset(info->pixmap.addr, 0, 8*1024);
2024 info->pixmap.size = 8*1024;
2025 info->pixmap.buf_align = 8;
James Simmons58a60642005-06-21 17:17:08 -07002026 info->pixmap.access_align = 32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 info->pixmap.flags = FB_PIXMAP_SYSTEM;
2028
2029 if ((err = i810_allocate_pci_resource(par, entry))) {
2030 i810fb_release_resource(info, par);
2031 return err;
2032 }
2033
2034 i810_init_defaults(par, info);
2035
2036 if ((err = i810_alloc_agp_mem(info))) {
2037 i810fb_release_resource(info, par);
2038 return err;
2039 }
2040
2041 i810_init_device(par);
2042
2043 info->screen_base = par->fb.virtual;
2044 info->fbops = &par->i810fb_ops;
2045 info->pseudo_palette = par->pseudo_palette;
2046 fb_alloc_cmap(&info->cmap, 256, 0);
Antonino A. Daplas74f6ae82005-09-09 13:10:04 -07002047 i810fb_find_init_mode(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048
2049 if ((err = info->fbops->fb_check_var(&info->var, info))) {
2050 i810fb_release_resource(info, par);
2051 return err;
2052 }
Antonino A. Daplas74f6ae82005-09-09 13:10:04 -07002053
2054 fb_var_to_videomode(&mode, &info->var);
2055 fb_add_videomode(&mode, &info->modelist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 encode_fix(&info->fix, info);
2057
2058 i810fb_init_ringbuffer(info);
2059 err = register_framebuffer(info);
Antonino A. Daplas74f6ae82005-09-09 13:10:04 -07002060
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 if (err < 0) {
2062 i810fb_release_resource(info, par);
2063 printk("i810fb_init: cannot register framebuffer device\n");
2064 return err;
2065 }
2066
2067 pci_set_drvdata(dev, info);
2068 pixclock = 1000000000/(info->var.pixclock);
2069 pixclock *= 1000;
2070 hfreq = pixclock/(info->var.xres + info->var.left_margin +
2071 info->var.hsync_len + info->var.right_margin);
2072 vfreq = hfreq/(info->var.yres + info->var.upper_margin +
2073 info->var.vsync_len + info->var.lower_margin);
2074
2075 printk("I810FB: fb%d : %s v%d.%d.%d%s\n"
2076 "I810FB: Video RAM : %dK\n"
2077 "I810FB: Monitor : H: %d-%d KHz V: %d-%d Hz\n"
2078 "I810FB: Mode : %dx%d-%dbpp@%dHz\n",
2079 info->node,
2080 i810_pci_list[entry->driver_data],
2081 VERSION_MAJOR, VERSION_MINOR, VERSION_TEENIE, BRANCH_VERSION,
2082 (int) par->fb.size>>10, info->monspecs.hfmin/1000,
2083 info->monspecs.hfmax/1000, info->monspecs.vfmin,
2084 info->monspecs.vfmax, info->var.xres,
2085 info->var.yres, info->var.bits_per_pixel, vfreq);
2086 return 0;
2087}
2088
2089/***************************************************************
2090 * De-initialization *
2091 ***************************************************************/
2092
2093static void i810fb_release_resource(struct fb_info *info,
2094 struct i810fb_par *par)
2095{
2096 struct gtt_data *gtt = &par->i810_gtt;
2097 unset_mtrr(par);
2098
Antonino A. Daplas74f6ae82005-09-09 13:10:04 -07002099 i810_delete_i2c_busses(par);
2100
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 if (par->i810_gtt.i810_cursor_memory)
2102 agp_free_memory(gtt->i810_cursor_memory);
2103 if (par->i810_gtt.i810_fb_memory)
2104 agp_free_memory(gtt->i810_fb_memory);
2105
2106 if (par->mmio_start_virtual)
2107 iounmap(par->mmio_start_virtual);
2108 if (par->aperture.virtual)
2109 iounmap(par->aperture.virtual);
Jesper Juhl6044ec82005-11-07 01:01:32 -08002110 kfree(par->edid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 if (par->res_flags & FRAMEBUFFER_REQ)
2112 release_mem_region(par->aperture.physical,
2113 par->aperture.size);
2114 if (par->res_flags & MMIO_REQ)
2115 release_mem_region(par->mmio_start_phys, MMIO_SIZE);
2116
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 framebuffer_release(info);
2118
2119}
2120
2121static void __exit i810fb_remove_pci(struct pci_dev *dev)
2122{
2123 struct fb_info *info = pci_get_drvdata(dev);
Antonino A. Daplasc019c0e2006-01-09 20:53:03 -08002124 struct i810fb_par *par = info->par;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125
2126 unregister_framebuffer(info);
2127 i810fb_release_resource(info, par);
2128 pci_set_drvdata(dev, NULL);
2129 printk("cleanup_module: unloaded i810 framebuffer device\n");
2130}
2131
2132#ifndef MODULE
Antonino A. Daplas74f6ae82005-09-09 13:10:04 -07002133static int __devinit i810fb_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134{
2135 char *option = NULL;
2136
2137 if (fb_get_options("i810fb", &option))
2138 return -ENODEV;
2139 i810fb_setup(option);
2140
2141 return pci_register_driver(&i810fb_driver);
2142}
2143#endif
2144
2145/*********************************************************************
2146 * Modularization *
2147 *********************************************************************/
2148
2149#ifdef MODULE
2150
Antonino A. Daplas74f6ae82005-09-09 13:10:04 -07002151static int __devinit i810fb_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152{
2153 hsync1 *= 1000;
2154 hsync2 *= 1000;
2155
2156 return pci_register_driver(&i810fb_driver);
2157}
2158
2159module_param(vram, int, 0);
2160MODULE_PARM_DESC(vram, "System RAM to allocate to framebuffer in MiB"
2161 " (default=4)");
2162module_param(voffset, int, 0);
2163MODULE_PARM_DESC(voffset, "at what offset to place start of framebuffer "
2164 "memory (0 to maximum aperture size), in MiB (default = 48)");
2165module_param(bpp, int, 0);
2166MODULE_PARM_DESC(bpp, "Color depth for display in bits per pixel"
2167 " (default = 8)");
2168module_param(xres, int, 0);
2169MODULE_PARM_DESC(xres, "Horizontal resolution in pixels (default = 640)");
2170module_param(yres, int, 0);
2171MODULE_PARM_DESC(yres, "Vertical resolution in scanlines (default = 480)");
2172module_param(vyres,int, 0);
2173MODULE_PARM_DESC(vyres, "Virtual vertical resolution in scanlines"
2174 " (default = 480)");
2175module_param(hsync1, int, 0);
2176MODULE_PARM_DESC(hsync1, "Minimum horizontal frequency of monitor in KHz"
Denis Vlasenkodb9f1d92005-05-01 08:59:24 -07002177 " (default = 29)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178module_param(hsync2, int, 0);
2179MODULE_PARM_DESC(hsync2, "Maximum horizontal frequency of monitor in KHz"
Denis Vlasenkodb9f1d92005-05-01 08:59:24 -07002180 " (default = 30)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181module_param(vsync1, int, 0);
2182MODULE_PARM_DESC(vsync1, "Minimum vertical frequency of monitor in Hz"
2183 " (default = 50)");
2184module_param(vsync2, int, 0);
2185MODULE_PARM_DESC(vsync2, "Maximum vertical frequency of monitor in Hz"
2186 " (default = 60)");
2187module_param(accel, bool, 0);
2188MODULE_PARM_DESC(accel, "Use Acceleration (BLIT) engine (default = 0)");
2189module_param(mtrr, bool, 0);
2190MODULE_PARM_DESC(mtrr, "Use MTRR (default = 0)");
Antonino A. Daplas747a5052005-09-12 09:16:47 +08002191module_param(extvga, bool, 0);
2192MODULE_PARM_DESC(extvga, "Enable external VGA connector (default = 0)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193module_param(sync, bool, 0);
2194MODULE_PARM_DESC(sync, "wait for accel engine to finish drawing"
2195 " (default = 0)");
2196module_param(dcolor, bool, 0);
2197MODULE_PARM_DESC(dcolor, "use DirectColor visuals"
2198 " (default = 0 = TrueColor)");
Manuel Lauss00d340b92006-02-01 03:06:54 -08002199module_param(ddc3, bool, 0);
2200MODULE_PARM_DESC(ddc3, "Probe DDC bus 3 (default = 0 = no)");
Antonino A. Daplas74f6ae82005-09-09 13:10:04 -07002201module_param(mode_option, charp, 0);
2202MODULE_PARM_DESC(mode_option, "Specify initial video mode");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203
2204MODULE_AUTHOR("Tony A. Daplas");
2205MODULE_DESCRIPTION("Framebuffer device for the Intel 810/815 and"
2206 " compatible cards");
2207MODULE_LICENSE("GPL");
2208
2209static void __exit i810fb_exit(void)
2210{
2211 pci_unregister_driver(&i810fb_driver);
2212}
2213module_exit(i810fb_exit);
2214
2215#endif /* MODULE */
2216
2217module_init(i810fb_init);