mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH v2] ACPI: video: Add backlight=native DMI quirk for Lenovo Ideapad Z470
@ 2023-04-18  6:42 Jiri Slaby (SUSE)
  2023-07-17 10:20 ` Jiri Slaby
  0 siblings, 1 reply; 3+ messages in thread
From: Jiri Slaby (SUSE) @ 2023-04-18  6:42 UTC (permalink / raw)
  To: rafael; +Cc: linux-kernel, Jiri Slaby (SUSE), Hans de Goede, Rafael J . Wysocki

The Lenovo Ideapad Z470 predates Windows 8, so it defaults to using
acpi_video for backlight control. But this is not functional on this
model.

Add a DMI quirk to use the native backlight interface which works.

Link: https://bugzilla.suse.com/show_bug.cgi?id=1208724
Signed-off-by: Jiri Slaby (SUSE) <jirislaby@kernel.org>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
Cc: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
---

Notes:
    [v2] fix authorship

 drivers/acpi/video_detect.c | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/drivers/acpi/video_detect.c b/drivers/acpi/video_detect.c
index 69ef2d9710c2..af5cea005f54 100644
--- a/drivers/acpi/video_detect.c
+++ b/drivers/acpi/video_detect.c
@@ -459,6 +459,15 @@ static const struct dmi_system_id video_detect_dmi_table[] = {
 		DMI_MATCH(DMI_BOARD_NAME, "Lenovo IdeaPad S405"),
 		},
 	},
+	{
+	 /* https://bugzilla.suse.com/show_bug.cgi?id=1208724 */
+	 .callback = video_detect_force_native,
+	 /* Lenovo Ideapad Z470 */
+	 .matches = {
+		DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
+		DMI_MATCH(DMI_PRODUCT_VERSION, "IdeaPad Z470"),
+		},
+	},
 	{
 	 /* https://bugzilla.redhat.com/show_bug.cgi?id=1187004 */
 	 .callback = video_detect_force_native,
-- 
2.40.0


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH v2] ACPI: video: Add backlight=native DMI quirk for Lenovo Ideapad Z470
  2023-04-18  6:42 [PATCH v2] ACPI: video: Add backlight=native DMI quirk for Lenovo Ideapad Z470 Jiri Slaby (SUSE)
@ 2023-07-17 10:20 ` Jiri Slaby
  2023-07-17 13:05   ` Rafael J. Wysocki
  0 siblings, 1 reply; 3+ messages in thread
From: Jiri Slaby @ 2023-07-17 10:20 UTC (permalink / raw)
  To: rafael; +Cc: linux-kernel, Hans de Goede, Rafael J . Wysocki

Hi,

this has been likely lost. Should I resend?

Thanks.

On 18. 04. 23, 8:42, Jiri Slaby (SUSE) wrote:
> The Lenovo Ideapad Z470 predates Windows 8, so it defaults to using
> acpi_video for backlight control. But this is not functional on this
> model.
> 
> Add a DMI quirk to use the native backlight interface which works.
> 
> Link: https://bugzilla.suse.com/show_bug.cgi?id=1208724
> Signed-off-by: Jiri Slaby (SUSE) <jirislaby@kernel.org>
> Reviewed-by: Hans de Goede <hdegoede@redhat.com>
> Cc: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
> ---
> 
> Notes:
>      [v2] fix authorship
> 
>   drivers/acpi/video_detect.c | 9 +++++++++
>   1 file changed, 9 insertions(+)
> 
> diff --git a/drivers/acpi/video_detect.c b/drivers/acpi/video_detect.c
> index 69ef2d9710c2..af5cea005f54 100644
> --- a/drivers/acpi/video_detect.c
> +++ b/drivers/acpi/video_detect.c
> @@ -459,6 +459,15 @@ static const struct dmi_system_id video_detect_dmi_table[] = {
>   		DMI_MATCH(DMI_BOARD_NAME, "Lenovo IdeaPad S405"),
>   		},
>   	},
> +	{
> +	 /* https://bugzilla.suse.com/show_bug.cgi?id=1208724 */
> +	 .callback = video_detect_force_native,
> +	 /* Lenovo Ideapad Z470 */
> +	 .matches = {
> +		DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
> +		DMI_MATCH(DMI_PRODUCT_VERSION, "IdeaPad Z470"),
> +		},
> +	},
>   	{
>   	 /* https://bugzilla.redhat.com/show_bug.cgi?id=1187004 */
>   	 .callback = video_detect_force_native,

-- 
js
suse labs


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH v2] ACPI: video: Add backlight=native DMI quirk for Lenovo Ideapad Z470
  2023-07-17 10:20 ` Jiri Slaby
@ 2023-07-17 13:05   ` Rafael J. Wysocki
  0 siblings, 0 replies; 3+ messages in thread
From: Rafael J. Wysocki @ 2023-07-17 13:05 UTC (permalink / raw)
  To: Jiri Slaby; +Cc: rafael, linux-kernel, Hans de Goede, Rafael J . Wysocki

On Mon, Jul 17, 2023 at 12:20 PM Jiri Slaby <jirislaby@kernel.org> wrote:
>
> Hi,
>
> this has been likely lost.

Yes, it has, sorry about that.

It's better to CC ACPI-related patches to linux-acpi@vger.kernel.org,
so they are included in my normal flow, to avoid such events.

> Should I resend?

No need, I've just applied it as 6.6 material.

Thanks!

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2023-07-17 13:06 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-04-18  6:42 [PATCH v2] ACPI: video: Add backlight=native DMI quirk for Lenovo Ideapad Z470 Jiri Slaby (SUSE)
2023-07-17 10:20 ` Jiri Slaby
2023-07-17 13:05   ` Rafael J. Wysocki

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®