Re: [RFC PATCH v3 1/2] drm: Add generic colorkey properties for DRM planes

2018-07-09 Thread Dmitry Osipenko
On Friday, 6 July 2018 20:01:36 MSK Russell King - ARM Linux wrote: > On Fri, Jul 06, 2018 at 07:33:14PM +0300, Dmitry Osipenko wrote: > > On Friday, 6 July 2018 18:40:27 MSK Russell King - ARM Linux wrote: > > > On Fri, Jul 06, 2018 at 05:58:50PM +0300, Dmitry Osipenko wrote: > > > > On Friday, 6

[PATCH 08/17] ARM: dts: sun8i: r40: Add mixer ids to TCON TOP

2018-07-09 Thread Jernej Skrabec
Mixer has to have a way to read its id, if needed. Add them in R40 DT. Signed-off-by: Jernej Skrabec --- arch/arm/boot/dts/sun8i-r40.dtsi | 10 -- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/arch/arm/boot/dts/sun8i-r40.dtsi b/arch/arm/boot/dts/sun8i-r40.dtsi index

[PATCH 05/17] drm/sun4i: tcon: Release node when traversing of graph

2018-07-09 Thread Jernej Skrabec
Function sun4i_tcon_find_engine_traverse() doesn't release node if it needs to traverse of graph deeper than 1 level. Fix this by calling of_node_put(). Fixes: 49836b11fe71 ("drm/sun4i: tcon: Generalize engine search algorithm") Signed-off-by: Jernej Skrabec ---

Re: [RFC PATCH v3 1/2] drm: Add generic colorkey properties for DRM planes

2018-07-09 Thread Russell King - ARM Linux
On Fri, Jul 06, 2018 at 07:33:14PM +0300, Dmitry Osipenko wrote: > On Friday, 6 July 2018 18:40:27 MSK Russell King - ARM Linux wrote: > > On Fri, Jul 06, 2018 at 05:58:50PM +0300, Dmitry Osipenko wrote: > > > On Friday, 6 July 2018 17:10:10 MSK Ville Syrjälä wrote: > > > > IIRC my earlier idea

Re: [PATCH 06/17] dt-bindings: display: sun4i-drm: Add R40 TV TCON description

2018-07-09 Thread Jernej Škrabec
Dne petek, 06. julij 2018 ob 22:40:52 CEST je Rob Herring napisal(a): > On Fri, Jul 06, 2018 at 07:51:02PM +0200, Jernej Skrabec wrote: > > TCON description is expanded with R40 TV TCON compatible. It is a bit > > special, because it is connected to TCON TOP instead directly to mixer > > and it

[PATCH 03/17] ARM: dts: sun8i: r40: Remove fallback display engine compatible

2018-07-09 Thread Jernej Skrabec
R40 has pretty unique display pipeline. Because of that, H3 display engine compatible fallback should be removed. Fixes: 05a43a262d03 ("ARM: dts: sun8i: r40: Add HDMI pipeline") Signed-off-by: Jernej Skrabec --- arch/arm/boot/dts/sun8i-r40.dtsi | 3 +-- 1 file changed, 1 insertion(+), 2

[PATCH v5 4/4] dt-bindings: net: btusb: DT fix s/interrupt-name/interrupt-names/

2018-07-09 Thread Geert Uytterhoeven
Fixes: fd913ef7ce619467 ("Bluetooth: btusb: Add out-of-band wakeup support") Signed-off-by: Geert Uytterhoeven Acked-by: Rob Herring --- v4: - Add Acked-by, v3: - New. --- Documentation/devicetree/bindings/net/btusb.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[PATCH] fbdev/via: fix defined but not used warning

2018-07-09 Thread Randy Dunlap
From: Randy Dunlap Fix a build warning in viafbdev.c when CONFIG_PROC_FS is not enabled by marking the unused function as __maybe_unused. ../drivers/video/fbdev/via/viafbdev.c:1471:12: warning: 'viafb_sup_odev_proc_show' defined but not used [-Wunused-function] Signed-off-by: Randy Dunlap

[PATCH 01/17] dt-bindings: display: sun4i-drm: Add R40 display engine compatible

2018-07-09 Thread Jernej Skrabec
R40 has pretty unique display pipeline. It supports two outputs at the same time. Possible outputs: - 1x HDMI, - 2x TV output - 1x VGA, - 1x MIPI DSI and - 2x LCD outputs That is the biggest number of possible outputs from all Allwinner SoC. Because of that, add new compatible for it.

[PATCH 02/17] drm/sun4i: Add R40 display engine compatible

2018-07-09 Thread Jernej Skrabec
R40 has versatile display pipeline. It supports two simultanious outputs on various outputs (TVE, VGA, HDMI, MIPI DSI, LCD). Signed-off-by: Jernej Skrabec --- drivers/gpu/drm/sun4i/sun4i_drv.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/gpu/drm/sun4i/sun4i_drv.c

[PATCH 15/17] ARM: dts: sun8i: r40: Disable TCONs by default.

2018-07-09 Thread Jernej Skrabec
R40 has 4 TCONs, but only 2 of them can receive some kind of output at the same time. Let's disable them by default, so only those which are really connected on board can be enabled in board dts file. Signed-off-by: Jernej Skrabec --- arch/arm/boot/dts/sun8i-r40-bananapi-m2-ultra.dts | 4

[PATCH 07/17] drm/sun4i: DW HDMI: Release nodes if error happens during CRTC search

2018-07-09 Thread Jernej Skrabec
If error happens in sun8i_dw_hdmi_find_possible_crtcs(), nodes are not released with of_node_put() before returning. Fix that by calling of_node_put() when necessary. While on it, clean up the code by using of_graph_get_remote_node() which also lowers number of cases where error handling has to

[PATCH v2] drm: rcar-du: Add r8a77995 device support

2018-07-09 Thread Ulrich Hecht
From: Koji Matsuoka Add support for the R-Car D3 (R8A77995) SoC to the R-Car DU driver. Signed-off-by: Koji Matsuoka Signed-off-by: Ulrich Hecht --- This is a break-out from the "[PATCH 0/5] R-Car D3 LVDS/HDMI support" series. Changes since v1: - use the .channels_mask field in

[PATCH 4/6] drm/i2c: tda998x: convert to bridge driver

2018-07-09 Thread Russell King
Convert tda998x to a bridge driver with built-in encoder support for compatibility with existing component drivers. Signed-off-by: Russell King --- drivers/gpu/drm/i2c/tda998x_drv.c | 147 +++--- 1 file changed, 75 insertions(+), 72 deletions(-) diff --git

Re: [PATCH v5 7/7] drm/i2c: tda998x: register as a drm bridge

2018-07-09 Thread Russell King - ARM Linux
On Fri, Jul 06, 2018 at 02:36:37PM +0100, Russell King - ARM Linux wrote: > On Wed, May 23, 2018 at 11:31:22AM +0200, Peter Rosin wrote: > > This makes this driver work with all(?) drivers that are not > > componentized and instead expect to connect to a panel/bridge. That > > said, the only one

Re: [PATCH v5 7/7] drm/i2c: tda998x: register as a drm bridge

2018-07-09 Thread Russell King - ARM Linux
On Wed, May 23, 2018 at 11:31:22AM +0200, Peter Rosin wrote: > This makes this driver work with all(?) drivers that are not > componentized and instead expect to connect to a panel/bridge. That > said, the only one tested is atmel-hlcdc. > > This hooks the relevant work function previously called

Re: [v3 03/10] mfd: mtk-mmsys: Add mmsys driver

2018-07-09 Thread Matthias Brugger
On 05/07/18 14:22, Lee Jones wrote: > On Thu, 05 Jul 2018, Matthias Brugger wrote: >> On 04/07/18 18:45, Lee Jones wrote: >>> On Wed, 04 Jul 2018, Matthias Brugger wrote: On 03/07/18 09:11, Lee Jones wrote: > On Mon, 25 Jun 2018, Matthias Brugger wrote: >> On 30/04/18 12:18, Lee

Re: [RFC PATCH v3 1/2] drm: Add generic colorkey properties for DRM planes

2018-07-09 Thread Dmitry Osipenko
On Friday, 6 July 2018 17:10:10 MSK Ville Syrjälä wrote: > On Fri, Jul 06, 2018 at 04:05:21PM +0300, Dmitry Osipenko wrote: > > On 06.07.2018 15:23, Ville Syrjälä wrote: > > > On Fri, Jul 06, 2018 at 02:11:44PM +0200, Maarten Lankhorst wrote: > > >> Hey, > > >> > > >> Op 04-06-18 om 00:00 schreef

