[Bug 107864] Specific Shadertoy demo renders garbage in empty parts of target surface

2018-09-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=107864 --- Comment #1 from Ilia Mirkin --- Adding else { fragColor = vec4(0); } at the bottom of mainImage appears to "fix" it. fragColor is otherwise ending up with random values (effectively whatever happened to be in the registers,

[Bug 107864] Specific Shadertoy demo renders garbage in empty parts of target surface

2018-09-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=107864 Christopher Snowhill changed: What|Removed |Added Hardware|Other |x86-64 (AMD64)

[Bug 107864] Specific Shadertoy demo renders garbage in empty parts of target surface

2018-09-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=107864 Bug ID: 107864 Summary: Specific Shadertoy demo renders garbage in empty parts of target surface Product: Mesa Version: git Hardware: Other OS: All

[PATCH v6 14/19] drm/msm/dpu: remove cdm block support from resource manager

2018-09-07 Thread Jeykumar Sankaran
Support for CDM block is not present in DPU. Remove CDM handlers from resource manager. changes in v4: - Introduced in the series changes in v5: - Remove catalog references to CDM (Sean) changes in v6: - none Signed-off-by: Jeykumar Sankaran Reviewed-by: Sean Paul ---

[PATCH v6 19/19] drm/msm/dpu: remove RM topology definition

2018-09-07 Thread Jeykumar Sankaran
RM maintained a redundant definition for display topology to identify the no. of hw blocks needed for a display and their hardware dependencies. This information can be implicitly deduced from the msm_display_topology structure available in RM reserve request. In addition to getting rid of the

[PATCH v6 17/19] drm/msm/dpu: remove RM dependency on connector state

2018-09-07 Thread Jeykumar Sankaran
Connector states were passed around RM to update the custom topology connector property with chosen topology data. Now that we got rid of both custom properties and topology names, this change cleans up the mechanism to pass connector states across RM helpers and encoder functions. changes in v5:

[PATCH v6 13/19] drm/msm/dpu: clean up destination scaler residue

2018-09-07 Thread Jeykumar Sankaran
Destination scaling(DS) is a Snapdragon hardware feature to scale up the display ROI after layer blending. DPU driver doesn't support programming of DS blocks yet. This change cleans up the residual code present in catalog and RM for DS block handling. Support for the same can be added back when

[PATCH v6 15/19] drm/msm/dpu: remove LOCK/CLEAR support in RM

2018-09-07 Thread Jeykumar Sankaran
DPU had the support to LOCK the hw resources in atomic check and CLEAR the locked resources explicitly through custom property values. Now that DPU is stripped off of all the custom properties, the RM handlers for this feature will be no-op's. This change gets rid of all its references. changes

[PATCH v6 16/19] drm/msm/dpu: remove display H_TILE from encoder

2018-09-07 Thread Jeykumar Sankaran
Encoder H_TILE values are not used for allocating the hw blocks. no. of hw_intf blocks provides the info. changes in v4: - remove irrelevant changes (Sean) - retain log macros (Sean) changes in v5: - none changes in v6: - none Signed-off-by: Jeykumar Sankaran

[PATCH v6 18/19] drm/msm/dpu: relax parameter validation in encoders

2018-09-07 Thread Jeykumar Sankaran
DPU, being over protective, validates every parameter of a module. This change traces the call stack for some of encoder functions affected by previous set of clean up patches and cleans up unwanted validations. changes in v5: - Introduced in the series changes in v6: - none

[PATCH v6 08/19] drm/msm/dpu: iterate for assigned hw ctl in virtual encoder

2018-09-07 Thread Jeykumar Sankaran
In virtual encoder modeset, DPU makes RM request to assign hw blocks for the display. It is also expected in modeset to iterate and associate the physical encoders with their relevant hw blocks. Ping pong blocks are already handled here but hw ctl blocks are not. This change moves the hw_ctl

[PATCH v6 06/19] drm/msm/dpu: enable master-slave encoders explicitly

2018-09-07 Thread Jeykumar Sankaran
Identify slave-master encoders during initialization and enable the encoders explicitly as the current logic has redundant and ambiguous loops. changes in v4: - identify master/slave encoder while adding adding physical encoders(Sean) changes in v5: - get rid of

[PATCH v6 02/19] drm/msm/dpu: squash power handle event types

2018-09-07 Thread Jeykumar Sankaran
DPU power handler maintained PRE/POST versions of power ENABLE/DISABLE events to accommodate tasks which need be handled before/after data bus voting. But since the bus voting API's are deprecated and removed from the driver, squash the events and their clients respective event handlers to handle

[PATCH v6 11/19] drm/msm/dpu: move hw resource tracking to crtc state

2018-09-07 Thread Jeykumar Sankaran
Prep changes for state based resource management. Moves all the hw block tracking for the crtc to the state object. changes in v4: - Serialize crtc state access in debugfs handlers (Sean) - Split the crtc width query as a separate change (Sean) changes in v5: - mode set

[PATCH v6 03/19] drm/msm/dpu: remove scalar config definitions

