diff options
Diffstat (limited to 'sound/soc/jz4740/qi_lb60.c')
-rw-r--r-- | sound/soc/jz4740/qi_lb60.c | 73 |
1 files changed, 26 insertions, 47 deletions
diff --git a/sound/soc/jz4740/qi_lb60.c b/sound/soc/jz4740/qi_lb60.c index f15f4918f15f..c5fc339f68f1 100644 --- a/sound/soc/jz4740/qi_lb60.c +++ b/sound/soc/jz4740/qi_lb60.c | |||
@@ -19,25 +19,15 @@ | |||
19 | #include <sound/core.h> | 19 | #include <sound/core.h> |
20 | #include <sound/pcm.h> | 20 | #include <sound/pcm.h> |
21 | #include <sound/soc.h> | 21 | #include <sound/soc.h> |
22 | #include <sound/soc-dapm.h> | ||
23 | #include <linux/gpio.h> | 22 | #include <linux/gpio.h> |
24 | 23 | ||
25 | #include "../codecs/jz4740.h" | ||
26 | #include "jz4740-pcm.h" | ||
27 | #include "jz4740-i2s.h" | ||
28 | |||
29 | |||
30 | #define QI_LB60_SND_GPIO JZ_GPIO_PORTB(29) | 24 | #define QI_LB60_SND_GPIO JZ_GPIO_PORTB(29) |
31 | #define QI_LB60_AMP_GPIO JZ_GPIO_PORTD(4) | 25 | #define QI_LB60_AMP_GPIO JZ_GPIO_PORTD(4) |
32 | 26 | ||
33 | static int qi_lb60_spk_event(struct snd_soc_dapm_widget *widget, | 27 | static int qi_lb60_spk_event(struct snd_soc_dapm_widget *widget, |
34 | struct snd_kcontrol *ctrl, int event) | 28 | struct snd_kcontrol *ctrl, int event) |
35 | { | 29 | { |
36 | int on = 0; | 30 | int on = !SND_SOC_DAPM_EVENT_OFF(event); |
37 | if (event & SND_SOC_DAPM_POST_PMU) | ||
38 | on = 1; | ||
39 | else if (event & SND_SOC_DAPM_PRE_PMD) | ||
40 | on = 0; | ||
41 | 31 | ||
42 | gpio_set_value(QI_LB60_SND_GPIO, on); | 32 | gpio_set_value(QI_LB60_SND_GPIO, on); |
43 | gpio_set_value(QI_LB60_AMP_GPIO, on); | 33 | gpio_set_value(QI_LB60_AMP_GPIO, on); |
@@ -60,13 +50,15 @@ static const struct snd_soc_dapm_route qi_lb60_routes[] = { | |||
60 | SND_SOC_DAIFMT_NB_NF | \ | 50 | SND_SOC_DAIFMT_NB_NF | \ |
61 | SND_SOC_DAIFMT_CBM_CFM) | 51 | SND_SOC_DAIFMT_CBM_CFM) |
62 | 52 | ||
63 | static int qi_lb60_codec_init(struct snd_soc_codec *codec) | 53 | static int qi_lb60_codec_init(struct snd_soc_pcm_runtime *rtd) |
64 | { | 54 | { |
55 | struct snd_soc_codec *codec = rtd->codec; | ||
56 | struct snd_soc_dai *cpu_dai = rtd->cpu_dai; | ||
57 | struct snd_soc_dapm_context *dapm = &codec->dapm; | ||
65 | int ret; | 58 | int ret; |
66 | struct snd_soc_dai *cpu_dai = codec->socdev->card->dai_link->cpu_dai; | ||
67 | 59 | ||
68 | snd_soc_dapm_nc_pin(codec, "LIN"); | 60 | snd_soc_dapm_nc_pin(dapm, "LIN"); |
69 | snd_soc_dapm_nc_pin(codec, "RIN"); | 61 | snd_soc_dapm_nc_pin(dapm, "RIN"); |
70 | 62 | ||
71 | ret = snd_soc_dai_set_fmt(cpu_dai, QI_LB60_DAIFMT); | 63 | ret = snd_soc_dai_set_fmt(cpu_dai, QI_LB60_DAIFMT); |
72 | if (ret < 0) { | 64 | if (ret < 0) { |
@@ -74,18 +66,16 @@ static int qi_lb60_codec_init(struct snd_soc_codec *codec) | |||
74 | return ret; | 66 | return ret; |
75 | } | 67 | } |
76 | 68 | ||
77 | snd_soc_dapm_new_controls(codec, qi_lb60_widgets, ARRAY_SIZE(qi_lb60_widgets)); | ||
78 | snd_soc_dapm_add_routes(codec, qi_lb60_routes, ARRAY_SIZE(qi_lb60_routes)); | ||
79 | snd_soc_dapm_sync(codec); | ||
80 | |||
81 | return 0; | 69 | return 0; |
82 | } | 70 | } |
83 | 71 | ||
84 | static struct snd_soc_dai_link qi_lb60_dai = { | 72 | static struct snd_soc_dai_link qi_lb60_dai = { |
85 | .name = "jz4740", | 73 | .name = "jz4740", |
86 | .stream_name = "jz4740", | 74 | .stream_name = "jz4740", |
87 | .cpu_dai = &jz4740_i2s_dai, | 75 | .cpu_dai_name = "jz4740-i2s", |
88 | .codec_dai = &jz4740_codec_dai, | 76 | .platform_name = "jz4740-pcm-audio", |
77 | .codec_dai_name = "jz4740-hifi", | ||
78 | .codec_name = "jz4740-codec", | ||
89 | .init = qi_lb60_codec_init, | 79 | .init = qi_lb60_codec_init, |
90 | }; | 80 | }; |
91 | 81 | ||
@@ -93,16 +83,20 @@ static struct snd_soc_card qi_lb60 = { | |||
93 | .name = "QI LB60", | 83 | .name = "QI LB60", |
94 | .dai_link = &qi_lb60_dai, | 84 | .dai_link = &qi_lb60_dai, |
95 | .num_links = 1, | 85 | .num_links = 1, |
96 | .platform = &jz4740_soc_platform, | ||
97 | }; | ||
98 | 86 | ||
99 | static struct snd_soc_device qi_lb60_snd_devdata = { | 87 | .dapm_widgets = qi_lb60_widgets, |
100 | .card = &qi_lb60, | 88 | .num_dapm_widgets = ARRAY_SIZE(qi_lb60_widgets), |
101 | .codec_dev = &soc_codec_dev_jz4740_codec, | 89 | .dapm_routes = qi_lb60_routes, |
90 | .num_dapm_routes = ARRAY_SIZE(qi_lb60_routes), | ||
102 | }; | 91 | }; |
103 | 92 | ||
104 | static struct platform_device *qi_lb60_snd_device; | 93 | static struct platform_device *qi_lb60_snd_device; |
105 | 94 | ||
95 | static const struct gpio qi_lb60_gpios[] = { | ||
96 | { QI_LB60_SND_GPIO, GPIOF_OUT_INIT_LOW, "SND" }, | ||
97 | { QI_LB60_AMP_GPIO, GPIOF_OUT_INIT_LOW, "AMP" }, | ||
98 | }; | ||
99 | |||
106 | static int __init qi_lb60_init(void) | 100 | static int __init qi_lb60_init(void) |
107 | { | 101 | { |
108 | int ret; | 102 | int ret; |
@@ -112,25 +106,13 @@ static int __init qi_lb60_init(void) | |||
112 | if (!qi_lb60_snd_device) | 106 | if (!qi_lb60_snd_device) |
113 | return -ENOMEM; | 107 | return -ENOMEM; |
114 | 108 | ||
115 | ret = gpio_request(QI_LB60_SND_GPIO, "SND"); | 109 | ret = gpio_request_array(qi_lb60_gpios, ARRAY_SIZE(qi_lb60_gpios)); |
116 | if (ret) { | 110 | if (ret) { |
117 | pr_err("qi_lb60 snd: Failed to request SND GPIO(%d): %d\n", | 111 | pr_err("qi_lb60 snd: Failed to request gpios: %d\n", ret); |
118 | QI_LB60_SND_GPIO, ret); | ||
119 | goto err_device_put; | 112 | goto err_device_put; |
120 | } | 113 | } |
121 | 114 | ||
122 | ret = gpio_request(QI_LB60_AMP_GPIO, "AMP"); | 115 | platform_set_drvdata(qi_lb60_snd_device, &qi_lb60); |
123 | if (ret) { | ||
124 | pr_err("qi_lb60 snd: Failed to request AMP GPIO(%d): %d\n", | ||
125 | QI_LB60_AMP_GPIO, ret); | ||
126 | goto err_gpio_free_snd; | ||
127 | } | ||
128 | |||
129 | gpio_direction_output(QI_LB60_SND_GPIO, 0); | ||
130 | gpio_direction_output(QI_LB60_AMP_GPIO, 0); | ||
131 | |||
132 | platform_set_drvdata(qi_lb60_snd_device, &qi_lb60_snd_devdata); | ||
133 | qi_lb60_snd_devdata.dev = &qi_lb60_snd_device->dev; | ||
134 | 116 | ||
135 | ret = platform_device_add(qi_lb60_snd_device); | 117 | ret = platform_device_add(qi_lb60_snd_device); |
136 | if (ret) { | 118 | if (ret) { |
@@ -142,10 +124,8 @@ static int __init qi_lb60_init(void) | |||
142 | 124 | ||
143 | err_unset_pdata: | 125 | err_unset_pdata: |
144 | platform_set_drvdata(qi_lb60_snd_device, NULL); | 126 | platform_set_drvdata(qi_lb60_snd_device, NULL); |
145 | /*err_gpio_free_amp:*/ | 127 | /*err_gpio_free_array:*/ |
146 | gpio_free(QI_LB60_AMP_GPIO); | 128 | gpio_free_array(qi_lb60_gpios, ARRAY_SIZE(qi_lb60_gpios)); |
147 | err_gpio_free_snd: | ||
148 | gpio_free(QI_LB60_SND_GPIO); | ||
149 | err_device_put: | 129 | err_device_put: |
150 | platform_device_put(qi_lb60_snd_device); | 130 | platform_device_put(qi_lb60_snd_device); |
151 | 131 | ||
@@ -155,9 +135,8 @@ module_init(qi_lb60_init); | |||
155 | 135 | ||
156 | static void __exit qi_lb60_exit(void) | 136 | static void __exit qi_lb60_exit(void) |
157 | { | 137 | { |
158 | gpio_free(QI_LB60_AMP_GPIO); | ||
159 | gpio_free(QI_LB60_SND_GPIO); | ||
160 | platform_device_unregister(qi_lb60_snd_device); | 138 | platform_device_unregister(qi_lb60_snd_device); |
139 | gpio_free_array(qi_lb60_gpios, ARRAY_SIZE(qi_lb60_gpios)); | ||
161 | } | 140 | } |
162 | module_exit(qi_lb60_exit); | 141 | module_exit(qi_lb60_exit); |
163 | 142 | ||