xserver-xorg-input-synaptics: Changes to 'ubuntu-trusty'

2014-04-08 Thread Maarten Lankhorst
New branch 'ubuntu-trusty' available with the following commits:
commit c174a6301b12882240d4bb7b11dd368ea240542b
Merge: 6d3026c bbaf4d6
Author: Maarten Lankhorst maarten.lankho...@canonical.com
Date:   Tue Apr 8 12:34:59 2014 +0200

Merge remote-tracking branch 'upstream/synaptics-1.7-branch' into 
ubuntu-trusty

commit bbaf4d646ebf4393a1ee0eb9bcc569054ed878f9
Author: Peter Hutterer peter.hutte...@who-t.net
Date:   Thu Mar 20 11:51:17 2014 +1000

Avoid erroneously handling two touchpoints in the same slot

If a slot's ABS_MT_TRACKING_ID event was received during SYN_DROPPED, the
driver isn't aware that a touchpoint has started or ended in that slot. When
the next ABS_MT_TRACKING_ID event arrives, the driver would unconditionally
close or open a new touchpoint. This could lead to two or more touchpoints
being opened in the same slot, the first of which is never terminated.
Or it could lead to a touchpoint being terminated that was never opened.

The event sequences that trigger this are:
ABS_MT_TRACKING_ID 83
ABS_MT_TRACKING_ID -1
SYN_DROPPED // new touchpoint started here
ABS_MT_TRACKING_ID -1

and

ABS_MT_TRACKING_ID 83
SYN_DROPPED // touchpoint ended here
ABS_MT_TRACKING_ID 84
ABS_MT_TRACKING_ID -1

We don't properly handle SYN_DROPPED, but we can avoid this by only 
starting a
new touchpoint when we transition between -1 and a valid tracking ID.

Signed-off-by: Peter Hutterer peter.hutte...@who-t.net

commit a21b3bd602b31ee995b391a7b917282e7b0a1c33
Author: Peter Hutterer peter.hutte...@who-t.net
Date:   Thu Mar 20 10:58:53 2014 +1000

eventcomm: drop assumption of non-zero slot offset

The kernel guarantees this is always 0

Signed-off-by: Peter Hutterer peter.hutte...@who-t.net

commit 91cc1e82143b939bfb4fce97429b07105333e146
Author: Peter Hutterer peter.hutte...@who-t.net
Date:   Mon Mar 10 16:42:34 2014 +1000

eventcomm: drop calculation of slot offset

The kernel guarantees slots start at 0

Signed-off-by: Peter Hutterer peter.hutte...@who-t.net
Reviewed-by: Hans de Goede hdego...@redhat.com
Reviewed-by: Benjamin Tissoires benjamin.tissoi...@gmail.com
(cherry picked from commit 5b7e1726369d4973859996f225bec743c2e21288)


-- 
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/e1wxtuq-0003so...@moszumanska.debian.org



xserver-xorg-video-vmware: Changes to 'upstream-ubuntu'

2014-04-08 Thread Maarten Lankhorst
 configure.ac|6 
 src/vmware_bootstrap.c  |   20 ++
 src/vmware_bootstrap.h  |2 
 src/vmwarevideo.c   |4 
 vmwgfx/Makefile.am  |5 
 vmwgfx/vmwgfx_dri2.c|   37 +
 vmwgfx/vmwgfx_driver.c  |  309 ++--
 vmwgfx/vmwgfx_driver.h  |4 
 vmwgfx/vmwgfx_drmi.c|  142 
 vmwgfx/vmwgfx_drmi.h|   13 +
 vmwgfx/vmwgfx_hosted.c  |   71 ++
 vmwgfx/vmwgfx_hosted.h  |  258 
 vmwgfx/vmwgfx_hosted_priv.h |   40 +
 vmwgfx/vmwgfx_overlay.c |8 -
 vmwgfx/vmwgfx_saa.c |  263 -
 vmwgfx/vmwgfx_saa.h |7 
 vmwgfx/vmwgfx_saa_priv.h|2 
 vmwgfx/vmwgfx_tex_video.c   |2 
 vmwgfx/vmwgfx_xa_surface.c  |2 
 vmwgfx/vmwgfx_xmir.c|  178 +
 vmwgfx/vmwgfx_xwayland.c|  186 ++
 21 files changed, 1393 insertions(+), 166 deletions(-)

