2 * snappercl15.c -- SoC audio for Bluewater Systems Snapper CL15 module
4 * Copyright (C) 2008 Bluewater Systems Ltd
5 * Author: Ryan Mallon <ryan@bluewatersys.com>
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2 of the License, or (at your
10 * option) any later version.
14 #include <linux/platform_device.h>
15 #include <sound/core.h>
16 #include <sound/pcm.h>
17 #include <sound/soc.h>
18 #include <sound/soc-dapm.h>
20 #include <asm/mach-types.h>
21 #include <mach/hardware.h>
23 #include "../codecs/tlv320aic23.h"
24 #include "ep93xx-pcm.h"
25 #include "ep93xx-i2s.h"
27 #define CODEC_CLOCK 5644800
29 static int snappercl15_hw_params(struct snd_pcm_substream
*substream
,
30 struct snd_pcm_hw_params
*params
)
32 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
33 struct snd_soc_dai
*codec_dai
= rtd
->dai
->codec_dai
;
34 struct snd_soc_dai
*cpu_dai
= rtd
->dai
->cpu_dai
;
37 err
= snd_soc_dai_set_fmt(codec_dai
, SND_SOC_DAIFMT_I2S
|
38 SND_SOC_DAIFMT_NB_IF
|
39 SND_SOC_DAIFMT_CBS_CFS
);
41 err
= snd_soc_dai_set_fmt(cpu_dai
, SND_SOC_DAIFMT_I2S
|
42 SND_SOC_DAIFMT_NB_IF
|
43 SND_SOC_DAIFMT_CBS_CFS
);
47 err
= snd_soc_dai_set_sysclk(codec_dai
, 0, CODEC_CLOCK
,
52 err
= snd_soc_dai_set_sysclk(cpu_dai
, 0, CODEC_CLOCK
,
60 static struct snd_soc_ops snappercl15_ops
= {
61 .hw_params
= snappercl15_hw_params
,
64 static const struct snd_soc_dapm_widget tlv320aic23_dapm_widgets
[] = {
65 SND_SOC_DAPM_HP("Headphone Jack", NULL
),
66 SND_SOC_DAPM_LINE("Line In", NULL
),
67 SND_SOC_DAPM_MIC("Mic Jack", NULL
),
70 static const struct snd_soc_dapm_route audio_map
[] = {
71 {"Headphone Jack", NULL
, "LHPOUT"},
72 {"Headphone Jack", NULL
, "RHPOUT"},
74 {"LLINEIN", NULL
, "Line In"},
75 {"RLINEIN", NULL
, "Line In"},
77 {"MICIN", NULL
, "Mic Jack"},
80 static int snappercl15_tlv320aic23_init(struct snd_soc_codec
*codec
)
82 snd_soc_dapm_new_controls(codec
, tlv320aic23_dapm_widgets
,
83 ARRAY_SIZE(tlv320aic23_dapm_widgets
));
85 snd_soc_dapm_add_routes(codec
, audio_map
, ARRAY_SIZE(audio_map
));
89 static struct snd_soc_dai_link snappercl15_dai
= {
90 .name
= "tlv320aic23",
91 .stream_name
= "AIC23",
92 .cpu_dai
= &ep93xx_i2s_dai
,
93 .codec_dai
= &tlv320aic23_dai
,
94 .init
= snappercl15_tlv320aic23_init
,
95 .ops
= &snappercl15_ops
,
98 static struct snd_soc_card snd_soc_snappercl15
= {
99 .name
= "Snapper CL15",
100 .platform
= &ep93xx_soc_platform
,
101 .dai_link
= &snappercl15_dai
,
105 static struct snd_soc_device snappercl15_snd_devdata
= {
106 .card
= &snd_soc_snappercl15
,
107 .codec_dev
= &soc_codec_dev_tlv320aic23
,
110 static struct platform_device
*snappercl15_snd_device
;
112 static int __init
snappercl15_init(void)
116 if (!machine_is_snapper_cl15())
119 ret
= ep93xx_i2s_acquire(EP93XX_SYSCON_DEVCFG_I2SONAC97
,
120 EP93XX_SYSCON_I2SCLKDIV_ORIDE
|
121 EP93XX_SYSCON_I2SCLKDIV_SPOL
);
125 snappercl15_snd_device
= platform_device_alloc("soc-audio", -1);
126 if (!snappercl15_snd_device
)
129 platform_set_drvdata(snappercl15_snd_device
, &snappercl15_snd_devdata
);
130 snappercl15_snd_devdata
.dev
= &snappercl15_snd_device
->dev
;
131 ret
= platform_device_add(snappercl15_snd_device
);
133 platform_device_put(snappercl15_snd_device
);
138 static void __exit
snappercl15_exit(void)
140 platform_device_unregister(snappercl15_snd_device
);
141 ep93xx_i2s_release();
144 module_init(snappercl15_init
);
145 module_exit(snappercl15_exit
);
147 MODULE_AUTHOR("Ryan Mallon <ryan@bluewatersys.com>");
148 MODULE_DESCRIPTION("ALSA SoC Snapper CL15");
149 MODULE_LICENSE("GPL");