Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
edc3596f
Commit
edc3596f
authored
Jun 03, 2014
by
Mark Brown
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'asoc/topic/cs42l56' into asoc-next
parents
6340c5ab
4641c771
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
37 additions
and
43 deletions
+37
-43
sound/soc/codecs/cs42l56.c
sound/soc/codecs/cs42l56.c
+31
-39
sound/soc/codecs/cs42l56.h
sound/soc/codecs/cs42l56.h
+6
-4
No files found.
sound/soc/codecs/cs42l56.c
View file @
edc3596f
...
...
@@ -763,14 +763,14 @@ static int cs42l56_set_sysclk(struct snd_soc_dai *codec_dai,
case
CS42L56_MCLK_11P2896MHZ
:
case
CS42L56_MCLK_12MHZ
:
case
CS42L56_MCLK_12P288MHZ
:
cs42l56
->
mclk_div2
=
1
;
cs42l56
->
mclk_div2
=
CS42L56_MCLK_DIV2
;
cs42l56
->
mclk_prediv
=
0
;
break
;
case
CS42L56_MCLK_22P5792MHZ
:
case
CS42L56_MCLK_24MHZ
:
case
CS42L56_MCLK_24P576MHZ
:
cs42l56
->
mclk_div2
=
1
;
cs42l56
->
mclk_prediv
=
1
;
cs42l56
->
mclk_div2
=
CS42L56_MCLK_DIV2
;
cs42l56
->
mclk_prediv
=
CS42L56_MCLK_PREDIV
;
break
;
default:
return
-
EINVAL
;
...
...
@@ -849,27 +849,21 @@ static int cs42l56_digital_mute(struct snd_soc_dai *dai, int mute)
CS42L56_PCMBMIX_MUTE_MASK
|
CS42L56_MSTB_MUTE_MASK
|
CS42L56_MSTA_MUTE_MASK
,
CS42L56_MUTE
);
CS42L56_MUTE_ALL
);
/* Mute ADC's */
snd_soc_update_bits
(
codec
,
CS42L56_MISC_ADC_CTL
,
CS42L56_ADCA_MUTE_MASK
|
CS42L56_ADCB_MUTE_MASK
,
CS42L56_MUTE
);
CS42L56_MUTE_ALL
);
/* HP And LO */
snd_soc_update_bits
(
codec
,
CS42L56_HPA_VOLUME
,
CS42L56_HP_MUTE_MASK
,
CS42L56_MUTE
);
CS42L56_HP_MUTE_MASK
,
CS42L56_MUTE_ALL
);
snd_soc_update_bits
(
codec
,
CS42L56_HPB_VOLUME
,
CS42L56_HP_MUTE_MASK
,
CS42L56_MUTE
);
CS42L56_HP_MUTE_MASK
,
CS42L56_MUTE_ALL
);
snd_soc_update_bits
(
codec
,
CS42L56_LOA_VOLUME
,
CS42L56_LO_MUTE_MASK
,
CS42L56_MUTE
);
CS42L56_LO_MUTE_MASK
,
CS42L56_MUTE_ALL
);
snd_soc_update_bits
(
codec
,
CS42L56_LOB_VOLUME
,
CS42L56_LO_MUTE_MASK
,
CS42L56_MUTE
);
CS42L56_LO_MUTE_MASK
,
CS42L56_MUTE_ALL
);
}
else
{
snd_soc_update_bits
(
codec
,
CS42L56_DSP_MUTE_CTL
,
CS42L56_ADCAMIX_MUTE_MASK
|
...
...
@@ -879,22 +873,20 @@ static int cs42l56_digital_mute(struct snd_soc_dai *dai, int mute)
CS42L56_MSTB_MUTE_MASK
|
CS42L56_MSTA_MUTE_MASK
,
CS42L56_UNMUTE
);
snd_soc_update_bits
(
codec
,
CS42L56_MISC_ADC_CTL
,
CS42L56_ADCA_MUTE_MASK
|
CS42L56_ADCB_MUTE_MASK
,
CS42L56_UNMUTE
);
snd_soc_update_bits
(
codec
,
CS42L56_HPA_VOLUME
,
CS42L56_HP_MUTE_MASK
,
CS42L56_UNMUTE
);
CS42L56_HP_MUTE_MASK
,
CS42L56_UNMUTE
);
snd_soc_update_bits
(
codec
,
CS42L56_HPB_VOLUME
,
CS42L56_HP_MUTE_MASK
,
CS42L56_UNMUTE
);
CS42L56_HP_MUTE_MASK
,
CS42L56_UNMUTE
);
snd_soc_update_bits
(
codec
,
CS42L56_LOA_VOLUME
,
CS42L56_LO_MUTE_MASK
,
CS42L56_UNMUTE
);
CS42L56_LO_MUTE_MASK
,
CS42L56_UNMUTE
);
snd_soc_update_bits
(
codec
,
CS42L56_LOB_VOLUME
,
CS42L56_LO_MUTE_MASK
,
CS42L56_UNMUTE
);
CS42L56_LO_MUTE_MASK
,
CS42L56_UNMUTE
);
}
return
0
;
}
...
...
sound/soc/codecs/cs42l56.h
View file @
edc3596f
...
...
@@ -80,19 +80,21 @@
#define CS42L56_PDN_HPB_MASK 0xc0
/* serial port and clk masks */
#define CS42L56_MASTER_MODE
1
#define CS42L56_MASTER_MODE
0x40
#define CS42L56_SLAVE_MODE 0
#define CS42L56_MS_MODE_MASK 0x40
#define CS42L56_SCLK_INV
1
#define CS42L56_SCLK_INV
0x20
#define CS42L56_SCLK_INV_MASK 0x20
#define CS42L56_SCLK_MCLK_MASK 0x18
#define CS42L56_MCLK_PREDIV 0x04
#define CS42L56_MCLK_PREDIV_MASK 0x04
#define CS42L56_MCLK_DIV2 0x02
#define CS42L56_MCLK_DIV2_MASK 0x02
#define CS42L56_MCLK_DIS_MASK 0x01
#define CS42L56_CLK_AUTO_MASK 0x20
#define CS42L56_CLK_RATIO_MASK 0x1f
#define CS42L56_DIG_FMT_I2S 0
#define CS42L56_DIG_FMT_LEFT_J
1
#define CS42L56_DIG_FMT_LEFT_J
0x08
#define CS42L56_DIG_FMT_MASK 0x08
/* Class H and misc ctl masks */
...
...
@@ -116,7 +118,7 @@
#define CS42L56_DEEMPH_MASK 0x40
#define CS42L56_PLYBCK_GANG_MASK 0x10
#define CS42L56_PCM_INV_MASK 0x0c
#define CS42L56_MUTE
1
#define CS42L56_MUTE
_ALL 0xff
#define CS42L56_UNMUTE 0
#define CS42L56_ADCAMIX_MUTE_MASK 0x40
#define CS42L56_ADCBMIX_MUTE_MASK 0x80
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment