[oi-dev] [OpenIndiana-discuss] Sun/Oracle China's DRM//KMS Sol11.2 port backported to function on old-style gfxp_private from pre-2010 era but still immediatedly PANICS

Мартин Бохниг opensxce at mail.ru
Fri Dec 18 15:40:21 UTC 2015


 Ok, maybe there is still hope.

I finally identified the exact piece of code which is _really_ causing all this (the backtraces were misleading, because of reasons I won't explain at this time, because the Tea-water is boiling), in file ./i915/src/i915_gem.c" line 3669 of 3994 --91%--

int i915_gem_init(struct drm_device *dev)
{
        struct drm_i915_private *dev_priv = dev->dev_private;
        int ret;
        int size;

        mutex_lock(&dev->struct_mutex);

        if (IS_VALLEYVIEW(dev)) {
                /* VLVA0 (potential hack), BIOS isn't actually waking us */
                I915_WRITE(VLV_GTLC_WAKE_CTRL, 1);
                if (wait_for((I915_READ(VLV_GTLC_PW_STATUS) & 1) == 1, 10))
                        DRM_DEBUG_DRIVER("allow wake ack timed out\n");
        }

        i915_gem_init_global_gtt(dev);

        size = drm_getfb_size(dev);
        dev_priv->fbcon_obj = NULL;
        if (size > 0) {
                /* save original fb GTT */
                dev->old_gtt_size = size;
                dev->old_gtt = kmem_zalloc(dev->old_gtt_size, KM_NOSLEEP);
                intel_rw_gtt(dev, dev->old_gtt_size,
                        0, (void *) dev->old_gtt, 0);

                /*
                 * Some BIOSes fail to initialise the GTT, which will cause DMA faults when
                 * the IOMMU is enabled. We need to clear the whole GTT.
                 */
                i915_clean_gtt(dev, size);

                /* workaround: prealloc fb buffer, make sure the start address 0 */
 dev_priv->fbcon_obj = i915_gem_alloc_object(dev, size);
/*              if (!dev_priv->fbcon_obj) {
                        DRM_ERROR("failed to allocate framebuffer");
                        mutex_unlock(&dev->struct_mutex);
                        teardown_scratch_page(dev);
                        return (-ENOMEM);
                }

*/
                /* copy old content to fb buffer */
                //(void) memcpy(dev_priv->fbcon_obj->base.kaddr, dev->old_gtt, size);

                /* Flush everything out, we'll be doing GTT only from now on */
                //ret = intel_pin_and_fence_fb_obj(dev, dev_priv->fbcon_obj, false);
/*              if (ret) {
                        DRM_ERROR("failed to pin fb ret %d", ret);
                        mutex_unlock(&dev->struct_mutex);
                        teardown_scratch_page(dev);
                        i915_gem_free_object(&dev_priv->fbcon_obj->base);
                        return ret;
                }
*/
        }

        dev_priv->mm.interruptible = true;

        ret = i915_gem_init_hw(dev);
        mutex_unlock(&dev->struct_mutex);
/*
        if (ret) {
                i915_gem_cleanup_aliasing_ppgtt(dev);
                return ret;
        }
*/

        /* Allow hardware batchbuffers unless told otherwise, but not for KMS. */
        if (!drm_core_check_feature(dev, DRIVER_MODESET))
                dev_priv->dri1.allow_batchbuffer = 1;
        return 0;
}



The analysis brought that the one pointer which is NULL is in fact dev in some iteration (called from other files), then the panic.

By commenting it out at least - instead of getting all these panics on 11.0 and Illumos - even on old outdated Illumos we suddenly get:
(the same commented out stuff still boots Xorg/DRI2 on Sol11.1, while failing to start Xorg on 11.0 and Illumos, but now instead of panicking at least returns to the console and has produced a nice Xorg.0.log file!!!
Even DRM2Setup would normally succeed (I disabled it in xorg.conf).
While this looks quite nice now, it does not mean we have it woking in the forseeable future.
However - now one has something to work on, because finally it is know what is NULL.
What is not known: WHY! And why only on 11.0/Illumos, but not on 11.1++.

Nevertheless, enjoy:


[   156.862] 
X.Org X Server 1.12.4
Release Date: 2012-08-27
[   156.864] X Protocol Version 11, Revision 0
[   156.865] Build Operating System: SunOS 5.11 i86pc 
[   156.865] Current Operating System: SunOS opensxce 5.11 master-0-ga443cc8 i86pc
[   156.866] Build Date: 21 February 2015  08:40:18AM
[   156.867] Solaris ABI: 64-bit 
[   156.867] Current version of pixman: 0.32.6
[   156.869]     Before reporting problems, check http://openindiana.org
    to make sure that you have the latest version.
[   156.869] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[   156.871] (==) Log file: "/var/log/Xorg.0.log", Time: Fri Dec 18 15:58:12 2015
[   156.992] (==) Using config file: "/etc/X11/xorg.conf"
[   156.992] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[   157.002] (==) ServerLayout "X.org Configured"
[   157.002] (**) |-->Screen "Screen0" (0)
[   157.002] (**) |   |-->Monitor "Monitor0"
[   157.004] (**) |   |-->Device "Card0"
[   157.004] (**) |-->Input Device "Mouse0"
[   157.004] (**) |-->Input Device "Keyboard0"
[   157.004] (==) Disabling SIGIO handlers for input devices
[   157.004] (==) Automatically adding devices
[   157.004] (==) Automatically enabling devices
[   157.004] (**) FontPath set to:
    catalogue:/etc/X11/fontpath.d,
    catalogue:/etc/X11/fontpath.d
[   157.004] (**) ModulePath set to "/usr/lib/xorg/modules/amd64"
[   157.004] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
[   157.004] (WW) Disabling Mouse0
[   157.004] (WW) Disabling Keyboard0
[   157.004] (II) Loader magic: 697040
[   157.004] (II) Module ABI versions:
[   157.004]     X.Org ANSI C Emulation: 0.4
[   157.004]     X.Org Video Driver: 12.1
[   157.004]     X.Org XInput driver : 16.0
[   157.004]     X.Org Server Extension : 6.0
[   157.095] (--) PCI:*(0:0:2:0) 8086:0122:1458:d000 rev 9, Mem @ 0xfb800000/4194304, 0xd0000000/268435456, I/O @ 0x0000ff00/64
[   157.096] (--) PCI: (0:2:0:0) 10de:042f:10de:0493 rev 161, Mem @ 0xf8000000/16777216, 0xe0000000/268435456, 0xf6000000/33554432, I/O @ 0x0000df00/128
[   157.096] (II) "extmod" will be loaded. This was enabled by default and also specified in the config file.
[   157.096] (II) "dbe" will be loaded. This was enabled by default and also specified in the config file.
[   157.096] (II) "glx" will be loaded by default.
[   157.096] (II) "record" will be loaded. This was enabled by default and also specified in the config file.
[   157.096] (II) "dri" will be loaded. This was enabled by default and also specified in the config file.
[   157.096] (II) "dri2" will be loaded. This was enabled by default and also specified in the config file.
[   157.096] (II) "ia" will be loaded. This was enabled by default and also specified in the config file.
[   157.096] (II) "xtsol" will be loaded by default.
[   157.096] (II) LoadModule: "record"
[   157.137] (II) Loading /usr/lib/xorg/modules/extensions/amd64/librecord.so
[   157.140] (II) Module record: vendor="X.Org Foundation"
[   157.140]     compiled for 1.12.4, module version = 1.13.0
[   157.140]     Module class: X.Org Server Extension
[   157.140]     ABI class: X.Org Server Extension, version 6.0
[   157.140] (II) Loading extension RECORD
[   157.140] (II) LoadModule: "dri2"
[   157.140] (II) Loading /usr/lib/xorg/modules/extensions/amd64/libdri2.so
[   157.351] (II) Module dri2: vendor="X.Org Foundation"
[   157.351]     compiled for 1.12.4, module version = 1.2.0
[   157.351]     ABI class: X.Org Server Extension, version 6.0
[   157.351] (II) Loading extension DRI2
[   157.351] (II) LoadModule: "ia"
[   157.352] (II) Loading /usr/lib/xorg/modules/extensions/amd64/libia.so
[   157.373] (II) Module IANAME: vendor="X.Org Foundation"
[   157.373]     compiled for 1.12.4, module version = 1.0.0
[   157.373]     ABI class: X.Org Server Extension, version 6.0
[   157.373] (II) Loading extension SolarisIA
[   157.373] (II) LoadModule: "dri"
[   157.374] (II) Loading /usr/lib/xorg/modules/extensions/amd64/libdri.so
[   157.381] (II) Module dri: vendor="X.Org Foundation"
[   157.381]     compiled for 1.12.4, module version = 1.0.0
[   157.381]     ABI class: X.Org Server Extension, version 6.0
[   157.381] (II) Loading extension XFree86-DRI
[   157.381] (II) LoadModule: "dbe"
[   157.381] (II) Loading /usr/lib/xorg/modules/extensions/amd64/libdbe.so
[   157.391] (II) Module dbe: vendor="X.Org Foundation"
[   157.391]     compiled for 1.12.4, module version = 1.0.0
[   157.391]     Module class: X.Org Server Extension
[   157.391]     ABI class: X.Org Server Extension, version 6.0
[   157.391] (II) Loading extension DOUBLE-BUFFER
[   157.391] (II) LoadModule: "extmod"
[   157.391] (II) Loading /usr/lib/xorg/modules/extensions/amd64/libextmod.so
[   157.401] (II) Module extmod: vendor="X.Org Foundation"
[   157.401]     compiled for 1.12.4, module version = 1.0.0
[   157.401]     Module class: X.Org Server Extension
[   157.401]     ABI class: X.Org Server Extension, version 6.0
[   157.401] (II) Loading extension MIT-SCREEN-SAVER
[   157.402] (II) Loading extension XFree86-VidModeExtension
[   157.402] (II) Loading extension XFree86-DGA
[   157.402] (II) Loading extension DPMS
[   157.402] (II) Loading extension XVideo
[   157.402] (II) Loading extension XVideo-MotionCompensation
[   157.402] (II) Loading extension X-Resource
[   157.402] (II) LoadModule: "dri2"
[   157.402] (II) Loading /usr/lib/xorg/modules/extensions/amd64/libdri2.so
[   157.402] (II) Module dri2: vendor="X.Org Foundation"
[   157.402]     compiled for 1.12.4, module version = 1.2.0
[   157.402]     ABI class: X.Org Server Extension, version 6.0
[   157.402] (II) LoadModule: "record"
[   157.402] (II) Loading /usr/lib/xorg/modules/extensions/amd64/librecord.so
[   157.402] (II) Module record: vendor="X.Org Foundation"
[   157.402]     compiled for 1.12.4, module version = 1.13.0
[   157.402]     Module class: X.Org Server Extension
[   157.402]     ABI class: X.Org Server Extension, version 6.0
[   157.402] (II) Loading extension RECORD
[   157.402] (II) LoadModule: "dri"
[   157.402] (II) Loading /usr/lib/xorg/modules/extensions/amd64/libdri.so
[   157.402] (II) Module dri: vendor="X.Org Foundation"
[   157.402]     compiled for 1.12.4, module version = 1.0.0
[   157.402]     ABI class: X.Org Server Extension, version 6.0
[   157.402] (II) LoadModule: "ia"
[   157.403] (II) Loading /usr/lib/xorg/modules/extensions/amd64/libia.so
[   157.403] (II) Module IANAME: vendor="X.Org Foundation"
[   157.403]     compiled for 1.12.4, module version = 1.0.0
[   157.403]     ABI class: X.Org Server Extension, version 6.0
[   157.403] (II) Loading extension SolarisIA
[   157.403] (II) LoadModule: "extmod"
[   157.403] (II) Loading /usr/lib/xorg/modules/extensions/amd64/libextmod.so
[   157.403] (II) Module extmod: vendor="X.Org Foundation"
[   157.403]     compiled for 1.12.4, module version = 1.0.0
[   157.403]     Module class: X.Org Server Extension
[   157.403]     ABI class: X.Org Server Extension, version 6.0
[   157.403] (II) Loading extension MIT-SCREEN-SAVER
[   157.403] (II) Loading extension XFree86-VidModeExtension
[   157.403] (II) Loading extension XFree86-DGA
[   157.403] (II) Loading extension DPMS
[   157.403] (II) Loading extension XVideo
[   157.403] (II) Loading extension XVideo-MotionCompensation
[   157.403] (II) Loading extension X-Resource
[   157.403] (II) LoadModule: "dbe"
[   157.403] (II) Loading /usr/lib/xorg/modules/extensions/amd64/libdbe.so
[   157.403] (II) Module dbe: vendor="X.Org Foundation"
[   157.403]     compiled for 1.12.4, module version = 1.0.0
[   157.403]     Module class: X.Org Server Extension
[   157.403]     ABI class: X.Org Server Extension, version 6.0
[   157.403] (II) Loading extension DOUBLE-BUFFER
[   157.403] (II) LoadModule: "glx"
[   157.404] (II) Loading /usr/lib/xorg/modules/extensions/amd64/libglx.so
[   157.404] (EE) Failed to load /usr/lib/xorg/modules/extensions/amd64/libglx.so: ld.so.1: Xorg: fatal: /usr/lib/xorg/modules/extensions/amd64/libglx.so: open failed: No such file or directory
[   157.404] (II) UnloadModule: "glx"
[   157.404] (II) Unloading glx
[   157.404] (EE) Failed to load module "glx" (loader failed, 7)
[   157.404] (II) LoadModule: "xtsol"
[   157.486] (WW) Warning, couldn't open module xtsol
[   157.486] (II) UnloadModule: "xtsol"
[   157.486] (II) Unloading xtsol
[   157.486] (EE) Failed to load module "xtsol" (module does not exist, 0)
[   157.486] (II) LoadModule: "intel"
[   157.486] (II) Loading /usr/lib/xorg/modules/drivers/amd64/intel_drv.so
[   157.509] (II) Module intel: vendor="X.Org Foundation"
[   157.509]     compiled for 1.12.4, module version = 2.99.917
[   157.509]     Module class: X.Org Video Driver
[   157.509]     ABI class: X.Org Video Driver, version 12.1
[   157.509] (II) intel: Driver for Intel(R) Integrated Graphics Chipsets:
    i810, i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G,
    915G, E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM,
    Pineview G, 965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33,
    GM45, 4 Series, G45/G43, Q45/Q43, G41, B43
[   157.510] (II) intel: Driver for Intel(R) HD Graphics: 2000-6000
[   157.510] (II) intel: Driver for Intel(R) Iris(TM) Graphics: 5100, 6100
[   157.510] (II) intel: Driver for Intel(R) Iris(TM) Pro Graphics: 5200, 6200, P6300
[   157.510] (--) using VT number 2

[   157.529] drmOpenDevice: node name is /dev/dri/card0
[   157.600] drmOpenDevice: open result is 11, (OK)
[   157.600] drmOpenByBusid: Searching for BusID pci:0000:00:02.0
[   157.600] drmOpenDevice: node name is /dev/dri/card0
[   157.600] drmOpenDevice: open result is 11, (OK)
[   157.600] drmOpenByBusid: drmOpenMinor returns 11
[   157.600] drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0
[   157.612] (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
[   157.612] (==) intel(0): Depth 24, (--) framebuffer bpp 32
[   157.612] (==) intel(0): RGB weight 888
[   157.612] (==) intel(0): Default visual is TrueColor
[   157.612] (**) intel(0): Option "NoAccel" "True"
[   157.612] (**) intel(0): Option "Tiling" "False"
[   157.612] (**) intel(0): Option "LinearFramebuffer" "True"
[   157.612] (**) intel(0): Option "XvMC" "True"
[   157.612] (**) intel(0): Option "FallbackDebug" "True"
[   157.612] (--) intel(0): Integrated Graphics Chipset: Intel(R) HD Graphics 3000
[   157.645] (**) intel(0): Disabling hardware acceleration.
[   157.645] (**) intel(0): Relaxed fencing enabled
[   157.645] (**) intel(0): Wait on SwapBuffers? enabled
[   157.645] (**) intel(0): Triple buffering? enabled
[   157.645] (**) intel(0): Framebuffer linear
[   157.645] (**) intel(0): Pixmaps linear
[   157.645] (**) intel(0): 3D buffers tiled
[   157.645] (**) intel(0): SwapBuffers wait enabled
[   157.645] (==) intel(0): video overlay key set to 0x101fe
[   157.667] (II) intel(0): Output VGA1 using monitor section Monitor0
[   157.667] (II) intel(0): Output HDMI1 has no monitor section
[   157.667] (II) intel(0): Output DP1 has no monitor section
[   157.667] (II) intel(0): Output HDMI2 has no monitor section
[   157.667] (II) intel(0): Output DP2 has no monitor section
[   157.680] (II) intel(0): EDID for output VGA1
[   157.680] (II) intel(0): Manufacturer: SUN  Model: 58c  Serial#: 43209293
[   157.680] (II) intel(0): Year: 2004  Week: 34
[   157.680] (II) intel(0): EDID Version: 1.3
[   157.680] (II) intel(0): Analog Display Input,  Input Voltage Level: 0.700/0.700 V
[   157.680] (II) intel(0): Sync:  Separate  Composite
[   157.680] (II) intel(0): Max Image Size [cm]: horiz.: 38  vert.: 30
[   157.680] (II) intel(0): Gamma: 2.20
[   157.681] (II) intel(0): DPMS capabilities: StandBy Suspend Off; RGB/Color Display
[   157.681] (II) intel(0): First detailed timing is preferred mode
[   157.681] (II) intel(0): GTF timings supported
[   157.681] (II) intel(0): redX: 0.640 redY: 0.330   greenX: 0.300 greenY: 0.600
[   157.681] (II) intel(0): blueX: 0.150 blueY: 0.066   whiteX: 0.313 whiteY: 0.328
[   157.681] (II) intel(0): Supported established timings:
[   157.681] (II) intel(0): 720x400 at 70Hz
[   157.681] (II) intel(0): 640x480 at 60Hz
[   157.681] (II) intel(0): 640x480 at 67Hz
[   157.681] (II) intel(0): 640x480 at 72Hz
[   157.681] (II) intel(0): 640x480 at 75Hz
[   157.681] (II) intel(0): 800x600 at 56Hz
[   157.681] (II) intel(0): 800x600 at 60Hz
[   157.681] (II) intel(0): 800x600 at 72Hz
[   157.681] (II) intel(0): 800x600 at 75Hz
[   157.681] (II) intel(0): 832x624 at 75Hz
[   157.681] (II) intel(0): 1024x768 at 60Hz
[   157.681] (II) intel(0): 1024x768 at 70Hz
[   157.681] (II) intel(0): 1024x768 at 75Hz
[   157.681] (II) intel(0): 1280x1024 at 75Hz
[   157.681] (II) intel(0): Manufacturer's mask: 0
[   157.681] (II) intel(0): Supported standard timings:
[   157.681] (II) intel(0): #0: hsize: 1280  vsize 1024  refresh: 60  vid: 32897
[   157.681] (II) intel(0): #1: hsize: 1280  vsize 1024  refresh: 76  vid: 36993
[   157.681] (II) intel(0): #2: hsize: 1152  vsize 921  refresh: 66  vid: 34417
[   157.681] (II) intel(0): #3: hsize: 1280  vsize 1024  refresh: 75  vid: 36737
[   157.681] (II) intel(0): Supported detailed timing:
[   157.681] (II) intel(0): clock: 108.0 MHz   Image Size:  380 x 300 mm
[   157.681] (II) intel(0): h_active: 1280  h_sync: 1328  h_sync_end 1440 h_blank_end 1688 h_border: 0
[   157.681] (II) intel(0): v_active: 1024  v_sync: 1025  v_sync_end 1028 v_blanking: 1066 v_border: 0
[   157.681] (II) intel(0): Ranges: V min: 56 V max: 75 Hz, H min: 30 H max: 81 kHz, PixClock max 145 MHz
[   157.681] (II) intel(0): Monitor name: GH19PS
[   157.681] (II) intel(0): Serial No: 0434MR0659
[   157.681] (II) intel(0): EDID (in hex):
[   157.681] (II) intel(0):     00ffffffffffff004eae8c054d529302
[   157.681] (II) intel(0):     220e01036c261e78ebee84a3544c9926
[   157.681] (II) intel(0):     115054bfef00818081907186818f0101
[   157.681] (II) intel(0):     010101010101302a009851002a403070
[   157.681] (II) intel(0):     13007c2c11000014000000fd00384b1e
[   157.681] (II) intel(0):     510e000a202020202020000000fc0047
[   157.681] (II) intel(0):     48313950530a202020202020000000ff
[   157.681] (II) intel(0):     00303433344d52303635390a20200029
[   157.681] (II) intel(0): EDID vendor "SUN", prod id 1420
[   157.681] (II) intel(0): DDCModeFromDetailedTiming: 1280x1024 Warning: We only handle separate sync.
[   157.682] (II) intel(0): Using EDID range info for horizontal sync
[   157.682] (II) intel(0): Using EDID range info for vertical refresh
[   157.682] (II) intel(0): Printing DDC gathered Modelines:
[   157.682] (II) intel(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 -hsync +vsync (64.0 kHz eP)
[   157.682] (II) intel(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[   157.682] (II) intel(0): Modeline "800x600"x0.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
[   157.682] (II) intel(0): Modeline "640x480"x0.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
[   157.682] (II) intel(0): Modeline "640x480"x0.0   31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz e)
[   157.682] (II) intel(0): Modeline "640x480"x0.0   30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz e)
[   157.682] (II) intel(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[   157.682] (II) intel(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[   157.682] (II) intel(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
[   157.682] (II) intel(0): Modeline "1024x768"x0.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
[   157.682] (II) intel(0): Modeline "1024x768"x0.0   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz e)
[   157.682] (II) intel(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[   157.682] (II) intel(0): Modeline "832x624"x0.0   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz e)
[   157.682] (II) intel(0): Modeline "800x600"x0.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
[   157.682] (II) intel(0): Modeline "800x600"x0.0   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz e)
[   157.682] (II) intel(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[   157.682] (II) intel(0): Modeline "1280x1024"x76.0  141.82  1280 1376 1512 1744  1024 1025 1028 1070 -hsync +vsync (81.3 kHz e)
[   157.682] (II) intel(0): Modeline "1152x921"x66.0   97.02  1152 1224 1344 1536  921 922 925 957 -hsync +vsync (63.2 kHz e)
[   157.682] (II) intel(0): Printing probed modes for output VGA1
[   157.682] (II) intel(0): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 -hsync +vsync (64.0 kHz eP)
[   157.682] (II) intel(0): Modeline "1280x1024"x76.0  141.81  1280 1376 1512 1744  1024 1025 1028 1070 -hsync +vsync (81.3 kHz)
[   157.682] (II) intel(0): Modeline "1280x1024"x75.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
[   157.682] (II) intel(0): Modeline "1280x960"x60.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz e)
[   157.682] (II) intel(0): Modeline "1152x921"x66.0   97.01  1152 1224 1344 1536  921 922 925 957 -hsync +vsync (63.2 kHz)
[   157.682] (II) intel(0): Modeline "1280x800"x74.9  106.50  1280 1360 1488 1696  800 803 809 838 -hsync +vsync (62.8 kHz e)
[   157.682] (II) intel(0): Modeline "1280x800"x59.8   83.50  1280 1352 1480 1680  800 803 809 831 +hsync -vsync (49.7 kHz e)
[   157.682] (II) intel(0): Modeline "1152x864"x75.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
[   157.682] (II) intel(0): Modeline "1280x768"x74.9  102.25  1280 1360 1488 1696  768 771 778 805 +hsync -vsync (60.3 kHz e)
[   157.682] (II) intel(0): Modeline "1280x768"x59.9   79.50  1280 1344 1472 1664  768 771 778 798 -hsync +vsync (47.8 kHz e)
[   157.682] (II) intel(0): Modeline "1024x768"x75.1   78.80  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.1 kHz e)
[   157.682] (II) intel(0): Modeline "1024x768"x70.1   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz e)
[   157.682] (II) intel(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[   157.682] (II) intel(0): Modeline "1024x576"x60.0   46.97  1024 1064 1168 1312  576 577 580 597 -hsync +vsync (35.8 kHz)
[   157.682] (II) intel(0): Modeline "832x624"x74.6   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz e)
[   157.682] (II) intel(0): Modeline "800x600"x72.2   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz e)
[   157.682] (II) intel(0): Modeline "800x600"x75.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
[   157.682] (II) intel(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[   157.682] (II) intel(0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
[   157.682] (II) intel(0): Modeline "848x480"x60.0   33.75  848 864 976 1088  480 486 494 517 +hsync +vsync (31.0 kHz e)
[   157.682] (II) intel(0): Modeline "640x480"x75.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
[   157.682] (II) intel(0): Modeline "640x480"x72.8   31.50  640 664 704 832  480 489 491 520 -hsync -vsync (37.9 kHz e)
[   157.682] (II) intel(0): Modeline "640x480"x66.7   30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz e)
[   157.682] (II) intel(0): Modeline "640x480"x60.0   25.20  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[   157.682] (II) intel(0): Modeline "720x400"x70.1   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[   157.683] (II) intel(0): EDID for output HDMI1
[   157.683] (II) intel(0): EDID for output DP1
[   157.683] (II) intel(0): EDID for output HDMI2
[   157.683] (II) intel(0): EDID for output DP2
[   157.683] (II) intel(0): Output VGA1 connected
[   157.683] (II) intel(0): Output HDMI1 disconnected
[   157.683] (II) intel(0): Output DP1 disconnected
[   157.683] (II) intel(0): Output HDMI2 disconnected
[   157.683] (II) intel(0): Output DP2 disconnected
[   157.683] (II) intel(0): Using exact sizes for initial modes
[   157.683] (II) intel(0): Output VGA1 using initial mode 1280x1024
[   157.683] (II) intel(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
[   157.683] (II) intel(0): Kernel page flipping support detected, enabling
[   157.683] (**) intel(0): Display dimensions: (380, 300) mm
[   157.683] (**) intel(0): DPI set to (85, 86)
[   157.683] (II) Loading sub module "fb"
[   157.683] (II) LoadModule: "fb"
[   157.684] (II) Loading /usr/lib/xorg/modules/amd64/libfb.so
[   157.716] (II) Module fb: vendor="X.Org Foundation"
[   157.716]     compiled for 1.12.4, module version = 1.0.0
[   157.716]     ABI class: X.Org ANSI C Emulation, version 0.4
[   157.716] (II) Loading sub module "dri2"
[   157.716] (II) LoadModule: "dri2"
[   157.716] (II) Loading /usr/lib/xorg/modules/extensions/amd64/libdri2.so
[   157.716] (II) Module dri2: vendor="X.Org Foundation"
[   157.716]     compiled for 1.12.4, module version = 1.2.0
[   157.716]     ABI class: X.Org Server Extension, version 6.0
[   157.716] (==) Depth 24 pixmap format is 32 bpp
[   157.716] (EE) intel(0): Couldn't allocate initial framebuffer.
[   157.716] 
Fatal server error:
[   157.716] AddScreen/ScreenInit failed for driver 0
[   157.716] 
[   157.716] 
Please consult the Project OpenIndiana support 
     at http://openindiana.org
 for help. 
[   157.717] Please also check the log file at "/var/log/Xorg.0.log" for additional information.
[   157.717] 
[   157.736] Server terminated with error (1). Closing log file.



-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://openindiana.org/pipermail/oi-dev/attachments/20151218/05e95601/attachment-0001.html>


More information about the oi-dev mailing list