Re: [PATCH] drm/etnaviv: always start/stop scheduler in timeout processing

2020-08-25 Thread Lucas Stach
Hi all, Am Montag, den 24.08.2020, 11:11 -0300 schrieb Fabio Estevam: > Hi Lucas, > > On Mon, Aug 24, 2020 at 8:02 AM Lucas Stach wrote: > > The drm scheduler currently expects that the stop/start sequence is always > > executed in the timeout handling, as the job at the head of the hardware >

Re: Build regressions/improvements in v5.9-rc2

2020-08-25 Thread Geert Uytterhoeven
On Tue, Aug 25, 2020 at 10:23 AM Geert Uytterhoeven wrote: > JFYI, when comparing v5.9-rc2[1] to v5.9-rc1[3], the summaries are: > - build errors: +12/-0 + /kisskb/src/drivers/gpu/drm/amd/amdgpu/../display/dc/calcs/dcn_calcs.c: error: implicit declaration of function 'disable_kernel_vsx'

Re: [PATCH v8 0/3] drm: Add support for Cadence MHDP DPI/DP bridge and J721E wrapper.

2020-08-25 Thread Guido Günther
Hi Swapnil, On Mon, Aug 24, 2020 at 07:16:31AM +, Swapnil Kashinath Jakhade wrote: [..snip..] > Following are the differences between MHDP IPs from Cadence for Rockchip, TI > and NxP: > > The Rockchip and NXP MHDP Core shares the same part (IP8501) which is DP v1.3 > SST > Controller with

RE: [Intel-gfx] [PATCH v5 1/5] drm: Introduce plane and CRTC scaling filter properties

2020-08-25 Thread Laxminarayan Bharadiya, Pankaj
> -Original Message- > From: Shankar, Uma > Sent: 19 August 2020 13:44 > To: Laxminarayan Bharadiya, Pankaj > ; jani.nik...@linux.intel.com; > dan...@ffwll.ch; intel-...@lists.freedesktop.org; dri- > de...@lists.freedesktop.org; ville.syrj...@linux.intel.com; > dani...@collabora.com;

[PATCH] video: fbdev: replace spurious snprintf() with sprintf()

2020-08-25 Thread Alex Dewar
par->vgapass is a u8, so if we are assuming that buf is at least PAGE_SIZE then the extra checking is pointless. Signed-off-by: Alex Dewar --- drivers/video/fbdev/sstfb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/video/fbdev/sstfb.c

Re: drm/bridge: Synopsys DW-HDMI bridge driver for the Ingenic JZ4780 (was Re: Specialising the Synopsys DW-HDMI bridge driver for the Ingenic JZ4780)

2020-08-25 Thread Paul Cercueil
Le lun. 24 août 2020 à 14:38, Ezequiel Garcia a écrit : On Mon, 24 Aug 2020 at 13:05, H. Nikolaus Schaller wrote: Hi Ezequiel, > Am 24.08.2020 um 15:46 schrieb Ezequiel Garcia : > > On Fri, 21 Aug 2020 at 19:24, Paul Cercueil wrote: >> >> >> >> Le sam. 22 août 2020 à 0:11,

[PATCH] docs: fb: Correcting the location of FRAMEBUFFER_CONSOLE option.

2020-08-25 Thread Bilal Wasim
fbcon doc mentions FRAMEBUFFER_CONSOLE option to be under Device Drivers->Graphics Support->Frame buffer Devices-> Console display driver support->Framebuffer Console Support, while its under Device Drivers->Graphics Support-> Console display driver support->Framebuffer Console Support.

[PATCH] video: fbdev: radeon: Fix memleak in radeonfb_pci_register

2020-08-25 Thread Dinghao Liu
When radeon_kick_out_firmware_fb() fails, info should be freed just like the subsequent error paths. Fixes: 069ee21a82344 ("fbdev: Fix loading of module radeonfb on PowerMac") Signed-off-by: Dinghao Liu --- drivers/video/fbdev/aty/radeon_base.c | 2 +- 1 file changed, 1 insertion(+), 1

[PATCH 1/2] dt-bindings: gpu: mali-utgard: Add Allwinner R40 compatible

2020-08-25 Thread Jernej Skrabec
Allwinner R40 SoC contains Mali400, so add its specific compatible to bindings. Signed-off-by: Jernej Skrabec --- Documentation/devicetree/bindings/gpu/arm,mali-utgard.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Documentation/devicetree/bindings/gpu/arm,mali-utgard.yaml

[PATCH 2/2] ARM: dts: sun8i: r40: Add Mali node

