[PATCH] qxl: fix framebuffer unpinning

2017-09-18 Thread Gerd Hoffmann
qxl_plane_cleanup_fb() unpins the just activated framebuffer instead of the old one. Oops. Fix it. Cc: Gabriel Krisman Bertazi Fixes: 1277eed5fecb8830c8cc414ad70c1ef640464bc0 Signed-off-by: Gerd Hoffmann --- drivers/gpu/drm/qxl/qxl_display.c | 7 --- 1 file changed, 4 insertions(+), 3 del

Re: [PATCH v2] drm/dp: DPCD register defines for link status within ESI field

2017-09-18 Thread Jani Nikula
On Wed, 13 Sep 2017, Dhinakaran Pandiyan wrote: > Link status is available in the ESI field on devices with DPCD r1.2 or > higher. DP spec also says "An MST upstream device shall use this field > instead of the Link/Sink Device Status field registers, starting from DPCD > Address 00200h." > > v2:

Re: [PATCH v3 1/2] drm/bridge: Add Cadence DSI driver

2017-09-18 Thread Boris Brezillon
On Thu, 7 Sep 2017 15:06:13 +0530 Archit Taneja wrote: > Hi, > > On 08/31/2017 09:25 PM, Boris Brezillon wrote: > > Add a driver for Cadence DPI -> DSI bridge. > > > > This driver only support a subset of Cadence DSI bridge capabilities. > > > > Here is a non-exhaustive list of missing feature

Re: [Outreachy kernel] [PATCH v3 0/4] drm/agpsupport: Code cleanup

2017-09-18 Thread Greg KH
On Thu, Sep 14, 2017 at 01:36:17PM +0530, Meghana Madhyastha wrote: > Removes checkpath.pl errors and warnings. > > Changes in v3: > -Change commit title prefix from drm to drm/agpsupport > -Split the commit "Move EXPORT_SYMBOL so that it immediately follows its > function" into two commits

[Bug 102694] LLVM triggered Diagnostic Handler: Illegal instruction detected: VOP* instruction uses the constant bus more than once

2017-09-18 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=102694 Christoph Haag changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

Re: [Outreachy kernel] [PATCH v3 0/4] drm/agpsupport: Code cleanup

2017-09-18 Thread Jani Nikula
On Mon, 18 Sep 2017, Greg KH wrote: > On Thu, Sep 14, 2017 at 01:36:17PM +0530, Meghana Madhyastha wrote: >> Removes checkpath.pl errors and warnings. >> >> Changes in v3: >> -Change commit title prefix from drm to drm/agpsupport >> -Split the commit "Move EXPORT_SYMBOL so that it immediately f

Re: [PATCH 5/7] arm64: dts: rockchip: rk3399: Correct MIPI DPHY PLL clock

2017-09-18 Thread Heiko Stübner
Hi Nickey, Am Montag, 18. September 2017, 17:05:37 CEST schrieb Nickey Yang: > clk_24m --> Gate11[14] --> clk_mipidphy_ref --> Gate21[0] --> clk_dphy_pll please try to be a bit more verbose in your commit messages :-) . It looks to me, like this patch does not depend on the other ones and I can

[PATCH 2/4] drm/amd/amdgpu: add support for iova_to_phys to replace TTM trace

2017-09-18 Thread Tom St Denis
Signed-off-by: Tom St Denis --- drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c | 32 1 file changed, 32 insertions(+) diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c index 7848ffa99eb4..b4c298925e2a 100644 --- a/drivers/gp

[PATCH 1/4] drm/amd/amdgpu: Fold TTM debugfs entries into array

2017-09-18 Thread Tom St Denis
Signed-off-by: Tom St Denis --- drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c | 53 ++--- drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.h | 4 +-- 2 files changed, 31 insertions(+), 26 deletions(-) diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c b/drivers/gpu/drm/amd/amdgpu/

[PATCH 3/4] drm/amd/amdgpu: remove usage of ttm trace

2017-09-18 Thread Tom St Denis
Signed-off-by: Tom St Denis --- drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c | 36 +++-- 1 file changed, 3 insertions(+), 33 deletions(-) diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c index b4c298925e2a..e0c37fe4d043 100644