2018-09-07 Thread Jeykumar Sankaran
cleans up left out scalar config definitions from headers changes in v4: - none changes in v5: - none changes in v6: - none Signed-off-by: Jeykumar Sankaran Reviewed-by: Sean Paul --- drivers/gpu/drm/msm/disp/dpu1/dpu_crtc.h| 2 --

[PATCH v6 05/19] drm/msm/dpu: remove ping pong split topology variables

2018-09-07 Thread Jeykumar Sankaran
removes left out variables of previous ping pong split topology cleanup. changes in v4: - none changes in v5: - none changes in v6: - none Signed-off-by: Jeykumar Sankaran Reviewed-by: Sean Paul --- drivers/gpu/drm/msm/disp/dpu1/dpu_crtc.h | 3 --- 1 file changed, 3

[PATCH v6 09/19] drm/msm/dpu: avoid querying for hw intf before assignment

2018-09-07 Thread Jeykumar Sankaran
Resource manager assigns hw_intf blocks for the encoder only on modeset. If queried for hw_intf objects during init, it will be NULL. Since hw_intf objects are needed only after encoder enable, defer the query to encoder enable which will be triggered after modeset. changes in v4: - Add

[PATCH v6 12/19] drm/msm/dpu: rename hw_ctl to lm_ctl

2018-09-07 Thread Jeykumar Sankaran
Rename hw_ctl to lm_ctl to mean the ctl associated with the hw layer mixer block. sed -i 's/\([*@.>]\)hw_ctl\([^s]\)/\1lm_ctl\2/g' dpu_crtc.c dpu_crtc.h changes in v4: - Specifiy shell command used for renaming (Sean) changes in v5: - none changes in v6: - none

[PATCH v6 00/19] clean up DPU for RM refactor

2018-09-07 Thread Jeykumar Sankaran
Based on the comments received for the patch series[1] and to make the review process a bit more easy, spliting up the patches for cleanup and resource manager refactor. This series cleans up and prepares the DPU for upcoming RM changes. [1] https://patchwork.freedesktop.org/series/44669/

[PATCH v6 07/19] drm/msm/dpu: use kms stored hw mdp block

2018-09-07 Thread Jeykumar Sankaran
Avoid querying RM for hw mdp block. Use the one stored in KMS during initialization. changes in v4: - none changes in v5: - none changes in v6: - none Signed-off-by: Jeykumar Sankaran Reviewed-by: Sean Paul --- drivers/gpu/drm/msm/disp/dpu1/dpu_encoder_phys_cmd.c | 12

[PATCH v6 10/19] drm/msm/dpu: make crtc get_mixer_width helper static

2018-09-07 Thread Jeykumar Sankaran
Mark CRTC get_mixer_width helper API static as it is not used outside the file. changes in v4: - Patch introduced in the series changes in v5: - Simplify the inline function (Sean) changes in v6: - none Signed-off-by: Jeykumar Sankaran Reviewed-by: Sean Paul ---

[PATCH v6 04/19] drm/msm/dpu: remove resource pool manager

2018-09-07 Thread Jeykumar Sankaran
resource pool manager utility was introduced to manage rotator sessions. Removing the support as the rotator feature doesn't exist. changes in v4: - none changes in v5: - none changes in v6: - none Signed-off-by: Jeykumar Sankaran Reviewed-by: Sean Paul ---

[PATCH v6 01/19] drm/msm/dpu: remove debugfs support for misr

2018-09-07 Thread Jeykumar Sankaran
MISR support is the debug feature present in Snapdragon chipsets. At the layer mixer and interfaces, MISR algorithm can generate CRC signatures of the pixel data which can be used for validating the frames generated. Since there are no clients for this feature, strip down the support from the

[Bug 106671] Frequent lock ups for AMD RX 550 graphics card

2018-09-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=106671 --- Comment #14 from Alan W. Irwin --- Created attachment 141479 --> https://bugs.freedesktop.org/attachment.cgi?id=141479=edit compressed dmesg output from current direct graphics experiment -- You are receiving this mail because: You are

[Bug 107863] Kernel panic when external monitors go blank

2018-09-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=107863 --- Comment #1 from Ainola --- I should also note that a very similar software (desktop) setup with a Vega 64 card has no such issue with an external displayport monitor. -- You are receiving this mail because: You are the assignee for the

[Bug 105018] Kernel panic when waking up after screen goes blank.

2018-09-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=105018 --- Comment #41 from Ainola --- ecomer, as I suspect we are both experiencing the same issue, here's a new report you (and anyone else lurking) can follow: https://bugs.freedesktop.org/show_bug.cgi?id=107863 -- You are receiving this mail

[Bug 107863] Kernel panic when external monitors go blank

2018-09-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=107863 Bug ID: 107863 Summary: Kernel panic when external monitors go blank Product: DRI Version: XOrg git Hardware: x86-64 (AMD64) OS: Linux (All) Status: NEW

Re: [RFC] drm/amdgpu: Add macros and documentation for format modifiers.

2018-09-07 Thread Marek Olšák
On Fri, Sep 7, 2018 at 5:55 AM, Bas Nieuwenhuizen wrote: > On Fri, Sep 7, 2018 at 6:51 AM Marek Olšák wrote: >> >> Hopefully this answers some questions. >> >> Other parameters that affect tiling layouts are GB_ADDR_CONFIG (all >> chips) and MC_ARB_RAMCFG (GFX6-8 only), and those vary with each

