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 7D192256C7B; Thu, 17 Apr 2025 18:01:27 +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=1744912887; cv=none; b=GY3nxmKAvow1ww2bBTKWc91f+f1nSpNF5nmmyitkIw+CxMmoyNDZk+iznKbn/tInQtEoMUeMlovMO7IleSlTIrArZcPP4W7LDd6kHX50N58ZvGquCx+ZFItPoE+RN43+qgHqRAggeKS4DGLkfFcc6YPhFTxGHVxI2/9zBeOMwIw= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1744912887; c=relaxed/simple; bh=jJZMLhbqPGn7yAdY6iFbOIhdj+muqFU1jIsgCSwlf4Q=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=e4dYdGSQm2WPAf4lcdVMOH0yuqm/bVVar7wv8IbzRARnCOyNL/dOvHTDEbD7LF3HlFffNGRHzWikXRn8kZFo0QKVxQNIQhvkJUQwZx7mqQiEBJef6djny8q7JlJm2wGF7WTrGHBZtC3ptBAauOE7dSC8FBLOuL/fOUjgASMt1fY= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=EMZMtjNR; 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="EMZMtjNR" Received: by smtp.kernel.org (Postfix) with ESMTPSA id E2107C4CEF0; Thu, 17 Apr 2025 18:01:26 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1744912887; bh=jJZMLhbqPGn7yAdY6iFbOIhdj+muqFU1jIsgCSwlf4Q=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=EMZMtjNRU2TwNuim/M8hFcJ3/NPNPUbv/dA5lYbf78OT2zCSGh2AJyI5MvuPsX4Yg 9ckmigO3G7QITP4Bgape9Op7tbiwUo2HihcGdSvotRxhxUiGi0OFqsdLzMuj2BqZM/ +BrCWrcwNXgkyDUYmLa5Wnzivo784XKKvIpmIQZA= 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.14 157/449] drm: panel-orientation-quirks: Add quirk for AYA NEO Slide Date: Thu, 17 Apr 2025 19:47:25 +0200 Message-ID: <20250417175124.296481561@linuxfoundation.org> X-Mailer: git-send-email 2.49.0 In-Reply-To: <20250417175117.964400335@linuxfoundation.org> References: <20250417175117.964400335@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.14-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