s6105-ipcam.c 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244
  1. /*
  2. * ASoC driver for Stretch s6105 IP camera platform
  3. *
  4. * Author: Daniel Gloeckner, <dg@emlix.com>
  5. * Copyright: (C) 2009 emlix GmbH <info@emlix.com>
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2 as
  9. * published by the Free Software Foundation.
  10. */
  11. #include <linux/module.h>
  12. #include <linux/moduleparam.h>
  13. #include <linux/timer.h>
  14. #include <linux/interrupt.h>
  15. #include <linux/platform_device.h>
  16. #include <linux/i2c.h>
  17. #include <sound/core.h>
  18. #include <sound/pcm.h>
  19. #include <sound/soc.h>
  20. #include <variant/dmac.h>
  21. #include "../codecs/tlv320aic3x.h"
  22. #include "s6000-pcm.h"
  23. #include "s6000-i2s.h"
  24. #define S6105_CAM_CODEC_CLOCK 12288000
  25. static int s6105_hw_params(struct snd_pcm_substream *substream,
  26. struct snd_pcm_hw_params *params)
  27. {
  28. struct snd_soc_pcm_runtime *rtd = substream->private_data;
  29. struct snd_soc_dai *codec_dai = rtd->codec_dai;
  30. struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
  31. int ret = 0;
  32. /* set codec DAI configuration */
  33. ret = snd_soc_dai_set_fmt(codec_dai, SND_SOC_DAIFMT_I2S |
  34. SND_SOC_DAIFMT_CBM_CFM);
  35. if (ret < 0)
  36. return ret;
  37. /* set cpu DAI configuration */
  38. ret = snd_soc_dai_set_fmt(cpu_dai, SND_SOC_DAIFMT_CBM_CFM |
  39. SND_SOC_DAIFMT_NB_NF);
  40. if (ret < 0)
  41. return ret;
  42. /* set the codec system clock */
  43. ret = snd_soc_dai_set_sysclk(codec_dai, 0, S6105_CAM_CODEC_CLOCK,
  44. SND_SOC_CLOCK_OUT);
  45. if (ret < 0)
  46. return ret;
  47. return 0;
  48. }
  49. static struct snd_soc_ops s6105_ops = {
  50. .hw_params = s6105_hw_params,
  51. };
  52. /* s6105 machine dapm widgets */
  53. static const struct snd_soc_dapm_widget aic3x_dapm_widgets[] = {
  54. SND_SOC_DAPM_LINE("Audio Out Differential", NULL),
  55. SND_SOC_DAPM_LINE("Audio Out Stereo", NULL),
  56. SND_SOC_DAPM_LINE("Audio In", NULL),
  57. };
  58. /* s6105 machine audio_mapnections to the codec pins */
  59. static const struct snd_soc_dapm_route audio_map[] = {
  60. /* Audio Out connected to HPLOUT, HPLCOM, HPROUT */
  61. {"Audio Out Differential", NULL, "HPLOUT"},
  62. {"Audio Out Differential", NULL, "HPLCOM"},
  63. {"Audio Out Stereo", NULL, "HPLOUT"},
  64. {"Audio Out Stereo", NULL, "HPROUT"},
  65. /* Audio In connected to LINE1L, LINE1R */
  66. {"LINE1L", NULL, "Audio In"},
  67. {"LINE1R", NULL, "Audio In"},
  68. };
  69. static int output_type_info(struct snd_kcontrol *kcontrol,
  70. struct snd_ctl_elem_info *uinfo)
  71. {
  72. uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
  73. uinfo->count = 1;
  74. uinfo->value.enumerated.items = 2;
  75. if (uinfo->value.enumerated.item) {
  76. uinfo->value.enumerated.item = 1;
  77. strcpy(uinfo->value.enumerated.name, "HPLOUT/HPROUT");
  78. } else {
  79. strcpy(uinfo->value.enumerated.name, "HPLOUT/HPLCOM");
  80. }
  81. return 0;
  82. }
  83. static int output_type_get(struct snd_kcontrol *kcontrol,
  84. struct snd_ctl_elem_value *ucontrol)
  85. {
  86. ucontrol->value.enumerated.item[0] = kcontrol->private_value;
  87. return 0;
  88. }
  89. static int output_type_put(struct snd_kcontrol *kcontrol,
  90. struct snd_ctl_elem_value *ucontrol)
  91. {
  92. struct snd_soc_codec *codec = kcontrol->private_data;
  93. struct snd_soc_dapm_context *dapm = &codec->dapm;
  94. unsigned int val = (ucontrol->value.enumerated.item[0] != 0);
  95. char *differential = "Audio Out Differential";
  96. char *stereo = "Audio Out Stereo";
  97. if (kcontrol->private_value == val)
  98. return 0;
  99. kcontrol->private_value = val;
  100. snd_soc_dapm_disable_pin(dapm, val ? differential : stereo);
  101. snd_soc_dapm_sync(dapm);
  102. snd_soc_dapm_enable_pin(dapm, val ? stereo : differential);
  103. snd_soc_dapm_sync(dapm);
  104. return 1;
  105. }
  106. static const struct snd_kcontrol_new audio_out_mux = {
  107. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  108. .name = "Master Output Mux",
  109. .index = 0,
  110. .access = SNDRV_CTL_ELEM_ACCESS_READWRITE,
  111. .info = output_type_info,
  112. .get = output_type_get,
  113. .put = output_type_put,
  114. .private_value = 1 /* default to stereo */
  115. };
  116. /* Logic for a aic3x as connected on the s6105 ip camera ref design */
  117. static int s6105_aic3x_init(struct snd_soc_pcm_runtime *rtd)
  118. {
  119. struct snd_soc_codec *codec = rtd->codec;
  120. struct snd_soc_dapm_context *dapm = &codec->dapm;
  121. /* Add s6105 specific widgets */
  122. snd_soc_dapm_new_controls(dapm, aic3x_dapm_widgets,
  123. ARRAY_SIZE(aic3x_dapm_widgets));
  124. /* Set up s6105 specific audio path audio_map */
  125. snd_soc_dapm_add_routes(dapm, audio_map, ARRAY_SIZE(audio_map));
  126. /* not present */
  127. snd_soc_dapm_nc_pin(dapm, "MONO_LOUT");
  128. snd_soc_dapm_nc_pin(dapm, "LINE2L");
  129. snd_soc_dapm_nc_pin(dapm, "LINE2R");
  130. /* not connected */
  131. snd_soc_dapm_nc_pin(dapm, "MIC3L"); /* LINE2L on this chip */
  132. snd_soc_dapm_nc_pin(dapm, "MIC3R"); /* LINE2R on this chip */
  133. snd_soc_dapm_nc_pin(dapm, "LLOUT");
  134. snd_soc_dapm_nc_pin(dapm, "RLOUT");
  135. snd_soc_dapm_nc_pin(dapm, "HPRCOM");
  136. /* always connected */
  137. snd_soc_dapm_enable_pin(dapm, "Audio In");
  138. /* must correspond to audio_out_mux.private_value initializer */
  139. snd_soc_dapm_disable_pin(dapm, "Audio Out Differential");
  140. snd_soc_dapm_sync(dapm);
  141. snd_soc_dapm_enable_pin(dapm, "Audio Out Stereo");
  142. snd_soc_dapm_sync(dapm);
  143. snd_ctl_add(codec->card->snd_card, snd_ctl_new1(&audio_out_mux, codec));
  144. return 0;
  145. }
  146. /* s6105 digital audio interface glue - connects codec <--> CPU */
  147. static struct snd_soc_dai_link s6105_dai = {
  148. .name = "TLV320AIC31",
  149. .stream_name = "AIC31",
  150. .cpu_dai_name = "s6000-i2s",
  151. .codec_dai_name = "tlv320aic3x-hifi",
  152. .platform_name = "s6000-pcm-audio",
  153. .codec_name = "tlv320aic3x-codec.0-001a",
  154. .init = s6105_aic3x_init,
  155. .ops = &s6105_ops,
  156. };
  157. /* s6105 audio machine driver */
  158. static struct snd_soc_card snd_soc_card_s6105 = {
  159. .name = "Stretch IP Camera",
  160. .dai_link = &s6105_dai,
  161. .num_links = 1,
  162. };
  163. static struct s6000_snd_platform_data __initdata s6105_snd_data = {
  164. .wide = 0,
  165. .channel_in = 0,
  166. .channel_out = 1,
  167. .lines_in = 1,
  168. .lines_out = 1,
  169. .same_rate = 1,
  170. };
  171. static struct platform_device *s6105_snd_device;
  172. /* temporary i2c device creation until this can be moved into the machine
  173. * support file.
  174. */
  175. static struct i2c_board_info i2c_device[] = {
  176. { I2C_BOARD_INFO("tlv320aic33", 0x18), }
  177. };
  178. static int __init s6105_init(void)
  179. {
  180. int ret;
  181. i2c_register_board_info(0, i2c_device, ARRAY_SIZE(i2c_device));
  182. s6105_snd_device = platform_device_alloc("soc-audio", -1);
  183. if (!s6105_snd_device)
  184. return -ENOMEM;
  185. platform_set_drvdata(s6105_snd_device, &snd_soc_card_s6105);
  186. platform_device_add_data(s6105_snd_device, &s6105_snd_data,
  187. sizeof(s6105_snd_data));
  188. ret = platform_device_add(s6105_snd_device);
  189. if (ret)
  190. platform_device_put(s6105_snd_device);
  191. return ret;
  192. }
  193. static void __exit s6105_exit(void)
  194. {
  195. platform_device_unregister(s6105_snd_device);
  196. }
  197. module_init(s6105_init);
  198. module_exit(s6105_exit);
  199. MODULE_AUTHOR("Daniel Gloeckner");
  200. MODULE_DESCRIPTION("Stretch s6105 IP camera ASoC driver");
  201. MODULE_LICENSE("GPL");