diff options
Diffstat (limited to 'sound/soc/omap')
-rw-r--r-- | sound/soc/omap/Kconfig | 11 | ||||
-rw-r--r-- | sound/soc/omap/Makefile | 4 | ||||
-rw-r--r-- | sound/soc/omap/ams-delta.c | 11 | ||||
-rw-r--r-- | sound/soc/omap/mcpdm.c | 2 | ||||
-rw-r--r-- | sound/soc/omap/mcpdm.h | 2 | ||||
-rw-r--r-- | sound/soc/omap/n810.c | 4 | ||||
-rw-r--r-- | sound/soc/omap/omap-hdmi.c | 158 | ||||
-rw-r--r-- | sound/soc/omap/omap-hdmi.h | 36 | ||||
-rw-r--r-- | sound/soc/omap/omap-mcbsp.c | 10 | ||||
-rw-r--r-- | sound/soc/omap/omap-mcbsp.h | 2 | ||||
-rw-r--r-- | sound/soc/omap/omap-pcm.c | 10 | ||||
-rw-r--r-- | sound/soc/omap/omap-pcm.h | 2 | ||||
-rw-r--r-- | sound/soc/omap/omap4-hdmi-card.c | 129 | ||||
-rw-r--r-- | sound/soc/omap/rx51.c | 2 | ||||
-rw-r--r-- | sound/soc/omap/sdp3430.c | 2 | ||||
-rw-r--r-- | sound/soc/omap/sdp4430.c | 52 | ||||
-rw-r--r-- | sound/soc/omap/zoom2.c | 2 |
17 files changed, 375 insertions, 64 deletions
diff --git a/sound/soc/omap/Kconfig b/sound/soc/omap/Kconfig index 99054cf1f68..fe83d0d176b 100644 --- a/sound/soc/omap/Kconfig +++ b/sound/soc/omap/Kconfig | |||
@@ -9,6 +9,9 @@ config SND_OMAP_SOC_MCBSP | |||
9 | config SND_OMAP_SOC_MCPDM | 9 | config SND_OMAP_SOC_MCPDM |
10 | tristate | 10 | tristate |
11 | 11 | ||
12 | config SND_OMAP_SOC_HDMI | ||
13 | tristate | ||
14 | |||
12 | config SND_OMAP_SOC_N810 | 15 | config SND_OMAP_SOC_N810 |
13 | tristate "SoC Audio support for Nokia N810" | 16 | tristate "SoC Audio support for Nokia N810" |
14 | depends on SND_OMAP_SOC && MACH_NOKIA_N810 && I2C | 17 | depends on SND_OMAP_SOC && MACH_NOKIA_N810 && I2C |
@@ -100,6 +103,14 @@ config SND_OMAP_SOC_SDP4430 | |||
100 | Say Y if you want to add support for SoC audio on Texas Instruments | 103 | Say Y if you want to add support for SoC audio on Texas Instruments |
101 | SDP4430. | 104 | SDP4430. |
102 | 105 | ||
106 | config SND_OMAP_SOC_OMAP4_HDMI | ||
107 | tristate "SoC Audio support for Texas Instruments OMAP4 HDMI" | ||
108 | depends on SND_OMAP_SOC && OMAP4_DSS_HDMI && OMAP2_DSS && ARCH_OMAP4 | ||
109 | select SND_OMAP_SOC_HDMI | ||
110 | help | ||
111 | Say Y if you want to add support for SoC HDMI audio on Texas Instruments | ||
112 | OMAP4 chips | ||
113 | |||
103 | config SND_OMAP_SOC_OMAP3_PANDORA | 114 | config SND_OMAP_SOC_OMAP3_PANDORA |
104 | tristate "SoC Audio support for OMAP3 Pandora" | 115 | tristate "SoC Audio support for OMAP3 Pandora" |
105 | depends on TWL4030_CORE && SND_OMAP_SOC && MACH_OMAP3_PANDORA | 116 | depends on TWL4030_CORE && SND_OMAP_SOC && MACH_OMAP3_PANDORA |
diff --git a/sound/soc/omap/Makefile b/sound/soc/omap/Makefile index 6c2c87eed5b..59e2c8d1e38 100644 --- a/sound/soc/omap/Makefile +++ b/sound/soc/omap/Makefile | |||
@@ -2,10 +2,12 @@ | |||
2 | snd-soc-omap-objs := omap-pcm.o | 2 | snd-soc-omap-objs := omap-pcm.o |
3 | snd-soc-omap-mcbsp-objs := omap-mcbsp.o | 3 | snd-soc-omap-mcbsp-objs := omap-mcbsp.o |
4 | snd-soc-omap-mcpdm-objs := omap-mcpdm.o mcpdm.o | 4 | snd-soc-omap-mcpdm-objs := omap-mcpdm.o mcpdm.o |
5 | snd-soc-omap-hdmi-objs := omap-hdmi.o | ||
5 | 6 | ||
6 | obj-$(CONFIG_SND_OMAP_SOC) += snd-soc-omap.o | 7 | obj-$(CONFIG_SND_OMAP_SOC) += snd-soc-omap.o |
7 | obj-$(CONFIG_SND_OMAP_SOC_MCBSP) += snd-soc-omap-mcbsp.o | 8 | obj-$(CONFIG_SND_OMAP_SOC_MCBSP) += snd-soc-omap-mcbsp.o |
8 | obj-$(CONFIG_SND_OMAP_SOC_MCPDM) += snd-soc-omap-mcpdm.o | 9 | obj-$(CONFIG_SND_OMAP_SOC_MCPDM) += snd-soc-omap-mcpdm.o |
10 | obj-$(CONFIG_SND_OMAP_SOC_HDMI) += snd-soc-omap-hdmi.o | ||
9 | 11 | ||
10 | # OMAP Machine Support | 12 | # OMAP Machine Support |
11 | snd-soc-n810-objs := n810.o | 13 | snd-soc-n810-objs := n810.o |
@@ -21,6 +23,7 @@ snd-soc-omap3pandora-objs := omap3pandora.o | |||
21 | snd-soc-omap3beagle-objs := omap3beagle.o | 23 | snd-soc-omap3beagle-objs := omap3beagle.o |
22 | snd-soc-zoom2-objs := zoom2.o | 24 | snd-soc-zoom2-objs := zoom2.o |
23 | snd-soc-igep0020-objs := igep0020.o | 25 | snd-soc-igep0020-objs := igep0020.o |
26 | snd-soc-omap4-hdmi-objs := omap4-hdmi-card.o | ||
24 | 27 | ||
25 | obj-$(CONFIG_SND_OMAP_SOC_N810) += snd-soc-n810.o | 28 | obj-$(CONFIG_SND_OMAP_SOC_N810) += snd-soc-n810.o |
26 | obj-$(CONFIG_SND_OMAP_SOC_RX51) += snd-soc-rx51.o | 29 | obj-$(CONFIG_SND_OMAP_SOC_RX51) += snd-soc-rx51.o |
@@ -36,3 +39,4 @@ obj-$(CONFIG_SND_OMAP_SOC_OMAP3_PANDORA) += snd-soc-omap3pandora.o | |||
36 | obj-$(CONFIG_SND_OMAP_SOC_OMAP3_BEAGLE) += snd-soc-omap3beagle.o | 39 | obj-$(CONFIG_SND_OMAP_SOC_OMAP3_BEAGLE) += snd-soc-omap3beagle.o |
37 | obj-$(CONFIG_SND_OMAP_SOC_ZOOM2) += snd-soc-zoom2.o | 40 | obj-$(CONFIG_SND_OMAP_SOC_ZOOM2) += snd-soc-zoom2.o |
38 | obj-$(CONFIG_SND_OMAP_SOC_IGEP0020) += snd-soc-igep0020.o | 41 | obj-$(CONFIG_SND_OMAP_SOC_IGEP0020) += snd-soc-igep0020.o |
42 | obj-$(CONFIG_SND_OMAP_SOC_OMAP4_HDMI) += snd-soc-omap4-hdmi.o | ||
diff --git a/sound/soc/omap/ams-delta.c b/sound/soc/omap/ams-delta.c index 462cbcbea74..0aa475f92ef 100644 --- a/sound/soc/omap/ams-delta.c +++ b/sound/soc/omap/ams-delta.c | |||
@@ -330,7 +330,7 @@ static int cx81801_hangup(struct tty_struct *tty) | |||
330 | return 0; | 330 | return 0; |
331 | } | 331 | } |
332 | 332 | ||
333 | /* Line discipline .recieve_buf() */ | 333 | /* Line discipline .receive_buf() */ |
334 | static void cx81801_receive(struct tty_struct *tty, | 334 | static void cx81801_receive(struct tty_struct *tty, |
335 | const unsigned char *cp, char *fp, int count) | 335 | const unsigned char *cp, char *fp, int count) |
336 | { | 336 | { |
@@ -427,7 +427,8 @@ static struct snd_soc_ops ams_delta_ops = { | |||
427 | 427 | ||
428 | /* Board specific codec bias level control */ | 428 | /* Board specific codec bias level control */ |
429 | static int ams_delta_set_bias_level(struct snd_soc_card *card, | 429 | static int ams_delta_set_bias_level(struct snd_soc_card *card, |
430 | enum snd_soc_bias_level level) | 430 | struct snd_soc_dapm_context *dapm, |
431 | enum snd_soc_bias_level level) | ||
431 | { | 432 | { |
432 | struct snd_soc_codec *codec = card->rtd->codec; | 433 | struct snd_soc_codec *codec = card->rtd->codec; |
433 | 434 | ||
@@ -513,7 +514,7 @@ static int ams_delta_cx20442_init(struct snd_soc_pcm_runtime *rtd) | |||
513 | } | 514 | } |
514 | 515 | ||
515 | /* Set codec bias level */ | 516 | /* Set codec bias level */ |
516 | ams_delta_set_bias_level(card, SND_SOC_BIAS_STANDBY); | 517 | ams_delta_set_bias_level(card, dapm, SND_SOC_BIAS_STANDBY); |
517 | 518 | ||
518 | /* Add hook switch - can be used to control the codec from userspace | 519 | /* Add hook switch - can be used to control the codec from userspace |
519 | * even if line discipline fails */ | 520 | * even if line discipline fails */ |
@@ -648,7 +649,9 @@ static void __exit ams_delta_module_exit(void) | |||
648 | ams_delta_hook_switch_gpios); | 649 | ams_delta_hook_switch_gpios); |
649 | 650 | ||
650 | /* Keep modem power on */ | 651 | /* Keep modem power on */ |
651 | ams_delta_set_bias_level(&ams_delta_audio_card, SND_SOC_BIAS_STANDBY); | 652 | ams_delta_set_bias_level(&ams_delta_audio_card, |
653 | &ams_delta_audio_card.rtd[0].codec->dapm, | ||
654 | SND_SOC_BIAS_STANDBY); | ||
652 | 655 | ||
653 | platform_device_unregister(cx20442_platform_device); | 656 | platform_device_unregister(cx20442_platform_device); |
654 | platform_device_unregister(ams_delta_audio_platform_device); | 657 | platform_device_unregister(ams_delta_audio_platform_device); |
diff --git a/sound/soc/omap/mcpdm.c b/sound/soc/omap/mcpdm.c index 928f0370745..50e59194ad8 100644 --- a/sound/soc/omap/mcpdm.c +++ b/sound/soc/omap/mcpdm.c | |||
@@ -449,7 +449,7 @@ exit: | |||
449 | return ret; | 449 | return ret; |
450 | } | 450 | } |
451 | 451 | ||
452 | int __devexit omap_mcpdm_remove(struct platform_device *pdev) | 452 | int omap_mcpdm_remove(struct platform_device *pdev) |
453 | { | 453 | { |
454 | struct omap_mcpdm *mcpdm_ptr = platform_get_drvdata(pdev); | 454 | struct omap_mcpdm *mcpdm_ptr = platform_get_drvdata(pdev); |
455 | 455 | ||
diff --git a/sound/soc/omap/mcpdm.h b/sound/soc/omap/mcpdm.h index df3e16fb51f..20c20a8649f 100644 --- a/sound/soc/omap/mcpdm.h +++ b/sound/soc/omap/mcpdm.h | |||
@@ -150,4 +150,4 @@ extern int omap_mcpdm_request(void); | |||
150 | extern void omap_mcpdm_free(void); | 150 | extern void omap_mcpdm_free(void); |
151 | extern int omap_mcpdm_set_offset(int offset1, int offset2); | 151 | extern int omap_mcpdm_set_offset(int offset1, int offset2); |
152 | int __devinit omap_mcpdm_probe(struct platform_device *pdev); | 152 | int __devinit omap_mcpdm_probe(struct platform_device *pdev); |
153 | int __devexit omap_mcpdm_remove(struct platform_device *pdev); | 153 | int omap_mcpdm_remove(struct platform_device *pdev); |
diff --git a/sound/soc/omap/n810.c b/sound/soc/omap/n810.c index 83d213bfd3d..62e292f4931 100644 --- a/sound/soc/omap/n810.c +++ b/sound/soc/omap/n810.c | |||
@@ -3,7 +3,7 @@ | |||
3 | * | 3 | * |
4 | * Copyright (C) 2008 Nokia Corporation | 4 | * Copyright (C) 2008 Nokia Corporation |
5 | * | 5 | * |
6 | * Contact: Jarkko Nikula <jhnikula@gmail.com> | 6 | * Contact: Jarkko Nikula <jarkko.nikula@bitmer.com> |
7 | * | 7 | * |
8 | * This program is free software; you can redistribute it and/or | 8 | * This program is free software; you can redistribute it and/or |
9 | * modify it under the terms of the GNU General Public License | 9 | * modify it under the terms of the GNU General Public License |
@@ -402,6 +402,6 @@ static void __exit n810_soc_exit(void) | |||
402 | module_init(n810_soc_init); | 402 | module_init(n810_soc_init); |
403 | module_exit(n810_soc_exit); | 403 | module_exit(n810_soc_exit); |
404 | 404 | ||
405 | MODULE_AUTHOR("Jarkko Nikula <jhnikula@gmail.com>"); | 405 | MODULE_AUTHOR("Jarkko Nikula <jarkko.nikula@bitmer.com>"); |
406 | MODULE_DESCRIPTION("ALSA SoC Nokia N810"); | 406 | MODULE_DESCRIPTION("ALSA SoC Nokia N810"); |
407 | MODULE_LICENSE("GPL"); | 407 | MODULE_LICENSE("GPL"); |
diff --git a/sound/soc/omap/omap-hdmi.c b/sound/soc/omap/omap-hdmi.c new file mode 100644 index 00000000000..36c6eaeffb0 --- /dev/null +++ b/sound/soc/omap/omap-hdmi.c | |||
@@ -0,0 +1,158 @@ | |||
1 | /* | ||
2 | * omap-hdmi.c | ||
3 | * | ||
4 | * OMAP ALSA SoC DAI driver for HDMI audio on OMAP4 processors. | ||
5 | * Copyright (C) 2010-2011 Texas Instruments Incorporated - http://www.ti.com/ | ||
6 | * Authors: Jorge Candelaria <jorge.candelaria@ti.com> | ||
7 | * Ricardo Neri <ricardo.neri@ti.com> | ||
8 | * | ||
9 | * This program is free software; you can redistribute it and/or | ||
10 | * modify it under the terms of the GNU General Public License | ||
11 | * version 2 as published by the Free Software Foundation. | ||
12 | * | ||
13 | * This program is distributed in the hope that it will be useful, but | ||
14 | * WITHOUT ANY WARRANTY; without even the implied warranty of | ||
15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
16 | * General Public License for more details. | ||
17 | * | ||
18 | * You should have received a copy of the GNU General Public License | ||
19 | * along with this program; if not, write to the Free Software | ||
20 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA | ||
21 | * 02110-1301 USA | ||
22 | * | ||
23 | */ | ||
24 | |||
25 | #include <linux/init.h> | ||
26 | #include <linux/module.h> | ||
27 | #include <linux/device.h> | ||
28 | #include <sound/core.h> | ||
29 | #include <sound/pcm.h> | ||
30 | #include <sound/pcm_params.h> | ||
31 | #include <sound/initval.h> | ||
32 | #include <sound/soc.h> | ||
33 | |||
34 | #include <plat/dma.h> | ||
35 | #include "omap-pcm.h" | ||
36 | #include "omap-hdmi.h" | ||
37 | |||
38 | #define DRV_NAME "hdmi-audio-dai" | ||
39 | |||
40 | static struct omap_pcm_dma_data omap_hdmi_dai_dma_params = { | ||
41 | .name = "HDMI playback", | ||
42 | .sync_mode = OMAP_DMA_SYNC_PACKET, | ||
43 | }; | ||
44 | |||
45 | static int omap_hdmi_dai_startup(struct snd_pcm_substream *substream, | ||
46 | struct snd_soc_dai *dai) | ||
47 | { | ||
48 | int err; | ||
49 | /* | ||
50 | * Make sure that the period bytes are multiple of the DMA packet size. | ||
51 | * Largest packet size we use is 32 32-bit words = 128 bytes | ||
52 | */ | ||
53 | err = snd_pcm_hw_constraint_step(substream->runtime, 0, | ||
54 | SNDRV_PCM_HW_PARAM_PERIOD_BYTES, 128); | ||
55 | if (err < 0) | ||
56 | return err; | ||
57 | |||
58 | return 0; | ||
59 | } | ||
60 | |||
61 | static int omap_hdmi_dai_hw_params(struct snd_pcm_substream *substream, | ||
62 | struct snd_pcm_hw_params *params, | ||
63 | struct snd_soc_dai *dai) | ||
64 | { | ||
65 | int err = 0; | ||
66 | |||
67 | switch (params_format(params)) { | ||
68 | case SNDRV_PCM_FORMAT_S16_LE: | ||
69 | omap_hdmi_dai_dma_params.packet_size = 16; | ||
70 | break; | ||
71 | case SNDRV_PCM_FORMAT_S24_LE: | ||
72 | omap_hdmi_dai_dma_params.packet_size = 32; | ||
73 | break; | ||
74 | default: | ||
75 | err = -EINVAL; | ||
76 | } | ||
77 | |||
78 | omap_hdmi_dai_dma_params.data_type = OMAP_DMA_DATA_TYPE_S32; | ||
79 | |||
80 | snd_soc_dai_set_dma_data(dai, substream, | ||
81 | &omap_hdmi_dai_dma_params); | ||
82 | |||
83 | return err; | ||
84 | } | ||
85 | |||
86 | static struct snd_soc_dai_ops omap_hdmi_dai_ops = { | ||
87 | .startup = omap_hdmi_dai_startup, | ||
88 | .hw_params = omap_hdmi_dai_hw_params, | ||
89 | }; | ||
90 | |||
91 | static struct snd_soc_dai_driver omap_hdmi_dai = { | ||
92 | .playback = { | ||
93 | .channels_min = 2, | ||
94 | .channels_max = 2, | ||
95 | .rates = OMAP_HDMI_RATES, | ||
96 | .formats = OMAP_HDMI_FORMATS, | ||
97 | }, | ||
98 | .ops = &omap_hdmi_dai_ops, | ||
99 | }; | ||
100 | |||
101 | static __devinit int omap_hdmi_probe(struct platform_device *pdev) | ||
102 | { | ||
103 | int ret; | ||
104 | struct resource *hdmi_rsrc; | ||
105 | |||
106 | hdmi_rsrc = platform_get_resource(pdev, IORESOURCE_MEM, 0); | ||
107 | if (!hdmi_rsrc) { | ||
108 | dev_err(&pdev->dev, "Cannot obtain IORESOURCE_MEM HDMI\n"); | ||
109 | return -EINVAL; | ||
110 | } | ||
111 | |||
112 | omap_hdmi_dai_dma_params.port_addr = hdmi_rsrc->start | ||
113 | + OMAP_HDMI_AUDIO_DMA_PORT; | ||
114 | |||
115 | hdmi_rsrc = platform_get_resource(pdev, IORESOURCE_DMA, 0); | ||
116 | if (!hdmi_rsrc) { | ||
117 | dev_err(&pdev->dev, "Cannot obtain IORESOURCE_DMA HDMI\n"); | ||
118 | return -EINVAL; | ||
119 | } | ||
120 | |||
121 | omap_hdmi_dai_dma_params.dma_req = hdmi_rsrc->start; | ||
122 | |||
123 | ret = snd_soc_register_dai(&pdev->dev, &omap_hdmi_dai); | ||
124 | return ret; | ||
125 | } | ||
126 | |||
127 | static int __devexit omap_hdmi_remove(struct platform_device *pdev) | ||
128 | { | ||
129 | snd_soc_unregister_dai(&pdev->dev); | ||
130 | return 0; | ||
131 | } | ||
132 | |||
133 | static struct platform_driver hdmi_dai_driver = { | ||
134 | .driver = { | ||
135 | .name = DRV_NAME, | ||
136 | .owner = THIS_MODULE, | ||
137 | }, | ||
138 | .probe = omap_hdmi_probe, | ||
139 | .remove = __devexit_p(omap_hdmi_remove), | ||
140 | }; | ||
141 | |||
142 | static int __init hdmi_dai_init(void) | ||
143 | { | ||
144 | return platform_driver_register(&hdmi_dai_driver); | ||
145 | } | ||
146 | module_init(hdmi_dai_init); | ||
147 | |||
148 | static void __exit hdmi_dai_exit(void) | ||
149 | { | ||
150 | platform_driver_unregister(&hdmi_dai_driver); | ||
151 | } | ||
152 | module_exit(hdmi_dai_exit); | ||
153 | |||
154 | MODULE_AUTHOR("Jorge Candelaria <jorge.candelaria@ti.com>"); | ||
155 | MODULE_AUTHOR("Ricardo Neri <ricardo.neri@ti.com>"); | ||
156 | MODULE_DESCRIPTION("OMAP HDMI SoC Interface"); | ||
157 | MODULE_LICENSE("GPL"); | ||
158 | MODULE_ALIAS("platform:" DRV_NAME); | ||
diff --git a/sound/soc/omap/omap-hdmi.h b/sound/soc/omap/omap-hdmi.h new file mode 100644 index 00000000000..34c298d5057 --- /dev/null +++ b/sound/soc/omap/omap-hdmi.h | |||
@@ -0,0 +1,36 @@ | |||
1 | /* | ||
2 | * omap-hdmi.h | ||
3 | * | ||
4 | * Definitions for OMAP ALSA SoC DAI driver for HDMI audio on OMAP4 processors. | ||
5 | * Copyright (C) 2010-2011 Texas Instruments Incorporated - http://www.ti.com/ | ||
6 | * Authors: Jorge Candelaria <jorge.candelaria@ti.com> | ||
7 | * Ricardo Neri <ricardo.neri@ti.com> | ||
8 | * | ||
9 | * This program is free software; you can redistribute it and/or | ||
10 | * modify it under the terms of the GNU General Public License | ||
11 | * version 2 as published by the Free Software Foundation. | ||
12 | * | ||
13 | * This program is distributed in the hope that it will be useful, but | ||
14 | * WITHOUT ANY WARRANTY; without even the implied warranty of | ||
15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
16 | * General Public License for more details. | ||
17 | * | ||
18 | * You should have received a copy of the GNU General Public License | ||
19 | * along with this program; if not, write to the Free Software | ||
20 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA | ||
21 | * 02110-1301 USA | ||
22 | * | ||
23 | */ | ||
24 | |||
25 | #ifndef __OMAP_HDMI_H__ | ||
26 | #define __OMAP_HDMI_H__ | ||
27 | |||
28 | #define OMAP_HDMI_AUDIO_DMA_PORT 0x8c | ||
29 | |||
30 | #define OMAP_HDMI_RATES (SNDRV_PCM_RATE_32000 | \ | ||
31 | SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000) | ||
32 | |||
33 | #define OMAP_HDMI_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | \ | ||
34 | SNDRV_PCM_FMTBIT_S24_LE) | ||
35 | |||
36 | #endif | ||
diff --git a/sound/soc/omap/omap-mcbsp.c b/sound/soc/omap/omap-mcbsp.c index 07b77235724..478d6077845 100644 --- a/sound/soc/omap/omap-mcbsp.c +++ b/sound/soc/omap/omap-mcbsp.c | |||
@@ -3,7 +3,7 @@ | |||
3 | * | 3 | * |
4 | * Copyright (C) 2008 Nokia Corporation | 4 | * Copyright (C) 2008 Nokia Corporation |
5 | * | 5 | * |
6 | * Contact: Jarkko Nikula <jhnikula@gmail.com> | 6 | * Contact: Jarkko Nikula <jarkko.nikula@bitmer.com> |
7 | * Peter Ujfalusi <peter.ujfalusi@ti.com> | 7 | * Peter Ujfalusi <peter.ujfalusi@ti.com> |
8 | * | 8 | * |
9 | * This program is free software; you can redistribute it and/or | 9 | * This program is free software; you can redistribute it and/or |
@@ -516,6 +516,12 @@ static int omap_mcbsp_dai_set_dai_sysclk(struct snd_soc_dai *cpu_dai, | |||
516 | struct omap_mcbsp_reg_cfg *regs = &mcbsp_data->regs; | 516 | struct omap_mcbsp_reg_cfg *regs = &mcbsp_data->regs; |
517 | int err = 0; | 517 | int err = 0; |
518 | 518 | ||
519 | if (mcbsp_data->active) | ||
520 | if (freq == mcbsp_data->in_freq) | ||
521 | return 0; | ||
522 | else | ||
523 | return -EBUSY; | ||
524 | |||
519 | /* The McBSP signal muxing functions are only available on McBSP1 */ | 525 | /* The McBSP signal muxing functions are only available on McBSP1 */ |
520 | if (clk_id == OMAP_MCBSP_CLKR_SRC_CLKR || | 526 | if (clk_id == OMAP_MCBSP_CLKR_SRC_CLKR || |
521 | clk_id == OMAP_MCBSP_CLKR_SRC_CLKX || | 527 | clk_id == OMAP_MCBSP_CLKR_SRC_CLKX || |
@@ -780,6 +786,6 @@ static void __exit snd_omap_mcbsp_exit(void) | |||
780 | } | 786 | } |
781 | module_exit(snd_omap_mcbsp_exit); | 787 | module_exit(snd_omap_mcbsp_exit); |
782 | 788 | ||
783 | MODULE_AUTHOR("Jarkko Nikula <jhnikula@gmail.com>"); | 789 | MODULE_AUTHOR("Jarkko Nikula <jarkko.nikula@bitmer.com>"); |
784 | MODULE_DESCRIPTION("OMAP I2S SoC Interface"); | 790 | MODULE_DESCRIPTION("OMAP I2S SoC Interface"); |
785 | MODULE_LICENSE("GPL"); | 791 | MODULE_LICENSE("GPL"); |
diff --git a/sound/soc/omap/omap-mcbsp.h b/sound/soc/omap/omap-mcbsp.h index 9a7dedd6f5a..65cde9d3807 100644 --- a/sound/soc/omap/omap-mcbsp.h +++ b/sound/soc/omap/omap-mcbsp.h | |||
@@ -3,7 +3,7 @@ | |||
3 | * | 3 | * |
4 | * Copyright (C) 2008 Nokia Corporation | 4 | * Copyright (C) 2008 Nokia Corporation |
5 | * | 5 | * |
6 | * Contact: Jarkko Nikula <jhnikula@gmail.com> | 6 | * Contact: Jarkko Nikula <jarkko.nikula@bitmer.com> |
7 | * Peter Ujfalusi <peter.ujfalusi@ti.com> | 7 | * Peter Ujfalusi <peter.ujfalusi@ti.com> |
8 | * | 8 | * |
9 | * This program is free software; you can redistribute it and/or | 9 | * This program is free software; you can redistribute it and/or |
diff --git a/sound/soc/omap/omap-pcm.c b/sound/soc/omap/omap-pcm.c index e6a6b991d05..9b5c88ac35b 100644 --- a/sound/soc/omap/omap-pcm.c +++ b/sound/soc/omap/omap-pcm.c | |||
@@ -3,7 +3,7 @@ | |||
3 | * | 3 | * |
4 | * Copyright (C) 2008 Nokia Corporation | 4 | * Copyright (C) 2008 Nokia Corporation |
5 | * | 5 | * |
6 | * Contact: Jarkko Nikula <jhnikula@gmail.com> | 6 | * Contact: Jarkko Nikula <jarkko.nikula@bitmer.com> |
7 | * Peter Ujfalusi <peter.ujfalusi@ti.com> | 7 | * Peter Ujfalusi <peter.ujfalusi@ti.com> |
8 | * | 8 | * |
9 | * This program is free software; you can redistribute it and/or | 9 | * This program is free software; you can redistribute it and/or |
@@ -366,9 +366,11 @@ static void omap_pcm_free_dma_buffers(struct snd_pcm *pcm) | |||
366 | } | 366 | } |
367 | } | 367 | } |
368 | 368 | ||
369 | static int omap_pcm_new(struct snd_card *card, struct snd_soc_dai *dai, | 369 | static int omap_pcm_new(struct snd_soc_pcm_runtime *rtd) |
370 | struct snd_pcm *pcm) | ||
371 | { | 370 | { |
371 | struct snd_card *card = rtd->card->snd_card; | ||
372 | struct snd_soc_dai *dai = rtd->cpu_dai; | ||
373 | struct snd_pcm *pcm = rtd->pcm; | ||
372 | int ret = 0; | 374 | int ret = 0; |
373 | 375 | ||
374 | if (!card->dev->dma_mask) | 376 | if (!card->dev->dma_mask) |
@@ -434,6 +436,6 @@ static void __exit snd_omap_pcm_exit(void) | |||
434 | } | 436 | } |
435 | module_exit(snd_omap_pcm_exit); | 437 | module_exit(snd_omap_pcm_exit); |
436 | 438 | ||
437 | MODULE_AUTHOR("Jarkko Nikula <jhnikula@gmail.com>"); | 439 | MODULE_AUTHOR("Jarkko Nikula <jarkko.nikula@bitmer.com>"); |
438 | MODULE_DESCRIPTION("OMAP PCM DMA module"); | 440 | MODULE_DESCRIPTION("OMAP PCM DMA module"); |
439 | MODULE_LICENSE("GPL"); | 441 | MODULE_LICENSE("GPL"); |
diff --git a/sound/soc/omap/omap-pcm.h b/sound/soc/omap/omap-pcm.h index a0ed1dbb52d..f95fe306417 100644 --- a/sound/soc/omap/omap-pcm.h +++ b/sound/soc/omap/omap-pcm.h | |||
@@ -3,7 +3,7 @@ | |||
3 | * | 3 | * |
4 | * Copyright (C) 2008 Nokia Corporation | 4 | * Copyright (C) 2008 Nokia Corporation |
5 | * | 5 | * |
6 | * Contact: Jarkko Nikula <jhnikula@gmail.com> | 6 | * Contact: Jarkko Nikula <jarkko.nikula@bitmer.com> |
7 | * Peter Ujfalusi <peter.ujfalusi@ti.com> | 7 | * Peter Ujfalusi <peter.ujfalusi@ti.com> |
8 | * | 8 | * |
9 | * This program is free software; you can redistribute it and/or | 9 | * This program is free software; you can redistribute it and/or |
diff --git a/sound/soc/omap/omap4-hdmi-card.c b/sound/soc/omap/omap4-hdmi-card.c new file mode 100644 index 00000000000..9f32615b81f --- /dev/null +++ b/sound/soc/omap/omap4-hdmi-card.c | |||
@@ -0,0 +1,129 @@ | |||
1 | /* | ||
2 | * omap4-hdmi-card.c | ||
3 | * | ||
4 | * OMAP ALSA SoC machine driver for TI OMAP4 HDMI | ||
5 | * Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com/ | ||
6 | * Author: Ricardo Neri <ricardo.neri@ti.com> | ||
7 | * | ||
8 | * This program is free software; you can redistribute it and/or | ||
9 | * modify it under the terms of the GNU General Public License | ||
10 | * version 2 as published by the Free Software Foundation. | ||
11 | * | ||
12 | * This program is distributed in the hope that it will be useful, but | ||
13 | * WITHOUT ANY WARRANTY; without even the implied warranty of | ||
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
15 | * General Public License for more details. | ||
16 | * | ||
17 | * You should have received a copy of the GNU General Public License | ||
18 | * along with this program; if not, write to the Free Software | ||
19 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA | ||
20 | * 02110-1301 USA | ||
21 | * | ||
22 | */ | ||
23 | |||
24 | #include <sound/pcm.h> | ||
25 | #include <sound/soc.h> | ||
26 | #include <asm/mach-types.h> | ||
27 | #include <video/omapdss.h> | ||
28 | |||
29 | #define DRV_NAME "omap4-hdmi-audio" | ||
30 | |||
31 | static int omap4_hdmi_dai_hw_params(struct snd_pcm_substream *substream, | ||
32 | struct snd_pcm_hw_params *params) | ||
33 | { | ||
34 | int i; | ||
35 | struct omap_overlay_manager *mgr = NULL; | ||
36 | struct device *dev = substream->pcm->card->dev; | ||
37 | |||
38 | /* Find DSS HDMI device */ | ||
39 | for (i = 0; i < omap_dss_get_num_overlay_managers(); i++) { | ||
40 | mgr = omap_dss_get_overlay_manager(i); | ||
41 | if (mgr && mgr->device | ||
42 | && mgr->device->type == OMAP_DISPLAY_TYPE_HDMI) | ||
43 | break; | ||
44 | } | ||
45 | |||
46 | if (i == omap_dss_get_num_overlay_managers()) { | ||
47 | dev_err(dev, "HDMI display device not found!\n"); | ||
48 | return -ENODEV; | ||
49 | } | ||
50 | |||
51 | /* Make sure HDMI is power-on to avoid L3 interconnect errors */ | ||
52 | if (mgr->device->state != OMAP_DSS_DISPLAY_ACTIVE) { | ||
53 | dev_err(dev, "HDMI display is not active!\n"); | ||
54 | return -EIO; | ||
55 | } | ||
56 | |||
57 | return 0; | ||
58 | } | ||
59 | |||
60 | static struct snd_soc_ops omap4_hdmi_dai_ops = { | ||
61 | .hw_params = omap4_hdmi_dai_hw_params, | ||
62 | }; | ||
63 | |||
64 | static struct snd_soc_dai_link omap4_hdmi_dai = { | ||
65 | .name = "HDMI", | ||
66 | .stream_name = "HDMI", | ||
67 | .cpu_dai_name = "hdmi-audio-dai", | ||
68 | .platform_name = "omap-pcm-audio", | ||
69 | .codec_name = "omapdss_hdmi", | ||
70 | .codec_dai_name = "hdmi-audio-codec", | ||
71 | .ops = &omap4_hdmi_dai_ops, | ||
72 | }; | ||
73 | |||
74 | static struct snd_soc_card snd_soc_omap4_hdmi = { | ||
75 | .name = "OMAP4HDMI", | ||
76 | .dai_link = &omap4_hdmi_dai, | ||
77 | .num_links = 1, | ||
78 | }; | ||
79 | |||
80 | static __devinit int omap4_hdmi_probe(struct platform_device *pdev) | ||
81 | { | ||
82 | struct snd_soc_card *card = &snd_soc_omap4_hdmi; | ||
83 | int ret; | ||
84 | |||
85 | card->dev = &pdev->dev; | ||
86 | |||
87 | ret = snd_soc_register_card(card); | ||
88 | if (ret) { | ||
89 | dev_err(&pdev->dev, "snd_soc_register_card failed (%d)\n", ret); | ||
90 | card->dev = NULL; | ||
91 | return ret; | ||
92 | } | ||
93 | return 0; | ||
94 | } | ||
95 | |||
96 | static int __devexit omap4_hdmi_remove(struct platform_device *pdev) | ||
97 | { | ||
98 | struct snd_soc_card *card = platform_get_drvdata(pdev); | ||
99 | |||
100 | snd_soc_unregister_card(card); | ||
101 | card->dev = NULL; | ||
102 | return 0; | ||
103 | } | ||
104 | |||
105 | static struct platform_driver omap4_hdmi_driver = { | ||
106 | .driver = { | ||
107 | .name = "omap4-hdmi-audio", | ||
108 | .owner = THIS_MODULE, | ||
109 | }, | ||
110 | .probe = omap4_hdmi_probe, | ||
111 | .remove = __devexit_p(omap4_hdmi_remove), | ||
112 | }; | ||
113 | |||
114 | static int __init omap4_hdmi_init(void) | ||
115 | { | ||
116 | return platform_driver_register(&omap4_hdmi_driver); | ||
117 | } | ||
118 | module_init(omap4_hdmi_init); | ||
119 | |||
120 | static void __exit omap4_hdmi_exit(void) | ||
121 | { | ||
122 | platform_driver_unregister(&omap4_hdmi_driver); | ||
123 | } | ||
124 | module_exit(omap4_hdmi_exit); | ||
125 | |||
126 | MODULE_AUTHOR("Ricardo Neri <ricardo.neri@ti.com>"); | ||
127 | MODULE_DESCRIPTION("OMAP4 HDMI machine ASoC driver"); | ||
128 | MODULE_LICENSE("GPL"); | ||
129 | MODULE_ALIAS("platform:" DRV_NAME); | ||
diff --git a/sound/soc/omap/rx51.c b/sound/soc/omap/rx51.c index 0aae998b654..893300a53ba 100644 --- a/sound/soc/omap/rx51.c +++ b/sound/soc/omap/rx51.c | |||
@@ -5,7 +5,7 @@ | |||
5 | * | 5 | * |
6 | * Contact: Peter Ujfalusi <peter.ujfalusi@ti.com> | 6 | * Contact: Peter Ujfalusi <peter.ujfalusi@ti.com> |
7 | * Eduardo Valentin <eduardo.valentin@nokia.com> | 7 | * Eduardo Valentin <eduardo.valentin@nokia.com> |
8 | * Jarkko Nikula <jhnikula@gmail.com> | 8 | * Jarkko Nikula <jarkko.nikula@bitmer.com> |
9 | * | 9 | * |
10 | * This program is free software; you can redistribute it and/or | 10 | * This program is free software; you can redistribute it and/or |
11 | * modify it under the terms of the GNU General Public License | 11 | * modify it under the terms of the GNU General Public License |
diff --git a/sound/soc/omap/sdp3430.c b/sound/soc/omap/sdp3430.c index 3f72d17d1ef..9f6a758029d 100644 --- a/sound/soc/omap/sdp3430.c +++ b/sound/soc/omap/sdp3430.c | |||
@@ -36,7 +36,7 @@ | |||
36 | #include <plat/mcbsp.h> | 36 | #include <plat/mcbsp.h> |
37 | 37 | ||
38 | /* Register descriptions for twl4030 codec part */ | 38 | /* Register descriptions for twl4030 codec part */ |
39 | #include <linux/mfd/twl4030-codec.h> | 39 | #include <linux/mfd/twl4030-audio.h> |
40 | 40 | ||
41 | #include "omap-mcbsp.h" | 41 | #include "omap-mcbsp.h" |
42 | #include "omap-pcm.h" | 42 | #include "omap-pcm.h" |
diff --git a/sound/soc/omap/sdp4430.c b/sound/soc/omap/sdp4430.c index 189e0390063..b80efb02bfc 100644 --- a/sound/soc/omap/sdp4430.c +++ b/sound/soc/omap/sdp4430.c | |||
@@ -21,6 +21,8 @@ | |||
21 | 21 | ||
22 | #include <linux/clk.h> | 22 | #include <linux/clk.h> |
23 | #include <linux/platform_device.h> | 23 | #include <linux/platform_device.h> |
24 | #include <linux/mfd/twl6040.h> | ||
25 | |||
24 | #include <sound/core.h> | 26 | #include <sound/core.h> |
25 | #include <sound/pcm.h> | 27 | #include <sound/pcm.h> |
26 | #include <sound/soc.h> | 28 | #include <sound/soc.h> |
@@ -34,8 +36,6 @@ | |||
34 | #include "omap-pcm.h" | 36 | #include "omap-pcm.h" |
35 | #include "../codecs/twl6040.h" | 37 | #include "../codecs/twl6040.h" |
36 | 38 | ||
37 | static int twl6040_power_mode; | ||
38 | |||
39 | static int sdp4430_hw_params(struct snd_pcm_substream *substream, | 39 | static int sdp4430_hw_params(struct snd_pcm_substream *substream, |
40 | struct snd_pcm_hw_params *params) | 40 | struct snd_pcm_hw_params *params) |
41 | { | 41 | { |
@@ -44,13 +44,13 @@ static int sdp4430_hw_params(struct snd_pcm_substream *substream, | |||
44 | int clk_id, freq; | 44 | int clk_id, freq; |
45 | int ret; | 45 | int ret; |
46 | 46 | ||
47 | if (twl6040_power_mode) { | 47 | clk_id = twl6040_get_clk_id(rtd->codec); |
48 | clk_id = TWL6040_SYSCLK_SEL_HPPLL; | 48 | if (clk_id == TWL6040_SYSCLK_SEL_HPPLL) |
49 | freq = 38400000; | 49 | freq = 38400000; |
50 | } else { | 50 | else if (clk_id == TWL6040_SYSCLK_SEL_LPPLL) |
51 | clk_id = TWL6040_SYSCLK_SEL_LPPLL; | ||
52 | freq = 32768; | 51 | freq = 32768; |
53 | } | 52 | else |
53 | return -EINVAL; | ||
54 | 54 | ||
55 | /* set the codec mclk */ | 55 | /* set the codec mclk */ |
56 | ret = snd_soc_dai_set_sysclk(codec_dai, clk_id, freq, | 56 | ret = snd_soc_dai_set_sysclk(codec_dai, clk_id, freq, |
@@ -81,35 +81,6 @@ static struct snd_soc_jack_pin hs_jack_pins[] = { | |||
81 | }, | 81 | }, |
82 | }; | 82 | }; |
83 | 83 | ||
84 | static int sdp4430_get_power_mode(struct snd_kcontrol *kcontrol, | ||
85 | struct snd_ctl_elem_value *ucontrol) | ||
86 | { | ||
87 | ucontrol->value.integer.value[0] = twl6040_power_mode; | ||
88 | return 0; | ||
89 | } | ||
90 | |||
91 | static int sdp4430_set_power_mode(struct snd_kcontrol *kcontrol, | ||
92 | struct snd_ctl_elem_value *ucontrol) | ||
93 | { | ||
94 | if (twl6040_power_mode == ucontrol->value.integer.value[0]) | ||
95 | return 0; | ||
96 | |||
97 | twl6040_power_mode = ucontrol->value.integer.value[0]; | ||
98 | |||
99 | return 1; | ||
100 | } | ||
101 | |||
102 | static const char *power_texts[] = {"Low-Power", "High-Performance"}; | ||
103 | |||
104 | static const struct soc_enum sdp4430_enum[] = { | ||
105 | SOC_ENUM_SINGLE_EXT(2, power_texts), | ||
106 | }; | ||
107 | |||
108 | static const struct snd_kcontrol_new sdp4430_controls[] = { | ||
109 | SOC_ENUM_EXT("TWL6040 Power Mode", sdp4430_enum[0], | ||
110 | sdp4430_get_power_mode, sdp4430_set_power_mode), | ||
111 | }; | ||
112 | |||
113 | /* SDP4430 machine DAPM */ | 84 | /* SDP4430 machine DAPM */ |
114 | static const struct snd_soc_dapm_widget sdp4430_twl6040_dapm_widgets[] = { | 85 | static const struct snd_soc_dapm_widget sdp4430_twl6040_dapm_widgets[] = { |
115 | SND_SOC_DAPM_MIC("Ext Mic", NULL), | 86 | SND_SOC_DAPM_MIC("Ext Mic", NULL), |
@@ -152,12 +123,6 @@ static int sdp4430_twl6040_init(struct snd_soc_pcm_runtime *rtd) | |||
152 | struct snd_soc_dapm_context *dapm = &codec->dapm; | 123 | struct snd_soc_dapm_context *dapm = &codec->dapm; |
153 | int ret; | 124 | int ret; |
154 | 125 | ||
155 | /* Add SDP4430 specific controls */ | ||
156 | ret = snd_soc_add_controls(codec, sdp4430_controls, | ||
157 | ARRAY_SIZE(sdp4430_controls)); | ||
158 | if (ret) | ||
159 | return ret; | ||
160 | |||
161 | /* Add SDP4430 specific widgets */ | 126 | /* Add SDP4430 specific widgets */ |
162 | ret = snd_soc_dapm_new_controls(dapm, sdp4430_twl6040_dapm_widgets, | 127 | ret = snd_soc_dapm_new_controls(dapm, sdp4430_twl6040_dapm_widgets, |
163 | ARRAY_SIZE(sdp4430_twl6040_dapm_widgets)); | 128 | ARRAY_SIZE(sdp4430_twl6040_dapm_widgets)); |
@@ -237,9 +202,6 @@ static int __init sdp4430_soc_init(void) | |||
237 | if (ret) | 202 | if (ret) |
238 | goto err; | 203 | goto err; |
239 | 204 | ||
240 | /* Codec starts in HP mode */ | ||
241 | twl6040_power_mode = 1; | ||
242 | |||
243 | return 0; | 205 | return 0; |
244 | 206 | ||
245 | err: | 207 | err: |
diff --git a/sound/soc/omap/zoom2.c b/sound/soc/omap/zoom2.c index 01709940a43..9a2666ffc16 100644 --- a/sound/soc/omap/zoom2.c +++ b/sound/soc/omap/zoom2.c | |||
@@ -32,7 +32,7 @@ | |||
32 | #include <plat/mcbsp.h> | 32 | #include <plat/mcbsp.h> |
33 | 33 | ||
34 | /* Register descriptions for twl4030 codec part */ | 34 | /* Register descriptions for twl4030 codec part */ |
35 | #include <linux/mfd/twl4030-codec.h> | 35 | #include <linux/mfd/twl4030-audio.h> |
36 | 36 | ||
37 | #include "omap-mcbsp.h" | 37 | #include "omap-mcbsp.h" |
38 | #include "omap-pcm.h" | 38 | #include "omap-pcm.h" |