Remove TTM trace and use proper IOMMU api

2017-09-18 Thread Tom St Denis
These patches tidy up the amdgpu_ttm debugfs creation, add an iova_to_phys interface and then remove the TTM trace from both amdgpu and drm/ttm. ___ dri-devel mailing list dri-devel@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/dr

[PATCH 4/4] drm/ttm: Remove TTM dma tracepoint since it's not required anymore

2017-09-18 Thread Tom St Denis
Signed-off-by: Tom St Denis --- drivers/gpu/drm/ttm/Makefile | 2 +- drivers/gpu/drm/ttm/ttm_debug.c | 74 - drivers/gpu/drm/ttm/ttm_trace.h | 87 --- drivers/gpu/drm/ttm/ttm_tracepoints.c | 45 -- 4

Re: [PATCH 1/4] drm/amd/amdgpu: Fold TTM debugfs entries into array

2017-09-18 Thread Christian König
Am 18.09.2017 um 14:35 schrieb Tom St Denis: Signed-off-by: Tom St Denis --- drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c | 53 ++--- drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.h | 4 +-- 2 files changed, 31 insertions(+), 26 deletions(-) diff --git a/drivers/gpu/drm/amd/

Re: [PATCH 2/4] drm/amd/amdgpu: add support for iova_to_phys to replace TTM trace

2017-09-18 Thread Christian König
Am 18.09.2017 um 14:35 schrieb Tom St Denis: Signed-off-by: Tom St Denis --- drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c | 32 1 file changed, 32 insertions(+) diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c index 7

Re: [PATCH 2/4] drm/amd/amdgpu: add support for iova_to_phys to replace TTM trace

2017-09-18 Thread Tom St Denis
On 18/09/17 08:52 AM, Christian König wrote: Am 18.09.2017 um 14:35 schrieb Tom St Denis: Signed-off-by: Tom St Denis ---   drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c | 32   1 file changed, 32 insertions(+) diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c b

Re: [PATCHv4 1/3] drm: add support for DisplayPort CEC-Tunneling-over-AUX

2017-09-18 Thread Ville Syrjälä
On Sat, Sep 16, 2017 at 04:17:24PM +0200, Hans Verkuil wrote: > From: Hans Verkuil > > This adds support for the DisplayPort CEC-Tunneling-over-AUX > feature that is part of the DisplayPort 1.3 standard. > > Unfortunately, not all DisplayPort/USB-C to HDMI adapters with a > chip that has this ca

Re: [PATCHv4 3/3] drm/i915: add DisplayPort CEC-Tunneling-over-AUX support

2017-09-18 Thread Ville Syrjälä
On Sat, Sep 16, 2017 at 04:17:26PM +0200, Hans Verkuil wrote: > From: Hans Verkuil > > Implement support for this DisplayPort feature. > > The cec device is created whenever it detects an adapter that > has this feature. It is only removed when a new adapter is connected > that does not support

Re: [PATCH 1/4] drm/amd/amdgpu: Fold TTM debugfs entries into array

2017-09-18 Thread Tom St Denis
On 18/09/17 08:48 AM, Christian König wrote: Am 18.09.2017 um 14:35 schrieb Tom St Denis: Signed-off-by: Tom St Denis ---   drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c | 53 ++---   drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.h |  4 +--   2 files changed, 31 insertions(+), 26

Re: [PATCH 1/4] drm/amd/amdgpu: Fold TTM debugfs entries into array

2017-09-18 Thread Christian König
Am 18.09.2017 um 15:01 schrieb Tom St Denis: On 18/09/17 08:48 AM, Christian König wrote: Am 18.09.2017 um 14:35 schrieb Tom St Denis: Signed-off-by: Tom St Denis --- drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c | 53 ++--- drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.h |

[Bug 102380] intel_gpu_top: Test requirement not met in function drm_open_driver_master, file drmtest.c:391:

2017-09-18 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=102380 Petri Latvala changed: What|Removed |Added Resolution|--- |FIXED Status|NEW

