* [PATCH] drm:panel-orientation-quirks Added DeckHD support to panel orientation quirks for Steam Deck This commit introduces a new quirk to handle specific orientation issues for DeckHD panels on the Steam Deck. The quirk ensures the correct display orientation for these panels, enhancing the user experience on Steam Deck devices. Tested on my Steam Deck to ensure reliability. Feedback and further testing are welcome.
@ 2024-11-27 20:35 Guy Chronister
2024-11-30 8:31 ` Dmitry Baryshkov
0 siblings, 1 reply; 4+ messages in thread
From: Guy Chronister @ 2024-11-27 20:35 UTC (permalink / raw)
To: maarten.lankhorst; +Cc: dri-devel, linux-kernel, Guy Chronister
Signed-off-by: Guy Chronister <guyc.linux.patches@gmail.com>
---
drivers/gpu/drm/drm_panel_orientation_quirks.c | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/drivers/gpu/drm/drm_panel_orientation_quirks.c b/drivers/gpu/drm/drm_panel_orientation_quirks.c
index 3f2e2b851cbc..c412273799cb 100644
--- a/drivers/gpu/drm/drm_panel_orientation_quirks.c
+++ b/drivers/gpu/drm/drm_panel_orientation_quirks.c
@@ -456,6 +456,13 @@ static const struct dmi_system_id orientation_data[] = {
DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Galaxy Book 10.6"),
},
.driver_data = (void *)&lcd1280x1920_rightside_up,
+ }, { /* Valve Steam Deck (Jupiter) with DeckHD */
+ .matches = {
+ DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Valve"),
+ DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Jupiter"),
+ DMI_EXACT_MATCH(DMI_PRODUCT_VERSION, "1"),
+ },
+ .driver_data = (void *)&lcd1200x1920_rightside_up,
}, { /* Valve Steam Deck (Jupiter) */
.matches = {
DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Valve"),
--
2.45.2
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] drm:panel-orientation-quirks Added DeckHD support to panel orientation quirks for Steam Deck This commit introduces a new quirk to handle specific orientation issues for DeckHD panels on the Steam Deck. The quirk ensures the correct display orientation for these panels, enhancing the user experience on Steam Deck devices. Tested on my Steam Deck to ensure reliability. Feedback and further testing are welcome.
2024-11-27 20:35 Guy Chronister
@ 2024-11-30 8:31 ` Dmitry Baryshkov
0 siblings, 0 replies; 4+ messages in thread
From: Dmitry Baryshkov @ 2024-11-30 8:31 UTC (permalink / raw)
To: Guy Chronister; +Cc: maarten.lankhorst, dri-devel, linux-kernel
On Wed, Nov 27, 2024 at 02:35:45PM -0600, Guy Chronister wrote:
> Signed-off-by: Guy Chronister <guyc.linux.patches@gmail.com>
> ---
> drivers/gpu/drm/drm_panel_orientation_quirks.c | 7 +++++++
> 1 file changed, 7 insertions(+)
It seems that you didn't break the subject / commit message properly.
Please add an empty line after the subject line in the Git commit
message and post v2.
>
> diff --git a/drivers/gpu/drm/drm_panel_orientation_quirks.c b/drivers/gpu/drm/drm_panel_orientation_quirks.c
> index 3f2e2b851cbc..c412273799cb 100644
> --- a/drivers/gpu/drm/drm_panel_orientation_quirks.c
> +++ b/drivers/gpu/drm/drm_panel_orientation_quirks.c
> @@ -456,6 +456,13 @@ static const struct dmi_system_id orientation_data[] = {
> DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Galaxy Book 10.6"),
> },
> .driver_data = (void *)&lcd1280x1920_rightside_up,
> + }, { /* Valve Steam Deck (Jupiter) with DeckHD */
> + .matches = {
> + DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Valve"),
> + DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Jupiter"),
> + DMI_EXACT_MATCH(DMI_PRODUCT_VERSION, "1"),
> + },
> + .driver_data = (void *)&lcd1200x1920_rightside_up,
> }, { /* Valve Steam Deck (Jupiter) */
> .matches = {
> DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Valve"),
> --
> 2.45.2
>
--
With best wishes
Dmitry
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] drm:panel-orientation-quirks Added DeckHD support to panel orientation quirks for Steam Deck This commit introduces a new quirk to handle specific orientation issues for DeckHD panels on the Steam Deck. The quirk ensures the correct display orientation for these panels, enhancing the user experience on Steam Deck devices. Tested on my Steam Deck to ensure reliability. Feedback and further testing are welcome.
2024-12-06 21:45 [PATCH] drm:panel-orientation-quirks Added DeckHD support to panel orientation quirks for Steam Deck This commit introduces a new quirk to handle specific orientation issues for DeckHD panels on the Steam Deck. The quirk ensures the correct display orientation for these panels, enhancing the user experience on Steam Deck devices. Tested on my Steam Deck to ensure reliability. Feedback and further testing are welcome Guy Chronister
@ 2024-12-06 17:05 ` Guy Chronister
0 siblings, 0 replies; 4+ messages in thread
From: Guy Chronister @ 2024-12-06 17:05 UTC (permalink / raw)
To: maarten.lankhorst; +Cc: dri-devel, linux-kernel, airlied
[-- Attachment #1: Type: text/plain, Size: 1470 bytes --]
Disregard this one, I resubmitted after running "git format-patch -1 HEAD"
after breaking the subject/commit message amendment.
On Fri, Dec 6, 2024 at 9:45 AM Guy Chronister <guyc.linux.patches@gmail.com>
wrote:
> Signed-off-by: Guy Chronister <guyc.linux.patches@gmail.com>
> ---
> drivers/gpu/drm/drm_panel_orientation_quirks.c | 7 +++++++
> 1 file changed, 7 insertions(+)
>
> diff --git a/drivers/gpu/drm/drm_panel_orientation_quirks.c
> b/drivers/gpu/drm/drm_panel_orientation_quirks.c
> index 3f2e2b851cbc..c412273799cb 100644
> --- a/drivers/gpu/drm/drm_panel_orientation_quirks.c
> +++ b/drivers/gpu/drm/drm_panel_orientation_quirks.c
> @@ -456,6 +456,13 @@ static const struct dmi_system_id orientation_data[]
> = {
> DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Galaxy Book 10.6"),
> },
> .driver_data = (void *)&lcd1280x1920_rightside_up,
> + }, { /* Valve Steam Deck (Jupiter) with DeckHD */
> + .matches = {
> + DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Valve"),
> + DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Jupiter"),
> + DMI_EXACT_MATCH(DMI_PRODUCT_VERSION, "1"),
> + },
> + .driver_data = (void *)&lcd1200x1920_rightside_up,
> }, { /* Valve Steam Deck (Jupiter) */
> .matches = {
> DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Valve"),
> --
> 2.45.2
>
>
[-- Attachment #2: Type: text/html, Size: 2072 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH] drm:panel-orientation-quirks Added DeckHD support to panel orientation quirks for Steam Deck This commit introduces a new quirk to handle specific orientation issues for DeckHD panels on the Steam Deck. The quirk ensures the correct display orientation for these panels, enhancing the user experience on Steam Deck devices. Tested on my Steam Deck to ensure reliability. Feedback and further testing are welcome.
@ 2024-12-06 21:45 Guy Chronister
2024-12-06 17:05 ` Guy Chronister
0 siblings, 1 reply; 4+ messages in thread
From: Guy Chronister @ 2024-12-06 21:45 UTC (permalink / raw)
To: maarten.lankhorst; +Cc: dri-devel, linux-kernel, airlied, Guy Chronister
Signed-off-by: Guy Chronister <guyc.linux.patches@gmail.com>
---
drivers/gpu/drm/drm_panel_orientation_quirks.c | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/drivers/gpu/drm/drm_panel_orientation_quirks.c b/drivers/gpu/drm/drm_panel_orientation_quirks.c
index 3f2e2b851cbc..c412273799cb 100644
--- a/drivers/gpu/drm/drm_panel_orientation_quirks.c
+++ b/drivers/gpu/drm/drm_panel_orientation_quirks.c
@@ -456,6 +456,13 @@ static const struct dmi_system_id orientation_data[] = {
DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Galaxy Book 10.6"),
},
.driver_data = (void *)&lcd1280x1920_rightside_up,
+ }, { /* Valve Steam Deck (Jupiter) with DeckHD */
+ .matches = {
+ DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Valve"),
+ DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Jupiter"),
+ DMI_EXACT_MATCH(DMI_PRODUCT_VERSION, "1"),
+ },
+ .driver_data = (void *)&lcd1200x1920_rightside_up,
}, { /* Valve Steam Deck (Jupiter) */
.matches = {
DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Valve"),
--
2.45.2
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-12-06 17:05 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-06 21:45 [PATCH] drm:panel-orientation-quirks Added DeckHD support to panel orientation quirks for Steam Deck This commit introduces a new quirk to handle specific orientation issues for DeckHD panels on the Steam Deck. The quirk ensures the correct display orientation for these panels, enhancing the user experience on Steam Deck devices. Tested on my Steam Deck to ensure reliability. Feedback and further testing are welcome Guy Chronister
2024-12-06 17:05 ` Guy Chronister
-- strict thread matches above, loose matches on Subject: below --
2024-11-27 20:35 Guy Chronister
2024-11-30 8:31 ` Dmitry Baryshkov
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.