blob: 6249960b9393398163384293ff601f9798305aeb [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/drivers/video/neofb.c -- NeoMagic Framebuffer Driver
3 *
4 * Copyright (c) 2001-2002 Denis Oliver Kropp <dok@directfb.org>
5 *
6 *
7 * Card specific code is based on XFree86's neomagic driver.
8 * Framebuffer framework code is based on code of cyber2000fb.
9 *
10 * This file is subject to the terms and conditions of the GNU General
11 * Public License. See the file COPYING in the main directory of this
12 * archive for more details.
13 *
14 *
15 * 0.4.1
16 * - Cosmetic changes (dok)
17 *
18 * 0.4
19 * - Toshiba Libretto support, allow modes larger than LCD size if
20 * LCD is disabled, keep BIOS settings if internal/external display
21 * haven't been enabled explicitly
22 * (Thomas J. Moore <dark@mama.indstate.edu>)
23 *
24 * 0.3.3
25 * - Porting over to new fbdev api. (jsimmons)
26 *
27 * 0.3.2
28 * - got rid of all floating point (dok)
29 *
30 * 0.3.1
31 * - added module license (dok)
32 *
33 * 0.3
34 * - hardware accelerated clear and move for 2200 and above (dok)
35 * - maximum allowed dotclock is handled now (dok)
36 *
37 * 0.2.1
38 * - correct panning after X usage (dok)
39 * - added module and kernel parameters (dok)
40 * - no stretching if external display is enabled (dok)
41 *
42 * 0.2
43 * - initial version (dok)
44 *
45 *
46 * TODO
47 * - ioctl for internal/external switching
48 * - blanking
49 * - 32bit depth support, maybe impossible
50 * - disable pan-on-sync, need specs
51 *
52 * BUGS
53 * - white margin on bootup like with tdfxfb (colormap problem?)
54 *
55 */
56
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#include <linux/module.h>
58#include <linux/kernel.h>
59#include <linux/errno.h>
60#include <linux/string.h>
61#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#include <linux/slab.h>
63#include <linux/delay.h>
64#include <linux/fb.h>
65#include <linux/pci.h>
66#include <linux/init.h>
67#ifdef CONFIG_TOSHIBA
68#include <linux/toshiba.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070069#endif
70
71#include <asm/io.h>
72#include <asm/irq.h>
73#include <asm/pgtable.h>
74#include <asm/system.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76#ifdef CONFIG_MTRR
77#include <asm/mtrr.h>
78#endif
79
80#include <video/vga.h>
81#include <video/neomagic.h>
82
83#define NEOFB_VERSION "0.4.2"
84
85/* --------------------------------------------------------------------- */
86
87static int internal;
88static int external;
89static int libretto;
90static int nostretch;
91static int nopciburst;
92static char *mode_option __devinitdata = NULL;
93
94#ifdef MODULE
95
96MODULE_AUTHOR("(c) 2001-2002 Denis Oliver Kropp <dok@convergence.de>");
97MODULE_LICENSE("GPL");
98MODULE_DESCRIPTION("FBDev driver for NeoMagic PCI Chips");
99module_param(internal, bool, 0);
100MODULE_PARM_DESC(internal, "Enable output on internal LCD Display.");
101module_param(external, bool, 0);
102MODULE_PARM_DESC(external, "Enable output on external CRT.");
103module_param(libretto, bool, 0);
104MODULE_PARM_DESC(libretto, "Force Libretto 100/110 800x480 LCD.");
105module_param(nostretch, bool, 0);
106MODULE_PARM_DESC(nostretch,
107 "Disable stretching of modes smaller than LCD.");
108module_param(nopciburst, bool, 0);
109MODULE_PARM_DESC(nopciburst, "Disable PCI burst mode.");
110module_param(mode_option, charp, 0);
111MODULE_PARM_DESC(mode_option, "Preferred video mode ('640x480-8@60', etc)");
112
113#endif
114
115
116/* --------------------------------------------------------------------- */
117
118static biosMode bios8[] = {
119 {320, 240, 0x40},
120 {300, 400, 0x42},
121 {640, 400, 0x20},
122 {640, 480, 0x21},
123 {800, 600, 0x23},
124 {1024, 768, 0x25},
125};
126
127static biosMode bios16[] = {
128 {320, 200, 0x2e},
129 {320, 240, 0x41},
130 {300, 400, 0x43},
131 {640, 480, 0x31},
132 {800, 600, 0x34},
133 {1024, 768, 0x37},
134};
135
136static biosMode bios24[] = {
137 {640, 480, 0x32},
138 {800, 600, 0x35},
139 {1024, 768, 0x38}
140};
141
142#ifdef NO_32BIT_SUPPORT_YET
143/* FIXME: guessed values, wrong */
144static biosMode bios32[] = {
145 {640, 480, 0x33},
146 {800, 600, 0x36},
147 {1024, 768, 0x39}
148};
149#endif
150
151static inline void write_le32(int regindex, u32 val, const struct neofb_par *par)
152{
153 writel(val, par->neo2200 + par->cursorOff + regindex);
154}
155
156static int neoFindMode(int xres, int yres, int depth)
157{
158 int xres_s;
159 int i, size;
160 biosMode *mode;
161
162 switch (depth) {
163 case 8:
Tobias Klauserd1ae4182006-03-27 01:17:39 -0800164 size = ARRAY_SIZE(bios8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 mode = bios8;
166 break;
167 case 16:
Tobias Klauserd1ae4182006-03-27 01:17:39 -0800168 size = ARRAY_SIZE(bios16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 mode = bios16;
170 break;
171 case 24:
Tobias Klauserd1ae4182006-03-27 01:17:39 -0800172 size = ARRAY_SIZE(bios24);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 mode = bios24;
174 break;
175#ifdef NO_32BIT_SUPPORT_YET
176 case 32:
Tobias Klauserd1ae4182006-03-27 01:17:39 -0800177 size = ARRAY_SIZE(bios32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 mode = bios32;
179 break;
180#endif
181 default:
182 return 0;
183 }
184
185 for (i = 0; i < size; i++) {
186 if (xres <= mode[i].x_res) {
187 xres_s = mode[i].x_res;
188 for (; i < size; i++) {
189 if (mode[i].x_res != xres_s)
190 return mode[i - 1].mode;
191 if (yres <= mode[i].y_res)
192 return mode[i].mode;
193 }
194 }
195 }
196 return mode[size - 1].mode;
197}
198
199/*
200 * neoCalcVCLK --
201 *
202 * Determine the closest clock frequency to the one requested.
203 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204#define MAX_N 127
205#define MAX_D 31
206#define MAX_F 1
207
208static void neoCalcVCLK(const struct fb_info *info,
209 struct neofb_par *par, long freq)
210{
211 int n, d, f;
212 int n_best = 0, d_best = 0, f_best = 0;
Krzysztof Helt7fc80b72008-07-23 21:31:44 -0700213 long f_best_diff = 0x7ffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
215 for (f = 0; f <= MAX_F; f++)
Krzysztof Helt7fc80b72008-07-23 21:31:44 -0700216 for (d = 0; d <= MAX_D; d++)
217 for (n = 0; n <= MAX_N; n++) {
218 long f_out;
219 long f_diff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Krzysztof Helt7fc80b72008-07-23 21:31:44 -0700221 f_out = ((14318 * (n + 1)) / (d + 1)) >> f;
222 f_diff = abs(f_out - freq);
223 if (f_diff <= f_best_diff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 f_best_diff = f_diff;
225 n_best = n;
226 d_best = d;
227 f_best = f;
228 }
Krzysztof Helt7fc80b72008-07-23 21:31:44 -0700229 if (f_out > freq)
230 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 }
232
233 if (info->fix.accel == FB_ACCEL_NEOMAGIC_NM2200 ||
234 info->fix.accel == FB_ACCEL_NEOMAGIC_NM2230 ||
235 info->fix.accel == FB_ACCEL_NEOMAGIC_NM2360 ||
236 info->fix.accel == FB_ACCEL_NEOMAGIC_NM2380) {
237 /* NOT_DONE: We are trying the full range of the 2200 clock.
238 We should be able to try n up to 2047 */
239 par->VCLK3NumeratorLow = n_best;
240 par->VCLK3NumeratorHigh = (f_best << 7);
241 } else
242 par->VCLK3NumeratorLow = n_best | (f_best << 7);
243
244 par->VCLK3Denominator = d_best;
245
246#ifdef NEOFB_DEBUG
Krzysztof Helt7fc80b72008-07-23 21:31:44 -0700247 printk(KERN_DEBUG "neoVCLK: f:%ld NumLow=%d NumHi=%d Den=%d Df=%ld\n",
248 freq,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 par->VCLK3NumeratorLow,
250 par->VCLK3NumeratorHigh,
Krzysztof Helt7fc80b72008-07-23 21:31:44 -0700251 par->VCLK3Denominator, f_best_diff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252#endif
253}
254
255/*
256 * vgaHWInit --
257 * Handle the initialization, etc. of a screen.
258 * Return FALSE on failure.
259 */
260
261static int vgaHWInit(const struct fb_var_screeninfo *var,
Krzysztof Heltc6b044d2008-07-23 21:31:45 -0700262 struct neofb_par *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263{
Krzysztof Heltc6b044d2008-07-23 21:31:45 -0700264 int hsync_end = var->xres + var->right_margin + var->hsync_len;
265 int htotal = (hsync_end + var->left_margin) >> 3;
266 int vsync_start = var->yres + var->lower_margin;
267 int vsync_end = vsync_start + var->vsync_len;
268 int vtotal = vsync_end + var->upper_margin;
269
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 par->MiscOutReg = 0x23;
271
Krzysztof Heltc6b044d2008-07-23 21:31:45 -0700272 if (!(var->sync & FB_SYNC_HOR_HIGH_ACT))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 par->MiscOutReg |= 0x40;
274
Krzysztof Heltc6b044d2008-07-23 21:31:45 -0700275 if (!(var->sync & FB_SYNC_VERT_HIGH_ACT))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 par->MiscOutReg |= 0x80;
277
278 /*
279 * Time Sequencer
280 */
281 par->Sequencer[0] = 0x00;
282 par->Sequencer[1] = 0x01;
283 par->Sequencer[2] = 0x0F;
284 par->Sequencer[3] = 0x00; /* Font select */
285 par->Sequencer[4] = 0x0E; /* Misc */
286
287 /*
288 * CRTC Controller
289 */
Krzysztof Heltc6b044d2008-07-23 21:31:45 -0700290 par->CRTC[0] = htotal - 5;
291 par->CRTC[1] = (var->xres >> 3) - 1;
292 par->CRTC[2] = (var->xres >> 3) - 1;
293 par->CRTC[3] = ((htotal - 1) & 0x1F) | 0x80;
294 par->CRTC[4] = ((var->xres + var->right_margin) >> 3);
295 par->CRTC[5] = (((htotal - 1) & 0x20) << 2)
296 | (((hsync_end >> 3)) & 0x1F);
297 par->CRTC[6] = (vtotal - 2) & 0xFF;
298 par->CRTC[7] = (((vtotal - 2) & 0x100) >> 8)
299 | (((var->yres - 1) & 0x100) >> 7)
300 | ((vsync_start & 0x100) >> 6)
301 | (((var->yres - 1) & 0x100) >> 5)
302 | 0x10 | (((vtotal - 2) & 0x200) >> 4)
303 | (((var->yres - 1) & 0x200) >> 3)
304 | ((vsync_start & 0x200) >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 par->CRTC[8] = 0x00;
Krzysztof Heltc6b044d2008-07-23 21:31:45 -0700306 par->CRTC[9] = (((var->yres - 1) & 0x200) >> 4) | 0x40;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
Krzysztof Heltc6b044d2008-07-23 21:31:45 -0700308 if (var->vmode & FB_VMODE_DOUBLE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 par->CRTC[9] |= 0x80;
310
311 par->CRTC[10] = 0x00;
312 par->CRTC[11] = 0x00;
313 par->CRTC[12] = 0x00;
314 par->CRTC[13] = 0x00;
315 par->CRTC[14] = 0x00;
316 par->CRTC[15] = 0x00;
Krzysztof Heltc6b044d2008-07-23 21:31:45 -0700317 par->CRTC[16] = vsync_start & 0xFF;
318 par->CRTC[17] = (vsync_end & 0x0F) | 0x20;
319 par->CRTC[18] = (var->yres - 1) & 0xFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 par->CRTC[19] = var->xres_virtual >> 4;
321 par->CRTC[20] = 0x00;
Krzysztof Heltc6b044d2008-07-23 21:31:45 -0700322 par->CRTC[21] = (var->yres - 1) & 0xFF;
323 par->CRTC[22] = (vtotal - 1) & 0xFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 par->CRTC[23] = 0xC3;
325 par->CRTC[24] = 0xFF;
326
327 /*
328 * are these unnecessary?
329 * vgaHWHBlankKGA(mode, regp, 0, KGA_FIX_OVERSCAN | KGA_ENABLE_ON_ZERO);
330 * vgaHWVBlankKGA(mode, regp, 0, KGA_FIX_OVERSCAN | KGA_ENABLE_ON_ZERO);
331 */
332
333 /*
334 * Graphics Display Controller
335 */
336 par->Graphics[0] = 0x00;
337 par->Graphics[1] = 0x00;
338 par->Graphics[2] = 0x00;
339 par->Graphics[3] = 0x00;
340 par->Graphics[4] = 0x00;
341 par->Graphics[5] = 0x40;
342 par->Graphics[6] = 0x05; /* only map 64k VGA memory !!!! */
343 par->Graphics[7] = 0x0F;
344 par->Graphics[8] = 0xFF;
345
346
347 par->Attribute[0] = 0x00; /* standard colormap translation */
348 par->Attribute[1] = 0x01;
349 par->Attribute[2] = 0x02;
350 par->Attribute[3] = 0x03;
351 par->Attribute[4] = 0x04;
352 par->Attribute[5] = 0x05;
353 par->Attribute[6] = 0x06;
354 par->Attribute[7] = 0x07;
355 par->Attribute[8] = 0x08;
356 par->Attribute[9] = 0x09;
357 par->Attribute[10] = 0x0A;
358 par->Attribute[11] = 0x0B;
359 par->Attribute[12] = 0x0C;
360 par->Attribute[13] = 0x0D;
361 par->Attribute[14] = 0x0E;
362 par->Attribute[15] = 0x0F;
363 par->Attribute[16] = 0x41;
364 par->Attribute[17] = 0xFF;
365 par->Attribute[18] = 0x0F;
366 par->Attribute[19] = 0x00;
367 par->Attribute[20] = 0x00;
368 return 0;
369}
370
371static void vgaHWLock(struct vgastate *state)
372{
373 /* Protect CRTC[0-7] */
374 vga_wcrt(state->vgabase, 0x11, vga_rcrt(state->vgabase, 0x11) | 0x80);
375}
376
377static void vgaHWUnlock(void)
378{
379 /* Unprotect CRTC[0-7] */
380 vga_wcrt(NULL, 0x11, vga_rcrt(NULL, 0x11) & ~0x80);
381}
382
383static void neoLock(struct vgastate *state)
384{
385 vga_wgfx(state->vgabase, 0x09, 0x00);
386 vgaHWLock(state);
387}
388
389static void neoUnlock(void)
390{
391 vgaHWUnlock();
392 vga_wgfx(NULL, 0x09, 0x26);
393}
394
395/*
396 * VGA Palette management
397 */
398static int paletteEnabled = 0;
399
400static inline void VGAenablePalette(void)
401{
402 vga_r(NULL, VGA_IS1_RC);
403 vga_w(NULL, VGA_ATT_W, 0x00);
404 paletteEnabled = 1;
405}
406
407static inline void VGAdisablePalette(void)
408{
409 vga_r(NULL, VGA_IS1_RC);
410 vga_w(NULL, VGA_ATT_W, 0x20);
411 paletteEnabled = 0;
412}
413
414static inline void VGAwATTR(u8 index, u8 value)
415{
416 if (paletteEnabled)
417 index &= ~0x20;
418 else
419 index |= 0x20;
420
421 vga_r(NULL, VGA_IS1_RC);
422 vga_wattr(NULL, index, value);
423}
424
425static void vgaHWProtect(int on)
426{
427 unsigned char tmp;
428
429 if (on) {
430 /*
431 * Turn off screen and disable sequencer.
432 */
433 tmp = vga_rseq(NULL, 0x01);
434 vga_wseq(NULL, 0x00, 0x01); /* Synchronous Reset */
435 vga_wseq(NULL, 0x01, tmp | 0x20); /* disable the display */
436
437 VGAenablePalette();
438 } else {
439 /*
440 * Reenable sequencer, then turn on screen.
441 */
442 tmp = vga_rseq(NULL, 0x01);
443 vga_wseq(NULL, 0x01, tmp & ~0x20); /* reenable display */
444 vga_wseq(NULL, 0x00, 0x03); /* clear synchronousreset */
445
446 VGAdisablePalette();
447 }
448}
449
450static void vgaHWRestore(const struct fb_info *info,
451 const struct neofb_par *par)
452{
453 int i;
454
455 vga_w(NULL, VGA_MIS_W, par->MiscOutReg);
456
457 for (i = 1; i < 5; i++)
458 vga_wseq(NULL, i, par->Sequencer[i]);
459
460 /* Ensure CRTC registers 0-7 are unlocked by clearing bit 7 or CRTC[17] */
461 vga_wcrt(NULL, 17, par->CRTC[17] & ~0x80);
462
463 for (i = 0; i < 25; i++)
464 vga_wcrt(NULL, i, par->CRTC[i]);
465
466 for (i = 0; i < 9; i++)
467 vga_wgfx(NULL, i, par->Graphics[i]);
468
469 VGAenablePalette();
470
471 for (i = 0; i < 21; i++)
472 VGAwATTR(i, par->Attribute[i]);
473
474 VGAdisablePalette();
475}
476
477
478/* -------------------- Hardware specific routines ------------------------- */
479
480/*
481 * Hardware Acceleration for Neo2200+
482 */
483static inline int neo2200_sync(struct fb_info *info)
484{
Antonino A. Daplas9f19bc52006-01-09 20:53:09 -0800485 struct neofb_par *par = info->par;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
Krzysztof Helt1ca6b622008-07-23 21:31:45 -0700487 while (readl(&par->neo2200->bltStat) & 1)
488 cpu_relax();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 return 0;
490}
491
492static inline void neo2200_wait_fifo(struct fb_info *info,
493 int requested_fifo_space)
494{
495 // ndev->neo.waitfifo_calls++;
496 // ndev->neo.waitfifo_sum += requested_fifo_space;
497
498 /* FIXME: does not work
499 if (neo_fifo_space < requested_fifo_space)
500 {
501 neo_fifo_waitcycles++;
502
503 while (1)
504 {
505 neo_fifo_space = (neo2200->bltStat >> 8);
506 if (neo_fifo_space >= requested_fifo_space)
507 break;
508 }
509 }
510 else
511 {
512 neo_fifo_cache_hits++;
513 }
514
515 neo_fifo_space -= requested_fifo_space;
516 */
517
518 neo2200_sync(info);
519}
520
521static inline void neo2200_accel_init(struct fb_info *info,
522 struct fb_var_screeninfo *var)
523{
Antonino A. Daplas9f19bc52006-01-09 20:53:09 -0800524 struct neofb_par *par = info->par;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 Neo2200 __iomem *neo2200 = par->neo2200;
526 u32 bltMod, pitch;
527
528 neo2200_sync(info);
529
530 switch (var->bits_per_pixel) {
531 case 8:
532 bltMod = NEO_MODE1_DEPTH8;
533 pitch = var->xres_virtual;
534 break;
535 case 15:
536 case 16:
537 bltMod = NEO_MODE1_DEPTH16;
538 pitch = var->xres_virtual * 2;
539 break;
540 case 24:
541 bltMod = NEO_MODE1_DEPTH24;
542 pitch = var->xres_virtual * 3;
543 break;
544 default:
545 printk(KERN_ERR
546 "neofb: neo2200_accel_init: unexpected bits per pixel!\n");
547 return;
548 }
549
550 writel(bltMod << 16, &neo2200->bltStat);
551 writel((pitch << 16) | pitch, &neo2200->pitch);
552}
553
554/* --------------------------------------------------------------------- */
555
556static int
557neofb_open(struct fb_info *info, int user)
558{
Antonino A. Daplas9f19bc52006-01-09 20:53:09 -0800559 struct neofb_par *par = info->par;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
Jiri Slabyc4f28e52007-02-12 00:55:11 -0800561 mutex_lock(&par->open_lock);
562 if (!par->ref_count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 memset(&par->state, 0, sizeof(struct vgastate));
564 par->state.flags = VGA_SAVE_MODE | VGA_SAVE_FONTS;
565 save_vga(&par->state);
566 }
Jiri Slabyc4f28e52007-02-12 00:55:11 -0800567 par->ref_count++;
568 mutex_unlock(&par->open_lock);
569
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 return 0;
571}
572
573static int
574neofb_release(struct fb_info *info, int user)
575{
Antonino A. Daplas9f19bc52006-01-09 20:53:09 -0800576 struct neofb_par *par = info->par;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
Jiri Slabyc4f28e52007-02-12 00:55:11 -0800578 mutex_lock(&par->open_lock);
579 if (!par->ref_count) {
580 mutex_unlock(&par->open_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 return -EINVAL;
Jiri Slabyc4f28e52007-02-12 00:55:11 -0800582 }
583 if (par->ref_count == 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 restore_vga(&par->state);
585 }
Jiri Slabyc4f28e52007-02-12 00:55:11 -0800586 par->ref_count--;
587 mutex_unlock(&par->open_lock);
588
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 return 0;
590}
591
592static int
593neofb_check_var(struct fb_var_screeninfo *var, struct fb_info *info)
594{
Antonino A. Daplas9f19bc52006-01-09 20:53:09 -0800595 struct neofb_par *par = info->par;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 int memlen, vramlen;
597 int mode_ok = 0;
598
599 DBG("neofb_check_var");
600
Krzysztof Helt1ca6b622008-07-23 21:31:45 -0700601 if (PICOS2KHZ(var->pixclock) > par->maxClock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 return -EINVAL;
603
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 /* Is the mode larger than the LCD panel? */
605 if (par->internal_display &&
606 ((var->xres > par->NeoPanelWidth) ||
607 (var->yres > par->NeoPanelHeight))) {
608 printk(KERN_INFO
609 "Mode (%dx%d) larger than the LCD panel (%dx%d)\n",
610 var->xres, var->yres, par->NeoPanelWidth,
611 par->NeoPanelHeight);
612 return -EINVAL;
613 }
614
615 /* Is the mode one of the acceptable sizes? */
616 if (!par->internal_display)
617 mode_ok = 1;
618 else {
619 switch (var->xres) {
620 case 1280:
621 if (var->yres == 1024)
622 mode_ok = 1;
623 break;
624 case 1024:
625 if (var->yres == 768)
626 mode_ok = 1;
627 break;
628 case 800:
629 if (var->yres == (par->libretto ? 480 : 600))
630 mode_ok = 1;
631 break;
632 case 640:
633 if (var->yres == 480)
634 mode_ok = 1;
635 break;
636 }
637 }
638
639 if (!mode_ok) {
640 printk(KERN_INFO
641 "Mode (%dx%d) won't display properly on LCD\n",
642 var->xres, var->yres);
643 return -EINVAL;
644 }
645
646 var->red.msb_right = 0;
647 var->green.msb_right = 0;
648 var->blue.msb_right = 0;
Antonino A. Daplas41988d62007-05-08 00:37:31 -0700649 var->transp.msb_right = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
651 switch (var->bits_per_pixel) {
652 case 8: /* PSEUDOCOLOUR, 256 */
653 var->transp.offset = 0;
654 var->transp.length = 0;
655 var->red.offset = 0;
656 var->red.length = 8;
657 var->green.offset = 0;
658 var->green.length = 8;
659 var->blue.offset = 0;
660 var->blue.length = 8;
661 break;
662
663 case 16: /* DIRECTCOLOUR, 64k */
664 var->transp.offset = 0;
665 var->transp.length = 0;
666 var->red.offset = 11;
667 var->red.length = 5;
668 var->green.offset = 5;
669 var->green.length = 6;
670 var->blue.offset = 0;
671 var->blue.length = 5;
672 break;
673
674 case 24: /* TRUECOLOUR, 16m */
675 var->transp.offset = 0;
676 var->transp.length = 0;
677 var->red.offset = 16;
678 var->red.length = 8;
679 var->green.offset = 8;
680 var->green.length = 8;
681 var->blue.offset = 0;
682 var->blue.length = 8;
683 break;
684
685#ifdef NO_32BIT_SUPPORT_YET
686 case 32: /* TRUECOLOUR, 16m */
687 var->transp.offset = 24;
688 var->transp.length = 8;
689 var->red.offset = 16;
690 var->red.length = 8;
691 var->green.offset = 8;
692 var->green.length = 8;
693 var->blue.offset = 0;
694 var->blue.length = 8;
695 break;
696#endif
697 default:
698 printk(KERN_WARNING "neofb: no support for %dbpp\n",
699 var->bits_per_pixel);
700 return -EINVAL;
701 }
702
703 vramlen = info->fix.smem_len;
704 if (vramlen > 4 * 1024 * 1024)
705 vramlen = 4 * 1024 * 1024;
706
707 if (var->yres_virtual < var->yres)
708 var->yres_virtual = var->yres;
709 if (var->xres_virtual < var->xres)
710 var->xres_virtual = var->xres;
711
712 memlen = var->xres_virtual * var->bits_per_pixel * var->yres_virtual >> 3;
713
714 if (memlen > vramlen) {
715 var->yres_virtual = vramlen * 8 / (var->xres_virtual *
716 var->bits_per_pixel);
717 memlen = var->xres_virtual * var->bits_per_pixel *
718 var->yres_virtual / 8;
719 }
720
721 /* we must round yres/xres down, we already rounded y/xres_virtual up
722 if it was possible. We should return -EINVAL, but I disagree */
723 if (var->yres_virtual < var->yres)
724 var->yres = var->yres_virtual;
725 if (var->xres_virtual < var->xres)
726 var->xres = var->xres_virtual;
727 if (var->xoffset + var->xres > var->xres_virtual)
728 var->xoffset = var->xres_virtual - var->xres;
729 if (var->yoffset + var->yres > var->yres_virtual)
730 var->yoffset = var->yres_virtual - var->yres;
731
732 var->nonstd = 0;
733 var->height = -1;
734 var->width = -1;
735
736 if (var->bits_per_pixel >= 24 || !par->neo2200)
737 var->accel_flags &= ~FB_ACCELF_TEXT;
738 return 0;
739}
740
741static int neofb_set_par(struct fb_info *info)
742{
Antonino A. Daplas9f19bc52006-01-09 20:53:09 -0800743 struct neofb_par *par = info->par;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 unsigned char temp;
745 int i, clock_hi = 0;
746 int lcd_stretch;
747 int hoffset, voffset;
Krzysztof Heltc6b044d2008-07-23 21:31:45 -0700748 int vsync_start, vtotal;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
750 DBG("neofb_set_par");
751
752 neoUnlock();
753
754 vgaHWProtect(1); /* Blank the screen */
755
Krzysztof Heltc6b044d2008-07-23 21:31:45 -0700756 vsync_start = info->var.yres + info->var.lower_margin;
757 vtotal = vsync_start + info->var.vsync_len + info->var.upper_margin;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
759 /*
760 * This will allocate the datastructure and initialize all of the
761 * generic VGA registers.
762 */
763
Krzysztof Heltc6b044d2008-07-23 21:31:45 -0700764 if (vgaHWInit(&info->var, par))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 return -EINVAL;
766
767 /*
768 * The default value assigned by vgaHW.c is 0x41, but this does
769 * not work for NeoMagic.
770 */
771 par->Attribute[16] = 0x01;
772
773 switch (info->var.bits_per_pixel) {
774 case 8:
775 par->CRTC[0x13] = info->var.xres_virtual >> 3;
776 par->ExtCRTOffset = info->var.xres_virtual >> 11;
777 par->ExtColorModeSelect = 0x11;
778 break;
779 case 16:
780 par->CRTC[0x13] = info->var.xres_virtual >> 2;
781 par->ExtCRTOffset = info->var.xres_virtual >> 10;
782 par->ExtColorModeSelect = 0x13;
783 break;
784 case 24:
785 par->CRTC[0x13] = (info->var.xres_virtual * 3) >> 3;
786 par->ExtCRTOffset = (info->var.xres_virtual * 3) >> 11;
787 par->ExtColorModeSelect = 0x14;
788 break;
789#ifdef NO_32BIT_SUPPORT_YET
790 case 32: /* FIXME: guessed values */
791 par->CRTC[0x13] = info->var.xres_virtual >> 1;
792 par->ExtCRTOffset = info->var.xres_virtual >> 9;
793 par->ExtColorModeSelect = 0x15;
794 break;
795#endif
796 default:
797 break;
798 }
799
800 par->ExtCRTDispAddr = 0x10;
801
802 /* Vertical Extension */
Krzysztof Heltc6b044d2008-07-23 21:31:45 -0700803 par->VerticalExt = (((vtotal - 2) & 0x400) >> 10)
804 | (((info->var.yres - 1) & 0x400) >> 9)
805 | (((vsync_start) & 0x400) >> 8)
806 | (((vsync_start) & 0x400) >> 7);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
808 /* Fast write bursts on unless disabled. */
809 if (par->pci_burst)
810 par->SysIfaceCntl1 = 0x30;
811 else
812 par->SysIfaceCntl1 = 0x00;
813
814 par->SysIfaceCntl2 = 0xc0; /* VESA Bios sets this to 0x80! */
815
Christian Trefzer9f672002006-02-15 15:17:34 -0800816 /* Initialize: by default, we want display config register to be read */
817 par->PanelDispCntlRegRead = 1;
818
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 /* Enable any user specified display devices. */
820 par->PanelDispCntlReg1 = 0x00;
821 if (par->internal_display)
822 par->PanelDispCntlReg1 |= 0x02;
823 if (par->external_display)
824 par->PanelDispCntlReg1 |= 0x01;
825
826 /* If the user did not specify any display devices, then... */
827 if (par->PanelDispCntlReg1 == 0x00) {
828 /* Default to internal (i.e., LCD) only. */
Christian Trefzer4836f572006-01-14 13:21:21 -0800829 par->PanelDispCntlReg1 = vga_rgfx(NULL, 0x20) & 0x03;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 }
831
832 /* If we are using a fixed mode, then tell the chip we are. */
833 switch (info->var.xres) {
834 case 1280:
835 par->PanelDispCntlReg1 |= 0x60;
836 break;
837 case 1024:
838 par->PanelDispCntlReg1 |= 0x40;
839 break;
840 case 800:
841 par->PanelDispCntlReg1 |= 0x20;
842 break;
843 case 640:
844 default:
845 break;
846 }
847
848 /* Setup shadow register locking. */
849 switch (par->PanelDispCntlReg1 & 0x03) {
850 case 0x01: /* External CRT only mode: */
851 par->GeneralLockReg = 0x00;
852 /* We need to program the VCLK for external display only mode. */
853 par->ProgramVCLK = 1;
854 break;
855 case 0x02: /* Internal LCD only mode: */
856 case 0x03: /* Simultaneous internal/external (LCD/CRT) mode: */
857 par->GeneralLockReg = 0x01;
858 /* Don't program the VCLK when using the LCD. */
859 par->ProgramVCLK = 0;
860 break;
861 }
862
863 /*
864 * If the screen is to be stretched, turn on stretching for the
865 * various modes.
866 *
867 * OPTION_LCD_STRETCH means stretching should be turned off!
868 */
869 par->PanelDispCntlReg2 = 0x00;
870 par->PanelDispCntlReg3 = 0x00;
871
872 if (par->lcd_stretch && (par->PanelDispCntlReg1 == 0x02) && /* LCD only */
873 (info->var.xres != par->NeoPanelWidth)) {
874 switch (info->var.xres) {
875 case 320: /* Needs testing. KEM -- 24 May 98 */
876 case 400: /* Needs testing. KEM -- 24 May 98 */
877 case 640:
878 case 800:
879 case 1024:
880 lcd_stretch = 1;
881 par->PanelDispCntlReg2 |= 0xC6;
882 break;
883 default:
884 lcd_stretch = 0;
885 /* No stretching in these modes. */
886 }
887 } else
888 lcd_stretch = 0;
889
890 /*
891 * If the screen is to be centerd, turn on the centering for the
892 * various modes.
893 */
894 par->PanelVertCenterReg1 = 0x00;
895 par->PanelVertCenterReg2 = 0x00;
896 par->PanelVertCenterReg3 = 0x00;
897 par->PanelVertCenterReg4 = 0x00;
898 par->PanelVertCenterReg5 = 0x00;
899 par->PanelHorizCenterReg1 = 0x00;
900 par->PanelHorizCenterReg2 = 0x00;
901 par->PanelHorizCenterReg3 = 0x00;
902 par->PanelHorizCenterReg4 = 0x00;
903 par->PanelHorizCenterReg5 = 0x00;
904
905
906 if (par->PanelDispCntlReg1 & 0x02) {
907 if (info->var.xres == par->NeoPanelWidth) {
908 /*
909 * No centering required when the requested display width
910 * equals the panel width.
911 */
912 } else {
913 par->PanelDispCntlReg2 |= 0x01;
914 par->PanelDispCntlReg3 |= 0x10;
915
916 /* Calculate the horizontal and vertical offsets. */
917 if (!lcd_stretch) {
918 hoffset =
919 ((par->NeoPanelWidth -
920 info->var.xres) >> 4) - 1;
921 voffset =
922 ((par->NeoPanelHeight -
923 info->var.yres) >> 1) - 2;
924 } else {
925 /* Stretched modes cannot be centered. */
926 hoffset = 0;
927 voffset = 0;
928 }
929
930 switch (info->var.xres) {
931 case 320: /* Needs testing. KEM -- 24 May 98 */
932 par->PanelHorizCenterReg3 = hoffset;
933 par->PanelVertCenterReg2 = voffset;
934 break;
935 case 400: /* Needs testing. KEM -- 24 May 98 */
936 par->PanelHorizCenterReg4 = hoffset;
937 par->PanelVertCenterReg1 = voffset;
938 break;
939 case 640:
940 par->PanelHorizCenterReg1 = hoffset;
941 par->PanelVertCenterReg3 = voffset;
942 break;
943 case 800:
944 par->PanelHorizCenterReg2 = hoffset;
945 par->PanelVertCenterReg4 = voffset;
946 break;
947 case 1024:
948 par->PanelHorizCenterReg5 = hoffset;
949 par->PanelVertCenterReg5 = voffset;
950 break;
951 case 1280:
952 default:
953 /* No centering in these modes. */
954 break;
955 }
956 }
957 }
958
959 par->biosMode =
960 neoFindMode(info->var.xres, info->var.yres,
961 info->var.bits_per_pixel);
962
963 /*
964 * Calculate the VCLK that most closely matches the requested dot
965 * clock.
966 */
Krzysztof Heltc6b044d2008-07-23 21:31:45 -0700967 neoCalcVCLK(info, par, PICOS2KHZ(info->var.pixclock));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968
969 /* Since we program the clocks ourselves, always use VCLK3. */
970 par->MiscOutReg |= 0x0C;
971
972 /* alread unlocked above */
973 /* BOGUS vga_wgfx(NULL, 0x09, 0x26); */
974
975 /* don't know what this is, but it's 0 from bootup anyway */
976 vga_wgfx(NULL, 0x15, 0x00);
977
978 /* was set to 0x01 by my bios in text and vesa modes */
979 vga_wgfx(NULL, 0x0A, par->GeneralLockReg);
980
981 /*
982 * The color mode needs to be set before calling vgaHWRestore
983 * to ensure the DAC is initialized properly.
984 *
985 * NOTE: Make sure we don't change bits make sure we don't change
986 * any reserved bits.
987 */
988 temp = vga_rgfx(NULL, 0x90);
989 switch (info->fix.accel) {
990 case FB_ACCEL_NEOMAGIC_NM2070:
991 temp &= 0xF0; /* Save bits 7:4 */
992 temp |= (par->ExtColorModeSelect & ~0xF0);
993 break;
994 case FB_ACCEL_NEOMAGIC_NM2090:
995 case FB_ACCEL_NEOMAGIC_NM2093:
996 case FB_ACCEL_NEOMAGIC_NM2097:
997 case FB_ACCEL_NEOMAGIC_NM2160:
998 case FB_ACCEL_NEOMAGIC_NM2200:
999 case FB_ACCEL_NEOMAGIC_NM2230:
1000 case FB_ACCEL_NEOMAGIC_NM2360:
1001 case FB_ACCEL_NEOMAGIC_NM2380:
1002 temp &= 0x70; /* Save bits 6:4 */
1003 temp |= (par->ExtColorModeSelect & ~0x70);
1004 break;
1005 }
1006
1007 vga_wgfx(NULL, 0x90, temp);
1008
1009 /*
1010 * In some rare cases a lockup might occur if we don't delay
1011 * here. (Reported by Miles Lane)
1012 */
1013 //mdelay(200);
1014
1015 /*
1016 * Disable horizontal and vertical graphics and text expansions so
1017 * that vgaHWRestore works properly.
1018 */
1019 temp = vga_rgfx(NULL, 0x25);
1020 temp &= 0x39;
1021 vga_wgfx(NULL, 0x25, temp);
1022
1023 /*
1024 * Sleep for 200ms to make sure that the two operations above have
1025 * had time to take effect.
1026 */
1027 mdelay(200);
1028
1029 /*
1030 * This function handles restoring the generic VGA registers. */
1031 vgaHWRestore(info, par);
1032
1033 /* linear colormap for non palettized modes */
1034 switch (info->var.bits_per_pixel) {
1035 case 8:
1036 /* PseudoColor, 256 */
1037 info->fix.visual = FB_VISUAL_PSEUDOCOLOR;
1038 break;
1039 case 16:
1040 /* TrueColor, 64k */
1041 info->fix.visual = FB_VISUAL_TRUECOLOR;
1042
1043 for (i = 0; i < 64; i++) {
1044 outb(i, 0x3c8);
1045
1046 outb(i << 1, 0x3c9);
1047 outb(i, 0x3c9);
1048 outb(i << 1, 0x3c9);
1049 }
1050 break;
1051 case 24:
1052#ifdef NO_32BIT_SUPPORT_YET
1053 case 32:
1054#endif
1055 /* TrueColor, 16m */
1056 info->fix.visual = FB_VISUAL_TRUECOLOR;
1057
1058 for (i = 0; i < 256; i++) {
1059 outb(i, 0x3c8);
1060
1061 outb(i, 0x3c9);
1062 outb(i, 0x3c9);
1063 outb(i, 0x3c9);
1064 }
1065 break;
1066 }
1067
1068 vga_wgfx(NULL, 0x0E, par->ExtCRTDispAddr);
1069 vga_wgfx(NULL, 0x0F, par->ExtCRTOffset);
1070 temp = vga_rgfx(NULL, 0x10);
1071 temp &= 0x0F; /* Save bits 3:0 */
1072 temp |= (par->SysIfaceCntl1 & ~0x0F); /* VESA Bios sets bit 1! */
1073 vga_wgfx(NULL, 0x10, temp);
1074
1075 vga_wgfx(NULL, 0x11, par->SysIfaceCntl2);
1076 vga_wgfx(NULL, 0x15, 0 /*par->SingleAddrPage */ );
1077 vga_wgfx(NULL, 0x16, 0 /*par->DualAddrPage */ );
1078
1079 temp = vga_rgfx(NULL, 0x20);
1080 switch (info->fix.accel) {
1081 case FB_ACCEL_NEOMAGIC_NM2070:
1082 temp &= 0xFC; /* Save bits 7:2 */
1083 temp |= (par->PanelDispCntlReg1 & ~0xFC);
1084 break;
1085 case FB_ACCEL_NEOMAGIC_NM2090:
1086 case FB_ACCEL_NEOMAGIC_NM2093:
1087 case FB_ACCEL_NEOMAGIC_NM2097:
1088 case FB_ACCEL_NEOMAGIC_NM2160:
1089 temp &= 0xDC; /* Save bits 7:6,4:2 */
1090 temp |= (par->PanelDispCntlReg1 & ~0xDC);
1091 break;
1092 case FB_ACCEL_NEOMAGIC_NM2200:
1093 case FB_ACCEL_NEOMAGIC_NM2230:
1094 case FB_ACCEL_NEOMAGIC_NM2360:
1095 case FB_ACCEL_NEOMAGIC_NM2380:
1096 temp &= 0x98; /* Save bits 7,4:3 */
1097 temp |= (par->PanelDispCntlReg1 & ~0x98);
1098 break;
1099 }
1100 vga_wgfx(NULL, 0x20, temp);
1101
1102 temp = vga_rgfx(NULL, 0x25);
1103 temp &= 0x38; /* Save bits 5:3 */
1104 temp |= (par->PanelDispCntlReg2 & ~0x38);
1105 vga_wgfx(NULL, 0x25, temp);
1106
1107 if (info->fix.accel != FB_ACCEL_NEOMAGIC_NM2070) {
1108 temp = vga_rgfx(NULL, 0x30);
1109 temp &= 0xEF; /* Save bits 7:5 and bits 3:0 */
1110 temp |= (par->PanelDispCntlReg3 & ~0xEF);
1111 vga_wgfx(NULL, 0x30, temp);
1112 }
1113
1114 vga_wgfx(NULL, 0x28, par->PanelVertCenterReg1);
1115 vga_wgfx(NULL, 0x29, par->PanelVertCenterReg2);
1116 vga_wgfx(NULL, 0x2a, par->PanelVertCenterReg3);
1117
1118 if (info->fix.accel != FB_ACCEL_NEOMAGIC_NM2070) {
1119 vga_wgfx(NULL, 0x32, par->PanelVertCenterReg4);
1120 vga_wgfx(NULL, 0x33, par->PanelHorizCenterReg1);
1121 vga_wgfx(NULL, 0x34, par->PanelHorizCenterReg2);
1122 vga_wgfx(NULL, 0x35, par->PanelHorizCenterReg3);
1123 }
1124
1125 if (info->fix.accel == FB_ACCEL_NEOMAGIC_NM2160)
1126 vga_wgfx(NULL, 0x36, par->PanelHorizCenterReg4);
1127
1128 if (info->fix.accel == FB_ACCEL_NEOMAGIC_NM2200 ||
1129 info->fix.accel == FB_ACCEL_NEOMAGIC_NM2230 ||
1130 info->fix.accel == FB_ACCEL_NEOMAGIC_NM2360 ||
1131 info->fix.accel == FB_ACCEL_NEOMAGIC_NM2380) {
1132 vga_wgfx(NULL, 0x36, par->PanelHorizCenterReg4);
1133 vga_wgfx(NULL, 0x37, par->PanelVertCenterReg5);
1134 vga_wgfx(NULL, 0x38, par->PanelHorizCenterReg5);
1135
1136 clock_hi = 1;
1137 }
1138
1139 /* Program VCLK3 if needed. */
1140 if (par->ProgramVCLK && ((vga_rgfx(NULL, 0x9B) != par->VCLK3NumeratorLow)
1141 || (vga_rgfx(NULL, 0x9F) != par->VCLK3Denominator)
1142 || (clock_hi && ((vga_rgfx(NULL, 0x8F) & ~0x0f)
1143 != (par->VCLK3NumeratorHigh &
1144 ~0x0F))))) {
1145 vga_wgfx(NULL, 0x9B, par->VCLK3NumeratorLow);
1146 if (clock_hi) {
1147 temp = vga_rgfx(NULL, 0x8F);
1148 temp &= 0x0F; /* Save bits 3:0 */
1149 temp |= (par->VCLK3NumeratorHigh & ~0x0F);
1150 vga_wgfx(NULL, 0x8F, temp);
1151 }
1152 vga_wgfx(NULL, 0x9F, par->VCLK3Denominator);
1153 }
1154
1155 if (par->biosMode)
1156 vga_wcrt(NULL, 0x23, par->biosMode);
1157
1158 vga_wgfx(NULL, 0x93, 0xc0); /* Gives 5x faster framebuffer writes !!! */
1159
1160 /* Program vertical extension register */
1161 if (info->fix.accel == FB_ACCEL_NEOMAGIC_NM2200 ||
1162 info->fix.accel == FB_ACCEL_NEOMAGIC_NM2230 ||
1163 info->fix.accel == FB_ACCEL_NEOMAGIC_NM2360 ||
1164 info->fix.accel == FB_ACCEL_NEOMAGIC_NM2380) {
1165 vga_wcrt(NULL, 0x70, par->VerticalExt);
1166 }
1167
1168 vgaHWProtect(0); /* Turn on screen */
1169
1170 /* Calling this also locks offset registers required in update_start */
1171 neoLock(&par->state);
1172
1173 info->fix.line_length =
1174 info->var.xres_virtual * (info->var.bits_per_pixel >> 3);
1175
1176 switch (info->fix.accel) {
1177 case FB_ACCEL_NEOMAGIC_NM2200:
1178 case FB_ACCEL_NEOMAGIC_NM2230:
1179 case FB_ACCEL_NEOMAGIC_NM2360:
1180 case FB_ACCEL_NEOMAGIC_NM2380:
1181 neo2200_accel_init(info, &info->var);
1182 break;
1183 default:
1184 break;
1185 }
1186 return 0;
1187}
1188
Krzysztof Heltd15d56f2008-10-15 22:03:17 -07001189/*
1190 * Pan or Wrap the Display
1191 */
1192static int neofb_pan_display(struct fb_var_screeninfo *var,
1193 struct fb_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194{
Antonino A. Daplas9f19bc52006-01-09 20:53:09 -08001195 struct neofb_par *par = info->par;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 struct vgastate *state = &par->state;
1197 int oldExtCRTDispAddr;
1198 int Base;
1199
1200 DBG("neofb_update_start");
1201
1202 Base = (var->yoffset * var->xres_virtual + var->xoffset) >> 2;
1203 Base *= (var->bits_per_pixel + 7) / 8;
1204
1205 neoUnlock();
1206
1207 /*
1208 * These are the generic starting address registers.
1209 */
1210 vga_wcrt(state->vgabase, 0x0C, (Base & 0x00FF00) >> 8);
1211 vga_wcrt(state->vgabase, 0x0D, (Base & 0x00FF));
1212
1213 /*
1214 * Make sure we don't clobber some other bits that might already
1215 * have been set. NOTE: NM2200 has a writable bit 3, but it shouldn't
1216 * be needed.
1217 */
1218 oldExtCRTDispAddr = vga_rgfx(NULL, 0x0E);
1219 vga_wgfx(state->vgabase, 0x0E, (((Base >> 16) & 0x0f) | (oldExtCRTDispAddr & 0xf0)));
1220
1221 neoLock(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 return 0;
1224}
1225
1226static int neofb_setcolreg(u_int regno, u_int red, u_int green, u_int blue,
1227 u_int transp, struct fb_info *fb)
1228{
1229 if (regno >= fb->cmap.len || regno > 255)
1230 return -EINVAL;
1231
Antonino A. Daplasa2b7d2e2007-05-31 14:04:57 +08001232 if (fb->var.bits_per_pixel <= 8) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 outb(regno, 0x3c8);
1234
1235 outb(red >> 10, 0x3c9);
1236 outb(green >> 10, 0x3c9);
1237 outb(blue >> 10, 0x3c9);
Antonino A. Daplasa2b7d2e2007-05-31 14:04:57 +08001238 } else if (regno < 16) {
1239 switch (fb->var.bits_per_pixel) {
1240 case 16:
1241 ((u32 *) fb->pseudo_palette)[regno] =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 ((red & 0xf800)) | ((green & 0xfc00) >> 5) |
1243 ((blue & 0xf800) >> 11);
Antonino A. Daplasa2b7d2e2007-05-31 14:04:57 +08001244 break;
1245 case 24:
1246 ((u32 *) fb->pseudo_palette)[regno] =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 ((red & 0xff00) << 8) | ((green & 0xff00)) |
1248 ((blue & 0xff00) >> 8);
Antonino A. Daplasa2b7d2e2007-05-31 14:04:57 +08001249 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250#ifdef NO_32BIT_SUPPORT_YET
Antonino A. Daplasa2b7d2e2007-05-31 14:04:57 +08001251 case 32:
1252 ((u32 *) fb->pseudo_palette)[regno] =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 ((transp & 0xff00) << 16) | ((red & 0xff00) << 8) |
1254 ((green & 0xff00)) | ((blue & 0xff00) >> 8);
Antonino A. Daplasa2b7d2e2007-05-31 14:04:57 +08001255 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256#endif
Antonino A. Daplasa2b7d2e2007-05-31 14:04:57 +08001257 default:
1258 return 1;
1259 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 }
Antonino A. Daplasa2b7d2e2007-05-31 14:04:57 +08001261
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 return 0;
1263}
1264
1265/*
1266 * (Un)Blank the display.
1267 */
1268static int neofb_blank(int blank_mode, struct fb_info *info)
1269{
1270 /*
1271 * Blank the screen if blank_mode != 0, else unblank.
1272 * Return 0 if blanking succeeded, != 0 if un-/blanking failed due to
1273 * e.g. a video mode which doesn't support it. Implements VESA suspend
1274 * and powerdown modes for monitors, and backlight control on LCDs.
1275 * blank_mode == 0: unblanked (backlight on)
1276 * blank_mode == 1: blank (backlight on)
1277 * blank_mode == 2: suspend vsync (backlight off)
1278 * blank_mode == 3: suspend hsync (backlight off)
1279 * blank_mode == 4: powerdown (backlight off)
1280 *
1281 * wms...Enable VESA DPMS compatible powerdown mode
1282 * run "setterm -powersave powerdown" to take advantage
1283 */
Antonino A. Daplas9f19bc52006-01-09 20:53:09 -08001284 struct neofb_par *par = info->par;
Christian Trefzer4efefd12006-06-26 00:26:55 -07001285 int seqflags, lcdflags, dpmsflags, reg, tmpdisp;
Christian Trefzer9f672002006-02-15 15:17:34 -08001286
Christian Trefzer10ee39f2006-02-14 13:53:26 -08001287 /*
Christian Trefzer4efefd12006-06-26 00:26:55 -07001288 * Read back the register bits related to display configuration. They might
1289 * have been changed underneath the driver via Fn key stroke.
1290 */
1291 neoUnlock();
1292 tmpdisp = vga_rgfx(NULL, 0x20) & 0x03;
1293 neoLock(&par->state);
1294
1295 /* In case we blank the screen, we want to store the possibly new
1296 * configuration in the driver. During un-blank, we re-apply this setting,
1297 * since the LCD bit will be cleared in order to switch off the backlight.
Christian Trefzer10ee39f2006-02-14 13:53:26 -08001298 */
Christian Trefzer9f672002006-02-15 15:17:34 -08001299 if (par->PanelDispCntlRegRead) {
Christian Trefzer4efefd12006-06-26 00:26:55 -07001300 par->PanelDispCntlReg1 = tmpdisp;
Christian Trefzer9f672002006-02-15 15:17:34 -08001301 }
1302 par->PanelDispCntlRegRead = !blank_mode;
Christian Trefzer10ee39f2006-02-14 13:53:26 -08001303
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 switch (blank_mode) {
1305 case FB_BLANK_POWERDOWN: /* powerdown - both sync lines down */
1306 seqflags = VGA_SR01_SCREEN_OFF; /* Disable sequencer */
1307 lcdflags = 0; /* LCD off */
1308 dpmsflags = NEO_GR01_SUPPRESS_HSYNC |
1309 NEO_GR01_SUPPRESS_VSYNC;
1310#ifdef CONFIG_TOSHIBA
1311 /* Do we still need this ? */
1312 /* attempt to turn off backlight on toshiba; also turns off external */
1313 {
1314 SMMRegisters regs;
1315
1316 regs.eax = 0xff00; /* HCI_SET */
1317 regs.ebx = 0x0002; /* HCI_BACKLIGHT */
1318 regs.ecx = 0x0000; /* HCI_DISABLE */
1319 tosh_smm(&regs);
1320 }
1321#endif
1322 break;
1323 case FB_BLANK_HSYNC_SUSPEND: /* hsync off */
1324 seqflags = VGA_SR01_SCREEN_OFF; /* Disable sequencer */
1325 lcdflags = 0; /* LCD off */
1326 dpmsflags = NEO_GR01_SUPPRESS_HSYNC;
1327 break;
1328 case FB_BLANK_VSYNC_SUSPEND: /* vsync off */
1329 seqflags = VGA_SR01_SCREEN_OFF; /* Disable sequencer */
1330 lcdflags = 0; /* LCD off */
1331 dpmsflags = NEO_GR01_SUPPRESS_VSYNC;
1332 break;
1333 case FB_BLANK_NORMAL: /* just blank screen (backlight stays on) */
1334 seqflags = VGA_SR01_SCREEN_OFF; /* Disable sequencer */
Christian Trefzer4efefd12006-06-26 00:26:55 -07001335 /*
1336 * During a blank operation with the LID shut, we might store "LCD off"
1337 * by mistake. Due to timing issues, the BIOS may switch the lights
1338 * back on, and we turn it back off once we "unblank".
1339 *
1340 * So here is an attempt to implement ">=" - if we are in the process
1341 * of unblanking, and the LCD bit is unset in the driver but set in the
1342 * register, we must keep it.
1343 */
1344 lcdflags = ((par->PanelDispCntlReg1 | tmpdisp) & 0x02); /* LCD normal */
Christian Trefzer10ee39f2006-02-14 13:53:26 -08001345 dpmsflags = 0x00; /* no hsync/vsync suppression */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 break;
1347 case FB_BLANK_UNBLANK: /* unblank */
1348 seqflags = 0; /* Enable sequencer */
Christian Trefzer4efefd12006-06-26 00:26:55 -07001349 lcdflags = ((par->PanelDispCntlReg1 | tmpdisp) & 0x02); /* LCD normal */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 dpmsflags = 0x00; /* no hsync/vsync suppression */
1351#ifdef CONFIG_TOSHIBA
1352 /* Do we still need this ? */
1353 /* attempt to re-enable backlight/external on toshiba */
1354 {
1355 SMMRegisters regs;
1356
1357 regs.eax = 0xff00; /* HCI_SET */
1358 regs.ebx = 0x0002; /* HCI_BACKLIGHT */
1359 regs.ecx = 0x0001; /* HCI_ENABLE */
1360 tosh_smm(&regs);
1361 }
1362#endif
1363 break;
1364 default: /* Anything else we don't understand; return 1 to tell
1365 * fb_blank we didn't aactually do anything */
1366 return 1;
1367 }
1368
1369 neoUnlock();
1370 reg = (vga_rseq(NULL, 0x01) & ~0x20) | seqflags;
1371 vga_wseq(NULL, 0x01, reg);
1372 reg = (vga_rgfx(NULL, 0x20) & ~0x02) | lcdflags;
1373 vga_wgfx(NULL, 0x20, reg);
1374 reg = (vga_rgfx(NULL, 0x01) & ~0xF0) | 0x80 | dpmsflags;
1375 vga_wgfx(NULL, 0x01, reg);
1376 neoLock(&par->state);
1377 return 0;
1378}
1379
1380static void
1381neo2200_fillrect(struct fb_info *info, const struct fb_fillrect *rect)
1382{
Antonino A. Daplas9f19bc52006-01-09 20:53:09 -08001383 struct neofb_par *par = info->par;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 u_long dst, rop;
1385
1386 dst = rect->dx + rect->dy * info->var.xres_virtual;
1387 rop = rect->rop ? 0x060000 : 0x0c0000;
1388
1389 neo2200_wait_fifo(info, 4);
1390
1391 /* set blt control */
1392 writel(NEO_BC3_FIFO_EN |
1393 NEO_BC0_SRC_IS_FG | NEO_BC3_SKIP_MAPPING |
1394 // NEO_BC3_DST_XY_ADDR |
1395 // NEO_BC3_SRC_XY_ADDR |
1396 rop, &par->neo2200->bltCntl);
1397
1398 switch (info->var.bits_per_pixel) {
1399 case 8:
1400 writel(rect->color, &par->neo2200->fgColor);
1401 break;
1402 case 16:
1403 case 24:
1404 writel(((u32 *) (info->pseudo_palette))[rect->color],
1405 &par->neo2200->fgColor);
1406 break;
1407 }
1408
1409 writel(dst * ((info->var.bits_per_pixel + 7) >> 3),
1410 &par->neo2200->dstStart);
1411 writel((rect->height << 16) | (rect->width & 0xffff),
1412 &par->neo2200->xyExt);
1413}
1414
1415static void
1416neo2200_copyarea(struct fb_info *info, const struct fb_copyarea *area)
1417{
1418 u32 sx = area->sx, sy = area->sy, dx = area->dx, dy = area->dy;
Antonino A. Daplas9f19bc52006-01-09 20:53:09 -08001419 struct neofb_par *par = info->par;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 u_long src, dst, bltCntl;
1421
1422 bltCntl = NEO_BC3_FIFO_EN | NEO_BC3_SKIP_MAPPING | 0x0C0000;
1423
1424 if ((dy > sy) || ((dy == sy) && (dx > sx))) {
1425 /* Start with the lower right corner */
1426 sy += (area->height - 1);
1427 dy += (area->height - 1);
1428 sx += (area->width - 1);
1429 dx += (area->width - 1);
1430
1431 bltCntl |= NEO_BC0_X_DEC | NEO_BC0_DST_Y_DEC | NEO_BC0_SRC_Y_DEC;
1432 }
1433
1434 src = sx * (info->var.bits_per_pixel >> 3) + sy*info->fix.line_length;
1435 dst = dx * (info->var.bits_per_pixel >> 3) + dy*info->fix.line_length;
1436
1437 neo2200_wait_fifo(info, 4);
1438
1439 /* set blt control */
1440 writel(bltCntl, &par->neo2200->bltCntl);
1441
1442 writel(src, &par->neo2200->srcStart);
1443 writel(dst, &par->neo2200->dstStart);
1444 writel((area->height << 16) | (area->width & 0xffff),
1445 &par->neo2200->xyExt);
1446}
1447
1448static void
1449neo2200_imageblit(struct fb_info *info, const struct fb_image *image)
1450{
Antonino A. Daplas9f19bc52006-01-09 20:53:09 -08001451 struct neofb_par *par = info->par;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 int s_pitch = (image->width * image->depth + 7) >> 3;
1453 int scan_align = info->pixmap.scan_align - 1;
1454 int buf_align = info->pixmap.buf_align - 1;
1455 int bltCntl_flags, d_pitch, data_len;
1456
1457 // The data is padded for the hardware
1458 d_pitch = (s_pitch + scan_align) & ~scan_align;
1459 data_len = ((d_pitch * image->height) + buf_align) & ~buf_align;
1460
1461 neo2200_sync(info);
1462
1463 if (image->depth == 1) {
1464 if (info->var.bits_per_pixel == 24 && image->width < 16) {
1465 /* FIXME. There is a bug with accelerated color-expanded
1466 * transfers in 24 bit mode if the image being transferred
1467 * is less than 16 bits wide. This is due to insufficient
1468 * padding when writing the image. We need to adjust
1469 * struct fb_pixmap. Not yet done. */
1470 return cfb_imageblit(info, image);
1471 }
1472 bltCntl_flags = NEO_BC0_SRC_MONO;
1473 } else if (image->depth == info->var.bits_per_pixel) {
1474 bltCntl_flags = 0;
1475 } else {
1476 /* We don't currently support hardware acceleration if image
1477 * depth is different from display */
1478 return cfb_imageblit(info, image);
1479 }
1480
1481 switch (info->var.bits_per_pixel) {
1482 case 8:
1483 writel(image->fg_color, &par->neo2200->fgColor);
1484 writel(image->bg_color, &par->neo2200->bgColor);
1485 break;
1486 case 16:
1487 case 24:
1488 writel(((u32 *) (info->pseudo_palette))[image->fg_color],
1489 &par->neo2200->fgColor);
1490 writel(((u32 *) (info->pseudo_palette))[image->bg_color],
1491 &par->neo2200->bgColor);
1492 break;
1493 }
1494
1495 writel(NEO_BC0_SYS_TO_VID |
1496 NEO_BC3_SKIP_MAPPING | bltCntl_flags |
1497 // NEO_BC3_DST_XY_ADDR |
1498 0x0c0000, &par->neo2200->bltCntl);
1499
1500 writel(0, &par->neo2200->srcStart);
1501// par->neo2200->dstStart = (image->dy << 16) | (image->dx & 0xffff);
1502 writel(((image->dx & 0xffff) * (info->var.bits_per_pixel >> 3) +
1503 image->dy * info->fix.line_length), &par->neo2200->dstStart);
1504 writel((image->height << 16) | (image->width & 0xffff),
1505 &par->neo2200->xyExt);
1506
1507 memcpy_toio(par->mmio_vbase + 0x100000, image->data, data_len);
1508}
1509
1510static void
1511neofb_fillrect(struct fb_info *info, const struct fb_fillrect *rect)
1512{
1513 switch (info->fix.accel) {
1514 case FB_ACCEL_NEOMAGIC_NM2200:
1515 case FB_ACCEL_NEOMAGIC_NM2230:
1516 case FB_ACCEL_NEOMAGIC_NM2360:
1517 case FB_ACCEL_NEOMAGIC_NM2380:
1518 neo2200_fillrect(info, rect);
1519 break;
1520 default:
1521 cfb_fillrect(info, rect);
1522 break;
1523 }
1524}
1525
1526static void
1527neofb_copyarea(struct fb_info *info, const struct fb_copyarea *area)
1528{
1529 switch (info->fix.accel) {
1530 case FB_ACCEL_NEOMAGIC_NM2200:
1531 case FB_ACCEL_NEOMAGIC_NM2230:
1532 case FB_ACCEL_NEOMAGIC_NM2360:
1533 case FB_ACCEL_NEOMAGIC_NM2380:
1534 neo2200_copyarea(info, area);
1535 break;
1536 default:
1537 cfb_copyarea(info, area);
1538 break;
1539 }
1540}
1541
1542static void
1543neofb_imageblit(struct fb_info *info, const struct fb_image *image)
1544{
1545 switch (info->fix.accel) {
1546 case FB_ACCEL_NEOMAGIC_NM2200:
1547 case FB_ACCEL_NEOMAGIC_NM2230:
1548 case FB_ACCEL_NEOMAGIC_NM2360:
1549 case FB_ACCEL_NEOMAGIC_NM2380:
1550 neo2200_imageblit(info, image);
1551 break;
1552 default:
1553 cfb_imageblit(info, image);
1554 break;
1555 }
1556}
1557
1558static int
1559neofb_sync(struct fb_info *info)
1560{
1561 switch (info->fix.accel) {
1562 case FB_ACCEL_NEOMAGIC_NM2200:
1563 case FB_ACCEL_NEOMAGIC_NM2230:
1564 case FB_ACCEL_NEOMAGIC_NM2360:
1565 case FB_ACCEL_NEOMAGIC_NM2380:
1566 neo2200_sync(info);
1567 break;
1568 default:
1569 break;
1570 }
1571 return 0;
1572}
1573
1574/*
1575static void
1576neofb_draw_cursor(struct fb_info *info, u8 *dst, u8 *src, unsigned int width)
1577{
1578 //memset_io(info->sprite.addr, 0xff, 1);
1579}
1580
1581static int
1582neofb_cursor(struct fb_info *info, struct fb_cursor *cursor)
1583{
1584 struct neofb_par *par = (struct neofb_par *) info->par;
1585
1586 * Disable cursor *
1587 write_le32(NEOREG_CURSCNTL, ~NEO_CURS_ENABLE, par);
1588
1589 if (cursor->set & FB_CUR_SETPOS) {
1590 u32 x = cursor->image.dx;
1591 u32 y = cursor->image.dy;
1592
1593 info->cursor.image.dx = x;
1594 info->cursor.image.dy = y;
1595 write_le32(NEOREG_CURSX, x, par);
1596 write_le32(NEOREG_CURSY, y, par);
1597 }
1598
1599 if (cursor->set & FB_CUR_SETSIZE) {
1600 info->cursor.image.height = cursor->image.height;
1601 info->cursor.image.width = cursor->image.width;
1602 }
1603
1604 if (cursor->set & FB_CUR_SETHOT)
1605 info->cursor.hot = cursor->hot;
1606
1607 if (cursor->set & FB_CUR_SETCMAP) {
1608 if (cursor->image.depth == 1) {
1609 u32 fg = cursor->image.fg_color;
1610 u32 bg = cursor->image.bg_color;
1611
1612 info->cursor.image.fg_color = fg;
1613 info->cursor.image.bg_color = bg;
1614
1615 fg = ((fg & 0xff0000) >> 16) | ((fg & 0xff) << 16) | (fg & 0xff00);
1616 bg = ((bg & 0xff0000) >> 16) | ((bg & 0xff) << 16) | (bg & 0xff00);
1617 write_le32(NEOREG_CURSFGCOLOR, fg, par);
1618 write_le32(NEOREG_CURSBGCOLOR, bg, par);
1619 }
1620 }
1621
1622 if (cursor->set & FB_CUR_SETSHAPE)
1623 fb_load_cursor_image(info);
1624
1625 if (info->cursor.enable)
1626 write_le32(NEOREG_CURSCNTL, NEO_CURS_ENABLE, par);
1627 return 0;
1628}
1629*/
1630
1631static struct fb_ops neofb_ops = {
1632 .owner = THIS_MODULE,
1633 .fb_open = neofb_open,
1634 .fb_release = neofb_release,
1635 .fb_check_var = neofb_check_var,
1636 .fb_set_par = neofb_set_par,
1637 .fb_setcolreg = neofb_setcolreg,
1638 .fb_pan_display = neofb_pan_display,
1639 .fb_blank = neofb_blank,
1640 .fb_sync = neofb_sync,
1641 .fb_fillrect = neofb_fillrect,
1642 .fb_copyarea = neofb_copyarea,
1643 .fb_imageblit = neofb_imageblit,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644};
1645
1646/* --------------------------------------------------------------------- */
1647
1648static struct fb_videomode __devinitdata mode800x480 = {
1649 .xres = 800,
1650 .yres = 480,
1651 .pixclock = 25000,
1652 .left_margin = 88,
1653 .right_margin = 40,
1654 .upper_margin = 23,
1655 .lower_margin = 1,
1656 .hsync_len = 128,
1657 .vsync_len = 4,
1658 .sync = FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
1659 .vmode = FB_VMODE_NONINTERLACED
1660};
1661
1662static int __devinit neo_map_mmio(struct fb_info *info,
1663 struct pci_dev *dev)
1664{
Antonino A. Daplas9f19bc52006-01-09 20:53:09 -08001665 struct neofb_par *par = info->par;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666
1667 DBG("neo_map_mmio");
1668
1669 switch (info->fix.accel) {
1670 case FB_ACCEL_NEOMAGIC_NM2070:
1671 info->fix.mmio_start = pci_resource_start(dev, 0)+
1672 0x100000;
1673 break;
1674 case FB_ACCEL_NEOMAGIC_NM2090:
1675 case FB_ACCEL_NEOMAGIC_NM2093:
1676 info->fix.mmio_start = pci_resource_start(dev, 0)+
1677 0x200000;
1678 break;
1679 case FB_ACCEL_NEOMAGIC_NM2160:
1680 case FB_ACCEL_NEOMAGIC_NM2097:
1681 case FB_ACCEL_NEOMAGIC_NM2200:
1682 case FB_ACCEL_NEOMAGIC_NM2230:
1683 case FB_ACCEL_NEOMAGIC_NM2360:
1684 case FB_ACCEL_NEOMAGIC_NM2380:
1685 info->fix.mmio_start = pci_resource_start(dev, 1);
1686 break;
1687 default:
1688 info->fix.mmio_start = pci_resource_start(dev, 0);
1689 }
1690 info->fix.mmio_len = MMIO_SIZE;
1691
1692 if (!request_mem_region
1693 (info->fix.mmio_start, MMIO_SIZE, "memory mapped I/O")) {
1694 printk("neofb: memory mapped IO in use\n");
1695 return -EBUSY;
1696 }
1697
1698 par->mmio_vbase = ioremap(info->fix.mmio_start, MMIO_SIZE);
1699 if (!par->mmio_vbase) {
1700 printk("neofb: unable to map memory mapped IO\n");
1701 release_mem_region(info->fix.mmio_start,
1702 info->fix.mmio_len);
1703 return -ENOMEM;
1704 } else
1705 printk(KERN_INFO "neofb: mapped io at %p\n",
1706 par->mmio_vbase);
1707 return 0;
1708}
1709
1710static void neo_unmap_mmio(struct fb_info *info)
1711{
Antonino A. Daplas9f19bc52006-01-09 20:53:09 -08001712 struct neofb_par *par = info->par;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713
1714 DBG("neo_unmap_mmio");
1715
1716 iounmap(par->mmio_vbase);
1717 par->mmio_vbase = NULL;
1718
1719 release_mem_region(info->fix.mmio_start,
1720 info->fix.mmio_len);
1721}
1722
1723static int __devinit neo_map_video(struct fb_info *info,
1724 struct pci_dev *dev, int video_len)
1725{
1726 //unsigned long addr;
1727
1728 DBG("neo_map_video");
1729
1730 info->fix.smem_start = pci_resource_start(dev, 0);
1731 info->fix.smem_len = video_len;
1732
1733 if (!request_mem_region(info->fix.smem_start, info->fix.smem_len,
1734 "frame buffer")) {
1735 printk("neofb: frame buffer in use\n");
1736 return -EBUSY;
1737 }
1738
1739 info->screen_base =
1740 ioremap(info->fix.smem_start, info->fix.smem_len);
1741 if (!info->screen_base) {
1742 printk("neofb: unable to map screen memory\n");
1743 release_mem_region(info->fix.smem_start,
1744 info->fix.smem_len);
1745 return -ENOMEM;
1746 } else
1747 printk(KERN_INFO "neofb: mapped framebuffer at %p\n",
1748 info->screen_base);
1749
1750#ifdef CONFIG_MTRR
1751 ((struct neofb_par *)(info->par))->mtrr =
1752 mtrr_add(info->fix.smem_start, pci_resource_len(dev, 0),
1753 MTRR_TYPE_WRCOMB, 1);
1754#endif
1755
1756 /* Clear framebuffer, it's all white in memory after boot */
1757 memset_io(info->screen_base, 0, info->fix.smem_len);
1758
1759 /* Allocate Cursor drawing pad.
1760 info->fix.smem_len -= PAGE_SIZE;
1761 addr = info->fix.smem_start + info->fix.smem_len;
1762 write_le32(NEOREG_CURSMEMPOS, ((0x000f & (addr >> 10)) << 8) |
1763 ((0x0ff0 & (addr >> 10)) >> 4), par);
1764 addr = (unsigned long) info->screen_base + info->fix.smem_len;
1765 info->sprite.addr = (u8 *) addr; */
1766 return 0;
1767}
1768
1769static void neo_unmap_video(struct fb_info *info)
1770{
1771 DBG("neo_unmap_video");
1772
1773#ifdef CONFIG_MTRR
1774 {
Antonino A. Daplas9f19bc52006-01-09 20:53:09 -08001775 struct neofb_par *par = info->par;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776
1777 mtrr_del(par->mtrr, info->fix.smem_start,
1778 info->fix.smem_len);
1779 }
1780#endif
1781 iounmap(info->screen_base);
1782 info->screen_base = NULL;
1783
1784 release_mem_region(info->fix.smem_start,
1785 info->fix.smem_len);
1786}
1787
1788static int __devinit neo_scan_monitor(struct fb_info *info)
1789{
Antonino A. Daplas9f19bc52006-01-09 20:53:09 -08001790 struct neofb_par *par = info->par;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 unsigned char type, display;
1792 int w;
1793
1794 // Eventually we will have i2c support.
1795 info->monspecs.modedb = kmalloc(sizeof(struct fb_videomode), GFP_KERNEL);
1796 if (!info->monspecs.modedb)
1797 return -ENOMEM;
1798 info->monspecs.modedb_len = 1;
1799
1800 /* Determine the panel type */
1801 vga_wgfx(NULL, 0x09, 0x26);
1802 type = vga_rgfx(NULL, 0x21);
1803 display = vga_rgfx(NULL, 0x20);
1804 if (!par->internal_display && !par->external_display) {
1805 par->internal_display = display & 2 || !(display & 3) ? 1 : 0;
1806 par->external_display = display & 1;
1807 printk (KERN_INFO "Autodetected %s display\n",
1808 par->internal_display && par->external_display ? "simultaneous" :
1809 par->internal_display ? "internal" : "external");
1810 }
1811
1812 /* Determine panel width -- used in NeoValidMode. */
1813 w = vga_rgfx(NULL, 0x20);
1814 vga_wgfx(NULL, 0x09, 0x00);
1815 switch ((w & 0x18) >> 3) {
1816 case 0x00:
1817 // 640x480@60
1818 par->NeoPanelWidth = 640;
1819 par->NeoPanelHeight = 480;
1820 memcpy(info->monspecs.modedb, &vesa_modes[3], sizeof(struct fb_videomode));
1821 break;
1822 case 0x01:
1823 par->NeoPanelWidth = 800;
1824 if (par->libretto) {
1825 par->NeoPanelHeight = 480;
1826 memcpy(info->monspecs.modedb, &mode800x480, sizeof(struct fb_videomode));
1827 } else {
1828 // 800x600@60
1829 par->NeoPanelHeight = 600;
1830 memcpy(info->monspecs.modedb, &vesa_modes[8], sizeof(struct fb_videomode));
1831 }
1832 break;
1833 case 0x02:
1834 // 1024x768@60
1835 par->NeoPanelWidth = 1024;
1836 par->NeoPanelHeight = 768;
1837 memcpy(info->monspecs.modedb, &vesa_modes[13], sizeof(struct fb_videomode));
1838 break;
1839 case 0x03:
1840 /* 1280x1024@60 panel support needs to be added */
1841#ifdef NOT_DONE
1842 par->NeoPanelWidth = 1280;
1843 par->NeoPanelHeight = 1024;
1844 memcpy(info->monspecs.modedb, &vesa_modes[20], sizeof(struct fb_videomode));
1845 break;
1846#else
1847 printk(KERN_ERR
1848 "neofb: Only 640x480, 800x600/480 and 1024x768 panels are currently supported\n");
1849 return -1;
1850#endif
1851 default:
1852 // 640x480@60
1853 par->NeoPanelWidth = 640;
1854 par->NeoPanelHeight = 480;
1855 memcpy(info->monspecs.modedb, &vesa_modes[3], sizeof(struct fb_videomode));
1856 break;
1857 }
1858
1859 printk(KERN_INFO "Panel is a %dx%d %s %s display\n",
1860 par->NeoPanelWidth,
1861 par->NeoPanelHeight,
1862 (type & 0x02) ? "color" : "monochrome",
1863 (type & 0x10) ? "TFT" : "dual scan");
1864 return 0;
1865}
1866
1867static int __devinit neo_init_hw(struct fb_info *info)
1868{
Antonino A. Daplas9f19bc52006-01-09 20:53:09 -08001869 struct neofb_par *par = info->par;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 int videoRam = 896;
1871 int maxClock = 65000;
1872 int CursorMem = 1024;
1873 int CursorOff = 0x100;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874
1875 DBG("neo_init_hw");
1876
1877 neoUnlock();
1878
1879#if 0
1880 printk(KERN_DEBUG "--- Neo extended register dump ---\n");
1881 for (int w = 0; w < 0x85; w++)
1882 printk(KERN_DEBUG "CR %p: %p\n", (void *) w,
Mariusz Kozlowski4971bb72006-12-08 02:40:59 -08001883 (void *) vga_rcrt(NULL, w));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 for (int w = 0; w < 0xC7; w++)
1885 printk(KERN_DEBUG "GR %p: %p\n", (void *) w,
1886 (void *) vga_rgfx(NULL, w));
1887#endif
1888 switch (info->fix.accel) {
1889 case FB_ACCEL_NEOMAGIC_NM2070:
1890 videoRam = 896;
1891 maxClock = 65000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 break;
1893 case FB_ACCEL_NEOMAGIC_NM2090:
1894 case FB_ACCEL_NEOMAGIC_NM2093:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 case FB_ACCEL_NEOMAGIC_NM2097:
1896 videoRam = 1152;
1897 maxClock = 80000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 break;
1899 case FB_ACCEL_NEOMAGIC_NM2160:
1900 videoRam = 2048;
1901 maxClock = 90000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 break;
1903 case FB_ACCEL_NEOMAGIC_NM2200:
1904 videoRam = 2560;
1905 maxClock = 110000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 break;
1907 case FB_ACCEL_NEOMAGIC_NM2230:
1908 videoRam = 3008;
1909 maxClock = 110000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 break;
1911 case FB_ACCEL_NEOMAGIC_NM2360:
1912 videoRam = 4096;
1913 maxClock = 110000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 break;
1915 case FB_ACCEL_NEOMAGIC_NM2380:
1916 videoRam = 6144;
1917 maxClock = 110000;
Krzysztof Helt1ca6b622008-07-23 21:31:45 -07001918 break;
1919 }
1920 switch (info->fix.accel) {
1921 case FB_ACCEL_NEOMAGIC_NM2070:
1922 case FB_ACCEL_NEOMAGIC_NM2090:
1923 case FB_ACCEL_NEOMAGIC_NM2093:
1924 CursorMem = 2048;
1925 CursorOff = 0x100;
1926 break;
1927 case FB_ACCEL_NEOMAGIC_NM2097:
1928 case FB_ACCEL_NEOMAGIC_NM2160:
1929 CursorMem = 1024;
1930 CursorOff = 0x100;
1931 break;
1932 case FB_ACCEL_NEOMAGIC_NM2200:
1933 case FB_ACCEL_NEOMAGIC_NM2230:
1934 case FB_ACCEL_NEOMAGIC_NM2360:
1935 case FB_ACCEL_NEOMAGIC_NM2380:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 CursorMem = 1024;
1937 CursorOff = 0x1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938
1939 par->neo2200 = (Neo2200 __iomem *) par->mmio_vbase;
1940 break;
1941 }
1942/*
1943 info->sprite.size = CursorMem;
1944 info->sprite.scan_align = 1;
1945 info->sprite.buf_align = 1;
1946 info->sprite.flags = FB_PIXMAP_IO;
1947 info->sprite.outbuf = neofb_draw_cursor;
1948*/
1949 par->maxClock = maxClock;
1950 par->cursorOff = CursorOff;
Krzysztof Helt1ca6b622008-07-23 21:31:45 -07001951 return videoRam * 1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952}
1953
1954
1955static struct fb_info *__devinit neo_alloc_fb_info(struct pci_dev *dev, const struct
1956 pci_device_id *id)
1957{
1958 struct fb_info *info;
1959 struct neofb_par *par;
1960
Antonino A. Daplas9f19bc52006-01-09 20:53:09 -08001961 info = framebuffer_alloc(sizeof(struct neofb_par), &dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962
1963 if (!info)
1964 return NULL;
1965
1966 par = info->par;
1967
1968 info->fix.accel = id->driver_data;
1969
Jiri Slabyc4f28e52007-02-12 00:55:11 -08001970 mutex_init(&par->open_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 par->pci_burst = !nopciburst;
1972 par->lcd_stretch = !nostretch;
1973 par->libretto = libretto;
1974
1975 par->internal_display = internal;
1976 par->external_display = external;
1977 info->flags = FBINFO_DEFAULT | FBINFO_HWACCEL_YPAN;
1978
1979 switch (info->fix.accel) {
1980 case FB_ACCEL_NEOMAGIC_NM2070:
Andrew Morton0e904542008-02-06 01:39:15 -08001981 snprintf(info->fix.id, sizeof(info->fix.id),
1982 "MagicGraph 128");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 break;
1984 case FB_ACCEL_NEOMAGIC_NM2090:
Andrew Morton0e904542008-02-06 01:39:15 -08001985 snprintf(info->fix.id, sizeof(info->fix.id),
1986 "MagicGraph 128V");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 break;
1988 case FB_ACCEL_NEOMAGIC_NM2093:
Andrew Morton0e904542008-02-06 01:39:15 -08001989 snprintf(info->fix.id, sizeof(info->fix.id),
1990 "MagicGraph 128ZV");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 break;
1992 case FB_ACCEL_NEOMAGIC_NM2097:
Andrew Morton0e904542008-02-06 01:39:15 -08001993 snprintf(info->fix.id, sizeof(info->fix.id),
1994 "MagicGraph 128ZV+");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 break;
1996 case FB_ACCEL_NEOMAGIC_NM2160:
Andrew Morton0e904542008-02-06 01:39:15 -08001997 snprintf(info->fix.id, sizeof(info->fix.id),
1998 "MagicGraph 128XD");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 break;
2000 case FB_ACCEL_NEOMAGIC_NM2200:
Andrew Morton0e904542008-02-06 01:39:15 -08002001 snprintf(info->fix.id, sizeof(info->fix.id),
2002 "MagicGraph 256AV");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 info->flags |= FBINFO_HWACCEL_IMAGEBLIT |
2004 FBINFO_HWACCEL_COPYAREA |
2005 FBINFO_HWACCEL_FILLRECT;
2006 break;
2007 case FB_ACCEL_NEOMAGIC_NM2230:
Andrew Morton0e904542008-02-06 01:39:15 -08002008 snprintf(info->fix.id, sizeof(info->fix.id),
2009 "MagicGraph 256AV+");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 info->flags |= FBINFO_HWACCEL_IMAGEBLIT |
2011 FBINFO_HWACCEL_COPYAREA |
2012 FBINFO_HWACCEL_FILLRECT;
2013 break;
2014 case FB_ACCEL_NEOMAGIC_NM2360:
Andrew Morton0e904542008-02-06 01:39:15 -08002015 snprintf(info->fix.id, sizeof(info->fix.id),
2016 "MagicGraph 256ZX");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 info->flags |= FBINFO_HWACCEL_IMAGEBLIT |
2018 FBINFO_HWACCEL_COPYAREA |
2019 FBINFO_HWACCEL_FILLRECT;
2020 break;
2021 case FB_ACCEL_NEOMAGIC_NM2380:
Andrew Morton0e904542008-02-06 01:39:15 -08002022 snprintf(info->fix.id, sizeof(info->fix.id),
2023 "MagicGraph 256XL+");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 info->flags |= FBINFO_HWACCEL_IMAGEBLIT |
2025 FBINFO_HWACCEL_COPYAREA |
2026 FBINFO_HWACCEL_FILLRECT;
2027 break;
2028 }
2029
2030 info->fix.type = FB_TYPE_PACKED_PIXELS;
2031 info->fix.type_aux = 0;
2032 info->fix.xpanstep = 0;
2033 info->fix.ypanstep = 4;
2034 info->fix.ywrapstep = 0;
2035 info->fix.accel = id->driver_data;
2036
2037 info->fbops = &neofb_ops;
Antonino A. Daplas9f19bc52006-01-09 20:53:09 -08002038 info->pseudo_palette = par->palette;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 return info;
2040}
2041
2042static void neo_free_fb_info(struct fb_info *info)
2043{
2044 if (info) {
2045 /*
2046 * Free the colourmap
2047 */
2048 fb_dealloc_cmap(&info->cmap);
2049 framebuffer_release(info);
2050 }
2051}
2052
2053/* --------------------------------------------------------------------- */
2054
2055static int __devinit neofb_probe(struct pci_dev *dev,
2056 const struct pci_device_id *id)
2057{
2058 struct fb_info *info;
2059 u_int h_sync, v_sync;
2060 int video_len, err;
2061
2062 DBG("neofb_probe");
2063
2064 err = pci_enable_device(dev);
2065 if (err)
2066 return err;
2067
2068 err = -ENOMEM;
2069 info = neo_alloc_fb_info(dev, id);
2070 if (!info)
2071 return err;
2072
2073 err = neo_map_mmio(info, dev);
2074 if (err)
2075 goto err_map_mmio;
2076
2077 err = neo_scan_monitor(info);
2078 if (err)
2079 goto err_scan_monitor;
2080
2081 video_len = neo_init_hw(info);
2082 if (video_len < 0) {
2083 err = video_len;
2084 goto err_init_hw;
2085 }
2086
2087 err = neo_map_video(info, dev, video_len);
2088 if (err)
2089 goto err_init_hw;
2090
2091 if (!fb_find_mode(&info->var, info, mode_option, NULL, 0,
2092 info->monspecs.modedb, 16)) {
2093 printk(KERN_ERR "neofb: Unable to find usable video mode.\n");
2094 goto err_map_video;
2095 }
2096
2097 /*
2098 * Calculate the hsync and vsync frequencies. Note that
2099 * we split the 1e12 constant up so that we can preserve
2100 * the precision and fit the results into 32-bit registers.
2101 * (1953125000 * 512 = 1e12)
2102 */
2103 h_sync = 1953125000 / info->var.pixclock;
2104 h_sync =
2105 h_sync * 512 / (info->var.xres + info->var.left_margin +
2106 info->var.right_margin + info->var.hsync_len);
2107 v_sync =
2108 h_sync / (info->var.yres + info->var.upper_margin +
2109 info->var.lower_margin + info->var.vsync_len);
2110
2111 printk(KERN_INFO "neofb v" NEOFB_VERSION
2112 ": %dkB VRAM, using %dx%d, %d.%03dkHz, %dHz\n",
2113 info->fix.smem_len >> 10, info->var.xres,
2114 info->var.yres, h_sync / 1000, h_sync % 1000, v_sync);
2115
2116 if (fb_alloc_cmap(&info->cmap, 256, 0) < 0)
2117 goto err_map_video;
2118
2119 err = register_framebuffer(info);
2120 if (err < 0)
2121 goto err_reg_fb;
2122
2123 printk(KERN_INFO "fb%d: %s frame buffer device\n",
2124 info->node, info->fix.id);
2125
2126 /*
2127 * Our driver data
2128 */
2129 pci_set_drvdata(dev, info);
2130 return 0;
2131
2132err_reg_fb:
2133 fb_dealloc_cmap(&info->cmap);
2134err_map_video:
2135 neo_unmap_video(info);
2136err_init_hw:
2137 fb_destroy_modedb(info->monspecs.modedb);
2138err_scan_monitor:
2139 neo_unmap_mmio(info);
2140err_map_mmio:
2141 neo_free_fb_info(info);
2142 return err;
2143}
2144
2145static void __devexit neofb_remove(struct pci_dev *dev)
2146{
2147 struct fb_info *info = pci_get_drvdata(dev);
2148
2149 DBG("neofb_remove");
2150
2151 if (info) {
2152 /*
2153 * If unregister_framebuffer fails, then
2154 * we will be leaving hooks that could cause
2155 * oopsen laying around.
2156 */
2157 if (unregister_framebuffer(info))
2158 printk(KERN_WARNING
2159 "neofb: danger danger! Oopsen imminent!\n");
2160
2161 neo_unmap_video(info);
2162 fb_destroy_modedb(info->monspecs.modedb);
2163 neo_unmap_mmio(info);
2164 neo_free_fb_info(info);
2165
2166 /*
2167 * Ensure that the driver data is no longer
2168 * valid.
2169 */
2170 pci_set_drvdata(dev, NULL);
2171 }
2172}
2173
2174static struct pci_device_id neofb_devices[] = {
2175 {PCI_VENDOR_ID_NEOMAGIC, PCI_CHIP_NM2070,
2176 PCI_ANY_ID, PCI_ANY_ID, 0, 0, FB_ACCEL_NEOMAGIC_NM2070},
2177
2178 {PCI_VENDOR_ID_NEOMAGIC, PCI_CHIP_NM2090,
2179 PCI_ANY_ID, PCI_ANY_ID, 0, 0, FB_ACCEL_NEOMAGIC_NM2090},
2180
2181 {PCI_VENDOR_ID_NEOMAGIC, PCI_CHIP_NM2093,
2182 PCI_ANY_ID, PCI_ANY_ID, 0, 0, FB_ACCEL_NEOMAGIC_NM2093},
2183
2184 {PCI_VENDOR_ID_NEOMAGIC, PCI_CHIP_NM2097,
2185 PCI_ANY_ID, PCI_ANY_ID, 0, 0, FB_ACCEL_NEOMAGIC_NM2097},
2186
2187 {PCI_VENDOR_ID_NEOMAGIC, PCI_CHIP_NM2160,
2188 PCI_ANY_ID, PCI_ANY_ID, 0, 0, FB_ACCEL_NEOMAGIC_NM2160},
2189
2190 {PCI_VENDOR_ID_NEOMAGIC, PCI_CHIP_NM2200,
2191 PCI_ANY_ID, PCI_ANY_ID, 0, 0, FB_ACCEL_NEOMAGIC_NM2200},
2192
2193 {PCI_VENDOR_ID_NEOMAGIC, PCI_CHIP_NM2230,
2194 PCI_ANY_ID, PCI_ANY_ID, 0, 0, FB_ACCEL_NEOMAGIC_NM2230},
2195
2196 {PCI_VENDOR_ID_NEOMAGIC, PCI_CHIP_NM2360,
2197 PCI_ANY_ID, PCI_ANY_ID, 0, 0, FB_ACCEL_NEOMAGIC_NM2360},
2198
2199 {PCI_VENDOR_ID_NEOMAGIC, PCI_CHIP_NM2380,
2200 PCI_ANY_ID, PCI_ANY_ID, 0, 0, FB_ACCEL_NEOMAGIC_NM2380},
2201
2202 {0, 0, 0, 0, 0, 0, 0}
2203};
2204
2205MODULE_DEVICE_TABLE(pci, neofb_devices);
2206
2207static struct pci_driver neofb_driver = {
2208 .name = "neofb",
2209 .id_table = neofb_devices,
2210 .probe = neofb_probe,
2211 .remove = __devexit_p(neofb_remove)
2212};
2213
2214/* ************************* init in-kernel code ************************** */
2215
2216#ifndef MODULE
2217static int __init neofb_setup(char *options)
2218{
2219 char *this_opt;
2220
2221 DBG("neofb_setup");
2222
2223 if (!options || !*options)
2224 return 0;
2225
2226 while ((this_opt = strsep(&options, ",")) != NULL) {
2227 if (!*this_opt)
2228 continue;
2229
2230 if (!strncmp(this_opt, "internal", 8))
2231 internal = 1;
2232 else if (!strncmp(this_opt, "external", 8))
2233 external = 1;
2234 else if (!strncmp(this_opt, "nostretch", 9))
2235 nostretch = 1;
2236 else if (!strncmp(this_opt, "nopciburst", 10))
2237 nopciburst = 1;
2238 else if (!strncmp(this_opt, "libretto", 8))
2239 libretto = 1;
2240 else
2241 mode_option = this_opt;
2242 }
2243 return 0;
2244}
2245#endif /* MODULE */
2246
2247static int __init neofb_init(void)
2248{
2249#ifndef MODULE
2250 char *option = NULL;
2251
2252 if (fb_get_options("neofb", &option))
2253 return -ENODEV;
2254 neofb_setup(option);
2255#endif
2256 return pci_register_driver(&neofb_driver);
2257}
2258
2259module_init(neofb_init);
2260
2261#ifdef MODULE
2262static void __exit neofb_exit(void)
2263{
2264 pci_unregister_driver(&neofb_driver);
2265}
2266
2267module_exit(neofb_exit);
2268#endif /* MODULE */