Re: [PATCHv4 3/3] drm/i915: add DisplayPort CEC-Tunneling-over-AUX support

2017-09-18 Thread Hans Verkuil
Hi Ville, On 09/18/2017 03:05 PM, Ville Syrjälä wrote: > On Sat, Sep 16, 2017 at 04:17:26PM +0200, Hans Verkuil wrote: >> From: Hans Verkuil >> >> Implement support for this DisplayPort feature. >> >> The cec device is created whenever it detects an adapter that >> has this feature. It is only re

Re: [PATCH v4] drm/bridge/sii8620: add remote control support

2017-09-18 Thread Maciej Purski
Hi Hans, some time ago in reply to your email I described what messages does the MHL driver receive and at what time intervals. Regarding that information, do you think that a similar solution as in [1] is required? Would it be OK, if I just set REP_DELAY and REP_PERIOD to values, which I presente

[Bug 102840] nouveau PGRAPH - ERROR nsource: ILLEGAL_MTHD nstatus: PROTECTION_FAULT

2017-09-18 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=102840 Bug ID: 102840 Summary: nouveau PGRAPH - ERROR nsource: ILLEGAL_MTHD nstatus: PROTECTION_FAULT Product: DRI Version: unspecified Hardware: x86 (IA32) OS: L

Re: [PATCHv4 3/3] drm/i915: add DisplayPort CEC-Tunneling-over-AUX support

2017-09-18 Thread Ville Syrjälä
On Mon, Sep 18, 2017 at 04:07:41PM +0200, Hans Verkuil wrote: > Hi Ville, > > On 09/18/2017 03:05 PM, Ville Syrjälä wrote: > > On Sat, Sep 16, 2017 at 04:17:26PM +0200, Hans Verkuil wrote: > >> From: Hans Verkuil > >> > >> Implement support for this DisplayPort feature. > >> > >> The cec device i

Re: [PATCH v4] drm/bridge/sii8620: add remote control support

2017-09-18 Thread Hans Verkuil
On 09/18/2017 04:15 PM, Maciej Purski wrote: > Hi Hans, > some time ago in reply to your email I described what messages does > the MHL driver receive and at what time intervals. > Regarding that information, do you think that a similar solution as > in [1] is required? Would it be OK, if I just se

[Bug 102840] nouveau PGRAPH - ERROR nsource: ILLEGAL_MTHD nstatus: PROTECTION_FAULT

2017-09-18 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=102840 Pierre Moreau changed: What|Removed |Added Component|DRM/other |Driver/nouveau QA Contact|

Re: [PATCHv4 3/3] drm/i915: add DisplayPort CEC-Tunneling-over-AUX support

2017-09-18 Thread Hans Verkuil
On 09/18/2017 04:36 PM, Ville Syrjälä wrote: > On Mon, Sep 18, 2017 at 04:07:41PM +0200, Hans Verkuil wrote: >> Hi Ville, >> >> On 09/18/2017 03:05 PM, Ville Syrjälä wrote: >>> On Sat, Sep 16, 2017 at 04:17:26PM +0200, Hans Verkuil wrote: From: Hans Verkuil Implement support for thi

Re: [PATCHv4 3/3] drm/i915: add DisplayPort CEC-Tunneling-over-AUX support

2017-09-18 Thread Ville Syrjälä
On Mon, Sep 18, 2017 at 05:26:43PM +0200, Hans Verkuil wrote: > On 09/18/2017 04:36 PM, Ville Syrjälä wrote: > > On Mon, Sep 18, 2017 at 04:07:41PM +0200, Hans Verkuil wrote: > >> Hi Ville, > >> > >> On 09/18/2017 03:05 PM, Ville Syrjälä wrote: > >>> On Sat, Sep 16, 2017 at 04:17:26PM +0200, Hans V

[PATCH v2] drm: exynos: Add driver for HDMI audio interface

2017-09-18 Thread Sylwester Nawrocki
The hdmi-codec interface added in this patch is required to properly support HDMI audio. Currently the audio part of the SoC internal HDMI transmitter is configured with fixed values, which makes HDMI audio working by chance, only on boards having an external audio codec connected in parallel with

