Re: [PATCH xf86-video-i740] Stop using deprecated xf86PciInfo.h

2017-01-18 Thread Laurent Carlier
Le lundi 21 novembre 2016, 20:02:34 CET Laurent Carlier a écrit : > Signed-off-by: Laurent Carlier > --- ping? -- Laurent Carlier http://www.archlinux.org signature.asc Description: This is a digitally signed message part. ___

Re: [PATCH v2 xf86-video-i128] Stop using deprecated xf86PciInfo.h

2017-01-18 Thread Laurent Carlier
Le lundi 21 novembre 2016, 20:53:03 CET Laurent Carlier a écrit : > v2: Remove empty lines > Signed-off-by: Laurent Carlier ping? -- Laurent Carlier http://www.archlinux.org signature.asc Description: This is a digitally signed message part.

Re: [PATCH xserver v2 5/5] xwayland: use _XWAYLAND_ALLOW_COMMITS property

2017-01-18 Thread Olivier Fourdan
Hi Pekka, - Original Message - > here is an update on the Weston side: > https://lists.freedesktop.org/archives/wayland-devel/2017-January/032712.html > > The related Weston patches series has shrunk from 24 to 3 patches as > lots of them have been merged. The stuff about

Re: [PATCH xserver v2 5/5] xwayland: use _XWAYLAND_ALLOW_COMMITS property

2017-01-18 Thread Pekka Paalanen
On Thu, 12 Jan 2017 16:27:10 +0200 Pekka Paalanen wrote: > On Tue, 3 Jan 2017 04:31:39 -0500 (EST) > Olivier Fourdan wrote: > > > Hi, > > > > - Original Message - > > > On Fri, 2016-12-09 at 14:24 +0200, Pekka Paalanen wrote: > > > >

Re: Performance drop when updating > 500k pixels

2017-01-18 Thread Pierre Ossman
On 16/01/17 21:36, Adam Jackson wrote: On Fri, 2017-01-13 at 15:07 +0100, Pierre Ossman wrote: I'll answer myself here... This seems to be a CPU cache issue. Below this limit I see: 4,469,985 cache-misses:u#0.336 % of all cache refs 35,279,259,258

Re: [PATCH libdrm v3 2/5] xf86drm: Add USB support

2017-01-18 Thread walter harms
Am 18.01.2017 10:02, schrieb Thierry Reding: > Allow DRM/KMS devices hosted on USB to be detected by the drmDevice > infrastructure. > > v3: > - guard Linux-specific sysfs parsing code with #ifdef __linux__ > > v2: > - make sysfs_uevent_get() more flexible using a format string > >

Re: glamor woes with nouveau

2017-01-18 Thread Olivier Fourdan
Hi, On 18 January 2017 at 10:27, Olivier Fourdan wrote: >> >> This is where it gets even more confusing, I cannot reproduce the >> issue using "Xephyr -glamor"... Not even with Xephyr running in >> Xwayland. > > And by that I mean, rendering is fine and I don't get the errors

Re: glamor woes with nouveau

2017-01-18 Thread Olivier Fourdan
On 18 January 2017 at 10:10, Olivier Fourdan wrote: > Hi Eric > > On 17 January 2017 at 21:25, Eric Anholt wrote: >> >> It sounds like nouveau is failing at the getteximage/texsubimage cycle >> in the fallback path. X sometimes finds bugs in Mesa than our

Re: glamor woes with nouveau

2017-01-18 Thread Olivier Fourdan
Hi Eric On 17 January 2017 at 21:25, Eric Anholt wrote: > > It sounds like nouveau is failing at the getteximage/texsubimage cycle > in the fallback path. X sometimes finds bugs in Mesa than our testcases > miss, because it frequently reads/writes subsets of a texture. In >

[PATCH libdrm v3 2/5] xf86drm: Add USB support

2017-01-18 Thread Thierry Reding
Allow DRM/KMS devices hosted on USB to be detected by the drmDevice infrastructure. v3: - guard Linux-specific sysfs parsing code with #ifdef __linux__ v2: - make sysfs_uevent_get() more flexible using a format string Signed-off-by: Thierry Reding --- xf86drm.c | 175

[PATCH libdrm v3 4/5] tests/drmdevice: Add USB, platform and host1x support

2017-01-18 Thread Thierry Reding
From: Thierry Reding Extend the drmdevice test with support for the newly added USB, platform and host1x busses. Signed-off-by: Thierry Reding --- tests/drmdevice.c | 37 + 1 file changed, 37 insertions(+) diff --git

[PATCH libdrm v3 5/5] xf86drm: Reuse sysfs_uevent_get()

2017-01-18 Thread Thierry Reding
From: Thierry Reding Recent patches for USB, platform and host1x bus support introduced the sysfs_uevent_get() function that provides a generic way of parsing the sysfs uevent file that is associated with each device in Linux. Open-coded variants of this still exist in other

[PATCH libdrm v3 1/5] xf86drm: Factor out drmDeviceAlloc()

2017-01-18 Thread Thierry Reding
From: Thierry Reding Subsequent patches will add support for other bus types to drmDevice and they will duplicate a lot of the code to allocate a drmDevice. Factor out the common code so it can be reused. Signed-off-by: Thierry Reding --- xf86drm.c | 78

[PATCH libdrm v3 3/5] xf86drm: Add platform and host1x bus support

2017-01-18 Thread Thierry Reding
From: Thierry Reding ARM SoCs usually have their DRM/KMS devices on the platform bus, so add support for that to enable these devices to be used with the drmDevice infrastructure. NVIDIA Tegra SoCs have an additional level in the hierarchy and DRM/KMS devices can also be on

[PATCH libdrm v3 0/5] xf86drm: Add USB, platform and host1x bus support

2017-01-18 Thread Thierry Reding
From: Thierry Reding This series enables support for USB, platform and host1x busses in the drmDevice infrastructure. The goal is to make use of these in Mesa for PRIME support (via the DRI_PRIME environment variable) for devices on one of these busses. Changes in v3: - add

Re: [PATCH libdrm v2 2/4] xf86drm: Add USB support

2017-01-18 Thread Thierry Reding
On Mon, Jan 16, 2017 at 02:38:39PM +, Emil Velikov wrote: > On 13 January 2017 at 12:11, Mark Kettenis wrote: > >> From: Thierry Reding > >> Date: Thu, 12 Jan 2017 23:04:27 +0100 > >> > >> Allow DRM/KMS devices hosted on USB to be detected