/*
* Tvp302[056] Viewpoint Video Interface Palette.
* Assumes hooked up to an S3 86C928 or S3 Vision964.
*/
enum {
Index = 0x06, /* Index register */
Data = 0x07, /* Data register */
Id = 0x3F, /* ID Register */
Tvp3020 = 0x20,
Tvp3025 = 0x25,
Tvp3026 = 0x26,
};
/*
* The following two arrays give read (bit 0) and write (bit 1)
* permissions on the direct and index registers. Bits 4 and 5
* are for the Tvp3025. The Tvp3020 has only 8 direct registers.
*/
static uchar directreg[32] = {
0x33, 0x33, 0x33, 0x33, 0x00, 0x00, 0x33, 0x33,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33,
0x33, 0x33, 0x11, 0x33, 0x33, 0x33, 0x33, 0x33,
};
/*
* Check the index register access is valid.
* Return the number of direct registers.
*/
static uchar
checkindex(uchar index, uchar access)
{
uchar crt55;
static uchar id;
/*
* Work out the part speed-grade from name. Name can have,
* e.g. '-135' on the end for 135MHz part.
*/
grade = 110000000;
if(p = strrchr(ctlr->name, '-'))
grade = strtoul(p+1, 0, 0) * 1000000;
/*
* If we don't already have a desired pclk,
* take it from the mode.
* Check it's within range.
*/
if(vga->f[0] == 0)
vga->f[0] = vga->mode->frequency;
if(vga->f[0] > grade)
error("%s: invalid pclk - %ld\n", ctlr->name, vga->f[0]);
/*
* Determine whether to use clock-doubler or not.
*/
if(vga->f[0] > 85000000){
vga->f[0] /= 2;
resyncinit(vga, ctlr, Uclk2, 0);
}
ctlr->flag |= Finit;
}
static void
load(Vga* vga, Ctlr* ctlr)
{
uchar x;
/*
* Input Clock Selection:
* VGA CLK0
* enhanced CLK1
* doubled if necessary.
*/
x = 0x00;
if(ctlr->flag & Uenhanced)
x |= 0x01;
if(ctlr->flag & Uclk2)
x |= 0x10;
tvp3020xo(0x1A, x);
/*
* General Control:
* output sync polarity
* It's important to set this properly and to turn off the
* VGA controller H and V syncs. Can't be set in VGA mode.
*/
x = 0x00;
if((vga->misc & 0x40) == 0)
x |= 0x01;
if((vga->misc & 0x80) == 0)
x |= 0x02;
tvp3020xo(0x1D, x);
vga->misc |= 0xC0;
vgao(MiscW, vga->misc);
/*
* Select the DAC via the General Purpose I/O
* Register and Pins.
* Guesswork by looking at register dumps.
*/
tvp3020xo(0x2A, 0x1F);
if(ctlr->flag & Uenhanced)
x = 0x1D;
else
x = 0x1C;
tvp3020xo(0x2B, x);
ctlr->flag |= Fload;
}
static void
dump(Vga*, Ctlr* ctlr)
{
uchar access;
int i;