From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id BC80FC433EF for ; Mon, 11 Jul 2022 07:52:48 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230236AbiGKHwq (ORCPT ); Mon, 11 Jul 2022 03:52:46 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:36304 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229832AbiGKHwk (ORCPT ); Mon, 11 Jul 2022 03:52:40 -0400 Received: from ams.source.kernel.org (ams.source.kernel.org [IPv6:2604:1380:4601:e00::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 88D2E1CB1B for ; Mon, 11 Jul 2022 00:52:39 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id 16A35B80DE7 for ; Mon, 11 Jul 2022 07:52:38 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id B44ADC341CA; Mon, 11 Jul 2022 07:52:36 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1657525956; bh=QDuUXmYLSzR4UM0SnVCHqjB0bPq6VFQQciujFgrIRzo=; h=From:To:Cc:Subject:Date:From; b=OlK30X0+dVGzgpv7hc6KBqc0RX5orPLBsk0Or6nk8FNrUDefXcCADhAue1Z8ogDgL 5u+GCB936VgYbDP7GqN8e2pZ3iZZ0seNY7AyvAj8HzaVTZcXtVH/gh1byicCoqclRe FcFld9RDSWiVFAusxxrTYpqq0OEBJqFo5hKiQ/efwsMLr5jP06qIbirU3/H19aibNQ iD8HMT7hTZ763Rao3B3zERSUhhRb2XAbqsgb9S2C6mRx19fPSVe9XbbU4Wfq/Sgmk4 lmzs91Ih4Nw5u55u0eLw3U4dGZZuU4IJYPj+BWelfjRv8lih96eilYBeJGV/jc2kje /wLYjqY43qbqg== Received: from johan by xi with local (Exim 4.94.2) (envelope-from ) id 1oAoDc-0005fa-I3; Mon, 11 Jul 2022 09:52:37 +0200 From: Johan Hovold To: Thierry Reding , Sam Ravnborg Cc: David Airlie , Daniel Vetter , dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org, Johan Hovold Subject: [PATCH] drm/panel-edp: add AUO B133UAN02.1 panel entry Date: Mon, 11 Jul 2022 09:52:02 +0200 Message-Id: <20220711075202.21775-1-johan+linaro@kernel.org> X-Mailer: git-send-email 2.35.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Add an eDP panel entry for AUO B133UAN02.1. Due to lack of documentation, use the delay_200_500_e50 timings like some other AUO entries for now. Signed-off-by: Johan Hovold --- drivers/gpu/drm/panel/panel-edp.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/gpu/drm/panel/panel-edp.c b/drivers/gpu/drm/panel/panel-edp.c index fe3897b86665..30f69cd8f9ee 100644 --- a/drivers/gpu/drm/panel/panel-edp.c +++ b/drivers/gpu/drm/panel/panel-edp.c @@ -1845,6 +1845,7 @@ static const struct panel_delay delay_100_500_e200 = { * Sort first by vendor, then by product ID. */ static const struct edp_panel_entry edp_panels[] = { + EDP_PANEL_ENTRY('A', 'U', 'O', 0x1e9b, &delay_200_500_e50, "B133UAN02.1"), EDP_PANEL_ENTRY('A', 'U', 'O', 0x405c, &auo_b116xak01.delay, "B116XAK01"), EDP_PANEL_ENTRY('A', 'U', 'O', 0x615c, &delay_200_500_e50, "B116XAN06.1"), EDP_PANEL_ENTRY('A', 'U', 'O', 0x8594, &delay_200_500_e50, "B133UAN01.0"), -- 2.35.1