blob: a74e4e6868451b26842de86c740af8ce31ec5bd4 [file] [log] [blame]
Wolfgang Denk460c3222005-08-04 01:14:12 +02001/* ported from ctfb.c (linux kernel):
Albert ARIBAUDfa82f872011-08-04 18:45:45 +02002 * Created in Jan - July 2000 by Thomas Höhenleitner <th@visuelle-maschinen.de>
Wolfgang Denk460c3222005-08-04 01:14:12 +02003 *
4 * Ported to U-Boot:
5 * (C) Copyright 2002 Denis Peter, MPL AG Switzerland
wdenkc6097192002-11-03 00:24:07 +00006 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02007 * SPDX-License-Identifier: GPL-2.0+
wdenkc6097192002-11-03 00:24:07 +00008 */
9
wdenkc6097192002-11-03 00:24:07 +000010#include <common.h>
11
12#ifdef CONFIG_VIDEO
13
14#include <pci.h>
15#include <video_fb.h>
wdenkeeb1b772004-03-23 22:53:55 +000016#include "videomodes.h"
wdenkc6097192002-11-03 00:24:07 +000017
wdenkc6097192002-11-03 00:24:07 +000018/* debug */
19#undef VGA_DEBUG
20#undef VGA_DUMP_REG
21#ifdef VGA_DEBUG
Wolfgang Denk8a2d1f22011-11-09 09:29:04 +000022#undef _DEBUG
23#define _DEBUG 1
wdenkc6097192002-11-03 00:24:07 +000024#else
Wolfgang Denk8a2d1f22011-11-09 09:29:04 +000025#undef _DEBUG
26#define _DEBUG 0
wdenkc6097192002-11-03 00:24:07 +000027#endif
28
29/* Macros */
30#ifndef min
31#define min( a, b ) ( ( a ) < ( b ) ) ? ( a ) : ( b )
32#endif
33#ifndef max
34#define max( a, b ) ( ( a ) > ( b ) ) ? ( a ) : ( b )
35#endif
36#ifdef minmax
37#error "term minmax already used."
38#endif
39#define minmax( a, x, b ) max( ( a ), min( ( x ), ( b ) ) )
40#define N_ELTS( x ) ( sizeof( x ) / sizeof( x[ 0 ] ) )
41
42/* CT Register Offsets */
43#define CT_AR_O 0x3c0 /* Index and Data write port of the attribute Registers */
44#define CT_GR_O 0x3ce /* Index port of the Graphic Controller Registers */
45#define CT_SR_O 0x3c4 /* Index port of the Sequencer Controller */
46#define CT_CR_O 0x3d4 /* Index port of the CRT Controller */
47#define CT_XR_O 0x3d6 /* Extended Register index */
48#define CT_MSR_W_O 0x3c2 /* Misc. Output Register (write only) */
49#define CT_LUT_MASK_O 0x3c6 /* Color Palette Mask */
50#define CT_LUT_START_O 0x3c8 /* Color Palette Write Mode Index */
51#define CT_LUT_RGB_O 0x3c9 /* Color Palette Data Port */
52#define CT_STATUS_REG0_O 0x3c2 /* Status Register 0 (read only) */
53#define CT_STATUS_REG1_O 0x3da /* Input Status Register 1 (read only) */
54
55#define CT_FP_O 0x3d0 /* Index port of the Flat panel Registers */
56#define CT_MR_O 0x3d2 /* Index Port of the Multimedia Extension */
57
58/* defines for the memory mapped registers */
59#define BR00_o 0x400000 /* Source and Destination Span Register */
60#define BR01_o 0x400004 /* Pattern/Source Expansion Background Color & Transparency Key Register */
61#define BR02_o 0x400008 /* Pattern/Source Expansion Foreground Color Register */
62#define BR03_o 0x40000C /* Monochrome Source Control Register */
63#define BR04_o 0x400010 /* BitBLT Control Register */
64#define BR05_o 0x400014 /* Pattern Address Registe */
65#define BR06_o 0x400018 /* Source Address Register */
66#define BR07_o 0x40001C /* Destination Address Register */
67#define BR08_o 0x400020 /* Destination Width & Height Register */
68#define BR09_o 0x400024 /* Source Expansion Background Color & Transparency Key Register */
69#define BR0A_o 0x400028 /* Source Expansion Foreground Color Register */
70
71#define CURSOR_SIZE 0x1000 /* in KByte for HW Cursor */
72#define PATTERN_ADR (pGD->dprBase + CURSOR_SIZE) /* pattern Memory after Cursor Memory */
73#define PATTERN_SIZE 8*8*4 /* 4 Bytes per Pixel 8 x 8 Pixel */
74#define ACCELMEMORY (CURSOR_SIZE + PATTERN_SIZE) /* reserved Memory for BITBlt and hw cursor */
75
76/* Some Mode definitions */
77#define FB_SYNC_HOR_HIGH_ACT 1 /* horizontal sync high active */
78#define FB_SYNC_VERT_HIGH_ACT 2 /* vertical sync high active */
79#define FB_SYNC_EXT 4 /* external sync */
80#define FB_SYNC_COMP_HIGH_ACT 8 /* composite sync high active */
81#define FB_SYNC_BROADCAST 16 /* broadcast video timings */
82 /* vtotal = 144d/288n/576i => PAL */
83 /* vtotal = 121d/242n/484i => NTSC */
84#define FB_SYNC_ON_GREEN 32 /* sync on green */
85
86#define FB_VMODE_NONINTERLACED 0 /* non interlaced */
87#define FB_VMODE_INTERLACED 1 /* interlaced */
88#define FB_VMODE_DOUBLE 2 /* double scan */
89#define FB_VMODE_MASK 255
90
91#define FB_VMODE_YWRAP 256 /* ywrap instead of panning */
92#define FB_VMODE_SMOOTH_XPAN 512 /* smooth xpan possible (internally used) */
93#define FB_VMODE_CONUPDATE 512 /* don't update x/yoffset */
94
95#define text 0
96#define fntwidth 8
97
98/* table for VGA Initialization */
99typedef struct {
100 const unsigned char reg;
101 const unsigned char val;
102} CT_CFG_TABLE;
103
104/* this table provides some basic initialisations such as Memory Clock etc */
105static CT_CFG_TABLE xreg[] = {
106 {0x09, 0x01}, /* CRT Controller Extensions Enable */
107 {0x0A, 0x02}, /* Frame Buffer Mapping */
108 {0x0B, 0x01}, /* PCI Write Burst support */
109 {0x20, 0x00}, /* BitBLT Configuration */
110 {0x40, 0x03}, /* Memory Access Control */
111 {0x60, 0x00}, /* Video Pin Control */
112 {0x61, 0x00}, /* DPMS Synch control */
113 {0x62, 0x00}, /* GPIO Pin Control */
114 {0x63, 0xBD}, /* GPIO Pin Data */
115 {0x67, 0x00}, /* Pin Tri-State */
116 {0x80, 0x80}, /* Pixel Pipeline Config 0 register */
117 {0xA0, 0x00}, /* Cursor 1 Control Reg */
118 {0xA1, 0x00}, /* Cursor 1 Vertical Extension Reg */
119 {0xA2, 0x00}, /* Cursor 1 Base Address Low */
120 {0xA3, 0x00}, /* Cursor 1 Base Address High */
121 {0xA4, 0x00}, /* Cursor 1 X-Position Low */
122 {0xA5, 0x00}, /* Cursor 1 X-Position High */
123 {0xA6, 0x00}, /* Cursor 1 Y-Position Low */
124 {0xA7, 0x00}, /* Cursor 1 Y-Position High */
125 {0xA8, 0x00}, /* Cursor 2 Control Reg */
126 {0xA9, 0x00}, /* Cursor 2 Vertical Extension Reg */
127 {0xAA, 0x00}, /* Cursor 2 Base Address Low */
128 {0xAB, 0x00}, /* Cursor 2 Base Address High */
129 {0xAC, 0x00}, /* Cursor 2 X-Position Low */
130 {0xAD, 0x00}, /* Cursor 2 X-Position High */
131 {0xAE, 0x00}, /* Cursor 2 Y-Position Low */
132 {0xAF, 0x00}, /* Cursor 2 Y-Position High */
133 {0xC0, 0x7D}, /* Dot Clock 0 VCO M-Divisor */
134 {0xC1, 0x07}, /* Dot Clock 0 VCO N-Divisor */
135 {0xC3, 0x34}, /* Dot Clock 0 Divisor select */
136 {0xC4, 0x55}, /* Dot Clock 1 VCO M-Divisor */
137 {0xC5, 0x09}, /* Dot Clock 1 VCO N-Divisor */
138 {0xC7, 0x24}, /* Dot Clock 1 Divisor select */
139 {0xC8, 0x7D}, /* Dot Clock 2 VCO M-Divisor */
140 {0xC9, 0x07}, /* Dot Clock 2 VCO N-Divisor */
141 {0xCB, 0x34}, /* Dot Clock 2 Divisor select */
142 {0xCC, 0x38}, /* Memory Clock 0 VCO M-Divisor */
143 {0xCD, 0x03}, /* Memory Clock 0 VCO N-Divisor */
144 {0xCE, 0x90}, /* Memory Clock 0 Divisor select */
145 {0xCF, 0x06}, /* Clock Config */
146 {0xD0, 0x0F}, /* Power Down */
147 {0xD1, 0x01}, /* Power Down BitBLT */
148 {0xFF, 0xFF} /* end of table */
149};
150/* Clock Config:
151 * =============
152 *
153 * PD Registers:
154 * -------------
155 * Bit2 and Bit4..6 are used for the Loop Divisor and Post Divisor.
156 * They are encoded as follows:
157 *
158 * +---+--------------+
159 * | 2 | Loop Divisor |
160 * +---+--------------+
161 * | 1 | 1 |
162 * +---+--------------+
163 * | 0 | 4 |
164 * +---+--------------+
165 * Note: The Memory Clock does not have a Loop Divisor.
166 * +---+---+---+--------------+
167 * | 6 | 5 | 4 | Post Divisor |
168 * +---+---+---+--------------+
169 * | 0 | 0 | 0 | 1 |
170 * +---+---+---+--------------+
171 * | 0 | 0 | 1 | 2 |
172 * +---+---+---+--------------+
173 * | 0 | 1 | 0 | 4 |
174 * +---+---+---+--------------+
175 * | 0 | 1 | 1 | 8 |
176 * +---+---+---+--------------+
177 * | 1 | 0 | 0 | 16 |
178 * +---+---+---+--------------+
179 * | 1 | 0 | 1 | 32 |
180 * +---+---+---+--------------+
181 * | 1 | 1 | X | reserved |
182 * +---+---+---+--------------+
183 *
184 * All other bits are reserved in these registers.
185 *
186 * Clock VCO M Registers:
187 * ----------------------
188 * These Registers contain the M Value -2.
189 *
190 * Clock VCO N Registers:
191 * ----------------------
192 * These Registers contain the N Value -2.
193 *
194 * Formulas:
195 * ---------
196 * Fvco = (Fref * Loop Divisor * M/N), whereas 100MHz < Fvco < 220MHz
197 * Fout = Fvco / Post Divisor
198 *
199 * Dot Clk0 (default 25MHz):
200 * -------------------------
201 * Fvco = 14.318 * 127 / 9 = 202.045MHz
202 * Fout = 202.045MHz / 8 = 25.25MHz
203 * Post Divisor = 8
204 * Loop Divisor = 1
205 * XRC0 = (M - 2) = 125 = 0x7D
206 * XRC1 = (N - 2) = 7 = 0x07
207 * XRC3 = 0x34
208 *
209 * Dot Clk1 (default 28MHz):
210 * -------------------------
211 * Fvco = 14.318 * 87 / 11 = 113.24MHz
212 * Fout = 113.24MHz / 4 = 28.31MHz
213 * Post Divisor = 4
214 * Loop Divisor = 1
215 * XRC4 = (M - 2) = 85 = 0x55
216 * XRC5 = (N - 2) = 9 = 0x09
217 * XRC7 = 0x24
218 *
219 * Dot Clk2 (variable for extended modes set to 25MHz):
220 * ----------------------------------------------------
221 * Fvco = 14.318 * 127 / 9 = 202.045MHz
222 * Fout = 202.045MHz / 8 = 25.25MHz
223 * Post Divisor = 8
224 * Loop Divisor = 1
225 * XRC8 = (M - 2) = 125 = 0x7D
226 * XRC9 = (N - 2) = 7 = 0x07
227 * XRCB = 0x34
228 *
229 * Memory Clk for most modes >50MHz:
230 * ----------------------------------
231 * Fvco = 14.318 * 58 / 5 = 166MHz
232 * Fout = 166MHz / 2 = 83MHz
233 * Post Divisor = 2
234 * XRCC = (M - 2) = 57 = 0x38
235 * XRCD = (N - 2) = 3 = 0x03
236 * XRCE = 0x90
237 *
238 * Note Bit7 enables the clock source from the VCO
239 *
240 */
241
wdenkc6097192002-11-03 00:24:07 +0000242/*******************************************************************
243 * Chips struct
244 *******************************************************************/
245struct ctfb_chips_properties {
246 int device_id; /* PCI Device ID */
247 unsigned long max_mem; /* memory for frame buffer */
248 int vld_set; /* value of VLD if bit2 in clock control is set */
249 int vld_not_set; /* value of VLD if bit2 in clock control is set */
250 int mn_diff; /* difference between M/N Value + mn_diff = M/N Register */
251 int mn_min; /* min value of M/N Value */
252 int mn_max; /* max value of M/N Value */
253 int vco_min; /* VCO Min in MHz */
254 int vco_max; /* VCO Max in MHz */
255};
256
257static const struct ctfb_chips_properties chips[] = {
258 {PCI_DEVICE_ID_CT_69000, 0x200000, 1, 4, -2, 3, 257, 100, 220},
259 {PCI_DEVICE_ID_CT_65555, 0x100000, 16, 4, 0, 1, 255, 48, 220}, /* NOT TESTED */
260 {0, 0, 0, 0, 0, 0, 0, 0, 0} /* Terminator */
261};
262
wdenkc6097192002-11-03 00:24:07 +0000263/*
264 * The Graphic Device
265 */
266GraphicDevice ctfb;
267
268/*******************************************************************************
269*
270* Low Level Routines
271*/
272
273/*******************************************************************************
274*
275* Read CT ISA register
276*/
277#ifdef VGA_DEBUG
278static unsigned char
279ctRead (unsigned short index)
280{
281 GraphicDevice *pGD = (GraphicDevice *) & ctfb;
282 if (index == CT_AR_O)
283 /* synch the Flip Flop */
284 in8 (pGD->isaBase + CT_STATUS_REG1_O);
285
286 return (in8 (pGD->isaBase + index));
287}
288#endif
289/*******************************************************************************
290*
291* Write CT ISA register
292*/
293static void
294ctWrite (unsigned short index, unsigned char val)
295{
296 GraphicDevice *pGD = (GraphicDevice *) & ctfb;
297
298 out8 ((pGD->isaBase + index), val);
299}
300
301/*******************************************************************************
302*
303* Read CT ISA register indexed
304*/
305static unsigned char
306ctRead_i (unsigned short index, char reg)
307{
308 GraphicDevice *pGD = (GraphicDevice *) & ctfb;
309 if (index == CT_AR_O)
310 /* synch the Flip Flop */
311 in8 (pGD->isaBase + CT_STATUS_REG1_O);
312 out8 ((pGD->isaBase + index), reg);
313 return (in8 (pGD->isaBase + index + 1));
314}
315
316/*******************************************************************************
317*
318* Write CT ISA register indexed
319*/
320static void
321ctWrite_i (unsigned short index, char reg, char val)
322{
323 GraphicDevice *pGD = (GraphicDevice *) & ctfb;
324 if (index == CT_AR_O) {
325 /* synch the Flip Flop */
326 in8 (pGD->isaBase + CT_STATUS_REG1_O);
327 out8 ((pGD->isaBase + index), reg);
328 out8 ((pGD->isaBase + index), val);
329 } else {
330 out8 ((pGD->isaBase + index), reg);
331 out8 ((pGD->isaBase + index + 1), val);
332 }
333}
334
335/*******************************************************************************
336*
337* Write a table of CT ISA register
338*/
339static void
340ctLoadRegs (unsigned short index, CT_CFG_TABLE * regTab)
341{
342 while (regTab->reg != 0xFF) {
343 ctWrite_i (index, regTab->reg, regTab->val);
344 regTab++;
345 }
346}
347
348/*****************************************************************************/
349static void
350SetArRegs (void)
351{
352 int i, tmp;
353
354 for (i = 0; i < 0x10; i++)
355 ctWrite_i (CT_AR_O, i, i);
356 if (text)
357 tmp = 0x04;
358 else
359 tmp = 0x41;
360
361 ctWrite_i (CT_AR_O, 0x10, tmp); /* Mode Control Register */
362 ctWrite_i (CT_AR_O, 0x11, 0x00); /* Overscan Color Register */
363 ctWrite_i (CT_AR_O, 0x12, 0x0f); /* Memory Plane Enable Register */
364 if (fntwidth == 9)
365 tmp = 0x08;
366 else
367 tmp = 0x00;
368 ctWrite_i (CT_AR_O, 0x13, tmp); /* Horizontal Pixel Panning */
369 ctWrite_i (CT_AR_O, 0x14, 0x00); /* Color Select Register */
370 ctWrite (CT_AR_O, 0x20); /* enable video */
371}
372
373/*****************************************************************************/
374static void
375SetGrRegs (void)
376{ /* Set Graphics Mode */
377 int i;
378
379 for (i = 0; i < 0x05; i++)
380 ctWrite_i (CT_GR_O, i, 0);
381 if (text) {
382 ctWrite_i (CT_GR_O, 0x05, 0x10);
383 ctWrite_i (CT_GR_O, 0x06, 0x02);
384 } else {
385 ctWrite_i (CT_GR_O, 0x05, 0x40);
386 ctWrite_i (CT_GR_O, 0x06, 0x05);
387 }
388 ctWrite_i (CT_GR_O, 0x07, 0x0f);
389 ctWrite_i (CT_GR_O, 0x08, 0xff);
390}
391
392/*****************************************************************************/
393static void
394SetSrRegs (void)
395{
396 int tmp = 0;
397
398 ctWrite_i (CT_SR_O, 0x00, 0x00); /* reset */
399 /*rr( sr, 0x01, tmp );
400 if( fntwidth == 8 ) tmp |= 0x01; else tmp &= ~0x01;
401 wr( sr, 0x01, tmp ); */
402 if (fntwidth == 8)
403 ctWrite_i (CT_SR_O, 0x01, 0x01); /* Clocking Mode Register */
404 else
405 ctWrite_i (CT_SR_O, 0x01, 0x00); /* Clocking Mode Register */
406 ctWrite_i (CT_SR_O, 0x02, 0x0f); /* Enable CPU wr access to given memory plane */
407 ctWrite_i (CT_SR_O, 0x03, 0x00); /* Character Map Select Register */
408 if (text)
409 tmp = 0x02;
410 else
411 tmp = 0x0e;
412 ctWrite_i (CT_SR_O, 0x04, tmp); /* Enable CPU accesses to the rest of the 256KB
413 total VGA memory beyond the first 64KB and set
414 fb mapping mode. */
415 ctWrite_i (CT_SR_O, 0x00, 0x03); /* enable */
416}
417
418/*****************************************************************************/
419static void
420SetBitsPerPixelIntoXrRegs (int bpp)
421{
422 unsigned int n = (bpp >> 3), tmp; /* only for 15, 8, 16, 24 bpp */
423 static char md[4] = { 0x04, 0x02, 0x05, 0x06 }; /* DisplayColorMode */
424 static char off[4] = { ~0x20, ~0x30, ~0x20, ~0x10 }; /* mask */
425 static char on[4] = { 0x10, 0x00, 0x10, 0x20 }; /* mask */
426 if (bpp == 15)
427 n = 0;
428 tmp = ctRead_i (CT_XR_O, 0x20);
429 tmp &= off[n];
430 tmp |= on[n];
431 ctWrite_i (CT_XR_O, 0x20, tmp); /* BitBLT Configuration */
432 ctWrite_i (CT_XR_O, 0x81, md[n]);
433}
434
435/*****************************************************************************/
436static void
437SetCrRegs (struct ctfb_res_modes *var, int bits_per_pixel)
438{ /* he -le- ht|0 hd -ri- hs -h- he */
439 unsigned char cr[0x7a];
440 int i, tmp;
441 unsigned int hd, hs, he, ht, hbe; /* Horizontal. */
442 unsigned int vd, vs, ve, vt; /* vertical */
443 unsigned int bpp, wd, dblscan, interlaced, bcast, CrtHalfLine;
444 unsigned int CompSyncCharClkDelay, CompSyncPixelClkDelay;
445 unsigned int NTSC_PAL_HorizontalPulseWidth, BlDelayCtrl;
446 unsigned int HorizontalEqualizationPulses;
447 unsigned int HorizontalSerration1Start, HorizontalSerration2Start;
448
449 const int LineCompare = 0x3ff;
450 unsigned int TextScanLines = 1; /* this is in fact a vertical zoom factor */
451 unsigned int RAMDAC_BlankPedestalEnable = 0; /* 1=en-, 0=disable, see XR82 */
452
453 hd = (var->xres) / 8; /* HDisp. */
454 hs = (var->xres + var->right_margin) / 8; /* HsStrt */
455 he = (var->xres + var->right_margin + var->hsync_len) / 8; /* HsEnd */
456 ht = (var->left_margin + var->xres + var->right_margin + var->hsync_len) / 8; /* HTotal */
457 hbe = ht - 1; /* HBlankEnable todo docu wants ht here, but it does not work */
458 /* ve -up- vt|0 vd -lo- vs -v- ve */
459 vd = var->yres; /* VDisplay */
460 vs = var->yres + var->lower_margin; /* VSyncStart */
461 ve = var->yres + var->lower_margin + var->vsync_len; /* VSyncEnd */
462 vt = var->upper_margin + var->yres + var->lower_margin + var->vsync_len; /* VTotal */
463 bpp = bits_per_pixel;
464 dblscan = (var->vmode & FB_VMODE_DOUBLE) ? 1 : 0;
465 interlaced = var->vmode & FB_VMODE_INTERLACED;
466 bcast = var->sync & FB_SYNC_BROADCAST;
467 CrtHalfLine = bcast ? (hd >> 1) : 0;
468 BlDelayCtrl = bcast ? 1 : 0;
469 CompSyncCharClkDelay = 0; /* 2 bit */
470 CompSyncPixelClkDelay = 0; /* 3 bit */
471 if (bcast) {
472 NTSC_PAL_HorizontalPulseWidth = 7; /*( var->hsync_len >> 1 ) + 1 */
473 HorizontalEqualizationPulses = 0; /* inverse value */
474 HorizontalSerration1Start = 31; /* ( ht >> 1 ) */
475 HorizontalSerration2Start = 89; /* ( ht >> 1 ) */
476 } else {
477 NTSC_PAL_HorizontalPulseWidth = 0;
478 /* 4 bit: hsync pulse width = ( ( CR74[4:0] - CR74[5] )
479 * / 2 ) + 1 --> CR74[4:0] = 2*(hs-1) + CR74[5] */
480 HorizontalEqualizationPulses = 1; /* inverse value */
481 HorizontalSerration1Start = 0; /* ( ht >> 1 ) */
482 HorizontalSerration2Start = 0; /* ( ht >> 1 ) */
483 }
484
485 if (bpp == 15)
486 bpp = 16;
487 wd = var->xres * bpp / 64; /* double words per line */
488 if (interlaced) { /* we divide all vertical timings, exept vd */
489 vs >>= 1;
490 ve >>= 1;
491 vt >>= 1;
492 }
493 memset (cr, 0, sizeof (cr));
494 cr[0x00] = 0xff & (ht - 5);
495 cr[0x01] = hd - 1; /* soll:4f ist 59 */
496 cr[0x02] = hd;
497 cr[0x03] = (hbe & 0x1F) | 0x80; /* hd + ht - hd */
498 cr[0x04] = hs;
499 cr[0x05] = ((hbe & 0x20) << 2) | (he & 0x1f);
500 cr[0x06] = (vt - 2) & 0xFF;
501 cr[0x30] = (vt - 2) >> 8;
502 cr[0x07] = ((vt & 0x100) >> 8)
503 | ((vd & 0x100) >> 7)
504 | ((vs & 0x100) >> 6)
505 | ((vs & 0x100) >> 5)
506 | ((LineCompare & 0x100) >> 4)
507 | ((vt & 0x200) >> 4)
508 | ((vd & 0x200) >> 3)
509 | ((vs & 0x200) >> 2);
510 cr[0x08] = 0x00;
511 cr[0x09] = (dblscan << 7)
512 | ((LineCompare & 0x200) >> 3)
513 | ((vs & 0x200) >> 4)
514 | (TextScanLines - 1);
515 cr[0x10] = vs & 0xff; /* VSyncPulseStart */
516 cr[0x32] = (vs & 0xf00) >> 8; /* VSyncPulseStart */
517 cr[0x11] = (ve & 0x0f); /* | 0x20; */
518 cr[0x12] = (vd - 1) & 0xff; /* LineCount */
519 cr[0x31] = ((vd - 1) & 0xf00) >> 8; /* LineCount */
520 cr[0x13] = wd & 0xff;
521 cr[0x41] = (wd & 0xf00) >> 8;
522 cr[0x15] = vs & 0xff;
523 cr[0x33] = (vs & 0xf00) >> 8;
524 cr[0x38] = (0x100 & (ht - 5)) >> 8;
525 cr[0x3C] = 0xc0 & hbe;
526 cr[0x16] = (vt - 1) & 0xff; /* vbe - docu wants vt here, */
527 cr[0x17] = 0xe3; /* but it does not work */
528 cr[0x18] = 0xff & LineCompare;
529 cr[0x22] = 0xff; /* todo? */
530 cr[0x70] = interlaced ? (0x80 | CrtHalfLine) : 0x00; /* check:0xa6 */
531 cr[0x71] = 0x80 | (RAMDAC_BlankPedestalEnable << 6)
532 | (BlDelayCtrl << 5)
533 | ((0x03 & CompSyncCharClkDelay) << 3)
534 | (0x07 & CompSyncPixelClkDelay); /* todo: see XR82 */
535 cr[0x72] = HorizontalSerration1Start;
536 cr[0x73] = HorizontalSerration2Start;
537 cr[0x74] = (HorizontalEqualizationPulses << 5)
538 | NTSC_PAL_HorizontalPulseWidth;
539 /* todo: ct69000 has also 0x75-79 */
540 /* now set the registers */
541 for (i = 0; i <= 0x0d; i++) { /*CR00 .. CR0D */
542 ctWrite_i (CT_CR_O, i, cr[i]);
543 }
544 for (i = 0x10; i <= 0x18; i++) { /*CR10 .. CR18 */
545 ctWrite_i (CT_CR_O, i, cr[i]);
546 }
547 i = 0x22; /*CR22 */
548 ctWrite_i (CT_CR_O, i, cr[i]);
549 for (i = 0x30; i <= 0x33; i++) { /*CR30 .. CR33 */
550 ctWrite_i (CT_CR_O, i, cr[i]);
551 }
552 i = 0x38; /*CR38 */
553 ctWrite_i (CT_CR_O, i, cr[i]);
554 i = 0x3C; /*CR3C */
555 ctWrite_i (CT_CR_O, i, cr[i]);
556 for (i = 0x40; i <= 0x41; i++) { /*CR40 .. CR41 */
557 ctWrite_i (CT_CR_O, i, cr[i]);
558 }
559 for (i = 0x70; i <= 0x74; i++) { /*CR70 .. CR74 */
560 ctWrite_i (CT_CR_O, i, cr[i]);
561 }
562 tmp = ctRead_i (CT_CR_O, 0x40);
563 tmp &= 0x0f;
564 tmp |= 0x80;
565 ctWrite_i (CT_CR_O, 0x40, tmp); /* StartAddressEnable */
566}
567
568/* pixelclock control */
569
570/*****************************************************************************
571 We have a rational number p/q and need an m/n which is very close to p/q
572 but has m and n within mnmin and mnmax. We have no floating point in the
573 kernel. We can use long long without divide. And we have time to compute...
574******************************************************************************/
575static unsigned int
576FindBestPQFittingMN (unsigned int p, unsigned int q, unsigned int mnmin,
577 unsigned int mnmax, unsigned int *pm, unsigned int *pn)
578{
579 /* this code is not for general purpose usable but good for our number ranges */
580 unsigned int n = mnmin, m = 0;
581 long long int L = 0, P = p, Q = q, H = P >> 1;
582 long long int D = 0x7ffffffffffffffLL;
583 for (n = mnmin; n <= mnmax; n++) {
584 m = mnmin; /* p/q ~ m/n -> p*n ~ m*q -> p*n-x*q ~ 0 */
585 L = P * n - m * Q; /* n * vco - m * fref should be near 0 */
586 while (L > 0 && m < mnmax) {
587 L -= q; /* difference is greater as 0 subtract fref */
588 m++; /* and increment m */
589 }
590 /* difference is less or equal than 0 or m > maximum */
591 if (m > mnmax)
592 break; /* no solution: if we increase n we get the same situation */
593 /* L is <= 0 now */
594 if (-L > H && m > mnmin) { /* if difference > the half fref */
595 L += q; /* we take the situation before */
596 m--; /* because its closer to 0 */
597 }
598 L = (L < 0) ? -L : +L; /* absolute value */
599 if (D < L) /* if last difference was better take next n */
600 continue;
601 D = L;
602 *pm = m;
603 *pn = n; /* keep improved data */
604 if (D == 0)
605 break; /* best result we can get */
606 }
607 return (unsigned int) (0xffffffff & D);
608}
609
610/* that is the hardware < 69000 we have to manage
611 +---------+ +-------------------+ +----------------------+ +--+
Albert ARIBAUDfa82f872011-08-04 18:45:45 +0200612 | REFCLK |__|NTSC Divisor Select|__|FVCO Reference Divisor|__|÷N|__
613 | 14.3MHz | |(NTSCDS) (÷1, ÷5) | |Select (RDS) (÷1, ÷4) | | | |
wdenkc6097192002-11-03 00:24:07 +0000614 +---------+ +-------------------+ +----------------------+ +--+ |
615 ___________________________________________________________________|
616 |
617 | fvco fout
618 | +--------+ +------------+ +-----+ +-------------------+ +----+
619 +-| Phase |__|Charge Pump |__| VCO |_____|Post Divisor (PD) |___|CLK |--->
Albert ARIBAUDfa82f872011-08-04 18:45:45 +0200620 +-| Detect | |& Filter VCO| | | | |÷1, 2, 4, 8, 16, 32| | |
wdenkc6097192002-11-03 00:24:07 +0000621 | +--------+ +------------+ +-----+ | +-------------------+ +----+
622 | |
623 | +--+ +---------------+ |
Albert ARIBAUDfa82f872011-08-04 18:45:45 +0200624 |____|÷M|___|VCO Loop Divide|__________|
625 | | |(VLD)(÷4, ÷16) |
wdenkc6097192002-11-03 00:24:07 +0000626 +--+ +---------------+
627****************************************************************************
628 that is the hardware >= 69000 we have to manage
629 +---------+ +--+
Albert ARIBAUDfa82f872011-08-04 18:45:45 +0200630 | REFCLK |__|÷N|__
wdenkc6097192002-11-03 00:24:07 +0000631 | 14.3MHz | | | |
632 +---------+ +--+ |
633 __________________|
634 |
635 | fvco fout
636 | +--------+ +------------+ +-----+ +-------------------+ +----+
637 +-| Phase |__|Charge Pump |__| VCO |_____|Post Divisor (PD) |___|CLK |--->
Albert ARIBAUDfa82f872011-08-04 18:45:45 +0200638 +-| Detect | |& Filter VCO| | | | |÷1, 2, 4, 8, 16, 32| | |
wdenkc6097192002-11-03 00:24:07 +0000639 | +--------+ +------------+ +-----+ | +-------------------+ +----+
640 | |
641 | +--+ +---------------+ |
Albert ARIBAUDfa82f872011-08-04 18:45:45 +0200642 |____|÷M|___|VCO Loop Divide|__________|
643 | | |(VLD)(÷1, ÷4) |
wdenkc6097192002-11-03 00:24:07 +0000644 +--+ +---------------+
645
646
647*/
648
649#define VIDEO_FREF 14318180; /* Hz */
650/*****************************************************************************/
651static int
652ReadPixClckFromXrRegsBack (struct ctfb_chips_properties *param)
653{
654 unsigned int m, n, vld, pd, PD, fref, xr_cb, i, pixclock;
655 i = 0;
656 pixclock = -1;
657 fref = VIDEO_FREF;
658 m = ctRead_i (CT_XR_O, 0xc8);
659 n = ctRead_i (CT_XR_O, 0xc9);
660 m -= param->mn_diff;
661 n -= param->mn_diff;
662 xr_cb = ctRead_i (CT_XR_O, 0xcb);
663 PD = (0x70 & xr_cb) >> 4;
664 pd = 1;
665 for (i = 0; i < PD; i++) {
666 pd *= 2;
667 }
668 vld = (0x04 & xr_cb) ? param->vld_set : param->vld_not_set;
669 if (n * vld * m) {
670 unsigned long long p = 1000000000000LL * pd * n;
671 unsigned long long q = (long long) fref * vld * m;
672 while ((p > 0xffffffffLL) || (q > 0xffffffffLL)) {
673 p >>= 1; /* can't divide with long long so we scale down */
674 q >>= 1;
675 }
676 pixclock = (unsigned) p / (unsigned) q;
677 } else
678 printf ("Invalid data in xr regs.\n");
679 return pixclock;
680}
681
682/*****************************************************************************/
683static void
684FindAndSetPllParamIntoXrRegs (unsigned int pixelclock,
685 struct ctfb_chips_properties *param)
686{
687 unsigned int m, n, vld, pd, PD, fref, xr_cb;
688 unsigned int fvcomin, fvcomax, pclckmin, pclckmax, pclk;
689 unsigned int pfreq, fvco, new_pixclock;
wdenk3e386912003-04-05 00:53:31 +0000690 unsigned int D,nback,mback;
wdenkc6097192002-11-03 00:24:07 +0000691
692 fref = VIDEO_FREF;
693 pd = 1;
694 PD = 0;
695 fvcomin = param->vco_min;
696 fvcomax = param->vco_max; /* MHz */
697 pclckmin = 1000000 / fvcomax + 1; /* 4546 */
698 pclckmax = 32000000 / fvcomin - 1; /* 666665 */
699 pclk = minmax (pclckmin, pixelclock, pclckmax); /* ps pp */
700 pfreq = 250 * (4000000000U / pclk);
701 fvco = pfreq; /* Hz */
702 new_pixclock = 0;
703 while (fvco < fvcomin * 1000000) {
704 /* double VCO starting with the pixelclock frequency
705 * as long as it is lower than the minimal VCO frequency */
706 fvco *= 2;
707 pd *= 2;
708 PD++;
709 }
710 /* fvco is exactly pd * pixelclock and higher than the ninmal VCO frequency */
wdenk3e386912003-04-05 00:53:31 +0000711 /* first try */
712 vld = param->vld_set;
713 D=FindBestPQFittingMN (fvco / vld, fref, param->mn_min, param->mn_max, &m, &n); /* rds = 1 */
714 mback=m;
715 nback=n;
716 /* second try */
717 vld = param->vld_not_set;
718 if(D<FindBestPQFittingMN (fvco / vld, fref, param->mn_min, param->mn_max, &m, &n)) { /* rds = 1 */
719 /* first try was better */
720 m=mback;
721 n=nback;
722 vld = param->vld_set;
723 }
wdenkc6097192002-11-03 00:24:07 +0000724 m += param->mn_diff;
725 n += param->mn_diff;
Wolfgang Denk8a2d1f22011-11-09 09:29:04 +0000726 debug("VCO %d, pd %d, m %d n %d vld %d\n", fvco, pd, m, n, vld);
wdenkc6097192002-11-03 00:24:07 +0000727 xr_cb = ((0x7 & PD) << 4) | (vld == param->vld_set ? 0x04 : 0);
728 /* All four of the registers used for dot clock 2 (XRC8 - XRCB) must be
729 * written, and in order from XRC8 to XRCB, before the hardware will
730 * update the synthesizer s settings.
731 */
732 ctWrite_i (CT_XR_O, 0xc8, m);
733 ctWrite_i (CT_XR_O, 0xc9, n); /* xrca does not exist in CT69000 and CT69030 */
734 ctWrite_i (CT_XR_O, 0xca, 0); /* because of a hw bug I guess, but we write */
735 ctWrite_i (CT_XR_O, 0xcb, xr_cb); /* 0 to it for savety */
736 new_pixclock = ReadPixClckFromXrRegsBack (param);
Wolfgang Denk8a2d1f22011-11-09 09:29:04 +0000737 debug("pixelclock.set = %d, pixelclock.real = %d\n",
wdenkc6097192002-11-03 00:24:07 +0000738 pixelclock, new_pixclock);
739}
740
741/*****************************************************************************/
742static void
743SetMsrRegs (struct ctfb_res_modes *mode)
744{
745 unsigned char h_synch_high, v_synch_high;
746
747 h_synch_high = (mode->sync & FB_SYNC_HOR_HIGH_ACT) ? 0 : 0x40; /* horizontal Synch High active */
748 v_synch_high = (mode->sync & FB_SYNC_VERT_HIGH_ACT) ? 0 : 0x80; /* vertical Synch High active */
749 ctWrite (CT_MSR_W_O, (h_synch_high | v_synch_high | 0x29));
750 /* upper64K==0x20, CLC2select==0x08, RAMenable==0x02!(todo), CGA==0x01
751 * Selects the upper 64KB page.Bit5=1
752 * CLK2 (left reserved in standard VGA) Bit3|2=1|0
753 * Disables CPU access to frame buffer. Bit1=0
754 * Sets the I/O address decode for ST01, FCR, and all CR registers
755 * to the 3Dx I/O address range (CGA emulation). Bit0=1
756 */
757}
758
759/************************************************************************************/
760#ifdef VGA_DUMP_REG
761
762static void
763ctDispRegs (unsigned short index, int from, int to)
764{
765 unsigned char status;
766 int i;
767
768 for (i = from; i < to; i++) {
769 status = ctRead_i (index, i);
770 printf ("%02X: is %02X\n", i, status);
771 }
772}
773
774void
775video_dump_reg (void)
776{
777 int i;
778
779 printf ("Extended Regs:\n");
780 ctDispRegs (CT_XR_O, 0, 0xC);
781 ctDispRegs (CT_XR_O, 0xe, 0xf);
782 ctDispRegs (CT_XR_O, 0x20, 0x21);
783 ctDispRegs (CT_XR_O, 0x40, 0x50);
784 ctDispRegs (CT_XR_O, 0x60, 0x64);
785 ctDispRegs (CT_XR_O, 0x67, 0x68);
786 ctDispRegs (CT_XR_O, 0x70, 0x72);
787 ctDispRegs (CT_XR_O, 0x80, 0x83);
788 ctDispRegs (CT_XR_O, 0xA0, 0xB0);
789 ctDispRegs (CT_XR_O, 0xC0, 0xD3);
790 printf ("Sequencer Regs:\n");
791 ctDispRegs (CT_SR_O, 0, 0x8);
792 printf ("Graphic Regs:\n");
793 ctDispRegs (CT_GR_O, 0, 0x9);
794 printf ("CRT Regs:\n");
795 ctDispRegs (CT_CR_O, 0, 0x19);
796 ctDispRegs (CT_CR_O, 0x22, 0x23);
797 ctDispRegs (CT_CR_O, 0x30, 0x34);
798 ctDispRegs (CT_CR_O, 0x38, 0x39);
799 ctDispRegs (CT_CR_O, 0x3C, 0x3D);
800 ctDispRegs (CT_CR_O, 0x40, 0x42);
801 ctDispRegs (CT_CR_O, 0x70, 0x80);
802 /* don't display the attributes */
803}
804
805#endif
806
wdenkc6097192002-11-03 00:24:07 +0000807/***************************************************************
808 * Wait for BitBlt ready
809 */
810static int
811video_wait_bitblt (unsigned long addr)
812{
813 unsigned long br04;
814 int i = 0;
815 br04 = in32r (addr);
816 while (br04 & 0x80000000) {
817 udelay (1);
818 br04 = in32r (addr);
819 if (i++ > 1000000) {
820 printf ("ERROR Timeout %lx\n", br04);
821 return 1;
822 }
823 }
824 return 0;
825}
826
827/***************************************************************
828 * Set up BitBlt Registrs
829 */
830static void
831SetDrawingEngine (int bits_per_pixel)
832{
833 unsigned long br04, br00;
834 unsigned char tmp;
835
836 GraphicDevice *pGD = (GraphicDevice *) & ctfb;
837
838 tmp = ctRead_i (CT_XR_O, 0x20); /* BitBLT Configuration */
839 tmp |= 0x02; /* reset BitBLT */
840 ctWrite_i (CT_XR_O, 0x20, tmp); /* BitBLT Configuration */
841 udelay (10);
842 tmp &= 0xfd; /* release reset BitBLT */
843 ctWrite_i (CT_XR_O, 0x20, tmp); /* BitBLT Configuration */
844 video_wait_bitblt (pGD->pciBase + BR04_o);
845
846 /* set pattern Address */
847 out32r (pGD->pciBase + BR05_o, PATTERN_ADR & 0x003ffff8);
848 br04 = 0;
849 if (bits_per_pixel == 1) {
850 br04 |= 0x00040000; /* monochome Pattern */
851 br04 |= 0x00001000; /* monochome source */
852 }
853 br00 = ((pGD->winSizeX * pGD->gdfBytesPP) << 16) + (pGD->winSizeX * pGD->gdfBytesPP); /* bytes per scanline */
854 out32r (pGD->pciBase + BR00_o, br00); /* */
855 out32r (pGD->pciBase + BR08_o, (10 << 16) + 10); /* dummy */
856 out32r (pGD->pciBase + BR04_o, br04); /* write all 0 */
857 out32r (pGD->pciBase + BR07_o, 0); /* destination */
858 video_wait_bitblt (pGD->pciBase + BR04_o);
859}
860
wdenkc6097192002-11-03 00:24:07 +0000861/****************************************************************************
862* supported Video Chips
863*/
864static struct pci_device_id supported[] = {
865 {PCI_VENDOR_ID_CT, PCI_DEVICE_ID_CT_69000},
866 {}
867};
868
869/*******************************************************************************
870*
871* Init video chip
872*/
873void *
874video_hw_init (void)
875{
876 GraphicDevice *pGD = (GraphicDevice *) & ctfb;
877 unsigned short device_id;
878 pci_dev_t devbusfn;
879 int videomode;
880 unsigned long t1, hsynch, vsynch;
881 unsigned int pci_mem_base, *vm;
882 int tmp, i, bits_per_pixel;
883 char *penv;
884 struct ctfb_res_modes *res_mode;
885 struct ctfb_res_modes var_mode;
886 struct ctfb_chips_properties *chips_param;
887 /* Search for video chip */
888
889 if ((devbusfn = pci_find_devices (supported, 0)) < 0) {
890#ifdef CONFIG_VIDEO_ONBOARD
891 printf ("Video: Controller not found !\n");
892#endif
893 return (NULL);
894 }
895
896 /* PCI setup */
897 pci_write_config_dword (devbusfn, PCI_COMMAND,
898 (PCI_COMMAND_MEMORY | PCI_COMMAND_IO));
899 pci_read_config_word (devbusfn, PCI_DEVICE_ID, &device_id);
900 pci_read_config_dword (devbusfn, PCI_BASE_ADDRESS_0, &pci_mem_base);
901 pci_mem_base = pci_mem_to_phys (devbusfn, pci_mem_base);
902
903 /* get chips params */
904 for (chips_param = (struct ctfb_chips_properties *) &chips[0];
905 chips_param->device_id != 0; chips_param++) {
906 if (chips_param->device_id == device_id)
907 break;
908 }
909 if (chips_param->device_id == 0) {
910#ifdef CONFIG_VIDEO_ONBOARD
911 printf ("Video: controller 0x%X not supported\n", device_id);
912#endif
913 return NULL;
914 }
915 /* supported Video controller found */
916 printf ("Video: ");
917
918 tmp = 0;
919 videomode = 0x301;
920 /* get video mode via environment */
921 if ((penv = getenv ("videomode")) != NULL) {
922 /* deceide if it is a string */
923 if (penv[0] <= '9') {
924 videomode = (int) simple_strtoul (penv, NULL, 16);
925 tmp = 1;
926 }
927 } else {
928 tmp = 1;
929 }
930 if (tmp) {
931 /* parameter are vesa modes */
932 /* search params */
933 for (i = 0; i < VESA_MODES_COUNT; i++) {
934 if (vesa_modes[i].vesanr == videomode)
935 break;
936 }
937 if (i == VESA_MODES_COUNT) {
938 printf ("no VESA Mode found, switching to mode 0x301 ");
939 i = 0;
940 }
941 res_mode =
942 (struct ctfb_res_modes *) &res_mode_init[vesa_modes[i].
943 resindex];
944 bits_per_pixel = vesa_modes[i].bits_per_pixel;
945 } else {
946
947 res_mode = (struct ctfb_res_modes *) &var_mode;
948 bits_per_pixel = video_get_params (res_mode, penv);
949 }
950
951 /* calculate available color depth for controller memory */
952 if (bits_per_pixel == 15)
953 tmp = 2;
954 else
955 tmp = bits_per_pixel >> 3; /* /8 */
956 if (((chips_param->max_mem -
957 ACCELMEMORY) / (res_mode->xres * res_mode->yres)) < tmp) {
958 tmp =
959 ((chips_param->max_mem -
960 ACCELMEMORY) / (res_mode->xres * res_mode->yres));
961 if (tmp == 0) {
962 printf
963 ("No matching videomode found .-> reduce resolution\n");
964 return NULL;
965 } else {
966 printf ("Switching back to %d Bits per Pixel ",
967 tmp << 3);
968 bits_per_pixel = tmp << 3;
969 }
970 }
971
972 /* calculate hsynch and vsynch freq (info only) */
973 t1 = (res_mode->left_margin + res_mode->xres +
974 res_mode->right_margin + res_mode->hsync_len) / 8;
975 t1 *= 8;
976 t1 *= res_mode->pixclock;
977 t1 /= 1000;
978 hsynch = 1000000000L / t1;
979 t1 *=
980 (res_mode->upper_margin + res_mode->yres +
981 res_mode->lower_margin + res_mode->vsync_len);
982 t1 /= 1000;
983 vsynch = 1000000000L / t1;
984
985 /* fill in Graphic device struct */
986 sprintf (pGD->modeIdent, "%dx%dx%d %ldkHz %ldHz", res_mode->xres,
987 res_mode->yres, bits_per_pixel, (hsynch / 1000),
988 (vsynch / 1000));
989 printf ("%s\n", pGD->modeIdent);
990 pGD->winSizeX = res_mode->xres;
991 pGD->winSizeY = res_mode->yres;
992 pGD->plnSizeX = res_mode->xres;
993 pGD->plnSizeY = res_mode->yres;
994 switch (bits_per_pixel) {
995 case 8:
996 pGD->gdfBytesPP = 1;
997 pGD->gdfIndex = GDF__8BIT_INDEX;
998 break;
999 case 15:
1000 pGD->gdfBytesPP = 2;
1001 pGD->gdfIndex = GDF_15BIT_555RGB;
1002 break;
1003 case 16:
1004 pGD->gdfBytesPP = 2;
1005 pGD->gdfIndex = GDF_16BIT_565RGB;
1006 break;
1007 case 24:
1008 pGD->gdfBytesPP = 3;
1009 pGD->gdfIndex = GDF_24BIT_888RGB;
1010 break;
1011 }
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001012 pGD->isaBase = CONFIG_SYS_ISA_IO_BASE_ADDRESS;
wdenkc6097192002-11-03 00:24:07 +00001013 pGD->pciBase = pci_mem_base;
1014 pGD->frameAdrs = pci_mem_base;
1015 pGD->memSize = chips_param->max_mem;
1016 /* Cursor Start Address */
1017 pGD->dprBase =
1018 (pGD->winSizeX * pGD->winSizeY * pGD->gdfBytesPP) + pci_mem_base;
1019 if ((pGD->dprBase & 0x0fff) != 0) {
1020 /* allign it */
1021 pGD->dprBase &= 0xfffff000;
1022 pGD->dprBase += 0x00001000;
1023 }
Wolfgang Denk8a2d1f22011-11-09 09:29:04 +00001024 debug("Cursor Start %x Pattern Start %x\n", pGD->dprBase,
wdenkc6097192002-11-03 00:24:07 +00001025 PATTERN_ADR);
1026 pGD->vprBase = pci_mem_base; /* Dummy */
1027 pGD->cprBase = pci_mem_base; /* Dummy */
1028 /* set up Hardware */
1029
1030 ctWrite (CT_MSR_W_O, 0x01);
wdenkc6097192002-11-03 00:24:07 +00001031
1032 /* set the extended Registers */
1033 ctLoadRegs (CT_XR_O, xreg);
1034 /* set atribute registers */
1035 SetArRegs ();
1036 /* set Graphics register */
1037 SetGrRegs ();
1038 /* set sequencer */
1039 SetSrRegs ();
1040
1041 /* set msr */
1042 SetMsrRegs (res_mode);
1043
1044 /* set CRT Registers */
1045 SetCrRegs (res_mode, bits_per_pixel);
1046 /* set color mode */
1047 SetBitsPerPixelIntoXrRegs (bits_per_pixel);
1048
1049 /* set PLL */
1050 FindAndSetPllParamIntoXrRegs (res_mode->pixclock, chips_param);
1051
1052 ctWrite_i (CT_SR_O, 0, 0x03); /* clear synchronous reset */
1053 /* Clear video memory */
1054 i = pGD->memSize / 4;
1055 vm = (unsigned int *) pGD->pciBase;
1056 while (i--)
1057 *vm++ = 0;
1058 SetDrawingEngine (bits_per_pixel);
1059#ifdef VGA_DUMP_REG
1060 video_dump_reg ();
1061#endif
1062
1063 return ((void *) &ctfb);
1064}
1065
1066 /*******************************************************************************
1067*
1068* Set a RGB color in the LUT (8 bit index)
1069*/
1070void
1071video_set_lut (unsigned int index, /* color number */
1072 unsigned char r, /* red */
1073 unsigned char g, /* green */
1074 unsigned char b /* blue */
1075 )
1076{
1077
1078 ctWrite (CT_LUT_MASK_O, 0xff);
1079
1080 ctWrite (CT_LUT_START_O, (char) index);
1081
1082 ctWrite (CT_LUT_RGB_O, r); /* red */
1083 ctWrite (CT_LUT_RGB_O, g); /* green */
1084 ctWrite (CT_LUT_RGB_O, b); /* blue */
1085 udelay (1);
1086 ctWrite (CT_LUT_MASK_O, 0xff);
1087}
1088
1089/*******************************************************************************
1090*
1091* Drawing engine fill on screen region
1092*/
1093void
1094video_hw_rectfill (unsigned int bpp, /* bytes per pixel */
1095 unsigned int dst_x, /* dest pos x */
1096 unsigned int dst_y, /* dest pos y */
1097 unsigned int dim_x, /* frame width */
1098 unsigned int dim_y, /* frame height */
1099 unsigned int color /* fill color */
1100 )
1101{
1102 GraphicDevice *pGD = (GraphicDevice *) & ctfb;
1103 unsigned long *p, br04;
1104
1105 video_wait_bitblt (pGD->pciBase + BR04_o);
1106
1107 p = (unsigned long *) PATTERN_ADR;
1108 dim_x *= bpp;
1109 if (bpp == 3)
1110 bpp++; /* 24Bit needs a 32bit pattern */
1111 memset (p, color, (bpp * sizeof (unsigned char) * 8 * 8)); /* 8 x 8 pattern data */
1112 out32r (pGD->pciBase + BR07_o, ((pGD->winSizeX * dst_y) + dst_x) * pGD->gdfBytesPP); /* destination */
1113 br04 = in32r (pGD->pciBase + BR04_o) & 0xffffff00;
1114 br04 |= 0xF0; /* write Pattern P -> D */
1115 out32r (pGD->pciBase + BR04_o, br04); /* */
1116 out32r (pGD->pciBase + BR08_o, (dim_y << 16) + dim_x); /* starts the BITBlt */
1117 video_wait_bitblt (pGD->pciBase + BR04_o);
1118}
1119
1120/*******************************************************************************
1121*
1122* Drawing engine bitblt with screen region
1123*/
1124void
1125video_hw_bitblt (unsigned int bpp, /* bytes per pixel */
1126 unsigned int src_x, /* source pos x */
1127 unsigned int src_y, /* source pos y */
1128 unsigned int dst_x, /* dest pos x */
1129 unsigned int dst_y, /* dest pos y */
1130 unsigned int dim_x, /* frame width */
1131 unsigned int dim_y /* frame height */
1132 )
1133{
1134 GraphicDevice *pGD = (GraphicDevice *) & ctfb;
1135 unsigned long br04;
1136
1137 br04 = in32r (pGD->pciBase + BR04_o);
1138
1139 /* to prevent data corruption due to overlap, we have to
1140 * find out if, and how the frames overlaps */
1141 if (src_x < dst_x) {
1142 /* src is more left than dest
1143 * the frame may overlap -> start from right to left */
1144 br04 |= 0x00000100; /* set bit 8 */
1145 src_x += dim_x;
1146 dst_x += dim_x;
1147 } else {
1148 br04 &= 0xfffffeff; /* clear bit 8 left to right */
1149 }
1150 if (src_y < dst_y) {
1151 /* src is higher than dst
1152 * the frame may overlap => start from bottom */
1153 br04 |= 0x00000200; /* set bit 9 */
1154 src_y += dim_y;
1155 dst_y += dim_y;
1156 } else {
1157 br04 &= 0xfffffdff; /* clear bit 9 top to bottom */
1158 }
1159 dim_x *= bpp;
1160 out32r (pGD->pciBase + BR06_o, ((pGD->winSizeX * src_y) + src_x) * pGD->gdfBytesPP); /* source */
1161 out32r (pGD->pciBase + BR07_o, ((pGD->winSizeX * dst_y) + dst_x) * pGD->gdfBytesPP); /* destination */
1162 br04 &= 0xffffff00;
1163 br04 |= 0x000000CC; /* S -> D */
1164 out32r (pGD->pciBase + BR04_o, br04); /* */
1165 out32r (pGD->pciBase + BR08_o, (dim_y << 16) + dim_x); /* start the BITBlt */
1166 video_wait_bitblt (pGD->pciBase + BR04_o);
1167}
wdenkc6097192002-11-03 00:24:07 +00001168#endif /* CONFIG_VIDEO */