[PATCH v2 2/4] drm: Add support for a panel-orientation connector property

2017-09-18 Thread Hans de Goede
On some devices the LCD panel is mounted in the casing in such a way that the up/top side of the panel does not match with the top side of the device (e.g. it is mounted upside-down). This commit adds the necessary infra for lcd-panel drm_connector-s to have a "panel orientation" property to commu

[PATCH v2 1/4] video: fb: Make fbcon dmi quirks usuable for drm drivers too

2017-09-18 Thread Hans de Goede
Some x86 clamshell design devices use portrait tablet LCD panels and a display engine which cannot (transparently) rotate in hardware, so we need to rotate things in software / let user space deal with this. The fbcon code has a set of DMI based quirks to automatically detect such tablet LCD panel

[PATCH v2 4/4] drm/fb-helper: Apply panel orientation connector prop to the primary plane

2017-09-18 Thread Hans de Goede
Apply the "panel orientation" drm connector prop to the primary plane, so that fbcon and fbdev using userspace programs display the right way up. Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=94894 Signed-off-by: Hans de Goede --- Changes in v2: -New patch in v2 of this patch-set --- drive

[PATCH v2 3/4] drm/i915: Add "panel orientation" property to the panel connector

2017-09-18 Thread Hans de Goede
Ideally we could use the VBT for this, that would be simple, in intel_dsi_init() check dev_priv->vbt.dsi.config->rotation, set connector->display_info.panel_orientation accordingly and call drm_connector_init_panel_orientation_property(), done. Unfortunately vbt.dsi.config->rotation is always 0 ev

Re: [PATCH] drm: pl111: constify amba_id

2017-09-18 Thread Eric Anholt
Arvind Yadav writes: > amba_id are not supposed to change at runtime. All functions > working with const amba_id. So mark the non-const structs as const. > > Signed-off-by: Arvind Yadav > --- > drivers/gpu/drm/pl111/pl111_drv.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --

[PATCH 2/4] drm/amd/amdgpu: add support for iova_to_phys to replace TTM trace (v3)

2017-09-18 Thread Tom St Denis
Signed-off-by: Tom St Denis (v2): Add domain to iova debugfs (v3): Add true read/write methods to access system memory of pages mapped to the device --- drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c | 104 1 file changed, 104 insertions(+) diff --git a/drivers/g

[PATCH 3/4] drm/amd/amdgpu: remove usage of ttm trace

2017-09-18 Thread Tom St Denis
Signed-off-by: Tom St Denis --- drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c | 36 +++-- 1 file changed, 3 insertions(+), 33 deletions(-) diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c index 02ae32378e1c..b41d03226c26 100644

[PATCH 1/4] drm/amd/amdgpu: Fold TTM debugfs entries into array (v2)

2017-09-18 Thread Tom St Denis
Signed-off-by: Tom St Denis (v2): add domains and avoid strcmp --- drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c | 54 ++--- drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.h | 4 +-- 2 files changed, 32 insertions(+), 26 deletions(-) diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_

remove ttm trace and add iova debugfs (v2)

2017-09-18 Thread Tom St Denis
In this respin I add some changes per feedback and make the iova entry have proper read/write methods which access pages mapped by amdgpu. So there is no need for /dev/mem or /dev/fmem anymore when reading system memory. Patches 3/4 are unchanged and remove the TTM trace from amdgpu and from TTM

[PATCH 4/4] drm/ttm: Remove TTM dma tracepoint since it's not required anymore

2017-09-18 Thread Tom St Denis
Signed-off-by: Tom St Denis --- drivers/gpu/drm/ttm/Makefile | 2 +- drivers/gpu/drm/ttm/ttm_debug.c | 74 - drivers/gpu/drm/ttm/ttm_trace.h | 87 --- drivers/gpu/drm/ttm/ttm_tracepoints.c | 45 -- 4

Re: [PATCH v3 2/2] drm: add backwards compatibility support for drm_kms_helper.edid_firmware

