mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 14:13:16 +00:00
cddd459140
Add patches for linux-5.4. The patches are from NXP LSDK-20.04 release which was tagged LSDK-20.04-V5.4. https://source.codeaurora.org/external/qoriq/qoriq-components/linux/ For boards LS1021A-IOT, and Traverse-LS1043 which are not involved in LSDK, port the dts patches from 4.14. The patches are sorted into the following categories: 301-arch-xxxx 302-dts-xxxx 303-core-xxxx 701-net-xxxx 801-audio-xxxx 802-can-xxxx 803-clock-xxxx 804-crypto-xxxx 805-display-xxxx 806-dma-xxxx 807-gpio-xxxx 808-i2c-xxxx 809-jailhouse-xxxx 810-keys-xxxx 811-kvm-xxxx 812-pcie-xxxx 813-pm-xxxx 814-qe-xxxx 815-sata-xxxx 816-sdhc-xxxx 817-spi-xxxx 818-thermal-xxxx 819-uart-xxxx 820-usb-xxxx 821-vfio-xxxx Signed-off-by: Yangbo Lu <yangbo.lu@nxp.com>
80 lines
2.4 KiB
Diff
80 lines
2.4 KiB
Diff
From 5c4835e943dd31265770e7ca3c03307d5c725db6 Mon Sep 17 00:00:00 2001
|
|
From: Viorel Suman <viorel.suman@nxp.com>
|
|
Date: Thu, 25 Apr 2019 15:03:56 +0300
|
|
Subject: [PATCH] MLK-21484-4: ASoC: fsl_sai: ensure clk not in use prior
|
|
set_mclk_rate
|
|
|
|
On recent kernels clks which are marked with CLK_SET_RATE_GATE are
|
|
"protected" against further changes at clk_prepare time, including clk
|
|
set_parent and set_rate. See commit 9461f7b33d11 ("clk: fix
|
|
CLK_SET_RATE_GATE with clock rate protection"). The current fsl_sai
|
|
implementation ensures the clock is not in use prior set_parent,
|
|
extend this for set_rate also by moving if (sai->mclk_streams == 0)
|
|
outside fsl_sai_set_mclk_rate(). Aside of this avoid changing rate and
|
|
parent for BUS clk.
|
|
|
|
Signed-off-by: Viorel Suman <viorel.suman@nxp.com>
|
|
---
|
|
sound/soc/fsl/fsl_sai.c | 30 +++++++++++++-----------------
|
|
1 file changed, 13 insertions(+), 17 deletions(-)
|
|
|
|
--- a/sound/soc/fsl/fsl_sai.c
|
|
+++ b/sound/soc/fsl/fsl_sai.c
|
|
@@ -259,25 +259,19 @@ static int fsl_sai_set_mclk_rate(struct
|
|
if (pll) {
|
|
npll = (do_div(ratio, 8000) ? sai->pll11k_clk : sai->pll8k_clk);
|
|
if (!clk_is_match(pll, npll)) {
|
|
- if (sai->mclk_streams == 0) {
|
|
- ret = clk_set_parent(p, npll);
|
|
- if (ret < 0)
|
|
- dev_warn(dai->dev,
|
|
- "failed to set parent %s: %d\n",
|
|
- __clk_get_name(npll), ret);
|
|
- } else {
|
|
- dev_err(dai->dev,
|
|
- "PLL %s is in use by a running stream.\n",
|
|
- __clk_get_name(pll));
|
|
- return -EINVAL;
|
|
- }
|
|
+ ret = clk_set_parent(p, npll);
|
|
+ if (ret < 0)
|
|
+ dev_warn(dai->dev,
|
|
+ "failed to set parent %s: %d\n",
|
|
+ __clk_get_name(npll), ret);
|
|
}
|
|
}
|
|
|
|
ret = clk_set_rate(sai->mclk_clk[clk_id], freq);
|
|
if (ret < 0)
|
|
dev_err(dai->dev, "failed to set clock rate (%u): %d\n",
|
|
- freq, ret);
|
|
+ freq, ret);
|
|
+
|
|
return ret;
|
|
}
|
|
|
|
@@ -298,7 +292,7 @@ static int fsl_sai_set_dai_sysclk(struct
|
|
if (dir == SND_SOC_CLOCK_IN)
|
|
return 0;
|
|
|
|
- if (freq > 0) {
|
|
+ if (freq > 0 && clk_id != FSL_SAI_CLK_BUS) {
|
|
if (clk_id < 0 || clk_id >= FSL_SAI_MCLK_MAX) {
|
|
dev_err(cpu_dai->dev, "Unknown clock id: %d\n", clk_id);
|
|
return -EINVAL;
|
|
@@ -309,9 +303,11 @@ static int fsl_sai_set_dai_sysclk(struct
|
|
return -EINVAL;
|
|
}
|
|
|
|
- ret = fsl_sai_set_mclk_rate(cpu_dai, clk_id, freq);
|
|
- if (ret < 0)
|
|
- return ret;
|
|
+ if (sai->mclk_streams == 0) {
|
|
+ ret = fsl_sai_set_mclk_rate(cpu_dai, clk_id, freq);
|
|
+ if (ret < 0)
|
|
+ return ret;
|
|
+ }
|
|
}
|
|
|
|
ret = fsl_sai_set_dai_sysclk_tr(cpu_dai, clk_id, freq,
|