[GIT PULL] On-demand device probing

2015-10-16 Thread Greg Kroah-Hartman
On Wed, Oct 14, 2015 at 10:34:00AM +0200, Tomeu Vizoso wrote: > Hi Rob, > > here is the pull request you asked for, with no changes from the version > that I posted last to the list. > > The following changes since commit 6ff33f3902c3b1c5d0db6b1e2c70b6d76fba357f: > > Linux 4.3-rc1 (2015-09-12 16

[PATCH libdrm 2/2] xf86drm: Handle unrecognized subsystems safely in drmGetDevice[s]()

2015-10-16 Thread Emil Velikov
On 16 October 2015 at 23:11, Matt Roper wrote: > Both drmGetDevice() and drmGetDevices() currently print a warning when > they encounter an unknown (non-PCI) subsystem type for a device node, > but they still proceed to assume that the drmDevicePtr was initialized > and try to add it to the local

[Bug 91930] Program with GtkGLArea widget does not redraw

2015-10-16 Thread bugzilla-dae...@freedesktop.org
An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20151016/90fa7c44/attachment.html>

[Bug 91930] Program with GtkGLArea widget does not redraw

2015-10-16 Thread bugzilla-dae...@freedesktop.org
e as well. -- You are receiving this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20151016/a9e82359/attachment-0001.html>

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

2015-10-16 Thread bugzilla-dae...@freedesktop.org
sts.freedesktop.org/archives/dri-devel/attachments/20151016/5bcd916b/attachment.html>

[RFC v4 11/11] clk: mediatek: Add hdmi_ref HDMI PHY PLL reference clock output

2015-10-16 Thread Philipp Zabel
The configurable hdmi_ref output of the PLL block is derived from the tvdpll_594m clock signal via a configurable PLL post-divider. It is used as the PLL reference input to the HDMI PHY module. Signed-off-by: Philipp Zabel --- drivers/clk/mediatek/clk-mt8173.c | 5 + include/dt-bindings

[RFC v4 10/11] clk: mediatek: make dpi0_sel and hdmi_sel not propagate rate changes

2015-10-16 Thread Philipp Zabel
These muxes are supposed to select a fitting divider after the PLL is already set to the correct rate. Signed-off-by: Philipp Zabel --- drivers/clk/mediatek/clk-mt8173.c | 4 ++-- drivers/clk/mediatek/clk-mtk.h| 7 +-- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/driver

[RFC v4 09/11] arm64: dts: mt8173: Add HDMI related nodes

2015-10-16 Thread Philipp Zabel
From: CK Hu This patch adds the device nodes for the HDMI encoder, HDMI PHY, and HDMI CEC modules. Signed-off-by: CK Hu Signed-off-by: Cawa Cheng Signed-off-by: Jie Qiu Signed-off-by: Daniel Kurtz Signed-off-by: Philipp Zabel --- arch/arm64/boot/dts/mediatek/mt8173.dtsi | 73 ++

[RFC v4 08/11] arm64: dts: mt8173: Add display subsystem related nodes

2015-10-16 Thread Philipp Zabel
From: CK Hu This patch adds the device nodes for the DISP function blocks comprising the display subsystem. --- TODO: - The power-domain property should be added to all blocks that are in the MM power domain. - The iommus property should be removed from the mmsys node. Signed-off-by: CK Hu

[RFC v4 07/11] drm/mediatek: enable hdmi output control bit

2015-10-16 Thread Philipp Zabel
From: Jie Qiu MT8173 HDMI hardware has a output control bit to enable/disable HDMI output. Because of security reason, so this bit can ONLY be controlled in ARM supervisor mode. Now the only way to enter ARM supervisor is the ARM trusted firmware. So atf provides a API for HDMI driver to call to

[RFC v4 06/11] drm/mediatek: Add HDMI support

2015-10-16 Thread Philipp Zabel
From: Daniel Kurtz This patch adds drivers for the HDMI bridge connected to the DPI0 display subsystem function block, for the HDMI DDC block, and for the HDMI PHY to support HDMI output. Signed-off-by: Jie Qiu Signed-off-by: Philipp Zabel --- Changes since v3: - Split CEC register access out

[RFC v4 05/11] dt-bindings: drm/mediatek: Add Mediatek HDMI dts binding

2015-10-16 Thread Philipp Zabel
Add the device tree binding documentation for Mediatek HDMI, HDMI PHY and HDMI DDC devices. Signed-off-by: Philipp Zabel --- Changes since v3: - Split CEC block into a separate node, move the hotplug interrupt there - Removed reg-names, hdmi now only as a single register range - Added mediatek

[RFC v4 04/11] drm/mediatek: Add DPI sub driver

2015-10-16 Thread Philipp Zabel
From: Jie Qiu Add DPI connector/encoder to support HDMI output via the attached HDMI bridge. Signed-off-by: Jie Qiu Signed-off-by: Philipp Zabel --- - Removed unused mtk_dpi_config_bit_swap function - Enable/disable pixel clock instead of its ancestor PLL - Instead of manually setting the d

[RFC v4 03/11] drm/mediatek: Add DSI sub driver

2015-10-16 Thread Philipp Zabel
From: CK Hu This patch add a drm encoder/connector driver for the MIPI DSI function block of the Mediatek display subsystem and a phy driver for the MIPI TX D-PHY control module. Signed-off-by: Jitao Shi Signed-off-by: Philipp Zabel --- Changes since v3: - Simplified bind function - Removed

[RFC v4 02/11] drm/mediatek: Add DRM Driver for Mediatek SoC MT8173.

2015-10-16 Thread Philipp Zabel
From: CK Hu This patch adds an initial DRM driver for the Mediatek MT8173 DISP subsystem. It currently supports two fixed output streams from the OVL0/OVL1 sources to the DSI0/DPI0 sinks, respectively. Signed-off-by: CK Hu Signed-off-by: YT Shen Signed-off-by: Philipp Zabel --- Changes since

[RFC v4 01/11] dt-bindings: drm/mediatek: Add Mediatek display subsystem dts binding

2015-10-16 Thread Philipp Zabel
From: CK Hu Add device tree binding documentation for the display subsystem in Mediatek MT8173 SoCs. The display function block nodes are grouped under a display-subsystem node. Signed-off-by: CK Hu Signed-off-by: Philipp Zabel --- Changes since v3: - Moved DISP function blocks back out of th

[RFC v4 00/11] MT8173 DRM support

2015-10-16 Thread Philipp Zabel
Hi, this is an update to the MT8173 DRM support RFC, now with the connections between display function blocks completely left out of the device tree. I have included the two patches that add all relevant nodes to the mt8173.dtsi, and two mt8173 clock patches that are needed to support the new clo

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

2015-10-16 Thread bugzilla-dae...@freedesktop.org
--- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20151016/b9b938c5/attachment.html>

[PATCH] drm/bridge: fix platform_no_drv_owner.cocci warnings

2015-10-16 Thread kbuild test robot
drivers/gpu/drm/bridge/parade-ps8640.c:480:3-8: No need to set .owner here. The core will do it. Remove .owner field if calls are used which set it automatically Generated by: scripts/coccinelle/api/platform_no_drv_owner.cocci CC: Jitao Shi Signed-off-by: Fengguang Wu --- parade-ps8640.c |

[RFC 2/2] drm/bridge: Add I2C based driver for ps8640 bridge

2015-10-16 Thread kbuild test robot
Hi Jitao, [auto build test WARNING on drm-exynos/exynos-drm/for-next -- if it's inappropriate base, please suggest rules for selecting the more suitable base] url: https://github.com/0day-ci/linux/commits/CK-Hu/Dcumentation-bridge-Add-documentation-for-ps8640-DT-properties/20151016-2

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

2015-10-16 Thread bugzilla-dae...@freedesktop.org
this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20151016/ce39e020/attachment.html>

[PATCH] drm: Explicitly compute the last cacheline for clflush on range

2015-10-16 Thread Chris Wilson
Fixes regression from commit afcd950cafea6e27b739fe7772cbbeed37d05b8b Author: Chris Wilson Date: Wed Jun 10 15:58:01 2015 +0100 drm: Avoid the double clflush on the last cache line in drm_clflush_virt_range() I'm stumped. Looking at the loop we should be iterating over every cache line u

[RFC 2/2] drm/bridge: Add I2C based driver for ps8640 bridge

2015-10-16 Thread CK Hu
From: Jitao Shi This patch adds drm_bridge driver for parade DSI to eDP bridge chip. Signed-off-by: Jitao Shi --- drivers/gpu/drm/bridge/Kconfig |9 + drivers/gpu/drm/bridge/Makefile|1 + drivers/gpu/drm/bridge/parade-ps8640.c | 489 3

[RFC 1/2] Dcumentation: bridge: Add documentation for ps8640 DT properties

2015-10-16 Thread CK Hu
From: Jitao Shi Add documentation for DT properties supported by ps8640 DSI-eDP converter. Signed-off-by: Jitao Shi --- .../devicetree/bindings/video/bridge/ps8640.txt| 48 1 file changed, 48 insertions(+) create mode 100644 Documentation/devicetree/bindings/video/b

[PATCH v6 23/23] drm/i915: disable plane gamma

2015-10-16 Thread Shashank Sharma
In plane enabling sequence, plane gamma bit is by default enabled. Plane gamma gets higher priority than pipe gamma, if both enabled. This patch disables plane gamma from sequence. If required, plane gamma can be enabled via the color manager drm interface. signed-off-by: Kumar, Kiran S --- dri

[PATCH v6 22/23] drm/i915: BDW: Pipe level CSC correction

2015-10-16 Thread Shashank Sharma
BDW/SKL/BXT support Color Space Conversion (CSC) using a 3x3 matrix that needs to be programmed into respective CSC registers. This patch does the following: 1. Adds the core function to program CSC correction values for BDW/SKL/BXT platform 2. Adds CSC correction macros/defines Signed-off-by:

[PATCH v6 21/23] drm/i915: BDW: Pipe level degamma correction

2015-10-16 Thread Shashank Sharma
BDW/SKL/BXT supports Degamma color correction feature, which linearizes the non-linearity due to gamma encoded color values. This will be applied before Color Transformation. This patch does the following: 1. Adds the core function to program DeGamma correction values for BDW/SKL/BXT platform 2

[PATCH v6 20/23] drm/i915: BDW: Load degamma correction values

2015-10-16 Thread Shashank Sharma
I915 color manager registers pipe degamma correction as palette correction before CTM, DRM property. This patch adds the no of coefficients(512) for degamma correction as "num_samples_before_ctm" parameter in device info structures, for BDW and higher platforms. Signed-off-by: Shashank Sharma Si

[PATCH v6 19/23] drm/i915: BDW: Pipe level Gamma correction

2015-10-16 Thread Shashank Sharma
BDW/SKL/BXT platforms support various Gamma correction modes which are: 1. Legacy 8-bit mode 2. 10-bit mode 3. Split mode 4. 12-bit mode This patch does the following: 1. Adds the core function to program Gamma correction values for BDW/SKL/BXT platforms 2. Adds Gamma correction macros/defines

[PATCH v6 18/23] drm/i915: BDW: Load gamma correction values

2015-10-16 Thread Shashank Sharma
I915 color manager registers pipe gamma correction as palette correction after CTM property. For BDW and higher platforms, split gamma correction is the best gamma correction. This patch adds the no of coefficients(512) for split gamma correction as "num_samples_after_ctm" parameter in device info

[PATCH v6 17/23] drm/i915: Attach color properties to CRTC

2015-10-16 Thread Shashank Sharma
Function intel_attach_color_properties_to_crtc attaches a color property to its CRTC object. This patch calls this function from crtc initialization sequence. Signed-off-by: Shashank Sharma Signed-off-by: Kausal Malladi --- drivers/gpu/drm/i915/intel_display.c | 1 + 1 file changed, 1 insertion

[PATCH v6 16/23] drm/i915: Commit color correction to CRTC

2015-10-16 Thread Shashank Sharma
The color correction blob values are loaded during set_property calls. This patch adds a function to find the blob and apply the correction values to the display registers, during the atomic commit call. Signed-off-by: Shashank Sharma Signed-off-by: Kausal Malladi --- drivers/gpu/drm/i915/intel

[PATCH v6 15/23] drm/i915: CHV: Pipe level CSC correction

2015-10-16 Thread Shashank Sharma
CHV/BSW supports Color Space Conversion (CSC) using a 3x3 matrix that needs to be programmed into CGM (Color Gamut Mapping) registers. This patch does the following: 1. Attaches CSC property to CRTC 2. Adds the core function to program CSC correction values 3. Adds CSC correction macros Signed-of

[PATCH v6 14/23] drm/i915: CHV: Pipe level degamma correction

2015-10-16 Thread Shashank Sharma
CHV/BSW supports Degamma color correction, which linearizes all the non-linear color values. This will be applied before Color Transformation. This patch does the following: 1. Attach deGamma property to CRTC 2. Add the core function to program DeGamma correction values for CHV/BSW platform 2.

[PATCH v6 13/23] drm/i915: CHV: Pipe level Gamma correction

2015-10-16 Thread Shashank Sharma
CHV/BSW platform supports two different pipe level gamma correction modes, which are: 1. Legacy 8-bit mode 2. 10-bit CGM (Color Gamut Mapping) mode This patch does the following: 1. Attaches Gamma property to CRTC 3. Adds the core Gamma correction function for CHV/BSW 4. Adds Gamma correction macr

[PATCH v6 12/23] drm/i915: CHV: Load degamma color correction values

2015-10-16 Thread Shashank Sharma
DRM color manager allows the driver to showcase its best color correction capabilities using the specific query property cm_coeff_before_ctm_property. The driver must loads the no. of coefficients for color correction as per the platform capability during the init time. This patch adds no of coeff

[PATCH v6 11/23] drm/i915: CHV: Load gamma color correction values

2015-10-16 Thread Shashank Sharma
DRM color manager allows the driver to showcase its best color correction capabilities using the specific query property cm_coeff_after_ctm_property. The driver must loads the no. of coefficients for color correction as per the platform capability during the init time. This patch adds no of coeffi

[PATCH v6 10/23] drm/i915: Register color correction capabilities

2015-10-16 Thread Shashank Sharma
>From DRM color management: DRM color manager supports these color properties: 1. "ctm": Color transformation matrix property, where a color transformation matrix of 9 correction values gets applied as correction. 2. "palette_before_ctm": for corrections which get

[PATCH v6 09/23] drm/i915: Create color management files

2015-10-16 Thread Shashank Sharma
This patch create new files intel_color_manager.c which will contain the core color correction code for I915 driver and its header intel_color_manager.h The per color property patches coming up in this patch series will fill the appropriate functions in this file. Signed-off-by: Shashank Sharma

[PATCH v6 08/23] drm/i915: Add set property interface for CRTC

2015-10-16 Thread Shashank Sharma
This patch adds set property interface for intel CRTC. This interface will be used for set operation on any DRM properties. Signed-off-by: Shashank Sharma Signed-off-by: Kausal Malladi --- drivers/gpu/drm/i915/intel_display.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/gpu/drm/i

[PATCH v6 07/23] drm: Add structure for CTM color property

2015-10-16 Thread Shashank Sharma
Color Manager framework defines a DRM property for color space transformation and Gamut mapping. This property is called CTM (Color Transformation Matrix). This patch adds a new structure in DRM layer for CTM. This structure can be used by all user space agents to configure CTM coefficients for co

[PATCH v6 06/23] drm: Add drm structures for palette color property

2015-10-16 Thread Shashank Sharma
This patch adds new structures in DRM layer for Palette color correction.These structures will be used by user space agents to configure appropriate number of samples and Palette LUT for a platform. Signed-off-by: Shashank Sharma Signed-off-by: Kausal Malladi --- include/uapi/drm/drm.h | 20 +++

[PATCH v6 05/23] drm: Add get property support for color manager

2015-10-16 Thread Shashank Sharma
As per the DRM get_property implementation for a blob, framework is supposed to return the blob_id to the caller. All the color management blobs are saved in CRTC state during the set call. This patch adds get_property support for color management properties, by referring to the existing blob for

[PATCH v6 04/23] drm: Add set property support for color manager

2015-10-16 Thread Shashank Sharma
As per DRM color manager design, if a userspace wants to set a correction blob, it prepares it and sends the blob_id to kernel via set_property call. DRM framework takes this blob_id, gets the blob, and saves it in the CRTC state, so that, during the atomic_commit, the color correction values from

[PATCH v6 03/23] drm: Add color correction blobs in CRTC state

2015-10-16 Thread Shashank Sharma
This patch adds new variables in CRTC state, to hold respective color correction blobs. These blobs will be required during the atomic commit for writing the color correction values in correction registers. Signed-off-by: Shashank Sharma Signed-off-by: Kausal Malladi --- drivers/gpu/drm/drm_ato

[PATCH v6 02/23] drm: Create Color Management query properties

2015-10-16 Thread Shashank Sharma
DRM color management is written to extract the color correction capabilities of various platforms, and every platform can showcase its capabilities using the query properties. Different hardwares can have different no of coefficients for palette correction. Also the correction can be applied after

[PATCH v6 01/23] drm: Create Color Management DRM properties

2015-10-16 Thread Shashank Sharma
Color Management is an extension to DRM framework. It allows abstraction of hardware color correction and enhancement capabilities by virtue of DRM properties. There are two major types of color correction supported by DRM color manager: - CTM: color transformation matrix, properties where a corre

[PATCH v6 00/23] Color Management for DRM framework

2015-10-16 Thread Shashank Sharma
This patch set adds Color Manager implementation in DRM layer. Color Manager is an extension in DRM framework to support color correction/enhancement. Various Hardware platforms can support several color correction capabilities. Color Manager provides abstraction of these capabilities and allows a

[Intel-gfx] [PATCH 2/2] drm/fb-helper: Fix fb refcounting in pan_display_atomic

2015-10-16 Thread Ville Syrjälä
On Fri, Oct 16, 2015 at 06:23:14PM +0200, Daniel Vetter wrote: > In > > commit bbb1e52402b2a288b09ae37e8182599931c7e9df > Author: Rob Clark > Date: Tue Aug 25 15:35:58 2015 -0400 > > drm/fb-helper: atomic restore_fbdev_mode().. > > we've forgotten to do the plane->old_fb refcount dance fo

[PATCH 2/2] drm/fb-helper: Fix fb refcounting in pan_display_atomic

2015-10-16 Thread Daniel Vetter
On Fri, Oct 16, 2015 at 04:48:12PM +, Rodrigo Vivi wrote: > Thanks! > > Tested-by: Rodrigo Vivi > > > On Fri, Oct 16, 2015 at 9:35 AM Rob Clark wrote: > > > On Fri, Oct 16, 2015 at 12:23 PM, Daniel Vetter > > wrote: > > > In > > > > > > commit bbb1e52402b2a288b09ae37e8182599931c7e9df > >

[PATCH] drm: fix mutex leak in drm_dp_get_mst_branch_device

2015-10-16 Thread Daniel Vetter
On Fri, Oct 16, 2015 at 03:33:02AM -0700, Adam Richter wrote: > In Linux 4.3-rc5, there is an error case in drm_dp_get_branch_device > that returns without releasing mgr->lock, resulting a spew of kernel > messages about a kernel work function possibly having leaked a mutex > and presumably more se

[PATCH 5/5] drm: Check plane src coordinates correctly during page flip for atomic drivers

2015-10-16 Thread Daniel Vetter
On Fri, Oct 16, 2015 at 05:40:59PM +0100, Tvrtko Ursulin wrote: > > On 16/10/15 17:27, Matt Roper wrote: > >On Thu, Oct 15, 2015 at 08:40:02PM +0300, ville.syrjala at linux.intel.com > >wrote: > >>From: Ville Syrjälä > >> > >>Instead of relying on the old crtc-{x,y,mode} gunk, dig out the prim

[Intel-gfx] [PATCH 2/2] drm/fb-helper: Fix fb refcounting in pan_display_atomic

2015-10-16 Thread Daniel Vetter
On Fri, Oct 16, 2015 at 07:48:37PM +0300, Ville Syrjälä wrote: > On Fri, Oct 16, 2015 at 06:23:14PM +0200, Daniel Vetter wrote: > > In > > > > commit bbb1e52402b2a288b09ae37e8182599931c7e9df > > Author: Rob Clark > > Date: Tue Aug 25 15:35:58 2015 -0400 > > > > drm/fb-helper: atomic rest

[PATCH] drm/fb-helper: Fix fb refcounting in pan_display_atomic

2015-10-16 Thread Daniel Vetter
In commit bbb1e52402b2a288b09ae37e8182599931c7e9df Author: Rob Clark Date: Tue Aug 25 15:35:58 2015 -0400 drm/fb-helper: atomic restore_fbdev_mode().. we've forgotten to do the plane->old_fb refcount dance for pan_display_atomic, which can result in refcount leaks if the current configura

[PATCH 03/12] drm/msm/dsi: Add DSI PLL for 28nm 8960 PHY

2015-10-16 Thread Archit Taneja
On 10/15/2015 02:05 AM, Stephen Boyd wrote: > On 10/14, Archit Taneja wrote: >> diff --git a/drivers/gpu/drm/msm/dsi/pll/dsi_pll_28nm_8960.c >> b/drivers/gpu/drm/msm/dsi/pll/dsi_pll_28nm_8960.c >> new file mode 100644 >> index 000..e71b4ee >> --- /dev/null >> +++ b/drivers/gpu/drm/msm/dsi/pl

[PATCH v2 4/5] drm: Check crtc viewport correctly with rotated primary plane on atomic drivers

2015-10-16 Thread ville.syrj...@linux.intel.com
From: Ville Syrjälä On atomic drivers we can dig out the primary plane rotation from the plane state instead of looking at the legacy crtc->invert_dimensions flag. The flag is not set by anyone except omapdrm, and it would be racy to set it the same way in the atomic helpers. v2: Kill crtc->in

[PATCH 2/2] drm/fb-helper: Fix fb refcounting in pan_display_atomic

2015-10-16 Thread Daniel Vetter
In commit bbb1e52402b2a288b09ae37e8182599931c7e9df Author: Rob Clark Date: Tue Aug 25 15:35:58 2015 -0400 drm/fb-helper: atomic restore_fbdev_mode().. we've forgotten to do the plane->old_fb refcount dance for pan_display_atomic, which can result in refcount leaks if the current configura

[PATCH 1/2] drm/fb-helper: Set plane rotation directly

2015-10-16 Thread Daniel Vetter
The point behind standardizing properties into core drm state structures is also that internal code looks prettiers. Take advantage of that and set rotation directly in the fbdev atomic code. Cc: Rob Clark Signed-off-by: Daniel Vetter --- drivers/gpu/drm/drm_fb_helper.c | 6 +- 1 file chang

[PATCH libdrm 2/2] xf86drm: Handle unrecognized subsystems safely in drmGetDevice[s]()

2015-10-16 Thread Alex Deucher
On Fri, Oct 16, 2015 at 6:11 PM, Matt Roper wrote: > Both drmGetDevice() and drmGetDevices() currently print a warning when > they encounter an unknown (non-PCI) subsystem type for a device node, > but they still proceed to assume that the drmDevicePtr was initialized > and try to add it to the l

[PATCH 4/5] drm: Check crtc viewport correctly with rotated primary plane on atomic drivers

2015-10-16 Thread Ville Syrjälä
On Fri, Oct 16, 2015 at 04:35:02PM +0200, Daniel Vetter wrote: > On Fri, Oct 16, 2015 at 11:38:18AM +0300, Ville Syrjälä wrote: > > On Thu, Oct 15, 2015 at 05:32:12PM -0700, Matt Roper wrote: > > > On Thu, Oct 15, 2015 at 08:40:01PM +0300, ville.syrjala at > > > linux.intel.com wrote: > > > > Fr

[PATCH 5/5] drm: Check plane src coordinates correctly during page flip for atomic drivers

2015-10-16 Thread Tvrtko Ursulin
On 16/10/15 17:27, Matt Roper wrote: > On Thu, Oct 15, 2015 at 08:40:02PM +0300, ville.syrjala at linux.intel.com > wrote: >> From: Ville Syrjälä >> >> Instead of relying on the old crtc-{x,y,mode} gunk, dig out the primary >> plane coordinates from the plane state when checking them against t

[Bug 91896] AMDGPU Fiji: only getting 1080i on DP

2015-10-16 Thread bugzilla-dae...@freedesktop.org
scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20151016/fd716713/attachment.html>

[Bug 91896] AMDGPU Fiji: only getting 1080i on DP

2015-10-16 Thread bugzilla-dae...@freedesktop.org
attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20151016/45769eac/attachment-0001.html>

[Bug 104881] AMDGPU FIJI doesn't support higher resolutions past 1920x1080

2015-10-16 Thread bugzilla-dae...@bugzilla.kernel.org
https://bugzilla.kernel.org/show_bug.cgi?id=104881 Jeff Nelson changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[PATCH 2/2] drm/fb-helper: Fix fb refcounting in pan_display_atomic

2015-10-16 Thread Rodrigo Vivi
drm_framebuffer_reference(new_fb); > > + plane->fb = new_fb; > > + plane->crtc = plane->state->crtc; > > + > > + if (plane->old_fb) > > + > drm_framebuffer_unreference(plane-&

[PATCH 4/5] drm: Check crtc viewport correctly with rotated primary plane on atomic drivers

2015-10-16 Thread Daniel Vetter
On Fri, Oct 16, 2015 at 11:38:18AM +0300, Ville Syrjälä wrote: > On Thu, Oct 15, 2015 at 05:32:12PM -0700, Matt Roper wrote: > > On Thu, Oct 15, 2015 at 08:40:01PM +0300, ville.syrjala at linux.intel.com > > wrote: > > > From: Ville Syrjälä > > > > > > On atomic drivers we can dig out the pr

[Intel-gfx] [PATCH 1/3] drm: Track drm_mm nodes with an interval tree

2015-10-16 Thread Daniel Vetter
On Fri, Oct 16, 2015 at 08:54:20AM +, Daniel, Thomas wrote: > Hi, > > > -Original Message- > > From: Intel-gfx [mailto:intel-gfx-bounces at lists.freedesktop.org] On > > Behalf Of > > David Herrmann > > Sent: Wednesday, October 7, 2015 11:23 AM > > To: Chris Wilson; Daniel Vetter; Int

[PATCH 2/9] vga_switcheroo: Use VGA_SWITCHEROO_UNKNOWN_ID instead of -1

2015-10-16 Thread Daniel Vetter
On Thu, Oct 15, 2015 at 08:14:20PM +0200, Lukas Wunner wrote: > Hi Daniel, > > On Tue, Oct 13, 2015 at 09:28:13AM +0200, Daniel Vetter wrote: > > On Mon, Oct 12, 2015 at 12:09:53PM -0400, Alex Deucher wrote: > > > On Fri, Aug 28, 2015 at 7:30 AM, Lukas Wunner wrote: > > > > Signed-off-by: Lukas W

[PATCH] drm: fix mutex leak in drm_dp_get_mst_branch_device

2015-10-16 Thread Adam Richter
Hi, Daniel. Thank you for your quick handling of my patch submission. I will look into setting up git send-email. Adam On Fri, Oct 16, 2015 at 10:24 AM, Daniel Vetter wrote: > On Fri, Oct 16, 2015 at 03:33:02AM -0700, Adam Richter wrote: >> In Linux 4.3-rc5, there is an error case in drm_dp_ge

HDMI codec, way forward?

2015-10-16 Thread Arnaud Pouliquen
> After reading the ELCE Audio mini conf minutes [1] I gather that HDMI > audio was not discussed after all. > > My conclusion from the Lars-Peter's latest mail [2] related to the > subject is that the wind is currently blowing slightly in favour of my > version of the hdmi codec [3], or at least n

[PATCH libdrm 2/2] xf86drm: Handle unrecognized subsystems safely in drmGetDevice[s]()

2015-10-16 Thread Matt Roper
On Fri, Oct 16, 2015 at 11:27:10PM +0100, Emil Velikov wrote: > On 16 October 2015 at 23:11, Matt Roper wrote: > > Both drmGetDevice() and drmGetDevices() currently print a warning when > > they encounter an unknown (non-PCI) subsystem type for a device node, > > but they still proceed to assume t

HDMI codec, way forward?

2015-10-16 Thread Mark Brown
ext attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 473 bytes Desc: not available URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20151016/8978a1f1/attachment-0001.sig>

[PATCH] drm: sti: remove redundant sign extensions

2015-10-16 Thread Rasmus Villemoes
arg is long int, so arg = (arg << 22) >> 22 makes the upper 22 bits of arg equal to bit 9 (or bit 41). But we then mask away all but bits 0-9, so this is entirely redundant. Signed-off-by: Rasmus Villemoes --- gcc seems to be smart enough to realize this - the generated code is the same. This is

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

2015-10-16 Thread bugzilla-dae...@freedesktop.org
are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20151016/a629dfd3/attachment.html>

HDMI codec, way forward?

2015-10-16 Thread Mark Brown
have when I'm not sure we're even travelling in the right direction. -- next part -- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 473 bytes Desc: not available URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20151016/5745edd0/attachment-0001.sig>

[PATCH libdrm 2/2] xf86drm: Handle unrecognized subsystems safely in drmGetDevice[s]()

2015-10-16 Thread Matt Roper
Both drmGetDevice() and drmGetDevices() currently print a warning when they encounter an unknown (non-PCI) subsystem type for a device node, but they still proceed to assume that the drmDevicePtr was initialized and try to add it to the local device array. Add a 'continue' to the error case handli

[PATCH libdrm 1/2] xf86drm: Fix error handling for drmGetDevice()

2015-10-16 Thread Matt Roper
Some of the error conditions in drmGetDevice() can lead to us calling closedir(NULL) or leaking memory. Fix these conditions the same way we did for drmGetDevices() in commit: commit 8c4a1cbd98bd8d185d489395f33302a17db643a9 Author: Matt Roper Date: Wed Sep 30 09:30:51 2

[Bug 91540] slow rendering & fullscreen results in stale images

2015-10-16 Thread bugzilla-dae...@freedesktop.org
t was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20151016/e94d2e63/attachment.html>

[RFC 1/2] Dcumentation: bridge: Add documentation for ps8640 DT properties

2015-10-16 Thread Philipp Zabel
Hi CK, there is a typo in the subject: s/Dcumentation/Documentation/. Am Freitag, den 16.10.2015, 20:15 +0800 schrieb CK Hu: > From: Jitao Shi > > Add documentation for DT properties supported by ps8640 > DSI-eDP converter. > > Signed-off-by: Jitao Shi [...] > + - ps8640-1v2-supply: OF de

HDMI codec, way forward?

2015-10-16 Thread Mark Brown
A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 473 bytes Desc: not available URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20151016/f0469e68/attachment.sig>

[Bug 92495] Freeze/black screen on DPM/after changing power_profile

2015-10-16 Thread bugzilla-dae...@freedesktop.org
ttp://lists.freedesktop.org/archives/dri-devel/attachments/20151016/01be5c4e/attachment.html>

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

2015-10-16 Thread bugzilla-dae...@freedesktop.org
vel/attachments/20151016/142bab3f/attachment.html>

[RFC] drm/dp: move hw_mutex up the call stack

2015-10-16 Thread Rob Clark
1) don't let other threads trying to bang on aux channel interrupt the defer timeout/logic 2) don't let other threads interrupt the i2c over aux logic --- This wasn't actually fixing things w/ problematic monitor, but seems like generally a good idea. At least AFAIU you shouldn't allow the sequen

[PATCH] drm/dp: add DPCD logging

2015-10-16 Thread Rob Clark
Add a new drm_debug bit for turning on DPCD logging, to aid debugging with troublesome monitors. v2: don't try to hexdump the universe if driver returns -errno, and change the "too many retries" traces to DRM_ERROR() Signed-off-by: Rob Clark --- drivers/gpu/drm/drm_dp_helper.c | 69

HDMI codec, way forward?

2015-10-16 Thread Jyri Sarha
After reading the ELCE Audio mini conf minutes [1] I gather that HDMI audio was not discussed after all. My conclusion from the Lars-Peter's latest mail [2] related to the subject is that the wind is currently blowing slightly in favour of my version of the hdmi codec [3], or at least not in favou

[alsa-devel] HDMI codec, way forward?

2015-10-16 Thread Takashi Iwai
On Fri, 16 Oct 2015 14:31:43 +0200, Lars-Peter Clausen wrote: > > On 10/16/2015 01:50 PM, Jyri Sarha wrote: > > After reading the ELCE Audio mini conf minutes [1] I gather that HDMI > > audio was not discussed after all. > > It was discussed, but rather shortly and only in the context of the HDA.

HDMI codec, way forward?

2015-10-16 Thread Russell King - ARM Linux
On Fri, Oct 16, 2015 at 02:31:43PM +0200, Lars-Peter Clausen wrote: > On 10/16/2015 01:50 PM, Jyri Sarha wrote: > > After reading the ELCE Audio mini conf minutes [1] I gather that HDMI > > audio was not discussed after all. > > It was discussed, but rather shortly and only in the context of the H

HDMI codec, way forward?

2015-10-16 Thread Lars-Peter Clausen
On 10/16/2015 01:50 PM, Jyri Sarha wrote: > After reading the ELCE Audio mini conf minutes [1] I gather that HDMI > audio was not discussed after all. It was discussed, but rather shortly and only in the context of the HDA. (Adding Vinod to Cc, who presented yet another approach to the problem las

[GIT PULL] On-demand device probing

2015-10-16 Thread Olof Johansson
Hi, I've bisected boot failures in next-20151016 down to patches in this branch: On Thu, Oct 15, 2015 at 4:42 AM, Tomeu Vizoso wrote: > Tomeu Vizoso (20): > driver core: handle -EPROBE_DEFER from bus_type.match() The machine it happened on was OMAP5UEVM: http://arm-so

[RFC 2/2] drm/bridge: Add I2C based driver for ps8640 bridge

2015-10-16 Thread Mark Rutland
> + /* FIXME - use of_graph_get_port_by_id(np, 1) on newer kernels */ > + in_ep = of_graph_get_next_endpoint(np, NULL); Huh? > + edidp = of_get_property(np, "edid", &size); This property wasn't mentioned in the binding document. Please describe it. If it's from a more generic bindin

[RFC 1/2] Dcumentation: bridge: Add documentation for ps8640 DT properties

2015-10-16 Thread Mark Rutland
On Fri, Oct 16, 2015 at 08:15:08PM +0800, CK Hu wrote: > From: Jitao Shi > > Add documentation for DT properties supported by ps8640 > DSI-eDP converter. > > Signed-off-by: Jitao Shi > --- > .../devicetree/bindings/video/bridge/ps8640.txt| 48 > > 1 file changed, 48

[Bug 92258] [regression] Opening context menu in Steam running via DRI_PRIME with enabled DRI3 could lead to radeon kernel module crash

2015-10-16 Thread bugzilla-dae...@freedesktop.org
ou are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20151016/15f69a77/attachment-0001.html>

[Bug 92258] [regression] Opening context menu in Steam running via DRI_PRIME with enabled DRI3 could lead to radeon kernel module crash

2015-10-16 Thread bugzilla-dae...@freedesktop.org
<http://lists.freedesktop.org/archives/dri-devel/attachments/20151016/32c78e7e/attachment.html>

[RFC 0/6] Non perf based Gen Graphics OA unit driver

2015-10-16 Thread Robert Bragg
On Fri, Oct 16, 2015 at 11:33 AM, Peter Zijlstra wrote: > On Fri, Oct 16, 2015 at 12:02:28PM +0200, Ingo Molnar wrote: >> >> * Peter Zijlstra wrote: >> >> > > - We may be making some technical compromises a.t.m for the sake of >> > > using perf. >> > > >> > > perf_event_open() requires eve

[PATCH 2/2] drm/dp/mst: take lock around looking up the branch device on hpd irq

2015-10-16 Thread Jani Nikula
On Mon, 22 Jun 2015, Daniel Vetter wrote: > On Mon, Jun 22, 2015 at 02:40:44PM +1000, Dave Airlie wrote: >> From: Dave Airlie >> >> If we are doing an MST transaction and we've gotten HPD and we >> lookup the device from the incoming msg, we should take the mgr >> lock around it, so that mst_pri

[Bug 92495] Freeze/black screen on DPM/after changing power_profile

2015-10-16 Thread bugzilla-dae...@freedesktop.org
an remote device. -- You are receiving this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20151016/caf9459e/attachment.html>

[PATCH 2/2] drm/fb-helper: Fix fb refcounting in pan_display_atomic

2015-10-16 Thread Rob Clark
On Fri, Oct 16, 2015 at 12:23 PM, Daniel Vetter wrote: > In > > commit bbb1e52402b2a288b09ae37e8182599931c7e9df > Author: Rob Clark > Date: Tue Aug 25 15:35:58 2015 -0400 > > drm/fb-helper: atomic restore_fbdev_mode().. > > we've forgotten to do the plane->old_fb refcount dance for > pan_d

[RFC 0/6] Non perf based Gen Graphics OA unit driver

2015-10-16 Thread Peter Zijlstra
On Fri, Oct 16, 2015 at 12:02:28PM +0200, Ingo Molnar wrote: > > * Peter Zijlstra wrote: > > > > - We may be making some technical compromises a.t.m for the sake of > > > using perf. > > > > > > perf_event_open() requires events to either relate to a pid or a > > > specific cpu core,

[Bug 92240] [SKL] igt/kms_fbcon_fbt/fbc fail

2015-10-16 Thread bugzilla-dae...@freedesktop.org
ttp://lists.freedesktop.org/archives/dri-devel/attachments/20151016/eee4a25f/attachment-0001.html>

[Bug 92495] Freeze/black screen on DPM/after changing power_profile

2015-10-16 Thread bugzilla-dae...@freedesktop.org
part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20151016/14ea8d02/attachment.html>

  1   2   >