1920 lines
58 KiB
C
1920 lines
58 KiB
C
/*
|
|
* sound\sunxi-rpaf\soc\sunxi\sunxi-spdif.c
|
|
*
|
|
* (C) Copyright 2019-2025
|
|
* allwinnertech Technology Co., Ltd. <www.allwinnertech.com>
|
|
* yumingfeng <yumingfeng@allwinnertech.com>
|
|
*
|
|
* some simple description for this code
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License as
|
|
* published by the Free Software Foundation; either version 2 of
|
|
* the License, or (at your option) any later version.
|
|
*
|
|
*/
|
|
|
|
#include <linux/init.h>
|
|
#include <linux/module.h>
|
|
#include <linux/device.h>
|
|
#include <linux/clk.h>
|
|
#include <linux/of.h>
|
|
#include <linux/of_device.h>
|
|
#include <linux/of_address.h>
|
|
#include <linux/regmap.h>
|
|
#include <linux/dma/sunxi-dma.h>
|
|
#include <linux/pinctrl/consumer.h>
|
|
#include <sound/core.h>
|
|
#include <sound/pcm.h>
|
|
#include <sound/pcm_params.h>
|
|
#include <linux/of_gpio.h>
|
|
#include <linux/sunxi-gpio.h>
|
|
#include <sound/dmaengine_pcm.h>
|
|
#include <sound/initval.h>
|
|
#include <sound/soc.h>
|
|
#include <linux/delay.h>
|
|
#include "sunxi-spdif.h"
|
|
#include "sunxi-pcm.h"
|
|
|
|
#define DRV_NAME "sunxi-spdif"
|
|
|
|
struct sample_rate {
|
|
unsigned int samplerate;
|
|
unsigned int rate_bit;
|
|
};
|
|
|
|
/* Origin freq convert */
|
|
static const struct sample_rate sample_rate_orig[] = {
|
|
{22050, 0xB},
|
|
{24000, 0x9},
|
|
{32000, 0xC},
|
|
{44100, 0xF},
|
|
{48000, 0xD},
|
|
{88200, 0x7},
|
|
{96000, 0x5},
|
|
{176400, 0x3},
|
|
{192000, 0x1},
|
|
};
|
|
|
|
static const struct sample_rate sample_rate_freq[] = {
|
|
{22050, 0x4},
|
|
{24000, 0x6},
|
|
{32000, 0x3},
|
|
{44100, 0x0},
|
|
{48000, 0x2},
|
|
{88200, 0x8},
|
|
{96000, 0xA},
|
|
{176400, 0xC},
|
|
{192000, 0xE},
|
|
};
|
|
|
|
#ifdef CONFIG_SND_SUNXI_SPDIF_DEBUG
|
|
static struct sunxi_spdif_reg_label reg_labels[] = {
|
|
SPDIF_REG_LABEL(SUNXI_SPDIF_CTL),
|
|
SPDIF_REG_LABEL(SUNXI_SPDIF_TXCFG),
|
|
SPDIF_REG_LABEL(SUNXI_SPDIF_RXCFG),
|
|
SPDIF_REG_LABEL(SUNXI_SPDIF_INT_STA),
|
|
SPDIF_REG_LABEL(SUNXI_SPDIF_FIFO_CTL),
|
|
SPDIF_REG_LABEL(SUNXI_SPDIF_FIFO_STA),
|
|
SPDIF_REG_LABEL(SUNXI_SPDIF_INT),
|
|
SPDIF_REG_LABEL(SUNXI_SPDIF_TXCNT),
|
|
SPDIF_REG_LABEL(SUNXI_SPDIF_RXCNT),
|
|
SPDIF_REG_LABEL(SUNXI_SPDIF_TXCH_STA0),
|
|
SPDIF_REG_LABEL(SUNXI_SPDIF_TXCH_STA1),
|
|
SPDIF_REG_LABEL(SUNXI_SPDIF_RXCH_STA0),
|
|
SPDIF_REG_LABEL(SUNXI_SPDIF_RXCH_STA1),
|
|
SPDIF_REG_LABEL_END,
|
|
};
|
|
|
|
static ssize_t show_spdif_reg(struct device *dev,
|
|
struct device_attribute *attr, char *buf)
|
|
{
|
|
struct sunxi_spdif_info *sunxi_spdif = dev_get_drvdata(dev);
|
|
struct sunxi_spdif_dts_info *dts_info = NULL;
|
|
struct sunxi_spdif_mem_info *mem_info = NULL;
|
|
int count = 0;
|
|
unsigned int reg_val;
|
|
int ret = 0;
|
|
int i = 0;
|
|
|
|
if (IS_ERR_OR_NULL(sunxi_spdif)) {
|
|
dev_err(dev, "sunxi_spdif is NULL!\n");
|
|
return count;
|
|
}
|
|
dts_info = &sunxi_spdif->dts_info;
|
|
mem_info = &dts_info->mem_info;
|
|
|
|
count = snprintf(buf, PAGE_SIZE, "Dump spdif reg:\n");
|
|
if (count > 0) {
|
|
ret += count;
|
|
} else {
|
|
dev_err(dev, "snprintf start error=%d.\n", count);
|
|
return 0;
|
|
}
|
|
|
|
while (reg_labels[i].name != NULL) {
|
|
regmap_read(mem_info->regmap, reg_labels[i].value, ®_val);
|
|
count = snprintf(buf + ret, PAGE_SIZE - ret,
|
|
"%-23s[0x%02X]: 0x%08X\n",
|
|
reg_labels[i].name,
|
|
(reg_labels[i].value), reg_val);
|
|
if (count > 0) {
|
|
ret += count;
|
|
} else {
|
|
dev_err(dev, "snprintf [i=%d] error=%d.\n", i, count);
|
|
break;
|
|
}
|
|
if (ret > PAGE_SIZE) {
|
|
ret = PAGE_SIZE;
|
|
break;
|
|
}
|
|
i++;
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
/* ex:
|
|
*param 1: 0 read;1 write
|
|
*param 2: reg value;
|
|
*param 3: write value;
|
|
read:
|
|
echo 0,0x0 > spdif_reg
|
|
write:
|
|
echo 1,0x00,0xa > spdif_reg
|
|
*/
|
|
static ssize_t store_spdif_reg(struct device *dev, struct device_attribute *attr,
|
|
const char *buf, size_t count)
|
|
{
|
|
int ret;
|
|
int rw_flag;
|
|
int reg_val_read;
|
|
unsigned int input_reg_val = 0;
|
|
unsigned int input_reg_offset = 0;
|
|
struct sunxi_spdif_info *sunxi_spdif = dev_get_drvdata(dev);
|
|
struct sunxi_spdif_dts_info *dts_info = NULL;
|
|
struct sunxi_spdif_mem_info *mem_info = NULL;
|
|
|
|
if (IS_ERR_OR_NULL(sunxi_spdif)) {
|
|
dev_err(dev, "sunxi_spdif is NULL!\n");
|
|
return count;
|
|
}
|
|
dts_info = &sunxi_spdif->dts_info;
|
|
mem_info = &dts_info->mem_info;
|
|
|
|
ret = sscanf(buf, "%d,0x%x,0x%x", &rw_flag, &input_reg_offset,
|
|
&input_reg_val);
|
|
|
|
if (ret == 3 || ret == 2) {
|
|
if (!(rw_flag == 1 || rw_flag == 0)) {
|
|
dev_err(dev, "rw_flag should be 0(read) or 1(write).\n");
|
|
return count;
|
|
}
|
|
if (input_reg_offset > SUNXI_SPDIF_REG_MAX) {
|
|
pr_err("the reg offset is invalid! [0x0 - 0x%x]\n",
|
|
SUNXI_SPDIF_REG_MAX);
|
|
return count;
|
|
}
|
|
if (rw_flag) {
|
|
regmap_write(mem_info->regmap, input_reg_offset,
|
|
input_reg_val);
|
|
}
|
|
regmap_read(mem_info->regmap, input_reg_offset, ®_val_read);
|
|
pr_err("\n\n Reg[0x%x] : 0x%x\n\n", input_reg_offset, reg_val_read);
|
|
} else {
|
|
pr_err("ret:%d, The num of params invalid!\n", ret);
|
|
pr_err("\nExample(reg range: 0x0 - 0x%x):\n", SUNXI_SPDIF_REG_MAX);
|
|
pr_err("\nRead reg[0x04]:\n");
|
|
pr_err(" echo 0,0x04 > spdif_reg\n");
|
|
pr_err("Write reg[0x04]=0x10\n");
|
|
pr_err(" echo 1,0x04,0x10 > spdif_reg\n");
|
|
}
|
|
|
|
return count;
|
|
}
|
|
|
|
static DEVICE_ATTR(spdif_reg, 0644, show_spdif_reg, store_spdif_reg);
|
|
|
|
static struct attribute *audio_debug_attrs[] = {
|
|
&dev_attr_spdif_reg.attr,
|
|
NULL,
|
|
};
|
|
|
|
static struct attribute_group spdif_debug_attr_group = {
|
|
.name = "spdif_debug",
|
|
.attrs = audio_debug_attrs,
|
|
};
|
|
#endif
|
|
|
|
static int sunxi_spdif_set_audio_mode(struct snd_kcontrol *kcontrol,
|
|
struct snd_ctl_elem_value *ucontrol)
|
|
{
|
|
struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
|
|
struct snd_soc_codec *codec = snd_soc_component_to_codec(component);
|
|
struct sunxi_spdif_info *sunxi_spdif = snd_soc_codec_get_drvdata(codec);
|
|
struct sunxi_spdif_dts_info *dts_info = &sunxi_spdif->dts_info;
|
|
struct sunxi_spdif_mem_info *mem_info = &dts_info->mem_info;
|
|
unsigned int reg_val;
|
|
|
|
regmap_read(mem_info->regmap, SUNXI_SPDIF_TXCH_STA0, ®_val);
|
|
|
|
switch (ucontrol->value.integer.value[0]) {
|
|
case 0:
|
|
reg_val = 0;
|
|
break;
|
|
case 1:
|
|
reg_val = 1;
|
|
break;
|
|
default:
|
|
return -EINVAL;
|
|
}
|
|
|
|
regmap_update_bits(mem_info->regmap, SUNXI_SPDIF_TXCFG,
|
|
(1 << TXCFG_CHAN_STA_EN), (reg_val << TXCFG_CHAN_STA_EN));
|
|
regmap_update_bits(mem_info->regmap, SUNXI_SPDIF_TXCFG,
|
|
(1 << TXCFG_DATA_TYPE), (reg_val << TXCFG_DATA_TYPE));
|
|
regmap_update_bits(mem_info->regmap, SUNXI_SPDIF_TXCH_STA0,
|
|
(1 << TXCHSTA0_AUDIO), (reg_val << TXCHSTA0_AUDIO));
|
|
regmap_update_bits(mem_info->regmap, SUNXI_SPDIF_RXCH_STA0,
|
|
(1 << RXCHSTA0_AUDIO), (reg_val << RXCHSTA0_AUDIO));
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int sunxi_spdif_get_audio_mode(struct snd_kcontrol *kcontrol,
|
|
struct snd_ctl_elem_value *ucontrol)
|
|
{
|
|
struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
|
|
struct snd_soc_codec *codec = snd_soc_component_to_codec(component);
|
|
struct sunxi_spdif_info *sunxi_spdif = snd_soc_codec_get_drvdata(codec);
|
|
struct sunxi_spdif_dts_info *dts_info = &sunxi_spdif->dts_info;
|
|
struct sunxi_spdif_mem_info *mem_info = &dts_info->mem_info;
|
|
unsigned int reg_val;
|
|
|
|
regmap_read(mem_info->regmap, SUNXI_SPDIF_TXCFG, ®_val);
|
|
ucontrol->value.integer.value[0] = (reg_val >> TXCFG_DATA_TYPE) & 0x1;
|
|
return 0;
|
|
}
|
|
|
|
static const char *spdif_format_function[] = {"PCM", "DTS"};
|
|
static const struct soc_enum spdif_format_enum[] = {
|
|
SOC_ENUM_SINGLE_EXT(ARRAY_SIZE(spdif_format_function),
|
|
spdif_format_function),
|
|
};
|
|
|
|
#if IS_ENABLED(CONFIG_SND_SUNXI_SPDIF_RX_IEC61937)
|
|
static int sunxi_spdif_set_rx_data_type(struct snd_kcontrol *kcontrol,
|
|
struct snd_ctl_elem_value *ucontrol)
|
|
{
|
|
struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
|
|
struct snd_soc_codec *codec = snd_soc_component_to_codec(component);
|
|
struct sunxi_spdif_info *sunxi_spdif = snd_soc_codec_get_drvdata(codec);
|
|
struct sunxi_spdif_dts_info *dts_info = &sunxi_spdif->dts_info;
|
|
struct sunxi_spdif_mem_info *mem_info = &dts_info->mem_info;
|
|
unsigned int reg_val;
|
|
|
|
switch (ucontrol->value.integer.value[0]) {
|
|
case 0:
|
|
reg_val = 0;
|
|
break;
|
|
case 1:
|
|
reg_val = 1;
|
|
break;
|
|
default:
|
|
return -EINVAL;
|
|
}
|
|
|
|
/* Spdif Rx use the non-auto mode */
|
|
regmap_update_bits(mem_info->regmap, SUNXI_SPDIF_EXP_CTL,
|
|
(1 << RX_MODE), (0 << RX_MODE));
|
|
regmap_update_bits(mem_info->regmap, SUNXI_SPDIF_EXP_CTL,
|
|
(1 << RX_MODE_MAN), (reg_val << RX_MODE_MAN));
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int sunxi_spdif_get_rx_data_type(struct snd_kcontrol *kcontrol,
|
|
struct snd_ctl_elem_value *ucontrol)
|
|
{
|
|
struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
|
|
struct snd_soc_codec *codec = snd_soc_component_to_codec(component);
|
|
struct sunxi_spdif_info *sunxi_spdif = snd_soc_codec_get_drvdata(codec);
|
|
struct sunxi_spdif_dts_info *dts_info = &sunxi_spdif->dts_info;
|
|
struct sunxi_spdif_mem_info *mem_info = &dts_info->mem_info;
|
|
unsigned int reg_val;
|
|
|
|
regmap_read(mem_info->regmap, SUNXI_SPDIF_EXP_CTL, ®_val);
|
|
ucontrol->value.integer.value[0] = (reg_val >> RX_MODE_MAN) & 0x1;
|
|
|
|
return 0;
|
|
}
|
|
|
|
static const char *spdif_rx_data_type[] = {"IEC-60958", "IEC-61937"};
|
|
static const struct soc_enum spdif_rx_data_type_enum[] = {
|
|
SOC_ENUM_SINGLE_EXT(ARRAY_SIZE(spdif_rx_data_type),
|
|
spdif_rx_data_type),
|
|
};
|
|
#endif
|
|
|
|
static int sunxi_spdif_get_hub_mode(struct snd_kcontrol *kcontrol,
|
|
struct snd_ctl_elem_value *ucontrol)
|
|
{
|
|
struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
|
|
struct snd_soc_codec *codec = snd_soc_component_to_codec(component);
|
|
struct sunxi_spdif_info *sunxi_spdif = snd_soc_codec_get_drvdata(codec);
|
|
struct sunxi_spdif_dts_info *dts_info = &sunxi_spdif->dts_info;
|
|
struct sunxi_spdif_mem_info *mem_info = &dts_info->mem_info;
|
|
unsigned int reg_val;
|
|
|
|
regmap_read(mem_info->regmap, SUNXI_SPDIF_FIFO_CTL, ®_val);
|
|
|
|
ucontrol->value.integer.value[0] =
|
|
((reg_val & (1 << FIFO_CTL_HUBEN)) ? 1 : 0);
|
|
return 0;
|
|
}
|
|
|
|
static int sunxi_spdif_set_hub_mode(struct snd_kcontrol *kcontrol,
|
|
struct snd_ctl_elem_value *ucontrol)
|
|
{
|
|
struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
|
|
struct snd_soc_codec *codec = snd_soc_component_to_codec(component);
|
|
struct sunxi_spdif_info *sunxi_spdif = snd_soc_codec_get_drvdata(codec);
|
|
struct sunxi_spdif_dts_info *dts_info = &sunxi_spdif->dts_info;
|
|
struct sunxi_spdif_mem_info *mem_info = &dts_info->mem_info;
|
|
|
|
switch (ucontrol->value.integer.value[0]) {
|
|
case 0:
|
|
regmap_update_bits(mem_info->regmap, SUNXI_SPDIF_FIFO_CTL,
|
|
(1 << FIFO_CTL_HUBEN), (0 << FIFO_CTL_HUBEN));
|
|
regmap_update_bits(mem_info->regmap, SUNXI_SPDIF_TXCFG,
|
|
(1 << TXCFG_TXEN), (0 << TXCFG_TXEN));
|
|
break;
|
|
case 1:
|
|
regmap_update_bits(mem_info->regmap, SUNXI_SPDIF_FIFO_CTL,
|
|
(1 << FIFO_CTL_HUBEN), (1 << FIFO_CTL_HUBEN));
|
|
regmap_update_bits(mem_info->regmap, SUNXI_SPDIF_TXCFG,
|
|
(1 << TXCFG_TXEN), (1 << TXCFG_TXEN));
|
|
break;
|
|
default:
|
|
return -EINVAL;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
/* sunxi spdif hub mdoe select */
|
|
static const char *spdif_hub_function[] = {"hub_disable", "hub_enable"};
|
|
|
|
static const struct soc_enum spdif_hub_mode_enum[] = {
|
|
SOC_ENUM_SINGLE_EXT(ARRAY_SIZE(spdif_hub_function),
|
|
spdif_hub_function),
|
|
};
|
|
|
|
/* dts pcm Audio Mode Select */
|
|
static const struct snd_kcontrol_new sunxi_spdif_controls[] = {
|
|
SOC_ENUM_EXT("spdif audio format function", spdif_format_enum[0],
|
|
sunxi_spdif_get_audio_mode, sunxi_spdif_set_audio_mode),
|
|
#if IS_ENABLED(CONFIG_SND_SUNXI_SPDIF_RX_IEC61937)
|
|
SOC_ENUM_EXT("spdif rx data type", spdif_rx_data_type_enum[0],
|
|
sunxi_spdif_get_rx_data_type, sunxi_spdif_set_rx_data_type),
|
|
#endif
|
|
SOC_ENUM_EXT("sunxi spdif hub mode", spdif_hub_mode_enum[0],
|
|
sunxi_spdif_get_hub_mode, sunxi_spdif_set_hub_mode),
|
|
SOC_SINGLE("sunxi spdif loopback debug", SUNXI_SPDIF_CTL,
|
|
CTL_LOOP_EN, 1, 0),
|
|
};
|
|
|
|
static void sunxi_spdif_txctrl_enable(struct sunxi_spdif_info *sunxi_spdif,
|
|
int enable)
|
|
{
|
|
struct sunxi_spdif_dts_info *dts_info = &sunxi_spdif->dts_info;
|
|
struct sunxi_spdif_mem_info *mem_info = &dts_info->mem_info;
|
|
|
|
if (enable) {
|
|
regmap_update_bits(mem_info->regmap, SUNXI_SPDIF_TXCFG,
|
|
(1 << TXCFG_TXEN), (1 << TXCFG_TXEN));
|
|
regmap_update_bits(mem_info->regmap, SUNXI_SPDIF_INT,
|
|
(1 << INT_TXDRQEN), (1 << INT_TXDRQEN));
|
|
} else {
|
|
regmap_update_bits(mem_info->regmap, SUNXI_SPDIF_TXCFG,
|
|
(1 << TXCFG_TXEN), (0 << TXCFG_TXEN));
|
|
regmap_update_bits(mem_info->regmap, SUNXI_SPDIF_INT,
|
|
(1 << INT_TXDRQEN), (0 << INT_TXDRQEN));
|
|
}
|
|
}
|
|
|
|
static void sunxi_spdif_rxctrl_enable(struct sunxi_spdif_info *sunxi_spdif,
|
|
int enable)
|
|
{
|
|
struct sunxi_spdif_dts_info *dts_info = &sunxi_spdif->dts_info;
|
|
struct sunxi_spdif_mem_info *mem_info = &dts_info->mem_info;
|
|
|
|
if (enable) {
|
|
regmap_update_bits(mem_info->regmap, SUNXI_SPDIF_RXCFG,
|
|
(1 << RXCFG_CHSR_CP), (1 << RXCFG_CHSR_CP));
|
|
|
|
regmap_update_bits(mem_info->regmap, SUNXI_SPDIF_INT,
|
|
(1 << INT_RXDRQEN), (1 << INT_RXDRQEN));
|
|
regmap_update_bits(mem_info->regmap, SUNXI_SPDIF_RXCFG,
|
|
(1 << RXCFG_RXEN), (1 << RXCFG_RXEN));
|
|
} else {
|
|
regmap_update_bits(mem_info->regmap, SUNXI_SPDIF_RXCFG,
|
|
(1 << RXCFG_RXEN), (0 << RXCFG_RXEN));
|
|
regmap_update_bits(mem_info->regmap, SUNXI_SPDIF_INT,
|
|
(1 << INT_RXDRQEN), (0 << INT_RXDRQEN));
|
|
}
|
|
}
|
|
|
|
static void sunxi_spdif_init(struct sunxi_spdif_info *sunxi_spdif)
|
|
{
|
|
struct sunxi_spdif_dts_info *dts_info = &sunxi_spdif->dts_info;
|
|
struct sunxi_spdif_mem_info *mem_info = &dts_info->mem_info;
|
|
|
|
/* FIFO CTL register default setting */
|
|
regmap_update_bits(mem_info->regmap, SUNXI_SPDIF_FIFO_CTL,
|
|
(CTL_TXTL_MASK << FIFO_CTL_TXTL),
|
|
(CTL_TXTL_DEFAULT << FIFO_CTL_TXTL));
|
|
regmap_update_bits(mem_info->regmap, SUNXI_SPDIF_FIFO_CTL,
|
|
(CTL_RXTL_MASK << FIFO_CTL_RXTL),
|
|
(CTL_RXTL_DEFAULT << FIFO_CTL_RXTL));
|
|
|
|
regmap_write(mem_info->regmap, SUNXI_SPDIF_TXCH_STA0,
|
|
0x2 << TXCHSTA0_CHNUM);
|
|
regmap_write(mem_info->regmap, SUNXI_SPDIF_RXCH_STA0,
|
|
0x2 << RXCHSTA0_CHNUM);
|
|
}
|
|
|
|
static int sunxi_spdif_dai_hw_params(struct snd_pcm_substream *substream,
|
|
struct snd_pcm_hw_params *params,
|
|
struct snd_soc_dai *dai)
|
|
{
|
|
struct sunxi_spdif_info *sunxi_spdif = snd_soc_dai_get_drvdata(dai);
|
|
struct sunxi_spdif_dts_info *dts_info = &sunxi_spdif->dts_info;
|
|
struct sunxi_spdif_mem_info *mem_info = &dts_info->mem_info;
|
|
unsigned int reg_temp;
|
|
unsigned int tx_input_mode = 0;
|
|
unsigned int rx_output_mode = 0;
|
|
unsigned int i;
|
|
unsigned int origin_freq_bit = 0, sample_freq_bit = 0;
|
|
|
|
/* two substream should be warking on same samplerate */
|
|
mutex_lock(&sunxi_spdif->mutex);
|
|
if (sunxi_spdif->active > 1) {
|
|
if (params_rate(params) != sunxi_spdif->rate) {
|
|
dev_err(sunxi_spdif->dev, "params_rate[%d] != %d\n",
|
|
params_rate(params), sunxi_spdif->rate);
|
|
mutex_unlock(&sunxi_spdif->mutex);
|
|
return -EINVAL;
|
|
}
|
|
}
|
|
mutex_unlock(&sunxi_spdif->mutex);
|
|
|
|
switch (params_format(params)) {
|
|
case SNDRV_PCM_FORMAT_S16_LE:
|
|
reg_temp = 0;
|
|
tx_input_mode = 1;
|
|
rx_output_mode = 3;
|
|
break;
|
|
case SNDRV_PCM_FORMAT_S20_3LE:
|
|
reg_temp = 1;
|
|
tx_input_mode = 0;
|
|
rx_output_mode = 0;
|
|
break;
|
|
case SNDRV_PCM_FORMAT_S32_LE:
|
|
/* only for the compatible of tinyalsa */
|
|
case SNDRV_PCM_FORMAT_S24_LE:
|
|
reg_temp = 2;
|
|
tx_input_mode = 0;
|
|
rx_output_mode = 0;
|
|
break;
|
|
default:
|
|
dev_err(sunxi_spdif->dev, "params_format[%d] error!\n",
|
|
params_format(params));
|
|
return -EINVAL;
|
|
}
|
|
|
|
for (i = 0; i < ARRAY_SIZE(sample_rate_orig); i++) {
|
|
if (params_rate(params) == sample_rate_orig[i].samplerate) {
|
|
origin_freq_bit = sample_rate_orig[i].rate_bit;
|
|
break;
|
|
}
|
|
}
|
|
|
|
for (i = 0; i < ARRAY_SIZE(sample_rate_freq); i++) {
|
|
if (params_rate(params) == sample_rate_freq[i].samplerate) {
|
|
sample_freq_bit = sample_rate_freq[i].rate_bit;
|
|
sunxi_spdif->rate = sample_rate_freq[i].samplerate;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
|
|
regmap_update_bits(mem_info->regmap, SUNXI_SPDIF_TXCFG,
|
|
(3<<TXCFG_SAMPLE_BIT), (reg_temp<<TXCFG_SAMPLE_BIT));
|
|
|
|
regmap_update_bits(mem_info->regmap, SUNXI_SPDIF_FIFO_CTL,
|
|
(1<<FIFO_CTL_TXIM),
|
|
(tx_input_mode << FIFO_CTL_TXIM));
|
|
|
|
if (params_channels(params) == 1) {
|
|
regmap_update_bits(mem_info->regmap,
|
|
SUNXI_SPDIF_TXCFG, (1 << TXCFG_SINGLE_MOD),
|
|
(1 << TXCFG_SINGLE_MOD));
|
|
} else {
|
|
regmap_update_bits(mem_info->regmap,
|
|
SUNXI_SPDIF_TXCFG, (1 << TXCFG_SINGLE_MOD),
|
|
(0 << TXCFG_SINGLE_MOD));
|
|
}
|
|
|
|
/* samplerate conversion */
|
|
regmap_update_bits(mem_info->regmap, SUNXI_SPDIF_TXCH_STA0,
|
|
(0xF << TXCHSTA0_SAMFREQ),
|
|
(sample_freq_bit << TXCHSTA0_SAMFREQ));
|
|
regmap_update_bits(mem_info->regmap, SUNXI_SPDIF_TXCH_STA1,
|
|
(0xF << TXCHSTA1_ORISAMFREQ),
|
|
(origin_freq_bit << TXCHSTA1_ORISAMFREQ));
|
|
switch (reg_temp) {
|
|
case 0:
|
|
regmap_update_bits(mem_info->regmap,
|
|
SUNXI_SPDIF_TXCH_STA1,
|
|
(0xF << TXCHSTA1_MAXWORDLEN),
|
|
(2 << TXCHSTA1_MAXWORDLEN));
|
|
break;
|
|
case 1:
|
|
regmap_update_bits(mem_info->regmap,
|
|
SUNXI_SPDIF_TXCH_STA1,
|
|
(0xF << TXCHSTA1_MAXWORDLEN),
|
|
(0xC << TXCHSTA1_MAXWORDLEN));
|
|
break;
|
|
case 2:
|
|
regmap_update_bits(mem_info->regmap,
|
|
SUNXI_SPDIF_TXCH_STA1,
|
|
(0xF << TXCHSTA1_MAXWORDLEN),
|
|
(0xB << TXCHSTA1_MAXWORDLEN));
|
|
break;
|
|
default:
|
|
dev_err(sunxi_spdif->dev, "unexpection error\n");
|
|
return -EINVAL;
|
|
}
|
|
} else {
|
|
/*
|
|
* FIXME, not sync as spec says, just test 16bit & 24bit,
|
|
* using 3 working ok
|
|
*/
|
|
regmap_update_bits(mem_info->regmap, SUNXI_SPDIF_FIFO_CTL,
|
|
(0x3 << FIFO_CTL_RXOM),
|
|
(rx_output_mode << FIFO_CTL_RXOM));
|
|
regmap_update_bits(mem_info->regmap, SUNXI_SPDIF_RXCH_STA0,
|
|
(0xF<<RXCHSTA0_SAMFREQ),
|
|
(sample_freq_bit << RXCHSTA0_SAMFREQ));
|
|
regmap_update_bits(mem_info->regmap, SUNXI_SPDIF_RXCH_STA1,
|
|
(0xF<<RXCHSTA1_ORISAMFREQ),
|
|
(origin_freq_bit << RXCHSTA1_ORISAMFREQ));
|
|
|
|
switch (reg_temp) {
|
|
case 0:
|
|
regmap_update_bits(mem_info->regmap,
|
|
SUNXI_SPDIF_RXCH_STA1,
|
|
(0xF << RXCHSTA1_MAXWORDLEN),
|
|
(2 << RXCHSTA1_MAXWORDLEN));
|
|
break;
|
|
case 1:
|
|
regmap_update_bits(mem_info->regmap,
|
|
SUNXI_SPDIF_RXCH_STA1,
|
|
(0xF << RXCHSTA1_MAXWORDLEN),
|
|
(0xC << RXCHSTA1_MAXWORDLEN));
|
|
break;
|
|
case 2:
|
|
regmap_update_bits(mem_info->regmap,
|
|
SUNXI_SPDIF_RXCH_STA1,
|
|
(0xF << RXCHSTA1_MAXWORDLEN),
|
|
(0xB << RXCHSTA1_MAXWORDLEN));
|
|
break;
|
|
default:
|
|
dev_err(sunxi_spdif->dev, "unexpection error\n");
|
|
return -EINVAL;
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int clk_fix_pll_set_mode1(struct sunxi_spdif_info *info,
|
|
unsigned int *freq)
|
|
{
|
|
struct sunxi_spdif_dts_info *dts_info = &info->dts_info;
|
|
struct sunxi_spdif_clk_info *clk_info = &dts_info->clk_info;
|
|
struct clk *clk_parent;
|
|
|
|
switch (clk_info->clk_parent) {
|
|
default:
|
|
case SPDIF_CLK_PLL_X1_FREQ_DOUBLE:
|
|
clk_parent = clk_info->pll_audiox1;
|
|
*freq *= 1;
|
|
break;
|
|
case SPDIF_CLK_PLL_X4_FREQ_DOUBLE:
|
|
clk_parent = clk_info->pll_audiox4;
|
|
*freq *= 4;
|
|
break;
|
|
}
|
|
if (clk_set_rate(clk_info->pll_audiox1, *freq)) {
|
|
dev_err(info->dev, "set pll_audiox1 rate failed\n");
|
|
return -EBUSY;
|
|
}
|
|
if (clk_set_parent(clk_info->clk_module, clk_parent)) {
|
|
dev_err(info->dev, "set parent of clk_module parent failed!\n");
|
|
return -EINVAL;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
#ifdef SUNXI_SPDIF_FREQ_MULTIPLIER
|
|
int clk_fix_pll_set_mode2(struct sunxi_spdif_info *info, unsigned int *freq,
|
|
unsigned int clk_id)
|
|
{
|
|
struct sunxi_spdif_dts_info *dts_info = &info->dts_info;
|
|
struct sunxi_spdif_clk_info *clk_info = &dts_info->clk_info;
|
|
struct clk *clk_parent;
|
|
|
|
if (clk_id == 0) {
|
|
clk_parent = clk_info->pll_audio2div;
|
|
} else if (clk_id == 1) {
|
|
unsigned int actual_freq = 22579200;
|
|
|
|
switch (clk_info->clk_parent) {
|
|
default:
|
|
case SPDIF_CLK_PLL_X1_FREQ_DOUBLE:
|
|
clk_parent = clk_info->pll_audiox1;
|
|
break;
|
|
case SPDIF_CLK_PLL_X4_FREQ_DOUBLE:
|
|
clk_parent = clk_info->pll_audiox4;
|
|
actual_freq *= 4;
|
|
*freq *= 4;
|
|
break;
|
|
}
|
|
if (clk_set_rate(clk_info->pll_audiox1, actual_freq)) {
|
|
dev_err(info->dev, "set pll_audiox1 rate failed\n");
|
|
return -EBUSY;
|
|
}
|
|
}
|
|
if (clk_set_parent(clk_info->clk_module, clk_parent)) {
|
|
dev_err(info->dev, "set parent of clk_module parent failed!\n");
|
|
return -EINVAL;
|
|
}
|
|
#if IS_ENABLED(CONFIG_SND_SUNXI_SPDIF_RX_IEC61937)
|
|
if (clk_set_parent(clk_info->clk_module_rx, clk_info->pll_periph0)) {
|
|
dev_err(info->dev, "set parent of clk_module_rx parent failed!\n");
|
|
return -EINVAL;
|
|
}
|
|
#endif
|
|
|
|
return 0;
|
|
}
|
|
#else
|
|
int clk_fix_pll_set_mode2(struct sunxi_spdif_info *info, unsigned int *freq)
|
|
{
|
|
struct sunxi_spdif_dts_info *dts_info = &info->dts_info;
|
|
struct sunxi_spdif_clk_info *clk_info = &dts_info->clk_info;
|
|
struct clk *clk_parent;
|
|
|
|
if (*freq == 24576000) {
|
|
clk_parent = clk_info->pll_audio2div;
|
|
} else if (*freq == 22579200) {
|
|
switch (clk_info->clk_parent) {
|
|
default:
|
|
case SPDIF_CLK_PLL_X1_FREQ_DOUBLE:
|
|
clk_parent = clk_info->pll_audiox1;
|
|
*freq *= 1;
|
|
break;
|
|
case SPDIF_CLK_PLL_X4_FREQ_DOUBLE:
|
|
clk_parent = clk_info->pll_audiox4;
|
|
*freq *= 4;
|
|
break;
|
|
}
|
|
if (clk_set_rate(clk_info->pll_audiox1, *freq)) {
|
|
dev_err(info->dev, "set pll_audiox1 rate failed\n");
|
|
return -EBUSY;
|
|
}
|
|
}
|
|
if (clk_set_parent(clk_info->clk_module, clk_parent)) {
|
|
dev_err(info->dev, "set parent of clk_module parent failed!\n");
|
|
return -EINVAL;
|
|
}
|
|
#if IS_ENABLED(CONFIG_SND_SUNXI_SPDIF_RX_IEC61937)
|
|
if (clk_set_parent(clk_info->clk_module_rx, clk_info->pll_periph0)) {
|
|
dev_err(info->dev, "set parent of clk_module_rx parent failed!\n");
|
|
return -EINVAL;
|
|
}
|
|
#endif
|
|
|
|
return 0;
|
|
}
|
|
#endif
|
|
|
|
static int sunxi_spdif_dai_set_sysclk(struct snd_soc_dai *dai, int clk_id,
|
|
unsigned int freq, int dir)
|
|
{
|
|
struct sunxi_spdif_info *sunxi_spdif = snd_soc_dai_get_drvdata(dai);
|
|
struct sunxi_spdif_dts_info *dts_info = &sunxi_spdif->dts_info;
|
|
struct sunxi_spdif_clk_info *clk_info = &dts_info->clk_info;
|
|
|
|
mutex_lock(&sunxi_spdif->mutex);
|
|
if (sunxi_spdif->active == 0) {
|
|
dev_info(sunxi_spdif->dev, "active: %u\n", sunxi_spdif->active);
|
|
if (clk_info->pll_num >= 2) {
|
|
#ifdef SUNXI_SPDIF_FREQ_MULTIPLIER
|
|
if (clk_fix_pll_set_mode2(sunxi_spdif, &freq, clk_id)) {
|
|
#else
|
|
if (clk_fix_pll_set_mode2(sunxi_spdif, &freq)) {
|
|
#endif
|
|
mutex_unlock(&sunxi_spdif->mutex);
|
|
return -EINVAL;
|
|
}
|
|
} else if (clk_info->pll_num == 1) {
|
|
if (clk_fix_pll_set_mode1(sunxi_spdif, &freq)) {
|
|
mutex_unlock(&sunxi_spdif->mutex);
|
|
return -EINVAL;
|
|
}
|
|
}
|
|
|
|
if (clk_set_rate(clk_info->clk_module, freq)) {
|
|
dev_err(sunxi_spdif->dev, "Freq : %u not support\n", freq);
|
|
mutex_unlock(&sunxi_spdif->mutex);
|
|
return -EINVAL;
|
|
}
|
|
#if IS_ENABLED(CONFIG_SND_SUNXI_SPDIF_RX_IEC61937)
|
|
if (clk_set_rate(clk_info->clk_module_rx, 200*1000000)) {
|
|
dev_err(sunxi_spdif->dev, "Freq : 200MHz not support\n");
|
|
mutex_unlock(&sunxi_spdif->mutex);
|
|
return -EINVAL;
|
|
}
|
|
#endif
|
|
|
|
}
|
|
sunxi_spdif->active++;
|
|
mutex_unlock(&sunxi_spdif->mutex);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int sunxi_spdif_dai_set_clkdiv(struct snd_soc_dai *dai,
|
|
int clk_id, int clk_div)
|
|
{
|
|
struct sunxi_spdif_info *sunxi_spdif = snd_soc_dai_get_drvdata(dai);
|
|
struct sunxi_spdif_dts_info *dts_info = &sunxi_spdif->dts_info;
|
|
struct sunxi_spdif_mem_info *mem_info = &dts_info->mem_info;
|
|
|
|
mutex_lock(&sunxi_spdif->mutex);
|
|
if (sunxi_spdif->configured == false) {
|
|
switch (clk_id) {
|
|
case 0:
|
|
regmap_update_bits(mem_info->regmap,
|
|
SUNXI_SPDIF_TXCFG,
|
|
(0x1F << TXCFG_CLK_DIV_RATIO),
|
|
((clk_div - 1) << TXCFG_CLK_DIV_RATIO));
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
sunxi_spdif->configured = true;
|
|
mutex_unlock(&sunxi_spdif->mutex);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int sunxi_spdif_dai_startup(struct snd_pcm_substream *substream,
|
|
struct snd_soc_dai *dai)
|
|
{
|
|
struct sunxi_spdif_info *sunxi_spdif = snd_soc_dai_get_drvdata(dai);
|
|
|
|
if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
|
|
snd_soc_dai_set_dma_data(dai, substream,
|
|
&sunxi_spdif->playback_dma_param);
|
|
} else {
|
|
snd_soc_dai_set_dma_data(dai, substream,
|
|
&sunxi_spdif->capture_dma_param);
|
|
#ifdef SUNXI_SPDIF_LOCK_STATE_DETECT
|
|
sunxi_spdif->capture_substream = substream;
|
|
#endif
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static void sunxi_spdif_dai_shutdown(struct snd_pcm_substream *substream,
|
|
struct snd_soc_dai *dai)
|
|
{
|
|
struct sunxi_spdif_info *sunxi_spdif = snd_soc_dai_get_drvdata(dai);
|
|
|
|
#ifdef SUNXI_SPDIF_LOCK_STATE_DETECT
|
|
spin_lock_irq(&sunxi_spdif->lock);
|
|
if (substream->stream == SNDRV_PCM_STREAM_CAPTURE)
|
|
sunxi_spdif->capture_substream = NULL;
|
|
spin_unlock_irq(&sunxi_spdif->lock);
|
|
#endif
|
|
|
|
mutex_lock(&sunxi_spdif->mutex);
|
|
if (sunxi_spdif->active) {
|
|
sunxi_spdif->active--;
|
|
if (sunxi_spdif->active == 0)
|
|
sunxi_spdif->configured = false;
|
|
}
|
|
mutex_unlock(&sunxi_spdif->mutex);
|
|
}
|
|
|
|
static int sunxi_spdif_trigger(struct snd_pcm_substream *substream,
|
|
int cmd, struct snd_soc_dai *dai)
|
|
{
|
|
struct sunxi_spdif_info *sunxi_spdif = snd_soc_dai_get_drvdata(dai);
|
|
struct sunxi_spdif_dts_info *dts_info = &sunxi_spdif->dts_info;
|
|
int ret = 0;
|
|
|
|
switch (cmd) {
|
|
case SNDRV_PCM_TRIGGER_START:
|
|
case SNDRV_PCM_TRIGGER_RESUME:
|
|
case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
|
|
if (dts_info->gpio_cfg.used) {
|
|
gpio_set_value(dts_info->gpio_cfg.gpio,
|
|
dts_info->gpio_cfg.level);
|
|
}
|
|
if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
|
|
sunxi_spdif_txctrl_enable(sunxi_spdif, 1);
|
|
else
|
|
sunxi_spdif_rxctrl_enable(sunxi_spdif, 1);
|
|
break;
|
|
case SNDRV_PCM_TRIGGER_STOP:
|
|
case SNDRV_PCM_TRIGGER_SUSPEND:
|
|
case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
|
|
if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
|
|
sunxi_spdif_txctrl_enable(sunxi_spdif, 0);
|
|
else
|
|
sunxi_spdif_rxctrl_enable(sunxi_spdif, 0);
|
|
if (dts_info->gpio_cfg.used) {
|
|
gpio_set_value(dts_info->gpio_cfg.gpio,
|
|
!dts_info->gpio_cfg.level);
|
|
}
|
|
break;
|
|
default:
|
|
dev_err(sunxi_spdif->dev, "cmd error.\n");
|
|
ret = -EINVAL;
|
|
break;
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
/* Flush FIFO & Interrupt */
|
|
static int sunxi_spdif_prepare(struct snd_pcm_substream *substream,
|
|
struct snd_soc_dai *dai)
|
|
{
|
|
struct sunxi_spdif_info *sunxi_spdif = snd_soc_dai_get_drvdata(dai);
|
|
struct sunxi_spdif_dts_info *dts_info = &sunxi_spdif->dts_info;
|
|
struct sunxi_spdif_mem_info *mem_info = &dts_info->mem_info;
|
|
unsigned int reg_val;
|
|
|
|
/*as you need to clean up TX or RX FIFO , need to turn off GEN bit*/
|
|
regmap_update_bits(mem_info->regmap, SUNXI_SPDIF_CTL,
|
|
(1 << CTL_GEN_EN), (0 << CTL_GEN_EN));
|
|
|
|
if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
|
|
regmap_update_bits(mem_info->regmap, SUNXI_SPDIF_FIFO_CTL,
|
|
(1 << FIFO_CTL_FTX), (1 << FIFO_CTL_FTX));
|
|
regmap_write(mem_info->regmap, SUNXI_SPDIF_TXCNT, 0);
|
|
} else {
|
|
regmap_update_bits(mem_info->regmap, SUNXI_SPDIF_FIFO_CTL,
|
|
(1 << FIFO_CTL_FRX), (1 << FIFO_CTL_FRX));
|
|
regmap_write(mem_info->regmap, SUNXI_SPDIF_RXCNT, 0);
|
|
}
|
|
|
|
/* clear all interrupt status */
|
|
regmap_read(mem_info->regmap, SUNXI_SPDIF_INT_STA, ®_val);
|
|
regmap_write(mem_info->regmap, SUNXI_SPDIF_INT_STA, reg_val);
|
|
|
|
/* need reset */
|
|
regmap_update_bits(mem_info->regmap, SUNXI_SPDIF_CTL,
|
|
(1 << CTL_RESET) | (1 << CTL_GEN_EN),
|
|
(1 << CTL_RESET) | (1 << CTL_GEN_EN));
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int sunxi_spdif_probe(struct snd_soc_dai *dai)
|
|
{
|
|
struct sunxi_spdif_info *sunxi_spdif = snd_soc_dai_get_drvdata(dai);
|
|
struct sunxi_spdif_dts_info *dts_info = &sunxi_spdif->dts_info;
|
|
struct sunxi_spdif_mem_info *mem_info = &dts_info->mem_info;
|
|
|
|
mutex_init(&sunxi_spdif->mutex);
|
|
|
|
/* pcm_new will using the dma_param about the cma and fifo params. */
|
|
snd_soc_dai_init_dma_data(dai, &sunxi_spdif->playback_dma_param,
|
|
&sunxi_spdif->capture_dma_param);
|
|
|
|
sunxi_spdif_init(sunxi_spdif);
|
|
regmap_update_bits(mem_info->regmap, SUNXI_SPDIF_CTL,
|
|
(1 << CTL_GEN_EN), (1 << CTL_GEN_EN));
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int sunxi_spdif_remove(struct snd_soc_dai *dai)
|
|
{
|
|
struct sunxi_spdif_info *sunxi_spdif = snd_soc_dai_get_drvdata(dai);
|
|
|
|
mutex_destroy(&sunxi_spdif->mutex);
|
|
return 0;
|
|
}
|
|
|
|
static int sunxi_spdif_suspend(struct snd_soc_dai *dai)
|
|
{
|
|
struct sunxi_spdif_info *sunxi_spdif = snd_soc_dai_get_drvdata(dai);
|
|
struct sunxi_spdif_dts_info *dts_info = &sunxi_spdif->dts_info;
|
|
struct sunxi_spdif_mem_info *mem_info = &dts_info->mem_info;
|
|
struct sunxi_spdif_clk_info *clk_info = &dts_info->clk_info;
|
|
|
|
regmap_update_bits(mem_info->regmap, SUNXI_SPDIF_CTL,
|
|
(1 << CTL_GEN_EN), (0 << CTL_GEN_EN));
|
|
|
|
#ifdef SPDIF_CLOSE_CLK_STANDBY
|
|
#if IS_ENABLED(CONFIG_SND_SUNXI_SPDIF_RX_IEC61937)
|
|
if ((clk_info->pll_num == 3) && ((clk_info->clk_num > 5))) {
|
|
if (!IS_ERR_OR_NULL(clk_info->pll_periph0))
|
|
clk_disable_unprepare(clk_info->pll_periph0);
|
|
}
|
|
#endif
|
|
if ((clk_info->pll_num >= 2) && ((clk_info->clk_num > 4))) {
|
|
if (!IS_ERR_OR_NULL(clk_info->pll_audio2div))
|
|
clk_disable_unprepare(clk_info->pll_audio2div);
|
|
}
|
|
if ((clk_info->pll_num >= 2) && ((clk_info->clk_num > 3))) {
|
|
if (!IS_ERR_OR_NULL(clk_info->pll_audio2))
|
|
clk_disable_unprepare(clk_info->pll_audio2);
|
|
}
|
|
if (!IS_ERR_OR_NULL(clk_info->pll_audiox4))
|
|
clk_disable_unprepare(clk_info->pll_audiox4);
|
|
if (!IS_ERR_OR_NULL(clk_info->pll_audiox1))
|
|
clk_disable_unprepare(clk_info->pll_audiox1);
|
|
#endif
|
|
if (!IS_ERR_OR_NULL(clk_info->clk_module))
|
|
clk_disable_unprepare(clk_info->clk_module);
|
|
#if IS_ENABLED(CONFIG_SND_SUNXI_SPDIF_RX_IEC61937)
|
|
if (!IS_ERR_OR_NULL(clk_info->clk_module_rx))
|
|
clk_disable_unprepare(clk_info->clk_module_rx);
|
|
#endif
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int sunxi_spdif_resume(struct snd_soc_dai *dai)
|
|
{
|
|
struct sunxi_spdif_info *sunxi_spdif = snd_soc_dai_get_drvdata(dai);
|
|
struct sunxi_spdif_dts_info *dts_info = &sunxi_spdif->dts_info;
|
|
struct sunxi_spdif_mem_info *mem_info = &dts_info->mem_info;
|
|
int ret;
|
|
struct sunxi_spdif_clk_info *clk_info = &dts_info->clk_info;
|
|
|
|
#ifdef SPDIF_CLOSE_CLK_STANDBY
|
|
if (!IS_ERR_OR_NULL(clk_info->pll_audiox1)) {
|
|
ret = clk_prepare_enable(clk_info->pll_audiox1);
|
|
if (ret < 0) {
|
|
dev_err(sunxi_spdif->dev, "pll clk prepare enable error:%d\n", ret);
|
|
goto err_spdif_resume_clk_enable_pll;
|
|
}
|
|
}
|
|
if (!IS_ERR_OR_NULL(clk_info->pll_audiox4)) {
|
|
ret = clk_prepare_enable(clk_info->pll_audiox4);
|
|
if (ret < 0) {
|
|
dev_err(sunxi_spdif->dev, "pllx4 clk prepare enable error:%d\n", ret);
|
|
goto err_spdif_resume_clk_enable_pllx4;
|
|
}
|
|
}
|
|
if ((clk_info->pll_num >= 2) && ((clk_info->clk_num > 3))) {
|
|
if (clk_prepare_enable(clk_info->pll_audio2)) {
|
|
dev_err(sunxi_spdif->dev, "moduleclk enable failed\n");
|
|
ret = -EBUSY;
|
|
goto err_spdif_resume_clk_enable_pll_audio2;
|
|
}
|
|
}
|
|
if ((clk_info->pll_num >= 2) && ((clk_info->clk_num > 4))) {
|
|
if (clk_prepare_enable(clk_info->pll_audio2div)) {
|
|
dev_err(sunxi_spdif->dev, "moduleclk enable failed\n");
|
|
ret = -EBUSY;
|
|
goto err_spdif_resume_clk_enable_pll_audio2div;
|
|
}
|
|
}
|
|
#if IS_ENABLED(CONFIG_SND_SUNXI_SPDIF_RX_IEC61937)
|
|
if ((clk_info->pll_num == 3) && ((clk_info->clk_num > 5))) {
|
|
if (clk_prepare_enable(clk_info->pll_periph0)) {
|
|
dev_err(sunxi_spdif->dev, "pll_periph0 enable failed\n");
|
|
ret = -EBUSY;
|
|
goto err_spdif_resume_clk_enable_pll_periph0;
|
|
}
|
|
}
|
|
#endif
|
|
#endif
|
|
if (!IS_ERR_OR_NULL(clk_info->clk_module)) {
|
|
ret = clk_prepare_enable(clk_info->clk_module);
|
|
if (ret < 0) {
|
|
dev_err(sunxi_spdif->dev, "modlule clk prepare enable error:%d\n", ret);
|
|
goto err_spdif_resume_clk_enable_module;
|
|
}
|
|
}
|
|
#if IS_ENABLED(CONFIG_SND_SUNXI_SPDIF_RX_IEC61937)
|
|
if (!IS_ERR_OR_NULL(clk_info->clk_module_rx)) {
|
|
ret = clk_prepare_enable(clk_info->clk_module_rx);
|
|
if (ret < 0) {
|
|
dev_err(sunxi_spdif->dev, "modlule rx clk prepare enable error:%d\n", ret);
|
|
goto err_spdif_resume_clk_enable_module_rx;
|
|
}
|
|
}
|
|
#endif
|
|
|
|
sunxi_spdif_init(sunxi_spdif);
|
|
regmap_update_bits(mem_info->regmap, SUNXI_SPDIF_CTL,
|
|
(1 << CTL_GEN_EN), (1 << CTL_GEN_EN));
|
|
|
|
return 0;
|
|
|
|
#if IS_ENABLED(CONFIG_SND_SUNXI_SPDIF_RX_IEC61937)
|
|
err_spdif_resume_clk_enable_module_rx:
|
|
if (!IS_ERR_OR_NULL(clk_info->clk_module))
|
|
clk_disable_unprepare(clk_info->clk_module);
|
|
#endif
|
|
err_spdif_resume_clk_enable_module:
|
|
#ifdef SPDIF_CLOSE_CLK_STANDBY
|
|
#if IS_ENABLED(CONFIG_SND_SUNXI_SPDIF_RX_IEC61937)
|
|
if ((clk_info->pll_num == 3) && ((clk_info->clk_num > 5))) {
|
|
if (!IS_ERR_OR_NULL(clk_info->pll_periph0))
|
|
clk_disable_unprepare(clk_info->pll_periph0);
|
|
}
|
|
err_spdif_resume_clk_enable_pll_periph0:
|
|
#endif
|
|
if ((clk_info->pll_num >= 2) && ((clk_info->clk_num > 4))) {
|
|
if (!IS_ERR_OR_NULL(clk_info->pll_audio2div))
|
|
clk_disable_unprepare(clk_info->pll_audio2div);
|
|
}
|
|
err_spdif_resume_clk_enable_pll_audio2div:
|
|
if ((clk_info->pll_num >= 2) && ((clk_info->clk_num > 3))) {
|
|
if (!IS_ERR_OR_NULL(clk_info->pll_audio2))
|
|
clk_disable_unprepare(clk_info->pll_audio2);
|
|
}
|
|
err_spdif_resume_clk_enable_pll_audio2:
|
|
if (!IS_ERR_OR_NULL(clk_info->pll_audiox4))
|
|
clk_disable_unprepare(clk_info->pll_audiox4);
|
|
err_spdif_resume_clk_enable_pllx4:
|
|
if (!IS_ERR_OR_NULL(clk_info->pll_audiox1))
|
|
clk_disable_unprepare(clk_info->pll_audiox1);
|
|
err_spdif_resume_clk_enable_pll:
|
|
#endif
|
|
return ret;
|
|
}
|
|
|
|
#ifdef SUNXI_SPDIF_LOCK_STATE_DETECT
|
|
enum {
|
|
SUNXI_SPDIF_STATE_UNKNOWN = 0,
|
|
SUNXI_SPDIF_STATE_LOCK,
|
|
SUNXI_SPDIF_STATE_UNLOCK,
|
|
};
|
|
|
|
static void sunxi_spdif_detect_lock_state(struct work_struct *work)
|
|
{
|
|
struct sunxi_spdif_info *sunxi_spdif =
|
|
container_of(work, struct sunxi_spdif_info, dw_detect_lock_state.work);
|
|
struct sunxi_spdif_dts_info *dts_info = &sunxi_spdif->dts_info;
|
|
struct sunxi_spdif_mem_info *mem_info = &dts_info->mem_info;
|
|
unsigned int reg_val;
|
|
/* unlock state but lock flag is set */
|
|
static unsigned int count;
|
|
|
|
spin_lock_irq(&sunxi_spdif->lock);
|
|
if (sunxi_spdif->lock_state != SUNXI_SPDIF_STATE_UNLOCK)
|
|
count = 0;
|
|
regmap_read(mem_info->regmap, SUNXI_SPDIF_RXCFG, ®_val);
|
|
pr_debug("[%s] state=%d, rx_cfg=0x%x\n", __func__,
|
|
sunxi_spdif->lock_state, reg_val);
|
|
if (sunxi_spdif->lock_state == SUNXI_SPDIF_STATE_LOCK) {
|
|
struct snd_pcm_substream *substream =
|
|
sunxi_spdif->capture_substream;
|
|
|
|
if (!(reg_val & (1 << RXCFG_LOCK_FLAG))) {
|
|
pr_debug("lock state, but lock flag is 0\n");
|
|
goto unlock;
|
|
}
|
|
|
|
regmap_read(mem_info->regmap, SUNXI_SPDIF_INT, ®_val);
|
|
if ((reg_val & (1 << INT_RXDRQEN))) {
|
|
pr_debug("rx drq already enable\n");
|
|
goto unlock;
|
|
}
|
|
regmap_update_bits(mem_info->regmap, SUNXI_SPDIF_RXCFG,
|
|
(1 << RXCFG_RXEN), (0 << RXCFG_RXEN));
|
|
regmap_update_bits(mem_info->regmap, SUNXI_SPDIF_FIFO_CTL,
|
|
(1 << FIFO_CTL_FRX), (1 << FIFO_CTL_FRX));
|
|
regmap_write(mem_info->regmap, SUNXI_SPDIF_RXCNT, 0);
|
|
regmap_update_bits(mem_info->regmap, SUNXI_SPDIF_INT,
|
|
(1 << INT_RXDRQEN), (1 << INT_RXDRQEN));
|
|
regmap_update_bits(mem_info->regmap, SUNXI_SPDIF_RXCFG,
|
|
(1 << RXCFG_RXEN), (1 << RXCFG_RXEN));
|
|
/* clear all interrupt status */
|
|
regmap_read(mem_info->regmap, SUNXI_SPDIF_INT_STA, ®_val);
|
|
regmap_write(mem_info->regmap, SUNXI_SPDIF_INT_STA, reg_val);
|
|
if (!substream || !substream->runtime ||
|
|
substream->runtime->status->state !=
|
|
SNDRV_PCM_STATE_RUNNING) {
|
|
goto unlock;
|
|
}
|
|
snd_dmaengine_pcm_trigger(substream, SNDRV_PCM_TRIGGER_START);
|
|
} else if (sunxi_spdif->lock_state == SUNXI_SPDIF_STATE_UNLOCK) {
|
|
if (!(reg_val & (1 << RXCFG_LOCK_FLAG)))
|
|
goto unlock;
|
|
pr_debug("unlock state, but lock flag is 1\n");
|
|
count++;
|
|
if (count == 2) {
|
|
pr_debug("unlock state with lock flag, %d\n", count);
|
|
sunxi_spdif->lock_state = SUNXI_SPDIF_STATE_LOCK;
|
|
}
|
|
schedule_delayed_work(&sunxi_spdif->dw_detect_lock_state,
|
|
msecs_to_jiffies(50));
|
|
}
|
|
unlock:
|
|
spin_unlock_irq(&sunxi_spdif->lock);
|
|
}
|
|
|
|
static irqreturn_t sunxi_spdif_interrupt(int irq, void *dev_id)
|
|
{
|
|
struct sunxi_spdif_info *sunxi_spdif = dev_id;
|
|
struct sunxi_spdif_dts_info *dts_info = &sunxi_spdif->dts_info;
|
|
struct sunxi_spdif_mem_info *mem_info = &dts_info->mem_info;
|
|
struct snd_pcm_substream *substream = sunxi_spdif->capture_substream;
|
|
unsigned int intst, rxcfg;
|
|
unsigned long flags;
|
|
|
|
spin_lock_irqsave(&sunxi_spdif->lock, flags);
|
|
regmap_read(mem_info->regmap, SUNXI_SPDIF_INT_STA, &intst);
|
|
regmap_read(mem_info->regmap, SUNXI_SPDIF_RXCFG, &rxcfg);
|
|
/*pr_debug("int status=0x%x, rx config=0x%x\n", intst, rxcfg);*/
|
|
if (!substream || !substream->runtime ||
|
|
substream->runtime->status->state != SNDRV_PCM_STATE_RUNNING)
|
|
goto exit_irq;
|
|
|
|
if (intst & ((1 << INT_STA_RXUNLOCK) | (1 << INT_STA_RXPAR))) {
|
|
struct snd_pcm_runtime *runtime = substream->runtime;
|
|
|
|
sunxi_spdif->lock_state = SUNXI_SPDIF_STATE_UNLOCK;
|
|
regmap_update_bits(mem_info->regmap, SUNXI_SPDIF_INT,
|
|
(1 << INT_RXDRQEN), (0 << INT_RXDRQEN));
|
|
snd_dmaengine_pcm_trigger(substream, SNDRV_PCM_TRIGGER_STOP);
|
|
/* reset hw_ptr,appl_ptr if access is RW_INTERLEAVED */
|
|
if (runtime->access == SNDRV_PCM_ACCESS_RW_INTERLEAVED) {
|
|
runtime->hw_ptr_base = 0;
|
|
runtime->status->hw_ptr = 0;
|
|
runtime->hw_ptr_wrap = 0;
|
|
runtime->hw_ptr_interrupt = runtime->status->hw_ptr -
|
|
runtime->status->hw_ptr % runtime->period_size;
|
|
runtime->silence_start = runtime->status->hw_ptr;
|
|
runtime->silence_filled = 0;
|
|
runtime->control->appl_ptr = runtime->status->hw_ptr;
|
|
}
|
|
memset(runtime->dma_area, 0x00,
|
|
runtime->buffer_size*runtime->frame_bits/8);
|
|
}
|
|
if ((intst & (1 << INT_STA_RXLOCK)))
|
|
sunxi_spdif->lock_state = SUNXI_SPDIF_STATE_LOCK;
|
|
schedule_delayed_work(&sunxi_spdif->dw_detect_lock_state,
|
|
msecs_to_jiffies(50));
|
|
exit_irq:
|
|
regmap_write(mem_info->regmap, SUNXI_SPDIF_INT_STA, intst);
|
|
spin_unlock_irqrestore(&sunxi_spdif->lock, flags);
|
|
return IRQ_HANDLED;
|
|
}
|
|
#endif
|
|
|
|
#define SUNXI_SPDIF_RATES (SNDRV_PCM_RATE_8000_192000 | SNDRV_PCM_RATE_KNOT)
|
|
|
|
static struct snd_soc_dai_ops sunxi_spdif_dai_ops = {
|
|
.hw_params = sunxi_spdif_dai_hw_params,
|
|
.set_clkdiv = sunxi_spdif_dai_set_clkdiv,
|
|
.set_sysclk = sunxi_spdif_dai_set_sysclk,
|
|
.startup = sunxi_spdif_dai_startup,
|
|
.shutdown = sunxi_spdif_dai_shutdown,
|
|
.trigger = sunxi_spdif_trigger,
|
|
.prepare = sunxi_spdif_prepare,
|
|
};
|
|
|
|
static struct snd_soc_dai_driver sunxi_spdif_dai = {
|
|
.probe = sunxi_spdif_probe,
|
|
.suspend = sunxi_spdif_suspend,
|
|
.resume = sunxi_spdif_resume,
|
|
.remove = sunxi_spdif_remove,
|
|
.playback = {
|
|
.channels_min = 1,
|
|
.channels_max = 2,
|
|
.rates = SUNXI_SPDIF_RATES,
|
|
.formats = SNDRV_PCM_FMTBIT_S16_LE
|
|
| SNDRV_PCM_FMTBIT_S24_LE
|
|
| SNDRV_PCM_FMTBIT_S32_LE,
|
|
},
|
|
.capture = {
|
|
.channels_min = 2,
|
|
.channels_max = 2,
|
|
.rates = SUNXI_SPDIF_RATES,
|
|
.formats = SNDRV_PCM_FMTBIT_S16_LE
|
|
| SNDRV_PCM_FMTBIT_S24_LE
|
|
| SNDRV_PCM_FMTBIT_S32_LE,
|
|
},
|
|
.ops = &sunxi_spdif_dai_ops,
|
|
};
|
|
|
|
/*****************************************************************************/
|
|
#if IS_ENABLED(CONFIG_SND_SUNXI_SPDIF_RX_IEC61937)
|
|
static int sunxi_spdif_get_params_info(struct sunxi_spdif_info *sunxi_spdif)
|
|
{
|
|
struct sunxi_spdif_dts_info *dts_info = &sunxi_spdif->dts_info;
|
|
struct sunxi_spdif_mem_info *mem_info = &dts_info->mem_info;
|
|
struct sunxi_spdif_rx_info *rx_info = &sunxi_spdif->rx_info;
|
|
int reg_val;
|
|
|
|
regmap_read(mem_info->regmap, SUNXI_SPDIF_RXCH_STA0, ®_val);
|
|
rx_info->rx_params.freq = (reg_val & (0xF << RXCHSTA0_SAMFREQ));
|
|
rx_info->rx_params.channels = (reg_val & (0xF << RXCHSTA0_CHNUM));
|
|
|
|
regmap_read(mem_info->regmap, SUNXI_SPDIF_RXCH_STA1, ®_val);
|
|
rx_info->rx_params.orig_freq = (reg_val & (0xF << RXCHSTA1_ORISAMFREQ));
|
|
rx_info->rx_params.bits = (reg_val & (0x7 << RXCHSTA1_SAMWORDLEN));
|
|
|
|
regmap_read(mem_info->regmap, SUNXI_SPDIF_EXP_INFO1, ®_val);
|
|
rx_info->rx_params.refreq = (reg_val & (0xFFFF << SAMPLE_RATE_VAL));
|
|
|
|
switch (rx_info->rx_params.freq) {
|
|
case 0:
|
|
rx_info->rx_params.freq = 44100;
|
|
break;
|
|
case 2:
|
|
rx_info->rx_params.freq = 48000;
|
|
break;
|
|
case 3:
|
|
rx_info->rx_params.freq = 32000;
|
|
break;
|
|
case 4:
|
|
rx_info->rx_params.freq = 22050;
|
|
break;
|
|
case 6:
|
|
rx_info->rx_params.freq = 24000;
|
|
break;
|
|
case 9:
|
|
rx_info->rx_params.freq = 768000;
|
|
break;
|
|
case 10:
|
|
rx_info->rx_params.freq = 96000;
|
|
break;
|
|
case 12:
|
|
rx_info->rx_params.freq = 176400;
|
|
break;
|
|
case 14:
|
|
rx_info->rx_params.freq = 192000;
|
|
break;
|
|
default:
|
|
rx_info->rx_params.freq = 0;
|
|
}
|
|
|
|
switch (rx_info->rx_params.orig_freq) {
|
|
case 1:
|
|
rx_info->rx_params.orig_freq = 192000;
|
|
break;
|
|
case 2:
|
|
rx_info->rx_params.orig_freq = 12000;
|
|
break;
|
|
case 3:
|
|
rx_info->rx_params.orig_freq = 176400;
|
|
break;
|
|
case 5:
|
|
rx_info->rx_params.orig_freq = 96000;
|
|
break;
|
|
case 6:
|
|
rx_info->rx_params.orig_freq = 8000;
|
|
break;
|
|
case 7:
|
|
rx_info->rx_params.orig_freq = 88200;
|
|
break;
|
|
case 8:
|
|
rx_info->rx_params.orig_freq = 16000;
|
|
break;
|
|
case 9:
|
|
rx_info->rx_params.orig_freq = 24000;
|
|
break;
|
|
case 10:
|
|
rx_info->rx_params.orig_freq = 11250;
|
|
break;
|
|
case 11:
|
|
rx_info->rx_params.orig_freq = 22050;
|
|
break;
|
|
case 12:
|
|
rx_info->rx_params.orig_freq = 32000;
|
|
break;
|
|
case 13:
|
|
rx_info->rx_params.orig_freq = 48000;
|
|
break;
|
|
case 15:
|
|
rx_info->rx_params.orig_freq = 44100;
|
|
break;
|
|
default:
|
|
rx_info->rx_params.orig_freq = 0;
|
|
}
|
|
|
|
#if 0
|
|
/* 200MHZ - Sysclk */
|
|
if (rx_info->rx_params.refreq > 9065 && rx_info->rx_params.freq < 9075) {
|
|
rx_info->rx_params.orig_freq = 22050;
|
|
} else if (rx_info->rx_params.refreq > 8328 && rx_info->rx_params.freq < 8338) {
|
|
rx_info->rx_params.orig_freq = 24000;
|
|
} else if (rx_info->rx_params.refreq > 6245 && rx_info->rx_params.freq < 6255) {
|
|
rx_info->rx_params.orig_freq = 32000;
|
|
} else if (rx_info->rx_params.refreq > 4530 && rx_info->rx_params.freq < 4540) {
|
|
rx_info->rx_params.orig_freq = 44100;
|
|
} else if (rx_info->rx_params.refreq > 4161 && rx_info->rx_params.freq < 4171) {
|
|
rx_info->rx_params.orig_freq = 48000;
|
|
} else if (rx_info->rx_params.refreq > 2078 && rx_info->rx_params.freq < 2088) {
|
|
rx_info->rx_params.orig_freq = 96000;
|
|
} else if (rx_info->rx_params.refreq > 1128 && rx_info->rx_params.freq < 1138) {
|
|
rx_info->rx_params.orig_freq = 176400;
|
|
} else if (rx_info->rx_params.refreq > 1036 && rx_info->rx_params.freq < 1046) {
|
|
rx_info->rx_params.orig_freq = 192000;
|
|
} else {
|
|
rx_info->rx_params.orig_freq = 0;
|
|
}
|
|
#endif
|
|
/* 196.608MHZ - Sysclk */
|
|
if (rx_info->rx_params.refreq > 8911 && rx_info->rx_params.freq < 8921) {
|
|
rx_info->rx_params.orig_freq = 22050;
|
|
} else if (rx_info->rx_params.refreq > 8187 && rx_info->rx_params.freq < 8197) {
|
|
rx_info->rx_params.orig_freq = 24000;
|
|
} else if (rx_info->rx_params.refreq > 6139 && rx_info->rx_params.freq < 6149) {
|
|
rx_info->rx_params.orig_freq = 32000;
|
|
} else if (rx_info->rx_params.refreq > 4453 && rx_info->rx_params.freq < 4463) {
|
|
rx_info->rx_params.orig_freq = 44100;
|
|
} else if (rx_info->rx_params.refreq > 4091 && rx_info->rx_params.freq < 4101) {
|
|
rx_info->rx_params.orig_freq = 48000;
|
|
} else if (rx_info->rx_params.refreq > 2043 && rx_info->rx_params.freq < 2053) {
|
|
rx_info->rx_params.orig_freq = 96000;
|
|
} else if (rx_info->rx_params.refreq > 1109 && rx_info->rx_params.freq < 1119) {
|
|
rx_info->rx_params.orig_freq = 176400;
|
|
} else if (rx_info->rx_params.refreq > 1019 && rx_info->rx_params.freq < 1029) {
|
|
rx_info->rx_params.orig_freq = 192000;
|
|
} else {
|
|
rx_info->rx_params.orig_freq = 0;
|
|
}
|
|
|
|
return 0;
|
|
};
|
|
|
|
static ssize_t spdif_rx_show_bits(struct device *dev,
|
|
struct device_attribute *attr, char *buf)
|
|
{
|
|
struct sunxi_spdif_info *sunxi_spdif = dev_get_drvdata(dev);
|
|
struct sunxi_spdif_rx_info *rx_info = &sunxi_spdif->rx_info;
|
|
int count = 0;
|
|
|
|
sunxi_spdif_get_params_info(sunxi_spdif);
|
|
count += sprintf(buf, "%d\n", rx_info->rx_params.bits);
|
|
|
|
return count;
|
|
}
|
|
|
|
static ssize_t spdif_rx_show_orig_freq(struct device *dev,
|
|
struct device_attribute *attr, char *buf)
|
|
{
|
|
struct sunxi_spdif_info *sunxi_spdif = dev_get_drvdata(dev);
|
|
struct sunxi_spdif_rx_info *rx_info = &sunxi_spdif->rx_info;
|
|
int count = 0;
|
|
|
|
sunxi_spdif_get_params_info(sunxi_spdif);
|
|
count += sprintf(buf, "%d\n", rx_info->rx_params.orig_freq);
|
|
|
|
return count;
|
|
}
|
|
|
|
static ssize_t spdif_rx_show_channels(struct device *dev,
|
|
struct device_attribute *attr, char *buf)
|
|
{
|
|
struct sunxi_spdif_info *sunxi_spdif = dev_get_drvdata(dev);
|
|
struct sunxi_spdif_rx_info *rx_info = &sunxi_spdif->rx_info;
|
|
int count = 0;
|
|
|
|
sunxi_spdif_get_params_info(sunxi_spdif);
|
|
count += sprintf(buf, "%d\n", (rx_info->rx_params.channels + 1));
|
|
|
|
return count;
|
|
}
|
|
|
|
static ssize_t spdif_rx_show_freq(struct device *dev,
|
|
struct device_attribute *attr, char *buf)
|
|
{
|
|
struct sunxi_spdif_info *sunxi_spdif = dev_get_drvdata(dev);
|
|
struct sunxi_spdif_rx_info *rx_info = &sunxi_spdif->rx_info;
|
|
int count = 0;
|
|
|
|
sunxi_spdif_get_params_info(sunxi_spdif);
|
|
count += sprintf(buf, "%d\n", rx_info->rx_params.freq);
|
|
|
|
return count;
|
|
}
|
|
|
|
static DEVICE_ATTR(spdif_rx_bits, 0444, spdif_rx_show_bits, NULL);
|
|
static DEVICE_ATTR(spdif_rx_orig_freq, 0444, spdif_rx_show_orig_freq, NULL);
|
|
static DEVICE_ATTR(spdif_rx_channels, 0444, spdif_rx_show_channels, NULL);
|
|
static DEVICE_ATTR(spdif_rx_freq, 0444, spdif_rx_show_freq, NULL);
|
|
#endif
|
|
|
|
static int sunxi_spdif_component_probe(struct snd_soc_component *component)
|
|
{
|
|
#if IS_ENABLED(CONFIG_SND_SUNXI_SPDIF_RX_IEC61937)
|
|
/* To get the SPDIF RX Params */
|
|
device_create_file(component->dev, &dev_attr_spdif_rx_freq);
|
|
device_create_file(component->dev, &dev_attr_spdif_rx_channels);
|
|
device_create_file(component->dev, &dev_attr_spdif_rx_bits);
|
|
device_create_file(component->dev, &dev_attr_spdif_rx_orig_freq);
|
|
|
|
#endif
|
|
|
|
return 0;
|
|
}
|
|
|
|
static const struct snd_soc_component_driver sunxi_spdif_component = {
|
|
.name = DRV_NAME,
|
|
.probe = sunxi_spdif_component_probe,
|
|
.controls = sunxi_spdif_controls,
|
|
.num_controls = ARRAY_SIZE(sunxi_spdif_controls),
|
|
};
|
|
|
|
/*****************************************************************************/
|
|
|
|
static const struct regmap_config sunxi_spdif_regmap_config = {
|
|
.reg_bits = 32,
|
|
.reg_stride = 4,
|
|
.val_bits = 32,
|
|
.max_register = SUNXI_SPDIF_REG_MAX,
|
|
.cache_type = REGCACHE_NONE,
|
|
};
|
|
|
|
static int sunxi_spdif_dev_probe(struct platform_device *pdev)
|
|
{
|
|
struct resource res, *memregion;
|
|
struct device_node *node = pdev->dev.of_node;
|
|
struct sunxi_spdif_info *sunxi_spdif = NULL;
|
|
struct sunxi_spdif_dts_info *dts_info = NULL;
|
|
struct sunxi_spdif_mem_info *mem_info = NULL;
|
|
struct sunxi_spdif_clk_info *clk_info = NULL;
|
|
struct sunxi_spdif_pinctl_info *pin_info = NULL;
|
|
struct gpio_config config;
|
|
unsigned int temp_val = 0;
|
|
int ret;
|
|
|
|
sunxi_spdif = devm_kzalloc(&pdev->dev,
|
|
sizeof(struct sunxi_spdif_info), GFP_KERNEL);
|
|
if (IS_ERR_OR_NULL(sunxi_spdif)) {
|
|
ret = -ENOMEM;
|
|
goto err_devm_malloc_spdif;
|
|
}
|
|
dev_set_drvdata(&pdev->dev, sunxi_spdif);
|
|
sunxi_spdif->dev = &pdev->dev;
|
|
sunxi_spdif->dai = sunxi_spdif_dai;
|
|
sunxi_spdif->dai.name = dev_name(&pdev->dev);
|
|
dts_info = &sunxi_spdif->dts_info;
|
|
mem_info = &dts_info->mem_info;
|
|
clk_info = &dts_info->clk_info;
|
|
pin_info = &dts_info->pin_info;
|
|
|
|
ret = of_address_to_resource(node, 0, &res);
|
|
if (ret) {
|
|
dev_err(&pdev->dev, "Can't parse device node resource\n");
|
|
ret = -ENODEV;
|
|
goto err_of_get_addr_resource;
|
|
}
|
|
|
|
memregion = devm_request_mem_region(&pdev->dev, res.start,
|
|
resource_size(&res), DRV_NAME);
|
|
if (memregion == NULL) {
|
|
dev_err(&pdev->dev, "Memory region already claimed\n");
|
|
ret = -EBUSY;
|
|
goto err_devm_mem_region;
|
|
}
|
|
|
|
mem_info->membase = devm_ioremap(&pdev->dev, res.start, resource_size(&res));
|
|
if (IS_ERR_OR_NULL(mem_info->membase)) {
|
|
dev_err(&pdev->dev, "Can't remap sunxi spdif registers\n");
|
|
ret = -EINVAL;
|
|
goto err_devm_ioremap;
|
|
}
|
|
|
|
mem_info->regmap = devm_regmap_init_mmio(&pdev->dev,
|
|
mem_info->membase, &sunxi_spdif_regmap_config);
|
|
if (IS_ERR_OR_NULL(mem_info->regmap)) {
|
|
dev_err(&pdev->dev, "regmap sunxi spdif membase failed\n");
|
|
ret = PTR_ERR(mem_info->regmap);
|
|
goto err_devm_regmap;
|
|
}
|
|
|
|
ret = of_property_read_u32(node, "pll_num", (u32 *)&clk_info->pll_num);
|
|
if (ret != 0) {
|
|
dev_warn(&pdev->dev, "pll_num config missing or invalid.\n");
|
|
clk_info->pll_num = 1;
|
|
}
|
|
ret = of_property_read_u32(node, "clk_num", (u32 *)&clk_info->clk_num);
|
|
if (ret != 0) {
|
|
dev_warn(&pdev->dev, "clk_num config missing or invalid.\n");
|
|
clk_info->clk_num = 3;
|
|
}
|
|
ret = of_property_read_u32(node, "clk_parent", (u32 *)&clk_info->clk_parent);
|
|
if (ret != 0) {
|
|
dev_warn(&pdev->dev, "clk_parent config missing or invalid.\n");
|
|
clk_info->clk_parent = SPDIF_CLK_PLL_X1_FREQ_DOUBLE;
|
|
}
|
|
clk_info->pll_audiox1 = of_clk_get(node, 0);
|
|
if (IS_ERR_OR_NULL(clk_info->pll_audiox1)) {
|
|
dev_err(&pdev->dev, "Can't get pll_audo clk clocks!\n");
|
|
ret = PTR_ERR(clk_info->pll_audiox1);
|
|
goto err_of_get_pll_audiox1;
|
|
}
|
|
|
|
clk_info->pll_audiox4 = of_clk_get(node, 1);
|
|
if (IS_ERR_OR_NULL(clk_info->pll_audiox4)) {
|
|
dev_err(&pdev->dev, "Can't get pll_audiox4 clk clocks!\n");
|
|
ret = PTR_ERR(clk_info->pll_audiox4);
|
|
goto err_of_get_pll_audiox4;
|
|
}
|
|
|
|
clk_info->clk_module = of_clk_get(node, 2);
|
|
if (IS_ERR(clk_info->clk_module)) {
|
|
dev_err(&pdev->dev, "Can't get spdif clocks\n");
|
|
ret = PTR_ERR(clk_info->clk_module);
|
|
goto err_of_get_clk_module;
|
|
}
|
|
|
|
if ((clk_info->pll_num >= 2) && ((clk_info->clk_num > 3))) {
|
|
clk_info->pll_audio2 = of_clk_get(node, 3);
|
|
if (IS_ERR_OR_NULL(clk_info->pll_audio2)) {
|
|
dev_err(&pdev->dev, "pll_audio2 get failed\n");
|
|
ret = -EINVAL;
|
|
goto err_of_get_pll_audio2;
|
|
}
|
|
}
|
|
if ((clk_info->pll_num >= 2) && ((clk_info->clk_num > 4))) {
|
|
clk_info->pll_audio2div = of_clk_get(node, 4);
|
|
if (IS_ERR_OR_NULL(clk_info->pll_audio2div)) {
|
|
dev_err(&pdev->dev, "pll_audio2div get failed\n");
|
|
ret = -EINVAL;
|
|
goto err_of_get_pll_audio2div;
|
|
}
|
|
}
|
|
|
|
#if IS_ENABLED(CONFIG_SND_SUNXI_SPDIF_RX_IEC61937)
|
|
if ((clk_info->pll_num == 3) && ((clk_info->clk_num > 5))) {
|
|
clk_info->pll_periph0 = of_clk_get(node, 5);
|
|
if (IS_ERR_OR_NULL(clk_info->pll_periph0)) {
|
|
dev_err(&pdev->dev, "pll_periph0 get failed\n");
|
|
ret = -EINVAL;
|
|
goto err_of_get_pll_periph0;
|
|
}
|
|
}
|
|
if ((clk_info->pll_num == 3) && ((clk_info->clk_num > 6))) {
|
|
clk_info->clk_module_rx = of_clk_get(node, 6);
|
|
if (IS_ERR(clk_info->clk_module_rx)) {
|
|
dev_err(&pdev->dev, "Can't get spdif rx clocks\n");
|
|
ret = -EINVAL;
|
|
goto err_of_get_clk_module_rx;
|
|
}
|
|
}
|
|
#endif
|
|
|
|
if (clk_prepare_enable(clk_info->pll_audiox1)) {
|
|
dev_err(&pdev->dev, "pll_audiox1 enable failed\n");
|
|
ret = -EBUSY;
|
|
goto err_clk_enable_pll;
|
|
}
|
|
if (clk_prepare_enable(clk_info->pll_audiox4)) {
|
|
dev_err(&pdev->dev, "pll_audiox4 enable failed\n");
|
|
ret = -EBUSY;
|
|
goto err_clk_enable_pllx4;
|
|
}
|
|
if (clk_prepare_enable(clk_info->clk_module)) {
|
|
dev_err(&pdev->dev, "moduleclk enable failed\n");
|
|
ret = -EBUSY;
|
|
goto err_clk_enable_module;
|
|
}
|
|
if ((clk_info->pll_num >= 2) && ((clk_info->clk_num > 3))) {
|
|
if (clk_prepare_enable(clk_info->pll_audio2)) {
|
|
dev_err(&pdev->dev, "pll_audio2 enable failed\n");
|
|
ret = -EBUSY;
|
|
goto err_clk_enable_pll_audio2;
|
|
}
|
|
}
|
|
if ((clk_info->pll_num >= 2) && ((clk_info->clk_num > 4))) {
|
|
if (clk_prepare_enable(clk_info->pll_audio2div)) {
|
|
dev_err(&pdev->dev, "pll_audio2div enable failed\n");
|
|
ret = -EBUSY;
|
|
goto err_clk_enable_pll_audio2div;
|
|
}
|
|
}
|
|
|
|
#if IS_ENABLED(CONFIG_SND_SUNXI_SPDIF_RX_IEC61937)
|
|
if ((clk_info->pll_num == 3) && ((clk_info->clk_num > 5))) {
|
|
if (clk_prepare_enable(clk_info->pll_periph0)) {
|
|
dev_err(&pdev->dev, "pll_periph0 enable failed\n");
|
|
ret = -EBUSY;
|
|
goto err_clk_enable_pll_periph0;
|
|
}
|
|
}
|
|
|
|
if ((clk_info->pll_num == 3) && ((clk_info->clk_num > 6))) {
|
|
if (clk_prepare_enable(clk_info->clk_module_rx)) {
|
|
dev_err(&pdev->dev, "module_rx clk enable failed\n");
|
|
ret = -EBUSY;
|
|
goto err_clk_enable_clk_module_rx;
|
|
}
|
|
}
|
|
#endif
|
|
|
|
ret = of_property_read_u32(node, "playback_cma", &temp_val);
|
|
if (ret < 0) {
|
|
dev_warn(&pdev->dev, "playback cma kbytes config missing or invalid.\n");
|
|
dts_info->playback_cma = SUNXI_AUDIO_CMA_MAX_KBYTES;
|
|
} else {
|
|
if (temp_val > SUNXI_AUDIO_CMA_MAX_KBYTES)
|
|
temp_val = SUNXI_AUDIO_CMA_MAX_KBYTES;
|
|
else if (temp_val < SUNXI_AUDIO_CMA_MIN_KBYTES)
|
|
temp_val = SUNXI_AUDIO_CMA_MIN_KBYTES;
|
|
dts_info->playback_cma = temp_val;
|
|
}
|
|
|
|
ret = of_property_read_u32(node, "capture_cma", &temp_val);
|
|
if (ret < 0) {
|
|
dev_warn(&pdev->dev, "capture cma kbytes config missing or invalid.\n");
|
|
dts_info->capture_cma = SUNXI_AUDIO_CMA_MAX_KBYTES;
|
|
} else {
|
|
if (temp_val > SUNXI_AUDIO_CMA_MAX_KBYTES)
|
|
temp_val = SUNXI_AUDIO_CMA_MAX_KBYTES;
|
|
else if (temp_val < SUNXI_AUDIO_CMA_MIN_KBYTES)
|
|
temp_val = SUNXI_AUDIO_CMA_MIN_KBYTES;
|
|
dts_info->capture_cma = temp_val;
|
|
}
|
|
|
|
dts_info->gpio_cfg.gpio = of_get_named_gpio_flags(node, "gpio-spdif", 0,
|
|
(enum of_gpio_flags *)&config);
|
|
if (!gpio_is_valid(dts_info->gpio_cfg.gpio)) {
|
|
dev_err(&pdev->dev, "failed get gpio-spdif gpio from dts, gpio:%d\n",
|
|
dts_info->gpio_cfg.gpio);
|
|
dts_info->gpio_cfg.used = 0;
|
|
} else {
|
|
dts_info->gpio_cfg.level = of_property_read_bool(node, "gpio-level");
|
|
dev_info(&pdev->dev, "get gpio-level = %d.\n",
|
|
dts_info->gpio_cfg.level);
|
|
|
|
ret = devm_gpio_request(&pdev->dev, dts_info->gpio_cfg.gpio, "SPDIF");
|
|
if (ret < 0) {
|
|
dev_err(&pdev->dev, "failed to request gpio-spdif gpio\n");
|
|
goto err_devm_gpio_request;
|
|
} else {
|
|
dts_info->gpio_cfg.used = 1;
|
|
gpio_direction_output(dts_info->gpio_cfg.gpio,
|
|
!dts_info->gpio_cfg.level);
|
|
}
|
|
}
|
|
|
|
#ifdef SUNXI_SPDIF_LOCK_STATE_DETECT
|
|
spin_lock_init(&sunxi_spdif->lock);
|
|
sunxi_spdif->irq_num = platform_get_irq(pdev, 0);
|
|
if (sunxi_spdif->irq_num == 0) {
|
|
dev_err(&pdev->dev, "failed to get irq\n");
|
|
goto err_get_irq_num;
|
|
}
|
|
|
|
regmap_update_bits(mem_info->regmap, SUNXI_SPDIF_INT,
|
|
(1 << INT_RXUNLOCKEN)|(1 << INT_RXLOCKEN)|(1 << INT_RXPAREN),
|
|
(1 << INT_RXUNLOCKEN)|(1 << INT_RXLOCKEN)|(1 << INT_RXPAREN));
|
|
|
|
INIT_DELAYED_WORK(&sunxi_spdif->dw_detect_lock_state,
|
|
sunxi_spdif_detect_lock_state);
|
|
ret = devm_request_irq(&pdev->dev, sunxi_spdif->irq_num,
|
|
sunxi_spdif_interrupt, 0, "spdif irq", sunxi_spdif);
|
|
if (ret != 0) {
|
|
dev_err(&pdev->dev, "failed to request irq\n");
|
|
goto err_request_irq;
|
|
}
|
|
#endif
|
|
|
|
sunxi_spdif->playback_dma_param.dma_addr = res.start + SUNXI_SPDIF_TXFIFO;
|
|
sunxi_spdif->playback_dma_param.dma_drq_type_num = DRQDST_SPDIFTX;
|
|
sunxi_spdif->playback_dma_param.dst_maxburst = 8;
|
|
sunxi_spdif->playback_dma_param.src_maxburst = 8;
|
|
sunxi_spdif->playback_dma_param.cma_kbytes = dts_info->playback_cma;
|
|
sunxi_spdif->playback_dma_param.fifo_size = SPDIF_TX_FIFO_SIZE;
|
|
|
|
sunxi_spdif->capture_dma_param.dma_addr = res.start + SUNXI_SPDIF_RXFIFO;
|
|
sunxi_spdif->capture_dma_param.dma_drq_type_num = DRQSRC_SPDIFRX;
|
|
sunxi_spdif->capture_dma_param.src_maxburst = 8;
|
|
sunxi_spdif->capture_dma_param.dst_maxburst = 8;
|
|
sunxi_spdif->capture_dma_param.cma_kbytes = dts_info->capture_cma;
|
|
sunxi_spdif->capture_dma_param.fifo_size = SPDIF_RX_FIFO_SIZE;
|
|
|
|
ret = snd_soc_register_component(&pdev->dev, &sunxi_spdif_component,
|
|
&sunxi_spdif->dai, 1);
|
|
if (ret) {
|
|
dev_err(&pdev->dev, "Could not register DAI: %d\n", ret);
|
|
ret = -ENOMEM;
|
|
goto err_snd_register_component;
|
|
}
|
|
|
|
ret = asoc_dma_platform_register(&pdev->dev, 0);
|
|
if (ret) {
|
|
dev_err(&pdev->dev, "Could not register PCM: %d\n", ret);
|
|
ret = -ENOMEM;
|
|
goto err_register_platform;
|
|
}
|
|
#ifdef CONFIG_SND_SUNXI_SPDIF_DEBUG
|
|
ret = sysfs_create_group(&pdev->dev.kobj, &spdif_debug_attr_group);
|
|
if (ret) {
|
|
dev_err(&pdev->dev, "failed to create attr group\n");
|
|
goto err_sysfs_create_debug;
|
|
}
|
|
#endif
|
|
|
|
return 0;
|
|
#ifdef CONFIG_SND_SUNXI_SPDIF_DEBUG
|
|
err_sysfs_create_debug:
|
|
#endif
|
|
err_register_platform:
|
|
snd_soc_unregister_component(&pdev->dev);
|
|
err_snd_register_component:
|
|
#ifdef SUNXI_SPDIF_LOCK_STATE_DETECT
|
|
free_irq(sunxi_spdif->irq_num, sunxi_spdif);
|
|
err_request_irq:
|
|
cancel_delayed_work_sync(&sunxi_spdif->dw_detect_lock_state);
|
|
err_get_irq_num:
|
|
#endif
|
|
if (gpio_is_valid(dts_info->gpio_cfg.gpio))
|
|
devm_gpio_free(&pdev->dev, dts_info->gpio_cfg.gpio);
|
|
err_devm_gpio_request:
|
|
#if IS_ENABLED(CONFIG_SND_SUNXI_SPDIF_RX_IEC61937)
|
|
if ((clk_info->pll_num == 3) && ((clk_info->clk_num > 6))) {
|
|
if (!IS_ERR_OR_NULL(clk_info->clk_module_rx))
|
|
clk_disable_unprepare(clk_info->clk_module_rx);
|
|
}
|
|
err_clk_enable_clk_module_rx:
|
|
if ((clk_info->pll_num == 3) && ((clk_info->clk_num > 5))) {
|
|
if (!IS_ERR_OR_NULL(clk_info->pll_periph0))
|
|
clk_disable_unprepare(clk_info->pll_periph0);
|
|
}
|
|
err_clk_enable_pll_periph0:
|
|
#endif
|
|
if ((clk_info->pll_num >= 2) && ((clk_info->clk_num > 4))) {
|
|
if (!IS_ERR_OR_NULL(clk_info->pll_audio2div))
|
|
clk_disable_unprepare(clk_info->pll_audio2div);
|
|
}
|
|
err_clk_enable_pll_audio2div:
|
|
if ((clk_info->pll_num >= 2) && ((clk_info->clk_num > 3))) {
|
|
if (!IS_ERR_OR_NULL(clk_info->pll_audio2))
|
|
clk_disable_unprepare(clk_info->pll_audio2);
|
|
}
|
|
err_clk_enable_pll_audio2:
|
|
if (!IS_ERR_OR_NULL(clk_info->clk_module))
|
|
clk_disable_unprepare(clk_info->clk_module);
|
|
err_clk_enable_module:
|
|
if (!IS_ERR_OR_NULL(clk_info->pll_audiox4))
|
|
clk_disable_unprepare(clk_info->pll_audiox4);
|
|
err_clk_enable_pllx4:
|
|
if (!IS_ERR_OR_NULL(clk_info->pll_audiox1))
|
|
clk_disable_unprepare(clk_info->pll_audiox1);
|
|
err_clk_enable_pll:
|
|
#if IS_ENABLED(CONFIG_SND_SUNXI_SPDIF_RX_IEC61937)
|
|
if ((clk_info->pll_num == 3) && ((clk_info->clk_num > 6))) {
|
|
if (!IS_ERR_OR_NULL(clk_info->clk_module_rx))
|
|
clk_put(clk_info->clk_module_rx);
|
|
}
|
|
err_of_get_clk_module_rx:
|
|
if ((clk_info->pll_num == 3) && ((clk_info->clk_num > 5))) {
|
|
if (!IS_ERR_OR_NULL(clk_info->pll_periph0))
|
|
clk_put(clk_info->pll_periph0);
|
|
}
|
|
err_of_get_pll_periph0:
|
|
#endif
|
|
if ((clk_info->pll_num >= 2) && ((clk_info->clk_num > 4))) {
|
|
if (!IS_ERR_OR_NULL(clk_info->pll_audio2div))
|
|
clk_put(clk_info->pll_audio2div);
|
|
}
|
|
err_of_get_pll_audio2div:
|
|
if ((clk_info->pll_num >= 2) && ((clk_info->clk_num > 3))) {
|
|
if (!IS_ERR_OR_NULL(clk_info->pll_audio2))
|
|
clk_put(clk_info->pll_audio2);
|
|
}
|
|
err_of_get_pll_audio2:
|
|
if (!IS_ERR_OR_NULL(clk_info->clk_module))
|
|
clk_put(clk_info->clk_module);
|
|
err_of_get_clk_module:
|
|
if (!IS_ERR_OR_NULL(clk_info->pll_audiox4))
|
|
clk_put(clk_info->pll_audiox4);
|
|
err_of_get_pll_audiox4:
|
|
if (!IS_ERR_OR_NULL(clk_info->pll_audiox1))
|
|
clk_put(clk_info->pll_audiox1);
|
|
err_of_get_pll_audiox1:
|
|
err_devm_regmap:
|
|
devm_iounmap(&pdev->dev, mem_info->membase);
|
|
err_devm_ioremap:
|
|
err_devm_mem_region:
|
|
err_of_get_addr_resource:
|
|
devm_kfree(&pdev->dev, sunxi_spdif);
|
|
err_devm_malloc_spdif:
|
|
of_node_put(node);
|
|
return ret;
|
|
}
|
|
|
|
static int __exit sunxi_spdif_dev_remove(struct platform_device *pdev)
|
|
{
|
|
struct sunxi_spdif_info *sunxi_spdif = dev_get_drvdata(&pdev->dev);
|
|
struct sunxi_spdif_dts_info *dts_info = &sunxi_spdif->dts_info;
|
|
struct sunxi_spdif_mem_info *mem_info = &dts_info->mem_info;
|
|
struct sunxi_spdif_clk_info *clk_info = &dts_info->clk_info;
|
|
|
|
#ifdef CONFIG_SND_SUNXI_SPDIF_DEBUG
|
|
sysfs_remove_group(&pdev->dev.kobj, &spdif_debug_attr_group);
|
|
#endif
|
|
|
|
#ifdef SUNXI_SPDIF_LOCK_STATE_DETECT
|
|
cancel_delayed_work_sync(&sunxi_spdif->dw_detect_lock_state);
|
|
devm_free_irq(&pdev->dev, sunxi_spdif->irq_num, sunxi_spdif);
|
|
#endif
|
|
|
|
snd_soc_unregister_component(&pdev->dev);
|
|
|
|
if (gpio_is_valid(dts_info->gpio_cfg.gpio))
|
|
devm_gpio_free(&pdev->dev, dts_info->gpio_cfg.gpio);
|
|
|
|
#if IS_ENABLED(CONFIG_SND_SUNXI_SPDIF_RX_IEC61937)
|
|
if ((clk_info->pll_num == 3) && ((clk_info->clk_num > 6))) {
|
|
if (!IS_ERR_OR_NULL(clk_info->clk_module_rx)) {
|
|
clk_disable_unprepare(clk_info->clk_module_rx);
|
|
clk_put(clk_info->clk_module_rx);
|
|
}
|
|
}
|
|
|
|
if ((clk_info->pll_num == 3) && ((clk_info->clk_num > 5))) {
|
|
if (!IS_ERR_OR_NULL(clk_info->pll_periph0)) {
|
|
clk_disable_unprepare(clk_info->pll_periph0);
|
|
clk_put(clk_info->pll_periph0);
|
|
}
|
|
}
|
|
#endif
|
|
|
|
if ((clk_info->pll_num >= 2) && ((clk_info->clk_num > 4))) {
|
|
if (!IS_ERR_OR_NULL(clk_info->pll_audio2div)) {
|
|
clk_disable_unprepare(clk_info->pll_audio2div);
|
|
clk_put(clk_info->pll_audio2div);
|
|
}
|
|
}
|
|
if ((clk_info->pll_num >= 2) && ((clk_info->clk_num > 3))) {
|
|
if (!IS_ERR_OR_NULL(clk_info->pll_audio2)) {
|
|
clk_disable_unprepare(clk_info->pll_audio2);
|
|
clk_put(clk_info->pll_audio2);
|
|
}
|
|
}
|
|
if (!IS_ERR_OR_NULL(clk_info->clk_module)) {
|
|
clk_disable_unprepare(clk_info->clk_module);
|
|
clk_put(clk_info->clk_module);
|
|
}
|
|
if (!IS_ERR_OR_NULL(clk_info->pll_audiox4)) {
|
|
clk_disable_unprepare(clk_info->pll_audiox4);
|
|
clk_put(clk_info->pll_audiox4);
|
|
}
|
|
if (!IS_ERR_OR_NULL(clk_info->pll_audiox1)) {
|
|
clk_disable_unprepare(clk_info->pll_audiox1);
|
|
clk_put(clk_info->pll_audiox1);
|
|
}
|
|
|
|
devm_iounmap(&pdev->dev, mem_info->membase);
|
|
devm_kfree(&pdev->dev, sunxi_spdif);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static const struct of_device_id sunxi_spdif_of_match[] = {
|
|
{ .compatible = "allwinner,sunxi-spdif", },
|
|
{},
|
|
};
|
|
|
|
static struct platform_driver sunxi_spdif_driver = {
|
|
.probe = sunxi_spdif_dev_probe,
|
|
.remove = __exit_p(sunxi_spdif_dev_remove),
|
|
.driver = {
|
|
.name = DRV_NAME,
|
|
.owner = THIS_MODULE,
|
|
.of_match_table = sunxi_spdif_of_match,
|
|
},
|
|
};
|
|
|
|
module_platform_driver(sunxi_spdif_driver);
|
|
|
|
MODULE_AUTHOR("yumingfeng <yumingfeng@allwinnertech.com>");
|
|
MODULE_DESCRIPTION("SUNXI SPDIF ASoC Interface");
|
|
MODULE_LICENSE("GPL");
|
|
MODULE_ALIAS("platform:sunxi-spdif");
|