Merge branch 'asoc-5.2' into asoc-next
Šī revīzija ir iekļauta:
@@ -44,7 +44,7 @@ struct stm32_adfsdm_priv {
|
||||
|
||||
static const struct snd_pcm_hardware stm32_adfsdm_pcm_hw = {
|
||||
.info = SNDRV_PCM_INFO_INTERLEAVED | SNDRV_PCM_INFO_BLOCK_TRANSFER |
|
||||
SNDRV_PCM_INFO_PAUSE,
|
||||
SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_PAUSE,
|
||||
.formats = SNDRV_PCM_FMTBIT_S32_LE,
|
||||
|
||||
.rate_min = 8000,
|
||||
|
@@ -179,7 +179,6 @@ enum i2s_datlen {
|
||||
I2S_I2SMOD_DATLEN_32,
|
||||
};
|
||||
|
||||
#define STM32_I2S_DAI_NAME_SIZE 20
|
||||
#define STM32_I2S_FIFO_SIZE 16
|
||||
|
||||
#define STM32_I2S_IS_MASTER(x) ((x)->ms_flg == I2S_MS_MASTER)
|
||||
@@ -202,7 +201,6 @@ enum i2s_datlen {
|
||||
* @phys_addr: I2S registers physical base address
|
||||
* @lock_fd: lock to manage race conditions in full duplex mode
|
||||
* @irq_lock: prevent race condition with IRQ
|
||||
* @dais_name: DAI name
|
||||
* @mclk_rate: master clock frequency (Hz)
|
||||
* @fmt: DAI protocol
|
||||
* @refcount: keep count of opened streams on I2S
|
||||
@@ -224,7 +222,6 @@ struct stm32_i2s_data {
|
||||
dma_addr_t phys_addr;
|
||||
spinlock_t lock_fd; /* Manage race conditions for full duplex */
|
||||
spinlock_t irq_lock; /* used to prevent race condition with IRQ */
|
||||
char dais_name[STM32_I2S_DAI_NAME_SIZE];
|
||||
unsigned int mclk_rate;
|
||||
unsigned int fmt;
|
||||
int refcount;
|
||||
@@ -495,12 +492,6 @@ static int stm32_i2s_configure(struct snd_soc_dai *cpu_dai,
|
||||
unsigned int fthlv;
|
||||
int ret;
|
||||
|
||||
if ((params_channels(params) == 1) &&
|
||||
((i2s->fmt & SND_SOC_DAIFMT_FORMAT_MASK) != SND_SOC_DAIFMT_DSP_A)) {
|
||||
dev_err(cpu_dai->dev, "Mono mode supported only by DSP_A\n");
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
switch (format) {
|
||||
case 16:
|
||||
cfgr = I2S_CGFR_DATLEN_SET(I2S_I2SMOD_DATLEN_16);
|
||||
@@ -550,6 +541,10 @@ static int stm32_i2s_startup(struct snd_pcm_substream *substream,
|
||||
i2s->substream = substream;
|
||||
spin_unlock_irqrestore(&i2s->irq_lock, flags);
|
||||
|
||||
if ((i2s->fmt & SND_SOC_DAIFMT_FORMAT_MASK) != SND_SOC_DAIFMT_DSP_A)
|
||||
snd_pcm_hw_constraint_single(substream->runtime,
|
||||
SNDRV_PCM_HW_PARAM_CHANNELS, 2);
|
||||
|
||||
ret = clk_prepare_enable(i2s->i2sclk);
|
||||
if (ret < 0) {
|
||||
dev_err(cpu_dai->dev, "Failed to enable clock: %d\n", ret);
|
||||
@@ -592,7 +587,8 @@ static int stm32_i2s_trigger(struct snd_pcm_substream *substream, int cmd,
|
||||
case SNDRV_PCM_TRIGGER_RESUME:
|
||||
case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
|
||||
/* Enable i2s */
|
||||
dev_dbg(cpu_dai->dev, "start I2S\n");
|
||||
dev_dbg(cpu_dai->dev, "start I2S %s\n",
|
||||
playback_flg ? "playback" : "capture");
|
||||
|
||||
cfg1_mask = I2S_CFG1_RXDMAEN | I2S_CFG1_TXDMAEN;
|
||||
regmap_update_bits(i2s->regmap, STM32_I2S_CFG1_REG,
|
||||
@@ -637,6 +633,9 @@ static int stm32_i2s_trigger(struct snd_pcm_substream *substream, int cmd,
|
||||
case SNDRV_PCM_TRIGGER_STOP:
|
||||
case SNDRV_PCM_TRIGGER_SUSPEND:
|
||||
case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
|
||||
dev_dbg(cpu_dai->dev, "stop I2S %s\n",
|
||||
playback_flg ? "playback" : "capture");
|
||||
|
||||
if (playback_flg)
|
||||
regmap_update_bits(i2s->regmap, STM32_I2S_IER_REG,
|
||||
I2S_IER_UDRIE,
|
||||
@@ -653,8 +652,6 @@ static int stm32_i2s_trigger(struct snd_pcm_substream *substream, int cmd,
|
||||
break;
|
||||
}
|
||||
|
||||
dev_dbg(cpu_dai->dev, "stop I2S\n");
|
||||
|
||||
ret = regmap_update_bits(i2s->regmap, STM32_I2S_CR1_REG,
|
||||
I2S_CR1_SPE, 0);
|
||||
if (ret < 0) {
|
||||
@@ -770,12 +767,8 @@ static int stm32_i2s_dais_init(struct platform_device *pdev,
|
||||
if (!dai_ptr)
|
||||
return -ENOMEM;
|
||||
|
||||
snprintf(i2s->dais_name, STM32_I2S_DAI_NAME_SIZE,
|
||||
"%s", dev_name(&pdev->dev));
|
||||
|
||||
dai_ptr->probe = stm32_i2s_dai_probe;
|
||||
dai_ptr->ops = &stm32_i2s_pcm_dai_ops;
|
||||
dai_ptr->name = i2s->dais_name;
|
||||
dai_ptr->id = 1;
|
||||
stm32_i2s_dai_init(&dai_ptr->playback, "playback");
|
||||
stm32_i2s_dai_init(&dai_ptr->capture, "capture");
|
||||
|
@@ -21,6 +21,7 @@
|
||||
#include <linux/delay.h>
|
||||
#include <linux/module.h>
|
||||
#include <linux/of_platform.h>
|
||||
#include <linux/pinctrl/consumer.h>
|
||||
#include <linux/reset.h>
|
||||
|
||||
#include <sound/dmaengine_pcm.h>
|
||||
@@ -44,20 +45,41 @@ static const struct of_device_id stm32_sai_ids[] = {
|
||||
{}
|
||||
};
|
||||
|
||||
static int stm32_sai_sync_conf_client(struct stm32_sai_data *sai, int synci)
|
||||
static int stm32_sai_pclk_disable(struct device *dev)
|
||||
{
|
||||
struct stm32_sai_data *sai = dev_get_drvdata(dev);
|
||||
|
||||
clk_disable_unprepare(sai->pclk);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int stm32_sai_pclk_enable(struct device *dev)
|
||||
{
|
||||
struct stm32_sai_data *sai = dev_get_drvdata(dev);
|
||||
int ret;
|
||||
|
||||
/* Enable peripheral clock to allow GCR register access */
|
||||
ret = clk_prepare_enable(sai->pclk);
|
||||
if (ret) {
|
||||
dev_err(&sai->pdev->dev, "failed to enable clock: %d\n", ret);
|
||||
return ret;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int stm32_sai_sync_conf_client(struct stm32_sai_data *sai, int synci)
|
||||
{
|
||||
int ret;
|
||||
|
||||
/* Enable peripheral clock to allow GCR register access */
|
||||
ret = stm32_sai_pclk_enable(&sai->pdev->dev);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
writel_relaxed(FIELD_PREP(SAI_GCR_SYNCIN_MASK, (synci - 1)), sai->base);
|
||||
|
||||
clk_disable_unprepare(sai->pclk);
|
||||
stm32_sai_pclk_disable(&sai->pdev->dev);
|
||||
|
||||
return 0;
|
||||
}
|
||||
@@ -68,11 +90,9 @@ static int stm32_sai_sync_conf_provider(struct stm32_sai_data *sai, int synco)
|
||||
int ret;
|
||||
|
||||
/* Enable peripheral clock to allow GCR register access */
|
||||
ret = clk_prepare_enable(sai->pclk);
|
||||
if (ret) {
|
||||
dev_err(&sai->pdev->dev, "failed to enable clock: %d\n", ret);
|
||||
ret = stm32_sai_pclk_enable(&sai->pdev->dev);
|
||||
if (ret)
|
||||
return ret;
|
||||
}
|
||||
|
||||
dev_dbg(&sai->pdev->dev, "Set %pOFn%s as synchro provider\n",
|
||||
sai->pdev->dev.of_node,
|
||||
@@ -83,13 +103,13 @@ static int stm32_sai_sync_conf_provider(struct stm32_sai_data *sai, int synco)
|
||||
dev_err(&sai->pdev->dev, "%pOFn%s already set as sync provider\n",
|
||||
sai->pdev->dev.of_node,
|
||||
prev_synco == STM_SAI_SYNC_OUT_A ? "A" : "B");
|
||||
clk_disable_unprepare(sai->pclk);
|
||||
stm32_sai_pclk_disable(&sai->pdev->dev);
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
writel_relaxed(FIELD_PREP(SAI_GCR_SYNCOUT_MASK, synco), sai->base);
|
||||
|
||||
clk_disable_unprepare(sai->pclk);
|
||||
stm32_sai_pclk_disable(&sai->pdev->dev);
|
||||
|
||||
return 0;
|
||||
}
|
||||
@@ -195,12 +215,54 @@ static int stm32_sai_probe(struct platform_device *pdev)
|
||||
return devm_of_platform_populate(&pdev->dev);
|
||||
}
|
||||
|
||||
#ifdef CONFIG_PM_SLEEP
|
||||
/*
|
||||
* When pins are shared by two sai sub instances, pins have to be defined
|
||||
* in sai parent node. In this case, pins state is not managed by alsa fw.
|
||||
* These pins are managed in suspend/resume callbacks.
|
||||
*/
|
||||
static int stm32_sai_suspend(struct device *dev)
|
||||
{
|
||||
struct stm32_sai_data *sai = dev_get_drvdata(dev);
|
||||
int ret;
|
||||
|
||||
ret = stm32_sai_pclk_enable(dev);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
sai->gcr = readl_relaxed(sai->base);
|
||||
stm32_sai_pclk_disable(dev);
|
||||
|
||||
return pinctrl_pm_select_sleep_state(dev);
|
||||
}
|
||||
|
||||
static int stm32_sai_resume(struct device *dev)
|
||||
{
|
||||
struct stm32_sai_data *sai = dev_get_drvdata(dev);
|
||||
int ret;
|
||||
|
||||
ret = stm32_sai_pclk_enable(dev);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
writel_relaxed(sai->gcr, sai->base);
|
||||
stm32_sai_pclk_disable(dev);
|
||||
|
||||
return pinctrl_pm_select_default_state(dev);
|
||||
}
|
||||
#endif /* CONFIG_PM_SLEEP */
|
||||
|
||||
static const struct dev_pm_ops stm32_sai_pm_ops = {
|
||||
SET_SYSTEM_SLEEP_PM_OPS(stm32_sai_suspend, stm32_sai_resume)
|
||||
};
|
||||
|
||||
MODULE_DEVICE_TABLE(of, stm32_sai_ids);
|
||||
|
||||
static struct platform_driver stm32_sai_driver = {
|
||||
.driver = {
|
||||
.name = "st,stm32-sai",
|
||||
.of_match_table = stm32_sai_ids,
|
||||
.pm = &stm32_sai_pm_ops,
|
||||
},
|
||||
.probe = stm32_sai_probe,
|
||||
};
|
||||
|
@@ -268,6 +268,7 @@ struct stm32_sai_conf {
|
||||
* @version: SOC version
|
||||
* @irq: SAI interrupt line
|
||||
* @set_sync: pointer to synchro mode configuration callback
|
||||
* @gcr: SAI Global Configuration Register
|
||||
*/
|
||||
struct stm32_sai_data {
|
||||
struct platform_device *pdev;
|
||||
@@ -279,4 +280,5 @@ struct stm32_sai_data {
|
||||
int irq;
|
||||
int (*set_sync)(struct stm32_sai_data *sai,
|
||||
struct device_node *np_provider, int synco, int synci);
|
||||
u32 gcr;
|
||||
};
|
||||
|
@@ -110,7 +110,7 @@ struct stm32_sai_sub_data {
|
||||
struct regmap *regmap;
|
||||
const struct regmap_config *regmap_config;
|
||||
struct snd_dmaengine_dai_dma_data dma_params;
|
||||
struct snd_soc_dai_driver *cpu_dai_drv;
|
||||
struct snd_soc_dai_driver cpu_dai_drv;
|
||||
struct snd_soc_dai *cpu_dai;
|
||||
struct snd_pcm_substream *substream;
|
||||
struct stm32_sai_data *pdata;
|
||||
@@ -169,6 +169,7 @@ static bool stm32_sai_sub_volatile_reg(struct device *dev, unsigned int reg)
|
||||
{
|
||||
switch (reg) {
|
||||
case STM_SAI_DR_REGX:
|
||||
case STM_SAI_SR_REGX:
|
||||
return true;
|
||||
default:
|
||||
return false;
|
||||
@@ -183,7 +184,6 @@ static bool stm32_sai_sub_writeable_reg(struct device *dev, unsigned int reg)
|
||||
case STM_SAI_FRCR_REGX:
|
||||
case STM_SAI_SLOTR_REGX:
|
||||
case STM_SAI_IMR_REGX:
|
||||
case STM_SAI_SR_REGX:
|
||||
case STM_SAI_CLRFR_REGX:
|
||||
case STM_SAI_DR_REGX:
|
||||
case STM_SAI_PDMCR_REGX:
|
||||
@@ -203,6 +203,7 @@ static const struct regmap_config stm32_sai_sub_regmap_config_f4 = {
|
||||
.volatile_reg = stm32_sai_sub_volatile_reg,
|
||||
.writeable_reg = stm32_sai_sub_writeable_reg,
|
||||
.fast_io = true,
|
||||
.cache_type = REGCACHE_FLAT,
|
||||
};
|
||||
|
||||
static const struct regmap_config stm32_sai_sub_regmap_config_h7 = {
|
||||
@@ -214,6 +215,7 @@ static const struct regmap_config stm32_sai_sub_regmap_config_h7 = {
|
||||
.volatile_reg = stm32_sai_sub_volatile_reg,
|
||||
.writeable_reg = stm32_sai_sub_writeable_reg,
|
||||
.fast_io = true,
|
||||
.cache_type = REGCACHE_FLAT,
|
||||
};
|
||||
|
||||
static int snd_pcm_iec958_info(struct snd_kcontrol *kcontrol,
|
||||
@@ -461,8 +463,8 @@ static irqreturn_t stm32_sai_isr(int irq, void *devid)
|
||||
if (!flags)
|
||||
return IRQ_NONE;
|
||||
|
||||
regmap_update_bits(sai->regmap, STM_SAI_CLRFR_REGX, SAI_XCLRFR_MASK,
|
||||
SAI_XCLRFR_MASK);
|
||||
regmap_write_bits(sai->regmap, STM_SAI_CLRFR_REGX, SAI_XCLRFR_MASK,
|
||||
SAI_XCLRFR_MASK);
|
||||
|
||||
if (!sai->substream) {
|
||||
dev_err(&pdev->dev, "Device stopped. Spurious IRQ 0x%x\n", sr);
|
||||
@@ -728,9 +730,8 @@ static int stm32_sai_startup(struct snd_pcm_substream *substream,
|
||||
}
|
||||
|
||||
/* Enable ITs */
|
||||
|
||||
regmap_update_bits(sai->regmap, STM_SAI_CLRFR_REGX,
|
||||
SAI_XCLRFR_MASK, SAI_XCLRFR_MASK);
|
||||
regmap_write_bits(sai->regmap, STM_SAI_CLRFR_REGX,
|
||||
SAI_XCLRFR_MASK, SAI_XCLRFR_MASK);
|
||||
|
||||
imr = SAI_XIMR_OVRUDRIE;
|
||||
if (STM_SAI_IS_CAPTURE(sai)) {
|
||||
@@ -762,10 +763,10 @@ static int stm32_sai_set_config(struct snd_soc_dai *cpu_dai,
|
||||
* SAI fifo threshold is set to half fifo, to keep enough space
|
||||
* for DMA incoming bursts.
|
||||
*/
|
||||
regmap_update_bits(sai->regmap, STM_SAI_CR2_REGX,
|
||||
SAI_XCR2_FFLUSH | SAI_XCR2_FTH_MASK,
|
||||
SAI_XCR2_FFLUSH |
|
||||
SAI_XCR2_FTH_SET(STM_SAI_FIFO_TH_HALF));
|
||||
regmap_write_bits(sai->regmap, STM_SAI_CR2_REGX,
|
||||
SAI_XCR2_FFLUSH | SAI_XCR2_FTH_MASK,
|
||||
SAI_XCR2_FFLUSH |
|
||||
SAI_XCR2_FTH_SET(STM_SAI_FIFO_TH_HALF));
|
||||
|
||||
/* DS bits in CR1 not set for SPDIF (size forced to 24 bits).*/
|
||||
if (STM_SAI_PROTOCOL_IS_SPDIF(sai)) {
|
||||
@@ -1233,8 +1234,7 @@ static const struct snd_pcm_hardware stm32_sai_pcm_hw = {
|
||||
.periods_max = 8,
|
||||
};
|
||||
|
||||
static struct snd_soc_dai_driver stm32_sai_playback_dai[] = {
|
||||
{
|
||||
static struct snd_soc_dai_driver stm32_sai_playback_dai = {
|
||||
.probe = stm32_sai_dai_probe,
|
||||
.pcm_new = stm32_sai_pcm_new,
|
||||
.id = 1, /* avoid call to fmt_single_name() */
|
||||
@@ -1251,11 +1251,9 @@ static struct snd_soc_dai_driver stm32_sai_playback_dai[] = {
|
||||
SNDRV_PCM_FMTBIT_S32_LE,
|
||||
},
|
||||
.ops = &stm32_sai_pcm_dai_ops,
|
||||
}
|
||||
};
|
||||
|
||||
static struct snd_soc_dai_driver stm32_sai_capture_dai[] = {
|
||||
{
|
||||
static struct snd_soc_dai_driver stm32_sai_capture_dai = {
|
||||
.probe = stm32_sai_dai_probe,
|
||||
.id = 1, /* avoid call to fmt_single_name() */
|
||||
.capture = {
|
||||
@@ -1271,7 +1269,6 @@ static struct snd_soc_dai_driver stm32_sai_capture_dai[] = {
|
||||
SNDRV_PCM_FMTBIT_S32_LE,
|
||||
},
|
||||
.ops = &stm32_sai_pcm_dai_ops,
|
||||
}
|
||||
};
|
||||
|
||||
static const struct snd_dmaengine_pcm_config stm32_sai_pcm_config = {
|
||||
@@ -1440,29 +1437,6 @@ static int stm32_sai_sub_parse_of(struct platform_device *pdev,
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int stm32_sai_sub_dais_init(struct platform_device *pdev,
|
||||
struct stm32_sai_sub_data *sai)
|
||||
{
|
||||
sai->cpu_dai_drv = devm_kzalloc(&pdev->dev,
|
||||
sizeof(struct snd_soc_dai_driver),
|
||||
GFP_KERNEL);
|
||||
if (!sai->cpu_dai_drv)
|
||||
return -ENOMEM;
|
||||
|
||||
if (STM_SAI_IS_PLAYBACK(sai)) {
|
||||
memcpy(sai->cpu_dai_drv, &stm32_sai_playback_dai,
|
||||
sizeof(stm32_sai_playback_dai));
|
||||
sai->cpu_dai_drv->playback.stream_name = sai->cpu_dai_drv->name;
|
||||
} else {
|
||||
memcpy(sai->cpu_dai_drv, &stm32_sai_capture_dai,
|
||||
sizeof(stm32_sai_capture_dai));
|
||||
sai->cpu_dai_drv->capture.stream_name = sai->cpu_dai_drv->name;
|
||||
}
|
||||
sai->cpu_dai_drv->name = dev_name(&pdev->dev);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int stm32_sai_sub_probe(struct platform_device *pdev)
|
||||
{
|
||||
struct stm32_sai_sub_data *sai;
|
||||
@@ -1494,9 +1468,11 @@ static int stm32_sai_sub_probe(struct platform_device *pdev)
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
ret = stm32_sai_sub_dais_init(pdev, sai);
|
||||
if (ret)
|
||||
return ret;
|
||||
if (STM_SAI_IS_PLAYBACK(sai))
|
||||
sai->cpu_dai_drv = stm32_sai_playback_dai;
|
||||
else
|
||||
sai->cpu_dai_drv = stm32_sai_capture_dai;
|
||||
sai->cpu_dai_drv.name = dev_name(&pdev->dev);
|
||||
|
||||
ret = devm_request_irq(&pdev->dev, sai->pdata->irq, stm32_sai_isr,
|
||||
IRQF_SHARED, dev_name(&pdev->dev), sai);
|
||||
@@ -1506,7 +1482,7 @@ static int stm32_sai_sub_probe(struct platform_device *pdev)
|
||||
}
|
||||
|
||||
ret = devm_snd_soc_register_component(&pdev->dev, &stm32_component,
|
||||
sai->cpu_dai_drv, 1);
|
||||
&sai->cpu_dai_drv, 1);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
@@ -1522,10 +1498,34 @@ static int stm32_sai_sub_probe(struct platform_device *pdev)
|
||||
return 0;
|
||||
}
|
||||
|
||||
#ifdef CONFIG_PM_SLEEP
|
||||
static int stm32_sai_sub_suspend(struct device *dev)
|
||||
{
|
||||
struct stm32_sai_sub_data *sai = dev_get_drvdata(dev);
|
||||
|
||||
regcache_cache_only(sai->regmap, true);
|
||||
regcache_mark_dirty(sai->regmap);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int stm32_sai_sub_resume(struct device *dev)
|
||||
{
|
||||
struct stm32_sai_sub_data *sai = dev_get_drvdata(dev);
|
||||
|
||||
regcache_cache_only(sai->regmap, false);
|
||||
return regcache_sync(sai->regmap);
|
||||
}
|
||||
#endif /* CONFIG_PM_SLEEP */
|
||||
|
||||
static const struct dev_pm_ops stm32_sai_sub_pm_ops = {
|
||||
SET_SYSTEM_SLEEP_PM_OPS(stm32_sai_sub_suspend, stm32_sai_sub_resume)
|
||||
};
|
||||
|
||||
static struct platform_driver stm32_sai_sub_driver = {
|
||||
.driver = {
|
||||
.name = "st,stm32-sai-sub",
|
||||
.of_match_table = stm32_sai_sub_ids,
|
||||
.pm = &stm32_sai_sub_pm_ops,
|
||||
},
|
||||
.probe = stm32_sai_sub_probe,
|
||||
};
|
||||
|
@@ -21,6 +21,7 @@
|
||||
#include <linux/delay.h>
|
||||
#include <linux/module.h>
|
||||
#include <linux/of_platform.h>
|
||||
#include <linux/pinctrl/consumer.h>
|
||||
#include <linux/regmap.h>
|
||||
#include <linux/reset.h>
|
||||
|
||||
@@ -471,6 +472,8 @@ static int stm32_spdifrx_get_ctrl_data(struct stm32_spdifrx_data *spdifrx)
|
||||
memset(spdifrx->cs, 0, SPDIFRX_CS_BYTES_NB);
|
||||
memset(spdifrx->ub, 0, SPDIFRX_UB_BYTES_NB);
|
||||
|
||||
pinctrl_pm_select_default_state(&spdifrx->pdev->dev);
|
||||
|
||||
ret = stm32_spdifrx_dma_ctrl_start(spdifrx);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
@@ -502,6 +505,7 @@ static int stm32_spdifrx_get_ctrl_data(struct stm32_spdifrx_data *spdifrx)
|
||||
|
||||
end:
|
||||
clk_disable_unprepare(spdifrx->kclk);
|
||||
pinctrl_pm_select_sleep_state(&spdifrx->pdev->dev);
|
||||
|
||||
return ret;
|
||||
}
|
||||
@@ -611,10 +615,15 @@ static bool stm32_spdifrx_readable_reg(struct device *dev, unsigned int reg)
|
||||
|
||||
static bool stm32_spdifrx_volatile_reg(struct device *dev, unsigned int reg)
|
||||
{
|
||||
if (reg == STM32_SPDIFRX_DR)
|
||||
switch (reg) {
|
||||
case STM32_SPDIFRX_DR:
|
||||
case STM32_SPDIFRX_CSR:
|
||||
case STM32_SPDIFRX_SR:
|
||||
case STM32_SPDIFRX_DIR:
|
||||
return true;
|
||||
|
||||
return false;
|
||||
default:
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
static bool stm32_spdifrx_writeable_reg(struct device *dev, unsigned int reg)
|
||||
@@ -638,6 +647,7 @@ static const struct regmap_config stm32_h7_spdifrx_regmap_conf = {
|
||||
.volatile_reg = stm32_spdifrx_volatile_reg,
|
||||
.writeable_reg = stm32_spdifrx_writeable_reg,
|
||||
.fast_io = true,
|
||||
.cache_type = REGCACHE_FLAT,
|
||||
};
|
||||
|
||||
static irqreturn_t stm32_spdifrx_isr(int irq, void *devid)
|
||||
@@ -983,10 +993,36 @@ static int stm32_spdifrx_remove(struct platform_device *pdev)
|
||||
|
||||
MODULE_DEVICE_TABLE(of, stm32_spdifrx_ids);
|
||||
|
||||
#ifdef CONFIG_PM_SLEEP
|
||||
static int stm32_spdifrx_suspend(struct device *dev)
|
||||
{
|
||||
struct stm32_spdifrx_data *spdifrx = dev_get_drvdata(dev);
|
||||
|
||||
regcache_cache_only(spdifrx->regmap, true);
|
||||
regcache_mark_dirty(spdifrx->regmap);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int stm32_spdifrx_resume(struct device *dev)
|
||||
{
|
||||
struct stm32_spdifrx_data *spdifrx = dev_get_drvdata(dev);
|
||||
|
||||
regcache_cache_only(spdifrx->regmap, false);
|
||||
|
||||
return regcache_sync(spdifrx->regmap);
|
||||
}
|
||||
#endif /* CONFIG_PM_SLEEP */
|
||||
|
||||
static const struct dev_pm_ops stm32_spdifrx_pm_ops = {
|
||||
SET_SYSTEM_SLEEP_PM_OPS(stm32_spdifrx_suspend, stm32_spdifrx_resume)
|
||||
};
|
||||
|
||||
static struct platform_driver stm32_spdifrx_driver = {
|
||||
.driver = {
|
||||
.name = "st,stm32-spdifrx",
|
||||
.of_match_table = stm32_spdifrx_ids,
|
||||
.pm = &stm32_spdifrx_pm_ops,
|
||||
},
|
||||
.probe = stm32_spdifrx_probe,
|
||||
.remove = stm32_spdifrx_remove,
|
||||
|
Atsaukties uz šo jaunā problēmā
Block a user