Contained Within
Find More DocumentationFeatured Support Resources | Download this book in PDF (190 KB)
Chapter 1 TurboGXplus Frame BufferThis chapter describes how you can configure your system using a TurboGXplus(TM) card to suit your specific video and graphics requirements. The information describes how to set up your TurboGXplus to support different screen resolutions and how to set up the system to support multiple monitors. TurboGXplus-supported MonitorsTable 1-1 shows the list of monitors supported by the TurboGXplus card. Note - The monitors listed in Table 1-1 are subject to change as Sun Microsystems announces new monitors. Contact your local Sun representative for a listing of supported monitors. Table 1-1 Monitors Supported by TurboGXplus
Default Screen ResolutionsTable 1-2 lists the default screen resolutions by monitor ID sense code. Table 1-2 TurboGXplus Monitor Sense Codes
Programming the Screen ResolutionProgramming the screen resolution for TurboGXplus frame buffers must be done in nvramrc, a nonvolatile PROM script memory. When the PROM reaches the device probing stage, it checks the use-nvramrc? variable and if it is true, executes the Forth code that resides in nvramrc. Otherwise, it calls probe-sbus (for all pre-Ultra systems) or probe-all (for all Ultra systems), install-console, and banner. The following example places resolution initialization between the probe-sbus (or probe-all) stage and the install-console stage. First probe-sbus or probe-all is called to probe all devices, so that the device tree is created, and the devices are initialized. The next line defines a Forth word called vsetup which contains the monitor video setup values. Example 1-1 Resolution Initialization Between probe-sbus and install-console Stage#!/bin/sh eeprom fcode-debug\?=true eeprom use-nvramrc\?=true eeprom nvramrc='probe-sbus (or probe-all) : vsetup " 117000000,71691,67,16,112,224,1280,2,8,33,1024,COLOR,0OFFSET" ; vsetup 4 " /sbus/cgsix@1" " override" execute-device-method drop install-console banner The following string of values (defined in Table 1-3) are the specifications for a video setup: " 117000000,71691,67,16,112,224,1280,2,8,33,1024,COLOR,0OFFSET" Table 1-3 Video Setup Specifications
The line, vsetup 4, pushes the video string on the stack, the number 4 defines the sense code of the monitor to change the resolution on. See Table 1-4 for supported monitor codes. The number used should match the monitor attached to the TurboGXplus frame buffer. The next line pushes the string /sbus/cgsix@1 onto the Forth stack, the path for the device where the resolution is to be changed. The "1" in cgsix@1 identifies the SBus slot number. The following example changes the cgsix frame buffer on SBus slot 1. Example 1-2 Changes to cgsix Frame Buffer in SBus Slot 1ok nvedit 0: probe-sbus (or probe-all) 1: : vsetup " 117000000,71691,67,16,112,224,1280,2,8,33,1024,COLOR,0OFFSET" ; 2: vsetup 4 3: " /sbus/cgsix@1" " override" execute-device-method drop 4: install-console 5: banner 6: ^C ok nvstore ok setenv use-nvramrc? true ok setenv fcode-debug? true The "override" string is the actual entry point in the cgsix fcode PROM that reconfigures the resolution from the data on the forth stack. execute-device-method actually calls override and returns a pass or fail flag, which is ignored by the drop command that follows. The remaining two lines install-console and banner, installs a terminal driver on the display device, then prints the banner at reset time or reboot time. Configuring Monitors Using a UNIX ScriptThe following is a UNIX script used to configure the TurboGXplus for a resolution of 1280 x 1024 at 67 Hz. Example 1-3 UNIX Script Method#!/bin/sh eeprom fcode-debug\?=true eeprom use-nvramrc\?=true eeprom nvramrc='probe-sbus (or probe-all) : vsetup " 117000000,71691,67,16,112,224,1280,2,8,33,1024,COLOR,0OFFSET" ; vsetup 4 " /sbus/cgsix@1" " override" execute-device-method drop install-console banner ` Configuring Monitors Using the PROM MethodThe following example uses the PROM method to configure the TurboGXplus for a resolution of 1280 x 1024 at 67 Hz. Example 1-4 PROM Methodok nvedit 0: probe-sbus (or probe-all) 1: : vsetup " 117000000,71691,67,16,112,224,1280,2,8,33,1024,COLOR,0OFFSET" ; 2: vsetup 4 3: " /sbus/cgsix@1" " override" execute-device-method drop 4: install-console 5: banner 6: ^C ok nvstore ok setenv use-nvramrc? true ok setenv fcode-debug? true Table 1-4 contains codes for TurboGXplus-supported resolutions: Table 1-4 TurboGXplus Resolution Codes
Setting Up a Single Monitor Using the PROM MethodThe following is an example of how to set up a TurboGXplus card in slot 2 to 1024 x 768 at 60 Hz using a 16-inch monitor. Example 1-5 PROM Method for Single Monitor Setupok nvedit 0: probe-sbus (or probe-all) 1: : vsetup " 64125000,48286,60,16,128,160,1024,2,6,29,768,COLOR" ; 2: vsetup 6 3: " /sbus/cgsix@2" " override" execute-device-method drop 4: install-console 5: banner 6: ^C ok nvstore ok setenv use-nvramrc? true ok setenv fcode-debug? true Setting Up a Single Monitor Using a UNIX ScriptThe following is a UNIX script that sets a 1024 x 768 at 60 Hz for the TurboGXplus card in slot 2. Example 1-6 UNIX Script Method for Single Monitor Setup#!/bin/sh eeprom fcode-debug\?=true eeprom nvramrc='probe-sbus (or probe-all) : vsetup " 64125000,48286,60,16,128,160,1024,2,6,29,768,COLOR" ; vsetup 6 "/sbus/cgsix@2" " override" execute-device-method drop install-console banner ` eeprom use-nvramrc\?=true Setting Up Multiple Monitors Using a UNIX ScriptThe following example shows a UNIX script that sets up the TurboGXplus card in slot 1 to 1152 x 900 at 76 Hz, and another TurboGXplus card in slot 3 to 1280 x 1024 at 67 Hz using two 19-inch monitors. Example 1-7 UNIX Script Method for Multiple Monitor Setup#!/bin/sh eeprom fcode-debug\?=true eeprom nvramrc='probe-sbus (or probe-all) : vsetup1 " 108000000,71808,76,32,128,192,1152,2,4,31,900,COLOR,0OFFSET" ; vsetup1 4 " /sbus/cgsix@1" " override" execute-device-method drop : vsetup2 " 117000000,71691,67,16,112,224,1280,2,8,33,1024,COLOR,0OFFSET" ; vsetup2 4 " /sbus/cgsix@3" " override" execute-device-method drop install-console banner ` eeprom use-nvramrc\?=true For more information on running multiple monitors, see Chapter 9, Multiple Monitors on a System. |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||