ARM: dts: omap5: Add bus_dma_limit for L3 bus
[linux/fpc-iii.git] / sound / soc / codecs / wm1250-ev1.c
blobd6ffe99550fe3e46aa91ec0eace414dc6e40a7ce
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3 * Driver for the 1250-EV1 audio I/O module
5 * Copyright 2011 Wolfson Microelectronics plc
6 */
8 #include <linux/init.h>
9 #include <linux/module.h>
10 #include <linux/slab.h>
11 #include <linux/i2c.h>
12 #include <linux/gpio.h>
14 #include <sound/soc.h>
15 #include <sound/soc-dapm.h>
16 #include <sound/wm1250-ev1.h>
18 static const char *wm1250_gpio_names[WM1250_EV1_NUM_GPIOS] = {
19 "WM1250 CLK_ENA",
20 "WM1250 CLK_SEL0",
21 "WM1250 CLK_SEL1",
22 "WM1250 OSR",
23 "WM1250 MASTER",
26 struct wm1250_priv {
27 struct gpio gpios[WM1250_EV1_NUM_GPIOS];
30 static int wm1250_ev1_set_bias_level(struct snd_soc_component *component,
31 enum snd_soc_bias_level level)
33 struct wm1250_priv *wm1250 = dev_get_drvdata(component->dev);
34 int ena;
36 if (wm1250)
37 ena = wm1250->gpios[WM1250_EV1_GPIO_CLK_ENA].gpio;
38 else
39 ena = -1;
41 switch (level) {
42 case SND_SOC_BIAS_ON:
43 break;
45 case SND_SOC_BIAS_PREPARE:
46 break;
48 case SND_SOC_BIAS_STANDBY:
49 if (ena >= 0)
50 gpio_set_value_cansleep(ena, 1);
51 break;
53 case SND_SOC_BIAS_OFF:
54 if (ena >= 0)
55 gpio_set_value_cansleep(ena, 0);
56 break;
59 return 0;
62 static const struct snd_soc_dapm_widget wm1250_ev1_dapm_widgets[] = {
63 SND_SOC_DAPM_ADC("ADC", "wm1250-ev1 Capture", SND_SOC_NOPM, 0, 0),
64 SND_SOC_DAPM_DAC("DAC", "wm1250-ev1 Playback", SND_SOC_NOPM, 0, 0),
66 SND_SOC_DAPM_INPUT("WM1250 Input"),
67 SND_SOC_DAPM_OUTPUT("WM1250 Output"),
70 static const struct snd_soc_dapm_route wm1250_ev1_dapm_routes[] = {
71 { "ADC", NULL, "WM1250 Input" },
72 { "WM1250 Output", NULL, "DAC" },
75 static int wm1250_ev1_hw_params(struct snd_pcm_substream *substream,
76 struct snd_pcm_hw_params *params,
77 struct snd_soc_dai *dai)
79 struct wm1250_priv *wm1250 = snd_soc_component_get_drvdata(dai->component);
81 switch (params_rate(params)) {
82 case 8000:
83 gpio_set_value(wm1250->gpios[WM1250_EV1_GPIO_CLK_SEL0].gpio,
84 1);
85 gpio_set_value(wm1250->gpios[WM1250_EV1_GPIO_CLK_SEL1].gpio,
86 1);
87 break;
88 case 16000:
89 gpio_set_value(wm1250->gpios[WM1250_EV1_GPIO_CLK_SEL0].gpio,
90 0);
91 gpio_set_value(wm1250->gpios[WM1250_EV1_GPIO_CLK_SEL1].gpio,
92 1);
93 break;
94 case 32000:
95 gpio_set_value(wm1250->gpios[WM1250_EV1_GPIO_CLK_SEL0].gpio,
96 1);
97 gpio_set_value(wm1250->gpios[WM1250_EV1_GPIO_CLK_SEL1].gpio,
98 0);
99 break;
100 case 64000:
101 gpio_set_value(wm1250->gpios[WM1250_EV1_GPIO_CLK_SEL0].gpio,
103 gpio_set_value(wm1250->gpios[WM1250_EV1_GPIO_CLK_SEL1].gpio,
105 break;
106 default:
107 return -EINVAL;
110 return 0;
113 static const struct snd_soc_dai_ops wm1250_ev1_ops = {
114 .hw_params = wm1250_ev1_hw_params,
117 #define WM1250_EV1_RATES (SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_16000 |\
118 SNDRV_PCM_RATE_32000 | SNDRV_PCM_RATE_64000)
120 static struct snd_soc_dai_driver wm1250_ev1_dai = {
121 .name = "wm1250-ev1",
122 .playback = {
123 .stream_name = "Playback",
124 .channels_min = 1,
125 .channels_max = 2,
126 .rates = WM1250_EV1_RATES,
127 .formats = SNDRV_PCM_FMTBIT_S16_LE,
129 .capture = {
130 .stream_name = "Capture",
131 .channels_min = 1,
132 .channels_max = 2,
133 .rates = WM1250_EV1_RATES,
134 .formats = SNDRV_PCM_FMTBIT_S16_LE,
136 .ops = &wm1250_ev1_ops,
139 static const struct snd_soc_component_driver soc_component_dev_wm1250_ev1 = {
140 .dapm_widgets = wm1250_ev1_dapm_widgets,
141 .num_dapm_widgets = ARRAY_SIZE(wm1250_ev1_dapm_widgets),
142 .dapm_routes = wm1250_ev1_dapm_routes,
143 .num_dapm_routes = ARRAY_SIZE(wm1250_ev1_dapm_routes),
144 .set_bias_level = wm1250_ev1_set_bias_level,
145 .use_pmdown_time = 1,
146 .endianness = 1,
147 .non_legacy_dai_naming = 1,
150 static int wm1250_ev1_pdata(struct i2c_client *i2c)
152 struct wm1250_ev1_pdata *pdata = dev_get_platdata(&i2c->dev);
153 struct wm1250_priv *wm1250;
154 int i, ret;
156 if (!pdata)
157 return 0;
159 wm1250 = devm_kzalloc(&i2c->dev, sizeof(*wm1250), GFP_KERNEL);
160 if (!wm1250) {
161 ret = -ENOMEM;
162 goto err;
165 for (i = 0; i < ARRAY_SIZE(wm1250->gpios); i++) {
166 wm1250->gpios[i].gpio = pdata->gpios[i];
167 wm1250->gpios[i].label = wm1250_gpio_names[i];
168 wm1250->gpios[i].flags = GPIOF_OUT_INIT_LOW;
170 wm1250->gpios[WM1250_EV1_GPIO_CLK_SEL0].flags = GPIOF_OUT_INIT_HIGH;
171 wm1250->gpios[WM1250_EV1_GPIO_CLK_SEL1].flags = GPIOF_OUT_INIT_HIGH;
173 ret = gpio_request_array(wm1250->gpios, ARRAY_SIZE(wm1250->gpios));
174 if (ret != 0) {
175 dev_err(&i2c->dev, "Failed to get GPIOs: %d\n", ret);
176 goto err;
179 dev_set_drvdata(&i2c->dev, wm1250);
181 return ret;
183 err:
184 return ret;
187 static void wm1250_ev1_free(struct i2c_client *i2c)
189 struct wm1250_priv *wm1250 = dev_get_drvdata(&i2c->dev);
191 if (wm1250)
192 gpio_free_array(wm1250->gpios, ARRAY_SIZE(wm1250->gpios));
195 static int wm1250_ev1_probe(struct i2c_client *i2c,
196 const struct i2c_device_id *i2c_id)
198 int id, board, rev, ret;
200 dev_set_drvdata(&i2c->dev, NULL);
202 board = i2c_smbus_read_byte_data(i2c, 0);
203 if (board < 0) {
204 dev_err(&i2c->dev, "Failed to read ID: %d\n", board);
205 return board;
208 id = (board & 0xfe) >> 2;
209 rev = board & 0x3;
211 if (id != 1) {
212 dev_err(&i2c->dev, "Unknown board ID %d\n", id);
213 return -ENODEV;
216 dev_info(&i2c->dev, "revision %d\n", rev + 1);
218 ret = wm1250_ev1_pdata(i2c);
219 if (ret != 0)
220 return ret;
222 ret = devm_snd_soc_register_component(&i2c->dev, &soc_component_dev_wm1250_ev1,
223 &wm1250_ev1_dai, 1);
224 if (ret != 0) {
225 dev_err(&i2c->dev, "Failed to register CODEC: %d\n", ret);
226 wm1250_ev1_free(i2c);
227 return ret;
230 return 0;
233 static int wm1250_ev1_remove(struct i2c_client *i2c)
235 wm1250_ev1_free(i2c);
237 return 0;
240 static const struct i2c_device_id wm1250_ev1_i2c_id[] = {
241 { "wm1250-ev1", 0 },
244 MODULE_DEVICE_TABLE(i2c, wm1250_ev1_i2c_id);
246 static struct i2c_driver wm1250_ev1_i2c_driver = {
247 .driver = {
248 .name = "wm1250-ev1",
250 .probe = wm1250_ev1_probe,
251 .remove = wm1250_ev1_remove,
252 .id_table = wm1250_ev1_i2c_id,
255 module_i2c_driver(wm1250_ev1_i2c_driver);
257 MODULE_AUTHOR("Mark Brown <broonie@opensource.wolfsonmicro.com>");
258 MODULE_DESCRIPTION("WM1250-EV1 audio I/O module driver");
259 MODULE_LICENSE("GPL");