From: Harry Wentland <harry.wentland@amd.com>
To: Ryan Lin <tsung-hua.lin@amd.com>,
leon.li@amd.com, ching-shih.li@amd.com,
alexander.deucher@amd.com, christian.koenig@amd.com,
Xinhui.Pan@amd.com, airlied@linux.ie, daniel@ffwll.ch,
sunpeng.li@amd.com, seanpaul@chromium.org,
Pratik.Vishwakarma@amd.com, lijo.lazar@amd.com,
sathishkumar.sundararaju@amd.com, rdunlap@infradead.org,
linux-patches-robot@chromeos-missing-patches.google.com.iam.gserviceaccount.com,
Hawking.Zhang@amd.com, andrey.grodzovsky@amd.com,
shaoyun.liu@amd.com, Jack.Zhang1@amd.com, horace.chen@amd.com,
haonan.wang2@amd.com, Anthony.Koo@amd.com, qingqing.zhuo@amd.com,
wyatt.wood@amd.com, robin.chen@amd.com,
amd-gfx@lists.freedesktop.org, dri-devel@lists.freedesktop.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH v4] drm/amdgpu: Disable ABM when AC mode
Date: Wed, 27 Apr 2022 11:21:39 -0400 [thread overview]
Message-ID: <fe946a4d-c427-a13a-b1a3-df8ae37cb554@amd.com> (raw)
In-Reply-To: <20220427080802.1687117-1-tsung-hua.lin@amd.com>
On 2022-04-27 04:08, Ryan Lin wrote:
> Disable ABM feature when the system is running on AC mode to get the more
> perfect contrast of the display.
>
> v2: remove "UPSTREAM" from the subject.
>
> v3: adv->pm.ac_power updating by amd gpu_acpi_event_handler.
>
> V4: Add the file I lost to fix the build error.
>
> Signed-off-by: Ryan Lin <tsung-hua.lin@amd.com>
>
> ---
> drivers/gpu/drm/amd/amdgpu/amdgpu_acpi.c | 3 +-
> drivers/gpu/drm/amd/amdgpu/amdgpu_device.c | 1 +
> drivers/gpu/drm/amd/display/dc/dce/dmub_abm.c | 61 +++++++++++--------
> drivers/gpu/drm/amd/include/amd_acpi.h | 1 +
> drivers/gpu/drm/amd/pm/inc/amdgpu_dpm.h | 1 +
> 5 files changed, 42 insertions(+), 25 deletions(-)
>
> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_acpi.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_acpi.c
> index 4811b0faafd9a..6ac331ee4255d 100644
> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_acpi.c
> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_acpi.c
> @@ -822,7 +822,8 @@ static int amdgpu_acpi_event(struct notifier_block *nb,
> struct amdgpu_device *adev = container_of(nb, struct amdgpu_device, acpi_nb);
> struct acpi_bus_event *entry = (struct acpi_bus_event *)data;
>
> - if (strcmp(entry->device_class, ACPI_AC_CLASS) == 0) {
> + if (strcmp(entry->device_class, ACPI_AC_CLASS) == 0 ||
> + strcmp(entry->device_class, ACPI_BATTERY_CLASS) == 0) {
> if (power_supply_is_system_supplied() > 0)
> DRM_DEBUG_DRIVER("pm: AC\n");
> else
> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
> index abfcc1304ba0c..3a0afe7602727 100644
> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
> @@ -3454,6 +3454,7 @@ int amdgpu_device_init(struct amdgpu_device *adev,
>
> adev->gfx.gfx_off_req_count = 1;
> adev->pm.ac_power = power_supply_is_system_supplied() > 0;
> + adev->pm.old_ac_power = true;
>
> atomic_set(&adev->throttling_logging_enabled, 1);
> /*
> diff --git a/drivers/gpu/drm/amd/display/dc/dce/dmub_abm.c b/drivers/gpu/drm/amd/display/dc/dce/dmub_abm.c
> index 54a1408c8015c..090bd23410b45 100644
> --- a/drivers/gpu/drm/amd/display/dc/dce/dmub_abm.c
> +++ b/drivers/gpu/drm/amd/display/dc/dce/dmub_abm.c
> @@ -22,7 +22,8 @@
> * Authors: AMD
> *
> */
> -
> +#include <linux/power_supply.h>
> +#include "amdgpu.h"
> #include "dmub_abm.h"
> #include "dce_abm.h"
> #include "dc.h"
> @@ -50,7 +51,7 @@
>
> #define DISABLE_ABM_IMMEDIATELY 255
>
> -
> +extern uint amdgpu_dm_abm_level;
>
> static void dmub_abm_enable_fractional_pwm(struct dc_context *dc)
> {
> @@ -117,28 +118,6 @@ static void dmub_abm_init(struct abm *abm, uint32_t backlight)
> dmub_abm_enable_fractional_pwm(abm->ctx);
> }
>
> -static unsigned int dmub_abm_get_current_backlight(struct abm *abm)
> -{
> - struct dce_abm *dce_abm = TO_DMUB_ABM(abm);
> - unsigned int backlight = REG_READ(BL1_PWM_CURRENT_ABM_LEVEL);
> -
> - /* return backlight in hardware format which is unsigned 17 bits, with
> - * 1 bit integer and 16 bit fractional
> - */
> - return backlight;
> -}
> -
> -static unsigned int dmub_abm_get_target_backlight(struct abm *abm)
> -{
> - struct dce_abm *dce_abm = TO_DMUB_ABM(abm);
> - unsigned int backlight = REG_READ(BL1_PWM_TARGET_ABM_LEVEL);
> -
> - /* return backlight in hardware format which is unsigned 17 bits, with
> - * 1 bit integer and 16 bit fractional
> - */
> - return backlight;
> -}
> -
> static bool dmub_abm_set_level(struct abm *abm, uint32_t level)
> {
> union dmub_rb_cmd cmd;
> @@ -147,6 +126,10 @@ static bool dmub_abm_set_level(struct abm *abm, uint32_t level)
> int i;
> int edp_num;
> uint8_t panel_mask = 0;
> + struct amdgpu_device *dev = dc->driver_context;
NAK. We can't access amdgpu_device in DC. This is code that's
shared with other OSes.
I've mentioned this in my previous review a month ago.
What happened to the other suggestion I had? I never saw
a follow-up.
My previous comments, copy-pasted here again. Please address
or answer why you disagree:
>>
>> This patch still has the problem of accessing adev from within DC.
>> That'll break things on other platforms. This information needs to
>> come in through the DC interface if we want to enable/disable ABM in
>> this function.
>>
>> After a closer look I also don't think that amdgpu is the right place
>> to control the logic to disable ABM in AC mode, i.e. to switch between
>> ABM levels. Take a look at dm_connector_state.abm_level and the
>> abm_level_property. It's exposed to userspace as "abm level".
>>
>> The "abm level" defaults to "0" unless userspace sets the "abm level"
>> to something else. The same component that sets the "abm level"
>> initially is the one that should set it to "0" when in AC mode.
>>
>
> It might be that the ABM level is controlled via the abmlevel module
> parameter. If that's the case and there isn't a userspace that sets the
> "abm level" property then the easiest way to handle this is to switch
> between 0 and amdgpu_dm_abm_level inside amdgpu_dm when there is a
> AC/DC switch. Either way we shouldn't need to change DC.
Thanks,
Harry
> +
> + if (dev->pm.ac_power)
> + level = 0;
>
> get_edp_links(dc->dc, edp_links, &edp_num);
>
> @@ -170,6 +153,36 @@ static bool dmub_abm_set_level(struct abm *abm, uint32_t level)
> return true;
> }
>
> +static unsigned int dmub_abm_get_current_backlight(struct abm *abm)
> +{
> + struct dce_abm *dce_abm = TO_DMUB_ABM(abm);
> + unsigned int backlight = REG_READ(BL1_PWM_CURRENT_ABM_LEVEL);
> + struct dc_context *dc = abm->ctx;
> + struct amdgpu_device *adev = dc->driver_context;
> +
> + if (adev->pm.ac_power != adev->pm.old_ac_power) {
> + dmub_abm_set_level(abm, amdgpu_dm_abm_level);
> + adev->pm.ac_power = power_supply_is_system_supplied() > 0;
> + adev->pm.old_ac_power = adev->pm.ac_power;
> + }
> +
> + /* return backlight in hardware format which is unsigned 17 bits, with
> + * 1 bit integer and 16 bit fractional
> + */
> + return backlight;
> +}
> +
> +static unsigned int dmub_abm_get_target_backlight(struct abm *abm)
> +{
> + struct dce_abm *dce_abm = TO_DMUB_ABM(abm);
> + unsigned int backlight = REG_READ(BL1_PWM_TARGET_ABM_LEVEL);
> +
> + /* return backlight in hardware format which is unsigned 17 bits, with
> + * 1 bit integer and 16 bit fractional
> + */
> + return backlight;
> +}
> +
> static bool dmub_abm_init_config(struct abm *abm,
> const char *src,
> unsigned int bytes,
> diff --git a/drivers/gpu/drm/amd/include/amd_acpi.h b/drivers/gpu/drm/amd/include/amd_acpi.h
> index 2d089d30518f3..5a62e580668e4 100644
> --- a/drivers/gpu/drm/amd/include/amd_acpi.h
> +++ b/drivers/gpu/drm/amd/include/amd_acpi.h
> @@ -25,6 +25,7 @@
> #define AMD_ACPI_H
>
> #define ACPI_AC_CLASS "ac_adapter"
> +#define ACPI_BATTERY_CLASS "battery"
>
> struct atif_verify_interface {
> u16 size; /* structure size in bytes (includes size field) */
> diff --git a/drivers/gpu/drm/amd/pm/inc/amdgpu_dpm.h b/drivers/gpu/drm/amd/pm/inc/amdgpu_dpm.h
> index f6e0e7d8a0077..de459411a0e83 100644
> --- a/drivers/gpu/drm/amd/pm/inc/amdgpu_dpm.h
> +++ b/drivers/gpu/drm/amd/pm/inc/amdgpu_dpm.h
> @@ -445,6 +445,7 @@ struct amdgpu_pm {
> uint32_t smu_prv_buffer_size;
> struct amdgpu_bo *smu_prv_buffer;
> bool ac_power;
> + bool old_ac_power;
> /* powerplay feature */
> uint32_t pp_feature;
>
next prev parent reply other threads:[~2022-04-27 15:22 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-03-24 23:10 [PATCH] UPSTREAM: drm/amdgpu: Disable ABM when AC mode Ryan Lin
2022-03-29 8:52 ` Ryan Lin
2022-03-29 14:03 ` Alex Deucher
2022-03-29 14:33 ` [PATCH] UPSTREAM: " Harry Wentland
2022-03-29 14:46 ` Harry Wentland
2022-04-27 1:50 ` [PATCH v3] " Ryan Lin
2022-04-27 8:08 ` [PATCH v4] " Ryan Lin
2022-04-27 15:21 ` Harry Wentland [this message]
2022-05-18 0:40 ` [PATCH v5] " Ryan Lin
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=fe946a4d-c427-a13a-b1a3-df8ae37cb554@amd.com \
--to=harry.wentland@amd.com \
--cc=Anthony.Koo@amd.com \
--cc=Hawking.Zhang@amd.com \
--cc=Jack.Zhang1@amd.com \
--cc=Pratik.Vishwakarma@amd.com \
--cc=Xinhui.Pan@amd.com \
--cc=airlied@linux.ie \
--cc=alexander.deucher@amd.com \
--cc=amd-gfx@lists.freedesktop.org \
--cc=andrey.grodzovsky@amd.com \
--cc=ching-shih.li@amd.com \
--cc=christian.koenig@amd.com \
--cc=daniel@ffwll.ch \
--cc=dri-devel@lists.freedesktop.org \
--cc=haonan.wang2@amd.com \
--cc=horace.chen@amd.com \
--cc=leon.li@amd.com \
--cc=lijo.lazar@amd.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-patches-robot@chromeos-missing-patches.google.com.iam.gserviceaccount.com \
--cc=qingqing.zhuo@amd.com \
--cc=rdunlap@infradead.org \
--cc=robin.chen@amd.com \
--cc=sathishkumar.sundararaju@amd.com \
--cc=seanpaul@chromium.org \
--cc=shaoyun.liu@amd.com \
--cc=sunpeng.li@amd.com \
--cc=tsung-hua.lin@amd.com \
--cc=wyatt.wood@amd.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox