Merge remote-tracking branches 'asoc/topic/ac97', 'asoc/topic/adsp', 'asoc/topic/ak4613' and 'asoc/topic/atmel' into asoc-next
This commit is contained in:
Коммит
8ebdab65fe
|
@ -7,6 +7,16 @@ Required properties:
|
|||
- compatible : "asahi-kasei,ak4613"
|
||||
- reg : The chip select number on the I2C bus
|
||||
|
||||
Optional properties:
|
||||
- asahi-kasei,in1-single-end : Boolean. Indicate input / output pins are single-ended.
|
||||
- asahi-kasei,in2-single-end rather than differential.
|
||||
- asahi-kasei,out1-single-end
|
||||
- asahi-kasei,out2-single-end
|
||||
- asahi-kasei,out3-single-end
|
||||
- asahi-kasei,out4-single-end
|
||||
- asahi-kasei,out5-single-end
|
||||
- asahi-kasei,out6-single-end
|
||||
|
||||
Example:
|
||||
|
||||
&i2c {
|
||||
|
|
|
@ -0,0 +1,55 @@
|
|||
* Atmel PDMIC driver under ALSA SoC architecture
|
||||
|
||||
Required properties:
|
||||
- compatible
|
||||
Should be "atmel,sama5d2-pdmic".
|
||||
- reg
|
||||
Should contain PDMIC registers location and length.
|
||||
- interrupts
|
||||
Should contain the IRQ line for the PDMIC.
|
||||
- dmas
|
||||
One DMA specifiers as described in atmel-dma.txt and dma.txt files.
|
||||
- dma-names
|
||||
Must be "rx".
|
||||
- clock-names
|
||||
Required elements:
|
||||
- "pclk" peripheral clock
|
||||
- "gclk" generated clock
|
||||
- clocks
|
||||
Must contain an entry for each required entry in clock-names.
|
||||
Please refer to clock-bindings.txt.
|
||||
- atmel,mic-min-freq
|
||||
The minimal frequency that the micphone supports.
|
||||
- atmel,mic-max-freq
|
||||
The maximal frequency that the micphone supports.
|
||||
|
||||
Optional properties:
|
||||
- pinctrl-names, pinctrl-0
|
||||
Please refer to pinctrl-bindings.txt.
|
||||
- atmel,model
|
||||
The user-visible name of this sound card.
|
||||
The default value is "PDMIC".
|
||||
- atmel,mic-offset
|
||||
The offset that should be added.
|
||||
The range is from -32768 to 32767.
|
||||
The default value is 0.
|
||||
|
||||
Example:
|
||||
pdmic@f8018000 {
|
||||
compatible = "atmel,sama5d2-pdmic";
|
||||
reg = <0xf8018000 0x124>;
|
||||
interrupts = <48 IRQ_TYPE_LEVEL_HIGH 7>;
|
||||
dmas = <&dma0
|
||||
(AT91_XDMAC_DT_MEM_IF(0) | AT91_XDMAC_DT_PER_IF(1)
|
||||
| AT91_XDMAC_DT_PERID(50))>;
|
||||
dma-names = "rx";
|
||||
clocks = <&pdmic_clk>, <&pdmic_gclk>;
|
||||
clock-names = "pclk", "gclk";
|
||||
|
||||
pinctrl-names = "default";
|
||||
pinctrl-0 = <&pinctrl_pdmic_default>;
|
||||
atmel,model = "PDMIC @ sama5d2_xplained";
|
||||
atmel,mic-min-freq = <1000000>;
|
||||
atmel,mic-max-freq = <3246000>;
|
||||
atmel,mic-offset = <0x0>;
|
||||
};
|
|
@ -417,11 +417,13 @@
|
|||
#define AC97_RATES_MIC_ADC 4
|
||||
#define AC97_RATES_SPDIF 5
|
||||
|
||||
#define AC97_NUM_GPIOS 16
|
||||
/*
|
||||
*
|
||||
*/
|
||||
|
||||
struct snd_ac97;
|
||||
struct snd_ac97_gpio_priv;
|
||||
struct snd_pcm_chmap;
|
||||
|
||||
struct snd_ac97_build_ops {
|
||||
|
@ -529,6 +531,7 @@ struct snd_ac97 {
|
|||
struct delayed_work power_work;
|
||||
#endif
|
||||
struct device dev;
|
||||
struct snd_ac97_gpio_priv *gpio_priv;
|
||||
|
||||
struct snd_pcm_chmap *chmaps[2]; /* channel-maps (optional) */
|
||||
};
|
||||
|
|
|
@ -73,7 +73,8 @@
|
|||
#define SND_AUDIOCODEC_IEC61937 ((__u32) 0x0000000B)
|
||||
#define SND_AUDIOCODEC_G723_1 ((__u32) 0x0000000C)
|
||||
#define SND_AUDIOCODEC_G729 ((__u32) 0x0000000D)
|
||||
#define SND_AUDIOCODEC_MAX SND_AUDIOCODEC_G729
|
||||
#define SND_AUDIOCODEC_BESPOKE ((__u32) 0x0000000E)
|
||||
#define SND_AUDIOCODEC_MAX SND_AUDIOCODEC_BESPOKE
|
||||
|
||||
/*
|
||||
* Profile and modes are listed with bit masks. This allows for a
|
||||
|
@ -312,7 +313,7 @@ struct snd_enc_flac {
|
|||
|
||||
struct snd_enc_generic {
|
||||
__u32 bw; /* encoder bandwidth */
|
||||
__s32 reserved[15];
|
||||
__s32 reserved[15]; /* Can be used for SND_AUDIOCODEC_BESPOKE */
|
||||
} __attribute__((packed, aligned(4)));
|
||||
|
||||
union snd_codec_options {
|
||||
|
|
|
@ -68,4 +68,13 @@ config SND_ATMEL_SOC_CLASSD
|
|||
help
|
||||
Say Y if you want to add support for Atmel ASoC driver for boards using
|
||||
CLASSD.
|
||||
|
||||
config SND_ATMEL_SOC_PDMIC
|
||||
tristate "Atmel ASoC driver for boards using PDMIC"
|
||||
depends on OF && (ARCH_AT91 || COMPILE_TEST)
|
||||
select SND_SOC_GENERIC_DMAENGINE_PCM
|
||||
select REGMAP_MMIO
|
||||
help
|
||||
Say Y if you want to add support for Atmel ASoC driver for boards using
|
||||
PDMIC.
|
||||
endif
|
||||
|
|
|
@ -12,8 +12,10 @@ snd-soc-sam9g20-wm8731-objs := sam9g20_wm8731.o
|
|||
snd-atmel-soc-wm8904-objs := atmel_wm8904.o
|
||||
snd-soc-sam9x5-wm8731-objs := sam9x5_wm8731.o
|
||||
snd-atmel-soc-classd-objs := atmel-classd.o
|
||||
snd-atmel-soc-pdmic-objs := atmel-pdmic.o
|
||||
|
||||
obj-$(CONFIG_SND_AT91_SOC_SAM9G20_WM8731) += snd-soc-sam9g20-wm8731.o
|
||||
obj-$(CONFIG_SND_ATMEL_SOC_WM8904) += snd-atmel-soc-wm8904.o
|
||||
obj-$(CONFIG_SND_AT91_SOC_SAM9X5_WM8731) += snd-soc-sam9x5-wm8731.o
|
||||
obj-$(CONFIG_SND_ATMEL_SOC_CLASSD) += snd-atmel-soc-classd.o
|
||||
obj-$(CONFIG_SND_ATMEL_SOC_PDMIC) += snd-atmel-soc-pdmic.o
|
||||
|
|
|
@ -636,8 +636,10 @@ static int atmel_classd_probe(struct platform_device *pdev)
|
|||
|
||||
/* register sound card */
|
||||
card = devm_kzalloc(dev, sizeof(*card), GFP_KERNEL);
|
||||
if (!card)
|
||||
return -ENOMEM;
|
||||
if (!card) {
|
||||
ret = -ENOMEM;
|
||||
goto unregister_codec;
|
||||
}
|
||||
|
||||
snd_soc_card_set_drvdata(card, dd);
|
||||
platform_set_drvdata(pdev, card);
|
||||
|
@ -645,16 +647,20 @@ static int atmel_classd_probe(struct platform_device *pdev)
|
|||
ret = atmel_classd_asoc_card_init(dev, card);
|
||||
if (ret) {
|
||||
dev_err(dev, "failed to init sound card\n");
|
||||
return ret;
|
||||
goto unregister_codec;
|
||||
}
|
||||
|
||||
ret = devm_snd_soc_register_card(dev, card);
|
||||
if (ret) {
|
||||
dev_err(dev, "failed to register sound card: %d\n", ret);
|
||||
return ret;
|
||||
goto unregister_codec;
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
||||
unregister_codec:
|
||||
snd_soc_unregister_codec(dev);
|
||||
return ret;
|
||||
}
|
||||
|
||||
static int atmel_classd_remove(struct platform_device *pdev)
|
||||
|
|
|
@ -0,0 +1,738 @@
|
|||
/* Atmel PDMIC driver
|
||||
*
|
||||
* Copyright (C) 2015 Atmel
|
||||
*
|
||||
* Author: Songjun Wu <songjun.wu@atmel.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License version 2 or later
|
||||
* as published by the Free Software Foundation.
|
||||
*/
|
||||
|
||||
#include <linux/of.h>
|
||||
#include <linux/clk.h>
|
||||
#include <linux/module.h>
|
||||
#include <linux/platform_device.h>
|
||||
#include <linux/regmap.h>
|
||||
#include <sound/core.h>
|
||||
#include <sound/dmaengine_pcm.h>
|
||||
#include <sound/pcm_params.h>
|
||||
#include <sound/tlv.h>
|
||||
#include "atmel-pdmic.h"
|
||||
|
||||
struct atmel_pdmic_pdata {
|
||||
u32 mic_min_freq;
|
||||
u32 mic_max_freq;
|
||||
s32 mic_offset;
|
||||
const char *card_name;
|
||||
};
|
||||
|
||||
struct atmel_pdmic {
|
||||
dma_addr_t phy_base;
|
||||
struct regmap *regmap;
|
||||
struct clk *pclk;
|
||||
struct clk *gclk;
|
||||
int irq;
|
||||
struct snd_pcm_substream *substream;
|
||||
const struct atmel_pdmic_pdata *pdata;
|
||||
};
|
||||
|
||||
static const struct of_device_id atmel_pdmic_of_match[] = {
|
||||
{
|
||||
.compatible = "atmel,sama5d2-pdmic",
|
||||
}, {
|
||||
/* sentinel */
|
||||
}
|
||||
};
|
||||
MODULE_DEVICE_TABLE(of, atmel_pdmic_of_match);
|
||||
|
||||
#define PDMIC_OFFSET_MAX_VAL S16_MAX
|
||||
#define PDMIC_OFFSET_MIN_VAL S16_MIN
|
||||
|
||||
static struct atmel_pdmic_pdata *atmel_pdmic_dt_init(struct device *dev)
|
||||
{
|
||||
struct device_node *np = dev->of_node;
|
||||
struct atmel_pdmic_pdata *pdata;
|
||||
|
||||
if (!np) {
|
||||
dev_err(dev, "device node not found\n");
|
||||
return ERR_PTR(-EINVAL);
|
||||
}
|
||||
|
||||
pdata = devm_kzalloc(dev, sizeof(*pdata), GFP_KERNEL);
|
||||
if (!pdata)
|
||||
return ERR_PTR(-ENOMEM);
|
||||
|
||||
if (of_property_read_string(np, "atmel,model", &pdata->card_name))
|
||||
pdata->card_name = "PDMIC";
|
||||
|
||||
if (of_property_read_u32(np, "atmel,mic-min-freq",
|
||||
&pdata->mic_min_freq)) {
|
||||
dev_err(dev, "failed to get mic-min-freq\n");
|
||||
return ERR_PTR(-EINVAL);
|
||||
}
|
||||
|
||||
if (of_property_read_u32(np, "atmel,mic-max-freq",
|
||||
&pdata->mic_max_freq)) {
|
||||
dev_err(dev, "failed to get mic-max-freq\n");
|
||||
return ERR_PTR(-EINVAL);
|
||||
}
|
||||
|
||||
if (pdata->mic_max_freq < pdata->mic_min_freq) {
|
||||
dev_err(dev,
|
||||
"mic-max-freq should not less than mic-min-freq\n");
|
||||
return ERR_PTR(-EINVAL);
|
||||
}
|
||||
|
||||
if (of_property_read_s32(np, "atmel,mic-offset", &pdata->mic_offset))
|
||||
pdata->mic_offset = 0;
|
||||
|
||||
if (pdata->mic_offset > PDMIC_OFFSET_MAX_VAL) {
|
||||
dev_warn(dev,
|
||||
"mic-offset value %d is larger than the max value %d, the max value is specified\n",
|
||||
pdata->mic_offset, PDMIC_OFFSET_MAX_VAL);
|
||||
pdata->mic_offset = PDMIC_OFFSET_MAX_VAL;
|
||||
} else if (pdata->mic_offset < PDMIC_OFFSET_MIN_VAL) {
|
||||
dev_warn(dev,
|
||||
"mic-offset value %d is less than the min value %d, the min value is specified\n",
|
||||
pdata->mic_offset, PDMIC_OFFSET_MIN_VAL);
|
||||
pdata->mic_offset = PDMIC_OFFSET_MIN_VAL;
|
||||
}
|
||||
|
||||
return pdata;
|
||||
}
|
||||
|
||||
/* cpu dai component */
|
||||
static int atmel_pdmic_cpu_dai_startup(struct snd_pcm_substream *substream,
|
||||
struct snd_soc_dai *cpu_dai)
|
||||
{
|
||||
struct snd_soc_pcm_runtime *rtd = substream->private_data;
|
||||
struct atmel_pdmic *dd = snd_soc_card_get_drvdata(rtd->card);
|
||||
int ret;
|
||||
|
||||
ret = clk_prepare_enable(dd->gclk);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
ret = clk_prepare_enable(dd->pclk);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
/* Clear all bits in the Control Register(PDMIC_CR) */
|
||||
regmap_write(dd->regmap, PDMIC_CR, 0);
|
||||
|
||||
dd->substream = substream;
|
||||
|
||||
/* Enable the overrun error interrupt */
|
||||
regmap_write(dd->regmap, PDMIC_IER, PDMIC_IER_OVRE);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void atmel_pdmic_cpu_dai_shutdown(struct snd_pcm_substream *substream,
|
||||
struct snd_soc_dai *cpu_dai)
|
||||
{
|
||||
struct snd_soc_pcm_runtime *rtd = substream->private_data;
|
||||
struct atmel_pdmic *dd = snd_soc_card_get_drvdata(rtd->card);
|
||||
|
||||
/* Disable the overrun error interrupt */
|
||||
regmap_write(dd->regmap, PDMIC_IDR, PDMIC_IDR_OVRE);
|
||||
|
||||
clk_disable_unprepare(dd->gclk);
|
||||
clk_disable_unprepare(dd->pclk);
|
||||
}
|
||||
|
||||
static int atmel_pdmic_cpu_dai_prepare(struct snd_pcm_substream *substream,
|
||||
struct snd_soc_dai *cpu_dai)
|
||||
{
|
||||
struct snd_soc_pcm_runtime *rtd = substream->private_data;
|
||||
struct atmel_pdmic *dd = snd_soc_card_get_drvdata(rtd->card);
|
||||
u32 val;
|
||||
|
||||
/* Clean the PDMIC Converted Data Register */
|
||||
return regmap_read(dd->regmap, PDMIC_CDR, &val);
|
||||
}
|
||||
|
||||
static const struct snd_soc_dai_ops atmel_pdmic_cpu_dai_ops = {
|
||||
.startup = atmel_pdmic_cpu_dai_startup,
|
||||
.shutdown = atmel_pdmic_cpu_dai_shutdown,
|
||||
.prepare = atmel_pdmic_cpu_dai_prepare,
|
||||
};
|
||||
|
||||
#define ATMEL_PDMIC_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S32_LE)
|
||||
|
||||
static struct snd_soc_dai_driver atmel_pdmic_cpu_dai = {
|
||||
.capture = {
|
||||
.channels_min = 1,
|
||||
.channels_max = 1,
|
||||
.rates = SNDRV_PCM_RATE_KNOT,
|
||||
.formats = ATMEL_PDMIC_FORMATS,},
|
||||
.ops = &atmel_pdmic_cpu_dai_ops,
|
||||
};
|
||||
|
||||
static const struct snd_soc_component_driver atmel_pdmic_cpu_dai_component = {
|
||||
.name = "atmel-pdmic",
|
||||
};
|
||||
|
||||
/* platform */
|
||||
#define ATMEL_PDMIC_MAX_BUF_SIZE (64 * 1024)
|
||||
#define ATMEL_PDMIC_PREALLOC_BUF_SIZE ATMEL_PDMIC_MAX_BUF_SIZE
|
||||
|
||||
static const struct snd_pcm_hardware atmel_pdmic_hw = {
|
||||
.info = SNDRV_PCM_INFO_MMAP
|
||||
| SNDRV_PCM_INFO_MMAP_VALID
|
||||
| SNDRV_PCM_INFO_INTERLEAVED
|
||||
| SNDRV_PCM_INFO_RESUME
|
||||
| SNDRV_PCM_INFO_PAUSE,
|
||||
.formats = ATMEL_PDMIC_FORMATS,
|
||||
.buffer_bytes_max = ATMEL_PDMIC_MAX_BUF_SIZE,
|
||||
.period_bytes_min = 256,
|
||||
.period_bytes_max = 32 * 1024,
|
||||
.periods_min = 2,
|
||||
.periods_max = 256,
|
||||
};
|
||||
|
||||
static int
|
||||
atmel_pdmic_platform_configure_dma(struct snd_pcm_substream *substream,
|
||||
struct snd_pcm_hw_params *params,
|
||||
struct dma_slave_config *slave_config)
|
||||
{
|
||||
struct snd_soc_pcm_runtime *rtd = substream->private_data;
|
||||
struct atmel_pdmic *dd = snd_soc_card_get_drvdata(rtd->card);
|
||||
int ret;
|
||||
|
||||
ret = snd_hwparams_to_dma_slave_config(substream, params,
|
||||
slave_config);
|
||||
if (ret) {
|
||||
dev_err(rtd->platform->dev,
|
||||
"hw params to dma slave configure failed\n");
|
||||
return ret;
|
||||
}
|
||||
|
||||
slave_config->src_addr = dd->phy_base + PDMIC_CDR;
|
||||
slave_config->src_maxburst = 1;
|
||||
slave_config->dst_maxburst = 1;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static const struct snd_dmaengine_pcm_config
|
||||
atmel_pdmic_dmaengine_pcm_config = {
|
||||
.prepare_slave_config = atmel_pdmic_platform_configure_dma,
|
||||
.pcm_hardware = &atmel_pdmic_hw,
|
||||
.prealloc_buffer_size = ATMEL_PDMIC_PREALLOC_BUF_SIZE,
|
||||
};
|
||||
|
||||
/* codec */
|
||||
/* Mic Gain = dgain * 2^(-scale) */
|
||||
struct mic_gain {
|
||||
unsigned int dgain;
|
||||
unsigned int scale;
|
||||
};
|
||||
|
||||
/* range from -90 dB to 90 dB */
|
||||
static const struct mic_gain mic_gain_table[] = {
|
||||
{ 1, 15}, { 1, 14}, /* -90, -84 dB */
|
||||
{ 3, 15}, { 1, 13}, { 3, 14}, { 1, 12}, /* -81, -78, -75, -72 dB */
|
||||
{ 5, 14}, { 13, 15}, /* -70, -68 dB */
|
||||
{ 9, 14}, { 21, 15}, { 23, 15}, { 13, 14}, /* -65 ~ -62 dB */
|
||||
{ 29, 15}, { 33, 15}, { 37, 15}, { 41, 15}, /* -61 ~ -58 dB */
|
||||
{ 23, 14}, { 13, 13}, { 58, 15}, { 65, 15}, /* -57 ~ -54 dB */
|
||||
{ 73, 15}, { 41, 14}, { 23, 13}, { 13, 12}, /* -53 ~ -50 dB */
|
||||
{ 29, 13}, { 65, 14}, { 73, 14}, { 41, 13}, /* -49 ~ -46 dB */
|
||||
{ 23, 12}, { 207, 15}, { 29, 12}, { 65, 13}, /* -45 ~ -42 dB */
|
||||
{ 73, 13}, { 41, 12}, { 23, 11}, { 413, 15}, /* -41 ~ -38 dB */
|
||||
{ 463, 15}, { 519, 15}, { 583, 15}, { 327, 14}, /* -37 ~ -34 dB */
|
||||
{ 367, 14}, { 823, 15}, { 231, 13}, { 1036, 15}, /* -33 ~ -30 dB */
|
||||
{ 1163, 15}, { 1305, 15}, { 183, 12}, { 1642, 15}, /* -29 ~ -26 dB */
|
||||
{ 1843, 15}, { 2068, 15}, { 145, 11}, { 2603, 15}, /* -25 ~ -22 dB */
|
||||
{ 365, 12}, { 3277, 15}, { 3677, 15}, { 4125, 15}, /* -21 ~ -18 dB */
|
||||
{ 4629, 15}, { 5193, 15}, { 5827, 15}, { 3269, 14}, /* -17 ~ -14 dB */
|
||||
{ 917, 12}, { 8231, 15}, { 9235, 15}, { 5181, 14}, /* -13 ~ -10 dB */
|
||||
{11627, 15}, {13045, 15}, {14637, 15}, {16423, 15}, /* -9 ~ -6 dB */
|
||||
{18427, 15}, {20675, 15}, { 5799, 13}, {26029, 15}, /* -5 ~ -2 dB */
|
||||
{ 7301, 13}, { 1, 0}, {18383, 14}, {10313, 13}, /* -1 ~ 2 dB */
|
||||
{23143, 14}, {25967, 14}, {29135, 14}, {16345, 13}, /* 3 ~ 6 dB */
|
||||
{ 4585, 11}, {20577, 13}, { 1443, 9}, {25905, 13}, /* 7 ~ 10 dB */
|
||||
{14533, 12}, { 8153, 11}, { 2287, 9}, {20529, 12}, /* 11 ~ 14 dB */
|
||||
{11517, 11}, { 6461, 10}, {28997, 12}, { 4067, 9}, /* 15 ~ 18 dB */
|
||||
{18253, 11}, { 10, 0}, {22979, 11}, {25783, 11}, /* 19 ~ 22 dB */
|
||||
{28929, 11}, {32459, 11}, { 9105, 9}, {20431, 10}, /* 23 ~ 26 dB */
|
||||
{22925, 10}, {12861, 9}, { 7215, 8}, {16191, 9}, /* 27 ~ 30 dB */
|
||||
{ 9083, 8}, {20383, 9}, {11435, 8}, { 6145, 7}, /* 31 ~ 34 dB */
|
||||
{ 3599, 6}, {32305, 9}, {18123, 8}, {20335, 8}, /* 35 ~ 38 dB */
|
||||
{ 713, 3}, { 100, 0}, { 7181, 6}, { 8057, 6}, /* 39 ~ 42 dB */
|
||||
{ 565, 2}, {20287, 7}, {11381, 6}, {25539, 7}, /* 43 ~ 46 dB */
|
||||
{ 1791, 3}, { 4019, 4}, { 9019, 5}, {20239, 6}, /* 47 ~ 50 dB */
|
||||
{ 5677, 4}, {25479, 6}, { 7147, 4}, { 8019, 4}, /* 51 ~ 54 dB */
|
||||
{17995, 5}, {20191, 5}, {11327, 4}, {12709, 4}, /* 55 ~ 58 dB */
|
||||
{ 3565, 2}, { 1000, 0}, { 1122, 0}, { 1259, 0}, /* 59 ~ 62 dB */
|
||||
{ 2825, 1}, {12679, 3}, { 7113, 2}, { 7981, 2}, /* 63 ~ 66 dB */
|
||||
{ 8955, 2}, {20095, 3}, {22547, 3}, {12649, 2}, /* 67 ~ 70 dB */
|
||||
{28385, 3}, { 3981, 0}, {17867, 2}, {20047, 2}, /* 71 ~ 74 dB */
|
||||
{11247, 1}, {12619, 1}, {14159, 1}, {31773, 2}, /* 75 ~ 78 dB */
|
||||
{17825, 1}, {10000, 0}, {11220, 0}, {12589, 0}, /* 79 ~ 82 dB */
|
||||
{28251, 1}, {15849, 0}, {17783, 0}, {19953, 0}, /* 83 ~ 86 dB */
|
||||
{22387, 0}, {25119, 0}, {28184, 0}, {31623, 0}, /* 87 ~ 90 dB */
|
||||
};
|
||||
|
||||
static const DECLARE_TLV_DB_RANGE(mic_gain_tlv,
|
||||
0, 1, TLV_DB_SCALE_ITEM(-9000, 600, 0),
|
||||
2, 5, TLV_DB_SCALE_ITEM(-8100, 300, 0),
|
||||
6, 7, TLV_DB_SCALE_ITEM(-7000, 200, 0),
|
||||
8, ARRAY_SIZE(mic_gain_table)-1, TLV_DB_SCALE_ITEM(-6500, 100, 0),
|
||||
);
|
||||
|
||||
int pdmic_get_mic_volsw(struct snd_kcontrol *kcontrol,
|
||||
struct snd_ctl_elem_value *ucontrol)
|
||||
{
|
||||
struct snd_soc_codec *codec = snd_soc_kcontrol_codec(kcontrol);
|
||||
unsigned int dgain_val, scale_val;
|
||||
int i;
|
||||
|
||||
dgain_val = (snd_soc_read(codec, PDMIC_DSPR1) & PDMIC_DSPR1_DGAIN_MASK)
|
||||
>> PDMIC_DSPR1_DGAIN_SHIFT;
|
||||
|
||||
scale_val = (snd_soc_read(codec, PDMIC_DSPR0) & PDMIC_DSPR0_SCALE_MASK)
|
||||
>> PDMIC_DSPR0_SCALE_SHIFT;
|
||||
|
||||
for (i = 0; i < ARRAY_SIZE(mic_gain_table); i++) {
|
||||
if ((mic_gain_table[i].dgain == dgain_val) &&
|
||||
(mic_gain_table[i].scale == scale_val))
|
||||
ucontrol->value.integer.value[0] = i;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int pdmic_put_mic_volsw(struct snd_kcontrol *kcontrol,
|
||||
struct snd_ctl_elem_value *ucontrol)
|
||||
{
|
||||
struct soc_mixer_control *mc =
|
||||
(struct soc_mixer_control *)kcontrol->private_value;
|
||||
struct snd_soc_codec *codec = snd_soc_kcontrol_codec(kcontrol);
|
||||
int max = mc->max;
|
||||
unsigned int val;
|
||||
int ret;
|
||||
|
||||
val = ucontrol->value.integer.value[0];
|
||||
|
||||
if (val > max)
|
||||
return -EINVAL;
|
||||
|
||||
ret = snd_soc_update_bits(codec, PDMIC_DSPR1, PDMIC_DSPR1_DGAIN_MASK,
|
||||
mic_gain_table[val].dgain << PDMIC_DSPR1_DGAIN_SHIFT);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
ret = snd_soc_update_bits(codec, PDMIC_DSPR0, PDMIC_DSPR0_SCALE_MASK,
|
||||
mic_gain_table[val].scale << PDMIC_DSPR0_SCALE_SHIFT);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static const struct snd_kcontrol_new atmel_pdmic_snd_controls[] = {
|
||||
SOC_SINGLE_EXT_TLV("Mic Capture Volume", PDMIC_DSPR1, PDMIC_DSPR1_DGAIN_SHIFT,
|
||||
ARRAY_SIZE(mic_gain_table)-1, 0,
|
||||
pdmic_get_mic_volsw, pdmic_put_mic_volsw, mic_gain_tlv),
|
||||
|
||||
SOC_SINGLE("High Pass Filter Switch", PDMIC_DSPR0,
|
||||
PDMIC_DSPR0_HPFBYP_SHIFT, 1, 1),
|
||||
|
||||
SOC_SINGLE("SINCC Filter Switch", PDMIC_DSPR0, PDMIC_DSPR0_SINBYP_SHIFT, 1, 1),
|
||||
};
|
||||
|
||||
static int atmel_pdmic_codec_probe(struct snd_soc_codec *codec)
|
||||
{
|
||||
struct snd_soc_card *card = snd_soc_codec_get_drvdata(codec);
|
||||
struct atmel_pdmic *dd = snd_soc_card_get_drvdata(card);
|
||||
|
||||
snd_soc_update_bits(codec, PDMIC_DSPR1, PDMIC_DSPR1_OFFSET_MASK,
|
||||
(u32)(dd->pdata->mic_offset << PDMIC_DSPR1_OFFSET_SHIFT));
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static struct snd_soc_codec_driver soc_codec_dev_pdmic = {
|
||||
.probe = atmel_pdmic_codec_probe,
|
||||
.controls = atmel_pdmic_snd_controls,
|
||||
.num_controls = ARRAY_SIZE(atmel_pdmic_snd_controls),
|
||||
};
|
||||
|
||||
/* codec dai component */
|
||||
#define PDMIC_MR_PRESCAL_MAX_VAL 127
|
||||
|
||||
static int
|
||||
atmel_pdmic_codec_dai_hw_params(struct snd_pcm_substream *substream,
|
||||
struct snd_pcm_hw_params *params,
|
||||
struct snd_soc_dai *codec_dai)
|
||||
{
|
||||
struct snd_soc_pcm_runtime *rtd = substream->private_data;
|
||||
struct atmel_pdmic *dd = snd_soc_card_get_drvdata(rtd->card);
|
||||
struct snd_soc_codec *codec = codec_dai->codec;
|
||||
unsigned int rate_min = substream->runtime->hw.rate_min;
|
||||
unsigned int rate_max = substream->runtime->hw.rate_max;
|
||||
int fs = params_rate(params);
|
||||
int bits = params_width(params);
|
||||
unsigned long pclk_rate, gclk_rate;
|
||||
unsigned int f_pdmic;
|
||||
u32 mr_val, dspr0_val, pclk_prescal, gclk_prescal;
|
||||
|
||||
if (params_channels(params) != 1) {
|
||||
dev_err(codec->dev,
|
||||
"only supports one channel\n");
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
if ((fs < rate_min) || (fs > rate_max)) {
|
||||
dev_err(codec->dev,
|
||||
"sample rate is %dHz, min rate is %dHz, max rate is %dHz\n",
|
||||
fs, rate_min, rate_max);
|
||||
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
switch (bits) {
|
||||
case 16:
|
||||
dspr0_val = (PDMIC_DSPR0_SIZE_16_BITS
|
||||
<< PDMIC_DSPR0_SIZE_SHIFT);
|
||||
break;
|
||||
case 32:
|
||||
dspr0_val = (PDMIC_DSPR0_SIZE_32_BITS
|
||||
<< PDMIC_DSPR0_SIZE_SHIFT);
|
||||
break;
|
||||
default:
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
if ((fs << 7) > (rate_max << 6)) {
|
||||
f_pdmic = fs << 6;
|
||||
dspr0_val |= PDMIC_DSPR0_OSR_64 << PDMIC_DSPR0_OSR_SHIFT;
|
||||
} else {
|
||||
f_pdmic = fs << 7;
|
||||
dspr0_val |= PDMIC_DSPR0_OSR_128 << PDMIC_DSPR0_OSR_SHIFT;
|
||||
}
|
||||
|
||||
pclk_rate = clk_get_rate(dd->pclk);
|
||||
gclk_rate = clk_get_rate(dd->gclk);
|
||||
|
||||
/* PRESCAL = SELCK/(2*f_pdmic) - 1*/
|
||||
pclk_prescal = (u32)(pclk_rate/(f_pdmic << 1)) - 1;
|
||||
gclk_prescal = (u32)(gclk_rate/(f_pdmic << 1)) - 1;
|
||||
|
||||
if ((pclk_prescal > PDMIC_MR_PRESCAL_MAX_VAL) ||
|
||||
(gclk_rate/((gclk_prescal + 1) << 1) <
|
||||
pclk_rate/((pclk_prescal + 1) << 1))) {
|
||||
mr_val = gclk_prescal << PDMIC_MR_PRESCAL_SHIFT;
|
||||
mr_val |= PDMIC_MR_CLKS_GCK << PDMIC_MR_CLKS_SHIFT;
|
||||
} else {
|
||||
mr_val = pclk_prescal << PDMIC_MR_PRESCAL_SHIFT;
|
||||
mr_val |= PDMIC_MR_CLKS_PCK << PDMIC_MR_CLKS_SHIFT;
|
||||
}
|
||||
|
||||
snd_soc_update_bits(codec, PDMIC_MR,
|
||||
PDMIC_MR_PRESCAL_MASK | PDMIC_MR_CLKS_MASK, mr_val);
|
||||
|
||||
snd_soc_update_bits(codec, PDMIC_DSPR0,
|
||||
PDMIC_DSPR0_OSR_MASK | PDMIC_DSPR0_SIZE_MASK, dspr0_val);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int atmel_pdmic_codec_dai_prepare(struct snd_pcm_substream *substream,
|
||||
struct snd_soc_dai *codec_dai)
|
||||
{
|
||||
struct snd_soc_codec *codec = codec_dai->codec;
|
||||
|
||||
snd_soc_update_bits(codec, PDMIC_CR, PDMIC_CR_ENPDM_MASK,
|
||||
PDMIC_CR_ENPDM_DIS << PDMIC_CR_ENPDM_SHIFT);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int atmel_pdmic_codec_dai_trigger(struct snd_pcm_substream *substream,
|
||||
int cmd, struct snd_soc_dai *codec_dai)
|
||||
{
|
||||
struct snd_soc_codec *codec = codec_dai->codec;
|
||||
u32 val;
|
||||
|
||||
switch (cmd) {
|
||||
case SNDRV_PCM_TRIGGER_START:
|
||||
case SNDRV_PCM_TRIGGER_RESUME:
|
||||
case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
|
||||
val = PDMIC_CR_ENPDM_EN << PDMIC_CR_ENPDM_SHIFT;
|
||||
break;
|
||||
case SNDRV_PCM_TRIGGER_STOP:
|
||||
case SNDRV_PCM_TRIGGER_SUSPEND:
|
||||
case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
|
||||
val = PDMIC_CR_ENPDM_DIS << PDMIC_CR_ENPDM_SHIFT;
|
||||
break;
|
||||
default:
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
snd_soc_update_bits(codec, PDMIC_CR, PDMIC_CR_ENPDM_MASK, val);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static const struct snd_soc_dai_ops atmel_pdmic_codec_dai_ops = {
|
||||
.hw_params = atmel_pdmic_codec_dai_hw_params,
|
||||
.prepare = atmel_pdmic_codec_dai_prepare,
|
||||
.trigger = atmel_pdmic_codec_dai_trigger,
|
||||
};
|
||||
|
||||
#define ATMEL_PDMIC_CODEC_DAI_NAME "atmel-pdmic-hifi"
|
||||
|
||||
static struct snd_soc_dai_driver atmel_pdmic_codec_dai = {
|
||||
.name = ATMEL_PDMIC_CODEC_DAI_NAME,
|
||||
.capture = {
|
||||
.stream_name = "Capture",
|
||||
.channels_min = 1,
|
||||
.channels_max = 1,
|
||||
.rates = SNDRV_PCM_RATE_KNOT,
|
||||
.formats = ATMEL_PDMIC_FORMATS,
|
||||
},
|
||||
.ops = &atmel_pdmic_codec_dai_ops,
|
||||
};
|
||||
|
||||
/* ASoC sound card */
|
||||
static int atmel_pdmic_asoc_card_init(struct device *dev,
|
||||
struct snd_soc_card *card)
|
||||
{
|
||||
struct snd_soc_dai_link *dai_link;
|
||||
struct atmel_pdmic *dd = snd_soc_card_get_drvdata(card);
|
||||
|
||||
dai_link = devm_kzalloc(dev, sizeof(*dai_link), GFP_KERNEL);
|
||||
if (!dai_link)
|
||||
return -ENOMEM;
|
||||
|
||||
dai_link->name = "PDMIC";
|
||||
dai_link->stream_name = "PDMIC PCM";
|
||||
dai_link->codec_dai_name = ATMEL_PDMIC_CODEC_DAI_NAME;
|
||||
dai_link->cpu_dai_name = dev_name(dev);
|
||||
dai_link->codec_name = dev_name(dev);
|
||||
dai_link->platform_name = dev_name(dev);
|
||||
|
||||
card->dai_link = dai_link;
|
||||
card->num_links = 1;
|
||||
card->name = dd->pdata->card_name;
|
||||
card->dev = dev;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void atmel_pdmic_get_sample_rate(struct atmel_pdmic *dd,
|
||||
unsigned int *rate_min, unsigned int *rate_max)
|
||||
{
|
||||
u32 mic_min_freq = dd->pdata->mic_min_freq;
|
||||
u32 mic_max_freq = dd->pdata->mic_max_freq;
|
||||
u32 clk_max_rate = (u32)(clk_get_rate(dd->pclk) >> 1);
|
||||
u32 clk_min_rate = (u32)(clk_get_rate(dd->gclk) >> 8);
|
||||
|
||||
if (mic_max_freq > clk_max_rate)
|
||||
mic_max_freq = clk_max_rate;
|
||||
|
||||
if (mic_min_freq < clk_min_rate)
|
||||
mic_min_freq = clk_min_rate;
|
||||
|
||||
*rate_min = DIV_ROUND_CLOSEST(mic_min_freq, 128);
|
||||
*rate_max = mic_max_freq >> 6;
|
||||
}
|
||||
|
||||
/* PDMIC interrupt handler */
|
||||
static irqreturn_t atmel_pdmic_interrupt(int irq, void *dev_id)
|
||||
{
|
||||
struct atmel_pdmic *dd = (struct atmel_pdmic *)dev_id;
|
||||
u32 pdmic_isr;
|
||||
irqreturn_t ret = IRQ_NONE;
|
||||
|
||||
regmap_read(dd->regmap, PDMIC_ISR, &pdmic_isr);
|
||||
|
||||
if (pdmic_isr & PDMIC_ISR_OVRE) {
|
||||
regmap_update_bits(dd->regmap, PDMIC_CR, PDMIC_CR_ENPDM_MASK,
|
||||
PDMIC_CR_ENPDM_DIS << PDMIC_CR_ENPDM_SHIFT);
|
||||
|
||||
snd_pcm_stop_xrun(dd->substream);
|
||||
|
||||
ret = IRQ_HANDLED;
|
||||
}
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
/* regmap configuration */
|
||||
#define ATMEL_PDMIC_REG_MAX 0x124
|
||||
static const struct regmap_config atmel_pdmic_regmap_config = {
|
||||
.reg_bits = 32,
|
||||
.reg_stride = 4,
|
||||
.val_bits = 32,
|
||||
.max_register = ATMEL_PDMIC_REG_MAX,
|
||||
};
|
||||
|
||||
static int atmel_pdmic_probe(struct platform_device *pdev)
|
||||
{
|
||||
struct device *dev = &pdev->dev;
|
||||
struct atmel_pdmic *dd;
|
||||
struct resource *res;
|
||||
void __iomem *io_base;
|
||||
const struct atmel_pdmic_pdata *pdata;
|
||||
struct snd_soc_card *card;
|
||||
unsigned int rate_min, rate_max;
|
||||
int ret;
|
||||
|
||||
pdata = atmel_pdmic_dt_init(dev);
|
||||
if (IS_ERR(pdata))
|
||||
return PTR_ERR(pdata);
|
||||
|
||||
dd = devm_kzalloc(dev, sizeof(*dd), GFP_KERNEL);
|
||||
if (!dd)
|
||||
return -ENOMEM;
|
||||
|
||||
dd->pdata = pdata;
|
||||
|
||||
dd->irq = platform_get_irq(pdev, 0);
|
||||
if (dd->irq < 0) {
|
||||
ret = dd->irq;
|
||||
dev_err(dev, "failed to could not get irq: %d\n", ret);
|
||||
return ret;
|
||||
}
|
||||
|
||||
dd->pclk = devm_clk_get(dev, "pclk");
|
||||
if (IS_ERR(dd->pclk)) {
|
||||
ret = PTR_ERR(dd->pclk);
|
||||
dev_err(dev, "failed to get peripheral clock: %d\n", ret);
|
||||
return ret;
|
||||
}
|
||||
|
||||
dd->gclk = devm_clk_get(dev, "gclk");
|
||||
if (IS_ERR(dd->gclk)) {
|
||||
ret = PTR_ERR(dd->gclk);
|
||||
dev_err(dev, "failed to get GCK: %d\n", ret);
|
||||
return ret;
|
||||
}
|
||||
|
||||
/* The gclk clock frequency must always be tree times
|
||||
* lower than the pclk clock frequency
|
||||
*/
|
||||
ret = clk_set_rate(dd->gclk, clk_get_rate(dd->pclk)/3);
|
||||
if (ret) {
|
||||
dev_err(dev, "failed to set GCK clock rate: %d\n", ret);
|
||||
return ret;
|
||||
}
|
||||
|
||||
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
||||
if (!res) {
|
||||
dev_err(dev, "no memory resource\n");
|
||||
return -ENXIO;
|
||||
}
|
||||
|
||||
io_base = devm_ioremap_resource(dev, res);
|
||||
if (IS_ERR(io_base)) {
|
||||
ret = PTR_ERR(io_base);
|
||||
dev_err(dev, "failed to remap register memory: %d\n", ret);
|
||||
return ret;
|
||||
}
|
||||
|
||||
dd->phy_base = res->start;
|
||||
|
||||
dd->regmap = devm_regmap_init_mmio(dev, io_base,
|
||||
&atmel_pdmic_regmap_config);
|
||||
if (IS_ERR(dd->regmap)) {
|
||||
ret = PTR_ERR(dd->regmap);
|
||||
dev_err(dev, "failed to init register map: %d\n", ret);
|
||||
return ret;
|
||||
}
|
||||
|
||||
ret = devm_request_irq(dev, dd->irq, atmel_pdmic_interrupt, 0,
|
||||
"PDMIC", (void *)dd);
|
||||
if (ret < 0) {
|
||||
dev_err(dev, "can't register ISR for IRQ %u (ret=%i)\n",
|
||||
dd->irq, ret);
|
||||
return ret;
|
||||
}
|
||||
|
||||
/* Get the minimal and maximal sample rate that micphone supports */
|
||||
atmel_pdmic_get_sample_rate(dd, &rate_min, &rate_max);
|
||||
|
||||
/* register cpu dai */
|
||||
atmel_pdmic_cpu_dai.capture.rate_min = rate_min;
|
||||
atmel_pdmic_cpu_dai.capture.rate_max = rate_max;
|
||||
ret = devm_snd_soc_register_component(dev,
|
||||
&atmel_pdmic_cpu_dai_component,
|
||||
&atmel_pdmic_cpu_dai, 1);
|
||||
if (ret) {
|
||||
dev_err(dev, "could not register CPU DAI: %d\n", ret);
|
||||
return ret;
|
||||
}
|
||||
|
||||
/* register platform */
|
||||
ret = devm_snd_dmaengine_pcm_register(dev,
|
||||
&atmel_pdmic_dmaengine_pcm_config,
|
||||
0);
|
||||
if (ret) {
|
||||
dev_err(dev, "could not register platform: %d\n", ret);
|
||||
return ret;
|
||||
}
|
||||
|
||||
/* register codec and codec dai */
|
||||
atmel_pdmic_codec_dai.capture.rate_min = rate_min;
|
||||
atmel_pdmic_codec_dai.capture.rate_max = rate_max;
|
||||
ret = snd_soc_register_codec(dev, &soc_codec_dev_pdmic,
|
||||
&atmel_pdmic_codec_dai, 1);
|
||||
if (ret) {
|
||||
dev_err(dev, "could not register codec: %d\n", ret);
|
||||
return ret;
|
||||
}
|
||||
|
||||
/* register sound card */
|
||||
card = devm_kzalloc(dev, sizeof(*card), GFP_KERNEL);
|
||||
if (!card) {
|
||||
ret = -ENOMEM;
|
||||
goto unregister_codec;
|
||||
}
|
||||
|
||||
snd_soc_card_set_drvdata(card, dd);
|
||||
platform_set_drvdata(pdev, card);
|
||||
|
||||
ret = atmel_pdmic_asoc_card_init(dev, card);
|
||||
if (ret) {
|
||||
dev_err(dev, "failed to init sound card: %d\n", ret);
|
||||
goto unregister_codec;
|
||||
}
|
||||
|
||||
ret = devm_snd_soc_register_card(dev, card);
|
||||
if (ret) {
|
||||
dev_err(dev, "failed to register sound card: %d\n", ret);
|
||||
goto unregister_codec;
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
||||
unregister_codec:
|
||||
snd_soc_unregister_codec(dev);
|
||||
return ret;
|
||||
}
|
||||
|
||||
static int atmel_pdmic_remove(struct platform_device *pdev)
|
||||
{
|
||||
snd_soc_unregister_codec(&pdev->dev);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static struct platform_driver atmel_pdmic_driver = {
|
||||
.driver = {
|
||||
.name = "atmel-pdmic",
|
||||
.of_match_table = of_match_ptr(atmel_pdmic_of_match),
|
||||
.pm = &snd_soc_pm_ops,
|
||||
},
|
||||
.probe = atmel_pdmic_probe,
|
||||
.remove = atmel_pdmic_remove,
|
||||
};
|
||||
module_platform_driver(atmel_pdmic_driver);
|
||||
|
||||
MODULE_DESCRIPTION("Atmel PDMIC driver under ALSA SoC architecture");
|
||||
MODULE_AUTHOR("Songjun Wu <songjun.wu@atmel.com>");
|
||||
MODULE_LICENSE("GPL v2");
|
|
@ -0,0 +1,80 @@
|
|||
#ifndef __ATMEL_PDMIC_H_
|
||||
#define __ATMEL_PDMIC_H_
|
||||
|
||||
#include <linux/bitops.h>
|
||||
|
||||
#define PDMIC_CR 0x00000000
|
||||
|
||||
#define PDMIC_CR_SWRST 0x1
|
||||
#define PDMIC_CR_SWRST_MASK BIT(0)
|
||||
#define PDMIC_CR_SWRST_SHIFT (0)
|
||||
|
||||
#define PDMIC_CR_ENPDM_DIS 0x0
|
||||
#define PDMIC_CR_ENPDM_EN 0x1
|
||||
#define PDMIC_CR_ENPDM_MASK BIT(4)
|
||||
#define PDMIC_CR_ENPDM_SHIFT (4)
|
||||
|
||||
#define PDMIC_MR 0x00000004
|
||||
|
||||
#define PDMIC_MR_CLKS_PCK 0x0
|
||||
#define PDMIC_MR_CLKS_GCK 0x1
|
||||
#define PDMIC_MR_CLKS_MASK BIT(4)
|
||||
#define PDMIC_MR_CLKS_SHIFT (4)
|
||||
|
||||
#define PDMIC_MR_PRESCAL_MASK GENMASK(14, 8)
|
||||
#define PDMIC_MR_PRESCAL_SHIFT (8)
|
||||
|
||||
#define PDMIC_CDR 0x00000014
|
||||
|
||||
#define PDMIC_IER 0x00000018
|
||||
#define PDMIC_IER_OVRE BIT(25)
|
||||
|
||||
#define PDMIC_IDR 0x0000001c
|
||||
#define PDMIC_IDR_OVRE BIT(25)
|
||||
|
||||
#define PDMIC_IMR 0x00000020
|
||||
|
||||
#define PDMIC_ISR 0x00000024
|
||||
#define PDMIC_ISR_OVRE BIT(25)
|
||||
|
||||
#define PDMIC_DSPR0 0x00000058
|
||||
|
||||
#define PDMIC_DSPR0_HPFBYP_DIS 0x1
|
||||
#define PDMIC_DSPR0_HPFBYP_EN 0x0
|
||||
#define PDMIC_DSPR0_HPFBYP_MASK BIT(1)
|
||||
#define PDMIC_DSPR0_HPFBYP_SHIFT (1)
|
||||
|
||||
#define PDMIC_DSPR0_SINBYP_DIS 0x1
|
||||
#define PDMIC_DSPR0_SINBYP_EN 0x0
|
||||
#define PDMIC_DSPR0_SINBYP_MASK BIT(2)
|
||||
#define PDMIC_DSPR0_SINBYP_SHIFT (2)
|
||||
|
||||
#define PDMIC_DSPR0_SIZE_16_BITS 0x0
|
||||
#define PDMIC_DSPR0_SIZE_32_BITS 0x1
|
||||
#define PDMIC_DSPR0_SIZE_MASK BIT(3)
|
||||
#define PDMIC_DSPR0_SIZE_SHIFT (3)
|
||||
|
||||
#define PDMIC_DSPR0_OSR_128 0x0
|
||||
#define PDMIC_DSPR0_OSR_64 0x1
|
||||
#define PDMIC_DSPR0_OSR_MASK GENMASK(6, 4)
|
||||
#define PDMIC_DSPR0_OSR_SHIFT (4)
|
||||
|
||||
#define PDMIC_DSPR0_SCALE_MASK GENMASK(11, 8)
|
||||
#define PDMIC_DSPR0_SCALE_SHIFT (8)
|
||||
|
||||
#define PDMIC_DSPR0_SHIFT_MASK GENMASK(15, 12)
|
||||
#define PDMIC_DSPR0_SHIFT_SHIFT (12)
|
||||
|
||||
#define PDMIC_DSPR1 0x0000005c
|
||||
|
||||
#define PDMIC_DSPR1_DGAIN_MASK GENMASK(14, 0)
|
||||
#define PDMIC_DSPR1_DGAIN_SHIFT (0)
|
||||
|
||||
#define PDMIC_DSPR1_OFFSET_MASK GENMASK(31, 16)
|
||||
#define PDMIC_DSPR1_OFFSET_SHIFT (16)
|
||||
|
||||
#define PDMIC_WPMR 0x000000e4
|
||||
|
||||
#define PDMIC_WPSR 0x000000e8
|
||||
|
||||
#endif
|
|
@ -183,6 +183,7 @@ static struct platform_driver atmel_asoc_wm8904_driver = {
|
|||
.driver = {
|
||||
.name = "atmel-wm8904-audio",
|
||||
.of_match_table = of_match_ptr(atmel_asoc_wm8904_dt_ids),
|
||||
.pm = &snd_soc_pm_ops,
|
||||
},
|
||||
.probe = atmel_asoc_wm8904_probe,
|
||||
.remove = atmel_asoc_wm8904_remove,
|
||||
|
|
|
@ -55,6 +55,7 @@ config SND_SOC_ALL_CODECS
|
|||
select SND_SOC_CS4271_SPI if SPI_MASTER
|
||||
select SND_SOC_CS42XX8_I2C if I2C
|
||||
select SND_SOC_CS4349 if I2C
|
||||
select SND_SOC_CS47L24 if MFD_CS47L24
|
||||
select SND_SOC_CX20442 if TTY
|
||||
select SND_SOC_DA7210 if SND_SOC_I2C_AND_SPI
|
||||
select SND_SOC_DA7213 if I2C
|
||||
|
@ -197,10 +198,12 @@ config SND_SOC_88PM860X
|
|||
|
||||
config SND_SOC_ARIZONA
|
||||
tristate
|
||||
default y if SND_SOC_CS47L24=y
|
||||
default y if SND_SOC_WM5102=y
|
||||
default y if SND_SOC_WM5110=y
|
||||
default y if SND_SOC_WM8997=y
|
||||
default y if SND_SOC_WM8998=y
|
||||
default m if SND_SOC_CS47L24=m
|
||||
default m if SND_SOC_WM5102=m
|
||||
default m if SND_SOC_WM5110=m
|
||||
default m if SND_SOC_WM8997=m
|
||||
|
@ -213,9 +216,12 @@ config SND_SOC_WM_HUBS
|
|||
|
||||
config SND_SOC_WM_ADSP
|
||||
tristate
|
||||
select SND_SOC_COMPRESS
|
||||
default y if SND_SOC_CS47L24=y
|
||||
default y if SND_SOC_WM5102=y
|
||||
default y if SND_SOC_WM5110=y
|
||||
default y if SND_SOC_WM2200=y
|
||||
default m if SND_SOC_CS47L24=m
|
||||
default m if SND_SOC_WM5102=m
|
||||
default m if SND_SOC_WM5110=m
|
||||
default m if SND_SOC_WM2200=m
|
||||
|
@ -424,6 +430,9 @@ config SND_SOC_CS4349
|
|||
tristate "Cirrus Logic CS4349 CODEC"
|
||||
depends on I2C
|
||||
|
||||
config SND_SOC_CS47L24
|
||||
tristate
|
||||
|
||||
config SND_SOC_CX20442
|
||||
tristate
|
||||
depends on TTY
|
||||
|
|
|
@ -47,6 +47,7 @@ snd-soc-cs4271-spi-objs := cs4271-spi.o
|
|||
snd-soc-cs42xx8-objs := cs42xx8.o
|
||||
snd-soc-cs42xx8-i2c-objs := cs42xx8-i2c.o
|
||||
snd-soc-cs4349-objs := cs4349.o
|
||||
snd-soc-cs47l24-objs := cs47l24.o
|
||||
snd-soc-cx20442-objs := cx20442.o
|
||||
snd-soc-da7210-objs := da7210.o
|
||||
snd-soc-da7213-objs := da7213.o
|
||||
|
@ -245,6 +246,7 @@ obj-$(CONFIG_SND_SOC_CS4271_SPI) += snd-soc-cs4271-spi.o
|
|||
obj-$(CONFIG_SND_SOC_CS42XX8) += snd-soc-cs42xx8.o
|
||||
obj-$(CONFIG_SND_SOC_CS42XX8_I2C) += snd-soc-cs42xx8-i2c.o
|
||||
obj-$(CONFIG_SND_SOC_CS4349) += snd-soc-cs4349.o
|
||||
obj-$(CONFIG_SND_SOC_CS47L24) += snd-soc-cs47l24.o
|
||||
obj-$(CONFIG_SND_SOC_CX20442) += snd-soc-cx20442.o
|
||||
obj-$(CONFIG_SND_SOC_DA7210) += snd-soc-da7210.o
|
||||
obj-$(CONFIG_SND_SOC_DA7213) += snd-soc-da7213.o
|
||||
|
|
|
@ -70,18 +70,11 @@
|
|||
#define FMT_MASK (0xf8)
|
||||
|
||||
/* CTRL2 */
|
||||
#define DFS_MASK (3 << 2)
|
||||
#define DFS_NORMAL_SPEED (0 << 2)
|
||||
#define DFS_DOUBLE_SPEED (1 << 2)
|
||||
#define DFS_QUAD_SPEED (2 << 2)
|
||||
|
||||
struct ak4613_priv {
|
||||
struct mutex lock;
|
||||
|
||||
unsigned int fmt;
|
||||
u8 fmt_ctrl;
|
||||
int cnt;
|
||||
};
|
||||
|
||||
struct ak4613_formats {
|
||||
unsigned int width;
|
||||
unsigned int fmt;
|
||||
|
@ -92,6 +85,16 @@ struct ak4613_interface {
|
|||
struct ak4613_formats playback;
|
||||
};
|
||||
|
||||
struct ak4613_priv {
|
||||
struct mutex lock;
|
||||
const struct ak4613_interface *iface;
|
||||
|
||||
unsigned int fmt;
|
||||
u8 oc;
|
||||
u8 ic;
|
||||
int cnt;
|
||||
};
|
||||
|
||||
/*
|
||||
* Playback Volume
|
||||
*
|
||||
|
@ -126,7 +129,7 @@ static const struct reg_default ak4613_reg[] = {
|
|||
{ 0x14, 0x00 }, { 0x15, 0x00 }, { 0x16, 0x00 },
|
||||
};
|
||||
|
||||
#define AUDIO_IFACE_IDX_TO_VAL(i) (i << 3)
|
||||
#define AUDIO_IFACE_TO_VAL(fmts) ((fmts - ak4613_iface) << 3)
|
||||
#define AUDIO_IFACE(b, fmt) { b, SND_SOC_DAIFMT_##fmt }
|
||||
static const struct ak4613_interface ak4613_iface[] = {
|
||||
/* capture */ /* playback */
|
||||
|
@ -240,7 +243,7 @@ static void ak4613_dai_shutdown(struct snd_pcm_substream *substream,
|
|||
priv->cnt = 0;
|
||||
}
|
||||
if (!priv->cnt)
|
||||
priv->fmt_ctrl = NO_FMT;
|
||||
priv->iface = NULL;
|
||||
mutex_unlock(&priv->lock);
|
||||
}
|
||||
|
||||
|
@ -265,13 +268,35 @@ static int ak4613_dai_set_fmt(struct snd_soc_dai *dai, unsigned int fmt)
|
|||
return 0;
|
||||
}
|
||||
|
||||
static bool ak4613_dai_fmt_matching(const struct ak4613_interface *iface,
|
||||
int is_play,
|
||||
unsigned int fmt, unsigned int width)
|
||||
{
|
||||
const struct ak4613_formats *fmts;
|
||||
|
||||
fmts = (is_play) ? &iface->playback : &iface->capture;
|
||||
|
||||
if (fmts->fmt != fmt)
|
||||
return false;
|
||||
|
||||
if (fmt == SND_SOC_DAIFMT_RIGHT_J) {
|
||||
if (fmts->width != width)
|
||||
return false;
|
||||
} else {
|
||||
if (fmts->width < width)
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
static int ak4613_dai_hw_params(struct snd_pcm_substream *substream,
|
||||
struct snd_pcm_hw_params *params,
|
||||
struct snd_soc_dai *dai)
|
||||
{
|
||||
struct snd_soc_codec *codec = dai->codec;
|
||||
struct ak4613_priv *priv = snd_soc_codec_get_drvdata(codec);
|
||||
const struct ak4613_formats *fmts;
|
||||
const struct ak4613_interface *iface;
|
||||
struct device *dev = codec->dev;
|
||||
unsigned int width = params_width(params);
|
||||
unsigned int fmt = priv->fmt;
|
||||
|
@ -305,33 +330,27 @@ static int ak4613_dai_hw_params(struct snd_pcm_substream *substream,
|
|||
* It doesn't support TDM at this point
|
||||
*/
|
||||
fmt_ctrl = NO_FMT;
|
||||
for (i = 0; i < ARRAY_SIZE(ak4613_iface); i++) {
|
||||
fmts = (is_play) ? &ak4613_iface[i].playback :
|
||||
&ak4613_iface[i].capture;
|
||||
|
||||
if (fmts->fmt != fmt)
|
||||
continue;
|
||||
|
||||
if (fmt == SND_SOC_DAIFMT_RIGHT_J) {
|
||||
if (fmts->width != width)
|
||||
continue;
|
||||
} else {
|
||||
if (fmts->width < width)
|
||||
continue;
|
||||
}
|
||||
|
||||
fmt_ctrl = AUDIO_IFACE_IDX_TO_VAL(i);
|
||||
break;
|
||||
}
|
||||
|
||||
ret = -EINVAL;
|
||||
if (fmt_ctrl == NO_FMT)
|
||||
goto hw_params_end;
|
||||
iface = NULL;
|
||||
|
||||
mutex_lock(&priv->lock);
|
||||
if ((priv->fmt_ctrl == NO_FMT) ||
|
||||
(priv->fmt_ctrl == fmt_ctrl)) {
|
||||
priv->fmt_ctrl = fmt_ctrl;
|
||||
if (priv->iface) {
|
||||
if (ak4613_dai_fmt_matching(priv->iface, is_play, fmt, width))
|
||||
iface = priv->iface;
|
||||
} else {
|
||||
for (i = ARRAY_SIZE(ak4613_iface); i >= 0; i--) {
|
||||
if (!ak4613_dai_fmt_matching(ak4613_iface + i,
|
||||
is_play,
|
||||
fmt, width))
|
||||
continue;
|
||||
iface = ak4613_iface + i;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if ((priv->iface == NULL) ||
|
||||
(priv->iface == iface)) {
|
||||
priv->iface = iface;
|
||||
priv->cnt++;
|
||||
ret = 0;
|
||||
}
|
||||
|
@ -340,8 +359,13 @@ static int ak4613_dai_hw_params(struct snd_pcm_substream *substream,
|
|||
if (ret < 0)
|
||||
goto hw_params_end;
|
||||
|
||||
fmt_ctrl = AUDIO_IFACE_TO_VAL(iface);
|
||||
|
||||
snd_soc_update_bits(codec, CTRL1, FMT_MASK, fmt_ctrl);
|
||||
snd_soc_write(codec, CTRL2, ctrl2);
|
||||
snd_soc_update_bits(codec, CTRL2, DFS_MASK, ctrl2);
|
||||
|
||||
snd_soc_write(codec, ICTRL, priv->ic);
|
||||
snd_soc_write(codec, OCTRL, priv->oc);
|
||||
|
||||
hw_params_end:
|
||||
if (ret < 0)
|
||||
|
@ -431,6 +455,28 @@ static struct snd_soc_codec_driver soc_codec_dev_ak4613 = {
|
|||
.num_dapm_routes = ARRAY_SIZE(ak4613_intercon),
|
||||
};
|
||||
|
||||
static void ak4613_parse_of(struct ak4613_priv *priv,
|
||||
struct device *dev)
|
||||
{
|
||||
struct device_node *np = dev->of_node;
|
||||
char prop[32];
|
||||
int i;
|
||||
|
||||
/* Input 1 - 2 */
|
||||
for (i = 0; i < 2; i++) {
|
||||
snprintf(prop, sizeof(prop), "asahi-kasei,in%d-single-end", i + 1);
|
||||
if (!of_get_property(np, prop, NULL))
|
||||
priv->ic |= 1 << i;
|
||||
}
|
||||
|
||||
/* Output 1 - 6 */
|
||||
for (i = 0; i < 6; i++) {
|
||||
snprintf(prop, sizeof(prop), "asahi-kasei,out%d-single-end", i + 1);
|
||||
if (!of_get_property(np, prop, NULL))
|
||||
priv->oc |= 1 << i;
|
||||
}
|
||||
}
|
||||
|
||||
static int ak4613_i2c_probe(struct i2c_client *i2c,
|
||||
const struct i2c_device_id *id)
|
||||
{
|
||||
|
@ -458,7 +504,9 @@ static int ak4613_i2c_probe(struct i2c_client *i2c,
|
|||
if (!priv)
|
||||
return -ENOMEM;
|
||||
|
||||
priv->fmt_ctrl = NO_FMT;
|
||||
ak4613_parse_of(priv, dev);
|
||||
|
||||
priv->iface = NULL;
|
||||
priv->cnt = 0;
|
||||
|
||||
mutex_init(&priv->lock);
|
||||
|
|
|
@ -57,7 +57,7 @@
|
|||
#define ARIZONA_CLK_98MHZ 5
|
||||
#define ARIZONA_CLK_147MHZ 6
|
||||
|
||||
#define ARIZONA_MAX_DAI 6
|
||||
#define ARIZONA_MAX_DAI 8
|
||||
#define ARIZONA_MAX_ADSP 4
|
||||
|
||||
#define ARIZONA_DVFS_SR1_RQ 0x001
|
||||
|
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -0,0 +1,23 @@
|
|||
/*
|
||||
* cs47l24.h -- ALSA SoC Audio driver for Cirrus Logic CS47L24
|
||||
*
|
||||
* Copyright 2015 Cirrus Logic Inc.
|
||||
*
|
||||
* Author: Richard Fitzgerald <rf@opensource.wolfsonmicro.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License version 2 as
|
||||
* published by the Free Software Foundation.
|
||||
*/
|
||||
|
||||
#ifndef _CS47L24_H
|
||||
#define _CS47L24_H
|
||||
|
||||
#include "arizona.h"
|
||||
|
||||
#define CS47L24_FLL1 1
|
||||
#define CS47L24_FLL2 2
|
||||
#define CS47L24_FLL1_REFCLK 3
|
||||
#define CS47L24_FLL2_REFCLK 4
|
||||
|
||||
#endif
|
|
@ -1810,6 +1810,9 @@ static const struct snd_soc_dapm_route wm5110_dapm_routes[] = {
|
|||
{ "Slim2 Capture", NULL, "SYSCLK" },
|
||||
{ "Slim3 Capture", NULL, "SYSCLK" },
|
||||
|
||||
{ "Voice Control DSP", NULL, "DSP3" },
|
||||
{ "Voice Control DSP", NULL, "SYSCLK" },
|
||||
|
||||
{ "IN1L PGA", NULL, "IN1L" },
|
||||
{ "IN1R PGA", NULL, "IN1R" },
|
||||
|
||||
|
@ -2132,8 +2135,48 @@ static struct snd_soc_dai_driver wm5110_dai[] = {
|
|||
},
|
||||
.ops = &arizona_simple_dai_ops,
|
||||
},
|
||||
{
|
||||
.name = "wm5110-cpu-voicectrl",
|
||||
.capture = {
|
||||
.stream_name = "Voice Control CPU",
|
||||
.channels_min = 1,
|
||||
.channels_max = 1,
|
||||
.rates = WM5110_RATES,
|
||||
.formats = WM5110_FORMATS,
|
||||
},
|
||||
.compress_new = snd_soc_new_compress,
|
||||
},
|
||||
{
|
||||
.name = "wm5110-dsp-voicectrl",
|
||||
.capture = {
|
||||
.stream_name = "Voice Control DSP",
|
||||
.channels_min = 1,
|
||||
.channels_max = 1,
|
||||
.rates = WM5110_RATES,
|
||||
.formats = WM5110_FORMATS,
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
static int wm5110_open(struct snd_compr_stream *stream)
|
||||
{
|
||||
struct snd_soc_pcm_runtime *rtd = stream->private_data;
|
||||
struct wm5110_priv *priv = snd_soc_codec_get_drvdata(rtd->codec);
|
||||
struct arizona *arizona = priv->core.arizona;
|
||||
int n_adsp;
|
||||
|
||||
if (strcmp(rtd->codec_dai->name, "wm5110-dsp-voicectrl") == 0) {
|
||||
n_adsp = 2;
|
||||
} else {
|
||||
dev_err(arizona->dev,
|
||||
"No suitable compressed stream for DAI '%s'\n",
|
||||
rtd->codec_dai->name);
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
return wm_adsp_compr_open(&priv->core.adsp[n_adsp], stream);
|
||||
}
|
||||
|
||||
static int wm5110_codec_probe(struct snd_soc_codec *codec)
|
||||
{
|
||||
struct snd_soc_dapm_context *dapm = snd_soc_codec_get_dapm(codec);
|
||||
|
@ -2224,6 +2267,18 @@ static struct snd_soc_codec_driver soc_codec_dev_wm5110 = {
|
|||
.num_dapm_routes = ARRAY_SIZE(wm5110_dapm_routes),
|
||||
};
|
||||
|
||||
static struct snd_compr_ops wm5110_compr_ops = {
|
||||
.open = wm5110_open,
|
||||
.free = wm_adsp_compr_free,
|
||||
.set_params = wm_adsp_compr_set_params,
|
||||
.get_caps = wm_adsp_compr_get_caps,
|
||||
.trigger = wm_adsp_compr_trigger,
|
||||
};
|
||||
|
||||
static struct snd_soc_platform_driver wm5110_compr_platform = {
|
||||
.compr_ops = &wm5110_compr_ops,
|
||||
};
|
||||
|
||||
static int wm5110_probe(struct platform_device *pdev)
|
||||
{
|
||||
struct arizona *arizona = dev_get_drvdata(pdev->dev.parent);
|
||||
|
@ -2284,8 +2339,21 @@ static int wm5110_probe(struct platform_device *pdev)
|
|||
pm_runtime_enable(&pdev->dev);
|
||||
pm_runtime_idle(&pdev->dev);
|
||||
|
||||
return snd_soc_register_codec(&pdev->dev, &soc_codec_dev_wm5110,
|
||||
ret = snd_soc_register_platform(&pdev->dev, &wm5110_compr_platform);
|
||||
if (ret < 0) {
|
||||
dev_err(&pdev->dev, "Failed to register platform: %d\n", ret);
|
||||
goto error;
|
||||
}
|
||||
|
||||
ret = snd_soc_register_codec(&pdev->dev, &soc_codec_dev_wm5110,
|
||||
wm5110_dai, ARRAY_SIZE(wm5110_dai));
|
||||
if (ret < 0) {
|
||||
dev_err(&pdev->dev, "Failed to register codec: %d\n", ret);
|
||||
snd_soc_unregister_platform(&pdev->dev);
|
||||
}
|
||||
|
||||
error:
|
||||
return ret;
|
||||
}
|
||||
|
||||
static int wm5110_remove(struct platform_device *pdev)
|
||||
|
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -15,6 +15,7 @@
|
|||
|
||||
#include <sound/soc.h>
|
||||
#include <sound/soc-dapm.h>
|
||||
#include <sound/compress_driver.h>
|
||||
|
||||
#include "wmfw.h"
|
||||
|
||||
|
@ -30,6 +31,9 @@ struct wm_adsp_alg_region {
|
|||
unsigned int base;
|
||||
};
|
||||
|
||||
struct wm_adsp_compr;
|
||||
struct wm_adsp_compr_buf;
|
||||
|
||||
struct wm_adsp {
|
||||
const char *part;
|
||||
int num;
|
||||
|
@ -45,8 +49,8 @@ struct wm_adsp {
|
|||
|
||||
struct list_head alg_regions;
|
||||
|
||||
int fw_id;
|
||||
int fw_id_version;
|
||||
unsigned int fw_id;
|
||||
unsigned int fw_id_version;
|
||||
|
||||
const struct wm_adsp_region *mem;
|
||||
int num_mems;
|
||||
|
@ -59,9 +63,13 @@ struct wm_adsp {
|
|||
|
||||
struct work_struct boot_work;
|
||||
|
||||
struct wm_adsp_compr *compr;
|
||||
struct wm_adsp_compr_buf *buffer;
|
||||
|
||||
struct mutex pwr_lock;
|
||||
|
||||
#ifdef CONFIG_DEBUG_FS
|
||||
struct dentry *debugfs_root;
|
||||
struct mutex debugfs_lock;
|
||||
char *wmfw_file_name;
|
||||
char *bin_file_name;
|
||||
#endif
|
||||
|
@ -96,4 +104,13 @@ int wm_adsp2_early_event(struct snd_soc_dapm_widget *w,
|
|||
int wm_adsp2_event(struct snd_soc_dapm_widget *w,
|
||||
struct snd_kcontrol *kcontrol, int event);
|
||||
|
||||
extern int wm_adsp_compr_open(struct wm_adsp *dsp,
|
||||
struct snd_compr_stream *stream);
|
||||
extern int wm_adsp_compr_free(struct snd_compr_stream *stream);
|
||||
extern int wm_adsp_compr_set_params(struct snd_compr_stream *stream,
|
||||
struct snd_compr_params *params);
|
||||
extern int wm_adsp_compr_get_caps(struct snd_compr_stream *stream,
|
||||
struct snd_compr_caps *caps);
|
||||
extern int wm_adsp_compr_trigger(struct snd_compr_stream *stream, int cmd);
|
||||
|
||||
#endif
|
||||
|
|
|
@ -20,6 +20,7 @@
|
|||
#include <linux/delay.h>
|
||||
#include <linux/export.h>
|
||||
#include <linux/gpio.h>
|
||||
#include <linux/gpio/driver.h>
|
||||
#include <linux/init.h>
|
||||
#include <linux/of_gpio.h>
|
||||
#include <linux/of.h>
|
||||
|
@ -38,6 +39,14 @@ struct snd_ac97_reset_cfg {
|
|||
int gpio_reset;
|
||||
};
|
||||
|
||||
struct snd_ac97_gpio_priv {
|
||||
#ifdef CONFIG_GPIOLIB
|
||||
struct gpio_chip gpio_chip;
|
||||
#endif
|
||||
unsigned int gpios_set;
|
||||
struct snd_soc_codec *codec;
|
||||
};
|
||||
|
||||
static struct snd_ac97_bus soc_ac97_bus = {
|
||||
.ops = NULL, /* Gets initialized in snd_soc_set_ac97_ops() */
|
||||
};
|
||||
|
@ -47,6 +56,117 @@ static void soc_ac97_device_release(struct device *dev)
|
|||
kfree(to_ac97_t(dev));
|
||||
}
|
||||
|
||||
#ifdef CONFIG_GPIOLIB
|
||||
static inline struct snd_soc_codec *gpio_to_codec(struct gpio_chip *chip)
|
||||
{
|
||||
struct snd_ac97_gpio_priv *gpio_priv =
|
||||
container_of(chip, struct snd_ac97_gpio_priv, gpio_chip);
|
||||
|
||||
return gpio_priv->codec;
|
||||
}
|
||||
|
||||
static int snd_soc_ac97_gpio_request(struct gpio_chip *chip, unsigned offset)
|
||||
{
|
||||
if (offset >= AC97_NUM_GPIOS)
|
||||
return -EINVAL;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int snd_soc_ac97_gpio_direction_in(struct gpio_chip *chip,
|
||||
unsigned offset)
|
||||
{
|
||||
struct snd_soc_codec *codec = gpio_to_codec(chip);
|
||||
|
||||
dev_dbg(codec->dev, "set gpio %d to output\n", offset);
|
||||
return snd_soc_update_bits(codec, AC97_GPIO_CFG,
|
||||
1 << offset, 1 << offset);
|
||||
}
|
||||
|
||||
static int snd_soc_ac97_gpio_get(struct gpio_chip *chip, unsigned offset)
|
||||
{
|
||||
struct snd_soc_codec *codec = gpio_to_codec(chip);
|
||||
int ret;
|
||||
|
||||
ret = snd_soc_read(codec, AC97_GPIO_STATUS);
|
||||
dev_dbg(codec->dev, "get gpio %d : %d\n", offset,
|
||||
ret < 0 ? ret : ret & (1 << offset));
|
||||
|
||||
return ret < 0 ? ret : !!(ret & (1 << offset));
|
||||
}
|
||||
|
||||
static void snd_soc_ac97_gpio_set(struct gpio_chip *chip, unsigned offset,
|
||||
int value)
|
||||
{
|
||||
struct snd_ac97_gpio_priv *gpio_priv =
|
||||
container_of(chip, struct snd_ac97_gpio_priv, gpio_chip);
|
||||
struct snd_soc_codec *codec = gpio_to_codec(chip);
|
||||
|
||||
gpio_priv->gpios_set &= ~(1 << offset);
|
||||
gpio_priv->gpios_set |= (!!value) << offset;
|
||||
snd_soc_write(codec, AC97_GPIO_STATUS, gpio_priv->gpios_set);
|
||||
dev_dbg(codec->dev, "set gpio %d to %d\n", offset, !!value);
|
||||
}
|
||||
|
||||
static int snd_soc_ac97_gpio_direction_out(struct gpio_chip *chip,
|
||||
unsigned offset, int value)
|
||||
{
|
||||
struct snd_soc_codec *codec = gpio_to_codec(chip);
|
||||
|
||||
dev_dbg(codec->dev, "set gpio %d to output\n", offset);
|
||||
snd_soc_ac97_gpio_set(chip, offset, value);
|
||||
return snd_soc_update_bits(codec, AC97_GPIO_CFG, 1 << offset, 0);
|
||||
}
|
||||
|
||||
static struct gpio_chip snd_soc_ac97_gpio_chip = {
|
||||
.label = "snd_soc_ac97",
|
||||
.owner = THIS_MODULE,
|
||||
.request = snd_soc_ac97_gpio_request,
|
||||
.direction_input = snd_soc_ac97_gpio_direction_in,
|
||||
.get = snd_soc_ac97_gpio_get,
|
||||
.direction_output = snd_soc_ac97_gpio_direction_out,
|
||||
.set = snd_soc_ac97_gpio_set,
|
||||
.can_sleep = 1,
|
||||
};
|
||||
|
||||
static int snd_soc_ac97_init_gpio(struct snd_ac97 *ac97,
|
||||
struct snd_soc_codec *codec)
|
||||
{
|
||||
struct snd_ac97_gpio_priv *gpio_priv;
|
||||
int ret;
|
||||
|
||||
gpio_priv = devm_kzalloc(codec->dev, sizeof(*gpio_priv), GFP_KERNEL);
|
||||
if (!gpio_priv)
|
||||
return -ENOMEM;
|
||||
ac97->gpio_priv = gpio_priv;
|
||||
gpio_priv->codec = codec;
|
||||
gpio_priv->gpio_chip = snd_soc_ac97_gpio_chip;
|
||||
gpio_priv->gpio_chip.ngpio = AC97_NUM_GPIOS;
|
||||
gpio_priv->gpio_chip.dev = codec->dev;
|
||||
gpio_priv->gpio_chip.base = -1;
|
||||
|
||||
ret = gpiochip_add(&gpio_priv->gpio_chip);
|
||||
if (ret != 0)
|
||||
dev_err(codec->dev, "Failed to add GPIOs: %d\n", ret);
|
||||
return ret;
|
||||
}
|
||||
|
||||
static void snd_soc_ac97_free_gpio(struct snd_ac97 *ac97)
|
||||
{
|
||||
gpiochip_remove(&ac97->gpio_priv->gpio_chip);
|
||||
}
|
||||
#else
|
||||
static int snd_soc_ac97_init_gpio(struct snd_ac97 *ac97,
|
||||
struct snd_soc_codec *codec)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void snd_soc_ac97_free_gpio(struct snd_ac97 *ac97)
|
||||
{
|
||||
}
|
||||
#endif
|
||||
|
||||
/**
|
||||
* snd_soc_alloc_ac97_codec() - Allocate new a AC'97 device
|
||||
* @codec: The CODEC for which to create the AC'97 device
|
||||
|
@ -119,6 +239,10 @@ struct snd_ac97 *snd_soc_new_ac97_codec(struct snd_soc_codec *codec,
|
|||
if (ret)
|
||||
goto err_put_device;
|
||||
|
||||
ret = snd_soc_ac97_init_gpio(ac97, codec);
|
||||
if (ret)
|
||||
goto err_put_device;
|
||||
|
||||
return ac97;
|
||||
|
||||
err_put_device:
|
||||
|
@ -135,6 +259,7 @@ EXPORT_SYMBOL_GPL(snd_soc_new_ac97_codec);
|
|||
*/
|
||||
void snd_soc_free_ac97_codec(struct snd_ac97 *ac97)
|
||||
{
|
||||
snd_soc_ac97_free_gpio(ac97);
|
||||
device_del(&ac97->dev);
|
||||
ac97->bus = NULL;
|
||||
put_device(&ac97->dev);
|
||||
|
|
Загрузка…
Ссылка в новой задаче