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 89A68C678D5 for ; Tue, 7 Mar 2023 13:01:22 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229729AbjCGNBV (ORCPT ); Tue, 7 Mar 2023 08:01:21 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:60864 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229933AbjCGNBP (ORCPT ); Tue, 7 Mar 2023 08:01:15 -0500 Received: from out-40.mta0.migadu.com (out-40.mta0.migadu.com [91.218.175.40]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 6358B6EBD for ; Tue, 7 Mar 2023 05:01:01 -0800 (PST) Date: Tue, 7 Mar 2023 14:00:57 +0100 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1678194059; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=EP/T6xo9IyCh8niTEXo+aKkGY4Bcvv1OlF9vvjntq7k=; b=CAn8VZLeMTBYZXtw3sqmMU/kb8S8bIm/RIAJgYjXLUZqANu68+jIb1GL9jn5lPii8cCdoO dEdzmld/YOs2Pe17c6qnzMOw+bmKaME+TENtkui4wKlm6GJCgEE1GeMShhriWbJM148L5e /7cb+J+eRbZ2lELpsPvR1JIc4Yqt8co= X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Richard Leitner To: Lucas Stach Cc: Vinod Koul , Kishon Vijay Abraham I , Rob Herring , Krzysztof Kozlowski , Pengutronix Kernel Team , NXP Linux Team , linux-phy@lists.infradead.org, devicetree@vger.kernel.org, patchwork-lst@pengutronix.de, Inki Dae , Seung-Woo Kim , Kyungmin Park , Sandor Yu Subject: Re: [PATCH v2 2/2] phy: freescale: add Samsung HDMI PHY Message-ID: <20230307130057.GC722857@g0hl1n.net> References: <20221215201100.2897501-1-l.stach@pengutronix.de> <20221215201100.2897501-2-l.stach@pengutronix.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20221215201100.2897501-2-l.stach@pengutronix.de> X-Migadu-Flow: FLOW_OUT Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org Hi Lucas, On Thu, Dec 15, 2022 at 09:11:00PM +0100, Lucas Stach wrote: > This adds the driver for the Samsung HDMI PHY found on the > i.MX8MP SoC. Based on downstream implementation from > Sandor Yu . > > Co-developed-by: Marco Felsch > Signed-off-by: Marco Felsch > Signed-off-by: Lucas Stach I've successfully tested this patch on our custom i.MX8MP board. The test case was basically "cat /dev/urandom > /dev/fb1" with a 800x480 HDMI display. Therefore please feel free to add: Tested-by: Richard Leitner > --- > v2: use DEFINE_RUNTIME_DEV_PM_OPS > --- > drivers/phy/freescale/Kconfig | 6 + > drivers/phy/freescale/Makefile | 1 + > drivers/phy/freescale/phy-fsl-samsung-hdmi.c | 694 +++++++++++++++++++ > 3 files changed, 701 insertions(+) > create mode 100644 drivers/phy/freescale/phy-fsl-samsung-hdmi.c