LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Hardware (https://www.linuxquestions.org/questions/linux-hardware-18/)
-   -   How to turn on S-Video output on S3 Savage? (https://www.linuxquestions.org/questions/linux-hardware-18/how-to-turn-on-s-video-output-on-s3-savage-653074/)

Libra RHR 07-02-2008 08:49 AM

How to turn on S-Video output on S3 Savage?
 
The last days, I seemed to be a bit dull, because it already worked:

My graphics card is an S3 ProSavage DDR

lshw tells:
Code:

*-display
                description: VGA compatible controller
                product: 86C380 [ProSavageDDR K4M266]
                vendor: S3 Inc.
                physical id: 0
                bus info: pci@01:00.0
                version: 02
                size: 128MB
                width: 32 bits
                clock: 66MHz
                capabilities: vga bus_master cap_list
                resources: iomemory:e8100000-e817ffff
iomemory:f0000000-f7ffffff
 irq:10

Since it's a laptop computer, the graca is connected to an LCD, and further on it has a VGA and an S-Video output connector. These can be toggled, but not work simultaneously (at least not the S-Video with the LCD).

How do I configure X11 to be able to toggle between the LCD and the S-Video connector, and how do I toggle?

s3switch tv pal

turns off LCD, but does not turn on S-Video.

Here is my xorg.conf:
Code:


Section "Files"
        FontPath        "/usr/share/X11/fonts/misc"
        FontPath        "/usr/share/X11/fonts/cyrillic"
        FontPath        "/usr/share/X11/fonts/100dpi/:unscaled"
        FontPath        "/usr/share/X11/fonts/75dpi/:unscaled"
        FontPath        "/usr/share/X11/fonts/Type1"
        FontPath        "/usr/share/X11/fonts/100dpi"
        FontPath        "/usr/share/X11/fonts/75dpi"
        FontPath        "/usr/share/fonts/X11/misc"
        # path to defoma fonts
        FontPath        "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
EndSection

Section "Module"
        Load    "i2c"
        Load    "bitmap"
        Load    "ddc"
        Load    "dri"
        Load    "extmod"
        Load    "freetype"
        Load    "glx"
        Load    "int10"
        Load    "type1"
        Load    "vbe"
EndSection

Section "InputDevice"
        Identifier      "Generic Keyboard"
        Driver          "kbd"
        Option          "CoreKeyboard"
        Option          "XkbRules"      "xorg"
        Option          "XkbModel"      "pc105"
        Option          "XkbLayout"    "de"
        Option          "XkbVariant"    "deadgraveacute"
        Option          "XkbOptions"    "lv3:ralt_switch"
EndSection

Section "InputDevice"
        Identifier      "Configured Mouse"
        Driver          "mouse"
        Option          "CorePointer"
        Option          "Device"                "/dev/input/mice"
        Option          "Protocol"              "ExplorerPS/2"
        Option          "ZAxisMapping"          "4 5"
        Option          "Emulate3Buttons"      "true"
EndSection

Section "Device"
        Identifier      "S3 Inc. 86C380 [ProSavageDDR K4M266]"
        Driver          "savage"
        Option          "AGPMode"      "2"
        BusID          "PCI:1:0:0"
        Option "ConnectedMonitor" "Monitor"
        Screen          0
EndSection

Section "Device"
        Identifier      "TV S3 Inc. 86C380 [ProSavageDDR K4M266]"
        Driver          "savage"
        Option          "AGPMode"      "2"
#      BusID          "PCI:1:0:0"
        Option "TVOutFormat" "SVIDEO"
        Option "TVStandard" "PAL"
        Option "ConnectedMonitor" "MonitorTV"
        Screen          1
EndSection

Section "Monitor"
        Identifier      "Generic Monitor"
        Option          "DPMS"
        HorizSync      28-51
        VertRefresh    43-60
EndSection

Section "Monitor"
        Identifier "MonitorTV"
        HorizSync 30-95
        VertRefresh 60
EndSection

Section "Screen"
        Identifier      "Default Screen"
        Device          "S3 Inc. 86C380 [ProSavageDDR K4M266]"
        Monitor        "Generic Monitor"
        DefaultDepth    24
        SubSection "Display"
                Depth          1
                Modes          "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
                Depth          4
                Modes          "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
                Depth          8
                Modes          "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
                Depth          15
                Modes          "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
                Depth          16
                Modes          "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
                Depth          24
                Modes          "1024x768" "800x600" "640x480"
        EndSubSection
EndSection

Section "Screen"
        Identifier      "STV"
        Device          "TV S3 Inc. 86C380 [ProSavageDDR K4M266]"
        Monitor        "MonitorTV"
        DefaultDepth    16
        SubSection "Display"
                Depth          16
                Modes          "1024x768" "800x600" "640x480"
        EndSubSection
EndSection

Section "ServerLayout"
        Identifier      "Default Layout"
        Screen          0 "Default Screen" 0 0
        Screen          1 "STV" RightOf "Default Screen"
        InputDevice    "Generic Keyboard"
        InputDevice    "Configured Mouse"
EndSection

Section "DRI"
        Mode    0666
EndSection



All times are GMT -5. The time now is 09:16 PM.