[Bug 106671] Frequent lock ups for AMD RX 550 graphics card

2018-09-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=106671 --- Comment #13 from Alan W. Irwin --- Well, after 1.5 (successful) days with the remote graphics experiment, I decided instead it made more sense to go after the quicker acting instability that I have previously experienced in direct graphics

Add new DIRTY fb flags to pass interlaced alternate fields

2018-09-07 Thread Satish Nagireddy
Hi, Could you please suggest me on this? The requirement is to render interlaced alternate buffers. In case of alternate, top field and bottom field are in two different buffers. The question is, can we pass existing flags DRM_MODE_PRESENT_TOP_FIELD and DRM_MODE_PRESENT_TOP_FIELD to

[Bug 107784] [AMD tahiti XT] displayport broken

2018-09-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=107784 --- Comment #19 from Sylvain BERTRAND --- Breaking commit is a merge commit from upstream mainline: commit 13e091b6dd0e78a518a7d8756607d3acb8215768 Merge: eac341194426 1088c6eef261 Author: Linus Torvalds Date: Mon Aug 13 18:28:19

Re: [Bug 107784] [AMD tahiti XT] displayport broken

2018-09-07 Thread sylvain . bertrand
Breaking commit is a merge commit from upstream mainline: commit 13e091b6dd0e78a518a7d8756607d3acb8215768 Merge: eac341194426 1088c6eef261 Author: Linus Torvalds Date: Mon Aug 13 18:28:19 2018 -0700 Merge branch 'x86-timers-for-linus' of

Re: [Freedreno] [PATCH v5 17/19] drm/msm/dpu: remove RM dependency on connector state

2018-09-07 Thread Jeykumar Sankaran
On 2018-09-06 09:14, Jordan Crouse wrote: On Wed, Sep 05, 2018 at 07:08:26PM -0700, Jeykumar Sankaran wrote: Connector states were passed around RM to update the custom topology connector property with chosen topology data. Now that we got rid of both custom properties and topology names, this

[Bug 107693] [wine] Wolfenstein: The Old Blood - can't find GL_EXT_framebuffer_object

2018-09-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=107693 --- Comment #10 from Sven Arvidsson --- FWIW, the patch doesn't apply cleanly, but still works with Wine 3.15. The game starts and looks ok with MESA_GLSL_VERSION_OVERRIDE=150 MESA_GL_VERSION_OVERRIDE=3.2COMPAT (both on 18.0.5 without real

Re: [PATCH v2] fbdev: fix kerneldoc

2018-09-07 Thread Daniel Vetter
On Fri, Sep 07, 2018 at 07:47:08PM +0200, Michał Mirosław wrote: > As noticed by kbuild test robot , > remove_conflicting_pci_framebuffers()'s second argument > is called res_id not resource_id. Fix this. > > Signed-off-by: Michał Mirosław > --- > * Against drm-misc-next, as that's where

Re: [PATCH v2] drm: refuse ADDFB2 ioctl for broken bigendian drivers

2018-09-07 Thread Daniel Vetter
On Fri, Sep 07, 2018 at 09:32:13AM +0200, Gerd Hoffmann wrote: > Drivers must set the quirk_addfb_prefer_host_byte_order quirk to make > the drm_mode_addfb() compat code work correctly on bigendian machines. > > If they don't they interpret pixel_format values incorrectly for bug > compatibility,

Re: [PATCH v2 4/4] drm/fb-helper: improve documentation and print warnings

2018-09-07 Thread Daniel Vetter
On Fri, Sep 07, 2018 at 12:18:10AM +0200, Peter Wu wrote: > Clarify the relation between drm_fb_helper_fbdev_setup/teardown. Clarify > requirements for the new generic fbdev emulation API and log some more > details in case the driver does something wrong. Fix related typos. > > Cc: Noralf

Re: [PATCH 02/14] drm: add helper iterator functions for plane fb_damage_clips blob

2018-09-07 Thread Daniel Vetter
On Thu, Sep 06, 2018 at 09:44:25PM +, Deepak Singh Rawat wrote: > > > > #include > > > > > > /** > > > @@ -75,6 +76,11 @@ > > > * While kernel does not error for overlapped damage clips, it is > > discouraged. > > > */ > > > > > > +static int convert_fixed_to_32(int fixed) > > > +{ > >

Re: [RFC PATCH v2 1/3] drm/fourcc: Add 'bpp' field for formats with non-integer bytes-per-pixel

2018-09-07 Thread Daniel Vetter
On Fri, Sep 07, 2018 at 01:45:36PM +0100, Brian Starkey wrote: > Hi Daniel, > > On Fri, Aug 31, 2018 at 10:17:30AM +0200, Daniel Vetter wrote: > > On Thu, Aug 23, 2018 at 04:23:41PM +0100, Brian Starkey wrote: > > > Some formats have a non-integer number of bytes per pixel, which can't > > > be

[Bug 106928] When starting a match Rocket League crashes on "Go"

2018-09-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=106928 Roland Scheidegger changed: What|Removed |Added Resolution|--- |FIXED Status|NEW

