lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20191119065049.27594-1-wen.he_1@nxp.com>
Date:   Tue, 19 Nov 2019 14:50:49 +0800
From:   Wen He <wen.he_1@....com>
To:     Sandor Yu <Sandor.yu@....com>, linux-kernel@...r.kernel.org
Cc:     Wen He <wen.he_1@....com>
Subject: [linux-nxp/display/hdp] drm: imx: mhdp: Adjustment core rate of DP TX CTRL for LS1028A

This Display TX CTRL clock should be ACLK/4, update it to align with
the specification.

Signed-off-by: Wen He <wen.he_1@....com>
---
 drivers/gpu/drm/bridge/cadence/cdns-dp-core.c | 4 ++++
 drivers/gpu/drm/imx/cdn-mhdp-imx8qm.c         | 3 +++
 include/drm/bridge/cdns-mhdp-common.h         | 1 +
 3 files changed, 8 insertions(+)

diff --git a/drivers/gpu/drm/bridge/cadence/cdns-dp-core.c b/drivers/gpu/drm/bridge/cadence/cdns-dp-core.c
index 54396f9042ed..0a7550785953 100644
--- a/drivers/gpu/drm/bridge/cadence/cdns-dp-core.c
+++ b/drivers/gpu/drm/bridge/cadence/cdns-dp-core.c
@@ -435,6 +435,7 @@ static int __cdns_dp_probe(struct platform_device *pdev,
 	}
 
 	mhdp->is_hpd = true;
+	mhdp->is_ls1028a = false;
 
 	mhdp->irq[IRQ_IN] = platform_get_irq_byname(pdev, "plug_in");
 	if (mhdp->irq[IRQ_IN] < 0) {
@@ -450,6 +451,9 @@ static int __cdns_dp_probe(struct platform_device *pdev,
 
 	cdns_dp_parse_dt(mhdp);
 
+	if (of_device_is_compatible(dev->of_node, "cdn,ls1028a-dp"))
+		mhdp->is_ls1028a = true;
+
 	cdns_mhdp_plat_call(mhdp, power_on);
 
 	cdns_mhdp_plat_call(mhdp, firmware_init);
diff --git a/drivers/gpu/drm/imx/cdn-mhdp-imx8qm.c b/drivers/gpu/drm/imx/cdn-mhdp-imx8qm.c
index b8a762ed2d90..76ecfefe3153 100644
--- a/drivers/gpu/drm/imx/cdn-mhdp-imx8qm.c
+++ b/drivers/gpu/drm/imx/cdn-mhdp-imx8qm.c
@@ -526,6 +526,9 @@ int cdns_mhdp_firmware_init_imx8qm(struct cdns_mhdp_device *mhdp)
 
 	/* configure HDMI/DP core clock */
 	rate = clk_get_rate(imx_mhdp->clks.clk_core);
+	if (mhdp->is_ls1028a)
+		rate = rate / 4;
+
 	cdns_mhdp_set_fw_clk(&imx_mhdp->mhdp, rate);
 
 	/* un-reset ucpu */
diff --git a/include/drm/bridge/cdns-mhdp-common.h b/include/drm/bridge/cdns-mhdp-common.h
index d11d048352ef..f416b57d29db 100755
--- a/include/drm/bridge/cdns-mhdp-common.h
+++ b/include/drm/bridge/cdns-mhdp-common.h
@@ -684,6 +684,7 @@ struct cdns_mhdp_device {
 	bool power_up;
 	bool plugged;
 	bool is_hpd;
+	bool is_ls1028a;
 	struct mutex lock;
 	struct mutex iolock;
 
-- 
2.17.1

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