2020-08-25 Thread Jernej Skrabec
R40 has Mali400 GP2 GPU. Add a node for it. Signed-off-by: Jernej Skrabec --- arch/arm/boot/dts/sun8i-r40.dtsi | 22 ++ 1 file changed, 22 insertions(+) diff --git a/arch/arm/boot/dts/sun8i-r40.dtsi b/arch/arm/boot/dts/sun8i-r40.dtsi index b782041e0e04..b82031b19893 100644

[PATCH 0/2] ARM: dts: sun8i: r40: Enable mali400 GPU

2020-08-25 Thread Jernej Skrabec
Following two patches enable Mali400 GPU on Allwinner R40 SoC. At this point I didn't add table for frequency switching because it would require far more testing and defaults work stable and reasonably well. Please take a look. Best regards, Jernej Jernej Skrabec (2): dt-bindings: gpu:

nouveau PUSHBUFFER_ERR on 5.9.0-rc2-next-20200824

2020-08-25 Thread Alexander Kapshuk
Since upgrading to linux-next based on 5.9.0-rc1 and 5.9.0-rc2 I have had my mouse pointer disappear soon after logging in, and I have observed the system freezing temporarily when clicking on objects and when typing text. I have also found records of push buffer errors in dmesg output: [

[PATCH] drm/amd/pm: use kmemdup() rather than kmalloc+memcpy

2020-08-25 Thread Alex Dewar
Issue identified with Coccinelle. Signed-off-by: Alex Dewar --- .../drm/amd/pm/powerplay/hwmgr/vega20_processpptables.c | 8 +++- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/drivers/gpu/drm/amd/pm/powerplay/hwmgr/vega20_processpptables.c

Re: drm/bridge: Synopsys DW-HDMI bridge driver for the Ingenic JZ4780 (was Re: Specialising the Synopsys DW-HDMI bridge driver for the Ingenic JZ4780)

2020-08-25 Thread H. Nikolaus Schaller
Hi Ezequiel, > Am 24.08.2020 um 15:46 schrieb Ezequiel Garcia > : > > On Fri, 21 Aug 2020 at 19:24, Paul Cercueil wrote: >> >> >> >> Le sam. 22 août 2020 à 0:11, Paul Boddie a >> écrit : >> >> If you send clean patches, there's no reason for me not to merge them. >> > > I'd really like

Re: [PATCH v2] drm/etnaviv: fix external abort seen on GC600 rev 0x19

2020-08-25 Thread Ing. Josua Mayer
Verified that it works as intended on 5.7.10. Thank you very much :) Feel free to add my tested-by ... Am 23.08.20 um 21:09 schrieb Christian Gmeiner: > It looks like that this GPU core triggers an abort when > reading VIVS_HI_CHIP_PRODUCT_ID and/or VIVS_HI_CHIP_ECO_ID. > > I looked at different

RE: [PATCH v8 0/3] drm: Add support for Cadence MHDP DPI/DP bridge and J721E wrapper.

2020-08-25 Thread Swapnil Kashinath Jakhade
Hi Guido, > -Original Message- > From: Guido Günther > Sent: Wednesday, August 12, 2020 7:27 PM > To: Tomi Valkeinen > Cc: Swapnil Kashinath Jakhade ; airl...@linux.ie; > dan...@ffwll.ch; laurent.pinch...@ideasonboard.com; robh...@kernel.org; > a.ha...@samsung.com;

Re: [PATCH v4 0/7] Convert mtk-dsi to drm_bridge API and get EDID for ps8640 bridge

2020-08-25 Thread Bilal Wasim
Hi Chun-Kuan, Enric, Is there any plan to merge the following commits in this series to the mainline? drm/bridge: ps8640: Get the EDID from eDP control drm/bridge_connector: Set default status connected for eDP connectors I see that rest of the patchset is already merged and available in

Re: [PATCH] dt-bindings: Whitespace clean-ups in schema files

2020-08-25 Thread Wolfram Sang
On Wed, Aug 12, 2020 at 02:36:18PM -0600, Rob Herring wrote: > Clean-up incorrect indentation, extra spaces, long lines, and missing > EOF newline in schema files. Most of the clean-ups are for list > indentation which should always be 2 spaces more than the preceding > keyword. > > Found with

Re: [PATCH v4 0/2] staging: android: Remove BUG/BUG_ON from ion

2020-08-25 Thread Greg Kroah-Hartman
On Tue, Aug 25, 2020 at 07:47:29AM +0100, Christoph Hellwig wrote: > On Fri, Aug 21, 2020 at 06:27:04PM +0300, Tomer Samara wrote: > > Remove BUG/BUG_ON from androind/ion > > Please just remove ion. It has been rejected and we have developed > proper kernel subsystens to replace it. Don't waste

<    1   2