Re: [PATCH v5 5/7] drm/i2c: tda998x: split tda998x_encoder_dpms into enable/disable

2018-07-09 Thread Russell King - ARM Linux
On Wed, May 23, 2018 at 11:31:20AM +0200, Peter Rosin wrote: > This fits better with the drm_bridge callbacks for when this > driver becomes a drm_bridge. > > Suggested-by: Laurent Pinchart > Signed-off-by: Peter Rosin > --- > drivers/gpu/drm/i2c/tda998x_drv.c | 64 >

[PATCH v2] drm/sun4i: Implement zpos for DE2

2018-07-09 Thread Jernej Skrabec
Initial implementation of DE2 planes only supported fixed zpos. Expand implementation with configurable zpos property. Implementation background: Channel in DE2 driver represents one DRM plane, whereas pipe is just mapped channel to known Z position. Pipe 0 will always be at the bottom, pipe 1

[PATCH v5 3/4] dt-bindings: display: amlogic: DT fix s/resets-names/reset-names/

2018-07-09 Thread Geert Uytterhoeven
Fixes: 8cceda5349377e30 ("dt-bindings: Add bindings for the Amlogic Meson dw-hdmi extension") Signed-off-by: Geert Uytterhoeven Acked-by: Rob Herring Acked-by: Neil Armstrong --- v5: - Add Acked-by, v4: - Add Acked-by, v3: - New. ---

[PATCH] video: goldfishfb: fix memory leak on driver remove

2018-07-09 Thread Anton Vasilyev
goldfish_fb_probe() allocates memory for fb, but goldfish_fb_remove() does not have deallocation of fb, which leads to memory leak on probe/remove. The patch adds deallocation into goldfish_fb_remove(). Found by Linux Driver Verification project (linuxtesting.org). Signed-off-by: Anton Vasilyev

[PATCH v5 2/4] arm64: dts: lg1313: DT fix s/#interrupts-cells/#interrupt-cells/

2018-07-09 Thread Geert Uytterhoeven
Signed-off-by: Geert Uytterhoeven Acked-by: Chanho Min --- v3: - Add Acked-by, v2: - New. --- arch/arm64/boot/dts/lg/lg1313.dtsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm64/boot/dts/lg/lg1313.dtsi b/arch/arm64/boot/dts/lg/lg1313.dtsi index

[PATCH v5 1/4] arm64: dts: lg1312: DT fix s/#interrupts-cells/#interrupt-cells/

2018-07-09 Thread Geert Uytterhoeven
Signed-off-by: Geert Uytterhoeven Acked-by: Rob Herring Acked-by: Chanho Min --- v3: - Add Acked-by, v2: - Add Acked-by, - Rebased. --- arch/arm64/boot/dts/lg/lg1312.dtsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm64/boot/dts/lg/lg1312.dtsi

Re: [RFC PATCH v3 1/2] drm: Add generic colorkey properties for DRM planes

2018-07-09 Thread Dmitry Osipenko
On Friday, 6 July 2018 18:40:27 MSK Russell King - ARM Linux wrote: > On Fri, Jul 06, 2018 at 05:58:50PM +0300, Dmitry Osipenko wrote: > > On Friday, 6 July 2018 17:10:10 MSK Ville Syrjälä wrote: > > > IIRC my earlier idea was to have different colorkey modes for the > > > min+max and value+mask

Re: [PATCH] drm/amdgpu/acp: Fix slab-out-of-bounds in mfd_add_device in acp_hw_init

2018-07-09 Thread Agrawal, Akshu
Was this patch ever picked up? I can't find it in agd5f/linux. >>> >>> >>> It wasn't applied. I don't see 51f7415039d4 ("drm/amd/amdgpu: >>> creating two I2S instances for stoney/cz") upstream yet either. >>> Daniel, Vijendar, which ones do you want applied? Can you send me the >>>

[Bug 199269] amdgpu/DC on Kaveri results in corrupt color output on HDMI

2018-07-09 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=199269 --- Comment #1 from Bernd Steinhauser (li...@bernd-steinhauser.de) --- Did a brief test on 4.18-rc3 and with that version it seems to be fixed. -- You are receiving this mail because: You are watching the assignee of the bug.

<    1   2   3