[GIT PULL] exynos-drm-next

2023-01-29 Thread Inki Dae
Hi Dave and Daniel, Just one fixup series to restore proper bridge chain order of Exynos Display pipeline. This is also required by a patch series[1] which makes existing Exynos DSI driver to be common driver so that it can be used by Exynos and I.MX8MM SoC commonly - under the

Re: [vmwgfx] crash upon vmw_open_channel() when booting on Oracle VM VirtualBox

2023-01-29 Thread Zack Rusin
On Sun, 2023-01-29 at 17:11 +0900, Tetsuo Handa wrote: > On 2023/01/29 15:00, Zack Rusin wrote: > > On Sat, 2023-01-28 at 20:44 +0900, Tetsuo Handa wrote: > > > Hello. > > > > > > I noticed that a kernel built with vmwgfx driver fails to boot a Linux > > > guest > > > on Oracle VM VirtualBox

Re: linux-6.2-rc4+ hangs on poweroff/reboot: Bisected

2023-01-29 Thread Ben Skeggs
On Sat, 28 Jan 2023 at 21:29, Chris Clayton wrote: > > > > On 28/01/2023 05:42, Linux kernel regression tracking (Thorsten Leemhuis) > wrote: > > On 27.01.23 20:46, Chris Clayton wrote: > >> [Resend because the mail client on my phone decided to turn HTML on behind > >> my back, so my reply got

Re: [PATCH] dt-bindings: Add missing (unevaluated|additional)Properties on child node schemas

2023-01-29 Thread Sebastian Reichel
Hi, On Tue, Jan 24, 2023 at 05:02:28PM -0600, Rob Herring wrote: > Just as unevaluatedProperties or additionalProperties are required at > the top level of schemas, they should (and will) also be required for > child node schemas. That ensures only documented properties are > present. > > Add

Re: [REGRESSION] GM20B probe fails after commit 2541626cfb79

2023-01-29 Thread Ben Skeggs
On Fri, 27 Jan 2023 at 20:42, Diogo Ivo wrote: > > On Fri, Jan 27, 2023 at 04:00:59PM +1000, Ben Skeggs wrote: > > On Fri, 20 Jan 2023 at 21:37, Diogo Ivo > > wrote: > > > > > > On Wed, Jan 18, 2023 at 11:28:49AM +1000, Ben Skeggs wrote: > > > > On Mon, 16 Jan 2023 at 22:27, Diogo Ivo > > > >

Re: [PATCH drm-next 05/14] drm/nouveau: new VM_BIND uapi interfaces

2023-01-29 Thread Danilo Krummrich
On 1/27/23 22:09, Danilo Krummrich wrote: On 1/27/23 16:17, Christian König wrote: Am 27.01.23 um 15:44 schrieb Danilo Krummrich: [SNIP] What you want is one component for tracking the VA allocations (drm_mm based) and a different component/interface for tracking the VA mappings

[PATCH] drm/amd: Optimize some memory initializations

2023-01-29 Thread Christophe JAILLET
Instead of zeroing some memory and then copying data in part or all of it, use memcpy_and_pad(). This avoids writing some memory twice and should save a few cycles. Signed-off-by: Christophe JAILLET --- drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c | 11 ---

[PATCH v2] dt-bindings: display: bridge: sil, sii8620: convert to dtschema

2023-01-29 Thread Krzysztof Kozlowski
Convert the Silicon Image SiI8620 HDMI/MHL bridge bindings to DT schema. Signed-off-by: Krzysztof Kozlowski --- Changes since v1: 1. Require also port@1 (Laurent) --- .../bindings/display/bridge/sil,sii8620.yaml | 108 ++ .../bindings/display/bridge/sil-sii8620.txt | 33

[PATCH] drm/amdgpu: Fix a typo ("boradcast")

2023-01-29 Thread Jonathan Neuschäfer
Spell it as "broadcast". Signed-off-by: Jonathan Neuschäfer --- drivers/gpu/drm/amd/amdgpu/df_v1_7.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/amd/amdgpu/df_v1_7.c b/drivers/gpu/drm/amd/amdgpu/df_v1_7.c index b991609f46c10..5dfab8021 100644 ---

[PATCHv2] fbcon: Check font dimension limits

2023-01-29 Thread Samuel Thibault
blit_x and blit_y are u32, so fbcon currently cannot support fonts larger than 32x32. The 32x32 case also needs shifting an unsigned int, to properly set bit 31, otherwise we get "UBSAN: shift-out-of-bounds in fbcon_set_font", as reported on:

Re: [PATCH] fbcon: Check font dimension limits

2023-01-29 Thread Samuel Thibault
Jiri Slaby, le jeu. 26 janv. 2023 10:02:55 +0100, a ecrit: > On 26. 01. 23, 1:49, Samuel Thibault wrote: > > Index: linux-6.0/drivers/video/fbdev/core/fbcon.c > > === > > --- linux-6.0.orig/drivers/video/fbdev/core/fbcon.c > > +++

Re: [PATCH] fbcon: Check font dimension limits

2023-01-29 Thread Samuel Thibault
Greg KH, le jeu. 26 janv. 2023 08:43:02 +0100, a ecrit: > On Thu, Jan 26, 2023 at 01:49:12AM +0100, Samuel Thibault wrote: > > blit_x and blit_y are uint32_t, so fbcon currently cannot support fonts > > larger than 32x32. > > "u32" you mean, right? Right :) > > The 32x32 case also needs

Re: [PATCH 1/3] dt-bindings: display: panel: sitronix,st7701: Add another panel