2017-09-18 Thread Jani Nikula
On Fri, 15 Sep 2017, Ville Syrjälä wrote: > Hmm. Wouldn't you just have to have custom kernel_param_ops and > that's about it? Seems like that could be a bit cleaner. Here's a shot at that. Completely untested, but seems like this should do the trick, and is less complex than I anticipated. BR,

[PATCH] drm: add backwards compatibility support for drm_kms_helper.edid_firmware

2017-09-18 Thread Jani Nikula
Add drm_kms_helper.edid_firmware module parameter with param ops hooks to set drm.edid_firmware instead, for backwards compatibility. Suggested-by: Ville Syrjälä Cc: Abdiel Janulgue Cc: Daniel Vetter Cc: Ville Syrjälä Signed-off-by: Jani Nikula --- drivers/gpu/drm/drm_edid_load.c | 1

Re: [PATCH 8/8] etnaviv: remove IOMMU dependency

2017-09-18 Thread Philipp Zabel
On Fri, 2017-09-15 at 19:04 +0200, Lucas Stach wrote: > Using the IOMMU API to manage the internal GPU MMU has been an > historical accident and it keeps getting in the way, as well as > entangling the driver with the inner workings of the IOMMU > subsystem. > > Clean this up by removing the usage

Re: [PATCH 6/8] etnaviv: mmu: stop using iommu map/unmap functions

2017-09-18 Thread Philipp Zabel
On Fri, 2017-09-15 at 19:04 +0200, Lucas Stach wrote: > This is a preparation to remove the etnaviv dependency on the IOMMU > subsystem by importing the relevant parts of the iommu map/unamp > functions into the driver. > > Signed-off-by: Lucas Stach > --- >  drivers/gpu/drm/etnaviv/etnaviv_mmu.c

Re: [PATCH 1/8] etnaviv: remove iommu fault handler

2017-09-18 Thread Philipp Zabel
On Fri, 2017-09-15 at 19:04 +0200, Lucas Stach wrote: > The handler has never been used, so it's really just dead code. > > Signed-off-by: Lucas Stach Reviewed-by: Philipp Zabel regards Philipp ___ dri-devel mailing list dri-devel@lists.freedesktop.o

Re: [PATCH 2/8] etnaviv: remove iova_to_phys iommu ops

2017-09-18 Thread Philipp Zabel
On Fri, 2017-09-15 at 19:04 +0200, Lucas Stach wrote: > They are not used in any way, so can go away. > > Signed-off-by: Lucas Stach Reviewed-by: Philipp Zabel ___ dri-devel mailing list dri-devel@lists.freedesktop.org https://lists.freedesktop.org/ma

Re: [PATCH 3/8] etnaviv: iommuv1: fold pagetable alloc and free into caller

2017-09-18 Thread Philipp Zabel
On Fri, 2017-09-15 at 19:04 +0200, Lucas Stach wrote: > Those functions are simple enough to fold them into the calling > function. This also fixes a correctness issue, as the alloc/free > functions didn't specifiy the device the memory was allocated for. > > Signed-off-by: Lucas Stach Reviewed-

Re: [PATCH 4/8] etnaviv: iommuv1: remove map_lock

2017-09-18 Thread Philipp Zabel
On Fri, 2017-09-15 at 19:04 +0200, Lucas Stach wrote: > It wasn't protecting anything, as the single word writes used to > set up or tear down a translation are already inherently atomic, > so the spinlock is pure overhead. > > Signed-off-by: Lucas Stach This would have been made clearer if patc

Re: [PATCH 5/8] etnaviv: iommuv1: fold pgtable_write into callers

2017-09-18 Thread Philipp Zabel
On Fri, 2017-09-15 at 19:04 +0200, Lucas Stach wrote: > A function doing a single assignment is not really helping the > code flow. > > Signed-off-by: Lucas Stach The two functions are very similar, but given the different return value I think they are small enough to be mostly duplicated. Revi

Re: [PATCH 7/8] etnaviv: mmu: mark local functions static

2017-09-18 Thread Philipp Zabel
On Fri, 2017-09-15 at 19:04 +0200, Lucas Stach wrote: > And clean up the header file a bit. > > Signed-off-by: Lucas Stach Reviewed-by: Philipp Zabel regards Philipp ___ dri-devel mailing list dri-devel@lists.freedesktop.org https://lists.freedesktop