Re: [PATCH 1/6] drm/bridge: use bus flags in bridge timings

2018-09-07 Thread Stefan Agner
On 07.09.2018 00:10, Linus Walleij wrote: > On Thu, Sep 6, 2018 at 10:25 PM Stefan Agner wrote: > >> Ok, I read a bit up on the history of bridge timing, especially: >> https://www.spinics.net/lists/dri-devel/msg155618.html >> >> IMHO, this got overengineered. For displays we do not need all

Re: [PATCH 06/16] drm: rcar-du: Perform the initial CRTC setup from rcar_du_crtc_get()

2018-09-07 Thread jacopo mondi
Hi Laurent, On Tue, Sep 04, 2018 at 03:10:17PM +0300, Laurent Pinchart wrote: > The rcar_du_crtc_get() function is always immediately followed by a call > to rcar_du_crtc_setup(). Call the later from the former to simplify the > code, and add a comment to explain how the get and put calls are >

[Bug 106928] When starting a match Rocket League crashes on "Go"

2018-09-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=106928 Andrés Gómez García changed: What|Removed |Added CC||ago...@igalia.com,

Re: [PATCH v4 2/6] drm/nouveau: Add NV_PRINTK_ONCE and variants

2018-09-07 Thread Lyude Paul
On Thu, 2018-09-06 at 22:35 -0700, Joe Perches wrote: > On Thu, 2018-09-06 at 17:43 -0400, Lyude Paul wrote: > > Since we're about to use this in nouveau_backlight.c. Same thing as > > DRM_WARN_ONCE, DRM_INFO_ONCE, etc... > > Can you redefine this in terms of the patches I submitted > instead? >

Re: [PATCH] android:ion: the order and count are in the wrong position

2018-09-07 Thread Laura Abbott
On 09/07/2018 08:20 AM, jun qian wrote: The value in the wrong position will cause misunderstanding, when the debug infomations display in the window. I think the existing order is okay, it's just not separated well. It's "$count pages of order $order". I also just acked a patch to remove all

[Bug 103199] [CI] igt@drv_missed_irq - fail - Failed assertion: missed_rings == expect_rings

2018-09-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=103199 --- Comment #7 from Chris Wilson --- It should do the trick. My memory of the test says that if we can't open the file we say the engine mask is 0. However, I do have an update to the igt pending review in case it doesn't. We shall see what

[Bug 103199] [CI] igt@drv_missed_irq - fail - Failed assertion: missed_rings == expect_rings

2018-09-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=103199 Martin Peres changed: What|Removed |Added Status|RESOLVED|CLOSED --- Comment #6 from Martin Peres

Re: [PATCH] drm/amdgpu: Fix wornings while make xmldocs

2018-09-07 Thread Michel Dänzer
Hi Iida-san, On 2018-09-06 4:10 a.m., Masanari Iida wrote: > This patch fixes following wornings. > > ./drivers/gpu/drm/amd/amdgpu/amdgpu_vm.c:3011: > warning: Excess function parameter 'dev' description > in 'amdgpu_vm_get_task_info' > > ./drivers/gpu/drm/amd/amdgpu/amdgpu_vm.c:3012: >

Re: [PATCH 03/10] phy: Add MIPI D-PHY configuration options

2018-09-07 Thread Laurent Pinchart
Hi Maxime, On Friday, 7 September 2018 11:56:23 EEST Maxime Ripard wrote: > On Wed, Sep 05, 2018 at 04:43:57PM +0300, Laurent Pinchart wrote: > >> The current set of parameters should cover all the potential users. > >> > >> Signed-off-by: Maxime Ripard > >> --- > >> > >>

Re: [PATCH libdrm] xf86drm: Add signed32 rectangle

2018-09-07 Thread Emil Velikov
Hi Deepak, On 6 September 2018 at 00:47, Deepak Rawat wrote: > With drm subsystem using struct drm_rect to manage rectangular area this > export it to user-space. > > Currently used by drm_mode_atomic blob property FB_DAMAGE_CLIPS. > > --- a/include/drm/drm_mode.h > +++ b/include/drm/drm_mode.h

Re: [PATCH 04/10] phy: dphy: Add configuration helpers

2018-09-07 Thread Laurent Pinchart
Hi Maxime, On Friday, 7 September 2018 16:37:39 EEST Maxime Ripard wrote: > On Wed, Sep 05, 2018 at 04:46:05PM +0300, Laurent Pinchart wrote: > > On Wednesday, 5 September 2018 12:16:35 EEST Maxime Ripard wrote: > >> The MIPI D-PHY spec defines default values and boundaries for most of > >> the

Re: [PATCH 01/14] drm: add new plane property FB_DAMAGE_CLIPS to send damage during plane update

2018-09-07 Thread Ville Syrjälä
On Thu, Sep 06, 2018 at 10:32:58PM +, Deepak Singh Rawat wrote: > > > > On Wed, Sep 05, 2018 at 04:38:48PM -0700, Deepak Rawat wrote: > > > From: Lukasz Spintzyk > > > > > > FB_DAMAGE_CLIPS is an optional plane property to mark damaged regions > > > on the plane in framebuffer coordinates of

Re: [PATCH 00/21] DT cpu node iterator