2023-01-29 Thread Krzysztof Kozlowski
On 29/01/2023 15:31, Maya Matuszczyk wrote: > Add compatible for 854x480 Elida KD50T048A panel, found in Odroid Go Super > and Odroid Go Ultra Please wrap commit message according to Linux coding style / submission process (neither too early nor over the limit):

[PATCH 2/3] drm: panel: Add Elida KD50T048A to Sitronix ST7701 driver

2023-01-29 Thread Maya Matuszczyk
Add KD50T048A MIPI-DSI panel, which is based on ST7701 chip. Not sure what else to add to this commit message. Signed-off-by: Maya Matuszczyk --- drivers/gpu/drm/panel/panel-sitronix-st7701.c | 125 ++ 1 file changed, 125 insertions(+) diff --git

[PATCH 3/3] arm64: dts: rockchip: Add display support to Odroid Go Super

2023-01-29 Thread Maya Matuszczyk
Note that orientation property in ST7701 driver is currently missing, And that ST7701 panel driver uses different regulator names compared to driver for Elida KD35T133 driver. Signed-off-by: Maya Matuszczyk --- arch/arm64/boot/dts/rockchip/rk3326-odroid-go3.dts | 4 +++- 1 file changed, 3

[PATCH 1/3] dt-bindings: display: panel: sitronix, st7701: Add another panel

2023-01-29 Thread Maya Matuszczyk
Add compatible for 854x480 Elida KD50T048A panel, found in Odroid Go Super and Odroid Go Ultra Signed-off-by: Maya Matuszczyk --- .../devicetree/bindings/display/panel/sitronix,st7701.yaml | 1 + 1 file changed, 1 insertion(+) diff --git

[PATCH 0/3] Add internal display support to Odroid Go Super

2023-01-29 Thread Maya Matuszczyk
This patch series introduces internal display to Odroid Go Super, which shares panel with Odroid Go Ultra and several clone devices. Maya Matuszczyk (3): dt-bindings: display: panel: sitronix,st7701: Add Elida KD50T048A Panel drm: panel: Add Elida KD50T048A to Sitronix ST7701 driver

Re: (subset) [PATCH V12 0/4] drm/panel: Add Magnachip D53E6EA8966 Panel Controller

2023-01-29 Thread Heiko Stuebner
On Mon, 23 Jan 2023 09:45:59 -0600, Chris Morgan wrote: > From: Chris Morgan > > Add the Magnachip D53E6EA8966 panel IC controller for display panels > such as the Samsung AMS495QA01 panel as found on the Anbernic RG503. > This panel uses DSI to receive video signals, but 3-wire SPI to receive >

Re: (subset) [PATCH v3 0/6] drm/rockchip: vop2: add support for the rgb output block

2023-01-29 Thread Heiko Stuebner
On Tue, 24 Jan 2023 06:47:00 +0100, Michael Riesch wrote: > This series adds support for the RGB output block that can be found in the > Rockchip Video Output Processor (VOP) 2. Version 2 of this series > incorporates the feedback by Dan Carpenter and Sascha Hauer. Version 3 > fixes a dumb mistake

Re: [PATCH] Revert "drm/display/dp_mst: Move all payload info into the atomic state"

2023-01-29 Thread Greg KH
On Fri, Jan 27, 2023 at 03:02:41PM +, Limonciello, Mario wrote: > [Public] > > > > > -Original Message- > > From: Linux kernel regression tracking (Thorsten Leemhuis) > > > > Sent: Friday, January 27, 2023 03:15 > > To: Greg KH ; Limonciello, Mario > > > > Cc:

[PATCH] dma-buf: Add "dma-buf" to title of documentation

2023-01-29 Thread Jonathan Neuschäfer
To make it easier to find the dma-buf documentation when looking through tables-of-contents etc., put the name "dma-buf" in the title. Signed-off-by: Jonathan Neuschäfer --- Documentation/driver-api/dma-buf.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git

Re: [PATCH 1/2] dt-bindings: display: bridge: Add NXP i.MX93 parallel display format configuration

2023-01-29 Thread Krzysztof Kozlowski
On 28/01/2023 04:47, Liu Ying wrote: > NXP i.MX93 mediamix blk-ctrl contains one DISPLAY_MUX register which > configures parallel display format by using the "PARALLEL_DISP_FORMAT" > field. Add device tree bindings for the display format configuration. > > Signed-off-by: Liu Ying > --- >

Re: [PATCH v3] drm/mediatek: Add support for AR30 and BA30

2023-01-29 Thread kernel test robot
.org/0day-ci/archive/20230129/202301291906.az5nhf9w-...@intel.com/config) compiler: arm-linux-gnueabi-gcc (GCC) 12.1.0 reproduce (this is a W=1 build): wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross chmod +x ~/bin/make.cross

[PATCH v2] fbdev: Fix invalid page access after closing deferred I/O devices

2023-01-29 Thread Takashi Iwai
When a fbdev with deferred I/O is once opened and closed, the dirty pages still remain queued in the pageref list, and eventually later those may be processed in the delayed work. This may lead to a corruption of pages, hitting an Oops. This patch makes sure to cancel the delayed work and clean

Re: [vmwgfx] crash upon vmw_open_channel() when booting on Oracle VM VirtualBox

2023-01-29 Thread Tetsuo Handa
On 2023/01/29 15:00, Zack Rusin wrote: > On Sat, 2023-01-28 at 20:44 +0900, Tetsuo Handa wrote: >> Hello. >> >> I noticed that a kernel built with vmwgfx driver fails to boot a Linux guest >> on Oracle VM VirtualBox 7.0.4 on Windows 11 on DELL Inspiron 14 5420. >> I didn't notice this problem when