2 * ALSA SoC SPDIF DIT driver
4 * This driver is used by controllers which can operate in DIT (SPDI/F) where
5 * no codec is needed. This file provides stub codec that can be used
6 * in these configurations. TI DaVinci Audio controller uses this driver.
8 * Author: Steve Chen, <schen@mvista.com>
9 * Copyright: (C) 2009 MontaVista Software, Inc., <source@mvista.com>
10 * Copyright: (C) 2009 Texas Instruments, India
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License version 2 as
14 * published by the Free Software Foundation.
17 #include <linux/module.h>
18 #include <linux/moduleparam.h>
19 #include <linux/slab.h>
20 #include <sound/soc.h>
21 #include <sound/pcm.h>
22 #include <sound/initval.h>
24 #include "spdif_transciever.h"
26 MODULE_LICENSE("GPL");
28 #define STUB_RATES SNDRV_PCM_RATE_8000_96000
29 #define STUB_FORMATS SNDRV_PCM_FMTBIT_S16_LE
31 static struct snd_soc_codec
*spdif_dit_codec
;
33 static int spdif_dit_codec_probe(struct platform_device
*pdev
)
35 struct snd_soc_device
*socdev
= platform_get_drvdata(pdev
);
36 struct snd_soc_codec
*codec
;
39 if (spdif_dit_codec
== NULL
) {
40 dev_err(&pdev
->dev
, "Codec device not registered\n");
44 socdev
->card
->codec
= spdif_dit_codec
;
45 codec
= spdif_dit_codec
;
47 ret
= snd_soc_new_pcms(socdev
, SNDRV_DEFAULT_IDX1
, SNDRV_DEFAULT_STR1
);
49 dev_err(codec
->dev
, "failed to create pcms: %d\n", ret
);
59 static int spdif_dit_codec_remove(struct platform_device
*pdev
)
61 struct snd_soc_device
*socdev
= platform_get_drvdata(pdev
);
63 snd_soc_free_pcms(socdev
);
68 struct snd_soc_codec_device soc_codec_dev_spdif_dit
= {
69 .probe
= spdif_dit_codec_probe
,
70 .remove
= spdif_dit_codec_remove
,
71 }; EXPORT_SYMBOL_GPL(soc_codec_dev_spdif_dit
);
73 struct snd_soc_dai dit_stub_dai
= {
76 .stream_name
= "Playback",
80 .formats
= STUB_FORMATS
,
83 EXPORT_SYMBOL_GPL(dit_stub_dai
);
85 static int spdif_dit_probe(struct platform_device
*pdev
)
87 struct snd_soc_codec
*codec
;
90 if (spdif_dit_codec
) {
91 dev_err(&pdev
->dev
, "Another Codec is registered\n");
96 codec
= kzalloc(sizeof(struct snd_soc_codec
), GFP_KERNEL
);
100 codec
->dev
= &pdev
->dev
;
102 mutex_init(&codec
->mutex
);
104 INIT_LIST_HEAD(&codec
->dapm_widgets
);
105 INIT_LIST_HEAD(&codec
->dapm_paths
);
107 codec
->name
= "spdif-dit";
108 codec
->owner
= THIS_MODULE
;
109 codec
->dai
= &dit_stub_dai
;
112 spdif_dit_codec
= codec
;
114 ret
= snd_soc_register_codec(codec
);
116 dev_err(codec
->dev
, "Failed to register codec: %d\n", ret
);
120 dit_stub_dai
.dev
= &pdev
->dev
;
121 ret
= snd_soc_register_dai(&dit_stub_dai
);
123 dev_err(codec
->dev
, "Failed to register dai: %d\n", ret
);
130 snd_soc_unregister_codec(codec
);
132 kfree(spdif_dit_codec
);
136 static int spdif_dit_remove(struct platform_device
*pdev
)
138 snd_soc_unregister_dai(&dit_stub_dai
);
139 snd_soc_unregister_codec(spdif_dit_codec
);
140 kfree(spdif_dit_codec
);
141 spdif_dit_codec
= NULL
;
145 static struct platform_driver spdif_dit_driver
= {
146 .probe
= spdif_dit_probe
,
147 .remove
= spdif_dit_remove
,
150 .owner
= THIS_MODULE
,
154 static int __init
dit_modinit(void)
156 return platform_driver_register(&spdif_dit_driver
);
159 static void __exit
dit_exit(void)
161 platform_driver_unregister(&spdif_dit_driver
);
164 module_init(dit_modinit
);
165 module_exit(dit_exit
);