Bug#715278: Any attempt to have intel-gpu-tools 1.6 which fixes this bug ?

2014-04-29 Thread shirish शिरीष
Hi all,
Is there any attempt to get intel-gpu-tools 1.6 which fixes the bug ?

Looking forward to the new release.
-- 
  Regards,
  Shirish Agarwal  शिरीष अग्रवाल
  My quotes in this email licensed under CC 3.0
http://creativecommons.org/licenses/by-nc/3.0/
http://flossexperiences.wordpress.com
065C 6D79 A68C E7EA 52B3  8D70 950D 53FB 729A 8B17


--
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/CADdDZR=tddi1a9vswku+-m0+cr6gwg1s5u6urv+jtx4rnew...@mail.gmail.com



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

2014-04-29 Thread Maarten Lankhorst
 debian/changelog   |8 
 debian/patches/fix-0-crtc-crash.patch  |   50 +
 debian/patches/fix-key-initialized-crash.patch |   30 +++
 debian/patches/series  |2 +
 debian/patches/xmir.patch  |   50 -
 5 files changed, 115 insertions(+), 25 deletions(-)

New commits:
commit 7b53338076504ead162ca1908407d08a2a83a986
Author: Maarten Lankhorst maarten.lankho...@canonical.com
Date:   Tue Apr 29 14:27:05 2014 +0200

Add upstream patches to fix hybrid mode with prime.

fix-key-initialized-crash.patch
fix-0-crtc-crash.patch
refresh mir patch

