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
1b368811
Commit
1b368811
authored
Jul 04, 2013
by
Mark Brown
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'asoc/fix/mxs' into asoc-linus
parents
986a622d
7c9e6150
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
35 additions
and
0 deletions
+35
-0
sound/soc/mxs/mxs-saif.c
sound/soc/mxs/mxs-saif.c
+35
-0
No files found.
sound/soc/mxs/mxs-saif.c
View file @
1b368811
...
...
@@ -24,6 +24,7 @@
#include <linux/slab.h>
#include <linux/dma-mapping.h>
#include <linux/clk.h>
#include <linux/clk-provider.h>
#include <linux/delay.h>
#include <linux/time.h>
#include <sound/core.h>
...
...
@@ -658,6 +659,33 @@ static irqreturn_t mxs_saif_irq(int irq, void *dev_id)
return
IRQ_HANDLED
;
}
static
int
mxs_saif_mclk_init
(
struct
platform_device
*
pdev
)
{
struct
mxs_saif
*
saif
=
platform_get_drvdata
(
pdev
);
struct
device_node
*
np
=
pdev
->
dev
.
of_node
;
struct
clk
*
clk
;
int
ret
;
clk
=
clk_register_divider
(
&
pdev
->
dev
,
"mxs_saif_mclk"
,
__clk_get_name
(
saif
->
clk
),
0
,
saif
->
base
+
SAIF_CTRL
,
BP_SAIF_CTRL_BITCLK_MULT_RATE
,
3
,
0
,
NULL
);
if
(
IS_ERR
(
clk
))
{
ret
=
PTR_ERR
(
clk
);
if
(
ret
==
-
EEXIST
)
return
0
;
dev_err
(
&
pdev
->
dev
,
"failed to register mclk: %d
\n
"
,
ret
);
return
PTR_ERR
(
clk
);
}
ret
=
of_clk_add_provider
(
np
,
of_clk_src_simple_get
,
clk
);
if
(
ret
)
return
ret
;
return
0
;
}
static
int
mxs_saif_probe
(
struct
platform_device
*
pdev
)
{
struct
device_node
*
np
=
pdev
->
dev
.
of_node
;
...
...
@@ -734,6 +762,13 @@ static int mxs_saif_probe(struct platform_device *pdev)
platform_set_drvdata
(
pdev
,
saif
);
/* We only support saif0 being tx and clock master */
if
(
saif
->
id
==
0
)
{
ret
=
mxs_saif_mclk_init
(
pdev
);
if
(
ret
)
dev_warn
(
&
pdev
->
dev
,
"failed to init clocks
\n
"
);
}
ret
=
snd_soc_register_component
(
&
pdev
->
dev
,
&
mxs_saif_component
,
&
mxs_saif_dai
,
1
);
if
(
ret
)
{
...
...
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