2018-09-07 Thread Rob Herring
On Fri, Sep 7, 2018 at 7:54 AM Michal Simek wrote: > > Hi Rob, > > 2018-09-05 21:37 GMT+02:00 Rob Herring : >> >> This series adds an iterator for cpu nodes and converts users over to use >> it or of_get_cpu_node in some cases. This allows us to remove the >> dependency on device_type property

[Bug 107693] [wine] Wolfenstein: The Old Blood - can't find GL_EXT_framebuffer_object

2018-09-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=107693 --- Comment #9 from gloriouseggr...@gmail.com --- it may have been using 3.3compat or 3.2compat, dont remember which, but that patch was working with both games -- You are receiving this mail because: You are the assignee for the

[Bug 103199] [CI] igt@drv_missed_irq - fail - Failed assertion: missed_rings == expect_rings

2018-09-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=103199 Chris Wilson changed: What|Removed |Added Status|REOPENED|RESOLVED Resolution|---

Re: [PATCH v5 00/19] clean up DPU for RM refactor

2018-09-07 Thread Sean Paul
On Wed, Sep 05, 2018 at 07:08:09PM -0700, Jeykumar Sankaran wrote: > Based on the comments received for the patch series[1] and to > make the review process a bit more easy, spliting up the > patches for cleanup and resource manager refactor. This series > cleans up and prepares the DPU for

Re: [PATCH 09/10] phy: Add Cadence D-PHY support

2018-09-07 Thread Maxime Ripard
On Wed, Sep 05, 2018 at 04:48:27PM +0300, Laurent Pinchart wrote: > Hi Maxime, > > Thank you for the patch. > > On Wednesday, 5 September 2018 12:16:40 EEST Maxime Ripard wrote: > > Cadence has designed a D-PHY that can be used by the, currently in tree, > > DSI bridge (DRM), CSI Transceiver and

Re: [PATCH 04/10] phy: dphy: Add configuration helpers

2018-09-07 Thread Maxime Ripard
On Wed, Sep 05, 2018 at 04:46:05PM +0300, Laurent Pinchart wrote: > Hi Maxime, > > Thank you for the patch. > > On Wednesday, 5 September 2018 12:16:35 EEST Maxime Ripard wrote: > > The MIPI D-PHY spec defines default values and boundaries for most of the > > parameters it defines. Introduce

[Bug 107855] [regression] [amdgpu] [drm:vce_v2_0_start [amdgpu]] *ERROR* VCE not responding, giving up!!!

2018-09-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=107855 --- Comment #8 from Pontus Gråskæg --- Created attachment 141474 --> https://bugs.freedesktop.org/attachment.cgi?id=141474=edit dmesg_4.19.0-041900rc2_dc.eq.0_initrdfixed -- You are receiving this mail because: You are the assignee for the

[Bug 107855] [regression] [amdgpu] [drm:vce_v2_0_start [amdgpu]] *ERROR* VCE not responding, giving up!!!

2018-09-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=107855 --- Comment #7 from Pontus Gråskæg --- OK, symlinks done, initrd rebuilt Results are: With amdgpu.dc=0 System boots with normal behaviour. Laptop eDP screen works, VGA output works. I have no HDMI monitor to check if HDMI output works. With

[Bug 107855] [regression] [amdgpu] [drm:vce_v2_0_start [amdgpu]] *ERROR* VCE not responding, giving up!!!

2018-09-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=107855 --- Comment #6 from Pontus Gråskæg --- Created attachment 141473 --> https://bugs.freedesktop.org/attachment.cgi?id=141473=edit dmesg_4.19.0-041900rc2_dc.eq.1_initrdfixed -- You are receiving this mail because: You are the assignee for the

Re: [linux-sunxi] Re: [PATCH v4 1/4] clk: sunxi-ng: Enable DE2_CCU for SUN8I and SUN50I

2018-09-07 Thread Maxime Ripard
On Thu, Sep 06, 2018 at 07:10:06AM +0200, Jernej Škrabec wrote: > Dne sreda, 05. september 2018 ob 09:03:35 CEST je Maxime Ripard napisal(a): > > On Tue, Sep 04, 2018 at 10:06:06PM +0530, Jagan Teki wrote: > > > Allwinner SoC like SUN8I and SUN50I has DE2 CCU so enable them > > > as default. > > >

Re: [PATCH v5 17/19] drm/msm/dpu: remove RM dependency on connector state

2018-09-07 Thread Sean Paul
On Wed, Sep 05, 2018 at 07:08:26PM -0700, Jeykumar Sankaran wrote: > Connector states were passed around RM to update the custom > topology connector property with chosen topology data. Now that > we got rid of both custom properties and topology names, this > change cleans up the mechanism to

Re: [Freedreno] [PATCH v5 18/19] drm/msm/dpu: relax parameter validation in encoders

2018-09-07 Thread Sean Paul
On Wed, Sep 05, 2018 at 07:08:27PM -0700, Jeykumar Sankaran wrote: > DPU, being over protective, validates every parameter of a > module. This change traces the call stack for some of encoder > functions affected by previous set of clean up patches and > cleans up unwanted validations. > >

Re: [Freedreno] [PATCH v5 19/19] drm/msm/dpu: remove RM topology definition

