2 * Machine driver for EVAL-ADAU1701MINIZ on Analog Devices bfin
5 * Copyright 2011 Analog Devices Inc.
6 * Author: Lars-Peter Clausen <lars@metafoo.de>
8 * Licensed under the GPL-2 or later.
11 #include <linux/module.h>
12 #include <linux/device.h>
13 #include <sound/core.h>
14 #include <sound/pcm.h>
15 #include <sound/soc.h>
16 #include <sound/pcm_params.h>
18 #include "../codecs/adau1701.h"
20 static const struct snd_soc_dapm_widget bfin_eval_adau1701_dapm_widgets
[] = {
21 SND_SOC_DAPM_SPK("Speaker", NULL
),
22 SND_SOC_DAPM_LINE("Line Out", NULL
),
23 SND_SOC_DAPM_LINE("Line In", NULL
),
26 static const struct snd_soc_dapm_route bfin_eval_adau1701_dapm_routes
[] = {
27 { "Speaker", NULL
, "OUT0" },
28 { "Speaker", NULL
, "OUT1" },
29 { "Line Out", NULL
, "OUT2" },
30 { "Line Out", NULL
, "OUT3" },
32 { "IN0", NULL
, "Line In" },
33 { "IN1", NULL
, "Line In" },
36 static int bfin_eval_adau1701_hw_params(struct snd_pcm_substream
*substream
,
37 struct snd_pcm_hw_params
*params
)
39 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
40 struct snd_soc_dai
*codec_dai
= rtd
->codec_dai
;
43 ret
= snd_soc_dai_set_sysclk(codec_dai
, ADAU1701_CLK_SRC_OSC
, 12288000,
49 static struct snd_soc_ops bfin_eval_adau1701_ops
= {
50 .hw_params
= bfin_eval_adau1701_hw_params
,
53 #define BFIN_EVAL_ADAU1701_DAI_FMT (SND_SOC_DAIFMT_I2S | \
54 SND_SOC_DAIFMT_NB_NF | SND_SOC_DAIFMT_CBM_CFM)
56 static struct snd_soc_dai_link bfin_eval_adau1701_dai
[] = {
59 .stream_name
= "adau1701",
60 .cpu_dai_name
= "bfin-i2s.0",
61 .codec_dai_name
= "adau1701",
62 .platform_name
= "bfin-i2s-pcm-audio",
63 .codec_name
= "adau1701.0-0034",
64 .ops
= &bfin_eval_adau1701_ops
,
65 .dai_fmt
= BFIN_EVAL_ADAU1701_DAI_FMT
,
69 .stream_name
= "adau1701",
70 .cpu_dai_name
= "bfin-i2s.1",
71 .codec_dai_name
= "adau1701",
72 .platform_name
= "bfin-i2s-pcm-audio",
73 .codec_name
= "adau1701.0-0034",
74 .ops
= &bfin_eval_adau1701_ops
,
75 .dai_fmt
= BFIN_EVAL_ADAU1701_DAI_FMT
,
79 static struct snd_soc_card bfin_eval_adau1701
= {
80 .name
= "bfin-eval-adau1701",
82 .dai_link
= &bfin_eval_adau1701_dai
[CONFIG_SND_BF5XX_SPORT_NUM
],
85 .dapm_widgets
= bfin_eval_adau1701_dapm_widgets
,
86 .num_dapm_widgets
= ARRAY_SIZE(bfin_eval_adau1701_dapm_widgets
),
87 .dapm_routes
= bfin_eval_adau1701_dapm_routes
,
88 .num_dapm_routes
= ARRAY_SIZE(bfin_eval_adau1701_dapm_routes
),
91 static int bfin_eval_adau1701_probe(struct platform_device
*pdev
)
93 struct snd_soc_card
*card
= &bfin_eval_adau1701
;
95 card
->dev
= &pdev
->dev
;
97 return snd_soc_register_card(&bfin_eval_adau1701
);
100 static int bfin_eval_adau1701_remove(struct platform_device
*pdev
)
102 struct snd_soc_card
*card
= platform_get_drvdata(pdev
);
104 snd_soc_unregister_card(card
);
109 static struct platform_driver bfin_eval_adau1701_driver
= {
111 .name
= "bfin-eval-adau1701",
112 .owner
= THIS_MODULE
,
113 .pm
= &snd_soc_pm_ops
,
115 .probe
= bfin_eval_adau1701_probe
,
116 .remove
= bfin_eval_adau1701_remove
,
119 module_platform_driver(bfin_eval_adau1701_driver
);
121 MODULE_AUTHOR("Lars-Peter Clausen <lars@metafoo.de>");
122 MODULE_DESCRIPTION("ALSA SoC bfin ADAU1701 driver");
123 MODULE_LICENSE("GPL");
124 MODULE_ALIAS("platform:bfin-eval-adau1701");