LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 03-21-2007, 12:23 PM   #1
wastelander42
LQ Newbie
 
Registered: Jun 2004
Distribution: Slackware 11.0
Posts: 9

Rep: Reputation: 0
No X with Intel 855 on fresh install of CURRENT


I just did a fresh install of Slackware Current and X isn't working. I type startx and I see some distorted images and then a blank screen. I have to Ctrl-Alt-Bkspace to exit.

My entire xlog was too big to post.

The relevant errors are
(EE) intel(0): detecting sil164
(EE) intel(0): Unable to read from DVOI2C_E Slave 112.
(EE) intel(0): Unable to read from DVOI2C_E Slave 236.
(EE) intel(0): I830 Vblank Pipe Setup Failed 0

Some possibly relevant warnings:
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(WW) intel(0): p1 out of range
(WW) intel(0): Bad V_BIOS checksum
(WW) intel(0): BIOS panel mode data doesn't match probed data, continuing with probed.
(WW) intel(0): Register 0x61200 (PP_STATUS) changed from 0xc0000008 to 0xd0000009
(WW) intel(0): PP_STATUS before: on, ready, sequencing idle
(WW) intel(0): PP_STATUS after: on, ready, sequencing on
(WW) intel(0): DRM version 1.6 older than required 1.7 for DRM memory manager. Disabling.
(WW) intel(0): p1 out of range
(WW) AIGLX: 3D driver claims to not support visual 0x23
(WW) AIGLX: 3D driver claims to not support visual 0x24
(WW) AIGLX: 3D driver claims to not support visual 0x25
(WW) AIGLX: 3D driver claims to not support visual 0x26
(WW) AIGLX: 3D driver claims to not support visual 0x27
(WW) AIGLX: 3D driver claims to not support visual 0x28
(WW) AIGLX: 3D driver claims to not support visual 0x29
(WW) AIGLX: 3D driver claims to not support visual 0x2a
(WW) AIGLX: 3D driver claims to not support visual 0x2b
(WW) AIGLX: 3D driver claims to not support visual 0x2c
(WW) AIGLX: 3D driver claims to not support visual 0x2d
(WW) AIGLX: 3D driver claims to not support visual 0x2e
(WW) AIGLX: 3D driver claims to not support visual 0x2f
(WW) AIGLX: 3D driver claims to not support visual 0x30
(WW) AIGLX: 3D driver claims to not support visual 0x31
(WW) AIGLX: 3D driver claims to not support visual 0x32
(WW) intel(0): Register 0x61200 (PP_STATUS) changed from 0xc0000008 to 0xd0000009
(WW) intel(0): PP_STATUS before: on, ready, sequencing idle
(WW) intel(0): PP_STATUS after: on, ready, sequencing on
(WW) intel(0): p1 out of range

my xorg.conf generated from Xorg -configure
Code:
Section "ServerLayout"
	Identifier     "X.org Configured"
	Screen      0  "Screen0" 0 0
	InputDevice    "Mouse0" "CorePointer"
	InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
	RgbPath      "/usr/share/X11/rgb"
	ModulePath   "/usr/lib/xorg/modules"
	FontPath     "/usr/share/fonts/TTF"
	FontPath     "/usr/share/fonts/OTF"
	FontPath     "/usr/share/fonts/Type1"
	FontPath     "/usr/share/fonts/misc"
	FontPath     "/usr/share/fonts/75dpi/:unscaled"
EndSection

Section "Module"
	Load  "glx"
	Load  "extmod"
	Load  "xtrap"
	Load  "record"
	Load  "GLcore"
	Load  "dbe"
	Load  "dri"
	Load  "freetype"
	Load  "type1"
EndSection

Section "InputDevice"
	Identifier  "Keyboard0"
	Driver      "kbd"
EndSection

Section "InputDevice"
	Identifier  "Mouse0"
	Driver      "mouse"
	Option	    "Protocol" "auto"
	Option	    "Device" "/dev/input/mice"
	Option	    "ZAxisMapping" "4 5 6 7"
EndSection

Section "Monitor"
	#DisplaySize	  300   230	# mm
	Identifier   "Monitor0"
	VendorName   "SEC"
	ModelName    "4358"
EndSection

Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
        ### [arg]: arg optional
        #Option     "NoAccel"            	# [<bool>]
        #Option     "SWcursor"           	# [<bool>]
        #Option     "ColorKey"           	# <i>
        #Option     "CacheLines"         	# <i>
        #Option     "Dac6Bit"            	# [<bool>]
        #Option     "DRI"                	# [<bool>]
        #Option     "NoDDC"              	# [<bool>]
        #Option     "ShowCache"          	# [<bool>]
        #Option     "XvMCSurfaces"       	# <i>
        #Option     "PageFlip"           	# [<bool>]
	Identifier  "Card0"
	Driver      "intel"
	VendorName  "Intel Corporation"
	BoardName   "82852/855GM Integrated Graphics Device"
	BusID       "PCI:0:2:0"
EndSection

Section "Screen"
	Identifier "Screen0"
	Device     "Card0"
	Monitor    "Monitor0"
        DefaultDepth 24
	SubSection "Display"
		Viewport   0 0
		Depth     1
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     4
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     8
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     15
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     16
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     24
	EndSubSection
EndSection
Agpgart detects my card on startup.
I've tried using the i810 driver with the same result and using the default xorg.conf for Slackware (adjusting the device lines) to no avail and all of these methods have worked before.

Anyone else had problems?
Thanks in advance for any help.

Last edited by wastelander42; 03-21-2007 at 12:29 PM.
 
Old 03-21-2007, 01:14 PM   #2
GrapefruiTgirl
LQ Guru
 
Registered: Dec 2006
Location: underground
Distribution: Slackware64
Posts: 7,594

Rep: Reputation: 556Reputation: 556Reputation: 556Reputation: 556Reputation: 556Reputation: 556
I'm a bit confused. Is this a plug-in card, or an onboard card? It appears to be onboard, but please clarify that. I have the i810 device as an onboard device, and use(d) the i810 driver for it, but I'm not sure if it is capable of anything fancy, like GLX, 3D stuff, and particularly anything AGP. I have a plug-in AGP card.
Might help to put in the HorizSync, VertRefresh values, as well as adding some resolutions to the Screen section. I say this because maybe probing is failing and no usable configuration is being found?.
 
Old 03-21-2007, 01:32 PM   #3
wastelander42
LQ Newbie
 
Registered: Jun 2004
Distribution: Slackware 11.0
Posts: 9

Original Poster
Rep: Reputation: 0
Solved

Thanks for the advice, I figured it out.

For the record:
1. Xorg -configure generated an xorg.conf file that used the intel driver.
2. This is the configuration that failed.
3. I was reading on the freedesktop.org mailing lists that the intel driver can crash and leave the graphics engine in an unusable state until reboot.
4. Therefore all the fixes I was trying were destined to fail.
5. After reboot I chose the i810 driver, set the default depth and mode settings in xorg.conf like suggested and everything worked.

Thanks again for the help.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Can't get 1024x768 with intel 855 chipset tea of evil Linux - Laptop and Netbook 7 02-05-2007 01:59 PM
fresh install 10.2 or current? bogey Slackware 5 03-24-2006 09:44 PM
Intel 855 TV out almost working maltsi Linux - Hardware 1 12-07-2005 10:22 PM
INTEL 855 Chipset thebover Linux - Hardware 0 10-20-2004 11:05 AM
Upgrading Kernel from fresh install of 9.1 to Current sganarelle Slackware 10 05-17-2004 10:52 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 07:11 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration