xserver-xorg-video-intel: Changes to 'upstream-experimental'

2012-08-08 Thread Timo Aaltonen
 .gitignore|1 
 NEWS  |   29 
 configure.ac  |3 
 src/brw_defines.h |7 
 src/brw_structs.h |6 
 src/i965_3d.c |7 
 src/i965_reg.h|4 
 src/i965_render.c |   16 
 src/i965_video.c  |   24 
 src/intel_dri.c   |   29 
 src/intel_driver.c|   24 
 src/intel_driver.h|8 
 src/intel_module.c|   17 
 src/intel_options.c   |1 
 src/intel_options.h   |1 
 src/legacy/i810/i810_driver.c |2 
 src/sna/Makefile.am   |4 
 src/sna/brw/Makefile.am   |   59 +
 src/sna/brw/brw.h |   17 
 src/sna/brw/brw_disasm.c  | 1101 
 src/sna/brw/brw_eu.c  |  150 ++
 src/sna/brw/brw_eu.h  | 2266 ++
 src/sna/brw/brw_eu_debug.c|   95 +
 src/sna/brw/brw_eu_emit.c | 2002 +
 src/sna/brw/brw_eu_util.c |  126 ++
 src/sna/brw/brw_sf.c  |   54 +
 src/sna/brw/brw_test.c|   60 +
 src/sna/brw/brw_test.h|   46 
 src/sna/brw/brw_test_gen4.c   |  199 +++
 src/sna/brw/brw_test_gen5.c   |  208 +++
 src/sna/brw/brw_test_gen6.c   |  209 +++
 src/sna/brw/brw_test_gen7.c   |  191 +++
 src/sna/brw/brw_wm.c  |  681 
 src/sna/gen4_render.c |  409 ++-
 src/sna/gen4_render.h |   13 
 src/sna/gen5_render.c |  249 +---
 src/sna/gen5_render.h |   13 
 src/sna/gen6_render.c |  471 
 src/sna/gen6_render.h |   32 
 src/sna/gen7_render.c |  510 -
 src/sna/gen7_render.h |   15 
 src/sna/kgem.c|   21 
 src/sna/sna.h |   64 +
 src/sna/sna_accel.c   |  120 --
 src/sna/sna_composite.c   |   87 +
 src/sna/sna_display.c |   17 
 src/sna/sna_driver.c  |   18 
 src/sna/sna_glyphs.c  |6 
 src/sna/sna_render.h  |   42 
 src/sna/sna_stream.c  |   46 
 50 files changed, 8574 insertions(+), 1206 deletions(-)

New commits:
commit 5833ef173a01afb710acf10e806b83c5ca6efc09
Author: Chris Wilson ch...@chris-wilson.co.uk
Date:   Sat Aug 4 09:31:41 2012 +0100

2.20.3 release

Signed-off-by: Chris Wilson ch...@chris-wilson.co.uk

diff --git a/NEWS b/NEWS
index 7e267a6..5a9c495 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,32 @@
+Release 2.20.3 (2012-08-04)
+===
+Just a minor bugfix for gen4 chipsets (965gm, gm45 and friends) that
+crept into 2.20.2. As an added bonus, the pessimistic workaround for a
+GPU hang on gen4 has been relaxed and the shaders have been overhauled
+which should pave the way to eliminating the last of the uncommon CPU
+operations, along with immediately realising a small perforamnce
+improvement.
+
+Bugs fixed since 2.20.2:
+
+ * Update DPMS bookkeeping after modeset
+   https://bugs.freedesktop.org/show_bug.cgi?id=52142
+
+ * Avoid overlapping gpu/cpu damage after ignoring cpu damage in the
+   consideration of placement for the operation.
+
+ * Enable acceleration by default on 830gm/845g. The GMCH on this pair
+   of chipsets is notoriously incoherent, so the GPU is almost certainly
+   going to hang at some point, though unlikely to hang the system and
+   should automatically disable acceleration (and thence behave
+   identically as if the acceleration was disabled from the start).
+   Option NoAccel can be used to disable all 2D acceleration and
+   Option DRI can be used to disable all 3D acceleration.
+   https://bugs.freedesktop.org/show_bug.cgi?id=52624
+
+ * Fix vertex bookkeeping for gen4 that was causing corruption in the
+   command stream.
+
 Release 2.20.2 (2012-07-27)
 ===
 For the last 9 months, since 2.16.901, we have been shipping a driver that
diff --git a/configure.ac b/configure.ac
index 2a8d08b..7ffbb75 100644
--- a/configure.ac
+++ b/configure.ac
@@ -23,7 +23,7 @@
 # Initialize Autoconf
 AC_PREREQ([2.60])
 AC_INIT([xf86-video-intel],
-[2.20.2],
+[2.20.3],
 [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],
 [xf86-video-intel])
 AC_CONFIG_SRCDIR([Makefile.am])

commit 036b90f099af21e60fb4c3684616daf1927f705e
Author: Chris Wilson ch...@chris-wilson.co.uk
Date:   Fri Aug 3 21:41:59 2012 +0100

sna/gen7: Correct number of texture coordinates used for video

Fixes regresion from

commit 33c028f8be829caa4fdb9416ff177dc71f24b68e
Author: Chris Wilson ch...@chris-wilson.co.uk
Date:   Wed Aug 1 01:17:50 2012 +0100

sna/gen6+: Reduce floats-per-vertex for spans

Signed-off-by: Chris Wilson ch...@chris-wilson.co.uk

diff --git a/src/sna/gen7_render.c b/src/sna/gen7_render.c
index b4a9223..9ef5e17 100644
--- a/src/sna/gen7_render.c
+++ b/src/sna/gen7_render.c
@@ -2086,7 +2086,7 @@ gen7_render_video(struct sna *sna,
 

xserver-xorg-video-intel: Changes to 'debian-experimental'

2012-08-08 Thread Timo Aaltonen
 .gitignore|1 
 ChangeLog |  493 +
 NEWS  |   29 
 configure.ac  |3 
 debian/changelog  |6 
 src/brw_defines.h |7 
 src/brw_structs.h |6 
 src/i965_3d.c |7 
 src/i965_reg.h|4 
 src/i965_render.c |   16 
 src/i965_video.c  |   24 
 src/intel_dri.c   |   29 
 src/intel_driver.c|   24 
 src/intel_driver.h|8 
 src/intel_module.c|   17 
 src/intel_options.c   |1 
 src/intel_options.h   |1 
 src/legacy/i810/i810_driver.c |2 
 src/sna/Makefile.am   |4 
 src/sna/brw/Makefile.am   |   59 +
 src/sna/brw/brw.h |   17 
 src/sna/brw/brw_disasm.c  | 1101 
 src/sna/brw/brw_eu.c  |  150 ++
 src/sna/brw/brw_eu.h  | 2266 ++
 src/sna/brw/brw_eu_debug.c|   95 +
 src/sna/brw/brw_eu_emit.c | 2002 +
 src/sna/brw/brw_eu_util.c |  126 ++
 src/sna/brw/brw_sf.c  |   54 +
 src/sna/brw/brw_test.c|   60 +
 src/sna/brw/brw_test.h|   46 
 src/sna/brw/brw_test_gen4.c   |  199 +++
 src/sna/brw/brw_test_gen5.c   |  208 +++
 src/sna/brw/brw_test_gen6.c   |  209 +++
 src/sna/brw/brw_test_gen7.c   |  191 +++
 src/sna/brw/brw_wm.c  |  681 
 src/sna/gen4_render.c |  409 ++-
 src/sna/gen4_render.h |   13 
 src/sna/gen5_render.c |  249 +---
 src/sna/gen5_render.h |   13 
 src/sna/gen6_render.c |  471 
 src/sna/gen6_render.h |   32 
 src/sna/gen7_render.c |  510 -
 src/sna/gen7_render.h |   15 
 src/sna/kgem.c|   21 
 src/sna/sna.h |   64 +
 src/sna/sna_accel.c   |  120 --
 src/sna/sna_composite.c   |   87 +
 src/sna/sna_display.c |   17 
 src/sna/sna_driver.c  |   18 
 src/sna/sna_glyphs.c  |6 
 src/sna/sna_render.h  |   42 
 src/sna/sna_stream.c  |   46 
 52 files changed, 9073 insertions(+), 1206 deletions(-)

New commits:
commit 3ca6b61c818c4c4a4a2e519cdb91aa2000d00975
Author: Timo Aaltonen tjaal...@ubuntu.com
Date:   Wed Aug 8 09:46:23 2012 +0300

update the changelogs

diff --git a/ChangeLog b/ChangeLog
index 588e46d..8466e7d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,496 @@
+commit 5833ef173a01afb710acf10e806b83c5ca6efc09
+Author: Chris Wilson ch...@chris-wilson.co.uk
+Date:   Sat Aug 4 09:31:41 2012 +0100
+
+2.20.3 release
+
+Signed-off-by: Chris Wilson ch...@chris-wilson.co.uk
+
+commit 036b90f099af21e60fb4c3684616daf1927f705e
+Author: Chris Wilson ch...@chris-wilson.co.uk
+Date:   Fri Aug 3 21:41:59 2012 +0100
+
+sna/gen7: Correct number of texture coordinates used for video
+
+Fixes regresion from
+
+commit 33c028f8be829caa4fdb9416ff177dc71f24b68e
+Author: Chris Wilson ch...@chris-wilson.co.uk
+Date:   Wed Aug 1 01:17:50 2012 +0100
+
+sna/gen6+: Reduce floats-per-vertex for spans
+
+Signed-off-by: Chris Wilson ch...@chris-wilson.co.uk
+
+commit 05dcc5f1699ba90fc14c50882e8d4be89bc4a4f9
+Author: Chris Wilson ch...@chris-wilson.co.uk
+Date:   Fri Aug 3 15:08:45 2012 +0100
+
+Pass the chipset info through driverPrivate rather than a global pointer
+
+Signed-off-by: Chris Wilson ch...@chris-wilson.co.uk
+
+commit 2b3f4ca33a00440a7005fef69099f8dbaddbbad1
+Author: Chris Wilson ch...@chris-wilson.co.uk
+Date:   Fri Aug 3 14:27:51 2012 +0100
+
+Unexport intel_chipsets
+
+Only used by the core module code, so make it static.
+
+Signed-off-by: Chris Wilson ch...@chris-wilson.co.uk
+
+commit 5ff749727d3590368806508ac0d0fa8efd1d1d51
+Author: Chris Wilson ch...@chris-wilson.co.uk
+Date:   Wed Jul 25 22:21:29 2012 +0100
+
+sna/gen7: Add constant variations and hookup a basic GT descriptor for 
Haswell
+
+Signed-off-by: Chris Wilson ch...@chris-wilson.co.uk
+
+commit cd028cad3dc9b059a3d83b818d581f86e16ec317
+Author: Chris Wilson ch...@chris-wilson.co.uk
+Date:   Thu Jul 26 13:17:11 2012 +0100
+
+sna: Limit the batch size on all gen7 variants
+
+Seems the limit on the surface state size is common across the family
+
+Signed-off-by: Chris Wilson ch...@chris-wilson.co.uk
+
+commit 4cd9ec9d404d934268952a1058afa07741b09efe
+Author: Gwenole Beauchesne gwenole.beauche...@intel.com
+Date:   Fri May 4 18:26:46 2012 +0200
+
+uxa: fix 3DSTATE_PS to fill in number of samples for Haswell
+
+The sample mask value must match what is set for 3DSTATE_SAMPLE_MASK,
+through gen6_upload_invariant_states().
+
+Signed-off-by: Gwenole Beauchesne gwenole.beauche...@intel.com
+Reviewed-by: Kenneth Graunke kenn...@whitecape.org
+
+commit 

Bug#683796: xserver-xorg-video-radeon: No 3D acceleration in iBook2 powerpc

2012-08-08 Thread Dan DeVoto
--- On Tue, 8/7/12, Michel Dänzer daen...@debian.org wrote:
 
  Also, adding video=radeonfb:off did nothing but make my
 screen darker
  and disable my brightness hotkeys, and there was no
 change in the
  error messages, so I removed the line.
 
 Note that I meant using video=radeonfb:off instead of 
 radeon.modeset=0, to allow radeon KMS to initialize.
 However, note that
 KMS doesn't support suspend/resume on PowerPC laptops yet.
 

Using video=radeonfb:off instead of radeon.modeset=0 resulted in a black 
screen, even when switching to a console.  I had to boot from an install cd in 
rescue mode to revert.  Using video=ofonly resulted in the same thing.  I also 
tried video=offb:off and booted to a GUI, but there was still no hardware 
acceleration.  If it's at all relevant, here is the output of cat /proc/fb 
(after removing yaboot parameters):

0 ATI Radeon 4c59

Is there anything else I can try?

Thanks,

Dan


--
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/1344414606.26100.yahoomailclas...@web140806.mail.bf1.yahoo.com



xserver-xorg-video-intel: Changes to 'ubuntu'

2012-08-08 Thread Timo Aaltonen
 debian/changelog |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 486fc7b8b6e7f2782292f8606400100d872123e1
Author: Timo Aaltonen Timo Aaltonen tjaal...@cc.hut.fi
Date:   Wed Aug 1 18:27:01 2012 +0300

release to quantal-proposed

diff --git a/debian/changelog b/debian/changelog
index 2c5b35c..e3916e8 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xserver-xorg-video-intel (2:2.20.2-1ubuntu1) UNRELEASED; urgency=low
+xserver-xorg-video-intel (2:2.20.2-1ubuntu1) quantal-proposed; urgency=low
 
   * New upstream release (2.20.2)
   * Drop upstreamed 101_copy-fb.patch


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1sz1xg-0005yi...@vasks.debian.org



xserver-xorg-video-intel: Changes to 'ubuntu'

2012-08-08 Thread Timo Aaltonen
 .gitignore|1 
 ChangeLog |  493 +
 NEWS  |   29 
 configure.ac  |3 
 debian/changelog  |   13 
 src/brw_defines.h |7 
 src/brw_structs.h |6 
 src/i965_3d.c |7 
 src/i965_reg.h|4 
 src/i965_render.c |   16 
 src/i965_video.c  |   24 
 src/intel_dri.c   |   29 
 src/intel_driver.c|   24 
 src/intel_driver.h|8 
 src/intel_module.c|   17 
 src/intel_options.c   |1 
 src/intel_options.h   |1 
 src/legacy/i810/i810_driver.c |2 
 src/sna/Makefile.am   |4 
 src/sna/brw/Makefile.am   |   59 +
 src/sna/brw/brw.h |   17 
 src/sna/brw/brw_disasm.c  | 1101 
 src/sna/brw/brw_eu.c  |  150 ++
 src/sna/brw/brw_eu.h  | 2266 ++
 src/sna/brw/brw_eu_debug.c|   95 +
 src/sna/brw/brw_eu_emit.c | 2002 +
 src/sna/brw/brw_eu_util.c |  126 ++
 src/sna/brw/brw_sf.c  |   54 +
 src/sna/brw/brw_test.c|   60 +
 src/sna/brw/brw_test.h|   46 
 src/sna/brw/brw_test_gen4.c   |  199 +++
 src/sna/brw/brw_test_gen5.c   |  208 +++
 src/sna/brw/brw_test_gen6.c   |  209 +++
 src/sna/brw/brw_test_gen7.c   |  191 +++
 src/sna/brw/brw_wm.c  |  681 
 src/sna/gen4_render.c |  409 ++-
 src/sna/gen4_render.h |   13 
 src/sna/gen5_render.c |  249 +---
 src/sna/gen5_render.h |   13 
 src/sna/gen6_render.c |  471 
 src/sna/gen6_render.h |   32 
 src/sna/gen7_render.c |  510 -
 src/sna/gen7_render.h |   15 
 src/sna/kgem.c|   21 
 src/sna/sna.h |   64 +
 src/sna/sna_accel.c   |  120 --
 src/sna/sna_composite.c   |   87 +
 src/sna/sna_display.c |   17 
 src/sna/sna_driver.c  |   18 
 src/sna/sna_glyphs.c  |6 
 src/sna/sna_render.h  |   42 
 src/sna/sna_stream.c  |   46 
 52 files changed, 9079 insertions(+), 1207 deletions(-)

New commits:
commit 7aaf20d53215a943b846b3499a3e60fb07b09777
Author: Timo Aaltonen tjaal...@ubuntu.com
Date:   Wed Aug 8 12:05:57 2012 +0300

push to quantal-proposed

diff --git a/debian/changelog b/debian/changelog
index 8462da8..6d72f19 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,8 @@
-xserver-xorg-video-intel (2:2.20.3-0ubuntu1) UNRELEASED; urgency=low
+xserver-xorg-video-intel (2:2.20.3-0ubuntu1) quantal-proposed; urgency=low
 
   * Merge from unreleased debian experimental git.
 
- -- Timo Aaltonen tjaal...@ubuntu.com  Wed, 08 Aug 2012 12:03:12 +0300
+ -- Timo Aaltonen tjaal...@ubuntu.com  Wed, 08 Aug 2012 12:03:53 +0300
 
 xserver-xorg-video-intel (2:2.20.3-1) UNRELEASED; urgency=low
 

commit e000c85e9e5c1f78a4dbd6d393a012b4f82d3c1d
Author: Timo Aaltonen tjaal...@ubuntu.com
Date:   Wed Aug 8 12:03:51 2012 +0300

update the changelog

diff --git a/debian/changelog b/debian/changelog
index c64fa5a..8462da8 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+xserver-xorg-video-intel (2:2.20.3-0ubuntu1) UNRELEASED; urgency=low
+
+  * Merge from unreleased debian experimental git.
+
+ -- Timo Aaltonen tjaal...@ubuntu.com  Wed, 08 Aug 2012 12:03:12 +0300
+
 xserver-xorg-video-intel (2:2.20.3-1) UNRELEASED; urgency=low
 
   * New upstream release.

commit 3ca6b61c818c4c4a4a2e519cdb91aa2000d00975
Author: Timo Aaltonen tjaal...@ubuntu.com
Date:   Wed Aug 8 09:46:23 2012 +0300

update the changelogs

diff --git a/ChangeLog b/ChangeLog
index 588e46d..8466e7d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,496 @@
+commit 5833ef173a01afb710acf10e806b83c5ca6efc09
+Author: Chris Wilson ch...@chris-wilson.co.uk
+Date:   Sat Aug 4 09:31:41 2012 +0100
+
+2.20.3 release
+
+Signed-off-by: Chris Wilson ch...@chris-wilson.co.uk
+
+commit 036b90f099af21e60fb4c3684616daf1927f705e
+Author: Chris Wilson ch...@chris-wilson.co.uk
+Date:   Fri Aug 3 21:41:59 2012 +0100
+
+sna/gen7: Correct number of texture coordinates used for video
+
+Fixes regresion from
+
+commit 33c028f8be829caa4fdb9416ff177dc71f24b68e
+Author: Chris Wilson ch...@chris-wilson.co.uk
+Date:   Wed Aug 1 01:17:50 2012 +0100
+
+sna/gen6+: Reduce floats-per-vertex for spans
+
+Signed-off-by: Chris Wilson ch...@chris-wilson.co.uk
+
+commit 05dcc5f1699ba90fc14c50882e8d4be89bc4a4f9
+Author: Chris Wilson ch...@chris-wilson.co.uk
+Date:   Fri Aug 3 15:08:45 2012 +0100
+
+Pass the chipset info through driverPrivate rather than a global pointer
+
+Signed-off-by: Chris Wilson ch...@chris-wilson.co.uk
+
+commit 2b3f4ca33a00440a7005fef69099f8dbaddbbad1
+Author: Chris Wilson ch...@chris-wilson.co.uk
+Date:   Fri Aug 3 14:27:51 2012 

Bug#683796: xserver-xorg-video-radeon: No 3D acceleration in iBook2 powerpc

2012-08-08 Thread Michel Dänzer
On Mit, 2012-08-08 at 01:30 -0700, Dan DeVoto wrote: 
 --- On Tue, 8/7/12, Michel Dänzer daen...@debian.org wrote:
  
   Also, adding video=radeonfb:off did nothing but make my
  screen darker
   and disable my brightness hotkeys, and there was no
  change in the
   error messages, so I removed the line.
  
  Note that I meant using video=radeonfb:off instead of 
  radeon.modeset=0, to allow radeon KMS to initialize.
 
 Using video=radeonfb:off instead of radeon.modeset=0 resulted in a
 black screen, even when switching to a console.

Can you get the corresponding dmesg output, e.g. via ssh or
from /var/log/kern.log?


 I had to boot from an install cd in rescue mode to revert.

Doesn't yaboot allow specifying kernel command line parameters at its
prompt, so you don't have to make them permanent for testing? Even if it
doesn't, you could use a separate testing entry in yaboot.conf.


-- 
Earthling Michel Dänzer   |   http://www.amd.com
Libre software enthusiast |  Debian, X and DRI developer


--
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/1344417745.17900.180.camel@thor.local



mesa: Changes to 'ubuntu-precise'

2012-08-08 Thread Timo Aaltonen
 debian/changelog |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit fb699882b82acd61e52b7b979343926b2bc61c90
Author: Timo Aaltonen tjaal...@ubuntu.com
Date:   Wed Aug 8 12:17:05 2012 +0300

release to precise-proposed

diff --git a/debian/changelog b/debian/changelog
index 54f8c9e..5bb082d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,9 @@
-mesa (8.0.3-0ubuntu0.2) UNRELEASED; urgency=low
+mesa (8.0.3-0ubuntu0.2) precise-proposed; urgency=low
 
   * Add 119_reduce_vm_thread_count_on_ivb_gt1.diff from upstream stable
 branch. (LP: #1031784)
 
- -- Timo Aaltonen tjaal...@ubuntu.com  Fri, 03 Aug 2012 09:46:32 +0300
+ -- Timo Aaltonen tjaal...@ubuntu.com  Wed, 08 Aug 2012 12:11:23 +0300
 
 mesa (8.0.3-0ubuntu0.1) precise-proposed; urgency=low
 


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1sz2o8-000720...@vasks.debian.org



xorg-server: Changes to 'ubuntu'

2012-08-08 Thread Maarten Lankhorst
 debian/changelog |   12 
 debian/patches/100_rethrow_signals.patch |  390 ---
 debian/patches/series|1 
 3 files changed, 10 insertions(+), 393 deletions(-)

New commits:
commit dcf056997a1efb0601552550613528611d628be4
Author: Maarten Lankhorst maarten.lankho...@canonical.com
Date:   Wed Aug 8 11:52:19 2012 +0200

Release to quantal, synced from quantal-proposed package.

diff --git a/debian/changelog b/debian/changelog
index bb4f3cc..1be628f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,5 +1,6 @@
-xorg-server (2:1.12.99.902-1) UNRELEASED; urgency=low
+xorg-server (2:1.12.99.902-0ubuntu1) quantal-proposed; urgency=low
 
+  [ Maarten Lankhorst ]
   * New upstream release snapshot (on the way to 1.13).
 - Fixes QT5 app segfaults (LP: #1015292)
   * Bump minimum required abi, randr, dri2 and gl protos.
@@ -13,7 +14,14 @@ xorg-server (2:1.12.99.902-1) UNRELEASED; urgency=low
 - 514-Xi-drop-forced-unpairing-when-changing-the-hierarchy.patch
 - 515-dix-disable-all-devices-before-shutdown.patch
 
- -- Maarten Lankhorst maarten.lankho...@canonical.com  Thu, 12 Jul 2012 
13:54:50 +0200
+  [ Christopher James Halse Rogers ]
+  * debian/patches/100_rethrow_signals.patch:
+- Drop, in favour of getting LightDM to pass -core to the server. This
+  upstream mechanism is significantly more reliable at dumping core in
+  my testing. We may later wish to improve this with some processing in
+  the apport hook.
+
+ -- Christopher James Halse Rogers r...@ubuntu.com  Wed, 25 Jul 2012 
16:54:16 +1000
 
 xorg-server (2:1.12.1.902-1ubuntu1) quantal-proposed; urgency=medium
 
diff --git a/debian/patches/100_rethrow_signals.patch 
b/debian/patches/100_rethrow_signals.patch
deleted file mode 100644
index f273fec..000
--- a/debian/patches/100_rethrow_signals.patch
+++ /dev/null
@@ -1,390 +0,0 @@
 a/hw/dmx/dmxinit.c
-+++ b/hw/dmx/dmxinit.c
-@@ -864,7 +864,7 @@
-  * We must ensure that backend and console state is restored in the
-  * event the server shutdown wasn't clean. */
- void
--AbortDDX(enum ExitCode error)
-+SigAbortDDX(int signo, enum ExitCode error)
- {
- int i;
- 
-@@ -884,6 +884,12 @@
- }
- #endif
- 
-+void
-+AbortDDX(enum ExitCode error)
-+{
-+SigAbortDDX(0, error);
-+}
-+
- /** This function is called in Xserver/dix/main.c from \a main() when
-  * dispatchException  DE_TERMINATE (which is the only way to exit the
-  * main loop without an interruption. */
 a/hw/kdrive/src/kdrive.c
-+++ b/hw/kdrive/src/kdrive.c
-@@ -222,7 +222,7 @@
- }
- 
- void
--AbortDDX(enum ExitCode error)
-+SigAbortDDX(int signo, enum ExitCode error)
- {
- KdDisableScreens();
- if (kdOsFuncs) {
-@@ -237,6 +237,11 @@
- OsAbort();
- }
- 
-+AbortDDX(enum ExitCode error)
-+{
-+SigAbortDDX(0, error);
-+}
-+
- void
- ddxGiveUp(enum ExitCode error)
- {
 a/hw/vfb/InitOutput.c
-+++ b/hw/vfb/InitOutput.c
-@@ -201,11 +201,17 @@
- }
- 
- void
--AbortDDX(enum ExitCode error)
-+SigAbortDDX(int signo, enum ExitCode error)
- {
- ddxGiveUp(error);
- }
- 
-+void
-+AbortDDX(enum ExitCode error)
-+{
-+SigAbortDDX(0, error);
-+}
-+
- #ifdef __APPLE__
- void
- DarwinHandleGUI(int argc, char *argv[])
 a/hw/xfree86/common/xf86Events.c
-+++ b/hw/xfree86/common/xf86Events.c
-@@ -348,6 +348,8 @@
- int
- xf86SigWrapper(int signo)
- {
-+static Bool beenhere = FALSE;
-+
- if ((signo == SIGILL)  xf86SigIllHandler) {
- (*xf86SigIllHandler) ();
- return 0;   /* continue */
 a/hw/xfree86/common/xf86Init.c
-+++ b/hw/xfree86/common/xf86Init.c
-@@ -1019,14 +1019,17 @@
- }
- 
- /*
-- * ddxGiveUp --
-+ * ddxSigGiveUp --
-  *  Device dependent cleanup. Called by by dix before normal server death.
-  *  For SYSV386 we must switch the terminal back to normal mode. No error-
-  *  checking here, since there should be restored as much as possible.
-+ *
-+ *  If a non-zero signo is passed, re-raise that signal rather than
-+ *  calling abort().
-  */
- 
- void
--ddxGiveUp(enum ExitCode error)
-+ddxSigGiveUp(int signo, enum ExitCode error)
- {
- int i;
- 
-@@ -1053,22 +1056,46 @@
- if (xorgHWOpenConsole)
- xf86CloseConsole();
- 
-+ErrorF( ddxSigGiveUp: Closing log\n);
-+
- xf86CloseLog(error);
- 
- /* If an unexpected signal was caught, dump a core for debugging */
--if (xf86Info.caughtSignal)
--OsAbort();
-+if (xf86Info.caughtSignal) {
-+if (signo != 0) {
-+raise(signo);
-+}
-+else {
-+OsAbort();
-+}
-+}
- }
- 
- /*
-- * AbortDDX --
-+ * ddxGiveUp --
-+ *  Device dependent cleanup. Called by by dix before normal server death.
-+ *  For SYSV386 we must switch the terminal back to normal mode. No error-
-+ *  checking here, since there should be restored as much as possible.
-+ */
-+
-+void
-+ddxGiveUp(enum ExitCode error)
-+{
-+ddxSigGiveUp(0, 

Bug#683796: xserver-xorg-video-radeon: No 3D acceleration in iBook2 powerpc

2012-08-08 Thread Michel Dänzer
On Mit, 2012-08-08 at 01:30 -0700, Dan DeVoto wrote: 
 --- On Tue, 8/7/12, Michel Dänzer daen...@debian.org wrote:
  
   Also, adding video=radeonfb:off did nothing but make my
  screen darker
   and disable my brightness hotkeys, and there was no
  change in the
   error messages, so I removed the line.
  
  Note that I meant using video=radeonfb:off instead of 
  radeon.modeset=0, to allow radeon KMS to initialize.
 
 Using video=radeonfb:off instead of radeon.modeset=0 resulted in a
 black screen, even when switching to a console.

BTW, does adding radeon.agpmode=-1 avoid the black screen problem?


-- 
Earthling Michel Dänzer   |   http://www.amd.com
Libre software enthusiast |  Debian, X and DRI developer


--
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/1344421960.17900.185.camel@thor.local



Bug#683796: xserver-xorg-video-radeon: No 3D acceleration in iBook2 powerpc

2012-08-08 Thread Dan DeVoto
--- On Wed, 8/8/12, Michel Dänzer daen...@debian.org wrote:
  
  Using video=radeonfb:off instead of radeon.modeset=0 resulted in a
  black screen, even when switching to a console.
 
 Can you get the corresponding dmesg output, e.g. via ssh or
 from /var/log/kern.log?


 Doesn't yaboot allow specifying kernel command line parameters at its
 prompt, so you don't have to make them permanent for testing?

Yes, you're correct.  Thanks for the timesaver.  Also, adding radeon.agpmode=-1 
made no difference.

Below is dmesg output with video=radeonfb:off in the kernel command line:

Aug  8 04:05:15 icebook kernel: imklog 5.8.11, log source = /proc/kmsg started.
Aug  8 04:05:15 icebook kernel: [0.00] Using PowerMac machine 
description
Aug  8 04:05:15 icebook kernel: [0.00] Cannot reserve gpages without 
hugetlb enabled
Aug  8 04:05:15 icebook kernel: [0.00] Total memory = 256MB; using 
512kB for hash table (at c7f8)
Aug  8 04:05:15 icebook kernel: [0.00] Initializing cgroup subsys cpuset
Aug  8 04:05:15 icebook kernel: [0.00] Initializing cgroup subsys cpu
Aug  8 04:05:15 icebook kernel: [0.00] Linux version 3.2.0-3-powerpc 
(Debian 3.2.21-3) (debian-ker...@lists.debian.org) (gcc version 4.6.3 (Debian 
4.6.3-8) ) #1 Thu Jun 28 10:24:24 UTC 2012
Aug  8 04:05:15 icebook kernel: [0.00] Found initrd at 
0xc140:0xc1ebe000
Aug  8 04:05:15 icebook kernel: [0.00] Found UniNorth memory controller 
 host bridge @ 0xf800 revision: 0xc0
Aug  8 04:05:15 icebook kernel: [0.00] Mapped at 0xff7c
Aug  8 04:05:15 icebook kernel: [0.00] Found a Pangea mac-io 
controller, rev: 0, mapped at 0xff74
Aug  8 04:05:15 icebook kernel: [0.00] Processor NAP mode on idle 
enabled.
Aug  8 04:05:15 icebook kernel: [0.00] PowerMac motherboard: iBook 2 
rev. 2
Aug  8 04:05:15 icebook kernel: [0.00] via-pmu: Server Mode is disabled
Aug  8 04:05:15 icebook kernel: [0.00] PMU driver v2 initialized for 
Core99, firmware: 0c
Aug  8 04:05:15 icebook kernel: [0.00] bootconsole [udbg0] enabled
Aug  8 04:05:15 icebook kernel: [0.00] Found UniNorth PCI host bridge 
at 0xf000. Firmware bus number: 0-0
Aug  8 04:05:15 icebook kernel: [0.00] PCI host bridge /pci@f000  
ranges:
Aug  8 04:05:15 icebook kernel: [0.00]  MEM 
0xf100..0xf1ff - 0xf100 
Aug  8 04:05:15 icebook kernel: [0.00]   IO 
0xf000..0xf07f - 0x
Aug  8 04:05:15 icebook kernel: [0.00]  MEM 
0x9000..0x9fff - 0x9000 
Aug  8 04:05:15 icebook kernel: [0.00] Found UniNorth PCI host bridge 
at 0xf200. Firmware bus number: 0-0
Aug  8 04:05:15 icebook kernel: [0.00] PCI host bridge /pci@f200 
(primary) ranges:
Aug  8 04:05:15 icebook kernel: [0.00]  MEM 
0xf300..0xf3ff - 0xf300 
Aug  8 04:05:15 icebook kernel: [0.00]   IO 
0xf200..0xf27f - 0x
Aug  8 04:05:15 icebook kernel: [0.00]  MEM 
0x8000..0x8fff - 0x8000 
Aug  8 04:05:15 icebook kernel: [0.00] Found UniNorth PCI host bridge 
at 0xf400. Firmware bus number: 0-0
Aug  8 04:05:15 icebook kernel: [0.00] PCI host bridge /pci@f400  
ranges:
Aug  8 04:05:15 icebook kernel: [0.00]  MEM 
0xf500..0xf5ff - 0xf500 
Aug  8 04:05:15 icebook kernel: [0.00]   IO 
0xf400..0xf47f - 0x
Aug  8 04:05:15 icebook kernel: [0.00] nvram: Checking bank 0...
Aug  8 04:05:15 icebook kernel: [0.00] nvram: gen0=800, gen1=799
Aug  8 04:05:15 icebook kernel: [0.00] nvram: Active bank is: 0
Aug  8 04:05:15 icebook kernel: [0.00] nvram: OF partition at 0x410
Aug  8 04:05:15 icebook kernel: [0.00] nvram: XP partition at 0x1020
Aug  8 04:05:15 icebook kernel: [0.00] nvram: NR partition at 0x1120
Aug  8 04:05:15 icebook kernel: [0.00] Top of RAM: 0x1000, Total 
RAM: 0x1000
Aug  8 04:05:15 icebook kernel: [0.00] Memory hole size: 0MB
Aug  8 04:05:15 icebook kernel: [0.00] Zone PFN ranges:
Aug  8 04:05:15 icebook kernel: [0.00]   DMA  0x - 
0x0001
Aug  8 04:05:15 icebook kernel: [0.00]   Normal   empty
Aug  8 04:05:15 icebook kernel: [0.00]   HighMem  empty
Aug  8 04:05:15 icebook kernel: [0.00] Movable zone start PFN for each 
node
Aug  8 04:05:15 icebook kernel: [0.00] early_node_map[1] active PFN 
ranges
Aug  8 04:05:15 icebook kernel: [0.00] 0: 0x - 0x0001
Aug  8 04:05:15 icebook kernel: [0.00] On node 0 totalpages: 65536
Aug  8 04:05:15 icebook kernel: [0.00] free_area_init_node: node 0, 
pgdat c0553420, node_mem_map 

Bug#684269: xserver-xorg-video-intel: Xorg frozen after kernel oops

2012-08-08 Thread Julien Cristau
On Wed, Aug  8, 2012 at 11:21:11 +0200, g1 wrote:

 Aug  8 10:01:00 bohr kernel: [ 1580.016312] Pid: 1963, comm: Xorg Tainted: G  
   W  (2.6.32-5-686 #1) HP Compaq 6530b (GW688AV)

This isn't the first warning from this kernel, can you attach the first
one?

Thanks,
Julien


signature.asc
Description: Digital signature


Bug#683498: xorg: temporary video corruption on new window or frames with Radeon

2012-08-08 Thread Alain Rpnpif
Hello,

I have found some elements about this issue.

I had somewhere an export vblank_mode=1.
When vblank_mode=2 (default value that means synchronized to the
vertical refresh), there are not still video corruption when I am
logged, but under gdm3, they exists still.

vblank_mode=2 gets best videos movies playing results (flashplayer) but
poor gtk performance (with getkperf).

Regards.
-- 
Alain Rpnpif


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20120808131226.a88cd100...@chro.home



Bug#683796: xserver-xorg-video-radeon: No 3D acceleration in iBook2 powerpc

2012-08-08 Thread Michel Dänzer
On Mit, 2012-08-08 at 05:00 -0700, Dan DeVoto wrote: 
 
 Below is dmesg output with video=radeonfb:off in the kernel command line:
[...] 
 Aug  8 04:05:15 icebook kernel: [   10.769815] checking generic (9c008000 
 c) vs hw (9800 800)
 Aug  8 04:05:15 icebook kernel: [   10.769832] fb: conflicting fb hw usage 
 radeondrmfb vs OFfb ATY,Fall_A - removing generic driver
 Aug  8 04:05:15 icebook kernel: [   10.779698] Console: switching to colour 
 dummy device 80x25
 Aug  8 04:05:15 icebook kernel: [   10.782214] checking generic (98808000 
 5a000) vs hw (9800 800)
 Aug  8 04:05:15 icebook kernel: [   10.782235] fb: conflicting fb hw usage 
 radeondrmfb vs OFfb ATY,Fall_B - removing generic driver

I heard that this handover from OFfb to radeon KMS can cause problems in
some cases. Maybe you can try adding video=offb:off to
video=radeonfb:off .


 Aug  8 04:08:01 icebook kernel: [  192.105636] 
 [drm:drm_calc_timestamping_constants] *ERROR* crtc 10: Can't calculate 
 constants, dotclock = 0!

Otherwise this is the only other sign of any potential problem that I
can see, though I think it shouldn't cause a black screen.


Maybe you can also check what /sys/class/backlight/radeon_bl/brightness
contains when the screen is black and whether writing 128 or other
values between 0 and 255 to it makes a difference.


-- 
Earthling Michel Dänzer   |   http://www.amd.com
Libre software enthusiast |  Debian, X and DRI developer


--
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/1344431904.17900.198.camel@thor.local



Bug#645680: xserver-xorg-video-intel: Xserver crash

2012-08-08 Thread Andres Cimmarusti
Is this still an issue with current versions of
xserver-xorg-video-intel, kernel, mesa, etc in wheezy?


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/CAH=dyreqkm0az1zkbxoxfhiagf4di3srfa3sw2kw7y1xvu_...@mail.gmail.com



Bug#510429: X queue fills up, then locks up system

2012-08-08 Thread Andres Cimmarusti
Is this still an issue with current versions of
xserver-xorg-video-intel, kernel, mesa, etc in wheezy?


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/CAH=dyrg_ufii0ous-g7hm0v86ymc6ywgxkmvk4o53rz4bpu...@mail.gmail.com



Bug#683498: xorg: temporary video corruption on new window or frames with Radeon

2012-08-08 Thread Alain Rpnpif
Le  8 août 2012, Alain Rpnpif a écrit :

 Hello,
 
 I have found some elements about this issue.
 
 I had somewhere an export vblank_mode=1.
 When vblank_mode=2 (default value that means synchronized to the
 vertical refresh), there are not still video corruption when I am
 logged, but under gdm3, they exists still.
 
 vblank_mode=2 gets best videos movies playing results (flashplayer) but
 poor gtk performance (with getkperf).
 
 Regards.

No, video corruptions are back. Perhaps, it is about a video cache.
Because, I have no video corruption when I display a second time an
element. But i confirm the best video movies playing.

-- 
Alain Rpnpif


--
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20120808170312.29ee1100...@chro.home



Bug#645680: xserver-xorg-video-intel: Xserver crash

2012-08-08 Thread luca boncompagni
On Wed, Aug 8, 2012 at 3:27 PM, Andres Cimmarusti acimmaru...@gmail.com wrote:
 Is this still an issue with current versions of
 xserver-xorg-video-intel, kernel, mesa, etc in wheezy?

Hi, no more issue with Iceweseal an xserver.

Tanks,
Luca


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/CAOzS1k2ju=aD=L5Q77j626TYBsVW=RodCjw14SV-F7fsA_ZY=g...@mail.gmail.com



Bug#682099: xserver-xorg-video-ati: EXAPixmaps=On screen tearing at high resolution under certain configurations

2012-08-08 Thread James Robertson
On 2 August 2012 20:31, Michel Dänzer daen...@debian.org wrote:
 Thanks. That's not what we generally call 'tearing' but looks like some
 kind of intermittent display corruption.

 Unfortunately, I don't have any ideas offhand what could cause that.

I did some more testing and it seems as though the monitor,
combination of identical monitor models or VGA port on the monitors
might be the issue.

The monitors I am using are identical AOC's.  Product Name:
e2250Swda, Model No:  215LM00019.  I had a older spare Benq monitor
E2200HD with native resolution of 1920x1080 and swapped it with the
VGA connected AOC.  Everything worked fine on both displays with
1920x1080 without disabling EXAPixmaps!
I then swapped it around so AOC on VGA and Benq on DVI and the
corruption came back.  I also swapped out the AOC's in case the issue
was with one of them but same problem on both.

Previously even if I disabled the VGA port with the AOC attached to
it, the AOC on the DVI port would still get display corruption.  With
the Benq connected to VGA but disabled no corruption occurs on (either
of) the DVI connected AOC.

I have attached an xrandr --verbose for both combinations in case it
shows something useful.  I couldn't see anything that might explain
why sorry.

Thanks again.

James
Screen 0: minimum 320 x 200, current 3840 x 1080, maximum 8192 x 8192
DVI-0 connected 1920x1080+0+0 (0x55) normal (normal left inverted right x axis 
y axis) 477mm x 268mm
Identifier: 0x51
Timestamp:  324965
Subpixel:   horizontal rgb
Gamma:  1.0:1.0:1.0
Brightness: 1.0
Clones:
CRTC:   0
CRTCs:  0 1
Transform:  1.00 0.00 0.00
0.00 1.00 0.00
0.00 0.00 1.00
   filter: 
EDID:
000009d10c794554
27120103802f1a782e3585a656489a24
125054a56bba710081408100950f8180
9500b3000101023a801871382d40582c
4500dd0c111e00ff004e3938
30343134373032360a2000fd0032
4c1e5e15000a20202020202000fc
0042656e5120453232303048440a0042
load detection: 1 (0x0001)  range:  (0,1)
underscan vborder: 0 (0x)   range:  (0,128)
underscan hborder: 0 (0x)   range:  (0,128)
underscan:  off
supported: off  on   auto
coherent: 1 (0x0001)range:  (0,1)
  1920x1080 (0x55)  148.5MHz +HSync +VSync *current +preferred
h: width  1920 start 2008 end 2052 total 2200 skew0 clock   67.5KHz
v: height 1080 start 1084 end 1089 total 1125   clock   60.0Hz
  1680x1050 (0x56)  146.2MHz -HSync +VSync
h: width  1680 start 1784 end 1960 total 2240 skew0 clock   65.3KHz
v: height 1050 start 1053 end 1059 total 1089   clock   60.0Hz
  1280x1024 (0x57)  135.0MHz +HSync +VSync
h: width  1280 start 1296 end 1440 total 1688 skew0 clock   80.0KHz
v: height 1024 start 1025 end 1028 total 1066   clock   75.0Hz
  1280x1024 (0x58)  108.0MHz +HSync +VSync
h: width  1280 start 1328 end 1440 total 1688 skew0 clock   64.0KHz
v: height 1024 start 1025 end 1028 total 1066   clock   60.0Hz
  1440x900 (0x59)  136.8MHz -HSync +VSync
h: width  1440 start 1536 end 1688 total 1936 skew0 clock   70.6KHz
v: height  900 start  903 end  909 total  942   clock   75.0Hz
  1440x900 (0x5a)  106.5MHz -HSync +VSync
h: width  1440 start 1520 end 1672 total 1904 skew0 clock   55.9KHz
v: height  900 start  903 end  909 total  934   clock   59.9Hz
  1280x960 (0x5b)  108.0MHz +HSync +VSync
h: width  1280 start 1376 end 1488 total 1800 skew0 clock   60.0KHz
v: height  960 start  961 end  964 total 1000   clock   60.0Hz
  1280x800 (0x5c)   83.5MHz +HSync -VSync
h: width  1280 start 1352 end 1480 total 1680 skew0 clock   49.7KHz
v: height  800 start  803 end  809 total  831   clock   59.8Hz
  1152x864 (0x5d)  108.0MHz +HSync +VSync
h: width  1152 start 1216 end 1344 total 1600 skew0 clock   67.5KHz
v: height  864 start  865 end  868 total  900   clock   75.0Hz
  1152x720 (0x5e)   67.3MHz -HSync +VSync
h: width  1152 start 1208 end 1328 total 1504 skew0 clock   44.7KHz
v: height  720 start  721 end  724 total  746   clock   60.0Hz
  1024x768 (0x5f)   78.8MHz +HSync +VSync
h: width  1024 start 1040 end 1136 total 1312 skew0 clock   60.1KHz
v: height  768 start  769 end  772 total  800   clock   75.1Hz
  1024x768 (0x60)   65.0MHz -HSync -VSync
h: width  1024 start 1048 end 1184 total 1344 skew0 clock   48.4KHz
v: height  768 start  771 end  777 total  806