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
nexedi
linux
Commits
e6ddd861
Commit
e6ddd861
authored
Aug 22, 2013
by
Mark Brown
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'asoc/topic/hdmi' into asoc-next
parents
5bf83bf8
c34e51b1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
1 deletion
+29
-1
sound/soc/codecs/hdmi.c
sound/soc/codecs/hdmi.c
+29
-1
No files found.
sound/soc/codecs/hdmi.c
View file @
e6ddd861
...
...
@@ -23,11 +23,20 @@
#define DRV_NAME "hdmi-audio-codec"
static
struct
snd_soc_codec_driver
hdmi_codec
;
static
const
struct
snd_soc_dapm_widget
hdmi_widgets
[]
=
{
SND_SOC_DAPM_INPUT
(
"RX"
),
SND_SOC_DAPM_OUTPUT
(
"TX"
),
};
static
const
struct
snd_soc_dapm_route
hdmi_routes
[]
=
{
{
"Capture"
,
NULL
,
"RX"
},
{
"TX"
,
NULL
,
"Playback"
},
};
static
struct
snd_soc_dai_driver
hdmi_codec_dai
=
{
.
name
=
"hdmi-hifi"
,
.
playback
=
{
.
stream_name
=
"Playback"
,
.
channels_min
=
2
,
.
channels_max
=
8
,
.
rates
=
SNDRV_PCM_RATE_32000
|
...
...
@@ -37,6 +46,25 @@ static struct snd_soc_dai_driver hdmi_codec_dai = {
.
formats
=
SNDRV_PCM_FMTBIT_S16_LE
|
SNDRV_PCM_FMTBIT_S24_LE
,
},
.
capture
=
{
.
stream_name
=
"Capture"
,
.
channels_min
=
2
,
.
channels_max
=
2
,
.
rates
=
SNDRV_PCM_RATE_32000
|
SNDRV_PCM_RATE_44100
|
SNDRV_PCM_RATE_48000
|
SNDRV_PCM_RATE_88200
|
SNDRV_PCM_RATE_96000
|
SNDRV_PCM_RATE_176400
|
SNDRV_PCM_RATE_192000
,
.
formats
=
SNDRV_PCM_FMTBIT_S16_LE
|
SNDRV_PCM_FMTBIT_S24_LE
,
},
};
static
struct
snd_soc_codec_driver
hdmi_codec
=
{
.
dapm_widgets
=
hdmi_widgets
,
.
num_dapm_widgets
=
ARRAY_SIZE
(
hdmi_widgets
),
.
dapm_routes
=
hdmi_routes
,
.
num_dapm_routes
=
ARRAY_SIZE
(
hdmi_routes
),
};
static
int
hdmi_codec_probe
(
struct
platform_device
*
pdev
)
...
...
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