2018-09-07 Thread Sean Paul
On Wed, Sep 05, 2018 at 07:08:28PM -0700, Jeykumar Sankaran wrote: > RM maintained a redundant definition for display topology > to identify the no. of hw blocks needed for a display > and their hardware dependencies. This information can be > implicitly deduced from the msm_display_topology

[Bug 107858] Screen resolution wrong after turning monitor off and on

2018-09-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=107858 --- Comment #1 from Michel Dänzer --- (In reply to Lothar Paltins from comment #0) > [ 11925.963] (II) AMDGPU(0): Allocate new frame buffer 800x600 > [ 11925.963] (II) AMDGPU(0): => pitch 3584 bytes > > > The EDID information is correct, but

[Bug 107858] Screen resolution wrong after turning monitor off and on

2018-09-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=107858 Bug ID: 107858 Summary: Screen resolution wrong after turning monitor off and on Product: DRI Version: unspecified Hardware: x86-64 (AMD64) OS: Linux

Re: [Freedreno] [PATCH v5 02/19] drm/msm/dpu: squash power handle event types

2018-09-07 Thread Sean Paul
On Wed, Sep 05, 2018 at 07:08:11PM -0700, Jeykumar Sankaran wrote: > DPU power handler maintained PRE/POST versions of power > ENABLE/DISABLE events to accommodate tasks which need be > handled before/after data bus voting. But since the bus voting > API's are deprecated and removed from the

Re: [PATCH v5 01/19] drm/msm/dpu: remove debugfs support for misr

2018-09-07 Thread Sean Paul
On Wed, Sep 05, 2018 at 07:08:10PM -0700, Jeykumar Sankaran wrote: > MISR support is the debug feature present in Snapdragon chipsets. > At the layer mixer and interfaces, MISR algorithm can generate CRC > signatures of the pixel data which can be used for validating > the frames generated. Since

Re: [RFC PATCH v2 1/3] drm/fourcc: Add 'bpp' field for formats with non-integer bytes-per-pixel

2018-09-07 Thread Brian Starkey
Hi Daniel, On Fri, Aug 31, 2018 at 10:17:30AM +0200, Daniel Vetter wrote: On Thu, Aug 23, 2018 at 04:23:41PM +0100, Brian Starkey wrote: Some formats have a non-integer number of bytes per pixel, which can't be handled with the existing 'cpp' field in drm_format_info. To handle these formats,

[Bug 107855] [regression] [amdgpu] [drm:vce_v2_0_start [amdgpu]] *ERROR* VCE not responding, giving up!!!

2018-09-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=107855 --- Comment #5 from Pontus Gråskæg --- Sorry for the confusion. "The new kernel reads the microcode from /lib/firmware/amdgpu/kaveri_*. Since you don't have those files yet, you can create symlinks to those in /lib/firmware/radeon/. Don't

[Bug 107855] [regression] [amdgpu] [drm:vce_v2_0_start [amdgpu]] *ERROR* VCE not responding, giving up!!!

2018-09-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=107855 --- Comment #4 from Michel Dänzer --- (In reply to Pontus Gråskæg from comment #2) > [2.619673] gfx7: Failed to load firmware "amdgpu/kaveri_pfp.bin" > [2.619798] [drm:gfx_v7_0_sw_init [amdgpu]] *ERROR* Failed to load gfx The new

[Bug 107855] [regression] [amdgpu] [drm:vce_v2_0_start [amdgpu]] *ERROR* VCE not responding, giving up!!!

2018-09-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=107855 --- Comment #3 from Christian König --- (In reply to Pontus Gråskæg from comment #2) > This behaviour occurs with *both* > the kernel command line having amdgpu.dc=1 *AND* amdgpu.dc=0 - in other > words the old radeon driver is also having

[Bug 107855] [regression] [amdgpu] [drm:vce_v2_0_start [amdgpu]] *ERROR* VCE not responding, giving up!!!

2018-09-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=107855 --- Comment #2 from Pontus Gråskæg --- It doesn't appear to solve it. Instead I get a different problem earlier in the boot sequence, so it does not appear to reach the VCE code - dmesg extract below. The effect on me is that I don't get a

Re: [PATCH] locking: Fix mutex debug call and ww_mutex doc

2018-09-07 Thread Peter Zijlstra
On Mon, Sep 03, 2018 at 04:07:08PM +0200, Thomas Hellstrom wrote: > Commit 08295b3b5bee ("Implement an algorithm choice for Wound-Wait > mutexes") introduced a reference in the documentation to a function > that was removed in an earlier commit. > > It also forgot to remove a call to

Re: [PATCH] [v3] drm/sun4i: fix build failure with CONFIG_DRM_SUN8I_MIXER=m

2018-09-07 Thread Maxime Ripard
way that it is reachable by the other modules. > > > > > > Fixes: 57e23de02f48 ("drm/sun4i: DW HDMI: Expand algorithm for possible > > > crtcs") > > > Fixes: ef0cf6441fbb ("drm/sun4i: Add support for traversing graph with > > > TCON TOP") &

Re: [PATCH] [v3] drm/sun4i: fix build failure with CONFIG_DRM_SUN8I_MIXER=m