diff --git a/debian/changelog b/debian/changelog
index 90a8262..5be31cf 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+xserver-xorg-video-ati (1:7.3.0-1ubuntu4) UNRELEASED; urgency=low
+
+  * Add upstream patches to fix hybrid mode with prime.
+- fix-key-initialized-crash.patch
+- fix-0-crtc-crash.patch
+
+ -- Maarten Lankhorst maarten.lankho...@ubuntu.com  Tue, 29 Apr 2014 
14:26:00 +0200
+
 xserver-xorg-video-ati (1:7.3.0-1ubuntu3) trusty; urgency=low
 
   * Fix crash with Xorg -configure. (LP: #1278046)
diff --git a/debian/patches/fix-0-crtc-crash.patch 
b/debian/patches/fix-0-crtc-crash.patch
new file mode 100644
index 000..c071098
--- /dev/null
+++ b/debian/patches/fix-0-crtc-crash.patch
@@ -0,0 +1,50 @@
+commit cadb6b493942a84bfeb298751dce0dee39257a06
+Author: Alex Deucher alexander.deuc...@amd.com
+Date:   Fri Feb 21 08:33:21 2014 -0500
+
+radeon: don't install colormap handling if there are no crtcs
+
+Fixes a crash on cards with 0 crtcs.
+
+Discussion:
+http://lists.freedesktop.org/archives/dri-devel/2014-February/054186.html
+
+Signed-off-by: Alex Deucher alexander.deuc...@amd.com
+
+diff --git a/src/drmmode_display.c b/src/drmmode_display.c
+index 76b79d8..641e231 100644
+--- a/src/drmmode_display.c
 b/src/drmmode_display.c
+@@ -1939,19 +1939,23 @@ static void drmmode_load_palette(ScrnInfoPtr pScrn, 
int numColors,
+ 
+ Bool drmmode_setup_colormap(ScreenPtr pScreen, ScrnInfoPtr pScrn)
+ {
++xf86CrtcConfigPtr   xf86_config = XF86_CRTC_CONFIG_PTR(pScrn);
++
+ xf86DrvMsgVerb(pScrn-scrnIndex, X_INFO, RADEON_LOGLEVEL_DEBUG,
+   Initializing kms color map\n);
+-if (!miCreateDefColormap(pScreen))
+-return FALSE;
+-/* all radeons support 10 bit CLUTs */
+-if (!xf86HandleColormaps(pScreen, 256, 10,
+- drmmode_load_palette, NULL,
+- CMAP_PALETTED_TRUECOLOR
++if (xf86_config-num_crtc) {
++  if (!miCreateDefColormap(pScreen))
++  return FALSE;
++  /* all radeons support 10 bit CLUTs */
++  if (!xf86HandleColormaps(pScreen, 256, 10,
++   drmmode_load_palette, NULL,
++   CMAP_PALETTED_TRUECOLOR
+ #if 0 /* This option messes up text mode! (e...@suse.de) */
+- | CMAP_LOAD_EVEN_IF_OFFSCREEN
++   | CMAP_LOAD_EVEN_IF_OFFSCREEN
+ #endif
+- | CMAP_RELOAD_ON_MODE_SWITCH))
+- return FALSE;
++   | CMAP_RELOAD_ON_MODE_SWITCH))
++  return FALSE;
++}
+ return TRUE;
+ }
+ 
diff --git a/debian/patches/fix-key-initialized-crash.patch 
b/debian/patches/fix-key-initialized-crash.patch
new file mode 100644
index 000..66c7cf7
--- /dev/null
+++ b/debian/patches/fix-key-initialized-crash.patch
@@ -0,0 +1,30 @@
+commit c84230d686c078aac1dc98d82153f8b02521b2e1
+Author: Michel Dänzer michel.daen...@amd.com
+Date:   Fri Apr 25 09:17:51 2014 +0900
+
+dri2: Handle PRIME for source buffer as well in radeon_dri2_copy_region2
+
+Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=77810
+
+Reviewed-by: Alex Deucher alexander.deuc...@amd.com
+
+diff --git a/src/radeon_dri2.c b/src/radeon_dri2.c
+index d47b035..9a9918b 100644
+--- a/src/radeon_dri2.c
 b/src/radeon_dri2.c
+@@ -409,7 +409,14 @@ radeon_dri2_copy_region2(ScreenPtr pScreen,
+ dst_drawable = dst_private-pixmap-drawable;
+ 
+ if (src_private-attachment == DRI2BufferFrontLeft) {
+-src_drawable = drawable;
++#ifdef USE_DRI2_PRIME
++  if (drawable-pScreen != pScreen) {
++  src_drawable = DRI2UpdatePrime(drawable, src_buffer);
++  if (!src_drawable)
++  return;
++  } else
++#endif
++  src_drawable = drawable;
+ }
+ if (dst_private-attachment == DRI2BufferFrontLeft) {
+ #ifdef USE_DRI2_PRIME
diff --git a/debian/patches/series b/debian/patches/series
index 198acb0..bcf3168 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,2 +1,4 @@
+fix-key-initialized-crash.patch
+fix-0-crtc-crash.patch
 fix-xorg-configure.patch
 xmir.patch
diff --git a/debian/patches/xmir.patch b/debian/patches/xmir.patch

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

2014-04-29 Thread Maarten Lankhorst
 debian/changelog |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 1ae0d603030ef94637627046373d041497f03335
Author: Maarten Lankhorst maarten.lankho...@canonical.com
Date:   Tue Apr 29 14:32:46 2014 +0200

release to u

diff --git a/debian/changelog b/debian/changelog
index 5be31cf..e0cc5a6 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,6 @@
-xserver-xorg-video-ati (1:7.3.0-1ubuntu4) UNRELEASED; urgency=low
+xserver-xorg-video-ati (1:7.3.0-1ubuntu4) utopic; urgency=low
 
-  * Add upstream patches to fix hybrid mode with prime.
+  * Add upstream patches to fix hybrid mode with prime. (LP: #1301839)
 - fix-key-initialized-crash.patch
 - fix-0-crtc-crash.patch
 


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1wf7dp-0007ie...@moszumanska.debian.org



Bug#715278: Any attempt to have intel-gpu-tools 1.6 which fixes this bug ?

2014-04-29 Thread Julien Cristau
On Tue, Apr 29, 2014 at 14:17:55 +0530, shirish शिरीष wrote:

 Hi all,
 Is there any attempt to get intel-gpu-tools 1.6 which fixes the bug ?
 
Not really, no.

Cheers,
Julien


signature.asc
Description: Digital signature


xserver-xorg-video-vmware: Changes to 'debian-unstable'

2014-04-29 Thread Julien Cristau
 debian/changelog |6 ++
 debian/rules |7 +--
 2 files changed, 11 insertions(+), 2 deletions(-)

New commits:
commit f9208ee13d7ecb6efac784514897c824c65e9365
Author: Julien Cristau jcris...@debian.org
Date:   Tue Apr 29 18:36:30 2014 +0200

rules: avoid mixing implicit and normal rules; make 4 doesn't like that.

diff --git a/debian/changelog b/debian/changelog
index b9bf917..5cf4dd4 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+xserver-xorg-video-vmware (1:13.0.2-3) UNRELEASED; urgency=medium
+
+  * rules: avoid mixing implicit and normal rules; make 4 doesn't like that.
+
+ -- Julien Cristau jcris...@debian.org  Tue, 29 Apr 2014 18:34:12 +0200
+
 xserver-xorg-video-vmware (1:13.0.2-2) unstable; urgency=medium
 
   * Fix build failure on kfreebsd (closes: #743239)
diff --git a/debian/rules b/debian/rules
index 7fa7b81..c601423 100755
--- a/debian/rules
+++ b/debian/rules
@@ -19,7 +19,10 @@ override_dh_install:
 override_dh_shlibdeps:
dh_shlibdeps -- --warnings=6
 
-build %:
-   dh $@ --with quilt,autoreconf,xsf --builddirectory=build/
+build:
+   dh build --with quilt,autoreconf,xsf --builddirectory=build/
 
 .PHONY: build
+
+%:
+   dh $@ --with quilt,autoreconf,xsf --builddirectory=build/


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1wfb1o-0005mk...@moszumanska.debian.org



Bug#746409: xserver-xorg-video-radeon: No 3D acceleration with radeon driver.

2014-04-29 Thread Alex Deucher
On Tue, Apr 29, 2014 at 2:58 PM, Владимир Титов megau...@yandex.ru wrote:
 Package: xserver-xorg-video-radeon
 Version: 1:6.14.4-8
 Severity: normal

 Greetings everyone.I installed Debian Wheezy 7.5 on HDD. OS boot and GNOME 3
 loading in fallback mode with error. I installed firmware-linux-nonfree 
 package
 and reboot. GNOME loading in fallback mode again.
 ..xsession-errors says:
 openConnection: connect: Нет такого файла или каталога
 cannot connect to brltty at :0
 gnome-session-is-accelerated: No hardware 3D support.
 gnome-session-check-accelerated: Helper exited with code 256
 gnome-session[3321]: WARNING: Session 'gnome' runnable check failed:
 Завершено с кодом 1
 dmesg|grep radeon command says:
 [5.404816] [drm] radeon kernel modesetting enabled.
 [5.406813] radeon :01:00.0: setting latency timer to 64
 [5.411254] radeon :01:00.0: VRAM: 512M 0x -
 0x1FFF (512M used)
 [5.411263] radeon :01:00.0: GTT: 512M 0x2000 -
 0x3FFF
 [5.412519] [drm] radeon: 512M of VRAM memory ready
 [5.412524] [drm] radeon: 512M of GTT memory ready.
 [5.415360] [drm] radeon: ib pool ready.
 [5.474763] platform radeon_cp.0: firmware: agent loaded
 radeon/RV730_pfp.bin into memory
 [5.614678] platform radeon_cp.0: firmware: agent loaded 
 radeon/RV730_me.bin
 into memory
 [5.678174] platform radeon_cp.0: firmware: agent loaded 
 radeon/R700_rlc.bin
 into memory
 [5.682544] radeon :01:00.0: WB enabled
 [5.682639] radeon :01:00.0: irq 43 for MSI/MSI-X
 [5.682650] radeon :01:00.0: radeon: using MSI.
 [5.682703] [drm] radeon: irq initialized.
 [5.906783] [drm:r600_ring_test] *ERROR* radeon: ring 0 test failed
 (scratch(0x8500)=0xCAFEDEAD)
 [5.906846] radeon :01:00.0: disabling GPU acceleration
 [5.923350] radeon :01:00.0: f712dc00 unpin not necessary
 [5.924982] radeon :01:00.0: f712d800 unpin not necessary
 [5.925979] [drm] radeon: power management initialized
 [5.992586] fbcon: radeondrmfb (fb0) is primary device
 [6.069809] fb0: radeondrmfb frame buffer device
 [6.073226] [drm] Initialized radeon 2.16.0 20080528 for :01:00.0 on
 minor 0
 So there is no 3D acceleration even with firmware loaded.I tried to install 
 ATI
 proprietary driver(fglrx-legacy-driver), it work only if I create file
 /etc/modprobe.d/fglrx-kms.conf and write options fglrx modeset=1. Otherwise 
 X
 Server isn't loading - only black screen. With working fglrx GNOME also 
 loading
 in fallback mode. In Windows graphic card work correct.


Can you try a newer kernel?  3.2.0 is pretty old.

Alex


--
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/CADnq5_O0vRSrid4gB=�=cWfcD5JpD=w58vpf9pa0xdqjw...@mail.gmail.com