Diamond Multimedia EDGE 3D 3400XL - NVidia NV1

EDGE 3D 3400XL

イロイロと問題の多いことで有名なカードらしい。 21世紀になってから中古(箱入りジャンク?)で手に入れたとは笑いものなのかもしれない。 フリーセルが速くなった。 調べたことをメモしておかねば。

Drivers

付属のドライバも評判が悪い。 探し出したサイト。

  1. SONICblue Inc.
  2. Diamond Multimedia (FTP)

Windows 98

Windows 98等への対応はしないと宣言してあるが、 上のサイトのFAQのページに、 v2.3のドライバはどうにか使えるようなことが書いてある。 試してはいない。

11-2 Is there any way for me to get the Edge to work correctly under Windows 98?

We have received reports from users that have been somewhat successful in getting the Edge 3D to work under Win98. Some untested/unsupported suggestions we have received are:

Remove Edge 3D adapter from Win95 Device Manager prior to upgrading to Win98. After upgrade to Win98 switch to standard VGA and load Win95 Edge 3D v2.3 drivers.

OR

Change to a non-Edge 3D adapter prior to upgrading to Win98. After upgrade to Win98, install Edge 3D hardware and v2.3 drivers.

XF86Config

NV1はXFree86-3.1?以降のsvga serverでサポートされている。 が、VGA16 serverは使えないので、XF86Configを設定するのにXF86Setupが使えない。 xf86configは使えるが、ちゃんと動くXF86Configを一発では書いてくれなかった。 以下は幾分苦労して作ったXF86Config。一応Xできたくらい。3Dとかはよう知らん。

#**********************************************************************
# /etc/X11/XF86Config (for XFree86-3.3.6)
#
#          Mouse:   Logitech M-C48
#        Monitor:   Iiyama MF-8617E
#     Video Card:   Diamond EDGE 3D 3400XL
# Chipset(video):   Nvidia NV1
#**********************************************************************

Section "Files"
    RgbPath                   "/usr/X11R6/lib/X11/rgb"
#   FontPath                  "/usr/X11R6/lib/X11/fonts/local/"
    FontPath                  "/usr/X11R6/lib/X11/fonts/75dpi/:unscaled"
    FontPath                  "/usr/X11R6/lib/X11/fonts/100dpi/:unscaled"
    FontPath                  "/usr/X11R6/lib/X11/fonts/75dpi/"
    FontPath                  "/usr/X11R6/lib/X11/fonts/100dpi/"
    FontPath                  "/usr/X11R6/lib/X11/fonts/japanese/"
    FontPath                  "/usr/X11R6/lib/X11/fonts/misc/"
    FontPath                  "/usr/X11R6/lib/X11/fonts/TrueType/"
    FontPath                  "/usr/X11R6/lib/X11/fonts/Type1/"
    FontPath                  "/usr/X11R6/lib/X11/fonts/Speedo/"
#   ModulePath                "/usr/X11R6/lib/modules"
EndSection

#Section "Module"
#   Load                      "xf86Jstk.so"
#EndSection

Section "ServerFlags"
EndSection

Section "Keyboard"
    Protocol                  "Standard"
    AutoRepeat                500 5
    LeftAlt                   Meta
    RightAlt                  Meta
    ScrollLock                Compose
    RightCtl                  Control
    XkbKeycodes               "xfree86"
    XkbTypes                  "default"
    XkbCompat                 "default"
    XkbSymbols                "jp106"
    XkbGeometry               "pc"
    XkbRules                  "xfree86"
    XkbModel                  "jp106"
    XkbLayout                 "jp"
EndSection

Section "Pointer"
    Protocol                  "IMPS/2"
    Device                    "/dev/mouse"
    Resolution                100
    ZAxisMapping              4 5
    Buttons                   5
EndSection

Section "Monitor"
    Identifier                "My Monitor"
    VendorName                "Iiyama"
    ModelName                 "MF-8617E"
    HorizSync                 24.8-86.0
    VertRefresh               50-160
    Mode "640x480"
        DotClock              31.5
        HTimings              640  656  720  840
        VTimings              480  481  484  500
        Flags                 "-HSync" "-VSync"
    EndMode
    Mode "1024x768"
        DotClock              75
        HTimings              1024 1048 1168 1360
        VTimings              768  784  787  815
        Flags                 "+HSync" "+VSync"
    EndMode
EndSection

Section "Device"
    Identifier                "Generic VGA"
    VendorName                "Unknown"
    BoardName                 "Unknown"
    Chipset                   "generic"
#   VideoRam                  256
#   Clocks                    25.2 28.3
    Option                    "no_accel"
    Option                    "sw_cursor"
EndSection

Section "Device"
    Identifier                "My Video Card"
    VendorName                "Diamond Multimedia"
    BoardName                 "Edge 3D 3400XL"
#   VideoRam                  4096
#   Clocks                    
    Option                    "no_accel" #Important!!
    Option                    "sw_cursor"
EndSection

Section "Screen"
    Driver                    "svga"
    Device                    "My Video Card"
    Monitor                   "My Monitor"
    DefaultColorDepth         16
    Subsection "Display"
        Depth                 8
        Modes                 "1024x768"
        ViewPort              0 0
    EndSubsection
    Subsection "Display"
        Depth                 16
        Modes                 "1024x768"
        ViewPort              0 0
        Weight                555
    EndSubsection
#   24bpp is not supported.
#   Subsection "Display"
#       Depth                 24
#       Modes                 "1024x768"
#       ViewPort              0 0
#   EndSubsection
#   Subsection "Display"
#       Depth                 32
#       Modes                 "1024x768"
#       ViewPort              0 0
#   EndSubsection
EndSection

tO tHe ToP pAgE