From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 583892566F7; Thu, 17 Apr 2025 18:23:18 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1744914198; cv=none; b=deNfASQhUv240xF0tUTn6ES8Ph2Cp58BjLxzUFa/06Weo5qD6KN1bzxLVDQjAEB0gv0QSA5xKyAfezhTaFpiAtNqDbfLIA58ume25RWO3Uoczh6zjUdE2WKdioI67g9ibogQfnI8enRUIxnR6p40vbsiNv9bGhklE9u+pIocPkM= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1744914198; c=relaxed/simple; bh=Bchjme8NrHtbWaQh9iBJXOGfj8jGRJZDMPzjLIF+8kU=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=eM3zXLGelYgdjk0bqBja5HWpZ78BUgHVJSYbC78sqsB1XaoTcyLMAH0Dkn/TBPoa2hnj8GCi9Vknihv/YWE4qJxy878veS+EFMIhqv1epqT47/0OWozXrwF+HjYRCBq953FHwZVezvo81bMaJ+zKFlf6GqPMDeUpiLB4oRKEZQA= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=j8kf0Laa; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="j8kf0Laa" Received: by smtp.kernel.org (Postfix) with ESMTPSA id D7549C4CEE4; Thu, 17 Apr 2025 18:23:17 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1744914198; bh=Bchjme8NrHtbWaQh9iBJXOGfj8jGRJZDMPzjLIF+8kU=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=j8kf0LaaQAY8h+gopekMkO7MDoUqo0+z/hFIbNXDaxflYy04z0aSOWGBNtPCha67Y L0I8SOGQMIjWSKpUnfynw2feMWXdu5E0ertHQro8u3mdAHbxd/8O/j5hRfrFZ+5kCV gkdjNOKXQDqAyi0CbImH5s6xMXSkdRRc7smNg7eo= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Andrew Wyatt , John Edwards , Thomas Zimmermann , Hans de Goede , Sasha Levin Subject: [PATCH 6.13 138/414] drm: panel-orientation-quirks: Add quirk for AYA NEO Slide Date: Thu, 17 Apr 2025 19:48:16 +0200 Message-ID: <20250417175116.984179531@linuxfoundation.org> X-Mailer: git-send-email 2.49.0 In-Reply-To: <20250417175111.386381660@linuxfoundation.org> References: <20250417175111.386381660@linuxfoundation.org> User-Agent: quilt/0.68 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.13-stable review patch. If anyone has any objections, please let me know. ------------------ From: Andrew Wyatt [ Upstream commit 132c89ef8872e602cfb909377815111d121fe8d7 ] The AYANEO Slide uses a 1080x1920 portrait LCD panel. This is the same panel used on the AYANEO Air Plus, but the DMI data is too different to match both with one entry. Add a DMI match to correctly rotate the panel on the AYANEO Slide. This also covers the Antec Core HS, which is a rebranded AYANEO Slide with the exact same hardware and DMI strings. Signed-off-by: Andrew Wyatt Signed-off-by: John Edwards Tested-by: John Edwards Reviewed-by: Thomas Zimmermann Reviewed-by: Hans de Goede Signed-off-by: Thomas Zimmermann Link: https://patchwork.freedesktop.org/patch/msgid/20250213222455.93533-4-uejji@uejji.net Signed-off-by: Sasha Levin --- drivers/gpu/drm/drm_panel_orientation_quirks.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/drivers/gpu/drm/drm_panel_orientation_quirks.c b/drivers/gpu/drm/drm_panel_orientation_quirks.c index b5f6ae0459459..b57078cfdd80f 100644 --- a/drivers/gpu/drm/drm_panel_orientation_quirks.c +++ b/drivers/gpu/drm/drm_panel_orientation_quirks.c @@ -244,6 +244,12 @@ static const struct dmi_system_id orientation_data[] = { DMI_MATCH(DMI_BOARD_NAME, "KUN"), }, .driver_data = (void *)&lcd1600x2560_rightside_up, + }, { /* AYA NEO SLIDE */ + .matches = { + DMI_EXACT_MATCH(DMI_SYS_VENDOR, "AYANEO"), + DMI_MATCH(DMI_PRODUCT_NAME, "SLIDE"), + }, + .driver_data = (void *)&lcd1080x1920_leftside_up, }, { /* AYN Loki Max */ .matches = { DMI_EXACT_MATCH(DMI_SYS_VENDOR, "ayn"), -- 2.39.5