Commit 770b65c3 authored by Mark Brown's avatar Mark Brown

Merge remote-tracking branches 'asoc/topic/rl6231' and 'asoc/topic/rt5677' into asoc-next

/*
* linux/sound/rt5677.h -- Platform data for RT5677
*
* Copyright 2013 Realtek Semiconductor Corp.
* Author: Oder Chiou <oder_chiou@realtek.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 __LINUX_SND_RT5677_H
#define __LINUX_SND_RT5677_H
struct rt5677_platform_data {
/* IN1 IN2 can optionally be differential */
bool in1_diff;
bool in2_diff;
};
#endif
......@@ -78,6 +78,7 @@ config SND_SOC_ALL_CODECS
select SND_SOC_RT5640 if I2C
select SND_SOC_RT5645 if I2C
select SND_SOC_RT5651 if I2C
select SND_SOC_RT5677 if I2C
select SND_SOC_SGTL5000 if I2C
select SND_SOC_SI476X if MFD_SI476X_CORE
select SND_SOC_SIRF_AUDIO_CODEC
......@@ -439,6 +440,15 @@ config SND_SOC_PCM512x_SPI
select SND_SOC_PCM512x
select REGMAP_SPI
config SND_SOC_RL6231
tristate
default y if SND_SOC_RT5640=y
default y if SND_SOC_RT5645=y
default y if SND_SOC_RT5651=y
default m if SND_SOC_RT5640=m
default m if SND_SOC_RT5645=m
default m if SND_SOC_RT5651=m
config SND_SOC_RT5631
tristate
......@@ -451,6 +461,9 @@ config SND_SOC_RT5645
config SND_SOC_RT5651
tristate
config SND_SOC_RT5677
tristate
#Freescale sgtl5000 codec
config SND_SOC_SGTL5000
tristate "Freescale SGTL5000 CODEC"
......
......@@ -67,10 +67,12 @@ snd-soc-pcm3008-objs := pcm3008.o
snd-soc-pcm512x-objs := pcm512x.o
snd-soc-pcm512x-i2c-objs := pcm512x-i2c.o
snd-soc-pcm512x-spi-objs := pcm512x-spi.o
snd-soc-rl6231-objs := rl6231.o
snd-soc-rt5631-objs := rt5631.o
snd-soc-rt5640-objs := rt5640.o
snd-soc-rt5645-objs := rt5645.o
snd-soc-rt5651-objs := rt5651.o
snd-soc-rt5677-objs := rt5677.o
snd-soc-sgtl5000-objs := sgtl5000.o
snd-soc-alc5623-objs := alc5623.o
snd-soc-alc5632-objs := alc5632.o
......@@ -230,10 +232,12 @@ obj-$(CONFIG_SND_SOC_PCM3008) += snd-soc-pcm3008.o
obj-$(CONFIG_SND_SOC_PCM512x) += snd-soc-pcm512x.o
obj-$(CONFIG_SND_SOC_PCM512x_I2C) += snd-soc-pcm512x-i2c.o
obj-$(CONFIG_SND_SOC_PCM512x_SPI) += snd-soc-pcm512x-spi.o
obj-$(CONFIG_SND_SOC_RL6231) += snd-soc-rl6231.o
obj-$(CONFIG_SND_SOC_RT5631) += snd-soc-rt5631.o
obj-$(CONFIG_SND_SOC_RT5640) += snd-soc-rt5640.o
obj-$(CONFIG_SND_SOC_RT5645) += snd-soc-rt5645.o
obj-$(CONFIG_SND_SOC_RT5651) += snd-soc-rt5651.o
obj-$(CONFIG_SND_SOC_RT5677) += snd-soc-rt5677.o
obj-$(CONFIG_SND_SOC_SGTL5000) += snd-soc-sgtl5000.o
obj-$(CONFIG_SND_SOC_SIGMADSP) += snd-soc-sigmadsp.o
obj-$(CONFIG_SND_SOC_SI476X) += snd-soc-si476x.o
......
/*
* rl6231.c - RL6231 class device shared support
*
* Copyright 2014 Realtek Semiconductor Corp.
*
* Author: Oder Chiou <oder_chiou@realtek.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.
*/
#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/init.h>
#include <linux/delay.h>
#include <linux/pm.h>
#include <linux/gpio.h>
#include <linux/i2c.h>
#include <linux/regmap.h>
#include <linux/of.h>
#include <linux/of_gpio.h>
#include <linux/platform_device.h>
#include <linux/spi/spi.h>
#include <linux/acpi.h>
#include <sound/core.h>
#include <sound/pcm.h>
#include <sound/pcm_params.h>
#include <sound/soc.h>
#include <sound/soc-dapm.h>
#include <sound/initval.h>
#include <sound/tlv.h>
#include "rl6231.h"
/**
* rl6231_calc_dmic_clk - Calculate the parameter of dmic.
*
* @rate: base clock rate.
*
* Choose dmic clock between 1MHz and 3MHz.
* It is better for clock to approximate 3MHz.
*/
int rl6231_calc_dmic_clk(int rate)
{
int div[] = {2, 3, 4, 6, 8, 12}, idx = -EINVAL;
int i, red, bound, temp;
red = 3000000 * 12;
for (i = 0; i < ARRAY_SIZE(div); i++) {
bound = div[i] * 3000000;
if (rate > bound)
continue;
temp = bound - rate;
if (temp < red) {
red = temp;
idx = i;
}
}
return idx;
}
EXPORT_SYMBOL_GPL(rl6231_calc_dmic_clk);
/**
* rl6231_pll_calc - Calcualte PLL M/N/K code.
* @freq_in: external clock provided to codec.
* @freq_out: target clock which codec works on.
* @pll_code: Pointer to structure with M, N, K and bypass flag.
*
* Calcualte M/N/K code to configure PLL for codec.
*
* Returns 0 for success or negative error code.
*/
int rl6231_pll_calc(const unsigned int freq_in,
const unsigned int freq_out, struct rl6231_pll_code *pll_code)
{
int max_n = RL6231_PLL_N_MAX, max_m = RL6231_PLL_M_MAX;
int k, red, n_t, pll_out, in_t, out_t;
int n = 0, m = 0, m_t = 0;
int red_t = abs(freq_out - freq_in);
bool bypass = false;
if (RL6231_PLL_INP_MAX < freq_in || RL6231_PLL_INP_MIN > freq_in)
return -EINVAL;
k = 100000000 / freq_out - 2;
if (k > RL6231_PLL_K_MAX)
k = RL6231_PLL_K_MAX;
for (n_t = 0; n_t <= max_n; n_t++) {
in_t = freq_in / (k + 2);
pll_out = freq_out / (n_t + 2);
if (in_t < 0)
continue;
if (in_t == pll_out) {
bypass = true;
n = n_t;
goto code_find;
}
red = abs(in_t - pll_out);
if (red < red_t) {
bypass = true;
n = n_t;
m = m_t;
if (red == 0)
goto code_find;
red_t = red;
}
for (m_t = 0; m_t <= max_m; m_t++) {
out_t = in_t / (m_t + 2);
red = abs(out_t - pll_out);
if (red < red_t) {
bypass = false;
n = n_t;
m = m_t;
if (red == 0)
goto code_find;
red_t = red;
}
}
}
pr_debug("Only get approximation about PLL\n");
code_find:
pll_code->m_bp = bypass;
pll_code->m_code = m;
pll_code->n_code = n;
pll_code->k_code = k;
return 0;
}
EXPORT_SYMBOL_GPL(rl6231_pll_calc);
int rl6231_get_clk_info(int sclk, int rate)
{
int i, pd[] = {1, 2, 3, 4, 6, 8, 12, 16};
if (sclk <= 0 || rate <= 0)
return -EINVAL;
rate = rate << 8;
for (i = 0; i < ARRAY_SIZE(pd); i++)
if (sclk == rate * pd[i])
return i;
return -EINVAL;
}
EXPORT_SYMBOL_GPL(rl6231_get_clk_info);
MODULE_DESCRIPTION("RL6231 class device shared support");
MODULE_AUTHOR("Oder Chiou <oder_chiou@realtek.com>");
MODULE_LICENSE("GPL v2");
/*
* rl6231.h - RL6231 class device shared support
*
* Copyright 2014 Realtek Semiconductor Corp.
*
* Author: Oder Chiou <oder_chiou@realtek.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 __RL6231_H__
#define __RL6231_H__
#define RL6231_PLL_INP_MAX 40000000
#define RL6231_PLL_INP_MIN 256000
#define RL6231_PLL_N_MAX 0x1ff
#define RL6231_PLL_K_MAX 0x1f
#define RL6231_PLL_M_MAX 0xf
struct rl6231_pll_code {
bool m_bp; /* Indicates bypass m code or not. */
int m_code;
int n_code;
int k_code;
};
int rl6231_calc_dmic_clk(int rate);
int rl6231_pll_calc(const unsigned int freq_in,
const unsigned int freq_out, struct rl6231_pll_code *pll_code);
int rl6231_get_clk_info(int sclk, int rate);
#endif /* __RL6231_H__ */
......@@ -31,6 +31,7 @@
#include <sound/initval.h>
#include <sound/tlv.h>
#include "rl6231.h"
#include "rt5640.h"
#define RT5640_DEVICE_ID 0x6231
......@@ -453,30 +454,16 @@ static const struct snd_kcontrol_new rt5640_specific_snd_controls[] = {
* @kcontrol: The kcontrol of this widget.
* @event: Event id.
*
* Choose dmic clock between 1MHz and 3MHz.
* It is better for clock to approximate 3MHz.
*/
static int set_dmic_clk(struct snd_soc_dapm_widget *w,
struct snd_kcontrol *kcontrol, int event)
{
struct snd_soc_codec *codec = w->codec;
struct rt5640_priv *rt5640 = snd_soc_codec_get_drvdata(codec);
int div[] = {2, 3, 4, 6, 8, 12};
int idx = -EINVAL, i;
int rate, red, bound, temp;
rate = rt5640->sysclk;
red = 3000000 * 12;
for (i = 0; i < ARRAY_SIZE(div); i++) {
bound = div[i] * 3000000;
if (rate > bound)
continue;
temp = bound - rate;
if (temp < red) {
red = temp;
idx = i;
}
}
int idx = -EINVAL;
idx = rl6231_calc_dmic_clk(rt5640->sysclk);
if (idx < 0)
dev_err(codec->dev, "Failed to set DMIC clock\n");
else
......@@ -1639,21 +1626,6 @@ static int get_sdp_info(struct snd_soc_codec *codec, int dai_id)
return ret;
}
static int get_clk_info(int sclk, int rate)
{
int i, pd[] = {1, 2, 3, 4, 6, 8, 12, 16};
if (sclk <= 0 || rate <= 0)
return -EINVAL;
rate = rate << 8;
for (i = 0; i < ARRAY_SIZE(pd); i++)
if (sclk == rate * pd[i])
return i;
return -EINVAL;
}
static int rt5640_hw_params(struct snd_pcm_substream *substream,
struct snd_pcm_hw_params *params, struct snd_soc_dai *dai)
{
......@@ -1663,7 +1635,7 @@ static int rt5640_hw_params(struct snd_pcm_substream *substream,
int dai_sel, pre_div, bclk_ms, frame_size;
rt5640->lrck[dai->id] = params_rate(params);
pre_div = get_clk_info(rt5640->sysclk, rt5640->lrck[dai->id]);
pre_div = rl6231_get_clk_info(rt5640->sysclk, rt5640->lrck[dai->id]);
if (pre_div < 0) {
dev_err(codec->dev, "Unsupported clock setting %d for DAI %d\n",
rt5640->lrck[dai->id], dai->id);
......@@ -1820,65 +1792,12 @@ static int rt5640_set_dai_sysclk(struct snd_soc_dai *dai,
return 0;
}
/**
* rt5640_pll_calc - Calculate PLL M/N/K code.
* @freq_in: external clock provided to codec.
* @freq_out: target clock which codec works on.
* @pll_code: Pointer to structure with M, N, K and bypass flag.
*
* Calculate M/N/K code to configure PLL for codec. And K is assigned to 2
* which make calculation more efficiently.
*
* Returns 0 for success or negative error code.
*/
static int rt5640_pll_calc(const unsigned int freq_in,
const unsigned int freq_out, struct rt5640_pll_code *pll_code)
{
int max_n = RT5640_PLL_N_MAX, max_m = RT5640_PLL_M_MAX;
int n = 0, m = 0, red, n_t, m_t, in_t, out_t;
int red_t = abs(freq_out - freq_in);
bool bypass = false;
if (RT5640_PLL_INP_MAX < freq_in || RT5640_PLL_INP_MIN > freq_in)
return -EINVAL;
for (n_t = 0; n_t <= max_n; n_t++) {
in_t = (freq_in >> 1) + (freq_in >> 2) * n_t;
if (in_t < 0)
continue;
if (in_t == freq_out) {
bypass = true;
n = n_t;
goto code_find;
}
for (m_t = 0; m_t <= max_m; m_t++) {
out_t = in_t / (m_t + 2);
red = abs(out_t - freq_out);
if (red < red_t) {
n = n_t;
m = m_t;
if (red == 0)
goto code_find;
red_t = red;
}
}
}
pr_debug("Only get approximation about PLL\n");
code_find:
pll_code->m_bp = bypass;
pll_code->m_code = m;
pll_code->n_code = n;
pll_code->k_code = 2;
return 0;
}
static int rt5640_set_dai_pll(struct snd_soc_dai *dai, int pll_id, int source,
unsigned int freq_in, unsigned int freq_out)
{
struct snd_soc_codec *codec = dai->codec;
struct rt5640_priv *rt5640 = snd_soc_codec_get_drvdata(codec);
struct rt5640_pll_code *pll_code = &rt5640->pll_code;
struct rl6231_pll_code pll_code;
int ret, dai_sel;
if (source == rt5640->pll_src && freq_in == rt5640->pll_in &&
......@@ -1922,20 +1841,21 @@ static int rt5640_set_dai_pll(struct snd_soc_dai *dai, int pll_id, int source,
return -EINVAL;
}
ret = rt5640_pll_calc(freq_in, freq_out, pll_code);
ret = rl6231_pll_calc(freq_in, freq_out, &pll_code);
if (ret < 0) {
dev_err(codec->dev, "Unsupport input clock %d\n", freq_in);
return ret;
}
dev_dbg(codec->dev, "bypass=%d m=%d n=%d k=2\n", pll_code->m_bp,
(pll_code->m_bp ? 0 : pll_code->m_code), pll_code->n_code);
dev_dbg(codec->dev, "bypass=%d m=%d n=%d k=%d\n",
pll_code.m_bp, (pll_code.m_bp ? 0 : pll_code.m_code),
pll_code.n_code, pll_code.k_code);
snd_soc_write(codec, RT5640_PLL_CTRL1,
pll_code->n_code << RT5640_PLL_N_SFT | pll_code->k_code);
pll_code.n_code << RT5640_PLL_N_SFT | pll_code.k_code);
snd_soc_write(codec, RT5640_PLL_CTRL2,
(pll_code->m_bp ? 0 : pll_code->m_code) << RT5640_PLL_M_SFT |
pll_code->m_bp << RT5640_PLL_M_BP_SFT);
(pll_code.m_bp ? 0 : pll_code.m_code) << RT5640_PLL_M_SFT |
pll_code.m_bp << RT5640_PLL_M_BP_SFT);
rt5640->pll_in = freq_in;
rt5640->pll_out = freq_out;
......
......@@ -2079,13 +2079,6 @@ enum {
RT5640_DMIC2,
};
struct rt5640_pll_code {
bool m_bp; /* Indicates bypass m code or not. */
int m_code;
int n_code;
int k_code;
};
struct rt5640_priv {
struct snd_soc_codec *codec;
struct rt5640_platform_data pdata;
......@@ -2097,7 +2090,6 @@ struct rt5640_priv {
int bclk[RT5640_AIFS];
int master[RT5640_AIFS];
struct rt5640_pll_code pll_code;
int pll_src;
int pll_in;
int pll_out;
......
......@@ -26,6 +26,7 @@
#include <sound/initval.h>
#include <sound/tlv.h>
#include "rl6231.h"
#include "rt5645.h"
#define RT5645_DEVICE_ID 0x6308
......@@ -519,30 +520,15 @@ static const struct snd_kcontrol_new rt5645_snd_controls[] = {
* @kcontrol: The kcontrol of this widget.
* @event: Event id.
*
* Choose dmic clock between 1MHz and 3MHz.
* It is better for clock to approximate 3MHz.
*/
static int set_dmic_clk(struct snd_soc_dapm_widget *w,
struct snd_kcontrol *kcontrol, int event)
{
struct snd_soc_codec *codec = w->codec;
struct rt5645_priv *rt5645 = snd_soc_codec_get_drvdata(codec);
int div[] = {2, 3, 4, 6, 8, 12};
int idx = -EINVAL, i;
int rate, red, bound, temp;
rate = rt5645->sysclk;
red = 3000000 * 12;
for (i = 0; i < ARRAY_SIZE(div); i++) {
bound = div[i] * 3000000;
if (rate > bound)
continue;
temp = bound - rate;
if (temp < red) {
red = temp;
idx = i;
}
}
int idx = -EINVAL;
idx = rl6231_calc_dmic_clk(rt5645->sysclk);
if (idx < 0)
dev_err(codec->dev, "Failed to set DMIC clock\n");
......@@ -1800,21 +1786,6 @@ static const struct snd_soc_dapm_route rt5645_dapm_routes[] = {
{ "SPOR", NULL, "SPK amp" },
};
static int get_clk_info(int sclk, int rate)
{
int i, pd[] = {1, 2, 3, 4, 6, 8, 12, 16};
if (sclk <= 0 || rate <= 0)
return -EINVAL;
rate = rate << 8;
for (i = 0; i < ARRAY_SIZE(pd); i++)
if (sclk == rate * pd[i])
return i;
return -EINVAL;
}
static int rt5645_hw_params(struct snd_pcm_substream *substream,
struct snd_pcm_hw_params *params, struct snd_soc_dai *dai)
{
......@@ -1824,7 +1795,7 @@ static int rt5645_hw_params(struct snd_pcm_substream *substream,
int pre_div, bclk_ms, frame_size;
rt5645->lrck[dai->id] = params_rate(params);
pre_div = get_clk_info(rt5645->sysclk, rt5645->lrck[dai->id]);
pre_div = rl6231_get_clk_info(rt5645->sysclk, rt5645->lrck[dai->id]);
if (pre_div < 0) {
dev_err(codec->dev, "Unsupported clock setting\n");
return -EINVAL;
......@@ -1978,80 +1949,12 @@ static int rt5645_set_dai_sysclk(struct snd_soc_dai *dai,
return 0;
}
/**
* rt5645_pll_calc - Calcualte PLL M/N/K code.
* @freq_in: external clock provided to codec.
* @freq_out: target clock which codec works on.
* @pll_code: Pointer to structure with M, N, K and bypass flag.
*
* Calcualte M/N/K code to configure PLL for codec. And K is assigned to 2
* which make calculation more efficiently.
*
* Returns 0 for success or negative error code.
*/
static int rt5645_pll_calc(const unsigned int freq_in,
const unsigned int freq_out, struct rt5645_pll_code *pll_code)
{
int max_n = RT5645_PLL_N_MAX, max_m = RT5645_PLL_M_MAX;
int k, n = 0, m = 0, red, n_t, m_t, pll_out, in_t, out_t;
int red_t = abs(freq_out - freq_in);
bool bypass = false;
if (RT5645_PLL_INP_MAX < freq_in || RT5645_PLL_INP_MIN > freq_in)
return -EINVAL;
k = 100000000 / freq_out - 2;
if (k > RT5645_PLL_K_MAX)
k = RT5645_PLL_K_MAX;
for (n_t = 0; n_t <= max_n; n_t++) {
in_t = freq_in / (k + 2);
pll_out = freq_out / (n_t + 2);
if (in_t < 0)
continue;
if (in_t == pll_out) {
bypass = true;
n = n_t;
goto code_find;
}
red = abs(in_t - pll_out);
if (red < red_t) {
bypass = true;
n = n_t;
m = m_t;
if (red == 0)
goto code_find;
red_t = red;
}
for (m_t = 0; m_t <= max_m; m_t++) {
out_t = in_t / (m_t + 2);
red = abs(out_t - pll_out);
if (red < red_t) {
bypass = false;
n = n_t;
m = m_t;
if (red == 0)
goto code_find;
red_t = red;
}
}
}
pr_debug("Only get approximation about PLL\n");
code_find:
pll_code->m_bp = bypass;
pll_code->m_code = m;
pll_code->n_code = n;
pll_code->k_code = k;
return 0;
}
static int rt5645_set_dai_pll(struct snd_soc_dai *dai, int pll_id, int source,
unsigned int freq_in, unsigned int freq_out)
{
struct snd_soc_codec *codec = dai->codec;
struct rt5645_priv *rt5645 = snd_soc_codec_get_drvdata(codec);
struct rt5645_pll_code pll_code;
struct rl6231_pll_code pll_code;
int ret;
if (source == rt5645->pll_src && freq_in == rt5645->pll_in &&
......@@ -2094,7 +1997,7 @@ static int rt5645_set_dai_pll(struct snd_soc_dai *dai, int pll_id, int source,
return -EINVAL;
}
ret = rt5645_pll_calc(freq_in, freq_out, &pll_code);
ret = rl6231_pll_calc(freq_in, freq_out, &pll_code);
if (ret < 0) {
dev_err(codec->dev, "Unsupport input clock %d\n", freq_in);
return ret;
......
......@@ -2162,13 +2162,6 @@ enum {
RT5645_DMIC_DATA_GPIO11,
};
struct rt5645_pll_code {
bool m_bp; /* Indicates bypass m code or not. */
int m_code;
int n_code;
int k_code;
};
struct rt5645_priv {
struct snd_soc_codec *codec;
struct rt5645_platform_data pdata;
......
......@@ -26,6 +26,7 @@
#include <sound/initval.h>
#include <sound/tlv.h>
#include "rl6231.h"
#include "rt5651.h"
#define RT5651_DEVICE_ID_VALUE 0x6281
......@@ -371,29 +372,16 @@ static const struct snd_kcontrol_new rt5651_snd_controls[] = {
* @kcontrol: The kcontrol of this widget.
* @event: Event id.
*
* Choose dmic clock between 1MHz and 3MHz.
* It is better for clock to approximate 3MHz.
*/
static int set_dmic_clk(struct snd_soc_dapm_widget *w,
struct snd_kcontrol *kcontrol, int event)
{
struct snd_soc_codec *codec = w->codec;
struct rt5651_priv *rt5651 = snd_soc_codec_get_drvdata(codec);
int div[] = {2, 3, 4, 6, 8, 12}, idx = -EINVAL;
int i, rate, red, bound, temp;
rate = rt5651->sysclk;
red = 3000000 * 12;
for (i = 0; i < ARRAY_SIZE(div); i++) {
bound = div[i] * 3000000;
if (rate > bound)
continue;
temp = bound - rate;
if (temp < red) {
red = temp;
idx = i;
}
}
int idx = -EINVAL;
idx = rl6231_calc_dmic_clk(rt5651->sysclk);
if (idx < 0)
dev_err(codec->dev, "Failed to set DMIC clock\n");
else
......@@ -1350,21 +1338,6 @@ static const struct snd_soc_dapm_route rt5651_dapm_routes[] = {
{"PDMR", NULL, "PDM R Mux"},
};
static int get_clk_info(int sclk, int rate)
{
int i, pd[] = {1, 2, 3, 4, 6, 8, 12, 16};
if (sclk <= 0 || rate <= 0)
return -EINVAL;
rate = rate << 8;
for (i = 0; i < ARRAY_SIZE(pd); i++)
if (sclk == rate * pd[i])
return i;
return -EINVAL;
}
static int rt5651_hw_params(struct snd_pcm_substream *substream,
struct snd_pcm_hw_params *params, struct snd_soc_dai *dai)
{
......@@ -1374,7 +1347,7 @@ static int rt5651_hw_params(struct snd_pcm_substream *substream,
int pre_div, bclk_ms, frame_size;
rt5651->lrck[dai->id] = params_rate(params);
pre_div = get_clk_info(rt5651->sysclk, rt5651->lrck[dai->id]);
pre_div = rl6231_get_clk_info(rt5651->sysclk, rt5651->lrck[dai->id]);
if (pre_div < 0) {
dev_err(codec->dev, "Unsupported clock setting\n");
......@@ -1528,65 +1501,12 @@ static int rt5651_set_dai_sysclk(struct snd_soc_dai *dai,
return 0;
}
/**
* rt5651_pll_calc - Calcualte PLL M/N/K code.
* @freq_in: external clock provided to codec.
* @freq_out: target clock which codec works on.
* @pll_code: Pointer to structure with M, N, K and bypass flag.
*
* Calcualte M/N/K code to configure PLL for codec. And K is assigned to 2
* which make calculation more efficiently.
*
* Returns 0 for success or negative error code.
*/
static int rt5651_pll_calc(const unsigned int freq_in,
const unsigned int freq_out, struct rt5651_pll_code *pll_code)
{
int max_n = RT5651_PLL_N_MAX, max_m = RT5651_PLL_M_MAX;
int n = 0, m = 0, red, n_t, m_t, in_t, out_t;
int red_t = abs(freq_out - freq_in);
bool bypass = false;
if (RT5651_PLL_INP_MAX < freq_in || RT5651_PLL_INP_MIN > freq_in)
return -EINVAL;
for (n_t = 0; n_t <= max_n; n_t++) {
in_t = (freq_in >> 1) + (freq_in >> 2) * n_t;
if (in_t < 0)
continue;
if (in_t == freq_out) {
bypass = true;
n = n_t;
goto code_find;
}
for (m_t = 0; m_t <= max_m; m_t++) {
out_t = in_t / (m_t + 2);
red = abs(out_t - freq_out);
if (red < red_t) {
n = n_t;
m = m_t;
if (red == 0)
goto code_find;
red_t = red;
}
}
}
pr_debug("Only get approximation about PLL\n");
code_find:
pll_code->m_bp = bypass;
pll_code->m_code = m;
pll_code->n_code = n;
pll_code->k_code = 2;
return 0;
}
static int rt5651_set_dai_pll(struct snd_soc_dai *dai, int pll_id, int source,
unsigned int freq_in, unsigned int freq_out)
{
struct snd_soc_codec *codec = dai->codec;
struct rt5651_priv *rt5651 = snd_soc_codec_get_drvdata(codec);
struct rt5651_pll_code *pll_code = &rt5651->pll_code;
struct rl6231_pll_code pll_code;
int ret;
if (source == rt5651->pll_src && freq_in == rt5651->pll_in &&
......@@ -1621,20 +1541,21 @@ static int rt5651_set_dai_pll(struct snd_soc_dai *dai, int pll_id, int source,
return -EINVAL;
}
ret = rt5651_pll_calc(freq_in, freq_out, pll_code);
ret = rl6231_pll_calc(freq_in, freq_out, &pll_code);
if (ret < 0) {
dev_err(codec->dev, "Unsupport input clock %d\n", freq_in);
return ret;
}
dev_dbg(codec->dev, "bypass=%d m=%d n=%d k=2\n", pll_code->m_bp,
(pll_code->m_bp ? 0 : pll_code->m_code), pll_code->n_code);
dev_dbg(codec->dev, "bypass=%d m=%d n=%d k=%d\n",
pll_code.m_bp, (pll_code.m_bp ? 0 : pll_code.m_code),
pll_code.n_code, pll_code.k_code);
snd_soc_write(codec, RT5651_PLL_CTRL1,
pll_code->n_code << RT5651_PLL_N_SFT | pll_code->k_code);
pll_code.n_code << RT5651_PLL_N_SFT | pll_code.k_code);
snd_soc_write(codec, RT5651_PLL_CTRL2,
(pll_code->m_bp ? 0 : pll_code->m_code) << RT5651_PLL_M_SFT |
pll_code->m_bp << RT5651_PLL_M_BP_SFT);
(pll_code.m_bp ? 0 : pll_code.m_code) << RT5651_PLL_M_SFT |
pll_code.m_bp << RT5651_PLL_M_BP_SFT);
rt5651->pll_in = freq_in;
rt5651->pll_out = freq_out;
......
......@@ -2069,7 +2069,6 @@ struct rt5651_priv {
int bclk[RT5651_AIFS];
int master[RT5651_AIFS];
struct rt5651_pll_code pll_code;
int pll_src;
int pll_in;
int pll_out;
......
This source diff could not be displayed because it is too large. You can view the blob instead.
/*
* rt5677.h -- RT5677 ALSA SoC audio driver
*
* Copyright 2013 Realtek Semiconductor Corp.
* Author: Oder Chiou <oder_chiou@realtek.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 __RT5677_H__
#define __RT5677_H__
#include <sound/rt5677.h>
/* Info */
#define RT5677_RESET 0x00
#define RT5677_VENDOR_ID 0xfd
#define RT5677_VENDOR_ID1 0xfe
#define RT5677_VENDOR_ID2 0xff
/* I/O - Output */
#define RT5677_LOUT1 0x01
/* I/O - Input */
#define RT5677_IN1 0x03
#define RT5677_MICBIAS 0x04
/* I/O - SLIMBus */
#define RT5677_SLIMBUS_PARAM 0x07
#define RT5677_SLIMBUS_RX 0x08
#define RT5677_SLIMBUS_CTRL 0x09
/* I/O */
#define RT5677_SIDETONE_CTRL 0x13
/* I/O - ADC/DAC */
#define RT5677_ANA_DAC1_2_3_SRC 0x15
#define RT5677_IF_DSP_DAC3_4_MIXER 0x16
#define RT5677_DAC4_DIG_VOL 0x17
#define RT5677_DAC3_DIG_VOL 0x18
#define RT5677_DAC1_DIG_VOL 0x19
#define RT5677_DAC2_DIG_VOL 0x1a
#define RT5677_IF_DSP_DAC2_MIXER 0x1b
#define RT5677_STO1_ADC_DIG_VOL 0x1c
#define RT5677_MONO_ADC_DIG_VOL 0x1d
#define RT5677_STO1_2_ADC_BST 0x1e
#define RT5677_STO2_ADC_DIG_VOL 0x1f
/* Mixer - D-D */
#define RT5677_ADC_BST_CTRL2 0x20
#define RT5677_STO3_4_ADC_BST 0x21
#define RT5677_STO3_ADC_DIG_VOL 0x22
#define RT5677_STO4_ADC_DIG_VOL 0x23
#define RT5677_STO4_ADC_MIXER 0x24
#define RT5677_STO3_ADC_MIXER 0x25
#define RT5677_STO2_ADC_MIXER 0x26
#define RT5677_STO1_ADC_MIXER 0x27
#define RT5677_MONO_ADC_MIXER 0x28
#define RT5677_ADC_IF_DSP_DAC1_MIXER 0x29
#define RT5677_STO1_DAC_MIXER 0x2a
#define RT5677_MONO_DAC_MIXER 0x2b
#define RT5677_DD1_MIXER 0x2c
#define RT5677_DD2_MIXER 0x2d
#define RT5677_IF3_DATA 0x2f
#define RT5677_IF4_DATA 0x30
/* Mixer - PDM */
#define RT5677_PDM_OUT_CTRL 0x31
#define RT5677_PDM_DATA_CTRL1 0x32
#define RT5677_PDM_DATA_CTRL2 0x33
#define RT5677_PDM1_DATA_CTRL2 0x34
#define RT5677_PDM1_DATA_CTRL3 0x35
#define RT5677_PDM1_DATA_CTRL4 0x36
#define RT5677_PDM2_DATA_CTRL2 0x37
#define RT5677_PDM2_DATA_CTRL3 0x38
#define RT5677_PDM2_DATA_CTRL4 0x39
/* TDM */
#define RT5677_TDM1_CTRL1 0x3b
#define RT5677_TDM1_CTRL2 0x3c
#define RT5677_TDM1_CTRL3 0x3d
#define RT5677_TDM1_CTRL4 0x3e
#define RT5677_TDM1_CTRL5 0x3f
#define RT5677_TDM2_CTRL1 0x40
#define RT5677_TDM2_CTRL2 0x41
#define RT5677_TDM2_CTRL3 0x42
#define RT5677_TDM2_CTRL4 0x43
#define RT5677_TDM2_CTRL5 0x44
/* I2C_MASTER_CTRL */
#define RT5677_I2C_MASTER_CTRL1 0x47
#define RT5677_I2C_MASTER_CTRL2 0x48
#define RT5677_I2C_MASTER_CTRL3 0x49
#define RT5677_I2C_MASTER_CTRL4 0x4a
#define RT5677_I2C_MASTER_CTRL5 0x4b
#define RT5677_I2C_MASTER_CTRL6 0x4c
#define RT5677_I2C_MASTER_CTRL7 0x4d
#define RT5677_I2C_MASTER_CTRL8 0x4e
/* DMIC */
#define RT5677_DMIC_CTRL1 0x50
#define RT5677_DMIC_CTRL2 0x51
/* Haptic Generator */
#define RT5677_HAP_GENE_CTRL1 0x56
#define RT5677_HAP_GENE_CTRL2 0x57
#define RT5677_HAP_GENE_CTRL3 0x58
#define RT5677_HAP_GENE_CTRL4 0x59
#define RT5677_HAP_GENE_CTRL5 0x5a
#define RT5677_HAP_GENE_CTRL6 0x5b
#define RT5677_HAP_GENE_CTRL7 0x5c
#define RT5677_HAP_GENE_CTRL8 0x5d
#define RT5677_HAP_GENE_CTRL9 0x5e
#define RT5677_HAP_GENE_CTRL10 0x5f
/* Power */
#define RT5677_PWR_DIG1 0x61
#define RT5677_PWR_DIG2 0x62
#define RT5677_PWR_ANLG1 0x63
#define RT5677_PWR_ANLG2 0x64
#define RT5677_PWR_DSP1 0x65
#define RT5677_PWR_DSP_ST 0x66
#define RT5677_PWR_DSP2 0x67
#define RT5677_ADC_DAC_HPF_CTRL1 0x68
/* Private Register Control */
#define RT5677_PRIV_INDEX 0x6a
#define RT5677_PRIV_DATA 0x6c
/* Format - ADC/DAC */
#define RT5677_I2S4_SDP 0x6f
#define RT5677_I2S1_SDP 0x70
#define RT5677_I2S2_SDP 0x71
#define RT5677_I2S3_SDP 0x72
#define RT5677_CLK_TREE_CTRL1 0x73
#define RT5677_CLK_TREE_CTRL2 0x74
#define RT5677_CLK_TREE_CTRL3 0x75
/* Function - Analog */
#define RT5677_PLL1_CTRL1 0x7a
#define RT5677_PLL1_CTRL2 0x7b
#define RT5677_PLL2_CTRL1 0x7c
#define RT5677_PLL2_CTRL2 0x7d
#define RT5677_GLB_CLK1 0x80
#define RT5677_GLB_CLK2 0x81
#define RT5677_ASRC_1 0x83
#define RT5677_ASRC_2 0x84
#define RT5677_ASRC_3 0x85
#define RT5677_ASRC_4 0x86
#define RT5677_ASRC_5 0x87
#define RT5677_ASRC_6 0x88
#define RT5677_ASRC_7 0x89
#define RT5677_ASRC_8 0x8a
#define RT5677_ASRC_9 0x8b
#define RT5677_ASRC_10 0x8c
#define RT5677_ASRC_11 0x8d
#define RT5677_ASRC_12 0x8e
#define RT5677_ASRC_13 0x8f
#define RT5677_ASRC_14 0x90
#define RT5677_ASRC_15 0x91
#define RT5677_ASRC_16 0x92
#define RT5677_ASRC_17 0x93
#define RT5677_ASRC_18 0x94
#define RT5677_ASRC_19 0x95
#define RT5677_ASRC_20 0x97
#define RT5677_ASRC_21 0x98
#define RT5677_ASRC_22 0x99
#define RT5677_ASRC_23 0x9a
#define RT5677_VAD_CTRL1 0x9c
#define RT5677_VAD_CTRL2 0x9d
#define RT5677_VAD_CTRL3 0x9e
#define RT5677_VAD_CTRL4 0x9f
#define RT5677_VAD_CTRL5 0xa0
/* Function - Digital */
#define RT5677_DSP_INB_CTRL1 0xa3
#define RT5677_DSP_INB_CTRL2 0xa4
#define RT5677_DSP_IN_OUTB_CTRL 0xa5
#define RT5677_DSP_OUTB0_1_DIG_VOL 0xa6
#define RT5677_DSP_OUTB2_3_DIG_VOL 0xa7
#define RT5677_DSP_OUTB4_5_DIG_VOL 0xa8
#define RT5677_DSP_OUTB6_7_DIG_VOL 0xa9
#define RT5677_ADC_EQ_CTRL1 0xae
#define RT5677_ADC_EQ_CTRL2 0xaf
#define RT5677_EQ_CTRL1 0xb0
#define RT5677_EQ_CTRL2 0xb1
#define RT5677_EQ_CTRL3 0xb2
#define RT5677_SOFT_VOL_ZERO_CROSS1 0xb3
#define RT5677_JD_CTRL1 0xb5
#define RT5677_JD_CTRL2 0xb6
#define RT5677_JD_CTRL3 0xb8
#define RT5677_IRQ_CTRL1 0xbd
#define RT5677_IRQ_CTRL2 0xbe
#define RT5677_GPIO_ST 0xbf
#define RT5677_GPIO_CTRL1 0xc0
#define RT5677_GPIO_CTRL2 0xc1
#define RT5677_GPIO_CTRL3 0xc2
#define RT5677_STO1_ADC_HI_FILTER1 0xc5
#define RT5677_STO1_ADC_HI_FILTER2 0xc6
#define RT5677_MONO_ADC_HI_FILTER1 0xc7
#define RT5677_MONO_ADC_HI_FILTER2 0xc8
#define RT5677_STO2_ADC_HI_FILTER1 0xc9
#define RT5677_STO2_ADC_HI_FILTER2 0xca
#define RT5677_STO3_ADC_HI_FILTER1 0xcb
#define RT5677_STO3_ADC_HI_FILTER2 0xcc
#define RT5677_STO4_ADC_HI_FILTER1 0xcd
#define RT5677_STO4_ADC_HI_FILTER2 0xce
#define RT5677_MB_DRC_CTRL1 0xd0
#define RT5677_DRC1_CTRL1 0xd2
#define RT5677_DRC1_CTRL2 0xd3
#define RT5677_DRC1_CTRL3 0xd4
#define RT5677_DRC1_CTRL4 0xd5
#define RT5677_DRC1_CTRL5 0xd6
#define RT5677_DRC1_CTRL6 0xd7
#define RT5677_DRC2_CTRL1 0xd8
#define RT5677_DRC2_CTRL2 0xd9
#define RT5677_DRC2_CTRL3 0xda
#define RT5677_DRC2_CTRL4 0xdb
#define RT5677_DRC2_CTRL5 0xdc
#define RT5677_DRC2_CTRL6 0xdd
#define RT5677_DRC1_HL_CTRL1 0xde
#define RT5677_DRC1_HL_CTRL2 0xdf
#define RT5677_DRC2_HL_CTRL1 0xe0
#define RT5677_DRC2_HL_CTRL2 0xe1
#define RT5677_DSP_INB1_SRC_CTRL1 0xe3
#define RT5677_DSP_INB1_SRC_CTRL2 0xe4
#define RT5677_DSP_INB1_SRC_CTRL3 0xe5
#define RT5677_DSP_INB1_SRC_CTRL4 0xe6
#define RT5677_DSP_INB2_SRC_CTRL1 0xe7
#define RT5677_DSP_INB2_SRC_CTRL2 0xe8
#define RT5677_DSP_INB2_SRC_CTRL3 0xe9
#define RT5677_DSP_INB2_SRC_CTRL4 0xea
#define RT5677_DSP_INB3_SRC_CTRL1 0xeb
#define RT5677_DSP_INB3_SRC_CTRL2 0xec
#define RT5677_DSP_INB3_SRC_CTRL3 0xed
#define RT5677_DSP_INB3_SRC_CTRL4 0xee
#define RT5677_DSP_OUTB1_SRC_CTRL1 0xef
#define RT5677_DSP_OUTB1_SRC_CTRL2 0xf0
#define RT5677_DSP_OUTB1_SRC_CTRL3 0xf1
#define RT5677_DSP_OUTB1_SRC_CTRL4 0xf2
#define RT5677_DSP_OUTB2_SRC_CTRL1 0xf3
#define RT5677_DSP_OUTB2_SRC_CTRL2 0xf4
#define RT5677_DSP_OUTB2_SRC_CTRL3 0xf5
#define RT5677_DSP_OUTB2_SRC_CTRL4 0xf6
/* Virtual DSP Mixer Control */
#define RT5677_DSP_OUTB_0123_MIXER_CTRL 0xf7
#define RT5677_DSP_OUTB_45_MIXER_CTRL 0xf8
#define RT5677_DSP_OUTB_67_MIXER_CTRL 0xf9
/* General Control */
#define RT5677_DIG_MISC 0xfa
#define RT5677_GEN_CTRL1 0xfb
#define RT5677_GEN_CTRL2 0xfc
/* DSP Mode I2C Control*/
#define RT5677_DSP_I2C_OP_CODE 0x00
#define RT5677_DSP_I2C_ADDR_LSB 0x01
#define RT5677_DSP_I2C_ADDR_MSB 0x02
#define RT5677_DSP_I2C_DATA_LSB 0x03
#define RT5677_DSP_I2C_DATA_MSB 0x04
/* Index of Codec Private Register definition */
#define RT5677_PR_DRC1_CTRL_1 0x01
#define RT5677_PR_DRC1_CTRL_2 0x02
#define RT5677_PR_DRC1_CTRL_3 0x03
#define RT5677_PR_DRC1_CTRL_4 0x04
#define RT5677_PR_DRC1_CTRL_5 0x05
#define RT5677_PR_DRC1_CTRL_6 0x06
#define RT5677_PR_DRC1_CTRL_7 0x07
#define RT5677_PR_DRC2_CTRL_1 0x08
#define RT5677_PR_DRC2_CTRL_2 0x09
#define RT5677_PR_DRC2_CTRL_3 0x0a
#define RT5677_PR_DRC2_CTRL_4 0x0b
#define RT5677_PR_DRC2_CTRL_5 0x0c
#define RT5677_PR_DRC2_CTRL_6 0x0d
#define RT5677_PR_DRC2_CTRL_7 0x0e
#define RT5677_BIAS_CUR1 0x10
#define RT5677_BIAS_CUR2 0x12
#define RT5677_BIAS_CUR3 0x13
#define RT5677_BIAS_CUR4 0x14
#define RT5677_BIAS_CUR5 0x15
#define RT5677_VREF_LOUT_CTRL 0x17
#define RT5677_DIG_VOL_CTRL1 0x1a
#define RT5677_DIG_VOL_CTRL2 0x1b
#define RT5677_ANA_ADC_GAIN_CTRL 0x1e
#define RT5677_VAD_SRAM_TEST1 0x20
#define RT5677_VAD_SRAM_TEST2 0x21
#define RT5677_VAD_SRAM_TEST3 0x22
#define RT5677_VAD_SRAM_TEST4 0x23
#define RT5677_PAD_DRV_CTRL 0x26
#define RT5677_DIG_IN_PIN_ST_CTRL1 0x29
#define RT5677_DIG_IN_PIN_ST_CTRL2 0x2a
#define RT5677_DIG_IN_PIN_ST_CTRL3 0x2b
#define RT5677_PLL1_INT 0x38
#define RT5677_PLL2_INT 0x39
#define RT5677_TEST_CTRL1 0x3a
#define RT5677_TEST_CTRL2 0x3b
#define RT5677_TEST_CTRL3 0x3c
#define RT5677_CHOP_DAC_ADC 0x3d
#define RT5677_SOFT_DEPOP_DAC_CLK_CTRL 0x3e
#define RT5677_CROSS_OVER_FILTER1 0x90
#define RT5677_CROSS_OVER_FILTER2 0x91
#define RT5677_CROSS_OVER_FILTER3 0x92
#define RT5677_CROSS_OVER_FILTER4 0x93
#define RT5677_CROSS_OVER_FILTER5 0x94
#define RT5677_CROSS_OVER_FILTER6 0x95
#define RT5677_CROSS_OVER_FILTER7 0x96
#define RT5677_CROSS_OVER_FILTER8 0x97
#define RT5677_CROSS_OVER_FILTER9 0x98
#define RT5677_CROSS_OVER_FILTER10 0x99
/* global definition */
#define RT5677_L_MUTE (0x1 << 15)
#define RT5677_L_MUTE_SFT 15
#define RT5677_VOL_L_MUTE (0x1 << 14)
#define RT5677_VOL_L_SFT 14
#define RT5677_R_MUTE (0x1 << 7)
#define RT5677_R_MUTE_SFT 7
#define RT5677_VOL_R_MUTE (0x1 << 6)
#define RT5677_VOL_R_SFT 6
#define RT5677_L_VOL_MASK (0x3f << 8)
#define RT5677_L_VOL_SFT 8
#define RT5677_R_VOL_MASK (0x3f)
#define RT5677_R_VOL_SFT 0
/* LOUT1 Control (0x01) */
#define RT5677_LOUT1_L_MUTE (0x1 << 15)
#define RT5677_LOUT1_L_MUTE_SFT (15)
#define RT5677_LOUT1_L_DF (0x1 << 14)
#define RT5677_LOUT1_L_DF_SFT (14)
#define RT5677_LOUT2_L_MUTE (0x1 << 13)
#define RT5677_LOUT2_L_MUTE_SFT (13)
#define RT5677_LOUT2_L_DF (0x1 << 12)
#define RT5677_LOUT2_L_DF_SFT (12)
#define RT5677_LOUT3_L_MUTE (0x1 << 11)
#define RT5677_LOUT3_L_MUTE_SFT (11)
#define RT5677_LOUT3_L_DF (0x1 << 10)
#define RT5677_LOUT3_L_DF_SFT (10)
#define RT5677_LOUT1_ENH_DRV (0x1 << 9)
#define RT5677_LOUT1_ENH_DRV_SFT (9)
#define RT5677_LOUT2_ENH_DRV (0x1 << 8)
#define RT5677_LOUT2_ENH_DRV_SFT (8)
#define RT5677_LOUT3_ENH_DRV (0x1 << 7)
#define RT5677_LOUT3_ENH_DRV_SFT (7)
/* IN1 Control (0x03) */
#define RT5677_BST_MASK1 (0xf << 12)
#define RT5677_BST_SFT1 12
#define RT5677_BST_MASK2 (0xf << 8)
#define RT5677_BST_SFT2 8
#define RT5677_IN_DF1 (0x1 << 7)
#define RT5677_IN_DF1_SFT 7
#define RT5677_IN_DF2 (0x1 << 6)
#define RT5677_IN_DF2_SFT 6
/* Micbias Control (0x04) */
#define RT5677_MICBIAS1_OUTVOLT_MASK (0x1 << 15)
#define RT5677_MICBIAS1_OUTVOLT_SFT (15)
#define RT5677_MICBIAS1_OUTVOLT_2_7V (0x0 << 15)
#define RT5677_MICBIAS1_OUTVOLT_2_25V (0x1 << 15)
#define RT5677_MICBIAS1_CTRL_VDD_MASK (0x1 << 14)
#define RT5677_MICBIAS1_CTRL_VDD_SFT (14)
#define RT5677_MICBIAS1_CTRL_VDD_1_8V (0x0 << 14)
#define RT5677_MICBIAS1_CTRL_VDD_3_3V (0x1 << 14)
#define RT5677_MICBIAS1_OVCD_MASK (0x1 << 11)
#define RT5677_MICBIAS1_OVCD_SHIFT (11)
#define RT5677_MICBIAS1_OVCD_DIS (0x0 << 11)
#define RT5677_MICBIAS1_OVCD_EN (0x1 << 11)
#define RT5677_MICBIAS1_OVTH_MASK (0x3 << 9)
#define RT5677_MICBIAS1_OVTH_SFT 9
#define RT5677_MICBIAS1_OVTH_640UA (0x0 << 9)
#define RT5677_MICBIAS1_OVTH_1280UA (0x1 << 9)
#define RT5677_MICBIAS1_OVTH_1920UA (0x2 << 9)
/* SLIMbus Parameter (0x07) */
/* SLIMbus Rx (0x08) */
#define RT5677_SLB_ADC4_MASK (0x3 << 6)
#define RT5677_SLB_ADC4_SFT 6
#define RT5677_SLB_ADC3_MASK (0x3 << 4)
#define RT5677_SLB_ADC3_SFT 4
#define RT5677_SLB_ADC2_MASK (0x3 << 2)
#define RT5677_SLB_ADC2_SFT 2
#define RT5677_SLB_ADC1_MASK (0x3 << 0)
#define RT5677_SLB_ADC1_SFT 0
/* SLIMBus control (0x09) */
/* Sidetone Control (0x13) */
#define RT5677_ST_HPF_SEL_MASK (0x7 << 13)
#define RT5677_ST_HPF_SEL_SFT 13
#define RT5677_ST_HPF_PATH (0x1 << 12)
#define RT5677_ST_HPF_PATH_SFT 12
#define RT5677_ST_SEL_MASK (0x7 << 9)
#define RT5677_ST_SEL_SFT 9
#define RT5677_ST_EN (0x1 << 6)
#define RT5677_ST_EN_SFT 6
/* Analog DAC1/2/3 Source Control (0x15) */
#define RT5677_ANA_DAC3_SRC_SEL_MASK (0x3 << 4)
#define RT5677_ANA_DAC3_SRC_SEL_SFT 4
#define RT5677_ANA_DAC1_2_SRC_SEL_MASK (0x3 << 0)
#define RT5677_ANA_DAC1_2_SRC_SEL_SFT 0
/* IF/DSP to DAC3/4 Mixer Control (0x16) */
#define RT5677_M_DAC4_L_VOL (0x1 << 15)
#define RT5677_M_DAC4_L_VOL_SFT 15
#define RT5677_SEL_DAC4_L_SRC_MASK (0x7 << 12)
#define RT5677_SEL_DAC4_L_SRC_SFT 12
#define RT5677_M_DAC4_R_VOL (0x1 << 11)
#define RT5677_M_DAC4_R_VOL_SFT 11
#define RT5677_SEL_DAC4_R_SRC_MASK (0x7 << 8)
#define RT5677_SEL_DAC4_R_SRC_SFT 8
#define RT5677_M_DAC3_L_VOL (0x1 << 7)
#define RT5677_M_DAC3_L_VOL_SFT 7
#define RT5677_SEL_DAC3_L_SRC_MASK (0x7 << 4)
#define RT5677_SEL_DAC3_L_SRC_SFT 4
#define RT5677_M_DAC3_R_VOL (0x1 << 3)
#define RT5677_M_DAC3_R_VOL_SFT 3
#define RT5677_SEL_DAC3_R_SRC_MASK (0x7 << 0)
#define RT5677_SEL_DAC3_R_SRC_SFT 0
/* DAC4 Digital Volume (0x17) */
#define RT5677_DAC4_L_VOL_MASK (0xff << 8)
#define RT5677_DAC4_L_VOL_SFT 8
#define RT5677_DAC4_R_VOL_MASK (0xff)
#define RT5677_DAC4_R_VOL_SFT 0
/* DAC3 Digital Volume (0x18) */
#define RT5677_DAC3_L_VOL_MASK (0xff << 8)
#define RT5677_DAC3_L_VOL_SFT 8
#define RT5677_DAC3_R_VOL_MASK (0xff)
#define RT5677_DAC3_R_VOL_SFT 0
/* DAC3 Digital Volume (0x19) */
#define RT5677_DAC1_L_VOL_MASK (0xff << 8)
#define RT5677_DAC1_L_VOL_SFT 8
#define RT5677_DAC1_R_VOL_MASK (0xff)
#define RT5677_DAC1_R_VOL_SFT 0
/* DAC2 Digital Volume (0x1a) */
#define RT5677_DAC2_L_VOL_MASK (0xff << 8)
#define RT5677_DAC2_L_VOL_SFT 8
#define RT5677_DAC2_R_VOL_MASK (0xff)
#define RT5677_DAC2_R_VOL_SFT 0
/* IF/DSP to DAC2 Mixer Control (0x1b) */
#define RT5677_M_DAC2_L_VOL (0x1 << 7)
#define RT5677_M_DAC2_L_VOL_SFT 7
#define RT5677_SEL_DAC2_L_SRC_MASK (0x7 << 4)
#define RT5677_SEL_DAC2_L_SRC_SFT 4
#define RT5677_M_DAC2_R_VOL (0x1 << 3)
#define RT5677_M_DAC2_R_VOL_SFT 3
#define RT5677_SEL_DAC2_R_SRC_MASK (0x7 << 0)
#define RT5677_SEL_DAC2_R_SRC_SFT 0
/* Stereo1 ADC Digital Volume Control (0x1c) */
#define RT5677_STO1_ADC_L_VOL_MASK (0x7f << 8)
#define RT5677_STO1_ADC_L_VOL_SFT 8
#define RT5677_STO1_ADC_R_VOL_MASK (0x7f)
#define RT5677_STO1_ADC_R_VOL_SFT 0
/* Mono ADC Digital Volume Control (0x1d) */
#define RT5677_MONO_ADC_L_VOL_MASK (0x7f << 8)
#define RT5677_MONO_ADC_L_VOL_SFT 8
#define RT5677_MONO_ADC_R_VOL_MASK (0x7f)
#define RT5677_MONO_ADC_R_VOL_SFT 0
/* Stereo 1/2 ADC Boost Gain Control (0x1e) */
#define RT5677_STO1_ADC_L_BST_MASK (0x3 << 14)
#define RT5677_STO1_ADC_L_BST_SFT 14
#define RT5677_STO1_ADC_R_BST_MASK (0x3 << 12)
#define RT5677_STO1_ADC_R_BST_SFT 12
#define RT5677_STO1_ADC_COMP_MASK (0x3 << 10)
#define RT5677_STO1_ADC_COMP_SFT 10
#define RT5677_STO2_ADC_L_BST_MASK (0x3 << 8)
#define RT5677_STO2_ADC_L_BST_SFT 8
#define RT5677_STO2_ADC_R_BST_MASK (0x3 << 6)
#define RT5677_STO2_ADC_R_BST_SFT 6
#define RT5677_STO2_ADC_COMP_MASK (0x3 << 4)
#define RT5677_STO2_ADC_COMP_SFT 4
/* Stereo2 ADC Digital Volume Control (0x1f) */
#define RT5677_STO2_ADC_L_VOL_MASK (0x7f << 8)
#define RT5677_STO2_ADC_L_VOL_SFT 8
#define RT5677_STO2_ADC_R_VOL_MASK (0x7f)
#define RT5677_STO2_ADC_R_VOL_SFT 0
/* ADC Boost Gain Control 2 (0x20) */
#define RT5677_MONO_ADC_L_BST_MASK (0x3 << 14)
#define RT5677_MONO_ADC_L_BST_SFT 14
#define RT5677_MONO_ADC_R_BST_MASK (0x3 << 12)
#define RT5677_MONO_ADC_R_BST_SFT 12
#define RT5677_MONO_ADC_COMP_MASK (0x3 << 10)
#define RT5677_MONO_ADC_COMP_SFT 10
/* Stereo 3/4 ADC Boost Gain Control (0x21) */
#define RT5677_STO3_ADC_L_BST_MASK (0x3 << 14)
#define RT5677_STO3_ADC_L_BST_SFT 14
#define RT5677_STO3_ADC_R_BST_MASK (0x3 << 12)
#define RT5677_STO3_ADC_R_BST_SFT 12
#define RT5677_STO3_ADC_COMP_MASK (0x3 << 10)
#define RT5677_STO3_ADC_COMP_SFT 10
#define RT5677_STO4_ADC_L_BST_MASK (0x3 << 8)
#define RT5677_STO4_ADC_L_BST_SFT 8
#define RT5677_STO4_ADC_R_BST_MASK (0x3 << 6)
#define RT5677_STO4_ADC_R_BST_SFT 6
#define RT5677_STO4_ADC_COMP_MASK (0x3 << 4)
#define RT5677_STO4_ADC_COMP_SFT 4
/* Stereo3 ADC Digital Volume Control (0x22) */
#define RT5677_STO3_ADC_L_VOL_MASK (0x7f << 8)
#define RT5677_STO3_ADC_L_VOL_SFT 8
#define RT5677_STO3_ADC_R_VOL_MASK (0x7f)
#define RT5677_STO3_ADC_R_VOL_SFT 0
/* Stereo4 ADC Digital Volume Control (0x23) */
#define RT5677_STO4_ADC_L_VOL_MASK (0x7f << 8)
#define RT5677_STO4_ADC_L_VOL_SFT 8
#define RT5677_STO4_ADC_R_VOL_MASK (0x7f)
#define RT5677_STO4_ADC_R_VOL_SFT 0
/* Stereo4 ADC Mixer control (0x24) */
#define RT5677_M_STO4_ADC_L2 (0x1 << 15)
#define RT5677_M_STO4_ADC_L2_SFT 15
#define RT5677_M_STO4_ADC_L1 (0x1 << 14)
#define RT5677_M_STO4_ADC_L1_SFT 14
#define RT5677_SEL_STO4_ADC1_MASK (0x3 << 12)
#define RT5677_SEL_STO4_ADC1_SFT 12
#define RT5677_SEL_STO4_ADC2_MASK (0x3 << 10)
#define RT5677_SEL_STO4_ADC2_SFT 10
#define RT5677_SEL_STO4_DMIC_MASK (0x3 << 8)
#define RT5677_SEL_STO4_DMIC_SFT 8
#define RT5677_M_STO4_ADC_R1 (0x1 << 7)
#define RT5677_M_STO4_ADC_R1_SFT 7
#define RT5677_M_STO4_ADC_R2 (0x1 << 6)
#define RT5677_M_STO4_ADC_R2_SFT 6
/* Stereo3 ADC Mixer control (0x25) */
#define RT5677_M_STO3_ADC_L2 (0x1 << 15)
#define RT5677_M_STO3_ADC_L2_SFT 15
#define RT5677_M_STO3_ADC_L1 (0x1 << 14)
#define RT5677_M_STO3_ADC_L1_SFT 14
#define RT5677_SEL_STO3_ADC1_MASK (0x3 << 12)
#define RT5677_SEL_STO3_ADC1_SFT 12
#define RT5677_SEL_STO3_ADC2_MASK (0x3 << 10)
#define RT5677_SEL_STO3_ADC2_SFT 10
#define RT5677_SEL_STO3_DMIC_MASK (0x3 << 8)
#define RT5677_SEL_STO3_DMIC_SFT 8
#define RT5677_M_STO3_ADC_R1 (0x1 << 7)
#define RT5677_M_STO3_ADC_R1_SFT 7
#define RT5677_M_STO3_ADC_R2 (0x1 << 6)
#define RT5677_M_STO3_ADC_R2_SFT 6
/* Stereo2 ADC Mixer Control (0x26) */
#define RT5677_M_STO2_ADC_L2 (0x1 << 15)
#define RT5677_M_STO2_ADC_L2_SFT 15
#define RT5677_M_STO2_ADC_L1 (0x1 << 14)
#define RT5677_M_STO2_ADC_L1_SFT 14
#define RT5677_SEL_STO2_ADC1_MASK (0x3 << 12)
#define RT5677_SEL_STO2_ADC1_SFT 12
#define RT5677_SEL_STO2_ADC2_MASK (0x3 << 10)
#define RT5677_SEL_STO2_ADC2_SFT 10
#define RT5677_SEL_STO2_DMIC_MASK (0x3 << 8)
#define RT5677_SEL_STO2_DMIC_SFT 8
#define RT5677_M_STO2_ADC_R1 (0x1 << 7)
#define RT5677_M_STO2_ADC_R1_SFT 7
#define RT5677_M_STO2_ADC_R2 (0x1 << 6)
#define RT5677_M_STO2_ADC_R2_SFT 6
#define RT5677_SEL_STO2_LR_MIX_MASK (0x1 << 0)
#define RT5677_SEL_STO2_LR_MIX_SFT 0
#define RT5677_SEL_STO2_LR_MIX_L (0x0 << 0)
#define RT5677_SEL_STO2_LR_MIX_LR (0x1 << 0)
/* Stereo1 ADC Mixer control (0x27) */
#define RT5677_M_STO1_ADC_L2 (0x1 << 15)
#define RT5677_M_STO1_ADC_L2_SFT 15
#define RT5677_M_STO1_ADC_L1 (0x1 << 14)
#define RT5677_M_STO1_ADC_L1_SFT 14
#define RT5677_SEL_STO1_ADC1_MASK (0x3 << 12)
#define RT5677_SEL_STO1_ADC1_SFT 12
#define RT5677_SEL_STO1_ADC2_MASK (0x3 << 10)
#define RT5677_SEL_STO1_ADC2_SFT 10
#define RT5677_SEL_STO1_DMIC_MASK (0x3 << 8)
#define RT5677_SEL_STO1_DMIC_SFT 8
#define RT5677_M_STO1_ADC_R1 (0x1 << 7)
#define RT5677_M_STO1_ADC_R1_SFT 7
#define RT5677_M_STO1_ADC_R2 (0x1 << 6)
#define RT5677_M_STO1_ADC_R2_SFT 6
/* Mono ADC Mixer control (0x28) */
#define RT5677_M_MONO_ADC_L2 (0x1 << 15)
#define RT5677_M_MONO_ADC_L2_SFT 15
#define RT5677_M_MONO_ADC_L1 (0x1 << 14)
#define RT5677_M_MONO_ADC_L1_SFT 14
#define RT5677_SEL_MONO_ADC_L1_MASK (0x3 << 12)
#define RT5677_SEL_MONO_ADC_L1_SFT 12
#define RT5677_SEL_MONO_ADC_L2_MASK (0x3 << 10)
#define RT5677_SEL_MONO_ADC_L2_SFT 10
#define RT5677_SEL_MONO_DMIC_L_MASK (0x3 << 8)
#define RT5677_SEL_MONO_DMIC_L_SFT 8
#define RT5677_M_MONO_ADC_R1 (0x1 << 7)
#define RT5677_M_MONO_ADC_R1_SFT 7
#define RT5677_M_MONO_ADC_R2 (0x1 << 6)
#define RT5677_M_MONO_ADC_R2_SFT 6
#define RT5677_SEL_MONO_ADC_R1_MASK (0x3 << 4)
#define RT5677_SEL_MONO_ADC_R1_SFT 4
#define RT5677_SEL_MONO_ADC_R2_MASK (0x3 << 2)
#define RT5677_SEL_MONO_ADC_R2_SFT 2
#define RT5677_SEL_MONO_DMIC_R_MASK (0x3 << 0)
#define RT5677_SEL_MONO_DMIC_R_SFT 0
/* ADC/IF/DSP to DAC1 Mixer control (0x29) */
#define RT5677_M_ADDA_MIXER1_L (0x1 << 15)
#define RT5677_M_ADDA_MIXER1_L_SFT 15
#define RT5677_M_DAC1_L (0x1 << 14)
#define RT5677_M_DAC1_L_SFT 14
#define RT5677_DAC1_L_SEL_MASK (0x7 << 8)
#define RT5677_DAC1_L_SEL_SFT 8
#define RT5677_M_ADDA_MIXER1_R (0x1 << 7)
#define RT5677_M_ADDA_MIXER1_R_SFT 7
#define RT5677_M_DAC1_R (0x1 << 6)
#define RT5677_M_DAC1_R_SFT 6
#define RT5677_ADDA1_SEL_MASK (0x3 << 0)
#define RT5677_ADDA1_SEL_SFT 0
/* Stereo1 DAC Mixer L/R Control (0x2a) */
#define RT5677_M_ST_DAC1_L (0x1 << 15)
#define RT5677_M_ST_DAC1_L_SFT 15
#define RT5677_M_DAC1_L_STO_L (0x1 << 13)
#define RT5677_M_DAC1_L_STO_L_SFT 13
#define RT5677_DAC1_L_STO_L_VOL_MASK (0x1 << 12)
#define RT5677_DAC1_L_STO_L_VOL_SFT 12
#define RT5677_M_DAC2_L_STO_L (0x1 << 11)
#define RT5677_M_DAC2_L_STO_L_SFT 11
#define RT5677_DAC2_L_STO_L_VOL_MASK (0x1 << 10)
#define RT5677_DAC2_L_STO_L_VOL_SFT 10
#define RT5677_M_DAC1_R_STO_L (0x1 << 9)
#define RT5677_M_DAC1_R_STO_L_SFT 9
#define RT5677_DAC1_R_STO_L_VOL_MASK (0x1 << 8)
#define RT5677_DAC1_R_STO_L_VOL_SFT 8
#define RT5677_M_ST_DAC1_R (0x1 << 7)
#define RT5677_M_ST_DAC1_R_SFT 7
#define RT5677_M_DAC1_R_STO_R (0x1 << 5)
#define RT5677_M_DAC1_R_STO_R_SFT 5
#define RT5677_DAC1_R_STO_R_VOL_MASK (0x1 << 4)
#define RT5677_DAC1_R_STO_R_VOL_SFT 4
#define RT5677_M_DAC2_R_STO_R (0x1 << 3)
#define RT5677_M_DAC2_R_STO_R_SFT 3
#define RT5677_DAC2_R_STO_R_VOL_MASK (0x1 << 2)
#define RT5677_DAC2_R_STO_R_VOL_SFT 2
#define RT5677_M_DAC1_L_STO_R (0x1 << 1)
#define RT5677_M_DAC1_L_STO_R_SFT 1
#define RT5677_DAC1_L_STO_R_VOL_MASK (0x1 << 0)
#define RT5677_DAC1_L_STO_R_VOL_SFT 0
/* Mono DAC Mixer L/R Control (0x2b) */
#define RT5677_M_ST_DAC2_L (0x1 << 15)
#define RT5677_M_ST_DAC2_L_SFT 15
#define RT5677_M_DAC2_L_MONO_L (0x1 << 13)
#define RT5677_M_DAC2_L_MONO_L_SFT 13
#define RT5677_DAC2_L_MONO_L_VOL_MASK (0x1 << 12)
#define RT5677_DAC2_L_MONO_L_VOL_SFT 12
#define RT5677_M_DAC2_R_MONO_L (0x1 << 11)
#define RT5677_M_DAC2_R_MONO_L_SFT 11
#define RT5677_DAC2_R_MONO_L_VOL_MASK (0x1 << 10)
#define RT5677_DAC2_R_MONO_L_VOL_SFT 10
#define RT5677_M_DAC1_L_MONO_L (0x1 << 9)
#define RT5677_M_DAC1_L_MONO_L_SFT 9
#define RT5677_DAC1_L_MONO_L_VOL_MASK (0x1 << 8)
#define RT5677_DAC1_L_MONO_L_VOL_SFT 8
#define RT5677_M_ST_DAC2_R (0x1 << 7)
#define RT5677_M_ST_DAC2_R_SFT 7
#define RT5677_M_DAC2_R_MONO_R (0x1 << 5)
#define RT5677_M_DAC2_R_MONO_R_SFT 5
#define RT5677_DAC2_R_MONO_R_VOL_MASK (0x1 << 4)
#define RT5677_DAC2_R_MONO_R_VOL_SFT 4
#define RT5677_M_DAC1_R_MONO_R (0x1 << 3)
#define RT5677_M_DAC1_R_MONO_R_SFT 3
#define RT5677_DAC1_R_MONO_R_VOL_MASK (0x1 << 2)
#define RT5677_DAC1_R_MONO_R_VOL_SFT 2
#define RT5677_M_DAC2_L_MONO_R (0x1 << 1)
#define RT5677_M_DAC2_L_MONO_R_SFT 1
#define RT5677_DAC2_L_MONO_R_VOL_MASK (0x1 << 0)
#define RT5677_DAC2_L_MONO_R_VOL_SFT 0
/* DD Mixer 1 Control (0x2c) */
#define RT5677_M_STO_L_DD1_L (0x1 << 15)
#define RT5677_M_STO_L_DD1_L_SFT 15
#define RT5677_STO_L_DD1_L_VOL_MASK (0x1 << 14)
#define RT5677_STO_L_DD1_L_VOL_SFT 14
#define RT5677_M_MONO_L_DD1_L (0x1 << 13)
#define RT5677_M_MONO_L_DD1_L_SFT 13
#define RT5677_MONO_L_DD1_L_VOL_MASK (0x1 << 12)
#define RT5677_MONO_L_DD1_L_VOL_SFT 12
#define RT5677_M_DAC3_L_DD1_L (0x1 << 11)
#define RT5677_M_DAC3_L_DD1_L_SFT 11
#define RT5677_DAC3_L_DD1_L_VOL_MASK (0x1 << 10)
#define RT5677_DAC3_L_DD1_L_VOL_SFT 10
#define RT5677_M_DAC3_R_DD1_L (0x1 << 9)
#define RT5677_M_DAC3_R_DD1_L_SFT 9
#define RT5677_DAC3_R_DD1_L_VOL_MASK (0x1 << 8)
#define RT5677_DAC3_R_DD1_L_VOL_SFT 8
#define RT5677_M_STO_R_DD1_R (0x1 << 7)
#define RT5677_M_STO_R_DD1_R_SFT 7
#define RT5677_STO_R_DD1_R_VOL_MASK (0x1 << 6)
#define RT5677_STO_R_DD1_R_VOL_SFT 6
#define RT5677_M_MONO_R_DD1_R (0x1 << 5)
#define RT5677_M_MONO_R_DD1_R_SFT 5
#define RT5677_MONO_R_DD1_R_VOL_MASK (0x1 << 4)
#define RT5677_MONO_R_DD1_R_VOL_SFT 4
#define RT5677_M_DAC3_R_DD1_R (0x1 << 3)
#define RT5677_M_DAC3_R_DD1_R_SFT 3
#define RT5677_DAC3_R_DD1_R_VOL_MASK (0x1 << 2)
#define RT5677_DAC3_R_DD1_R_VOL_SFT 2
#define RT5677_M_DAC3_L_DD1_R (0x1 << 1)
#define RT5677_M_DAC3_L_DD1_R_SFT 1
#define RT5677_DAC3_L_DD1_R_VOL_MASK (0x1 << 0)
#define RT5677_DAC3_L_DD1_R_VOL_SFT 0
/* DD Mixer 2 Control (0x2d) */
#define RT5677_M_STO_L_DD2_L (0x1 << 15)
#define RT5677_M_STO_L_DD2_L_SFT 15
#define RT5677_STO_L_DD2_L_VOL_MASK (0x1 << 14)
#define RT5677_STO_L_DD2_L_VOL_SFT 14
#define RT5677_M_MONO_L_DD2_L (0x1 << 13)
#define RT5677_M_MONO_L_DD2_L_SFT 13
#define RT5677_MONO_L_DD2_L_VOL_MASK (0x1 << 12)
#define RT5677_MONO_L_DD2_L_VOL_SFT 12
#define RT5677_M_DAC4_L_DD2_L (0x1 << 11)
#define RT5677_M_DAC4_L_DD2_L_SFT 11
#define RT5677_DAC4_L_DD2_L_VOL_MASK (0x1 << 10)
#define RT5677_DAC4_L_DD2_L_VOL_SFT 10
#define RT5677_M_DAC4_R_DD2_L (0x1 << 9)
#define RT5677_M_DAC4_R_DD2_L_SFT 9
#define RT5677_DAC4_R_DD2_L_VOL_MASK (0x1 << 8)
#define RT5677_DAC4_R_DD2_L_VOL_SFT 8
#define RT5677_M_STO_R_DD2_R (0x1 << 7)
#define RT5677_M_STO_R_DD2_R_SFT 7
#define RT5677_STO_R_DD2_R_VOL_MASK (0x1 << 6)
#define RT5677_STO_R_DD2_R_VOL_SFT 6
#define RT5677_M_MONO_R_DD2_R (0x1 << 5)
#define RT5677_M_MONO_R_DD2_R_SFT 5
#define RT5677_MONO_R_DD2_R_VOL_MASK (0x1 << 4)
#define RT5677_MONO_R_DD2_R_VOL_SFT 4
#define RT5677_M_DAC4_R_DD2_R (0x1 << 3)
#define RT5677_M_DAC4_R_DD2_R_SFT 3
#define RT5677_DAC4_R_DD2_R_VOL_MASK (0x1 << 2)
#define RT5677_DAC4_R_DD2_R_VOL_SFT 2
#define RT5677_M_DAC4_L_DD2_R (0x1 << 1)
#define RT5677_M_DAC4_L_DD2_R_SFT 1
#define RT5677_DAC4_L_DD2_R_VOL_MASK (0x1 << 0)
#define RT5677_DAC4_L_DD2_R_VOL_SFT 0
/* IF3 data control (0x2f) */
#define RT5677_IF3_DAC_SEL_MASK (0x3 << 6)
#define RT5677_IF3_DAC_SEL_SFT 6
#define RT5677_IF3_ADC_SEL_MASK (0x3 << 4)
#define RT5677_IF3_ADC_SEL_SFT 4
#define RT5677_IF3_ADC_IN_MASK (0xf << 0)
#define RT5677_IF3_ADC_IN_SFT 0
/* IF4 data control (0x30) */
#define RT5677_IF4_ADC_IN_MASK (0xf << 4)
#define RT5677_IF4_ADC_IN_SFT 4
#define RT5677_IF4_DAC_SEL_MASK (0x3 << 2)
#define RT5677_IF4_DAC_SEL_SFT 2
#define RT5677_IF4_ADC_SEL_MASK (0x3 << 0)
#define RT5677_IF4_ADC_SEL_SFT 0
/* PDM Output Control (0x31) */
#define RT5677_M_PDM1_L (0x1 << 15)
#define RT5677_M_PDM1_L_SFT 15
#define RT5677_SEL_PDM1_L_MASK (0x3 << 12)
#define RT5677_SEL_PDM1_L_SFT 12
#define RT5677_M_PDM1_R (0x1 << 11)
#define RT5677_M_PDM1_R_SFT 11
#define RT5677_SEL_PDM1_R_MASK (0x3 << 8)
#define RT5677_SEL_PDM1_R_SFT 8
#define RT5677_M_PDM2_L (0x1 << 7)
#define RT5677_M_PDM2_L_SFT 7
#define RT5677_SEL_PDM2_L_MASK (0x3 << 4)
#define RT5677_SEL_PDM2_L_SFT 4
#define RT5677_M_PDM2_R (0x1 << 3)
#define RT5677_M_PDM2_R_SFT 3
#define RT5677_SEL_PDM2_R_MASK (0x3 << 0)
#define RT5677_SEL_PDM2_R_SFT 0
/* PDM I2C / Data Control 1 (0x32) */
#define RT5677_PDM2_PW_DOWN (0x1 << 7)
#define RT5677_PDM1_PW_DOWN (0x1 << 6)
#define RT5677_PDM2_BUSY (0x1 << 5)
#define RT5677_PDM1_BUSY (0x1 << 4)
#define RT5677_PDM_PATTERN (0x1 << 3)
#define RT5677_PDM_GAIN (0x1 << 2)
#define RT5677_PDM_DIV_MASK (0x3 << 0)
/* PDM I2C / Data Control 2 (0x33) */
#define RT5677_PDM1_I2C_ID (0xf << 12)
#define RT5677_PDM1_EXE (0x1 << 11)
#define RT5677_PDM1_I2C_CMD (0x1 << 10)
#define RT5677_PDM1_I2C_EXE (0x1 << 9)
#define RT5677_PDM1_I2C_BUSY (0x1 << 8)
#define RT5677_PDM2_I2C_ID (0xf << 4)
#define RT5677_PDM2_EXE (0x1 << 3)
#define RT5677_PDM2_I2C_CMD (0x1 << 2)
#define RT5677_PDM2_I2C_EXE (0x1 << 1)
#define RT5677_PDM2_I2C_BUSY (0x1 << 0)
/* MX3C TDM1 control 1 (0x3c) */
#define RT5677_IF1_ADC4_MASK (0x3 << 10)
#define RT5677_IF1_ADC4_SFT 10
#define RT5677_IF1_ADC3_MASK (0x3 << 8)
#define RT5677_IF1_ADC3_SFT 8
#define RT5677_IF1_ADC2_MASK (0x3 << 6)
#define RT5677_IF1_ADC2_SFT 6
#define RT5677_IF1_ADC1_MASK (0x3 << 4)
#define RT5677_IF1_ADC1_SFT 4
/* MX41 TDM2 control 1 (0x41) */
#define RT5677_IF2_ADC4_MASK (0x3 << 10)
#define RT5677_IF2_ADC4_SFT 10
#define RT5677_IF2_ADC3_MASK (0x3 << 8)
#define RT5677_IF2_ADC3_SFT 8
#define RT5677_IF2_ADC2_MASK (0x3 << 6)
#define RT5677_IF2_ADC2_SFT 6
#define RT5677_IF2_ADC1_MASK (0x3 << 4)
#define RT5677_IF2_ADC1_SFT 4
/* Digital Microphone Control 1 (0x50) */
#define RT5677_DMIC_1_EN_MASK (0x1 << 15)
#define RT5677_DMIC_1_EN_SFT 15
#define RT5677_DMIC_1_DIS (0x0 << 15)
#define RT5677_DMIC_1_EN (0x1 << 15)
#define RT5677_DMIC_2_EN_MASK (0x1 << 14)
#define RT5677_DMIC_2_EN_SFT 14
#define RT5677_DMIC_2_DIS (0x0 << 14)
#define RT5677_DMIC_2_EN (0x1 << 14)
#define RT5677_DMIC_L_STO1_LH_MASK (0x1 << 13)
#define RT5677_DMIC_L_STO1_LH_SFT 13
#define RT5677_DMIC_L_STO1_LH_FALLING (0x0 << 13)
#define RT5677_DMIC_L_STO1_LH_RISING (0x1 << 13)
#define RT5677_DMIC_R_STO1_LH_MASK (0x1 << 12)
#define RT5677_DMIC_R_STO1_LH_SFT 12
#define RT5677_DMIC_R_STO1_LH_FALLING (0x0 << 12)
#define RT5677_DMIC_R_STO1_LH_RISING (0x1 << 12)
#define RT5677_DMIC_L_STO3_LH_MASK (0x1 << 11)
#define RT5677_DMIC_L_STO3_LH_SFT 11
#define RT5677_DMIC_L_STO3_LH_FALLING (0x0 << 11)
#define RT5677_DMIC_L_STO3_LH_RISING (0x1 << 11)
#define RT5677_DMIC_R_STO3_LH_MASK (0x1 << 10)
#define RT5677_DMIC_R_STO3_LH_SFT 10
#define RT5677_DMIC_R_STO3_LH_FALLING (0x0 << 10)
#define RT5677_DMIC_R_STO3_LH_RISING (0x1 << 10)
#define RT5677_DMIC_L_STO2_LH_MASK (0x1 << 9)
#define RT5677_DMIC_L_STO2_LH_SFT 9
#define RT5677_DMIC_L_STO2_LH_FALLING (0x0 << 9)
#define RT5677_DMIC_L_STO2_LH_RISING (0x1 << 9)
#define RT5677_DMIC_R_STO2_LH_MASK (0x1 << 8)
#define RT5677_DMIC_R_STO2_LH_SFT 8
#define RT5677_DMIC_R_STO2_LH_FALLING (0x0 << 8)
#define RT5677_DMIC_R_STO2_LH_RISING (0x1 << 8)
#define RT5677_DMIC_CLK_MASK (0x7 << 5)
#define RT5677_DMIC_CLK_SFT 5
#define RT5677_DMIC_3_EN_MASK (0x1 << 4)
#define RT5677_DMIC_3_EN_SFT 4
#define RT5677_DMIC_3_DIS (0x0 << 4)
#define RT5677_DMIC_3_EN (0x1 << 4)
#define RT5677_DMIC_R_MONO_LH_MASK (0x1 << 2)
#define RT5677_DMIC_R_MONO_LH_SFT 2
#define RT5677_DMIC_R_MONO_LH_FALLING (0x0 << 2)
#define RT5677_DMIC_R_MONO_LH_RISING (0x1 << 2)
#define RT5677_DMIC_L_STO4_LH_MASK (0x1 << 1)
#define RT5677_DMIC_L_STO4_LH_SFT 1
#define RT5677_DMIC_L_STO4_LH_FALLING (0x0 << 1)
#define RT5677_DMIC_L_STO4_LH_RISING (0x1 << 1)
#define RT5677_DMIC_R_STO4_LH_MASK (0x1 << 0)
#define RT5677_DMIC_R_STO4_LH_SFT 0
#define RT5677_DMIC_R_STO4_LH_FALLING (0x0 << 0)
#define RT5677_DMIC_R_STO4_LH_RISING (0x1 << 0)
/* Digital Microphone Control 2 (0x51) */
#define RT5677_DMIC_4_EN_MASK (0x1 << 15)
#define RT5677_DMIC_4_EN_SFT 15
#define RT5677_DMIC_4_DIS (0x0 << 15)
#define RT5677_DMIC_4_EN (0x1 << 15)
#define RT5677_DMIC_4L_LH_MASK (0x1 << 7)
#define RT5677_DMIC_4L_LH_SFT 7
#define RT5677_DMIC_4L_LH_FALLING (0x0 << 7)
#define RT5677_DMIC_4L_LH_RISING (0x1 << 7)
#define RT5677_DMIC_4R_LH_MASK (0x1 << 6)
#define RT5677_DMIC_4R_LH_SFT 6
#define RT5677_DMIC_4R_LH_FALLING (0x0 << 6)
#define RT5677_DMIC_4R_LH_RISING (0x1 << 6)
#define RT5677_DMIC_3L_LH_MASK (0x1 << 5)
#define RT5677_DMIC_3L_LH_SFT 5
#define RT5677_DMIC_3L_LH_FALLING (0x0 << 5)
#define RT5677_DMIC_3L_LH_RISING (0x1 << 5)
#define RT5677_DMIC_3R_LH_MASK (0x1 << 4)
#define RT5677_DMIC_3R_LH_SFT 4
#define RT5677_DMIC_3R_LH_FALLING (0x0 << 4)
#define RT5677_DMIC_3R_LH_RISING (0x1 << 4)
#define RT5677_DMIC_2L_LH_MASK (0x1 << 3)
#define RT5677_DMIC_2L_LH_SFT 3
#define RT5677_DMIC_2L_LH_FALLING (0x0 << 3)
#define RT5677_DMIC_2L_LH_RISING (0x1 << 3)
#define RT5677_DMIC_2R_LH_MASK (0x1 << 2)
#define RT5677_DMIC_2R_LH_SFT 2
#define RT5677_DMIC_2R_LH_FALLING (0x0 << 2)
#define RT5677_DMIC_2R_LH_RISING (0x1 << 2)
#define RT5677_DMIC_1L_LH_MASK (0x1 << 1)
#define RT5677_DMIC_1L_LH_SFT 1
#define RT5677_DMIC_1L_LH_FALLING (0x0 << 1)
#define RT5677_DMIC_1L_LH_RISING (0x1 << 1)
#define RT5677_DMIC_1R_LH_MASK (0x1 << 0)
#define RT5677_DMIC_1R_LH_SFT 0
#define RT5677_DMIC_1R_LH_FALLING (0x0 << 0)
#define RT5677_DMIC_1R_LH_RISING (0x1 << 0)
/* Power Management for Digital 1 (0x61) */
#define RT5677_PWR_I2S1 (0x1 << 15)
#define RT5677_PWR_I2S1_BIT 15
#define RT5677_PWR_I2S2 (0x1 << 14)
#define RT5677_PWR_I2S2_BIT 14
#define RT5677_PWR_I2S3 (0x1 << 13)
#define RT5677_PWR_I2S3_BIT 13
#define RT5677_PWR_DAC1 (0x1 << 12)
#define RT5677_PWR_DAC1_BIT 12
#define RT5677_PWR_DAC2 (0x1 << 11)
#define RT5677_PWR_DAC2_BIT 11
#define RT5677_PWR_I2S4 (0x1 << 10)
#define RT5677_PWR_I2S4_BIT 10
#define RT5677_PWR_SLB (0x1 << 9)
#define RT5677_PWR_SLB_BIT 9
#define RT5677_PWR_DAC3 (0x1 << 7)
#define RT5677_PWR_DAC3_BIT 7
#define RT5677_PWR_ADCFED2 (0x1 << 4)
#define RT5677_PWR_ADCFED2_BIT 4
#define RT5677_PWR_ADCFED1 (0x1 << 3)
#define RT5677_PWR_ADCFED1_BIT 3
#define RT5677_PWR_ADC_L (0x1 << 2)
#define RT5677_PWR_ADC_L_BIT 2
#define RT5677_PWR_ADC_R (0x1 << 1)
#define RT5677_PWR_ADC_R_BIT 1
#define RT5677_PWR_I2C_MASTER (0x1 << 0)
#define RT5677_PWR_I2C_MASTER_BIT 0
/* Power Management for Digital 2 (0x62) */
#define RT5677_PWR_ADC_S1F (0x1 << 15)
#define RT5677_PWR_ADC_S1F_BIT 15
#define RT5677_PWR_ADC_MF_L (0x1 << 14)
#define RT5677_PWR_ADC_MF_L_BIT 14
#define RT5677_PWR_ADC_MF_R (0x1 << 13)
#define RT5677_PWR_ADC_MF_R_BIT 13
#define RT5677_PWR_DAC_S1F (0x1 << 12)
#define RT5677_PWR_DAC_S1F_BIT 12
#define RT5677_PWR_DAC_M2F_L (0x1 << 11)
#define RT5677_PWR_DAC_M2F_L_BIT 11
#define RT5677_PWR_DAC_M2F_R (0x1 << 10)
#define RT5677_PWR_DAC_M2F_R_BIT 10
#define RT5677_PWR_DAC_M3F_L (0x1 << 9)
#define RT5677_PWR_DAC_M3F_L_BIT 9
#define RT5677_PWR_DAC_M3F_R (0x1 << 8)
#define RT5677_PWR_DAC_M3F_R_BIT 8
#define RT5677_PWR_DAC_M4F_L (0x1 << 7)
#define RT5677_PWR_DAC_M4F_L_BIT 7
#define RT5677_PWR_DAC_M4F_R (0x1 << 6)
#define RT5677_PWR_DAC_M4F_R_BIT 6
#define RT5677_PWR_ADC_S2F (0x1 << 5)
#define RT5677_PWR_ADC_S2F_BIT 5
#define RT5677_PWR_ADC_S3F (0x1 << 4)
#define RT5677_PWR_ADC_S3F_BIT 4
#define RT5677_PWR_ADC_S4F (0x1 << 3)
#define RT5677_PWR_ADC_S4F_BIT 3
#define RT5677_PWR_PDM1 (0x1 << 2)
#define RT5677_PWR_PDM1_BIT 2
#define RT5677_PWR_PDM2 (0x1 << 1)
#define RT5677_PWR_PDM2_BIT 1
/* Power Management for Analog 1 (0x63) */
#define RT5677_PWR_VREF1 (0x1 << 15)
#define RT5677_PWR_VREF1_BIT 15
#define RT5677_PWR_FV1 (0x1 << 14)
#define RT5677_PWR_FV1_BIT 14
#define RT5677_PWR_MB (0x1 << 13)
#define RT5677_PWR_MB_BIT 13
#define RT5677_PWR_LO1 (0x1 << 12)
#define RT5677_PWR_LO1_BIT 12
#define RT5677_PWR_BG (0x1 << 11)
#define RT5677_PWR_BG_BIT 11
#define RT5677_PWR_LO2 (0x1 << 10)
#define RT5677_PWR_LO2_BIT 10
#define RT5677_PWR_LO3 (0x1 << 9)
#define RT5677_PWR_LO3_BIT 9
#define RT5677_PWR_VREF2 (0x1 << 8)
#define RT5677_PWR_VREF2_BIT 8
#define RT5677_PWR_FV2 (0x1 << 7)
#define RT5677_PWR_FV2_BIT 7
#define RT5677_LDO2_SEL_MASK (0x7 << 4)
#define RT5677_LDO2_SEL_SFT 4
#define RT5677_LDO1_SEL_MASK (0x7 << 0)
#define RT5677_LDO1_SEL_SFT 0
/* Power Management for Analog 2 (0x64) */
#define RT5677_PWR_BST1 (0x1 << 15)
#define RT5677_PWR_BST1_BIT 15
#define RT5677_PWR_BST2 (0x1 << 14)
#define RT5677_PWR_BST2_BIT 14
#define RT5677_PWR_CLK_MB1 (0x1 << 13)
#define RT5677_PWR_CLK_MB1_BIT 13
#define RT5677_PWR_SLIM (0x1 << 12)
#define RT5677_PWR_SLIM_BIT 12
#define RT5677_PWR_MB1 (0x1 << 11)
#define RT5677_PWR_MB1_BIT 11
#define RT5677_PWR_PP_MB1 (0x1 << 10)
#define RT5677_PWR_PP_MB1_BIT 10
#define RT5677_PWR_PLL1 (0x1 << 9)
#define RT5677_PWR_PLL1_BIT 9
#define RT5677_PWR_PLL2 (0x1 << 8)
#define RT5677_PWR_PLL2_BIT 8
#define RT5677_PWR_CORE (0x1 << 7)
#define RT5677_PWR_CORE_BIT 7
#define RT5677_PWR_CLK_MB (0x1 << 6)
#define RT5677_PWR_CLK_MB_BIT 6
#define RT5677_PWR_BST1_P (0x1 << 5)
#define RT5677_PWR_BST1_P_BIT 5
#define RT5677_PWR_BST2_P (0x1 << 4)
#define RT5677_PWR_BST2_P_BIT 4
#define RT5677_PWR_IPTV (0x1 << 3)
#define RT5677_PWR_IPTV_BIT 3
#define RT5677_PWR_25M_CLK (0x1 << 1)
#define RT5677_PWR_25M_CLK_BIT 1
#define RT5677_PWR_LDO1 (0x1 << 0)
#define RT5677_PWR_LDO1_BIT 0
/* Power Management for DSP (0x65) */
#define RT5677_PWR_SR7 (0x1 << 10)
#define RT5677_PWR_SR7_BIT 10
#define RT5677_PWR_SR6 (0x1 << 9)
#define RT5677_PWR_SR6_BIT 9
#define RT5677_PWR_SR5 (0x1 << 8)
#define RT5677_PWR_SR5_BIT 8
#define RT5677_PWR_SR4 (0x1 << 7)
#define RT5677_PWR_SR4_BIT 7
#define RT5677_PWR_SR3 (0x1 << 6)
#define RT5677_PWR_SR3_BIT 6
#define RT5677_PWR_SR2 (0x1 << 5)
#define RT5677_PWR_SR2_BIT 5
#define RT5677_PWR_SR1 (0x1 << 4)
#define RT5677_PWR_SR1_BIT 4
#define RT5677_PWR_SR0 (0x1 << 3)
#define RT5677_PWR_SR0_BIT 3
#define RT5677_PWR_MLT (0x1 << 2)
#define RT5677_PWR_MLT_BIT 2
#define RT5677_PWR_DSP (0x1 << 1)
#define RT5677_PWR_DSP_BIT 1
#define RT5677_PWR_DSP_CPU (0x1 << 0)
#define RT5677_PWR_DSP_CPU_BIT 0
/* Power Status for DSP (0x66) */
#define RT5677_PWR_SR7_RDY (0x1 << 9)
#define RT5677_PWR_SR7_RDY_BIT 9
#define RT5677_PWR_SR6_RDY (0x1 << 8)
#define RT5677_PWR_SR6_RDY_BIT 8
#define RT5677_PWR_SR5_RDY (0x1 << 7)
#define RT5677_PWR_SR5_RDY_BIT 7
#define RT5677_PWR_SR4_RDY (0x1 << 6)
#define RT5677_PWR_SR4_RDY_BIT 6
#define RT5677_PWR_SR3_RDY (0x1 << 5)
#define RT5677_PWR_SR3_RDY_BIT 5
#define RT5677_PWR_SR2_RDY (0x1 << 4)
#define RT5677_PWR_SR2_RDY_BIT 4
#define RT5677_PWR_SR1_RDY (0x1 << 3)
#define RT5677_PWR_SR1_RDY_BIT 3
#define RT5677_PWR_SR0_RDY (0x1 << 2)
#define RT5677_PWR_SR0_RDY_BIT 2
#define RT5677_PWR_MLT_RDY (0x1 << 1)
#define RT5677_PWR_MLT_RDY_BIT 1
#define RT5677_PWR_DSP_RDY (0x1 << 0)
#define RT5677_PWR_DSP_RDY_BIT 0
/* Power Management for DSP (0x67) */
#define RT5677_PWR_SLIM_ISO (0x1 << 11)
#define RT5677_PWR_SLIM_ISO_BIT 11
#define RT5677_PWR_CORE_ISO (0x1 << 10)
#define RT5677_PWR_CORE_ISO_BIT 10
#define RT5677_PWR_DSP_ISO (0x1 << 9)
#define RT5677_PWR_DSP_ISO_BIT 9
#define RT5677_PWR_SR7_ISO (0x1 << 8)
#define RT5677_PWR_SR7_ISO_BIT 8
#define RT5677_PWR_SR6_ISO (0x1 << 7)
#define RT5677_PWR_SR6_ISO_BIT 7
#define RT5677_PWR_SR5_ISO (0x1 << 6)
#define RT5677_PWR_SR5_ISO_BIT 6
#define RT5677_PWR_SR4_ISO (0x1 << 5)
#define RT5677_PWR_SR4_ISO_BIT 5
#define RT5677_PWR_SR3_ISO (0x1 << 4)
#define RT5677_PWR_SR3_ISO_BIT 4
#define RT5677_PWR_SR2_ISO (0x1 << 3)
#define RT5677_PWR_SR2_ISO_BIT 3
#define RT5677_PWR_SR1_ISO (0x1 << 2)
#define RT5677_PWR_SR1_ISO_BIT 2
#define RT5677_PWR_SR0_ISO (0x1 << 1)
#define RT5677_PWR_SR0_ISO_BIT 1
#define RT5677_PWR_MLT_ISO (0x1 << 0)
#define RT5677_PWR_MLT_ISO_BIT 0
/* I2S1/2/3/4 Audio Serial Data Port Control (0x6f 0x70 0x71 0x72) */
#define RT5677_I2S_MS_MASK (0x1 << 15)
#define RT5677_I2S_MS_SFT 15
#define RT5677_I2S_MS_M (0x0 << 15)
#define RT5677_I2S_MS_S (0x1 << 15)
#define RT5677_I2S_O_CP_MASK (0x3 << 10)
#define RT5677_I2S_O_CP_SFT 10
#define RT5677_I2S_O_CP_OFF (0x0 << 10)
#define RT5677_I2S_O_CP_U_LAW (0x1 << 10)
#define RT5677_I2S_O_CP_A_LAW (0x2 << 10)
#define RT5677_I2S_I_CP_MASK (0x3 << 8)
#define RT5677_I2S_I_CP_SFT 8
#define RT5677_I2S_I_CP_OFF (0x0 << 8)
#define RT5677_I2S_I_CP_U_LAW (0x1 << 8)
#define RT5677_I2S_I_CP_A_LAW (0x2 << 8)
#define RT5677_I2S_BP_MASK (0x1 << 7)
#define RT5677_I2S_BP_SFT 7
#define RT5677_I2S_BP_NOR (0x0 << 7)
#define RT5677_I2S_BP_INV (0x1 << 7)
#define RT5677_I2S_DL_MASK (0x3 << 2)
#define RT5677_I2S_DL_SFT 2
#define RT5677_I2S_DL_16 (0x0 << 2)
#define RT5677_I2S_DL_20 (0x1 << 2)
#define RT5677_I2S_DL_24 (0x2 << 2)
#define RT5677_I2S_DL_8 (0x3 << 2)
#define RT5677_I2S_DF_MASK (0x3 << 0)
#define RT5677_I2S_DF_SFT 0
#define RT5677_I2S_DF_I2S (0x0 << 0)
#define RT5677_I2S_DF_LEFT (0x1 << 0)
#define RT5677_I2S_DF_PCM_A (0x2 << 0)
#define RT5677_I2S_DF_PCM_B (0x3 << 0)
/* Clock Tree Control 1 (0x73) */
#define RT5677_I2S_PD1_MASK (0x7 << 12)
#define RT5677_I2S_PD1_SFT 12
#define RT5677_I2S_PD1_1 (0x0 << 12)
#define RT5677_I2S_PD1_2 (0x1 << 12)
#define RT5677_I2S_PD1_3 (0x2 << 12)
#define RT5677_I2S_PD1_4 (0x3 << 12)
#define RT5677_I2S_PD1_6 (0x4 << 12)
#define RT5677_I2S_PD1_8 (0x5 << 12)
#define RT5677_I2S_PD1_12 (0x6 << 12)
#define RT5677_I2S_PD1_16 (0x7 << 12)
#define RT5677_I2S_BCLK_MS2_MASK (0x1 << 11)
#define RT5677_I2S_BCLK_MS2_SFT 11
#define RT5677_I2S_BCLK_MS2_32 (0x0 << 11)
#define RT5677_I2S_BCLK_MS2_64 (0x1 << 11)
#define RT5677_I2S_PD2_MASK (0x7 << 8)
#define RT5677_I2S_PD2_SFT 8
#define RT5677_I2S_PD2_1 (0x0 << 8)
#define RT5677_I2S_PD2_2 (0x1 << 8)
#define RT5677_I2S_PD2_3 (0x2 << 8)
#define RT5677_I2S_PD2_4 (0x3 << 8)
#define RT5677_I2S_PD2_6 (0x4 << 8)
#define RT5677_I2S_PD2_8 (0x5 << 8)
#define RT5677_I2S_PD2_12 (0x6 << 8)
#define RT5677_I2S_PD2_16 (0x7 << 8)
#define RT5677_I2S_BCLK_MS3_MASK (0x1 << 7)
#define RT5677_I2S_BCLK_MS3_SFT 7
#define RT5677_I2S_BCLK_MS3_32 (0x0 << 7)
#define RT5677_I2S_BCLK_MS3_64 (0x1 << 7)
#define RT5677_I2S_PD3_MASK (0x7 << 4)
#define RT5677_I2S_PD3_SFT 4
#define RT5677_I2S_PD3_1 (0x0 << 4)
#define RT5677_I2S_PD3_2 (0x1 << 4)
#define RT5677_I2S_PD3_3 (0x2 << 4)
#define RT5677_I2S_PD3_4 (0x3 << 4)
#define RT5677_I2S_PD3_6 (0x4 << 4)
#define RT5677_I2S_PD3_8 (0x5 << 4)
#define RT5677_I2S_PD3_12 (0x6 << 4)
#define RT5677_I2S_PD3_16 (0x7 << 4)
#define RT5677_I2S_BCLK_MS4_MASK (0x1 << 3)
#define RT5677_I2S_BCLK_MS4_SFT 3
#define RT5677_I2S_BCLK_MS4_32 (0x0 << 3)
#define RT5677_I2S_BCLK_MS4_64 (0x1 << 3)
#define RT5677_I2S_PD4_MASK (0x7 << 0)
#define RT5677_I2S_PD4_SFT 0
#define RT5677_I2S_PD4_1 (0x0 << 0)
#define RT5677_I2S_PD4_2 (0x1 << 0)
#define RT5677_I2S_PD4_3 (0x2 << 0)
#define RT5677_I2S_PD4_4 (0x3 << 0)
#define RT5677_I2S_PD4_6 (0x4 << 0)
#define RT5677_I2S_PD4_8 (0x5 << 0)
#define RT5677_I2S_PD4_12 (0x6 << 0)
#define RT5677_I2S_PD4_16 (0x7 << 0)
/* Clock Tree Control 2 (0x74) */
#define RT5677_I2S_PD5_MASK (0x7 << 12)
#define RT5677_I2S_PD5_SFT 12
#define RT5677_I2S_PD5_1 (0x0 << 12)
#define RT5677_I2S_PD5_2 (0x1 << 12)
#define RT5677_I2S_PD5_3 (0x2 << 12)
#define RT5677_I2S_PD5_4 (0x3 << 12)
#define RT5677_I2S_PD5_6 (0x4 << 12)
#define RT5677_I2S_PD5_8 (0x5 << 12)
#define RT5677_I2S_PD5_12 (0x6 << 12)
#define RT5677_I2S_PD5_16 (0x7 << 12)
#define RT5677_I2S_PD6_MASK (0x7 << 8)
#define RT5677_I2S_PD6_SFT 8
#define RT5677_I2S_PD6_1 (0x0 << 8)
#define RT5677_I2S_PD6_2 (0x1 << 8)
#define RT5677_I2S_PD6_3 (0x2 << 8)
#define RT5677_I2S_PD6_4 (0x3 << 8)
#define RT5677_I2S_PD6_6 (0x4 << 8)
#define RT5677_I2S_PD6_8 (0x5 << 8)
#define RT5677_I2S_PD6_12 (0x6 << 8)
#define RT5677_I2S_PD6_16 (0x7 << 8)
#define RT5677_I2S_PD7_MASK (0x7 << 4)
#define RT5677_I2S_PD7_SFT 4
#define RT5677_I2S_PD7_1 (0x0 << 4)
#define RT5677_I2S_PD7_2 (0x1 << 4)
#define RT5677_I2S_PD7_3 (0x2 << 4)
#define RT5677_I2S_PD7_4 (0x3 << 4)
#define RT5677_I2S_PD7_6 (0x4 << 4)
#define RT5677_I2S_PD7_8 (0x5 << 4)
#define RT5677_I2S_PD7_12 (0x6 << 4)
#define RT5677_I2S_PD7_16 (0x7 << 4)
#define RT5677_I2S_PD8_MASK (0x7 << 0)
#define RT5677_I2S_PD8_SFT 0
#define RT5677_I2S_PD8_1 (0x0 << 0)
#define RT5677_I2S_PD8_2 (0x1 << 0)
#define RT5677_I2S_PD8_3 (0x2 << 0)
#define RT5677_I2S_PD8_4 (0x3 << 0)
#define RT5677_I2S_PD8_6 (0x4 << 0)
#define RT5677_I2S_PD8_8 (0x5 << 0)
#define RT5677_I2S_PD8_12 (0x6 << 0)
#define RT5677_I2S_PD8_16 (0x7 << 0)
/* Clock Tree Control 3 (0x75) */
#define RT5677_DSP_ASRC_O_MASK (0x3 << 6)
#define RT5677_DSP_ASRC_O_SFT 6
#define RT5677_DSP_ASRC_O_1_0 (0x0 << 6)
#define RT5677_DSP_ASRC_O_1_5 (0x1 << 6)
#define RT5677_DSP_ASRC_O_2_0 (0x2 << 6)
#define RT5677_DSP_ASRC_O_3_0 (0x3 << 6)
#define RT5677_DSP_ASRC_I_MASK (0x3 << 4)
#define RT5677_DSP_ASRC_I_SFT 4
#define RT5677_DSP_ASRC_I_1_0 (0x0 << 4)
#define RT5677_DSP_ASRC_I_1_5 (0x1 << 4)
#define RT5677_DSP_ASRC_I_2_0 (0x2 << 4)
#define RT5677_DSP_ASRC_I_3_0 (0x3 << 4)
#define RT5677_DSP_BUS_PD_MASK (0x7 << 0)
#define RT5677_DSP_BUS_PD_SFT 0
#define RT5677_DSP_BUS_PD_1 (0x0 << 0)
#define RT5677_DSP_BUS_PD_2 (0x1 << 0)
#define RT5677_DSP_BUS_PD_3 (0x2 << 0)
#define RT5677_DSP_BUS_PD_4 (0x3 << 0)
#define RT5677_DSP_BUS_PD_6 (0x4 << 0)
#define RT5677_DSP_BUS_PD_8 (0x5 << 0)
#define RT5677_DSP_BUS_PD_12 (0x6 << 0)
#define RT5677_DSP_BUS_PD_16 (0x7 << 0)
#define RT5677_PLL_INP_MAX 40000000
#define RT5677_PLL_INP_MIN 2048000
/* PLL M/N/K Code Control 1 (0x7a 0x7c) */
#define RT5677_PLL_N_MAX 0x1ff
#define RT5677_PLL_N_MASK (RT5677_PLL_N_MAX << 7)
#define RT5677_PLL_N_SFT 7
#define RT5677_PLL_K_BP (0x1 << 5)
#define RT5677_PLL_K_BP_SFT 5
#define RT5677_PLL_K_MAX 0x1f
#define RT5677_PLL_K_MASK (RT5677_PLL_K_MAX)
#define RT5677_PLL_K_SFT 0
/* PLL M/N/K Code Control 2 (0x7b 0x7d) */
#define RT5677_PLL_M_MAX 0xf
#define RT5677_PLL_M_MASK (RT5677_PLL_M_MAX << 12)
#define RT5677_PLL_M_SFT 12
#define RT5677_PLL_M_BP (0x1 << 11)
#define RT5677_PLL_M_BP_SFT 11
/* Global Clock Control 1 (0x80) */
#define RT5677_SCLK_SRC_MASK (0x3 << 14)
#define RT5677_SCLK_SRC_SFT 14
#define RT5677_SCLK_SRC_MCLK (0x0 << 14)
#define RT5677_SCLK_SRC_PLL1 (0x1 << 14)
#define RT5677_SCLK_SRC_RCCLK (0x2 << 14) /* 25MHz */
#define RT5677_SCLK_SRC_SLIM (0x3 << 14)
#define RT5677_PLL1_SRC_MASK (0x7 << 11)
#define RT5677_PLL1_SRC_SFT 11
#define RT5677_PLL1_SRC_MCLK (0x0 << 11)
#define RT5677_PLL1_SRC_BCLK1 (0x1 << 11)
#define RT5677_PLL1_SRC_BCLK2 (0x2 << 11)
#define RT5677_PLL1_SRC_BCLK3 (0x3 << 11)
#define RT5677_PLL1_SRC_BCLK4 (0x4 << 11)
#define RT5677_PLL1_SRC_RCCLK (0x5 << 11)
#define RT5677_PLL1_SRC_SLIM (0x6 << 11)
#define RT5677_MCLK_SRC_MASK (0x1 << 10)
#define RT5677_MCLK_SRC_SFT 10
#define RT5677_MCLK1_SRC (0x0 << 10)
#define RT5677_MCLK2_SRC (0x1 << 10)
#define RT5677_PLL1_PD_MASK (0x1 << 8)
#define RT5677_PLL1_PD_SFT 8
#define RT5677_PLL1_PD_1 (0x0 << 8)
#define RT5677_PLL1_PD_2 (0x1 << 8)
#define RT5671_DAC_OSR_MASK (0x3 << 6)
#define RT5671_DAC_OSR_SFT 6
#define RT5671_DAC_OSR_128 (0x0 << 6)
#define RT5671_DAC_OSR_64 (0x1 << 6)
#define RT5671_DAC_OSR_32 (0x2 << 6)
#define RT5671_ADC_OSR_MASK (0x3 << 4)
#define RT5671_ADC_OSR_SFT 4
#define RT5671_ADC_OSR_128 (0x0 << 4)
#define RT5671_ADC_OSR_64 (0x1 << 4)
#define RT5671_ADC_OSR_32 (0x2 << 4)
/* Global Clock Control 2 (0x81) */
#define RT5677_PLL2_PR_SRC_MASK (0x1 << 15)
#define RT5677_PLL2_PR_SRC_SFT 15
#define RT5677_PLL2_PR_SRC_MCLK1 (0x0 << 15)
#define RT5677_PLL2_PR_SRC_MCLK2 (0x1 << 15)
#define RT5677_PLL2_SRC_MASK (0x7 << 12)
#define RT5677_PLL2_SRC_SFT 12
#define RT5677_PLL2_SRC_MCLK (0x0 << 12)
#define RT5677_PLL2_SRC_BCLK1 (0x1 << 12)
#define RT5677_PLL2_SRC_BCLK2 (0x2 << 12)
#define RT5677_PLL2_SRC_BCLK3 (0x3 << 12)
#define RT5677_PLL2_SRC_BCLK4 (0x4 << 12)
#define RT5677_PLL2_SRC_RCCLK (0x5 << 12)
#define RT5677_PLL2_SRC_SLIM (0x6 << 12)
#define RT5671_DSP_ASRC_O_SRC (0x3 << 10)
#define RT5671_DSP_ASRC_O_SRC_SFT 10
#define RT5671_DSP_ASRC_O_MCLK (0x0 << 10)
#define RT5671_DSP_ASRC_O_PLL1 (0x1 << 10)
#define RT5671_DSP_ASRC_O_SLIM (0x2 << 10)
#define RT5671_DSP_ASRC_O_RCCLK (0x3 << 10)
#define RT5671_DSP_ASRC_I_SRC (0x3 << 8)
#define RT5671_DSP_ASRC_I_SRC_SFT 8
#define RT5671_DSP_ASRC_I_MCLK (0x0 << 8)
#define RT5671_DSP_ASRC_I_PLL1 (0x1 << 8)
#define RT5671_DSP_ASRC_I_SLIM (0x2 << 8)
#define RT5671_DSP_ASRC_I_RCCLK (0x3 << 8)
#define RT5677_DSP_CLK_SRC_MASK (0x1 << 7)
#define RT5677_DSP_CLK_SRC_SFT 7
#define RT5677_DSP_CLK_SRC_PLL2 (0x0 << 7)
#define RT5677_DSP_CLK_SRC_BYPASS (0x1 << 7)
/* VAD Function Control 4 (0x9f) */
#define RT5677_VAD_SRC_MASK (0x7 << 8)
#define RT5677_VAD_SRC_SFT 8
/* DSP InBound Control (0xa3) */
#define RT5677_IB01_SRC_MASK (0x7 << 12)
#define RT5677_IB01_SRC_SFT 12
#define RT5677_IB23_SRC_MASK (0x7 << 8)
#define RT5677_IB23_SRC_SFT 8
#define RT5677_IB45_SRC_MASK (0x7 << 4)
#define RT5677_IB45_SRC_SFT 4
#define RT5677_IB6_SRC_MASK (0x7 << 0)
#define RT5677_IB6_SRC_SFT 0
/* DSP InBound Control (0xa4) */
#define RT5677_IB7_SRC_MASK (0x7 << 12)
#define RT5677_IB7_SRC_SFT 12
#define RT5677_IB8_SRC_MASK (0x7 << 8)
#define RT5677_IB8_SRC_SFT 8
#define RT5677_IB9_SRC_MASK (0x7 << 4)
#define RT5677_IB9_SRC_SFT 4
/* DSP In/OutBound Control (0xa5) */
#define RT5677_SEL_SRC_OB23 (0x1 << 4)
#define RT5677_SEL_SRC_OB23_SFT 4
#define RT5677_SEL_SRC_OB01 (0x1 << 3)
#define RT5677_SEL_SRC_OB01_SFT 3
#define RT5677_SEL_SRC_IB45 (0x1 << 2)
#define RT5677_SEL_SRC_IB45_SFT 2
#define RT5677_SEL_SRC_IB23 (0x1 << 1)
#define RT5677_SEL_SRC_IB23_SFT 1
#define RT5677_SEL_SRC_IB01 (0x1 << 0)
#define RT5677_SEL_SRC_IB01_SFT 0
/* Virtual DSP Mixer Control (0xf7 0xf8 0xf9) */
#define RT5677_DSP_IB_01_H (0x1 << 15)
#define RT5677_DSP_IB_01_H_SFT 15
#define RT5677_DSP_IB_23_H (0x1 << 14)
#define RT5677_DSP_IB_23_H_SFT 14
#define RT5677_DSP_IB_45_H (0x1 << 13)
#define RT5677_DSP_IB_45_H_SFT 13
#define RT5677_DSP_IB_6_H (0x1 << 12)
#define RT5677_DSP_IB_6_H_SFT 12
#define RT5677_DSP_IB_7_H (0x1 << 11)
#define RT5677_DSP_IB_7_H_SFT 11
#define RT5677_DSP_IB_8_H (0x1 << 10)
#define RT5677_DSP_IB_8_H_SFT 10
#define RT5677_DSP_IB_9_H (0x1 << 9)
#define RT5677_DSP_IB_9_H_SFT 9
#define RT5677_DSP_IB_01_L (0x1 << 7)
#define RT5677_DSP_IB_01_L_SFT 7
#define RT5677_DSP_IB_23_L (0x1 << 6)
#define RT5677_DSP_IB_23_L_SFT 6
#define RT5677_DSP_IB_45_L (0x1 << 5)
#define RT5677_DSP_IB_45_L_SFT 5
#define RT5677_DSP_IB_6_L (0x1 << 4)
#define RT5677_DSP_IB_6_L_SFT 4
#define RT5677_DSP_IB_7_L (0x1 << 3)
#define RT5677_DSP_IB_7_L_SFT 3
#define RT5677_DSP_IB_8_L (0x1 << 2)
#define RT5677_DSP_IB_8_L_SFT 2
#define RT5677_DSP_IB_9_L (0x1 << 1)
#define RT5677_DSP_IB_9_L_SFT 1
/* Debug String Length */
#define RT5677_REG_DISP_LEN 23
#define RT5677_NO_JACK BIT(0)
#define RT5677_HEADSET_DET BIT(1)
#define RT5677_HEADPHO_DET BIT(2)
/* System Clock Source */
enum {
RT5677_SCLK_S_MCLK,
RT5677_SCLK_S_PLL1,
RT5677_SCLK_S_RCCLK,
};
/* PLL1 Source */
enum {
RT5677_PLL1_S_MCLK,
RT5677_PLL1_S_BCLK1,
RT5677_PLL1_S_BCLK2,
RT5677_PLL1_S_BCLK3,
RT5677_PLL1_S_BCLK4,
};
enum {
RT5677_AIF1,
RT5677_AIF2,
RT5677_AIF3,
RT5677_AIF4,
RT5677_AIF5,
RT5677_AIFS,
};
struct rt5677_pll_code {
bool m_bp; /* Indicates bypass m code or not. */
bool k_bp; /* Indicates bypass k code or not. */
int m_code;
int n_code;
int k_code;
};
struct rt5677_priv {
struct snd_soc_codec *codec;
struct rt5677_platform_data pdata;
struct regmap *regmap;
int sysclk;
int sysclk_src;
int lrck[RT5677_AIFS];
int bclk[RT5677_AIFS];
int master[RT5677_AIFS];
int pll_src;
int pll_in;
int pll_out;
};
#endif /* __RT5677_H__ */
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment