Re: [PATCH v2 11/86] drm/atmel-hdlcd: Run DRM default client setup

2024-08-26 Thread Thomas Zimmermann
Hi Sam Am 23.08.24 um 20:51 schrieb Sam Ravnborg: On Wed, Aug 21, 2024 at 02:59:08PM +0200, Thomas Zimmermann wrote: Call drm_client_setup_with_fourcc() to run the kernel's default client setup for DRM. Set fbdev_probe in struct drm_driver, so that the client setup can start the common fbdev cl

[PATCH v3] fix up the misspellings

2024-08-26 Thread Yang Ruibin
Hightest is a typo. It should be highest.Please ensure the consistency of variable naming. Signed-off-by: Yang Ruibin <11162...@vivo.com> --- Changes V3: -Updated the ignored misspellings --- .../drm/amd/pm/powerplay/smumgr/fiji_smumgr.c| 16 .../amd/pm/powerplay/smumgr/polar

[PATCH v6 2/4] drm/amd/display: Add support for minimum backlight quirk

2024-08-26 Thread Thomas Weißschuh
Not all platforms provide the full range of PWM backlight capabilities supported by the hardware through ATIF. Use the generic drm panel minimum backlight quirk infrastructure to override the capabilities where necessary. Testing the backlight quirk together with the "panel_power_savings" sysfs fi

[PATCH v6 4/4] drm: panel-backlight-quirks: Add Framework 13 glossy and 2.8k panels

2024-08-26 Thread Thomas Weißschuh
From: "Dustin L. Howett" I have tested these panels on the Framework Laptop 13 AMD with firmware revision 3.05 (latest at time of submission). Signed-off-by: Dustin L. Howett Signed-off-by: Thomas Weißschuh Reviewed-by: Mario Limonciello --- drivers/gpu/drm/drm_panel_backlight_quirks.c | 16

[PATCH v6 0/4] drm: Minimum backlight overrides and implementation for amdgpu

2024-08-26 Thread Thomas Weißschuh
The value of "min_input_signal" returned from ATIF on a Framework AMD 13 is "12". This leads to a fairly bright minimum display backlight. Introduce a quirk to override "min_input_signal" to "0" which leads to a much lower minimum brightness, which is still readable even in daylight. One solution

[PATCH v5] drivers: smumgr: fix up the misspellings

2024-08-26 Thread Yang Ruibin
Hightest is a typo. It should be highest.Please ensure the consistency of variable naming. Signed-off-by: Yang Ruibin <11162...@vivo.com> --- Changes v5: -Updated the ignored misspellings --- .../drm/amd/pm/powerplay/smumgr/fiji_smumgr.c| 16 .../amd/pm/powerplay/smumgr/polar

Re: [PATCH v3] drivers:smumgr:fix up the misspellings

2024-08-26 Thread Yang Ruibin
Sorry, please ignore this patch for now.  As the wrong subject line.  This patch will be updated later. 在 2024/8/26 11:47, Yang Ruibin 写道: Hightest is a typo. It should be highest.Please ensure the consistency of variable naming. Signed-off-by: Yang Ruibin <11162...@vivo.com> --- Changes V4: -

[PATCH v3] drivers:smumgr:fix up the misspellings

2024-08-26 Thread Yang Ruibin
Hightest is a typo. It should be highest.Please ensure the consistency of variable naming. Signed-off-by: Yang Ruibin <11162...@vivo.com> --- Changes V4: -Adds some information in the subject -Updated the ignored misspellings --- .../drm/amd/pm/powerplay/smumgr/fiji_smumgr.c| 16 -

[PATCH v6 1/4] drm: Add panel backlight quirks

2024-08-26 Thread Thomas Weißschuh
Panels using a PWM-controlled backlight source do not have a standard way to communicate their valid PWM ranges. On x86 the ranges are read from ACPI through driver-specific tables. The built-in ranges are not necessarily correct, or may grow stale if an older device can be retrofitted with newer p

[PATCH v6 3/4] drm: panel-backlight-quirks: Add Framework 13 matte panel

2024-08-26 Thread Thomas Weißschuh
The value of "min_input_signal" returned from ATIF on a Framework AMD 13 is "12". This leads to a fairly bright minimum display backlight. Add a quirk to override that the minimum backlight PWM to "0" which leads to a much lower minimum brightness, which is still visible. Tested on a Framework AM

Re: [PATCH v3] fix up the misspellings

2024-08-26 Thread Yang Ruibin
Sorry, please ignore this patch for now.  As the wrong subject line.  This patch will be updated later. 在 2024/8/26 10:55, Yang Ruibin 写道: Hightest is a typo. It should be highest.Please ensure the consistency of variable naming. Signed-off-by: Yang Ruibin <11162...@vivo.com> --- Changes V3: -

[PATCH] drm/amdgpu/: Add missing kdoc entry in amdgpu_vm_handle_fault function

2024-08-26 Thread Srinivasan Shanmugam
This commit adds a description for the 'ts' parameter in the amdgpu_vm_handle_fault function's comment block. Fixes the below with gcc W=1: drivers/gpu/drm/amd/amdgpu/amdgpu_vm.c:2781: warning: Function parameter or struct member 'ts' not described in 'amdgpu_vm_handle_fault' Cc: Christian König

RE: [PATCH v2] drm/amdgpu/gfx9.4.3: Implement compute pipe reset

2024-08-26 Thread Liang, Prike
[AMD Official Use Only - AMD Internal Distribution Only] > From: Alex Deucher > Sent: Tuesday, August 20, 2024 9:50 PM > To: Lazar, Lijo > Cc: Liang, Prike ; amd-gfx@lists.freedesktop.org; > Deucher, Alexander ; Ma, Le > > Subject: Re: [PATCH v2] drm/amdgpu/gfx9.4.3: Implement compute pipe rese

Re: [PATCH] drm/amdgpu/: Add missing kdoc entry in amdgpu_vm_handle_fault function

2024-08-26 Thread Chen, Xiaogang
It was generated from my patch "drm/amdkfd: Change kfd/svm page fault drain handling". kernel test robot also reported same. Please add: If you fix the issue in a separate patch/commit (i.e. not just a new version of the same patch/commit), kindly add following tags | Reported-by: kernel test

RE: [PATCH] drm/amdgpu: Surface svm_attr_gobm, a RW module parameter

2024-08-26 Thread Errabolu, Ramesh
Responses are in-line. Will post updated patch after testing Regards, Ramesh From: Yang, Philip Sent: Thursday, August 22, 2024 9:28 AM To: Errabolu, Ramesh ; amd-gfx@lists.freedesktop.org Subject: Re: [PATCH] drm/amdgpu: Surface svm_attr_gobm, a RW module parameter On 2024-08-21 19:22, Ramesh

Re: [PATCH v6 2/4] drm/amd/display: Add support for minimum backlight quirk

2024-08-26 Thread Mario Limonciello
On 8/24/2024 13:33, Thomas Weißschuh wrote: Not all platforms provide the full range of PWM backlight capabilities supported by the hardware through ATIF. Use the generic drm panel minimum backlight quirk infrastructure to override the capabilities where necessary. Testing the backlight quirk to

Re: [PATCH 1/2] drm/amdgpu/gfx11: return early in preempt_ib()

2024-08-26 Thread Alex Deucher
Ping on this series? Alex On Thu, Aug 15, 2024 at 1:10 PM Alex Deucher wrote: > > When MES is enabled KIQ is not available. Return an error > when someone uses the debugfs preempt test interface in > that case. > > Signed-off-by: Alex Deucher > --- > drivers/gpu/drm/amd/amdgpu/gfx_v11_0.c | 3

Re: [PATCH 15/16] drm/amd/display: 3.2.298

2024-08-26 Thread Leo Li
On 2024-08-21 18:01, Zaeem Mohamed wrote: From: Aric Cyr This version brings along the following fixes: - Fix MS/MP mismatches in dml21 for dcn401 - Resolved Coverity issues - Add back quality EASF and ISHARP and dc dependency changes - Add sharpness support for windowed YUV420 video - Add i

[PATCH v2] drm/amdgpu: Surface svm_attr_gobm, a RW module parameter

2024-08-26 Thread Ramesh Errabolu
Enables users to update the default size of buffer used in migration either from Sysmem to VRAM or vice versa. The param GOBM refers to granularity of buffer migration, and is specified in terms of log(numPages(buffer)). It facilitates users of unregistered memory to control GOBM, albeit at a coars

[pull] amdgpu, amdkfd, radeon, drm drm-next-6.12

2024-08-26 Thread Alex Deucher
Hi Dave, Sima, New stuff for 6.12. The following changes since commit 627a24f5f25d689682f395f3df1411273be4436b: Merge tag 'amd-drm-fixes-6.11-2024-07-18' of https://gitlab.freedesktop.org/agd5f/linux into drm-next (2024-07-22 13:03:50 +1000) are available in the Git repository at: https:

Re: [PATCH 1/2] drm/amdgpu/gfx11: return early in preempt_ib()

2024-08-26 Thread SRINIVASAN SHANMUGAM
On 8/15/2024 10:30 PM, Alex Deucher wrote: When MES is enabled KIQ is not available. Return an error when someone uses the debugfs preempt test interface in that case. Signed-off-by: Alex Deucher --- drivers/gpu/drm/amd/amdgpu/gfx_v11_0.c | 3 +++ 1 file changed, 3 insertions(+) diff --g