New commits:
commit 8da981712f62050076cff53e1b40ed1e307fcca8
Author: Thomas Hellstrom thellst...@vmware.com
Date:   Wed Jan 15 11:04:05 2014 +0100

vmware/vmwgfx: Always allocate shared hardware surfaces.

Hardware surfaces are all likely to be shared at some point, and we *really*
don't want to change a hardware surface that is bound as a drm framebuffer.

Signed-off-by: Thomas Hellstrom thellst...@vmware.com
Reviewed-by: Jakob Bornecrantz ja...@vmware.com

diff --git a/vmwgfx/vmwgfx_saa.c b/vmwgfx/vmwgfx_saa.c
index 8c97618..b56b05f 100644
--- a/vmwgfx/vmwgfx_saa.c
+++ b/vmwgfx/vmwgfx_saa.c
@@ -811,7 +811,7 @@ vmwgfx_create_hw(struct vmwgfx_saa *vsaa,
return TRUE;
 
 new_flags = (vpix-xa_flags  ~vpix-staging_remove_flags) |
-   vpix-staging_add_flags;
+   vpix-staging_add_flags | XA_FLAG_SHARED;
 
 hw = xa_surface_create(vsaa-xat,
   pixmap-drawable.width,
diff --git a/vmwgfx/vmwgfx_xa_surface.c b/vmwgfx/vmwgfx_xa_surface.c
index 2f23c57..189bfdc 100644
--- a/vmwgfx/vmwgfx_xa_surface.c
+++ b/vmwgfx/vmwgfx_xa_surface.c
@@ -318,7 +318,7 @@ vmwgfx_hw_commit(PixmapPtr pixmap)
uint32_t new_flags;
 
new_flags = (vpix-xa_flags  ~vpix-staging_remove_flags) |
-   vpix-staging_add_flags;
+   vpix-staging_add_flags | XA_FLAG_SHARED;
 
if (vpix-staging_format != xa_surface_format(vpix-hw))
LogMessage(X_INFO, Changing hardware format.\n);

commit 31bff9f7f3d9a68fd1449532e8ab50065de63857
Author: Thomas Hellstrom thellst...@vmware.com
Date:   Thu Jan 9 13:53:59 2014 +0100

vmware: Require libdrm 2.4.38 to build XMir.

Signed-off-by: Thomas Hellstrom thellst...@vmware.com
Reviewed-by: Jakob Bornecrantz ja...@vmware.com

diff --git a/configure.ac b/configure.ac
index 123356c..3e8d541 100644
--- a/configure.ac
+++ b/configure.ac
@@ -127,6 +127,12 @@ if test x$BUILD_VMWGFX = xyes; then
  [AC_DEFINE([HAVE_XA_2], 1,
  [Has version 2 of XA])])],
  [],[BUILD_VMWGFX=no])
+#
+# Check for prime.
+#
+   PKG_CHECK_EXISTS([libdrm = 2.4.38],
+[AC_DEFINE([HAVE_LIBDRM_2_4_38], 1,
+[Has version 2.4.38 or greater of libdrm])])
 fi
 
 DRIVER_NAME=vmware
diff --git a/vmwgfx/vmwgfx_drmi.c b/vmwgfx/vmwgfx_drmi.c
index d926019..b6fb56d 100644
--- a/vmwgfx/vmwgfx_drmi.c
+++ b/vmwgfx/vmwgfx_drmi.c
@@ -501,6 +501,7 @@ vmwgfx_max_fb_size(int drm_fd, size_t *size)
 return 0;
 }
 
+#ifdef HAVE_LIBDRM_2_4_38
 /**
  * vmwgfx_prime_fd_to_handle - Return a TTM handle to a prime object
  *
@@ -537,3 +538,4 @@ vmwgfx_prime_release_handle(int drm_fd, uint32_t handle)
 (void) drmCommandWrite(drm_fd, DRM_VMW_UNREF_SURFACE, s_arg,
   sizeof(s_arg));
 }
+#endif /* HAVE_LIBDRM_2_4_38 */
diff --git a/vmwgfx/vmwgfx_drmi.h b/vmwgfx/vmwgfx_drmi.h
index 1494485..3168088 100644
--- a/vmwgfx/vmwgfx_drmi.h
+++ b/vmwgfx/vmwgfx_drmi.h
@@ -85,9 +85,11 @@ vmwgfx_update_gui_layout(int drm_fd, unsigned int num_rects,
 int
 vmwgfx_get_param(int drm_fd, uint32_t param, uint64_t *out);
 
+#ifdef HAVE_LIBDRM_2_4_38
 int
 vmwgfx_prime_fd_to_handle(int drm_fd, int prime_fd, uint32_t *handle);
 
 void
 vmwgfx_prime_release_handle(int drm_fd, uint32_t handle);
+#endif /* HAVE_LIBDRM_2_4_38 */
 #endif
diff --git a/vmwgfx/vmwgfx_saa.c b/vmwgfx/vmwgfx_saa.c
index cb55849..8c97618 100644
--- a/vmwgfx/vmwgfx_saa.c
+++ b/vmwgfx/vmwgfx_saa.c
@@ -1618,7 +1618,7 @@ vmwgfx_saa_drop_master(ScreenPtr pScreen)
  * Helpers for hosted.
  */
 
-#if (XA_TRACKER_VERSION_MAJOR = 2)
+#if (XA_TRACKER_VERSION_MAJOR = 2)  defined(HAVE_LIBDRM_2_4_38)
 
 /**
  * vmwgfx_saa_copy_to_surface - Copy Drawable contents to an external surface.
diff --git a/vmwgfx/vmwgfx_saa.h b/vmwgfx/vmwgfx_saa.h
index 55f0ded..921fabd 100644
--- a/vmwgfx/vmwgfx_saa.h
+++ b/vmwgfx/vmwgfx_saa.h
@@ 

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

2014-04-08 Thread Maarten Lankhorst
 ChangeLog   |  173 
 configure.ac|   10 +
 debian/changelog|   48 ++
 debian/control  |2 
 debian/rules|8 -
 src/vmware_bootstrap.c  |   20 ++
 src/vmware_bootstrap.h  |2 
 src/vmwaremodes.c   |4 
 src/vmwarevideo.c   |4 
 vmwgfx/Makefile.am  |5 
 vmwgfx/vmwgfx_dri2.c|   37 +
 vmwgfx/vmwgfx_driver.c  |  309 ++--
 vmwgfx/vmwgfx_driver.h  |4 
 vmwgfx/vmwgfx_drmi.c|  142 
 vmwgfx/vmwgfx_drmi.h|   13 +
 vmwgfx/vmwgfx_hosted.c  |   71 ++
 vmwgfx/vmwgfx_hosted.h  |  258 
 vmwgfx/vmwgfx_hosted_priv.h |   40 +
 vmwgfx/vmwgfx_overlay.c |8 -
 vmwgfx/vmwgfx_saa.c |  274 +--
 vmwgfx/vmwgfx_saa.h |7 
 vmwgfx/vmwgfx_saa_priv.h|   13 +
 vmwgfx/vmwgfx_tex_video.c   |2 
 vmwgfx/vmwgfx_xa_surface.c  |   63 +++-
 vmwgfx/vmwgfx_xmir.c|  178 +
 vmwgfx/vmwgfx_xwayland.c|  186 ++
 26 files changed, 1698 insertions(+), 183 deletions(-)

New commits:
commit d1348cd564c9104ce2a486e4083a9e970b14eec2
Author: Maarten Lankhorst maarten.lankho...@canonical.com
Date:   Tue Apr 8 16:40:23 2014 +0200

bump changelog

diff --git a/debian/changelog b/debian/changelog
index 470e1a9..0dfd7a3 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,10 @@
-xserver-xorg-video-vmware (1:13.0.1.git8da9817-0ubuntu1) trusty; urgency=low
+xserver-xorg-video-vmware (1:13.0.1.git.20140115.8da9817-0ubuntu2) trusty; 
urgency=low
+
+  * Rebuild for xorg 1.15 abi.
+
+ -- Maarten Lankhorst maarten.lankho...@ubuntu.com  Wed, 05 Feb 2014 
10:12:27 +
+
+xserver-xorg-video-vmware (1:13.0.1.git.20140115.8da9817-0ubuntu1) trusty; 
urgency=low
 
   * Sync fixes from git to make libxatracker2 work correctly. (LP: #1271186)
 

commit 64e0faf1480663a990e0f6aeef7af0e69845af49
Author: Thomas Hellstrom thellst...@vmware.com
Date:   Wed Apr 2 14:05:23 2014 +0200

vmware/vmwgfx: Don't tell XA that we have a mask when we haven't

In some cases, the X server sends us a composit operation with
mask_pict != NULL, but mask_pix == NULL. Assume there's no mask
involved in that case.

Signed-off-by: Thomas Hellstrom thellst...@vmware.com
Reviewed-by: Brian Paul bri...@vmware.com

diff --git a/vmwgfx/vmwgfx_saa.c b/vmwgfx/vmwgfx_saa.c
index 3da0222..99a289d 100644
--- a/vmwgfx/vmwgfx_saa.c
+++ b/vmwgfx/vmwgfx_saa.c
@@ -1158,6 +1158,8 @@ vmwgfx_composite_prepare(struct saa_driver *driver, CARD8 
op,
  * and check whether XA can accelerate.
  */
 
+if (!mask_pix)
+   mask_pict = NULL;
 xa_comp = vmwgfx_xa_setup_comp(vsaa-vcomp, op,
   src_pict, mask_pict, dst_pict);
 if (!xa_comp)

commit c062d08a50a26c99a3b8f565a8b2b00e8dc21c3f
Author: Thomas Hellstrom thellst...@vmware.com
Date:   Thu Jan 16 18:27:57 2014 +0100

vmware/vmwgfx: Don't change backing-store of active scanout surfaces

With option HwPresents on, the driver would sometimes change backing
store of active scanout surfaces, making the kernel module refuse to
present. This was caused by scanout surfaces not having the RENDERTARGET 
flag
on by default. So when rendered to, using copies or composites, they
would be reallocated. Fix this by adding the RENDERTARGET flag from start.

Also add code that prints out an error message when we change backing store
of active scanout surfaces

Signed-off-by: Thomas Hellstrom thellst...@vmware.com
Reviewed-by: Jakob Bornecrantz ja...@vmware.com

diff --git a/vmwgfx/vmwgfx_saa.c b/vmwgfx/vmwgfx_saa.c
index b56b05f..3da0222 100644
--- a/vmwgfx/vmwgfx_saa.c
+++ b/vmwgfx/vmwgfx_saa.c
@@ -610,9 +610,9 @@ vmwgfx_pix_resize(PixmapPtr pixmap, unsigned int old_pitch,
 }
 
 if (vpix-hw) {
-   if (xa_surface_redefine(vpix-hw, draw-width, draw-height,
-   draw-depth, xa_type_argb,
-   xa_format_unknown, vpix-xa_flags, 1) != 0)
+  if (!vmwgfx_xa_surface_redefine(vpix, vpix-hw, draw-width,
+ draw-height, draw-depth, xa_type_argb,
+ xa_format_unknown, vpix-xa_flags, 1))
return FALSE;
 }
 
@@ -1504,7 +1504,8 @@ vmwgfx_scanout_ref(struct vmwgfx_screen_entry  *entry)
 * The KMS fb will be a HW surface. Create it, add damage
 * and get the handle.
 */
-   if (!vmwgfx_hw_accel_validate(pixmap, 0, XA_FLAG_SCANOUT, 0, NULL))
+   if (!vmwgfx_hw_accel_validate(pixmap, 0, XA_FLAG_SCANOUT |
+ XA_FLAG_RENDER_TARGET, 0, NULL))
goto out_err;
if 

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

2014-04-08 Thread Maarten Lankhorst
 debian/changelog |7 +++
 1 file changed, 7 insertions(+)

New commits:
commit 426006760e377047cd0073ef7050bff69e281115
Author: Maarten Lankhorst maarten.lankho...@canonical.com
Date:   Tue Apr 8 16:47:45 2014 +0200

bump changelog, release to trusty

diff --git a/debian/changelog b/debian/changelog
index 4465d9b..5915e00 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+xserver-xorg-video-vmware (1:13.0.2-2ubuntu1) trusty; urgency=low
+
+  * Merge from released debian-unstable.
+  * Cherry pick some fixes from git.
+
+ -- Maarten Lankhorst maarten.lankho...@ubuntu.com  Tue, 08 Apr 2014 
16:42:04 +0200
+
 xserver-xorg-video-vmware (1:13.0.2-2) unstable; urgency=medium
 
   * Fix build failure on kfreebsd (closes: #743239)


-- 
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/e1wxxjg-vf...@moszumanska.debian.org



mesa: Changes to 'ubuntu'

2014-04-08 Thread Timo Aaltonen
 debian/changelog |6 ++
 debian/patches/fix-kwin.diff |   14 ++
 debian/patches/series|1 +
 3 files changed, 21 insertions(+)

New commits:
commit bcde4d8c9d61fc48c0226872ea462863c2249b5d
Author: Timo Aaltonen tjaal...@ubuntu.com
Date:   Tue Apr 8 19:19:01 2014 +0300

release to trusty

diff --git a/debian/changelog b/debian/changelog
index f9dc250..9d46d59 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-mesa (10.1.0-4ubuntu2) UNRELEASED; urgency=medium
+mesa (10.1.0-4ubuntu2) trusty; urgency=medium
 
   * fix-kwin.diff: i965; Don't check reset status on gen4/5. (LP: #1299499)
 

commit 3f08841f8e339051615f27330e716e95fe464845
Author: Timo Aaltonen tjaal...@ubuntu.com
Date:   Thu Apr 3 19:40:26 2014 +0300

fix-kwin.diff: i965; Don't check reset status on gen4/5. (LP: #1299499)

diff --git a/debian/changelog b/debian/changelog
index 49e46dc..f9dc250 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+mesa (10.1.0-4ubuntu2) UNRELEASED; urgency=medium
+
+  * fix-kwin.diff: i965; Don't check reset status on gen4/5. (LP: #1299499)
+
+ -- Timo Aaltonen tjaal...@ubuntu.com  Tue, 01 Apr 2014 16:58:02 +0300
+
 mesa (10.1.0-4ubuntu1) trusty; urgency=medium
 
   * Merge from unreleased debian sid.
diff --git a/debian/patches/fix-kwin.diff b/debian/patches/fix-kwin.diff
new file mode 100644
index 000..c8ea49a
--- /dev/null
+++ b/debian/patches/fix-kwin.diff
@@ -0,0 +1,14 @@
+diff --git a/src/mesa/drivers/dri/i965/brw_context.c 
b/src/mesa/drivers/dri/i965/brw_context.c
+index e113654..5790680 100644
+--- a/src/mesa/drivers/dri/i965/brw_context.c
 b/src/mesa/drivers/dri/i965/brw_context.c
+@@ -645,7 +645,7 @@ brwCreateContext(gl_api api,
+ 
+brw_init_driver_functions(brw, functions);
+ 
+-   if (notify_reset)
++   if (notify_reset  brw-gen = 6)
+   functions.GetGraphicsResetStatus = brw_get_graphics_reset_status;
+ 
+struct gl_context *ctx = brw-ctx;
+
diff --git a/debian/patches/series b/debian/patches/series
index 3880f5e..f5cf97e 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -11,3 +11,4 @@
 egl-platform-mir.patch
 i915-dont-default-to-2.1.patch
 fix-bsymbolic-madness.patch
+fix-kwin.diff


-- 
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/e1wxyrt-0003jp...@moszumanska.debian.org



Bug#739979: xorg: psmouse lost sync (worked up to Lenny)

2014-04-08 Thread Valerio Vanni
Package: xorg
Version: 1:7.7+3~deb7u1
Followup-For: Bug #739979

I add my findings.

The combination PS2 KVM switch - Vmware Workstation or Player fails also on
other new LInux distribution.
I've tested Fedora 20, Ubuntu 12.04LTS and Ubuntu 13.10.

In Debian, I can confirm that the first failing is Squeeze (Wheezy and Jessie
fail too).

For this I suspect that some change in Xorg could play a role.

I've reported a bug with VMware support, but they just gave up saying that they
didn't find anything wrong in their PS2 module.
And they think the problem could be in the operating system.

Obviously, they don't have my KVM switch to test (and neither you have it).

A thing that I can add is that a USB - PS2 converter solves the issue (and I'm
taking it as a workaround).
Not a passive one, that work only for bi-protocol mice.
An active one, that converts the protocol. It has a USB male and two PS2
females connectors, and the PC detectes the mouse as USB. Passing through the
same KVM switch.
Notice: the KVM switch it's only PS2, not combo.

The chain
PS2 mouse - PS2 KVM switch - PC fails

The chain
PS2 mouse - PS2 KVM switch - USB-PS2 converter - PC works

So, whatever bad can do  the KVM switch, it can trigger the issue only entering
as PS2.



-- Package-specific info:
X server symlink status:

lrwxrwxrwx 1 root root 13 Sep 30  2008 /etc/X11/X - /usr/bin/Xorg
-rwxr-xr-x 1 root root 2027892 Dec 17 21:40 /usr/bin/Xorg

VGA-compatible devices on PCI bus:
--
00:02.0 VGA compatible controller [0300]: Intel Corporation 82G33/G31 Express 
Integrated Graphics Controller [8086:29c2] (rev 02)

/etc/X11/xorg.conf does not exist.

Contents of /etc/X11/xorg.conf.d:
-
total 4
-rwxr-xr-x 1 root root 1002 Apr  8 03:24 10-resolution.conf

KMS configuration files:

/etc/modprobe.d/i915-kms.conf:
  options i915 modeset=1
/etc/modprobe.d/radeon-kms.conf:
  options radeon modeset=1

Kernel version (/proc/version):
---
Linux version 3.13.6 (root@newton) (gcc version 4.3.2 (Debian 4.3.2-1.1) ) #1 
SMP Wed Mar 12 15:13:44 CET 2014

Xorg X server log files on system:
--
-rw-r--r-- 1 root root 31231 Feb 21  2009 /var/log/Xorg.1.log
-rw-r--r-- 1 root root 22208 Apr  9 00:57 /var/log/Xorg.0.log

Contents of most recent Xorg X server log file (/var/log/Xorg.0.log):
-
[53.888] 
X.Org X Server 1.12.4
Release Date: 2012-08-27
[53.888] X Protocol Version 11, Revision 0
[53.888] Build Operating System: Linux 3.2.0-4-amd64 i686 Debian
[53.888] Current Operating System: Linux newton 3.13.6 #1 SMP Wed Mar 12 
15:13:44 CET 2014 i686
[53.888] Kernel command line: BOOT_IMAGE=Linux-3.13.6 ro root=801 
console=ttyS0 console=tty0
[53.888] Build Date: 17 December 2013  08:37:13PM
[53.888] xorg-server 2:1.12.4-6+deb7u2 (Julien Cristau 
jcris...@debian.org) 
[53.888] Current version of pixman: 0.26.0
[53.888]Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
[53.888] Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[53.888] (==) Log file: /var/log/Xorg.0.log, Time: Wed Apr  9 00:44:52 
2014
[53.955] (==) Using config directory: /etc/X11/xorg.conf.d
[53.955] (==) Using system config directory /usr/share/X11/xorg.conf.d
[54.290] (==) No Layout section.  Using the first Screen section.
[54.290] (**) |--Screen Screen0 (0)
[54.290] (**) |   |--Monitor Monitor0
[54.455] (==) Automatically adding devices
[54.455] (==) Automatically enabling devices
[54.455] (WW) The directory /usr/share/fonts/X11/cyrillic does not exist.
[54.455]Entry deleted from font path.
[54.455] (==) FontPath set to:
/usr/share/fonts/X11/misc,
/usr/share/fonts/X11/100dpi/:unscaled,
/usr/share/fonts/X11/75dpi/:unscaled,
/usr/share/fonts/X11/Type1,
/usr/share/fonts/X11/100dpi,
/usr/share/fonts/X11/75dpi,
/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType,
built-ins
[54.455] (==) ModulePath set to /usr/lib/xorg/modules
[54.455] (II) The server relies on udev to provide the list of input 
devices.
If no devices become available, reconfigure udev or disable 
AutoAddDevices.
[54.455] (II) Loader magic: 0xb776e5a0
[54.455] (II) Module ABI versions:
[54.455]X.Org ANSI C Emulation: 0.4
[54.455]X.Org Video Driver: 12.1
[54.455]X.Org XInput driver : 16.0
[54.455]X.Org Server Extension : 6.0
[54.455] (--) PCI:*(0:0:2:0) 8086:29c2:1458:d000 rev 2, Mem @ 
0xf320/524288, 0xe000/268435456, 0xf300/1048576, I/O @ 0xe200/8
[54.456] (II) 

Bug#742307: xserver-xorg-video-radeon: Radeon HD 6570 (Turks) - severe display corruption esp. after boot

2014-04-08 Thread Benjamin Moody
 Kernel: Linux 3.2.0-4-amd64 (SMP w/2 CPU cores)

 Is this still an issue with a newer kernel?  IIRC, this issue was
 fixed a while ago.

Tested with kernel 3.13-0.bpo.1-amd64.  The same problem occurs except
that Ctrl-Alt-Backspace doesn't work either.

I also noticed that the newer kernel wanted an additional firmware
file ('radeon/TURKS_smc.bin') so I upgraded firmware-linux-nonfree to
0.41~bpo70+1.  That also made no difference.

Benjamin


-- 
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/CAAk6P0XQt+rGW=VG7KJY653_XK9SgDM65EqMq+J=2e5asht...@mail.gmail.com