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
3674b710
Commit
3674b710
authored
Aug 04, 2014
by
Mark Brown
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'asoc/fix/fsl-sai' into asoc-linus
parents
0b773b20
a3fdc674
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
17 deletions
+23
-17
sound/soc/fsl/fsl_sai.c
sound/soc/fsl/fsl_sai.c
+23
-17
No files found.
sound/soc/fsl/fsl_sai.c
View file @
3674b710
...
...
@@ -327,7 +327,7 @@ static int fsl_sai_trigger(struct snd_pcm_substream *substream, int cmd,
{
struct
fsl_sai
*
sai
=
snd_soc_dai_get_drvdata
(
cpu_dai
);
bool
tx
=
substream
->
stream
==
SNDRV_PCM_STREAM_PLAYBACK
;
u32
tcsr
,
rcsr
;
u32
xcsr
,
count
=
100
;
/*
* The transmitter bit clock and frame sync are to be
...
...
@@ -338,9 +338,6 @@ static int fsl_sai_trigger(struct snd_pcm_substream *substream, int cmd,
regmap_update_bits
(
sai
->
regmap
,
FSL_SAI_RCR2
,
FSL_SAI_CR2_SYNC
,
FSL_SAI_CR2_SYNC
);
regmap_read
(
sai
->
regmap
,
FSL_SAI_TCSR
,
&
tcsr
);
regmap_read
(
sai
->
regmap
,
FSL_SAI_RCSR
,
&
rcsr
);
/*
* It is recommended that the transmitter is the last enabled
* and the first disabled.
...
...
@@ -349,17 +346,16 @@ static int fsl_sai_trigger(struct snd_pcm_substream *substream, int cmd,
case
SNDRV_PCM_TRIGGER_START
:
case
SNDRV_PCM_TRIGGER_RESUME
:
case
SNDRV_PCM_TRIGGER_PAUSE_RELEASE
:
if
(
!
(
tcsr
&
FSL_SAI_CSR_FRDE
||
rcsr
&
FSL_SAI_CSR_FRDE
))
{
regmap_update_bits
(
sai
->
regmap
,
FSL_SAI_RCSR
,
FSL_SAI_CSR_TERE
,
FSL_SAI_CSR_TERE
);
regmap_update_bits
(
sai
->
regmap
,
FSL_SAI_TCSR
,
FSL_SAI_CSR_TERE
,
FSL_SAI_CSR_TERE
);
}
regmap_update_bits
(
sai
->
regmap
,
FSL_SAI_xCSR
(
tx
),
FSL_SAI_CSR_FRDE
,
FSL_SAI_CSR_FRDE
);
regmap_update_bits
(
sai
->
regmap
,
FSL_SAI_RCSR
,
FSL_SAI_CSR_TERE
,
FSL_SAI_CSR_TERE
);
regmap_update_bits
(
sai
->
regmap
,
FSL_SAI_TCSR
,
FSL_SAI_CSR_TERE
,
FSL_SAI_CSR_TERE
);
regmap_update_bits
(
sai
->
regmap
,
FSL_SAI_xCSR
(
tx
),
FSL_SAI_CSR_xIE_MASK
,
FSL_SAI_FLAGS
);
regmap_update_bits
(
sai
->
regmap
,
FSL_SAI_xCSR
(
tx
),
FSL_SAI_CSR_FRDE
,
FSL_SAI_CSR_FRDE
);
break
;
case
SNDRV_PCM_TRIGGER_STOP
:
case
SNDRV_PCM_TRIGGER_SUSPEND
:
...
...
@@ -370,14 +366,24 @@ static int fsl_sai_trigger(struct snd_pcm_substream *substream, int cmd,
FSL_SAI_CSR_xIE_MASK
,
0
);
/* Check if the opposite FRDE is also disabled */
if
(
!
(
tx
?
rcsr
&
FSL_SAI_CSR_FRDE
:
tcsr
&
FSL_SAI_CSR_FRDE
))
{
regmap_read
(
sai
->
regmap
,
FSL_SAI_xCSR
(
!
tx
),
&
xcsr
);
if
(
!
(
xcsr
&
FSL_SAI_CSR_FRDE
))
{
/* Disable both directions and reset their FIFOs */
regmap_update_bits
(
sai
->
regmap
,
FSL_SAI_TCSR
,
FSL_SAI_CSR_TERE
|
FSL_SAI_CSR_FR
,
FSL_SAI_CSR_FR
);
FSL_SAI_CSR_TERE
,
0
);
regmap_update_bits
(
sai
->
regmap
,
FSL_SAI_RCSR
,
FSL_SAI_CSR_TERE
,
0
);
/* TERE will remain set till the end of current frame */
do
{
udelay
(
10
);
regmap_read
(
sai
->
regmap
,
FSL_SAI_xCSR
(
tx
),
&
xcsr
);
}
while
(
--
count
&&
xcsr
&
FSL_SAI_CSR_TERE
);
regmap_update_bits
(
sai
->
regmap
,
FSL_SAI_TCSR
,
FSL_SAI_CSR_FR
,
FSL_SAI_CSR_FR
);
regmap_update_bits
(
sai
->
regmap
,
FSL_SAI_RCSR
,
FSL_SAI_CSR_TERE
|
FSL_SAI_CSR_FR
,
FSL_SAI_CSR_FR
);
FSL_SAI_CSR_FR
,
FSL_SAI_CSR_FR
);
}
break
;
default:
...
...
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