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 34483156222; Mon, 16 Sep 2024 12:09:22 +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=1726488562; cv=none; b=u7m3TsUQAIhyocW75JZNH0ROsY4ENZGeruiE/loSOHXQa1vnlF0niNiGWyKKBsffypFQe4JPlkMtvvRJZXOGFxMddR1oCIVnnF+Mrncb5d05qR5z7O3xA4mXlap0efcIQAjKmnVpvrYIjT+baZ/ONq5GFOMthbndi9FTUPbofLI= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1726488562; c=relaxed/simple; bh=RiXSV+mM7hJiwVUmy28ZIEWSgwMFXYUoQRasJoGeTYM=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=nLfFkDXvfmYVrUopjgDqzKJqYtkW+7MnPM15tgUYIoLFEhhSiuH/vcamilMTXlbsHP+p8rVe674+iNmzbq3KRIls64uZIL9LP950WzzkvvZIjmalcoB8o/Sdrk4o7R0/EQ/gYlGRfqTORTLcIRg8VevR3Wrn5SyKoCVvKzAdMxs= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=PrtwlrW1; 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="PrtwlrW1" Received: by smtp.kernel.org (Postfix) with ESMTPSA id A7D35C4CEC7; Mon, 16 Sep 2024 12:09:21 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1726488562; bh=RiXSV+mM7hJiwVUmy28ZIEWSgwMFXYUoQRasJoGeTYM=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=PrtwlrW1K0bFvtgZig44gFv4NPIeJS6HCnkg0ZqyoZuFsnr4C3jGatcFAmNGE/1zM IzFLL8Lo5o85Q3Em0eBuOdZhhTvEEjCfGHPU8r4HqFZZ9DJNDkHsXuhzZ01wbC+OES UhvcU9Ac3irrvJBF8mnLzEKA8CgWdiwGcL2YFlNs= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Bouke Sybren Haarsma , Hans de Goede , Sasha Levin Subject: [PATCH 6.6 17/91] drm: panel-orientation-quirks: Add quirk for Ayn Loki Zero Date: Mon, 16 Sep 2024 13:43:53 +0200 Message-ID: <20240916114225.093707714@linuxfoundation.org> X-Mailer: git-send-email 2.46.0 In-Reply-To: <20240916114224.509743970@linuxfoundation.org> References: <20240916114224.509743970@linuxfoundation.org> User-Agent: quilt/0.67 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev 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: Bouke Sybren Haarsma [ Upstream commit b86aa4140f6a8f01f35bfb05af60e01a55b48803 ] Add quirk orientation for the Ayn Loki Zero. This also has been tested/used by the JELOS team. Signed-off-by: Bouke Sybren Haarsma Reviewed-by: Hans de Goede Signed-off-by: Hans de Goede Link: https://patchwork.freedesktop.org/patch/msgid/20240728124731.168452-2-boukehaarsma23@gmail.com 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 039da0d1a613..79ccf4959df4 100644 --- a/drivers/gpu/drm/drm_panel_orientation_quirks.c +++ b/drivers/gpu/drm/drm_panel_orientation_quirks.c @@ -208,6 +208,12 @@ static const struct dmi_system_id orientation_data[] = { DMI_MATCH(DMI_BOARD_NAME, "KUN"), }, .driver_data = (void *)&lcd1600x2560_rightside_up, + }, { /* AYN Loki Zero */ + .matches = { + DMI_EXACT_MATCH(DMI_SYS_VENDOR, "ayn"), + DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Loki Zero"), + }, + .driver_data = (void *)&lcd1080x1920_leftside_up, }, { /* Chuwi HiBook (CWI514) */ .matches = { DMI_MATCH(DMI_BOARD_VENDOR, "Hampoo"), -- 2.43.0