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 EDC025674D; Tue, 10 Sep 2024 10:38:40 +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=1725964721; cv=none; b=m1VxAEfsqFUWmXrCx/E0rJtF/ZanTbBmMzlBxjmAiV1msAoKYSXfsb6h9Qwm5whFD0ve5cQeuTZDBvxrnz7L42Jtz/3STwEL8DpDdFd7WhJQ4wbPvyxKWEsno2tsnYTCQHwOLOQKg0m/Ob4cd4aZFCZnAgyFwRyr3y4RUlsP3dE= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1725964721; c=relaxed/simple; bh=AVarQStHU+ciMjgD26ohkfTVNFUMVnmWX+2nKPTBjZw=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=C1R25cSpZJ5MnSezhF/LlyBD4UPTOzR08akd0dPfsPYyk4svyQaO2plx2E03RmZc2BMdtM8cOu3hWbjUZj2zfT5D8q+jy1U5PyRv1+pVN95mUolcJG9oCPu6qNHqi+4R5xgID90i/U1yZPTItGaA9qzFdZBXSJFXMppAVwjnM6Q= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=gt7qUspO; 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="gt7qUspO" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 749E7C4CEC3; Tue, 10 Sep 2024 10:38:40 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1725964720; bh=AVarQStHU+ciMjgD26ohkfTVNFUMVnmWX+2nKPTBjZw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=gt7qUspOvYtsu7F0vJd7G7B2IQ/79iN5TT4unFze61DbJQIRH8Dp0DAUyPjcoV2Hb iTkecSN+VBfV4OxYANon6x8xMXz5dIuOVMJgIxSJqZbAZC+ylUnG9DX8gAneQLKD6F KASa095Oi+fpBqCVF6daWxDwTM19maxRmQ6Yncro= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Philip Mueller , Hans de Goede , Sasha Levin Subject: [PATCH 5.10 001/186] drm: panel-orientation-quirks: Add quirk for OrangePi Neo Date: Tue, 10 Sep 2024 11:31:36 +0200 Message-ID: <20240910092554.704467911@linuxfoundation.org> X-Mailer: git-send-email 2.46.0 In-Reply-To: <20240910092554.645718780@linuxfoundation.org> References: <20240910092554.645718780@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 5.10-stable review patch. If anyone has any objections, please let me know. ------------------ From: Philip Mueller [ Upstream commit d60c429610a14560085d98fa6f4cdb43040ca8f0 ] This adds a DMI orientation quirk for the OrangePi Neo Linux Gaming Handheld. Signed-off-by: Philip Mueller Reviewed-by: Hans de Goede Signed-off-by: Hans de Goede Link: https://patchwork.freedesktop.org/patch/msgid/20240715045818.1019979-1-philm@manjaro.org 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 43de9dfcba19a..f1091cb87de0c 100644 --- a/drivers/gpu/drm/drm_panel_orientation_quirks.c +++ b/drivers/gpu/drm/drm_panel_orientation_quirks.c @@ -318,6 +318,12 @@ static const struct dmi_system_id orientation_data[] = { DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "ONE XPLAYER"), }, .driver_data = (void *)&lcd1600x2560_leftside_up, + }, { /* OrangePi Neo */ + .matches = { + DMI_EXACT_MATCH(DMI_SYS_VENDOR, "OrangePi"), + DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "NEO-01"), + }, + .driver_data = (void *)&lcd1200x1920_rightside_up, }, { /* Samsung GalaxyBook 10.6 */ .matches = { DMI_EXACT_MATCH(DMI_SYS_VENDOR, "SAMSUNG ELECTRONICS CO., LTD."), -- 2.43.0