1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427
|
// Simple utility to switch a Savage board between CRT/LCD devices.
// T. N. Roberts, 99-Aug-26.
// Linux x86 only.
#include <stdio.h>
#define extern
#include <asm/io.h>
#undef extern
#include "lrmi.h"
// Usage:
// s3switch [-q] [crt|lcd|both]
// Define the Savage chip classes. PCI id's stolen from xf86PciInfo.h
#define PCI_CHIP_SAVAGE3D 0x8A20
#define PCI_CHIP_SAVAGE3D_MV 0x8A21
#define PCI_CHIP_SAVAGE4 0x8A22
#define PCI_CHIP_SAVAGE2000 0x9102
#define PCI_CHIP_PROSAVAGE_PM 0x8A25
#define PCI_CHIP_PROSAVAGE_KM 0x8A26
#define PCI_CHIP_PROSAVAGE_PN 0x8d01
#define PCI_CHIP_PROSAVAGE_KN 0x8d02
#define PCI_CHIP_SAVAGE_MX_MV 0x8c10
#define PCI_CHIP_SAVAGE_MX 0x8c11
#define PCI_CHIP_SAVAGE_IX_MV 0x8c12
#define PCI_CHIP_SAVAGE_IX 0x8c13
#define PCI_CHIP_PM128 0x8C22
#define PCI_CHIP_PM64 0x8C24
#define PCI_CHIP_PM64C 0x8C26
#define PCI_CHIP_PM128IX_SDR 0x8C2A
#define PCI_CHIP_PM128IX_DDR 0x8C2B
#define PCI_CHIP_PM64IX_SDR 0x8C2C
#define PCI_CHIP_PM64IX_DDR 0x8C2D
#define PCI_CHIP_PM64IXC_SDR 0x8C2E
#define PCI_CHIP_PM64IXC_DDR 0x8C2F
enum {
S3_SAVAGE3D,
S3_SAVAGE4,
S3_SAVAGEMXIX,
S3_SAVAGE2000,
S3_PROSAVAGE
} ChipClass;
// Define the device attachment bits. This is CR6D on the non-mobile
// chips, and CR6B on the mobiles.
// Savage3D does not support LCD, and the Savage4 does not support TV.
#define CRT_ACTIVE 0x01
#define LCD_ACTIVE 0x02
#define TV_ACTIVE 0x04
#define CRT_ATTACHED 0x10
#define LCD_ATTACHED 0x20
#define TV_ATTACHED 0x40
#define DUO_ON 0x80
static char * devices[] = {
" CRT", " LCD", " TV"
};
// Define the TV format bits in CR6B (non-mobile) or CRC0 (mobile).
#define TV_FORMAT_MASK 0x0c
#define TV_FORMAT_NTSCJ 0x00
#define TV_FORMAT_NTSC 0x04
#define TV_FORMAT_PAL 0x08
// Global state:
unsigned int gPCIid = 0;
unsigned char jTvFormat = 0;
unsigned char jDevices = 0;
unsigned char cr79 = 0;
void
usage()
{
puts( "Usage: s3switch [-q] [crt|lcd|both|tv] [ntsc|ntscj|pal]" );
puts( " -q requests quiet operation." );
puts( " crt, lcd and tv activates output to those devices. Several devices may be" );
puts( " specified. Only devices which are actually attached may be activated." );
puts( " both is a shortcut for 'crt lcd'." );
puts( " ntscj, ntsc and pal specify the video format for TV output." );
puts( " This is supported on Savage3D only.");
puts( " With no parameters, displays all devices currently attached and active.");
}
void
IOAccess( int enable )
{
/* Allow or disallow access to I/O ports. */
ioperm( 0x40, 4, enable );
ioperm( 0x61, 1, enable );
ioperm( 0x80, 1, enable );
ioperm( 0x3b0, 0x30, enable );
}
void
fetch_bios_data()
{
// Figure out what kind of Savage it is.
outb( 0x2d, 0x3d4 );
gPCIid = inb( 0x3d5 ) << 8;
outb( 0x2e, 0x3d4 );
gPCIid |= inb( 0x3d5 );
switch( gPCIid ) {
case PCI_CHIP_SAVAGE3D:
case PCI_CHIP_SAVAGE3D_MV:
ChipClass = S3_SAVAGE3D;
break;
case PCI_CHIP_SAVAGE4:
ChipClass = S3_SAVAGE4;
break;
case PCI_CHIP_SAVAGE2000:
ChipClass = S3_SAVAGE2000;
break;
case PCI_CHIP_PROSAVAGE_PM:
case PCI_CHIP_PROSAVAGE_KM:
case PCI_CHIP_PROSAVAGE_PN:
case PCI_CHIP_PROSAVAGE_KN:
ChipClass = S3_PROSAVAGE;
break;
case PCI_CHIP_SAVAGE_MX_MV:
case PCI_CHIP_SAVAGE_MX:
case PCI_CHIP_SAVAGE_IX_MV:
case PCI_CHIP_SAVAGE_IX:
case PCI_CHIP_PM128IX_SDR:
case PCI_CHIP_PM128IX_DDR:
case PCI_CHIP_PM64IX_SDR:
case PCI_CHIP_PM64IX_DDR:
case PCI_CHIP_PM64IXC_SDR:
case PCI_CHIP_PM64IXC_DDR:
ChipClass = S3_SAVAGEMXIX;
break;
default:
printf( "PCI id is not a recognized Savage: %04x\n", gPCIid );
exit(-1);
}
if( ChipClass == S3_SAVAGEMXIX )
{
outb( 0xc0, 0x3d4 );
jTvFormat = inb( 0x3d5 );
outb( 0x6b, 0x3d4 );
jDevices = inb( 0x3d5 );
}
else
{
outb( 0x6b, 0x3d4 );
jTvFormat = inb( 0x3d5 );
outb( 0x6d, 0x3d4 );
jDevices = inb( 0x3d5 );
}
outb( 0x79, 0x3d4 );
cr79 = inb( 0x3d5 );
//printf( "Device ID: %04x\n", gPCIid);
// The Savage4 and Savage2000 are the only chips which actually detect
// the presence of the devices. For the others, we just have to assume.
if( ChipClass == S3_SAVAGE3D )
{
jDevices = (jDevices & 0x0f) | CRT_ATTACHED | TV_ATTACHED;
}
if( ChipClass == S3_SAVAGEMXIX )
{
jDevices = (jDevices & 0x0f) | CRT_ATTACHED | TV_ATTACHED | LCD_ATTACHED;
}
}
unsigned short
set_active_device( int iDevice )
{
struct LRMI_regs r;
int iResult = 0;
if (!LRMI_init())
return 1;
/* Go set the active device. */
memset( &r, 0, sizeof(r) );
r.eax = 0x4f14; // S3 extended functions
r.ebx = 0x0003; // set active device
r.ecx = iDevice;
iResult = LRMI_int( 0x10, &r );
if( !iResult )
{
fprintf( stderr, "Could not set device (vm86 failure)\n" );
return 1;
}
if ( (r.eax & 0xffff) != 0x4f )
{
fprintf( stderr, "BIOS returned error code.\n" );
return 1;
}
return 0;
}
unsigned short
set_tv_state( int state )
{
struct LRMI_regs r;
int iResult = 0;
if (!LRMI_init())
return 1;
/* And go set the TV state. */
memset( &r, 0, sizeof(r) );
r.eax = 0x4f14; // S3 extended functions
r.ebx = 0x0007; // set tv state
r.ecx = state;
r.edx = TV_FORMAT_MASK;
iResult = LRMI_int( 0x10, &r );
if( !iResult )
{
fprintf( stderr, "Could not set TV state (vm86 failure)\n" );
return 1;
}
if ( (r.eax & 0xffff) != 0x4f )
{
fprintf( stderr, "BIOS returned error code.\n" );
return 1;
}
return 0;
}
void
print_current_state()
{
int i;
printf( "Devices attached: " );
if( !(jDevices & 0x70) )
{
// How can this be?
printf( "none" );
}
else
for( i = 0; i < 3; i++ )
if( jDevices & (0x10 << i) )
printf( devices[i] );
printf( "\nDevices active: " );
if( !(jDevices & 0x07) )
{
// How can this be?
printf( "none\n" );
}
else
for( i = 0; i < 3; i++ )
if( jDevices & (0x01 << i) )
printf( devices[i] );
if( jDevices & TV_ATTACHED )
{
static char * szTV[] = { "NTSC-J", "NTSC", "PAL" };
printf(
"\nCurrent TV format is %s",
szTV[(jTvFormat & TV_FORMAT_MASK) >> 2]
);
}
printf( "\n" );
}
void
set_new_state( int newstate )
{
// We should prohibit TV on Savage4.
if( ((jDevices >> 4) & newstate) != newstate )
{
fprintf( stderr, "You attempted to activate a device which is not connected.\n" );
// Alternatively, quiet = 0, return.
print_current_state();
exit( -2 );
}
set_active_device( newstate );
// If the LCD state changed, we need to adjust cr79 in Savage4.
// These values are somewhat magical, and are set by the X server.
if( (ChipClass == S3_SAVAGE4) || (ChipClass == S3_SAVAGE2000) )
{
if( (jDevices & LCD_ACTIVE) && !(newstate & LCD_ACTIVE) )
{
// The LCD was alive and now it isn't. We can increase cr79.
if( (cr79 == 5) || (cr79 == 8) )
{
cr79 = (cr79 == 5) ? 8 : 0x0e;
ioperm( 0x3d4, 2, 1 );
outw( (cr79 << 8) | 0x79, 0x3d4 );
ioperm( 0x3d4, 2, 0 );
}
}
else if( !(jDevices & LCD_ACTIVE) && (newstate & LCD_ACTIVE) )
{
// The LCD was off and now it's on. We must cut back cr79.
if( (cr79 == 8) || (cr79 == 0xe) )
{
cr79 = (cr79 == 8) ? 5 : 8;
ioperm( 0x3d4, 2, 1 );
outw( (cr79 << 8) | 0x79, 0x3d4 );
ioperm( 0x3d4, 2, 0 );
}
}
}
fetch_bios_data();
return;
}
void
set_new_tvstate( int tvstate )
{
if( ChipClass == S3_SAVAGE4 )
return;
set_tv_state( tvstate );
fetch_bios_data();
return;
}
int
main( int argc, char ** argv )
{
int quiet = 0;
int newstate = 0;
int newtv = 0;
if( geteuid() != 0 )
{
fprintf( stderr, "s3switch must be setuid root.\n" );
exit( -1 );
}
// Scan through the argument list. We do very primitive checking here.
while( *++argv )
{
if( strcmp( *argv, "-q" ) == 0 )
quiet++;
else if( strcasecmp( *argv, "crt" ) == 0 )
newstate |= CRT_ACTIVE;
else if( strcasecmp( *argv, "lcd" ) == 0 )
newstate |= LCD_ACTIVE;
else if( strcasecmp( *argv, "both" ) == 0 )
newstate |= CRT_ACTIVE | LCD_ACTIVE;
else if( strcasecmp( *argv, "tv" ) == 0 )
newstate |= TV_ACTIVE;
else if( strcasecmp( *argv, "ntsc-j" ) == 0 )
newtv = TV_FORMAT_NTSCJ;
else if( strcasecmp( *argv, "ntscj" ) == 0 )
newtv = TV_FORMAT_NTSCJ;
else if( strcasecmp( *argv, "ntsc" ) == 0 )
newtv = TV_FORMAT_NTSC;
else if( strcasecmp( *argv, "pal" ) == 0 )
newtv = TV_FORMAT_PAL;
else if( strcmp( *argv, "-h" ) == 0 )
{
usage();
exit( 0 );
}
else
{
fprintf( stderr, "Unknown argument: %s\n", *argv );
usage();
exit( -1 );
}
}
IOAccess( 1 );
fetch_bios_data();
if( newtv )
set_new_tvstate( newtv );
if( newstate )
set_new_state( newstate );
if( !quiet )
print_current_state( );
IOAccess( 0 );
return 0;
}
|