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 3C82927EC73; Wed, 23 Apr 2025 15:04:08 +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=1745420648; cv=none; b=RVcEW5n9dlaVTPAcA0VLdhUw1eUC9Tyecj+NCltwYYpWLu2QGVgC5Kqua3jz8LanraGh3klhCFX4jdx3lHS4H43s+Pcv7piD3syNk27ShInukdxUo08b81XOSeaDhxhHzRGrQ4SjMcNgArau2sUfZo4kc5D+ZMfxeb8OljUNQ+k= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1745420648; c=relaxed/simple; bh=jl+jknpTuORh+eaTD7qtX1eo6eSYqX5xIMGYrwSW7lA=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=ARTzrdQmmSlMcgS2OvjZGSjim5i6K8bnL1pP7nTrVIroQaEhr2HsKOpGsVkO38ztXiALQzPECUfZKcjXqmpa/E7mD+VXROaH9hJnBtmewF4hzeNsUdptSEbG1dQH1dYHBty6NjXWjcQOy/NnZ2/fbgVtolnbl44P8x8+skBqJWk= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=dwLIDEN1; 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="dwLIDEN1" Received: by smtp.kernel.org (Postfix) with ESMTPSA id C1C5DC4CEE2; Wed, 23 Apr 2025 15:04:07 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1745420648; bh=jl+jknpTuORh+eaTD7qtX1eo6eSYqX5xIMGYrwSW7lA=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=dwLIDEN1FK862ws+Fumf8xC16e5cKXfrRXUJdqBWN2uSuQsAPmc+V1VxrHI7dluQa 9h7xMFAgmo6JZrehEU//8AqVoiiLS9e/U7fqqv0OzFQr0jPOUgW5qGuEr51qcqI55P fxHKUBtmv5OawH0rKIn60//1ip6GhM9zP6oUAtwM= 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.6 096/393] drm: panel-orientation-quirks: Add quirk for AYA NEO Slide Date: Wed, 23 Apr 2025 16:39:52 +0200 Message-ID: <20250423142647.253328619@linuxfoundation.org> X-Mailer: git-send-email 2.49.0 In-Reply-To: <20250423142643.246005366@linuxfoundation.org> References: <20250423142643.246005366@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.6-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 d9ed6214cf28b..702246ee7ced2 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