mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-21 06:33:41 +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>
66 lines
1.9 KiB
Diff
66 lines
1.9 KiB
Diff
From aff2edb9c66a1188ed6554643e3cf76595c56846 Mon Sep 17 00:00:00 2001
|
|
From: Leonard Crestez <leonard.crestez@nxp.com>
|
|
Date: Thu, 3 Oct 2019 20:44:59 +0300
|
|
Subject: [PATCH] Revert "ASoC: fsl_sai: Implement set_bclk_ratio"
|
|
|
|
This reverts commit 63d1a3488ff58e094a7f517cf93c0250f0a3f6be.
|
|
---
|
|
sound/soc/fsl/fsl_sai.c | 21 ++-------------------
|
|
sound/soc/fsl/fsl_sai.h | 1 -
|
|
2 files changed, 2 insertions(+), 20 deletions(-)
|
|
|
|
--- a/sound/soc/fsl/fsl_sai.c
|
|
+++ b/sound/soc/fsl/fsl_sai.c
|
|
@@ -137,16 +137,6 @@ static int fsl_sai_set_dai_tdm_slot(stru
|
|
return 0;
|
|
}
|
|
|
|
-static int fsl_sai_set_dai_bclk_ratio(struct snd_soc_dai *dai,
|
|
- unsigned int ratio)
|
|
-{
|
|
- struct fsl_sai *sai = snd_soc_dai_get_drvdata(dai);
|
|
-
|
|
- sai->bclk_ratio = ratio;
|
|
-
|
|
- return 0;
|
|
-}
|
|
-
|
|
static int fsl_sai_set_dai_sysclk_tr(struct snd_soc_dai *cpu_dai,
|
|
int clk_id, unsigned int freq, int fsl_dir)
|
|
{
|
|
@@ -433,14 +423,8 @@ static int fsl_sai_hw_params(struct snd_
|
|
slot_width = sai->slot_width;
|
|
|
|
if (!sai->is_slave_mode) {
|
|
- if (sai->bclk_ratio)
|
|
- ret = fsl_sai_set_bclk(cpu_dai, tx,
|
|
- sai->bclk_ratio *
|
|
- params_rate(params));
|
|
- else
|
|
- ret = fsl_sai_set_bclk(cpu_dai, tx,
|
|
- slots * slot_width *
|
|
- params_rate(params));
|
|
+ ret = fsl_sai_set_bclk(cpu_dai, tx,
|
|
+ slots * slot_width * params_rate(params));
|
|
if (ret)
|
|
return ret;
|
|
|
|
@@ -646,7 +630,6 @@ static void fsl_sai_shutdown(struct snd_
|
|
}
|
|
|
|
static const struct snd_soc_dai_ops fsl_sai_pcm_dai_ops = {
|
|
- .set_bclk_ratio = fsl_sai_set_dai_bclk_ratio,
|
|
.set_sysclk = fsl_sai_set_dai_sysclk,
|
|
.set_fmt = fsl_sai_set_dai_fmt,
|
|
.set_tdm_slot = fsl_sai_set_dai_tdm_slot,
|
|
--- a/sound/soc/fsl/fsl_sai.h
|
|
+++ b/sound/soc/fsl/fsl_sai.h
|
|
@@ -176,7 +176,6 @@ struct fsl_sai {
|
|
unsigned int mclk_streams;
|
|
unsigned int slots;
|
|
unsigned int slot_width;
|
|
- unsigned int bclk_ratio;
|
|
|
|
const struct fsl_sai_soc_data *soc_data;
|
|
struct snd_dmaengine_dai_dma_data dma_params_rx;
|