[Bug 102814] Blender 2.79 flickering

2017-09-18 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=102814 --- Comment #5 from freedesk...@ca.sh13.net --- It can't be old because Blender 2.79 is brand-new (released last week) and Blender 2.78 didn't suffer from this issue. -- You are receiving this mail because: You are the assignee for the bug.

Re: [PATCH] drm: add backwards compatibility support for drm_kms_helper.edid_firmware

2017-09-18 Thread Ville Syrjälä
On Mon, Sep 18, 2017 at 09:20:03PM +0300, Jani Nikula wrote: > Add drm_kms_helper.edid_firmware module parameter with param ops hooks > to set drm.edid_firmware instead, for backwards compatibility. > > Suggested-by: Ville Syrjälä > Cc: Abdiel Janulgue > Cc: Daniel Vetter > Cc: Ville Syrjälä >

[Bug 102814] Blender 2.79 flickering

2017-09-18 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=102814 --- Comment #6 from Dieter Nützel --- Maybe overwritten 'new' defaults (on your side/distro), then? Simple fix is proposed, here: https://bugs.freedesktop.org/show_bug.cgi?id=97059#c9 The old Blender bug should be fixed in Blender 2.8 (hopefull

Re: [PATCHv6 3/5] dt-bindings: document the CEC GPIO bindings

2017-09-18 Thread Rob Herring
On Sun, Sep 17, 2017 at 5:15 AM, Hans Verkuil wrote: > From: Hans Verkuil > > Document the bindings for the cec-gpio module for hardware where the > CEC line and optionally the HPD line are connected to GPIO lines. > > Signed-off-by: Hans Verkuil > Reviewed-by: Linus Walleij > --- > .../device

Re: [PATCH v4 1/2] drm/bridge: add Silicon Image SiI9234 driver

2017-09-18 Thread Rob Herring
On Tue, Sep 12, 2017 at 09:34:07AM +0200, Maciej Purski wrote: > SiI9234 transmitter converts eTMDS/HDMI signal to MHL 1.0. > It is controlled via I2C bus. Its interaction with other > devices in video pipeline is performed mainly on HW level. > The only interaction it does on device driver level i

[Bug 100105] Make Theano OpenCL support work on Clover and RadeonSI

2017-09-18 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=100105 --- Comment #1 from Jan Vesely --- *** Testing for AMD Radeon R7 Graphics (CARRIZO / DRM 3.18.0 / 4.11.0-ROC, LLVM 5.0.0) Ran 6670 tests in 785.274s FAILED (SKIP=12, errors=580, failures=12) all errors are caused by: TypeError: This is for CU

[Bug 91880] Radeonsi on Grenada cards (r9 390) exceptionally unstable and poorly performing

2017-09-18 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=91880 --- Comment #177 from garththei...@hotmail.com --- Created attachment 134324 --> https://bugs.freedesktop.org/attachment.cgi?id=134324&action=edit dmesg capture Logged this problem against 4.13.2. Started up an accelerated program (game) and wi

Re: remove ttm trace and add iova debugfs (v2)

2017-09-18 Thread StDenis, Tom
Should add I was able to read/write system memory mapped by amdgpu with these patches in place on my polaris10 device (with iommu enabled of course). From: amd-gfx on behalf of Tom St Denis Sent: Monday, September 18, 2017 13:33 To: amd-...@lists.freede

[Bug 82431] Garbled screen on boot

2017-09-18 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=82431 Fede (fed...@yahoo.com) changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

linux-next: manual merge of the drm-intel tree with Linus' tree

