blob: 70fb4ee2b4215d978208f5edf7693991e4ebdd5c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Frame buffer driver for Trident Blade and Image series
3 *
Krzysztof Helt245a2c22007-10-16 01:28:42 -07004 * Copyright 2001, 2002 - Jani Monoses <jani@iv.ro>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 *
7 * CREDITS:(in order of appearance)
Krzysztof Helt245a2c22007-10-16 01:28:42 -07008 * skeletonfb.c by Geert Uytterhoeven and other fb code in drivers/video
9 * Special thanks ;) to Mattia Crivellini <tia@mclink.it>
10 * much inspired by the XFree86 4.x Trident driver sources
11 * by Alan Hourihane the FreeVGA project
12 * Francesco Salvestrini <salvestrini@users.sf.net> XP support,
13 * code, suggestions
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 * TODO:
Krzysztof Helt245a2c22007-10-16 01:28:42 -070015 * timing value tweaking so it looks good on every monitor in every mode
16 * TGUI acceleration
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
18
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/module.h>
20#include <linux/fb.h>
21#include <linux/init.h>
22#include <linux/pci.h>
23
24#include <linux/delay.h>
25#include <video/trident.h>
26
27#define VERSION "0.7.8-NEWAPI"
28
29struct tridentfb_par {
Krzysztof Helt245a2c22007-10-16 01:28:42 -070030 int vclk; /* in MHz */
31 void __iomem *io_virt; /* iospace virtual memory address */
Linus Torvalds1da177e2005-04-16 15:20:36 -070032};
33
Krzysztof Helt245a2c22007-10-16 01:28:42 -070034static unsigned char eng_oper; /* engine operation... */
Linus Torvalds1da177e2005-04-16 15:20:36 -070035static struct fb_ops tridentfb_ops;
36
37static struct tridentfb_par default_par;
38
39/* FIXME:kmalloc these 3 instead */
40static struct fb_info fb_info;
41static u32 pseudo_pal[16];
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043static struct fb_var_screeninfo default_var;
44
45static struct fb_fix_screeninfo tridentfb_fix = {
Krzysztof Helt245a2c22007-10-16 01:28:42 -070046 .id = "Trident",
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 .type = FB_TYPE_PACKED_PIXELS,
48 .ypanstep = 1,
49 .visual = FB_VISUAL_PSEUDOCOLOR,
50 .accel = FB_ACCEL_NONE,
51};
52
53static int chip_id;
54
55static int defaultaccel;
56static int displaytype;
57
Linus Torvalds1da177e2005-04-16 15:20:36 -070058/* defaults which are normally overriden by user values */
59
60/* video mode */
Krzysztof Helt245a2c22007-10-16 01:28:42 -070061static char *mode = "640x480";
Linus Torvalds1da177e2005-04-16 15:20:36 -070062static int bpp = 8;
63
64static int noaccel;
65
66static int center;
67static int stretch;
68
69static int fp;
70static int crt;
71
72static int memsize;
73static int memdiff;
74static int nativex;
75
Linus Torvalds1da177e2005-04-16 15:20:36 -070076module_param(mode, charp, 0);
77module_param(bpp, int, 0);
78module_param(center, int, 0);
79module_param(stretch, int, 0);
80module_param(noaccel, int, 0);
81module_param(memsize, int, 0);
82module_param(memdiff, int, 0);
83module_param(nativex, int, 0);
84module_param(fp, int, 0);
85module_param(crt, int, 0);
86
Linus Torvalds1da177e2005-04-16 15:20:36 -070087static int chip3D;
88static int chipcyber;
89
90static int is3Dchip(int id)
91{
Krzysztof Helt245a2c22007-10-16 01:28:42 -070092 return ((id == BLADE3D) || (id == CYBERBLADEE4) ||
93 (id == CYBERBLADEi7) || (id == CYBERBLADEi7D) ||
94 (id == CYBER9397) || (id == CYBER9397DVD) ||
95 (id == CYBER9520) || (id == CYBER9525DVD) ||
96 (id == IMAGE975) || (id == IMAGE985) ||
97 (id == CYBERBLADEi1) || (id == CYBERBLADEi1D) ||
98 (id == CYBERBLADEAi1) || (id == CYBERBLADEAi1D) ||
99 (id == CYBERBLADEXPm8) || (id == CYBERBLADEXPm16) ||
100 (id == CYBERBLADEXPAi1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101}
102
103static int iscyber(int id)
104{
105 switch (id) {
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700106 case CYBER9388:
107 case CYBER9382:
108 case CYBER9385:
109 case CYBER9397:
110 case CYBER9397DVD:
111 case CYBER9520:
112 case CYBER9525DVD:
113 case CYBERBLADEE4:
114 case CYBERBLADEi7D:
115 case CYBERBLADEi1:
116 case CYBERBLADEi1D:
117 case CYBERBLADEAi1:
118 case CYBERBLADEAi1D:
119 case CYBERBLADEXPAi1:
120 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700122 case CYBER9320:
123 case TGUI9660:
124 case IMAGE975:
125 case IMAGE985:
126 case BLADE3D:
127 case CYBERBLADEi7: /* VIA MPV4 integrated version */
128
129 default:
130 /* case CYBERBLDAEXPm8: Strange */
131 /* case CYBERBLDAEXPm16: Strange */
132 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 }
134}
135
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700136#define CRT 0x3D0 /* CRTC registers offset for color display */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
138#ifndef TRIDENT_MMIO
139 #define TRIDENT_MMIO 1
140#endif
141
142#if TRIDENT_MMIO
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700143 #define t_outb(val, reg) writeb(val,((struct tridentfb_par *)(fb_info.par))->io_virt + reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 #define t_inb(reg) readb(((struct tridentfb_par*)(fb_info.par))->io_virt + reg)
145#else
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700146 #define t_outb(val, reg) outb(val, reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 #define t_inb(reg) inb(reg)
148#endif
149
150
151static struct accel_switch {
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700152 void (*init_accel) (int, int);
153 void (*wait_engine) (void);
154 void (*fill_rect) (u32, u32, u32, u32, u32, u32);
155 void (*copy_rect) (u32, u32, u32, u32, u32, u32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156} *acc;
157
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700158#define writemmr(r, v) writel(v, ((struct tridentfb_par *)fb_info.par)->io_virt + r)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159#define readmmr(r) readl(((struct tridentfb_par *)fb_info.par)->io_virt + r)
160
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161/*
162 * Blade specific acceleration.
163 */
164
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700165#define point(x, y) ((y) << 16 | (x))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166#define STA 0x2120
167#define CMD 0x2144
168#define ROP 0x2148
169#define CLR 0x2160
170#define SR1 0x2100
171#define SR2 0x2104
172#define DR1 0x2108
173#define DR2 0x210C
174
175#define ROP_S 0xCC
176
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700177static void blade_init_accel(int pitch, int bpp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178{
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700179 int v1 = (pitch >> 3) << 20;
180 int tmp = 0, v2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 switch (bpp) {
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700182 case 8:
183 tmp = 0;
184 break;
185 case 15:
186 tmp = 5;
187 break;
188 case 16:
189 tmp = 1;
190 break;
191 case 24:
192 case 32:
193 tmp = 2;
194 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 }
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700196 v2 = v1 | (tmp << 29);
197 writemmr(0x21C0, v2);
198 writemmr(0x21C4, v2);
199 writemmr(0x21B8, v2);
200 writemmr(0x21BC, v2);
201 writemmr(0x21D0, v1);
202 writemmr(0x21D4, v1);
203 writemmr(0x21C8, v1);
204 writemmr(0x21CC, v1);
205 writemmr(0x216C, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206}
207
208static void blade_wait_engine(void)
209{
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700210 while (readmmr(STA) & 0xFA800000) ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211}
212
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700213static void blade_fill_rect(u32 x, u32 y, u32 w, u32 h, u32 c, u32 rop)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214{
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700215 writemmr(CLR, c);
216 writemmr(ROP, rop ? 0x66 : ROP_S);
217 writemmr(CMD, 0x20000000 | 1 << 19 | 1 << 4 | 2 << 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700219 writemmr(DR1, point(x, y));
220 writemmr(DR2, point(x + w - 1, y + h - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221}
222
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700223static void blade_copy_rect(u32 x1, u32 y1, u32 x2, u32 y2, u32 w, u32 h)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224{
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700225 u32 s1, s2, d1, d2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 int direction = 2;
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700227 s1 = point(x1, y1);
228 s2 = point(x1 + w - 1, y1 + h - 1);
229 d1 = point(x2, y2);
230 d2 = point(x2 + w - 1, y2 + h - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
232 if ((y1 > y2) || ((y1 == y2) && (x1 > x2)))
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700233 direction = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700235 writemmr(ROP, ROP_S);
236 writemmr(CMD, 0xE0000000 | 1 << 19 | 1 << 4 | 1 << 2 | direction);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700238 writemmr(SR1, direction ? s2 : s1);
239 writemmr(SR2, direction ? s1 : s2);
240 writemmr(DR1, direction ? d2 : d1);
241 writemmr(DR2, direction ? d1 : d2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242}
243
244static struct accel_switch accel_blade = {
245 blade_init_accel,
246 blade_wait_engine,
247 blade_fill_rect,
248 blade_copy_rect,
249};
250
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251/*
252 * BladeXP specific acceleration functions
253 */
254
255#define ROP_P 0xF0
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700256#define masked_point(x, y) ((y & 0xffff)<<16|(x & 0xffff))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700258static void xp_init_accel(int pitch, int bpp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259{
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700260 int tmp = 0, v1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 unsigned char x = 0;
262
263 switch (bpp) {
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700264 case 8:
265 x = 0;
266 break;
267 case 16:
268 x = 1;
269 break;
270 case 24:
271 x = 3;
272 break;
273 case 32:
274 x = 2;
275 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 }
277
278 switch (pitch << (bpp >> 3)) {
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700279 case 8192:
280 case 512:
281 x |= 0x00;
282 break;
283 case 1024:
284 x |= 0x04;
285 break;
286 case 2048:
287 x |= 0x08;
288 break;
289 case 4096:
290 x |= 0x0C;
291 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 }
293
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700294 t_outb(x, 0x2125);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
296 eng_oper = x | 0x40;
297
298 switch (bpp) {
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700299 case 8:
300 tmp = 18;
301 break;
302 case 15:
303 case 16:
304 tmp = 19;
305 break;
306 case 24:
307 case 32:
308 tmp = 20;
309 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 }
311
312 v1 = pitch << tmp;
313
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700314 writemmr(0x2154, v1);
315 writemmr(0x2150, v1);
316 t_outb(3, 0x2126);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317}
318
319static void xp_wait_engine(void)
320{
321 int busy;
322 int count, timeout;
323
324 count = 0;
325 timeout = 0;
326 for (;;) {
327 busy = t_inb(STA) & 0x80;
328 if (busy != 0x80)
329 return;
330 count++;
331 if (count == 10000000) {
332 /* Timeout */
333 count = 9990000;
334 timeout++;
335 if (timeout == 8) {
336 /* Reset engine */
337 t_outb(0x00, 0x2120);
338 return;
339 }
340 }
341 }
342}
343
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700344static void xp_fill_rect(u32 x, u32 y, u32 w, u32 h, u32 c, u32 rop)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345{
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700346 writemmr(0x2127, ROP_P);
347 writemmr(0x2158, c);
348 writemmr(0x2128, 0x4000);
349 writemmr(0x2140, masked_point(h, w));
350 writemmr(0x2138, masked_point(y, x));
351 t_outb(0x01, 0x2124);
352 t_outb(eng_oper, 0x2125);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353}
354
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700355static void xp_copy_rect(u32 x1, u32 y1, u32 x2, u32 y2, u32 w, u32 h)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356{
357 int direction;
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700358 u32 x1_tmp, x2_tmp, y1_tmp, y2_tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
360 direction = 0x0004;
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700361
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 if ((x1 < x2) && (y1 == y2)) {
363 direction |= 0x0200;
364 x1_tmp = x1 + w - 1;
365 x2_tmp = x2 + w - 1;
366 } else {
367 x1_tmp = x1;
368 x2_tmp = x2;
369 }
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700370
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 if (y1 < y2) {
372 direction |= 0x0100;
373 y1_tmp = y1 + h - 1;
374 y2_tmp = y2 + h - 1;
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700375 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 y1_tmp = y1;
377 y2_tmp = y2;
378 }
379
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700380 writemmr(0x2128, direction);
381 t_outb(ROP_S, 0x2127);
382 writemmr(0x213C, masked_point(y1_tmp, x1_tmp));
383 writemmr(0x2138, masked_point(y2_tmp, x2_tmp));
384 writemmr(0x2140, masked_point(h, w));
385 t_outb(0x01, 0x2124);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386}
387
388static struct accel_switch accel_xp = {
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700389 xp_init_accel,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 xp_wait_engine,
391 xp_fill_rect,
392 xp_copy_rect,
393};
394
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395/*
396 * Image specific acceleration functions
397 */
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700398static void image_init_accel(int pitch, int bpp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399{
400 int tmp = 0;
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700401 switch (bpp) {
402 case 8:
403 tmp = 0;
404 break;
405 case 15:
406 tmp = 5;
407 break;
408 case 16:
409 tmp = 1;
410 break;
411 case 24:
412 case 32:
413 tmp = 2;
414 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 }
416 writemmr(0x2120, 0xF0000000);
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700417 writemmr(0x2120, 0x40000000 | tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 writemmr(0x2120, 0x80000000);
419 writemmr(0x2144, 0x00000000);
420 writemmr(0x2148, 0x00000000);
421 writemmr(0x2150, 0x00000000);
422 writemmr(0x2154, 0x00000000);
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700423 writemmr(0x2120, 0x60000000 | (pitch << 16) | pitch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 writemmr(0x216C, 0x00000000);
425 writemmr(0x2170, 0x00000000);
426 writemmr(0x217C, 0x00000000);
427 writemmr(0x2120, 0x10000000);
428 writemmr(0x2130, (2047 << 16) | 2047);
429}
430
431static void image_wait_engine(void)
432{
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700433 while (readmmr(0x2164) & 0xF0000000) ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434}
435
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700436static void image_fill_rect(u32 x, u32 y, u32 w, u32 h, u32 c, u32 rop)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437{
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700438 writemmr(0x2120, 0x80000000);
439 writemmr(0x2120, 0x90000000 | ROP_S);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700441 writemmr(0x2144, c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700443 writemmr(DR1, point(x, y));
444 writemmr(DR2, point(x + w - 1, y + h - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700446 writemmr(0x2124, 0x80000000 | 3 << 22 | 1 << 10 | 1 << 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447}
448
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700449static void image_copy_rect(u32 x1, u32 y1, u32 x2, u32 y2, u32 w, u32 h)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450{
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700451 u32 s1, s2, d1, d2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 int direction = 2;
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700453 s1 = point(x1, y1);
454 s2 = point(x1 + w - 1, y1 + h - 1);
455 d1 = point(x2, y2);
456 d2 = point(x2 + w - 1, y2 + h - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700458 if ((y1 > y2) || ((y1 == y2) && (x1 > x2)))
459 direction = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700461 writemmr(0x2120, 0x80000000);
462 writemmr(0x2120, 0x90000000 | ROP_S);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700464 writemmr(SR1, direction ? s2 : s1);
465 writemmr(SR2, direction ? s1 : s2);
466 writemmr(DR1, direction ? d2 : d1);
467 writemmr(DR2, direction ? d1 : d2);
468 writemmr(0x2124, 0x80000000 | 1 << 22 | 1 << 10 | 1 << 7 | direction);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469}
470
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471static struct accel_switch accel_image = {
472 image_init_accel,
473 image_wait_engine,
474 image_fill_rect,
475 image_copy_rect,
476};
477
478/*
479 * Accel functions called by the upper layers
480 */
481#ifdef CONFIG_FB_TRIDENT_ACCEL
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700482static void tridentfb_fillrect(struct fb_info *info,
483 const struct fb_fillrect *fr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484{
485 int bpp = info->var.bits_per_pixel;
Antonino A. Daplas8dad46c2005-08-01 23:46:44 +0800486 int col = 0;
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700487
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 switch (bpp) {
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700489 default:
490 case 8:
491 col |= fr->color;
492 col |= col << 8;
493 col |= col << 16;
494 break;
495 case 16:
496 col = ((u32 *)(info->pseudo_palette))[fr->color];
497 break;
498 case 32:
499 col = ((u32 *)(info->pseudo_palette))[fr->color];
500 break;
501 }
502
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 acc->fill_rect(fr->dx, fr->dy, fr->width, fr->height, col, fr->rop);
504 acc->wait_engine();
505}
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700506static void tridentfb_copyarea(struct fb_info *info,
507 const struct fb_copyarea *ca)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508{
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700509 acc->copy_rect(ca->sx, ca->sy, ca->dx, ca->dy, ca->width, ca->height);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 acc->wait_engine();
511}
512#else /* !CONFIG_FB_TRIDENT_ACCEL */
513#define tridentfb_fillrect cfb_fillrect
514#define tridentfb_copyarea cfb_copyarea
515#endif /* CONFIG_FB_TRIDENT_ACCEL */
516
517
518/*
519 * Hardware access functions
520 */
521
522static inline unsigned char read3X4(int reg)
523{
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700524 struct tridentfb_par *par = (struct tridentfb_par *)fb_info.par;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 writeb(reg, par->io_virt + CRT + 4);
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700526 return readb(par->io_virt + CRT + 5);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527}
528
529static inline void write3X4(int reg, unsigned char val)
530{
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700531 struct tridentfb_par *par = (struct tridentfb_par *)fb_info.par;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 writeb(reg, par->io_virt + CRT + 4);
533 writeb(val, par->io_virt + CRT + 5);
534}
535
536static inline unsigned char read3C4(int reg)
537{
538 t_outb(reg, 0x3C4);
539 return t_inb(0x3C5);
540}
541
542static inline void write3C4(int reg, unsigned char val)
543{
544 t_outb(reg, 0x3C4);
545 t_outb(val, 0x3C5);
546}
547
548static inline unsigned char read3CE(int reg)
549{
550 t_outb(reg, 0x3CE);
551 return t_inb(0x3CF);
552}
553
554static inline void writeAttr(int reg, unsigned char val)
555{
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700556 readb(((struct tridentfb_par *)fb_info.par)->io_virt + CRT + 0x0A); /* flip-flop to index */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 t_outb(reg, 0x3C0);
558 t_outb(val, 0x3C0);
559}
560
561static inline void write3CE(int reg, unsigned char val)
562{
563 t_outb(reg, 0x3CE);
564 t_outb(val, 0x3CF);
565}
566
567static inline void enable_mmio(void)
568{
569 /* Goto New Mode */
570 outb(0x0B, 0x3C4);
571 inb(0x3C5);
572
573 /* Unprotect registers */
574 outb(NewMode1, 0x3C4);
575 outb(0x80, 0x3C5);
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700576
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 /* Enable MMIO */
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700578 outb(PCIReg, 0x3D4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 outb(inb(0x3D5) | 0x01, 0x3D5);
580}
581
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582#define crtc_unlock() write3X4(CRTVSyncEnd, read3X4(CRTVSyncEnd) & 0x7F)
583
584/* Return flat panel's maximum x resolution */
Randy Dunlap474ab452006-06-25 05:48:38 -0700585static int __devinit get_nativex(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586{
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700587 int x, y, tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
589 if (nativex)
590 return nativex;
591
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700592 tmp = (read3CE(VertStretch) >> 4) & 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
594 switch (tmp) {
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700595 case 0:
596 x = 1280; y = 1024;
597 break;
598 case 2:
599 x = 1024; y = 768;
600 break;
601 case 3:
602 x = 800; y = 600;
603 break;
604 case 4:
605 x = 1400; y = 1050;
606 break;
607 case 1:
608 default:
609 x = 640; y = 480;
610 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 }
612
613 output("%dx%d flat panel found\n", x, y);
614 return x;
615}
616
617/* Set pitch */
618static void set_lwidth(int width)
619{
620 write3X4(Offset, width & 0xFF);
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700621 write3X4(AddColReg,
622 (read3X4(AddColReg) & 0xCF) | ((width & 0x300) >> 4));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623}
624
625/* For resolutions smaller than FP resolution stretch */
626static void screen_stretch(void)
627{
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700628 if (chip_id != CYBERBLADEXPAi1)
629 write3CE(BiosReg, 0);
630 else
631 write3CE(BiosReg, 8);
632 write3CE(VertStretch, (read3CE(VertStretch) & 0x7C) | 1);
633 write3CE(HorStretch, (read3CE(HorStretch) & 0x7C) | 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634}
635
636/* For resolutions smaller than FP resolution center */
637static void screen_center(void)
638{
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700639 write3CE(VertStretch, (read3CE(VertStretch) & 0x7C) | 0x80);
640 write3CE(HorStretch, (read3CE(HorStretch) & 0x7C) | 0x80);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641}
642
643/* Address of first shown pixel in display memory */
644static void set_screen_start(int base)
645{
646 write3X4(StartAddrLow, base & 0xFF);
647 write3X4(StartAddrHigh, (base & 0xFF00) >> 8);
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700648 write3X4(CRTCModuleTest,
649 (read3X4(CRTCModuleTest) & 0xDF) | ((base & 0x10000) >> 11));
650 write3X4(CRTHiOrd,
651 (read3X4(CRTHiOrd) & 0xF8) | ((base & 0xE0000) >> 17));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652}
653
654/* Use 20.12 fixed-point for NTSC value and frequency calculation */
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700655#define calc_freq(n, m, k) ( ((unsigned long)0xE517 * (n + 8) / ((m + 2) * (1 << k))) >> 12 )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
657/* Set dotclock frequency */
658static void set_vclk(int freq)
659{
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700660 int m, n, k;
661 int f, fi, d, di;
662 unsigned char lo = 0, hi = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
664 d = 20;
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700665 for (k = 2; k >= 0; k--)
666 for (m = 0; m < 63; m++)
667 for (n = 0; n < 128; n++) {
668 fi = calc_freq(n, m, k);
669 if ((di = abs(fi - freq)) < d) {
670 d = di;
671 f = fi;
672 lo = n;
673 hi = (k << 6) | m;
674 }
675 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 if (chip3D) {
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700677 write3C4(ClockHigh, hi);
678 write3C4(ClockLow, lo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 } else {
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700680 outb(lo, 0x43C8);
681 outb(hi, 0x43C9);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 }
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700683 debug("VCLK = %X %X\n", hi, lo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684}
685
686/* Set number of lines for flat panels*/
687static void set_number_of_lines(int lines)
688{
689 int tmp = read3CE(CyberEnhance) & 0x8F;
690 if (lines > 1024)
691 tmp |= 0x50;
692 else if (lines > 768)
693 tmp |= 0x30;
694 else if (lines > 600)
695 tmp |= 0x20;
696 else if (lines > 480)
697 tmp |= 0x10;
698 write3CE(CyberEnhance, tmp);
699}
700
701/*
702 * If we see that FP is active we assume we have one.
703 * Otherwise we have a CRT display.User can override.
704 */
Randy Dunlap474ab452006-06-25 05:48:38 -0700705static unsigned int __devinit get_displaytype(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706{
707 if (fp)
708 return DISPLAY_FP;
709 if (crt || !chipcyber)
710 return DISPLAY_CRT;
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700711 return (read3CE(FPConfig) & 0x10) ? DISPLAY_FP : DISPLAY_CRT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712}
713
714/* Try detecting the video memory size */
Randy Dunlap474ab452006-06-25 05:48:38 -0700715static unsigned int __devinit get_memsize(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716{
717 unsigned char tmp, tmp2;
718 unsigned int k;
719
720 /* If memory size provided by user */
721 if (memsize)
722 k = memsize * Kb;
723 else
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700724 switch (chip_id) {
725 case CYBER9525DVD:
726 k = 2560 * Kb;
727 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 default:
729 tmp = read3X4(SPR) & 0x0F;
730 switch (tmp) {
731
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700732 case 0x01:
733 k = 512;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 break;
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700735 case 0x02:
736 k = 6 * Mb; /* XP */
737 break;
738 case 0x03:
739 k = 1 * Mb;
740 break;
741 case 0x04:
742 k = 8 * Mb;
743 break;
744 case 0x06:
745 k = 10 * Mb; /* XP */
746 break;
747 case 0x07:
748 k = 2 * Mb;
749 break;
750 case 0x08:
751 k = 12 * Mb; /* XP */
752 break;
753 case 0x0A:
754 k = 14 * Mb; /* XP */
755 break;
756 case 0x0C:
757 k = 16 * Mb; /* XP */
758 break;
759 case 0x0E: /* XP */
760
761 tmp2 = read3C4(0xC1);
762 switch (tmp2) {
763 case 0x00:
764 k = 20 * Mb;
765 break;
766 case 0x01:
767 k = 24 * Mb;
768 break;
769 case 0x10:
770 k = 28 * Mb;
771 break;
772 case 0x11:
773 k = 32 * Mb;
774 break;
775 default:
776 k = 1 * Mb;
777 break;
778 }
779 break;
780
781 case 0x0F:
782 k = 4 * Mb;
783 break;
784 default:
785 k = 1 * Mb;
786 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 }
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700788 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
790 k -= memdiff * Kb;
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700791 output("framebuffer size = %d Kb\n", k / Kb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 return k;
793}
794
795/* See if we can handle the video mode described in var */
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700796static int tridentfb_check_var(struct fb_var_screeninfo *var,
797 struct fb_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798{
799 int bpp = var->bits_per_pixel;
800 debug("enter\n");
801
802 /* check color depth */
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700803 if (bpp == 24)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 bpp = var->bits_per_pixel = 32;
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700805 /* check whether resolution fits on panel and in memory */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 if (flatpanel && nativex && var->xres > nativex)
807 return -EINVAL;
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700808 if (var->xres * var->yres_virtual * bpp / 8 > info->fix.smem_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 return -EINVAL;
810
811 switch (bpp) {
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700812 case 8:
813 var->red.offset = 0;
814 var->green.offset = 0;
815 var->blue.offset = 0;
816 var->red.length = 6;
817 var->green.length = 6;
818 var->blue.length = 6;
819 break;
820 case 16:
821 var->red.offset = 11;
822 var->green.offset = 5;
823 var->blue.offset = 0;
824 var->red.length = 5;
825 var->green.length = 6;
826 var->blue.length = 5;
827 break;
828 case 32:
829 var->red.offset = 16;
830 var->green.offset = 8;
831 var->blue.offset = 0;
832 var->red.length = 8;
833 var->green.length = 8;
834 var->blue.length = 8;
835 break;
836 default:
837 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 }
839 debug("exit\n");
840
841 return 0;
842
843}
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700844
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845/* Pan the display */
846static int tridentfb_pan_display(struct fb_var_screeninfo *var,
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700847 struct fb_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848{
849 unsigned int offset;
850
851 debug("enter\n");
852 offset = (var->xoffset + (var->yoffset * var->xres))
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700853 * var->bits_per_pixel / 32;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 info->var.xoffset = var->xoffset;
855 info->var.yoffset = var->yoffset;
856 set_screen_start(offset);
857 debug("exit\n");
858 return 0;
859}
860
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700861#define shadowmode_on() write3CE(CyberControl, read3CE(CyberControl) | 0x81)
862#define shadowmode_off() write3CE(CyberControl, read3CE(CyberControl) & 0x7E)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863
864/* Set the hardware to the requested video mode */
865static int tridentfb_set_par(struct fb_info *info)
866{
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700867 struct tridentfb_par *par = (struct tridentfb_par *)(info->par);
868 u32 htotal, hdispend, hsyncstart, hsyncend, hblankstart, hblankend;
869 u32 vtotal, vdispend, vsyncstart, vsyncend, vblankstart, vblankend;
870 struct fb_var_screeninfo *var = &info->var;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 int bpp = var->bits_per_pixel;
872 unsigned char tmp;
873 debug("enter\n");
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700874 hdispend = var->xres / 8 - 1;
875 hsyncstart = (var->xres + var->right_margin) / 8;
876 hsyncend = var->hsync_len / 8;
877 htotal =
878 (var->xres + var->left_margin + var->right_margin +
879 var->hsync_len) / 8 - 10;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 hblankstart = hdispend + 1;
881 hblankend = htotal + 5;
882
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 vdispend = var->yres - 1;
884 vsyncstart = var->yres + var->lower_margin;
885 vsyncend = var->vsync_len;
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700886 vtotal = var->upper_margin + vsyncstart + vsyncend - 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 vblankstart = var->yres;
888 vblankend = vtotal + 2;
889
890 enable_mmio();
891 crtc_unlock();
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700892 write3CE(CyberControl, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
894 if (flatpanel && var->xres < nativex) {
895 /*
896 * on flat panels with native size larger
897 * than requested resolution decide whether
898 * we stretch or center
899 */
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700900 t_outb(0xEB, 0x3C2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901
902 shadowmode_on();
903
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700904 if (center)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 screen_center();
906 else if (stretch)
907 screen_stretch();
908
909 } else {
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700910 t_outb(0x2B, 0x3C2);
911 write3CE(CyberControl, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 }
913
914 /* vertical timing values */
915 write3X4(CRTVTotal, vtotal & 0xFF);
916 write3X4(CRTVDispEnd, vdispend & 0xFF);
917 write3X4(CRTVSyncStart, vsyncstart & 0xFF);
918 write3X4(CRTVSyncEnd, (vsyncend & 0x0F));
919 write3X4(CRTVBlankStart, vblankstart & 0xFF);
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700920 write3X4(CRTVBlankEnd, 0 /* p->vblankend & 0xFF */ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
922 /* horizontal timing values */
923 write3X4(CRTHTotal, htotal & 0xFF);
924 write3X4(CRTHDispEnd, hdispend & 0xFF);
925 write3X4(CRTHSyncStart, hsyncstart & 0xFF);
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700926 write3X4(CRTHSyncEnd, (hsyncend & 0x1F) | ((hblankend & 0x20) << 2));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 write3X4(CRTHBlankStart, hblankstart & 0xFF);
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700928 write3X4(CRTHBlankEnd, 0 /* (p->hblankend & 0x1F) */ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929
930 /* higher bits of vertical timing values */
931 tmp = 0x10;
932 if (vtotal & 0x100) tmp |= 0x01;
933 if (vdispend & 0x100) tmp |= 0x02;
934 if (vsyncstart & 0x100) tmp |= 0x04;
935 if (vblankstart & 0x100) tmp |= 0x08;
936
937 if (vtotal & 0x200) tmp |= 0x20;
938 if (vdispend & 0x200) tmp |= 0x40;
939 if (vsyncstart & 0x200) tmp |= 0x80;
940 write3X4(CRTOverflow, tmp);
941
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700942 tmp = read3X4(CRTHiOrd) | 0x08; /* line compare bit 10 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 if (vtotal & 0x400) tmp |= 0x80;
944 if (vblankstart & 0x400) tmp |= 0x40;
945 if (vsyncstart & 0x400) tmp |= 0x20;
946 if (vdispend & 0x400) tmp |= 0x10;
947 write3X4(CRTHiOrd, tmp);
948
949 tmp = 0;
950 if (htotal & 0x800) tmp |= 0x800 >> 11;
951 if (hblankstart & 0x800) tmp |= 0x800 >> 7;
952 write3X4(HorizOverflow, tmp);
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700953
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 tmp = 0x40;
955 if (vblankstart & 0x200) tmp |= 0x20;
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700956//FIXME if (info->var.vmode & FB_VMODE_DOUBLE) tmp |= 0x80; /* double scan for 200 line modes */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 write3X4(CRTMaxScanLine, tmp);
958
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700959 write3X4(CRTLineCompare, 0xFF);
960 write3X4(CRTPRowScan, 0);
961 write3X4(CRTModeControl, 0xC3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700963 write3X4(LinearAddReg, 0x20); /* enable linear addressing */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700965 tmp = (info->var.vmode & FB_VMODE_INTERLACED) ? 0x84 : 0x80;
966 write3X4(CRTCModuleTest, tmp); /* enable access extended memory */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700968 write3X4(GraphEngReg, 0x80); /* enable GE for text acceleration */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700970#ifdef CONFIG_FB_TRIDENT_ACCEL
971 acc->init_accel(info->var.xres, bpp);
Antonino A. Daplas8dad46c2005-08-01 23:46:44 +0800972#endif
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700973
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 switch (bpp) {
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700975 case 8:
976 tmp = 0x00;
977 break;
978 case 16:
979 tmp = 0x05;
980 break;
981 case 24:
982 tmp = 0x29;
983 break;
984 case 32:
985 tmp = 0x09;
986 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 }
988
989 write3X4(PixelBusReg, tmp);
990
991 tmp = 0x10;
992 if (chipcyber)
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700993 tmp |= 0x20;
994 write3X4(DRAMControl, tmp); /* both IO, linear enable */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995
996 write3X4(InterfaceSel, read3X4(InterfaceSel) | 0x40);
Krzysztof Helt245a2c22007-10-16 01:28:42 -0700997 write3X4(Performance, 0x92);
998 write3X4(PCIReg, 0x07); /* MMIO & PCI read and write burst enable */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999
1000 /* convert from picoseconds to MHz */
Krzysztof Helt245a2c22007-10-16 01:28:42 -07001001 par->vclk = 1000000 / info->var.pixclock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 if (bpp == 32)
Krzysztof Helt245a2c22007-10-16 01:28:42 -07001003 par->vclk *= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 set_vclk(par->vclk);
1005
Krzysztof Helt245a2c22007-10-16 01:28:42 -07001006 write3C4(0, 3);
1007 write3C4(1, 1); /* set char clock 8 dots wide */
1008 write3C4(2, 0x0F); /* enable 4 maps because needed in chain4 mode */
1009 write3C4(3, 0);
1010 write3C4(4, 0x0E); /* memory mode enable bitmaps ?? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011
Krzysztof Helt245a2c22007-10-16 01:28:42 -07001012 write3CE(MiscExtFunc, (bpp == 32) ? 0x1A : 0x12); /* divide clock by 2 if 32bpp */
1013 /* chain4 mode display and CPU path */
1014 write3CE(0x5, 0x40); /* no CGA compat, allow 256 col */
1015 write3CE(0x6, 0x05); /* graphics mode */
1016 write3CE(0x7, 0x0F); /* planes? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017
1018 if (chip_id == CYBERBLADEXPAi1) {
1019 /* This fixes snow-effect in 32 bpp */
Krzysztof Helt245a2c22007-10-16 01:28:42 -07001020 write3X4(CRTHSyncStart, 0x84);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 }
1022
Krzysztof Helt245a2c22007-10-16 01:28:42 -07001023 writeAttr(0x10, 0x41); /* graphics mode and support 256 color modes */
1024 writeAttr(0x12, 0x0F); /* planes */
1025 writeAttr(0x13, 0); /* horizontal pel panning */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026
Krzysztof Helt245a2c22007-10-16 01:28:42 -07001027 /* colors */
1028 for (tmp = 0; tmp < 0x10; tmp++)
1029 writeAttr(tmp, tmp);
1030 readb(par->io_virt + CRT + 0x0A); /* flip-flop to index */
1031 t_outb(0x20, 0x3C0); /* enable attr */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032
1033 switch (bpp) {
Krzysztof Helt245a2c22007-10-16 01:28:42 -07001034 case 8:
1035 tmp = 0;
1036 break;
1037 case 15:
1038 tmp = 0x10;
1039 break;
1040 case 16:
1041 tmp = 0x30;
1042 break;
1043 case 24:
1044 case 32:
1045 tmp = 0xD0;
1046 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 }
1048
1049 t_inb(0x3C8);
1050 t_inb(0x3C6);
1051 t_inb(0x3C6);
1052 t_inb(0x3C6);
1053 t_inb(0x3C6);
Krzysztof Helt245a2c22007-10-16 01:28:42 -07001054 t_outb(tmp, 0x3C6);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 t_inb(0x3C8);
1056
1057 if (flatpanel)
1058 set_number_of_lines(info->var.yres);
Krzysztof Helt245a2c22007-10-16 01:28:42 -07001059 set_lwidth(info->var.xres * bpp / (4 * 16));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 info->fix.visual = (bpp == 8) ? FB_VISUAL_PSEUDOCOLOR : FB_VISUAL_TRUECOLOR;
Krzysztof Helt245a2c22007-10-16 01:28:42 -07001061 info->fix.line_length = info->var.xres * (bpp >> 3);
1062 info->cmap.len = (bpp == 8) ? 256 : 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 debug("exit\n");
1064 return 0;
1065}
1066
1067/* Set one color register */
1068static int tridentfb_setcolreg(unsigned regno, unsigned red, unsigned green,
Krzysztof Helt245a2c22007-10-16 01:28:42 -07001069 unsigned blue, unsigned transp,
1070 struct fb_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071{
1072 int bpp = info->var.bits_per_pixel;
1073
1074 if (regno >= info->cmap.len)
1075 return 1;
1076
Antonino A. Daplas973d9ab2007-07-17 04:05:41 -07001077 if (bpp == 8) {
Krzysztof Helt245a2c22007-10-16 01:28:42 -07001078 t_outb(0xFF, 0x3C6);
1079 t_outb(regno, 0x3C8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080
Krzysztof Helt245a2c22007-10-16 01:28:42 -07001081 t_outb(red >> 10, 0x3C9);
1082 t_outb(green >> 10, 0x3C9);
1083 t_outb(blue >> 10, 0x3C9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084
Antonino A. Daplas973d9ab2007-07-17 04:05:41 -07001085 } else if (regno < 16) {
1086 if (bpp == 16) { /* RGB 565 */
1087 u32 col;
Antonino A. Daplas8dad46c2005-08-01 23:46:44 +08001088
Antonino A. Daplas973d9ab2007-07-17 04:05:41 -07001089 col = (red & 0xF800) | ((green & 0xFC00) >> 5) |
1090 ((blue & 0xF800) >> 11);
1091 col |= col << 16;
1092 ((u32 *)(info->pseudo_palette))[regno] = col;
1093 } else if (bpp == 32) /* ARGB 8888 */
1094 ((u32*)info->pseudo_palette)[regno] =
Krzysztof Helt245a2c22007-10-16 01:28:42 -07001095 ((transp & 0xFF00) << 16) |
1096 ((red & 0xFF00) << 8) |
Antonino A. Daplas973d9ab2007-07-17 04:05:41 -07001097 ((green & 0xFF00)) |
Krzysztof Helt245a2c22007-10-16 01:28:42 -07001098 ((blue & 0xFF00) >> 8);
Antonino A. Daplas973d9ab2007-07-17 04:05:41 -07001099 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100
Krzysztof Helt245a2c22007-10-16 01:28:42 -07001101/* debug("exit\n"); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 return 0;
1103}
1104
1105/* Try blanking the screen.For flat panels it does nothing */
1106static int tridentfb_blank(int blank_mode, struct fb_info *info)
1107{
Krzysztof Helt245a2c22007-10-16 01:28:42 -07001108 unsigned char PMCont, DPMSCont;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109
1110 debug("enter\n");
1111 if (flatpanel)
1112 return 0;
Krzysztof Helt245a2c22007-10-16 01:28:42 -07001113 t_outb(0x04, 0x83C8); /* Read DPMS Control */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 PMCont = t_inb(0x83C6) & 0xFC;
1115 DPMSCont = read3CE(PowerStatus) & 0xFC;
Krzysztof Helt245a2c22007-10-16 01:28:42 -07001116 switch (blank_mode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 case FB_BLANK_UNBLANK:
1118 /* Screen: On, HSync: On, VSync: On */
1119 case FB_BLANK_NORMAL:
1120 /* Screen: Off, HSync: On, VSync: On */
1121 PMCont |= 0x03;
1122 DPMSCont |= 0x00;
1123 break;
1124 case FB_BLANK_HSYNC_SUSPEND:
1125 /* Screen: Off, HSync: Off, VSync: On */
1126 PMCont |= 0x02;
1127 DPMSCont |= 0x01;
1128 break;
1129 case FB_BLANK_VSYNC_SUSPEND:
1130 /* Screen: Off, HSync: On, VSync: Off */
1131 PMCont |= 0x02;
1132 DPMSCont |= 0x02;
1133 break;
1134 case FB_BLANK_POWERDOWN:
1135 /* Screen: Off, HSync: Off, VSync: Off */
1136 PMCont |= 0x00;
1137 DPMSCont |= 0x03;
1138 break;
Krzysztof Helt245a2c22007-10-16 01:28:42 -07001139 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140
Krzysztof Helt245a2c22007-10-16 01:28:42 -07001141 write3CE(PowerStatus, DPMSCont);
1142 t_outb(4, 0x83C8);
1143 t_outb(PMCont, 0x83C6);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144
1145 debug("exit\n");
1146
1147 /* let fbcon do a softblank for us */
1148 return (blank_mode == FB_BLANK_NORMAL) ? 1 : 0;
1149}
1150
Krzysztof Helt245a2c22007-10-16 01:28:42 -07001151static struct fb_ops tridentfb_ops = {
1152 .owner = THIS_MODULE,
1153 .fb_setcolreg = tridentfb_setcolreg,
1154 .fb_pan_display = tridentfb_pan_display,
1155 .fb_blank = tridentfb_blank,
1156 .fb_check_var = tridentfb_check_var,
1157 .fb_set_par = tridentfb_set_par,
1158 .fb_fillrect = tridentfb_fillrect,
1159 .fb_copyarea = tridentfb_copyarea,
1160 .fb_imageblit = cfb_imageblit,
1161};
1162
1163static int __devinit trident_pci_probe(struct pci_dev * dev,
1164 const struct pci_device_id * id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165{
1166 int err;
1167 unsigned char revision;
1168
1169 err = pci_enable_device(dev);
1170 if (err)
1171 return err;
1172
1173 chip_id = id->device;
1174
Krzysztof Helt245a2c22007-10-16 01:28:42 -07001175 if (chip_id == CYBERBLADEi1)
Knut Petersen9fa68ea2005-09-09 13:04:56 -07001176 output("*** Please do use cyblafb, Cyberblade/i1 support "
1177 "will soon be removed from tridentfb!\n");
1178
1179
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 /* If PCI id is 0x9660 then further detect chip type */
Krzysztof Helt245a2c22007-10-16 01:28:42 -07001181
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 if (chip_id == TGUI9660) {
Krzysztof Helt245a2c22007-10-16 01:28:42 -07001183 outb(RevisionID, 0x3C4);
1184 revision = inb(0x3C5);
1185
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 switch (revision) {
Krzysztof Helt245a2c22007-10-16 01:28:42 -07001187 case 0x22:
1188 case 0x23:
1189 chip_id = CYBER9397;
1190 break;
1191 case 0x2A:
1192 chip_id = CYBER9397DVD;
1193 break;
1194 case 0x30:
1195 case 0x33:
1196 case 0x34:
1197 case 0x35:
1198 case 0x38:
1199 case 0x3A:
1200 case 0xB3:
1201 chip_id = CYBER9385;
1202 break;
1203 case 0x40 ... 0x43:
1204 chip_id = CYBER9382;
1205 break;
1206 case 0x4A:
1207 chip_id = CYBER9388;
1208 break;
1209 default:
1210 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 }
1212 }
1213
1214 chip3D = is3Dchip(chip_id);
1215 chipcyber = iscyber(chip_id);
1216
1217 if (is_xp(chip_id)) {
1218 acc = &accel_xp;
Krzysztof Helt245a2c22007-10-16 01:28:42 -07001219 } else if (is_blade(chip_id)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 acc = &accel_blade;
1221 } else {
1222 acc = &accel_image;
1223 }
1224
1225 /* acceleration is on by default for 3D chips */
1226 defaultaccel = chip3D && !noaccel;
1227
1228 fb_info.par = &default_par;
1229
1230 /* setup MMIO region */
Krzysztof Helt245a2c22007-10-16 01:28:42 -07001231 tridentfb_fix.mmio_start = pci_resource_start(dev, 1);
1232 tridentfb_fix.mmio_len = chip3D ? 0x20000 : 0x10000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233
1234 if (!request_mem_region(tridentfb_fix.mmio_start, tridentfb_fix.mmio_len, "tridentfb")) {
1235 debug("request_region failed!\n");
1236 return -1;
1237 }
1238
1239 default_par.io_virt = ioremap_nocache(tridentfb_fix.mmio_start, tridentfb_fix.mmio_len);
1240
1241 if (!default_par.io_virt) {
1242 release_region(tridentfb_fix.mmio_start, tridentfb_fix.mmio_len);
1243 debug("ioremap failed\n");
1244 return -1;
1245 }
1246
1247 enable_mmio();
Krzysztof Helt245a2c22007-10-16 01:28:42 -07001248
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 /* setup framebuffer memory */
Krzysztof Helt245a2c22007-10-16 01:28:42 -07001250 tridentfb_fix.smem_start = pci_resource_start(dev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 tridentfb_fix.smem_len = get_memsize();
Krzysztof Helt245a2c22007-10-16 01:28:42 -07001252
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 if (!request_mem_region(tridentfb_fix.smem_start, tridentfb_fix.smem_len, "tridentfb")) {
1254 debug("request_mem_region failed!\n");
Amol Lada02f6402006-12-08 02:40:03 -08001255 err = -1;
1256 goto out_unmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 }
1258
1259 fb_info.screen_base = ioremap_nocache(tridentfb_fix.smem_start,
Krzysztof Helt245a2c22007-10-16 01:28:42 -07001260 tridentfb_fix.smem_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
1262 if (!fb_info.screen_base) {
1263 release_mem_region(tridentfb_fix.smem_start, tridentfb_fix.smem_len);
1264 debug("ioremap failed\n");
Amol Lada02f6402006-12-08 02:40:03 -08001265 err = -1;
1266 goto out_unmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 }
1268
1269 output("%s board found\n", pci_name(dev));
Krzysztof Helt245a2c22007-10-16 01:28:42 -07001270#if 0
1271 output("Trident board found : mem = %X, io = %X, mem_v = %X, io_v = %X\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 tridentfb_fix.smem_start, tridentfb_fix.mmio_start, fb_info.screen_base, default_par.io_virt);
1273#endif
1274 displaytype = get_displaytype();
1275
Krzysztof Helt245a2c22007-10-16 01:28:42 -07001276 if (flatpanel)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 nativex = get_nativex();
1278
1279 fb_info.fix = tridentfb_fix;
1280 fb_info.fbops = &tridentfb_ops;
1281
1282
1283 fb_info.flags = FBINFO_DEFAULT | FBINFO_HWACCEL_YPAN;
1284#ifdef CONFIG_FB_TRIDENT_ACCEL
1285 fb_info.flags |= FBINFO_HWACCEL_COPYAREA | FBINFO_HWACCEL_FILLRECT;
1286#endif
1287 fb_info.pseudo_palette = pseudo_pal;
1288
Krzysztof Helt245a2c22007-10-16 01:28:42 -07001289 if (!fb_find_mode(&default_var, &fb_info, mode, NULL, 0, NULL, bpp)) {
Amol Lada02f6402006-12-08 02:40:03 -08001290 err = -EINVAL;
1291 goto out_unmap;
1292 }
Krzysztof Helt245a2c22007-10-16 01:28:42 -07001293 fb_alloc_cmap(&fb_info.cmap, 256, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 if (defaultaccel && acc)
1295 default_var.accel_flags |= FB_ACCELF_TEXT;
1296 else
1297 default_var.accel_flags &= ~FB_ACCELF_TEXT;
1298 default_var.activate |= FB_ACTIVATE_NOW;
1299 fb_info.var = default_var;
1300 fb_info.device = &dev->dev;
1301 if (register_framebuffer(&fb_info) < 0) {
1302 printk(KERN_ERR "tridentfb: could not register Trident framebuffer\n");
Amol Lada02f6402006-12-08 02:40:03 -08001303 err = -EINVAL;
1304 goto out_unmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 }
1306 output("fb%d: %s frame buffer device %dx%d-%dbpp\n",
Krzysztof Helt245a2c22007-10-16 01:28:42 -07001307 fb_info.node, fb_info.fix.id, default_var.xres,
1308 default_var.yres, default_var.bits_per_pixel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 return 0;
Amol Lada02f6402006-12-08 02:40:03 -08001310
1311out_unmap:
1312 if (default_par.io_virt)
1313 iounmap(default_par.io_virt);
1314 if (fb_info.screen_base)
1315 iounmap(fb_info.screen_base);
1316 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317}
1318
Krzysztof Helt245a2c22007-10-16 01:28:42 -07001319static void __devexit trident_pci_remove(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320{
1321 struct tridentfb_par *par = (struct tridentfb_par*)fb_info.par;
1322 unregister_framebuffer(&fb_info);
1323 iounmap(par->io_virt);
1324 iounmap(fb_info.screen_base);
1325 release_mem_region(tridentfb_fix.smem_start, tridentfb_fix.smem_len);
1326 release_region(tridentfb_fix.mmio_start, tridentfb_fix.mmio_len);
1327}
1328
1329/* List of boards that we are trying to support */
1330static struct pci_device_id trident_devices[] = {
Krzysztof Helt245a2c22007-10-16 01:28:42 -07001331 {PCI_VENDOR_ID_TRIDENT, BLADE3D, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
1332 {PCI_VENDOR_ID_TRIDENT, CYBERBLADEi7, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
1333 {PCI_VENDOR_ID_TRIDENT, CYBERBLADEi7D, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
1334 {PCI_VENDOR_ID_TRIDENT, CYBERBLADEi1, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
1335 {PCI_VENDOR_ID_TRIDENT, CYBERBLADEi1D, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
1336 {PCI_VENDOR_ID_TRIDENT, CYBERBLADEAi1, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
1337 {PCI_VENDOR_ID_TRIDENT, CYBERBLADEAi1D, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
1338 {PCI_VENDOR_ID_TRIDENT, CYBERBLADEE4, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
1339 {PCI_VENDOR_ID_TRIDENT, TGUI9660, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
1340 {PCI_VENDOR_ID_TRIDENT, IMAGE975, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
1341 {PCI_VENDOR_ID_TRIDENT, IMAGE985, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
1342 {PCI_VENDOR_ID_TRIDENT, CYBER9320, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
1343 {PCI_VENDOR_ID_TRIDENT, CYBER9388, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
1344 {PCI_VENDOR_ID_TRIDENT, CYBER9520, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
1345 {PCI_VENDOR_ID_TRIDENT, CYBER9525DVD, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
1346 {PCI_VENDOR_ID_TRIDENT, CYBER9397, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
1347 {PCI_VENDOR_ID_TRIDENT, CYBER9397DVD, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
1348 {PCI_VENDOR_ID_TRIDENT, CYBERBLADEXPAi1, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
1349 {PCI_VENDOR_ID_TRIDENT, CYBERBLADEXPm8, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
1350 {PCI_VENDOR_ID_TRIDENT, CYBERBLADEXPm16, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 {0,}
Krzysztof Helt245a2c22007-10-16 01:28:42 -07001352};
1353
1354MODULE_DEVICE_TABLE(pci, trident_devices);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355
1356static struct pci_driver tridentfb_pci_driver = {
Krzysztof Helt245a2c22007-10-16 01:28:42 -07001357 .name = "tridentfb",
1358 .id_table = trident_devices,
1359 .probe = trident_pci_probe,
1360 .remove = __devexit_p(trident_pci_remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361};
1362
1363/*
1364 * Parse user specified options (`video=trident:')
1365 * example:
Krzysztof Helt245a2c22007-10-16 01:28:42 -07001366 * video=trident:800x600,bpp=16,noaccel
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 */
1368#ifndef MODULE
1369static int tridentfb_setup(char *options)
1370{
Krzysztof Helt245a2c22007-10-16 01:28:42 -07001371 char *opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 if (!options || !*options)
1373 return 0;
Krzysztof Helt245a2c22007-10-16 01:28:42 -07001374 while ((opt = strsep(&options, ",")) != NULL) {
1375 if (!*opt)
1376 continue;
1377 if (!strncmp(opt, "noaccel", 7))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 noaccel = 1;
Krzysztof Helt245a2c22007-10-16 01:28:42 -07001379 else if (!strncmp(opt, "fp", 2))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 displaytype = DISPLAY_FP;
Krzysztof Helt245a2c22007-10-16 01:28:42 -07001381 else if (!strncmp(opt, "crt", 3))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 displaytype = DISPLAY_CRT;
Krzysztof Helt245a2c22007-10-16 01:28:42 -07001383 else if (!strncmp(opt, "bpp=", 4))
1384 bpp = simple_strtoul(opt + 4, NULL, 0);
1385 else if (!strncmp(opt, "center", 6))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 center = 1;
Krzysztof Helt245a2c22007-10-16 01:28:42 -07001387 else if (!strncmp(opt, "stretch", 7))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 stretch = 1;
Krzysztof Helt245a2c22007-10-16 01:28:42 -07001389 else if (!strncmp(opt, "memsize=", 8))
1390 memsize = simple_strtoul(opt + 8, NULL, 0);
1391 else if (!strncmp(opt, "memdiff=", 8))
1392 memdiff = simple_strtoul(opt + 8, NULL, 0);
1393 else if (!strncmp(opt, "nativex=", 8))
1394 nativex = simple_strtoul(opt + 8, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 else
1396 mode = opt;
1397 }
1398 return 0;
1399}
1400#endif
1401
1402static int __init tridentfb_init(void)
1403{
1404#ifndef MODULE
1405 char *option = NULL;
1406
1407 if (fb_get_options("tridentfb", &option))
1408 return -ENODEV;
1409 tridentfb_setup(option);
1410#endif
1411 output("Trident framebuffer %s initializing\n", VERSION);
1412 return pci_register_driver(&tridentfb_pci_driver);
1413}
1414
1415static void __exit tridentfb_exit(void)
1416{
1417 pci_unregister_driver(&tridentfb_pci_driver);
1418}
1419
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420module_init(tridentfb_init);
1421module_exit(tridentfb_exit);
1422
1423MODULE_AUTHOR("Jani Monoses <jani@iv.ro>");
1424MODULE_DESCRIPTION("Framebuffer driver for Trident cards");
1425MODULE_LICENSE("GPL");
1426