2018-09-07 Thread Arnd Bergmann
rtcs") > > Fixes: ef0cf6441fbb ("drm/sun4i: Add support for traversing graph with TCON > > TOP") > > Signed-off-by: Arnd Bergmann > I am seeing the following on today's -next (20180907) as well the last > few -next versions for that matter ... > > ERROR: &q

Re: [PATCH v2 0/6] drm/sun4i: Support color dithering for LCD panels

2018-09-07 Thread Maxime Ripard
On Fri, Sep 07, 2018 at 12:19:42PM +0800, Chen-Yu Tsai wrote: > > Hi, > > This is v2 of my sun4i-drm LCD color dithering series. v1 was from back > in April [1]. Most of the driver code is unchanged. > > Changes since v1: > > - Explicitly list properties from the simple-panel binding that

[PULL] drm-intel-next

2018-09-07 Thread Joonas Lahtinen
Hi Dave, Here's the first batch of changes for v4.20. Nothing too special. Notable things are more Icelake enabling/fixing patches and PPGTT enabling for some older platforms. Icelake is still behind alpha_support flag as we have the code in upstream but extensive testing is pending hardware

[Bug 107857] [apitrace] GPU hang on VEGA10

2018-09-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=107857 Bug ID: 107857 Summary: [apitrace] GPU hang on VEGA10 Product: Mesa Version: git Hardware: Other OS: All Status: NEW Severity: normal

Re: [RFC] drm/amdgpu: Add macros and documentation for format modifiers.

2018-09-07 Thread Bas Nieuwenhuizen
On Fri, Sep 7, 2018 at 6:51 AM Marek Olšák wrote: > > Hopefully this answers some questions. > > Other parameters that affect tiling layouts are GB_ADDR_CONFIG (all > chips) and MC_ARB_RAMCFG (GFX6-8 only), and those vary with each chip. For GFX6-GFX8: From GB_ADDR_CONFIG addrlib only uses the

Re: [PATCH] [v3] drm/sun4i: fix build failure with CONFIG_DRM_SUN8I_MIXER=m

2018-09-07 Thread Jon Hunter
ut in a way that it is reachable by the other modules. > > Fixes: 57e23de02f48 ("drm/sun4i: DW HDMI: Expand algorithm for possible > crtcs") > Fixes: ef0cf6441fbb ("drm/sun4i: Add support for traversing graph with TCON > TOP") > Signed-off-by: Arnd Bergmann

Re: [PATCH 01/14] drm: add new plane property FB_DAMAGE_CLIPS to send damage during plane update

2018-09-07 Thread Pekka Paalanen
On Thu, 6 Sep 2018 21:36:51 + Deepak Singh Rawat wrote: > > > > - Why no input validation on the damage clips against the framebuffer > > size? Ime not validating just leads to funny driver bugs down the road, > > so what's the use-case you have in mind here? > > My motivation behind

[Bug 107855] [regression] [amdgpu] [drm:vce_v2_0_start [amdgpu]] *ERROR* VCE not responding, giving up!!!

2018-09-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=107855 --- Comment #1 from Michel Dänzer --- Can you a try a 4.19-rc2 or later kernel? Specifically, https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=6d39df146ff12fb5c71634ad135144d5423590ec fixed this for me. -- You are

Re: [PATCH 02/10] phy: Add configuration interface

2018-09-07 Thread Maxime Ripard
On Thu, Sep 06, 2018 at 07:51:05PM +0300, Laurent Pinchart wrote: > On Thursday, 6 September 2018 17:48:07 EEST Maxime Ripard wrote: > > On Wed, Sep 05, 2018 at 04:39:46PM +0300, Laurent Pinchart wrote: > > > On Wednesday, 5 September 2018 12:16:33 EEST Maxime Ripard wrote: > > >> The phy

[Bug 107855] [regression] [amdgpu] [drm:vce_v2_0_start [amdgpu]] *ERROR* VCE not responding, giving up!!!

2018-09-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=107855 Bug ID: 107855 Summary: [regression] [amdgpu] [drm:vce_v2_0_start [amdgpu]] *ERROR* VCE not responding, giving up!!! Product: DRI Version: unspecified Hardware: x86-64

Re: [PATCH 02/10] phy: Add configuration interface