2017-09-18 Thread Stephen Rothwell
Hi all, Today's linux-next merge of the drm-intel tree got a conflict in: drivers/media/v4l2-core/videobuf2-dma-contig.c between commit: 5b6f9abe5a49 ("media: vb2: add bidirectional flag in vb2_queue") from Linus' tree and commit: c4860ad60564 ("lib/scatterlist: Fix offset type in sg_al

Re: [PATCH] drm/radeon: properly initialize r600_audio_status() data

2017-09-18 Thread Alex Deucher
On Sat, Sep 16, 2017 at 8:20 AM, Christian König wrote: > Am 15.09.2017 um 22:06 schrieb Arnd Bergmann: >> >> The structure returned from r600_audio_status() is only partially >> initialized, and older gcc versions (4.3 and 4.4) warn about this: >> >> drivers/gpu/drm/radeon/r600_hdmi.c: In functio

[radeon-alex:amd-staging-drm-next 1033/1053] arch/ia64/include/uapi/asm/swab.h:20:23: warning: 'tmp' may be used uninitialized in this function

2017-09-18 Thread kbuild test robot
tree: git://people.freedesktop.org/~agd5f/linux.git amd-staging-drm-next head: dcae401d111324489c066aa57ed9c77b97b475f9 commit: e2e8b699af4f02a8ce46d338bbb1d227f68523b1 [1033/1053] drm/amd/powerplay: add CI asics support to smumgr config: ia64-allyesconfig (attached as .config) compiler: ia64-

[radeon-alex:amd-staging-drm-next 1045/1053] drivers/gpu//drm/amd/amdgpu/si_ih.c:304:2: error: unknown field 'prescreeen_iv' specified in initializer

2017-09-18 Thread kbuild test robot
tree: git://people.freedesktop.org/~agd5f/linux.git amd-staging-drm-next head: dcae401d111324489c066aa57ed9c77b97b475f9 commit: b4b69eb86f0e0c036cf9d46e99801d8c2848847d [1045/1053] drm/amdgpu: Add prescreening stage in IH processing config: ia64-allyesconfig (attached as .config) compiler: ia6

[radeon-alex:amd-staging-drm-next 1033/1053] ci_smc.c:(.text+0xe30): multiple definition of `ci_send_msg_to_smc'

2017-09-18 Thread kbuild test robot
tree: git://people.freedesktop.org/~agd5f/linux.git amd-staging-drm-next head: dcae401d111324489c066aa57ed9c77b97b475f9 commit: e2e8b699af4f02a8ce46d338bbb1d227f68523b1 [1033/1053] drm/amd/powerplay: add CI asics support to smumgr config: i386-randconfig-i0-201738 (attached as .config) compile

[radeon-alex:amd-staging-drm-next 1046/1053] drivers/gpu//drm/amd/lib/../include/linux/chash.h:286:50: error: '_BITOPS_LONG_SHIFT' undeclared

2017-09-18 Thread kbuild test robot
tree: git://people.freedesktop.org/~agd5f/linux.git amd-staging-drm-next head: dcae401d111324489c066aa57ed9c77b97b475f9 commit: 18c073719186a393b41715686cf95175c58919df [1046/1053] drm/amd: Closed hash table with low overhead config: ia64-allyesconfig (attached as .config) compiler: ia64-linux

[radeon-alex:amd-staging-drm-next 0/6] drivers/gpu/drm/amd/amdgpu/../include/linux/chash.h:286:50: error: '_BITOPS_LONG_SHIFT' undeclared

2017-09-18 Thread kbuild test robot
tree: git://people.freedesktop.org/~agd5f/linux.git amd-staging-drm-next head: dcae401d111324489c066aa57ed9c77b97b475f9 commit: c18d4ac89dc8ad1622c3abc7f4ff31b563c0196b [0/6] drm/amdgpu: Track pending retry faults in IH and VM (v2) config: ia64-allyesconfig (attached as .config) compiler: ia64

[radeon-alex:amd-staging-drm-next 6/6] ERROR: "__umoddi3" [drivers/gpu/drm/amd/lib/chash.ko] undefined!

2017-09-18 Thread kbuild test robot
Hi Alex, First bad commit (maybe != root cause): tree: git://people.freedesktop.org/~agd5f/linux.git amd-staging-drm-next head: dcae401d111324489c066aa57ed9c77b97b475f9 commit: dcae401d111324489c066aa57ed9c77b97b475f9 [6/6] drm/amdgpu: fix typo in si_ih.c config: i386-allmodconfig (attached