|
@@ -183,111 +183,20 @@ static const u16 wm8900_reg_defaults[WM8900_MAXREG] = {
|
|
/* Remaining registers all zero */
|
|
/* Remaining registers all zero */
|
|
};
|
|
};
|
|
|
|
|
|
-/*
|
|
|
|
- * read wm8900 register cache
|
|
|
|
- */
|
|
|
|
-static inline unsigned int wm8900_read_reg_cache(struct snd_soc_codec *codec,
|
|
|
|
- unsigned int reg)
|
|
|
|
-{
|
|
|
|
- u16 *cache = codec->reg_cache;
|
|
|
|
-
|
|
|
|
- BUG_ON(reg >= WM8900_MAXREG);
|
|
|
|
-
|
|
|
|
- if (reg == WM8900_REG_ID)
|
|
|
|
- return 0;
|
|
|
|
-
|
|
|
|
- return cache[reg];
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-/*
|
|
|
|
- * write wm8900 register cache
|
|
|
|
- */
|
|
|
|
-static inline void wm8900_write_reg_cache(struct snd_soc_codec *codec,
|
|
|
|
- u16 reg, unsigned int value)
|
|
|
|
-{
|
|
|
|
- u16 *cache = codec->reg_cache;
|
|
|
|
-
|
|
|
|
- BUG_ON(reg >= WM8900_MAXREG);
|
|
|
|
-
|
|
|
|
- cache[reg] = value;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-/*
|
|
|
|
- * write to the WM8900 register space
|
|
|
|
- */
|
|
|
|
-static int wm8900_write(struct snd_soc_codec *codec, unsigned int reg,
|
|
|
|
- unsigned int value)
|
|
|
|
-{
|
|
|
|
- u8 data[3];
|
|
|
|
-
|
|
|
|
- if (value == wm8900_read_reg_cache(codec, reg))
|
|
|
|
- return 0;
|
|
|
|
-
|
|
|
|
- /* data is
|
|
|
|
- * D15..D9 WM8900 register offset
|
|
|
|
- * D8...D0 register data
|
|
|
|
- */
|
|
|
|
- data[0] = reg;
|
|
|
|
- data[1] = value >> 8;
|
|
|
|
- data[2] = value & 0x00ff;
|
|
|
|
-
|
|
|
|
- wm8900_write_reg_cache(codec, reg, value);
|
|
|
|
- if (codec->hw_write(codec->control_data, data, 3) == 3)
|
|
|
|
- return 0;
|
|
|
|
- else
|
|
|
|
- return -EIO;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-/*
|
|
|
|
- * Read from the wm8900.
|
|
|
|
- */
|
|
|
|
-static unsigned int wm8900_chip_read(struct snd_soc_codec *codec, u8 reg)
|
|
|
|
-{
|
|
|
|
- struct i2c_msg xfer[2];
|
|
|
|
- u16 data;
|
|
|
|
- int ret;
|
|
|
|
- struct i2c_client *client = codec->control_data;
|
|
|
|
-
|
|
|
|
- BUG_ON(reg != WM8900_REG_ID && reg != WM8900_REG_POWER1);
|
|
|
|
-
|
|
|
|
- /* Write register */
|
|
|
|
- xfer[0].addr = client->addr;
|
|
|
|
- xfer[0].flags = 0;
|
|
|
|
- xfer[0].len = 1;
|
|
|
|
- xfer[0].buf = ®
|
|
|
|
-
|
|
|
|
- /* Read data */
|
|
|
|
- xfer[1].addr = client->addr;
|
|
|
|
- xfer[1].flags = I2C_M_RD;
|
|
|
|
- xfer[1].len = 2;
|
|
|
|
- xfer[1].buf = (u8 *)&data;
|
|
|
|
-
|
|
|
|
- ret = i2c_transfer(client->adapter, xfer, 2);
|
|
|
|
- if (ret != 2) {
|
|
|
|
- printk(KERN_CRIT "i2c_transfer returned %d\n", ret);
|
|
|
|
- return 0;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- return (data >> 8) | ((data & 0xff) << 8);
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-/*
|
|
|
|
- * Read from the WM8900 register space. Most registers can't be read
|
|
|
|
- * and are therefore supplied from cache.
|
|
|
|
- */
|
|
|
|
-static unsigned int wm8900_read(struct snd_soc_codec *codec, unsigned int reg)
|
|
|
|
|
|
+static int wm8900_volatile_register(unsigned int reg)
|
|
{
|
|
{
|
|
switch (reg) {
|
|
switch (reg) {
|
|
case WM8900_REG_ID:
|
|
case WM8900_REG_ID:
|
|
- return wm8900_chip_read(codec, reg);
|
|
|
|
|
|
+ case WM8900_REG_POWER1:
|
|
|
|
+ return 1;
|
|
default:
|
|
default:
|
|
- return wm8900_read_reg_cache(codec, reg);
|
|
|
|
|
|
+ return 0;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
static void wm8900_reset(struct snd_soc_codec *codec)
|
|
static void wm8900_reset(struct snd_soc_codec *codec)
|
|
{
|
|
{
|
|
- wm8900_write(codec, WM8900_REG_RESET, 0);
|
|
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_RESET, 0);
|
|
|
|
|
|
memcpy(codec->reg_cache, wm8900_reg_defaults,
|
|
memcpy(codec->reg_cache, wm8900_reg_defaults,
|
|
sizeof(codec->reg_cache));
|
|
sizeof(codec->reg_cache));
|
|
@@ -297,14 +206,14 @@ static int wm8900_hp_event(struct snd_soc_dapm_widget *w,
|
|
struct snd_kcontrol *kcontrol, int event)
|
|
struct snd_kcontrol *kcontrol, int event)
|
|
{
|
|
{
|
|
struct snd_soc_codec *codec = w->codec;
|
|
struct snd_soc_codec *codec = w->codec;
|
|
- u16 hpctl1 = wm8900_read(codec, WM8900_REG_HPCTL1);
|
|
|
|
|
|
+ u16 hpctl1 = snd_soc_read(codec, WM8900_REG_HPCTL1);
|
|
|
|
|
|
switch (event) {
|
|
switch (event) {
|
|
case SND_SOC_DAPM_PRE_PMU:
|
|
case SND_SOC_DAPM_PRE_PMU:
|
|
/* Clamp headphone outputs */
|
|
/* Clamp headphone outputs */
|
|
hpctl1 = WM8900_REG_HPCTL1_HP_CLAMP_IP |
|
|
hpctl1 = WM8900_REG_HPCTL1_HP_CLAMP_IP |
|
|
WM8900_REG_HPCTL1_HP_CLAMP_OP;
|
|
WM8900_REG_HPCTL1_HP_CLAMP_OP;
|
|
- wm8900_write(codec, WM8900_REG_HPCTL1, hpctl1);
|
|
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_HPCTL1, hpctl1);
|
|
break;
|
|
break;
|
|
|
|
|
|
case SND_SOC_DAPM_POST_PMU:
|
|
case SND_SOC_DAPM_POST_PMU:
|
|
@@ -313,41 +222,41 @@ static int wm8900_hp_event(struct snd_soc_dapm_widget *w,
|
|
hpctl1 |= WM8900_REG_HPCTL1_HP_SHORT |
|
|
hpctl1 |= WM8900_REG_HPCTL1_HP_SHORT |
|
|
WM8900_REG_HPCTL1_HP_SHORT2 |
|
|
WM8900_REG_HPCTL1_HP_SHORT2 |
|
|
WM8900_REG_HPCTL1_HP_IPSTAGE_ENA;
|
|
WM8900_REG_HPCTL1_HP_IPSTAGE_ENA;
|
|
- wm8900_write(codec, WM8900_REG_HPCTL1, hpctl1);
|
|
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_HPCTL1, hpctl1);
|
|
|
|
|
|
msleep(400);
|
|
msleep(400);
|
|
|
|
|
|
/* Enable the output stage */
|
|
/* Enable the output stage */
|
|
hpctl1 &= ~WM8900_REG_HPCTL1_HP_CLAMP_OP;
|
|
hpctl1 &= ~WM8900_REG_HPCTL1_HP_CLAMP_OP;
|
|
hpctl1 |= WM8900_REG_HPCTL1_HP_OPSTAGE_ENA;
|
|
hpctl1 |= WM8900_REG_HPCTL1_HP_OPSTAGE_ENA;
|
|
- wm8900_write(codec, WM8900_REG_HPCTL1, hpctl1);
|
|
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_HPCTL1, hpctl1);
|
|
|
|
|
|
/* Remove the shorts */
|
|
/* Remove the shorts */
|
|
hpctl1 &= ~WM8900_REG_HPCTL1_HP_SHORT2;
|
|
hpctl1 &= ~WM8900_REG_HPCTL1_HP_SHORT2;
|
|
- wm8900_write(codec, WM8900_REG_HPCTL1, hpctl1);
|
|
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_HPCTL1, hpctl1);
|
|
hpctl1 &= ~WM8900_REG_HPCTL1_HP_SHORT;
|
|
hpctl1 &= ~WM8900_REG_HPCTL1_HP_SHORT;
|
|
- wm8900_write(codec, WM8900_REG_HPCTL1, hpctl1);
|
|
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_HPCTL1, hpctl1);
|
|
break;
|
|
break;
|
|
|
|
|
|
case SND_SOC_DAPM_PRE_PMD:
|
|
case SND_SOC_DAPM_PRE_PMD:
|
|
/* Short the output */
|
|
/* Short the output */
|
|
hpctl1 |= WM8900_REG_HPCTL1_HP_SHORT;
|
|
hpctl1 |= WM8900_REG_HPCTL1_HP_SHORT;
|
|
- wm8900_write(codec, WM8900_REG_HPCTL1, hpctl1);
|
|
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_HPCTL1, hpctl1);
|
|
|
|
|
|
/* Disable the output stage */
|
|
/* Disable the output stage */
|
|
hpctl1 &= ~WM8900_REG_HPCTL1_HP_OPSTAGE_ENA;
|
|
hpctl1 &= ~WM8900_REG_HPCTL1_HP_OPSTAGE_ENA;
|
|
- wm8900_write(codec, WM8900_REG_HPCTL1, hpctl1);
|
|
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_HPCTL1, hpctl1);
|
|
|
|
|
|
/* Clamp the outputs and power down input */
|
|
/* Clamp the outputs and power down input */
|
|
hpctl1 |= WM8900_REG_HPCTL1_HP_CLAMP_IP |
|
|
hpctl1 |= WM8900_REG_HPCTL1_HP_CLAMP_IP |
|
|
WM8900_REG_HPCTL1_HP_CLAMP_OP;
|
|
WM8900_REG_HPCTL1_HP_CLAMP_OP;
|
|
hpctl1 &= ~WM8900_REG_HPCTL1_HP_IPSTAGE_ENA;
|
|
hpctl1 &= ~WM8900_REG_HPCTL1_HP_IPSTAGE_ENA;
|
|
- wm8900_write(codec, WM8900_REG_HPCTL1, hpctl1);
|
|
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_HPCTL1, hpctl1);
|
|
break;
|
|
break;
|
|
|
|
|
|
case SND_SOC_DAPM_POST_PMD:
|
|
case SND_SOC_DAPM_POST_PMD:
|
|
/* Disable everything */
|
|
/* Disable everything */
|
|
- wm8900_write(codec, WM8900_REG_HPCTL1, 0);
|
|
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_HPCTL1, 0);
|
|
break;
|
|
break;
|
|
|
|
|
|
default:
|
|
default:
|
|
@@ -723,7 +632,7 @@ static int wm8900_hw_params(struct snd_pcm_substream *substream,
|
|
struct snd_soc_codec *codec = socdev->card->codec;
|
|
struct snd_soc_codec *codec = socdev->card->codec;
|
|
u16 reg;
|
|
u16 reg;
|
|
|
|
|
|
- reg = wm8900_read(codec, WM8900_REG_AUDIO1) & ~0x60;
|
|
|
|
|
|
+ reg = snd_soc_read(codec, WM8900_REG_AUDIO1) & ~0x60;
|
|
|
|
|
|
switch (params_format(params)) {
|
|
switch (params_format(params)) {
|
|
case SNDRV_PCM_FORMAT_S16_LE:
|
|
case SNDRV_PCM_FORMAT_S16_LE:
|
|
@@ -741,17 +650,17 @@ static int wm8900_hw_params(struct snd_pcm_substream *substream,
|
|
return -EINVAL;
|
|
return -EINVAL;
|
|
}
|
|
}
|
|
|
|
|
|
- wm8900_write(codec, WM8900_REG_AUDIO1, reg);
|
|
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_AUDIO1, reg);
|
|
|
|
|
|
if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
|
|
if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
|
|
- reg = wm8900_read(codec, WM8900_REG_DACCTRL);
|
|
|
|
|
|
+ reg = snd_soc_read(codec, WM8900_REG_DACCTRL);
|
|
|
|
|
|
if (params_rate(params) <= 24000)
|
|
if (params_rate(params) <= 24000)
|
|
reg |= WM8900_REG_DACCTRL_DAC_SB_FILT;
|
|
reg |= WM8900_REG_DACCTRL_DAC_SB_FILT;
|
|
else
|
|
else
|
|
reg &= ~WM8900_REG_DACCTRL_DAC_SB_FILT;
|
|
reg &= ~WM8900_REG_DACCTRL_DAC_SB_FILT;
|
|
|
|
|
|
- wm8900_write(codec, WM8900_REG_DACCTRL, reg);
|
|
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_DACCTRL, reg);
|
|
}
|
|
}
|
|
|
|
|
|
return 0;
|
|
return 0;
|
|
@@ -845,18 +754,18 @@ static int wm8900_set_fll(struct snd_soc_codec *codec,
|
|
return 0;
|
|
return 0;
|
|
|
|
|
|
/* The digital side should be disabled during any change. */
|
|
/* The digital side should be disabled during any change. */
|
|
- reg = wm8900_read(codec, WM8900_REG_POWER1);
|
|
|
|
- wm8900_write(codec, WM8900_REG_POWER1,
|
|
|
|
|
|
+ reg = snd_soc_read(codec, WM8900_REG_POWER1);
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_POWER1,
|
|
reg & (~WM8900_REG_POWER1_FLL_ENA));
|
|
reg & (~WM8900_REG_POWER1_FLL_ENA));
|
|
|
|
|
|
/* Disable the FLL? */
|
|
/* Disable the FLL? */
|
|
if (!freq_in || !freq_out) {
|
|
if (!freq_in || !freq_out) {
|
|
- reg = wm8900_read(codec, WM8900_REG_CLOCKING1);
|
|
|
|
- wm8900_write(codec, WM8900_REG_CLOCKING1,
|
|
|
|
|
|
+ reg = snd_soc_read(codec, WM8900_REG_CLOCKING1);
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_CLOCKING1,
|
|
reg & (~WM8900_REG_CLOCKING1_MCLK_SRC));
|
|
reg & (~WM8900_REG_CLOCKING1_MCLK_SRC));
|
|
|
|
|
|
- reg = wm8900_read(codec, WM8900_REG_FLLCTL1);
|
|
|
|
- wm8900_write(codec, WM8900_REG_FLLCTL1,
|
|
|
|
|
|
+ reg = snd_soc_read(codec, WM8900_REG_FLLCTL1);
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_FLLCTL1,
|
|
reg & (~WM8900_REG_FLLCTL1_OSC_ENA));
|
|
reg & (~WM8900_REG_FLLCTL1_OSC_ENA));
|
|
|
|
|
|
wm8900->fll_in = freq_in;
|
|
wm8900->fll_in = freq_in;
|
|
@@ -873,33 +782,33 @@ static int wm8900_set_fll(struct snd_soc_codec *codec,
|
|
|
|
|
|
/* The osclilator *MUST* be enabled before we enable the
|
|
/* The osclilator *MUST* be enabled before we enable the
|
|
* digital circuit. */
|
|
* digital circuit. */
|
|
- wm8900_write(codec, WM8900_REG_FLLCTL1,
|
|
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_FLLCTL1,
|
|
fll_div.fll_ratio | WM8900_REG_FLLCTL1_OSC_ENA);
|
|
fll_div.fll_ratio | WM8900_REG_FLLCTL1_OSC_ENA);
|
|
|
|
|
|
- wm8900_write(codec, WM8900_REG_FLLCTL4, fll_div.n >> 5);
|
|
|
|
- wm8900_write(codec, WM8900_REG_FLLCTL5,
|
|
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_FLLCTL4, fll_div.n >> 5);
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_FLLCTL5,
|
|
(fll_div.fllclk_div << 6) | (fll_div.n & 0x1f));
|
|
(fll_div.fllclk_div << 6) | (fll_div.n & 0x1f));
|
|
|
|
|
|
if (fll_div.k) {
|
|
if (fll_div.k) {
|
|
- wm8900_write(codec, WM8900_REG_FLLCTL2,
|
|
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_FLLCTL2,
|
|
(fll_div.k >> 8) | 0x100);
|
|
(fll_div.k >> 8) | 0x100);
|
|
- wm8900_write(codec, WM8900_REG_FLLCTL3, fll_div.k & 0xff);
|
|
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_FLLCTL3, fll_div.k & 0xff);
|
|
} else
|
|
} else
|
|
- wm8900_write(codec, WM8900_REG_FLLCTL2, 0);
|
|
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_FLLCTL2, 0);
|
|
|
|
|
|
if (fll_div.fll_slow_lock_ref)
|
|
if (fll_div.fll_slow_lock_ref)
|
|
- wm8900_write(codec, WM8900_REG_FLLCTL6,
|
|
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_FLLCTL6,
|
|
WM8900_REG_FLLCTL6_FLL_SLOW_LOCK_REF);
|
|
WM8900_REG_FLLCTL6_FLL_SLOW_LOCK_REF);
|
|
else
|
|
else
|
|
- wm8900_write(codec, WM8900_REG_FLLCTL6, 0);
|
|
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_FLLCTL6, 0);
|
|
|
|
|
|
- reg = wm8900_read(codec, WM8900_REG_POWER1);
|
|
|
|
- wm8900_write(codec, WM8900_REG_POWER1,
|
|
|
|
|
|
+ reg = snd_soc_read(codec, WM8900_REG_POWER1);
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_POWER1,
|
|
reg | WM8900_REG_POWER1_FLL_ENA);
|
|
reg | WM8900_REG_POWER1_FLL_ENA);
|
|
|
|
|
|
reenable:
|
|
reenable:
|
|
- reg = wm8900_read(codec, WM8900_REG_CLOCKING1);
|
|
|
|
- wm8900_write(codec, WM8900_REG_CLOCKING1,
|
|
|
|
|
|
+ reg = snd_soc_read(codec, WM8900_REG_CLOCKING1);
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_CLOCKING1,
|
|
reg | WM8900_REG_CLOCKING1_MCLK_SRC);
|
|
reg | WM8900_REG_CLOCKING1_MCLK_SRC);
|
|
|
|
|
|
return 0;
|
|
return 0;
|
|
@@ -919,38 +828,38 @@ static int wm8900_set_dai_clkdiv(struct snd_soc_dai *codec_dai,
|
|
|
|
|
|
switch (div_id) {
|
|
switch (div_id) {
|
|
case WM8900_BCLK_DIV:
|
|
case WM8900_BCLK_DIV:
|
|
- reg = wm8900_read(codec, WM8900_REG_CLOCKING1);
|
|
|
|
- wm8900_write(codec, WM8900_REG_CLOCKING1,
|
|
|
|
|
|
+ reg = snd_soc_read(codec, WM8900_REG_CLOCKING1);
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_CLOCKING1,
|
|
div | (reg & WM8900_REG_CLOCKING1_BCLK_MASK));
|
|
div | (reg & WM8900_REG_CLOCKING1_BCLK_MASK));
|
|
break;
|
|
break;
|
|
case WM8900_OPCLK_DIV:
|
|
case WM8900_OPCLK_DIV:
|
|
- reg = wm8900_read(codec, WM8900_REG_CLOCKING1);
|
|
|
|
- wm8900_write(codec, WM8900_REG_CLOCKING1,
|
|
|
|
|
|
+ reg = snd_soc_read(codec, WM8900_REG_CLOCKING1);
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_CLOCKING1,
|
|
div | (reg & WM8900_REG_CLOCKING1_OPCLK_MASK));
|
|
div | (reg & WM8900_REG_CLOCKING1_OPCLK_MASK));
|
|
break;
|
|
break;
|
|
case WM8900_DAC_LRCLK:
|
|
case WM8900_DAC_LRCLK:
|
|
- reg = wm8900_read(codec, WM8900_REG_AUDIO4);
|
|
|
|
- wm8900_write(codec, WM8900_REG_AUDIO4,
|
|
|
|
|
|
+ reg = snd_soc_read(codec, WM8900_REG_AUDIO4);
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_AUDIO4,
|
|
div | (reg & WM8900_LRC_MASK));
|
|
div | (reg & WM8900_LRC_MASK));
|
|
break;
|
|
break;
|
|
case WM8900_ADC_LRCLK:
|
|
case WM8900_ADC_LRCLK:
|
|
- reg = wm8900_read(codec, WM8900_REG_AUDIO3);
|
|
|
|
- wm8900_write(codec, WM8900_REG_AUDIO3,
|
|
|
|
|
|
+ reg = snd_soc_read(codec, WM8900_REG_AUDIO3);
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_AUDIO3,
|
|
div | (reg & WM8900_LRC_MASK));
|
|
div | (reg & WM8900_LRC_MASK));
|
|
break;
|
|
break;
|
|
case WM8900_DAC_CLKDIV:
|
|
case WM8900_DAC_CLKDIV:
|
|
- reg = wm8900_read(codec, WM8900_REG_CLOCKING2);
|
|
|
|
- wm8900_write(codec, WM8900_REG_CLOCKING2,
|
|
|
|
|
|
+ reg = snd_soc_read(codec, WM8900_REG_CLOCKING2);
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_CLOCKING2,
|
|
div | (reg & WM8900_REG_CLOCKING2_DAC_CLKDIV));
|
|
div | (reg & WM8900_REG_CLOCKING2_DAC_CLKDIV));
|
|
break;
|
|
break;
|
|
case WM8900_ADC_CLKDIV:
|
|
case WM8900_ADC_CLKDIV:
|
|
- reg = wm8900_read(codec, WM8900_REG_CLOCKING2);
|
|
|
|
- wm8900_write(codec, WM8900_REG_CLOCKING2,
|
|
|
|
|
|
+ reg = snd_soc_read(codec, WM8900_REG_CLOCKING2);
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_CLOCKING2,
|
|
div | (reg & WM8900_REG_CLOCKING2_ADC_CLKDIV));
|
|
div | (reg & WM8900_REG_CLOCKING2_ADC_CLKDIV));
|
|
break;
|
|
break;
|
|
case WM8900_LRCLK_MODE:
|
|
case WM8900_LRCLK_MODE:
|
|
- reg = wm8900_read(codec, WM8900_REG_DACCTRL);
|
|
|
|
- wm8900_write(codec, WM8900_REG_DACCTRL,
|
|
|
|
|
|
+ reg = snd_soc_read(codec, WM8900_REG_DACCTRL);
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_DACCTRL,
|
|
div | (reg & WM8900_REG_DACCTRL_AIF_LRCLKRATE));
|
|
div | (reg & WM8900_REG_DACCTRL_AIF_LRCLKRATE));
|
|
break;
|
|
break;
|
|
default:
|
|
default:
|
|
@@ -967,10 +876,10 @@ static int wm8900_set_dai_fmt(struct snd_soc_dai *codec_dai,
|
|
struct snd_soc_codec *codec = codec_dai->codec;
|
|
struct snd_soc_codec *codec = codec_dai->codec;
|
|
unsigned int clocking1, aif1, aif3, aif4;
|
|
unsigned int clocking1, aif1, aif3, aif4;
|
|
|
|
|
|
- clocking1 = wm8900_read(codec, WM8900_REG_CLOCKING1);
|
|
|
|
- aif1 = wm8900_read(codec, WM8900_REG_AUDIO1);
|
|
|
|
- aif3 = wm8900_read(codec, WM8900_REG_AUDIO3);
|
|
|
|
- aif4 = wm8900_read(codec, WM8900_REG_AUDIO4);
|
|
|
|
|
|
+ clocking1 = snd_soc_read(codec, WM8900_REG_CLOCKING1);
|
|
|
|
+ aif1 = snd_soc_read(codec, WM8900_REG_AUDIO1);
|
|
|
|
+ aif3 = snd_soc_read(codec, WM8900_REG_AUDIO3);
|
|
|
|
+ aif4 = snd_soc_read(codec, WM8900_REG_AUDIO4);
|
|
|
|
|
|
/* set master/slave audio interface */
|
|
/* set master/slave audio interface */
|
|
switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
|
|
switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
|
|
@@ -1066,10 +975,10 @@ static int wm8900_set_dai_fmt(struct snd_soc_dai *codec_dai,
|
|
return -EINVAL;
|
|
return -EINVAL;
|
|
}
|
|
}
|
|
|
|
|
|
- wm8900_write(codec, WM8900_REG_CLOCKING1, clocking1);
|
|
|
|
- wm8900_write(codec, WM8900_REG_AUDIO1, aif1);
|
|
|
|
- wm8900_write(codec, WM8900_REG_AUDIO3, aif3);
|
|
|
|
- wm8900_write(codec, WM8900_REG_AUDIO4, aif4);
|
|
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_CLOCKING1, clocking1);
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_AUDIO1, aif1);
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_AUDIO3, aif3);
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_AUDIO4, aif4);
|
|
|
|
|
|
return 0;
|
|
return 0;
|
|
}
|
|
}
|
|
@@ -1079,14 +988,14 @@ static int wm8900_digital_mute(struct snd_soc_dai *codec_dai, int mute)
|
|
struct snd_soc_codec *codec = codec_dai->codec;
|
|
struct snd_soc_codec *codec = codec_dai->codec;
|
|
u16 reg;
|
|
u16 reg;
|
|
|
|
|
|
- reg = wm8900_read(codec, WM8900_REG_DACCTRL);
|
|
|
|
|
|
+ reg = snd_soc_read(codec, WM8900_REG_DACCTRL);
|
|
|
|
|
|
if (mute)
|
|
if (mute)
|
|
reg |= WM8900_REG_DACCTRL_MUTE;
|
|
reg |= WM8900_REG_DACCTRL_MUTE;
|
|
else
|
|
else
|
|
reg &= ~WM8900_REG_DACCTRL_MUTE;
|
|
reg &= ~WM8900_REG_DACCTRL_MUTE;
|
|
|
|
|
|
- wm8900_write(codec, WM8900_REG_DACCTRL, reg);
|
|
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_DACCTRL, reg);
|
|
|
|
|
|
return 0;
|
|
return 0;
|
|
}
|
|
}
|
|
@@ -1135,11 +1044,11 @@ static int wm8900_set_bias_level(struct snd_soc_codec *codec,
|
|
switch (level) {
|
|
switch (level) {
|
|
case SND_SOC_BIAS_ON:
|
|
case SND_SOC_BIAS_ON:
|
|
/* Enable thermal shutdown */
|
|
/* Enable thermal shutdown */
|
|
- reg = wm8900_read(codec, WM8900_REG_GPIO);
|
|
|
|
- wm8900_write(codec, WM8900_REG_GPIO,
|
|
|
|
|
|
+ reg = snd_soc_read(codec, WM8900_REG_GPIO);
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_GPIO,
|
|
reg | WM8900_REG_GPIO_TEMP_ENA);
|
|
reg | WM8900_REG_GPIO_TEMP_ENA);
|
|
- reg = wm8900_read(codec, WM8900_REG_ADDCTL);
|
|
|
|
- wm8900_write(codec, WM8900_REG_ADDCTL,
|
|
|
|
|
|
+ reg = snd_soc_read(codec, WM8900_REG_ADDCTL);
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_ADDCTL,
|
|
reg | WM8900_REG_ADDCTL_TEMP_SD);
|
|
reg | WM8900_REG_ADDCTL_TEMP_SD);
|
|
break;
|
|
break;
|
|
|
|
|
|
@@ -1150,69 +1059,69 @@ static int wm8900_set_bias_level(struct snd_soc_codec *codec,
|
|
/* Charge capacitors if initial power up */
|
|
/* Charge capacitors if initial power up */
|
|
if (codec->bias_level == SND_SOC_BIAS_OFF) {
|
|
if (codec->bias_level == SND_SOC_BIAS_OFF) {
|
|
/* STARTUP_BIAS_ENA on */
|
|
/* STARTUP_BIAS_ENA on */
|
|
- wm8900_write(codec, WM8900_REG_POWER1,
|
|
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_POWER1,
|
|
WM8900_REG_POWER1_STARTUP_BIAS_ENA);
|
|
WM8900_REG_POWER1_STARTUP_BIAS_ENA);
|
|
|
|
|
|
/* Startup bias mode */
|
|
/* Startup bias mode */
|
|
- wm8900_write(codec, WM8900_REG_ADDCTL,
|
|
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_ADDCTL,
|
|
WM8900_REG_ADDCTL_BIAS_SRC |
|
|
WM8900_REG_ADDCTL_BIAS_SRC |
|
|
WM8900_REG_ADDCTL_VMID_SOFTST);
|
|
WM8900_REG_ADDCTL_VMID_SOFTST);
|
|
|
|
|
|
/* VMID 2x50k */
|
|
/* VMID 2x50k */
|
|
- wm8900_write(codec, WM8900_REG_POWER1,
|
|
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_POWER1,
|
|
WM8900_REG_POWER1_STARTUP_BIAS_ENA | 0x1);
|
|
WM8900_REG_POWER1_STARTUP_BIAS_ENA | 0x1);
|
|
|
|
|
|
/* Allow capacitors to charge */
|
|
/* Allow capacitors to charge */
|
|
schedule_timeout_interruptible(msecs_to_jiffies(400));
|
|
schedule_timeout_interruptible(msecs_to_jiffies(400));
|
|
|
|
|
|
/* Enable bias */
|
|
/* Enable bias */
|
|
- wm8900_write(codec, WM8900_REG_POWER1,
|
|
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_POWER1,
|
|
WM8900_REG_POWER1_STARTUP_BIAS_ENA |
|
|
WM8900_REG_POWER1_STARTUP_BIAS_ENA |
|
|
WM8900_REG_POWER1_BIAS_ENA | 0x1);
|
|
WM8900_REG_POWER1_BIAS_ENA | 0x1);
|
|
|
|
|
|
- wm8900_write(codec, WM8900_REG_ADDCTL, 0);
|
|
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_ADDCTL, 0);
|
|
|
|
|
|
- wm8900_write(codec, WM8900_REG_POWER1,
|
|
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_POWER1,
|
|
WM8900_REG_POWER1_BIAS_ENA | 0x1);
|
|
WM8900_REG_POWER1_BIAS_ENA | 0x1);
|
|
}
|
|
}
|
|
|
|
|
|
- reg = wm8900_read(codec, WM8900_REG_POWER1);
|
|
|
|
- wm8900_write(codec, WM8900_REG_POWER1,
|
|
|
|
|
|
+ reg = snd_soc_read(codec, WM8900_REG_POWER1);
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_POWER1,
|
|
(reg & WM8900_REG_POWER1_FLL_ENA) |
|
|
(reg & WM8900_REG_POWER1_FLL_ENA) |
|
|
WM8900_REG_POWER1_BIAS_ENA | 0x1);
|
|
WM8900_REG_POWER1_BIAS_ENA | 0x1);
|
|
- wm8900_write(codec, WM8900_REG_POWER2,
|
|
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_POWER2,
|
|
WM8900_REG_POWER2_SYSCLK_ENA);
|
|
WM8900_REG_POWER2_SYSCLK_ENA);
|
|
- wm8900_write(codec, WM8900_REG_POWER3, 0);
|
|
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_POWER3, 0);
|
|
break;
|
|
break;
|
|
|
|
|
|
case SND_SOC_BIAS_OFF:
|
|
case SND_SOC_BIAS_OFF:
|
|
/* Startup bias enable */
|
|
/* Startup bias enable */
|
|
- reg = wm8900_read(codec, WM8900_REG_POWER1);
|
|
|
|
- wm8900_write(codec, WM8900_REG_POWER1,
|
|
|
|
|
|
+ reg = snd_soc_read(codec, WM8900_REG_POWER1);
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_POWER1,
|
|
reg & WM8900_REG_POWER1_STARTUP_BIAS_ENA);
|
|
reg & WM8900_REG_POWER1_STARTUP_BIAS_ENA);
|
|
- wm8900_write(codec, WM8900_REG_ADDCTL,
|
|
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_ADDCTL,
|
|
WM8900_REG_ADDCTL_BIAS_SRC |
|
|
WM8900_REG_ADDCTL_BIAS_SRC |
|
|
WM8900_REG_ADDCTL_VMID_SOFTST);
|
|
WM8900_REG_ADDCTL_VMID_SOFTST);
|
|
|
|
|
|
/* Discharge caps */
|
|
/* Discharge caps */
|
|
- wm8900_write(codec, WM8900_REG_POWER1,
|
|
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_POWER1,
|
|
WM8900_REG_POWER1_STARTUP_BIAS_ENA);
|
|
WM8900_REG_POWER1_STARTUP_BIAS_ENA);
|
|
schedule_timeout_interruptible(msecs_to_jiffies(500));
|
|
schedule_timeout_interruptible(msecs_to_jiffies(500));
|
|
|
|
|
|
/* Remove clamp */
|
|
/* Remove clamp */
|
|
- wm8900_write(codec, WM8900_REG_HPCTL1, 0);
|
|
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_HPCTL1, 0);
|
|
|
|
|
|
/* Power down */
|
|
/* Power down */
|
|
- wm8900_write(codec, WM8900_REG_ADDCTL, 0);
|
|
|
|
- wm8900_write(codec, WM8900_REG_POWER1, 0);
|
|
|
|
- wm8900_write(codec, WM8900_REG_POWER2, 0);
|
|
|
|
- wm8900_write(codec, WM8900_REG_POWER3, 0);
|
|
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_ADDCTL, 0);
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_POWER1, 0);
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_POWER2, 0);
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_POWER3, 0);
|
|
|
|
|
|
/* Need to let things settle before stopping the clock
|
|
/* Need to let things settle before stopping the clock
|
|
* to ensure that restart works, see "Stopping the
|
|
* to ensure that restart works, see "Stopping the
|
|
* master clock" in the datasheet. */
|
|
* master clock" in the datasheet. */
|
|
schedule_timeout_interruptible(msecs_to_jiffies(1));
|
|
schedule_timeout_interruptible(msecs_to_jiffies(1));
|
|
- wm8900_write(codec, WM8900_REG_POWER2,
|
|
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_POWER2,
|
|
WM8900_REG_POWER2_SYSCLK_ENA);
|
|
WM8900_REG_POWER2_SYSCLK_ENA);
|
|
break;
|
|
break;
|
|
}
|
|
}
|
|
@@ -1275,7 +1184,7 @@ static int wm8900_resume(struct platform_device *pdev)
|
|
|
|
|
|
if (cache) {
|
|
if (cache) {
|
|
for (i = 0; i < WM8900_MAXREG; i++)
|
|
for (i = 0; i < WM8900_MAXREG; i++)
|
|
- wm8900_write(codec, i, cache[i]);
|
|
|
|
|
|
+ snd_soc_write(codec, i, cache[i]);
|
|
kfree(cache);
|
|
kfree(cache);
|
|
} else
|
|
} else
|
|
dev_err(&pdev->dev, "Unable to allocate register cache\n");
|
|
dev_err(&pdev->dev, "Unable to allocate register cache\n");
|
|
@@ -1308,16 +1217,20 @@ static __devinit int wm8900_i2c_probe(struct i2c_client *i2c,
|
|
|
|
|
|
codec->name = "WM8900";
|
|
codec->name = "WM8900";
|
|
codec->owner = THIS_MODULE;
|
|
codec->owner = THIS_MODULE;
|
|
- codec->read = wm8900_read;
|
|
|
|
- codec->write = wm8900_write;
|
|
|
|
codec->dai = &wm8900_dai;
|
|
codec->dai = &wm8900_dai;
|
|
codec->num_dai = 1;
|
|
codec->num_dai = 1;
|
|
- codec->hw_write = (hw_write_t)i2c_master_send;
|
|
|
|
codec->control_data = i2c;
|
|
codec->control_data = i2c;
|
|
codec->set_bias_level = wm8900_set_bias_level;
|
|
codec->set_bias_level = wm8900_set_bias_level;
|
|
|
|
+ codec->volatile_register = wm8900_volatile_register;
|
|
codec->dev = &i2c->dev;
|
|
codec->dev = &i2c->dev;
|
|
|
|
|
|
- reg = wm8900_read(codec, WM8900_REG_ID);
|
|
|
|
|
|
+ ret = snd_soc_codec_set_cache_io(codec, 8, 16, SND_SOC_I2C);
|
|
|
|
+ if (ret != 0) {
|
|
|
|
+ dev_err(&i2c->dev, "Failed to set cache I/O: %d\n", ret);
|
|
|
|
+ goto err;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ reg = snd_soc_read(codec, WM8900_REG_ID);
|
|
if (reg != 0x8900) {
|
|
if (reg != 0x8900) {
|
|
dev_err(&i2c->dev, "Device is not a WM8900 - ID %x\n", reg);
|
|
dev_err(&i2c->dev, "Device is not a WM8900 - ID %x\n", reg);
|
|
ret = -ENODEV;
|
|
ret = -ENODEV;
|
|
@@ -1325,7 +1238,7 @@ static __devinit int wm8900_i2c_probe(struct i2c_client *i2c,
|
|
}
|
|
}
|
|
|
|
|
|
/* Read back from the chip */
|
|
/* Read back from the chip */
|
|
- reg = wm8900_chip_read(codec, WM8900_REG_POWER1);
|
|
|
|
|
|
+ reg = snd_soc_read(codec, WM8900_REG_POWER1);
|
|
reg = (reg >> 12) & 0xf;
|
|
reg = (reg >> 12) & 0xf;
|
|
dev_info(&i2c->dev, "WM8900 revision %d\n", reg);
|
|
dev_info(&i2c->dev, "WM8900 revision %d\n", reg);
|
|
|
|
|
|
@@ -1335,29 +1248,29 @@ static __devinit int wm8900_i2c_probe(struct i2c_client *i2c,
|
|
wm8900_set_bias_level(codec, SND_SOC_BIAS_STANDBY);
|
|
wm8900_set_bias_level(codec, SND_SOC_BIAS_STANDBY);
|
|
|
|
|
|
/* Latch the volume update bits */
|
|
/* Latch the volume update bits */
|
|
- wm8900_write(codec, WM8900_REG_LINVOL,
|
|
|
|
- wm8900_read(codec, WM8900_REG_LINVOL) | 0x100);
|
|
|
|
- wm8900_write(codec, WM8900_REG_RINVOL,
|
|
|
|
- wm8900_read(codec, WM8900_REG_RINVOL) | 0x100);
|
|
|
|
- wm8900_write(codec, WM8900_REG_LOUT1CTL,
|
|
|
|
- wm8900_read(codec, WM8900_REG_LOUT1CTL) | 0x100);
|
|
|
|
- wm8900_write(codec, WM8900_REG_ROUT1CTL,
|
|
|
|
- wm8900_read(codec, WM8900_REG_ROUT1CTL) | 0x100);
|
|
|
|
- wm8900_write(codec, WM8900_REG_LOUT2CTL,
|
|
|
|
- wm8900_read(codec, WM8900_REG_LOUT2CTL) | 0x100);
|
|
|
|
- wm8900_write(codec, WM8900_REG_ROUT2CTL,
|
|
|
|
- wm8900_read(codec, WM8900_REG_ROUT2CTL) | 0x100);
|
|
|
|
- wm8900_write(codec, WM8900_REG_LDAC_DV,
|
|
|
|
- wm8900_read(codec, WM8900_REG_LDAC_DV) | 0x100);
|
|
|
|
- wm8900_write(codec, WM8900_REG_RDAC_DV,
|
|
|
|
- wm8900_read(codec, WM8900_REG_RDAC_DV) | 0x100);
|
|
|
|
- wm8900_write(codec, WM8900_REG_LADC_DV,
|
|
|
|
- wm8900_read(codec, WM8900_REG_LADC_DV) | 0x100);
|
|
|
|
- wm8900_write(codec, WM8900_REG_RADC_DV,
|
|
|
|
- wm8900_read(codec, WM8900_REG_RADC_DV) | 0x100);
|
|
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_LINVOL,
|
|
|
|
+ snd_soc_read(codec, WM8900_REG_LINVOL) | 0x100);
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_RINVOL,
|
|
|
|
+ snd_soc_read(codec, WM8900_REG_RINVOL) | 0x100);
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_LOUT1CTL,
|
|
|
|
+ snd_soc_read(codec, WM8900_REG_LOUT1CTL) | 0x100);
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_ROUT1CTL,
|
|
|
|
+ snd_soc_read(codec, WM8900_REG_ROUT1CTL) | 0x100);
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_LOUT2CTL,
|
|
|
|
+ snd_soc_read(codec, WM8900_REG_LOUT2CTL) | 0x100);
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_ROUT2CTL,
|
|
|
|
+ snd_soc_read(codec, WM8900_REG_ROUT2CTL) | 0x100);
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_LDAC_DV,
|
|
|
|
+ snd_soc_read(codec, WM8900_REG_LDAC_DV) | 0x100);
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_RDAC_DV,
|
|
|
|
+ snd_soc_read(codec, WM8900_REG_RDAC_DV) | 0x100);
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_LADC_DV,
|
|
|
|
+ snd_soc_read(codec, WM8900_REG_LADC_DV) | 0x100);
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_RADC_DV,
|
|
|
|
+ snd_soc_read(codec, WM8900_REG_RADC_DV) | 0x100);
|
|
|
|
|
|
/* Set the DAC and mixer output bias */
|
|
/* Set the DAC and mixer output bias */
|
|
- wm8900_write(codec, WM8900_REG_OUTBIASCTL, 0x81);
|
|
|
|
|
|
+ snd_soc_write(codec, WM8900_REG_OUTBIASCTL, 0x81);
|
|
|
|
|
|
wm8900_dai.dev = &i2c->dev;
|
|
wm8900_dai.dev = &i2c->dev;
|
|
|
|
|