2018-09-07 Thread Maxime Ripard
On Thu, Sep 06, 2018 at 06:24:50PM +0200, Andrew Lunn wrote: > > > > +int phy_configure(struct phy *phy, enum phy_mode mode, > > > > + union phy_configure_opts *opts) > > > > +{ > > > > + int ret; > > > > + > > > > + if (!phy) > > > > + return -EINVAL; > >

Re: [PATCH 03/10] phy: Add MIPI D-PHY configuration options

2018-09-07 Thread Maxime Ripard
Hi, On Wed, Sep 05, 2018 at 04:43:57PM +0300, Laurent Pinchart wrote: > > The current set of parameters should cover all the potential users. > > > > Signed-off-by: Maxime Ripard > > --- > > include/linux/phy/phy-mipi-dphy.h | 241 +++- > > include/linux/phy/phy.h

[PATCH v10 2/2] drm/i915: Adding YUV444 packed format support for skl+

2018-09-07 Thread Stanislav Lisovskiy
PLANE_CTL_FORMAT_AYUV is already supported, according to hardware specification. v2: Edited commit message, removed redundant whitespaces. v3: Fixed fallthrough logic for the format switch cases. v4: Yet again fixed fallthrough logic, to reuse code from other case labels. v5: Started to

[PATCH v10 1/2] drm: Introduce new DRM_FORMAT_XYUV

2018-09-07 Thread Stanislav Lisovskiy
v5: This is YUV444 packed format same as AYUV, but without alpha, as supported by i915. v6: Removed unneeded initializer for new XYUV format. v7: Added is_yuv field initialization according to latest drm_fourcc format structure initialization changes. v8: Edited commit message to be

[PATCH v10 0/2] Add XYUV format support

2018-09-07 Thread Stanislav Lisovskiy
Introduced new XYUV scan-in format for framebuffer and added support for it to i915(SkyLake+). Stanislav Lisovskiy (2): drm: Introduce new DRM_FORMAT_XYUV drm/i915: Adding YUV444 packed format support for skl+ drivers/gpu/drm/drm_fourcc.c | 1 + drivers/gpu/drm/i915/i915_reg.h

Re: [PATCH v4 08/11] arm64: dts: allwinner: a64: Add display pipeline

2018-09-07 Thread Maxime Ripard
On Fri, Sep 07, 2018 at 09:43:29AM +0530, Jagan Teki wrote: > On Wed, Sep 5, 2018 at 1:20 PM, Maxime Ripard > wrote: > > On Tue, Sep 04, 2018 at 12:40:50PM +0800, Icenowy Zheng wrote: > >> + hdmi_phy: hdmi-phy@1ef { > >> + compatible =

Re: [PATCH] bochs: convert to drm_fb_helper_fbdev_setup/teardown

2018-09-07 Thread kbuild test robot
/linux/commits/Peter-Wu/bochs-convert-to-drm_fb_helper_fbdev_setup-teardown/20180907-154819 config: i386-randconfig-x006-201835 (attached as .config) compiler: gcc-7 (Debian 7.3.0-1) 7.3.0 reproduce: # save the attached .config to linux build tree make ARCH=i386 All warnings (new

[Bug 106225] Kernel panic after modesetting (not on every boot) on ryzen 5 2400g

2018-09-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=106225 Michel Dänzer changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug 105018] Kernel panic when waking up after screen goes blank.

2018-09-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=105018 Michel Dänzer changed: What|Removed |Added Resolution|--- |FIXED Status|REOPENED

Re: [PATCH -next] drm/virtio: Remove set but not used variable 'bo'

2018-09-07 Thread Gerd Hoffmann
On Fri, Sep 07, 2018 at 02:03:57AM +, YueHaibing wrote: > Fixes gcc '-Wunused-but-set-variable' warning: > > drivers/gpu/drm/virtio/virtgpu_display.c: In function > 'virtio_gpu_framebuffer_init': > drivers/gpu/drm/virtio/virtgpu_display.c:78:28: warning: > variable 'bo' set but not used

[PATCH v2] drm: refuse ADDFB2 ioctl for broken bigendian drivers

2018-09-07 Thread Gerd Hoffmann
Drivers must set the quirk_addfb_prefer_host_byte_order quirk to make the drm_mode_addfb() compat code work correctly on bigendian machines. If they don't they interpret pixel_format values incorrectly for bug compatibility, which in turn implies the ADDFB2 ioctl does not work correctly then. So

Re: [PATCH] [RFC v2] Drop all 00-INDEX files from Documentation/

2018-09-07 Thread Greg Kroah-Hartman
On Thu, Sep 06, 2018 at 11:39:42PM +0200, Daniel Vetter wrote: > On Thu, Sep 6, 2018 at 6:01 PM, Steven Rostedt wrote: > > On Thu, 6 Sep 2018 09:58:04 -0600 > > Jonathan Corbet wrote: > > > >> Thanks, > >> > >> jon (who is increasingly inclined to apply this patch) > > > > As Colin Kaepernick

Re: [PATCH v4 08/11] arm64: dts: allwinner: a64: Add display pipeline

2018-09-07 Thread Jagan Teki
On Wed, Sep 5, 2018 at 1:20 PM, Maxime Ripard wrote: > On Tue, Sep 04, 2018 at 12:40:50PM +0800, Icenowy Zheng wrote: >> + hdmi_phy: hdmi-phy@1ef { >> + compatible = "allwinner,sun8i-h3-hdmi-phy"; >> + reg = <0x01ef 0x1>; >> +

Re: [PATCH 12/16] arm64: dts: renesas: r8a77990: Add I2C device nodes

2018-09-07 Thread Simon Horman
On Wed, Sep 05, 2018 at 04:53:26PM +0300, Laurent Pinchart wrote: > Hi Jacopo, > > On Tuesday, 4 September 2018 17:49:53 EEST jacopo mondi wrote: > > On Tue, Sep 04, 2018 at 04:32:32PM +0200, Geert Uytterhoeven wrote: > > > On Tue, Sep 4, 2018 at 2:10 PM Laurent Pinchart wrote: > > >> From:

  1   2   >