2 * soc-ac97.c -- ALSA SoC Audio Layer AC97 support
4 * Copyright 2005 Wolfson Microelectronics PLC.
5 * Copyright 2005 Openedhand Ltd.
6 * Copyright (C) 2010 Slimlogic Ltd.
7 * Copyright (C) 2010 Texas Instruments Inc.
9 * Author: Liam Girdwood <lrg@slimlogic.co.uk>
10 * with code, comments and ideas from :-
11 * Richard Purdie <richard@openedhand.com>
13 * This program is free software; you can redistribute it and/or modify it
14 * under the terms of the GNU General Public License as published by the
15 * Free Software Foundation; either version 2 of the License, or (at your
16 * option) any later version.
19 #include <linux/ctype.h>
20 #include <linux/delay.h>
21 #include <linux/export.h>
22 #include <linux/gpio.h>
23 #include <linux/init.h>
24 #include <linux/of_gpio.h>
26 #include <linux/pinctrl/consumer.h>
27 #include <linux/slab.h>
28 #include <sound/ac97_codec.h>
29 #include <sound/soc.h>
31 struct snd_ac97_reset_cfg
{
33 struct pinctrl_state
*pstate_reset
;
34 struct pinctrl_state
*pstate_warm_reset
;
35 struct pinctrl_state
*pstate_run
;
41 static struct snd_ac97_bus soc_ac97_bus
= {
42 .ops
= NULL
, /* Gets initialized in snd_soc_set_ac97_ops() */
45 static void soc_ac97_device_release(struct device
*dev
)
47 kfree(to_ac97_t(dev
));
51 * snd_soc_alloc_ac97_codec() - Allocate new a AC'97 device
52 * @codec: The CODEC for which to create the AC'97 device
54 * Allocated a new snd_ac97 device and intializes it, but does not yet register
55 * it. The caller is responsible to either call device_add(&ac97->dev) to
56 * register the device, or to call put_device(&ac97->dev) to free the device.
58 * Returns: A snd_ac97 device or a PTR_ERR in case of an error.
60 struct snd_ac97
*snd_soc_alloc_ac97_codec(struct snd_soc_codec
*codec
)
62 struct snd_ac97
*ac97
;
64 ac97
= kzalloc(sizeof(struct snd_ac97
), GFP_KERNEL
);
66 return ERR_PTR(-ENOMEM
);
68 ac97
->bus
= &soc_ac97_bus
;
71 ac97
->dev
.bus
= &ac97_bus_type
;
72 ac97
->dev
.parent
= codec
->component
.card
->dev
;
73 ac97
->dev
.release
= soc_ac97_device_release
;
75 dev_set_name(&ac97
->dev
, "%d-%d:%s",
76 codec
->component
.card
->snd_card
->number
, 0,
77 codec
->component
.name
);
79 device_initialize(&ac97
->dev
);
83 EXPORT_SYMBOL(snd_soc_alloc_ac97_codec
);
86 * snd_soc_new_ac97_codec - initailise AC97 device
89 * Initialises AC97 codec resources for use by ad-hoc devices only.
91 struct snd_ac97
*snd_soc_new_ac97_codec(struct snd_soc_codec
*codec
)
93 struct snd_ac97
*ac97
;
96 ac97
= snd_soc_alloc_ac97_codec(codec
);
100 ret
= device_add(&ac97
->dev
);
102 put_device(&ac97
->dev
);
108 EXPORT_SYMBOL_GPL(snd_soc_new_ac97_codec
);
111 * snd_soc_free_ac97_codec - free AC97 codec device
112 * @codec: audio codec
114 * Frees AC97 codec device resources.
116 void snd_soc_free_ac97_codec(struct snd_ac97
*ac97
)
118 device_del(&ac97
->dev
);
120 put_device(&ac97
->dev
);
122 EXPORT_SYMBOL_GPL(snd_soc_free_ac97_codec
);
124 static struct snd_ac97_reset_cfg snd_ac97_rst_cfg
;
126 static void snd_soc_ac97_warm_reset(struct snd_ac97
*ac97
)
128 struct pinctrl
*pctl
= snd_ac97_rst_cfg
.pctl
;
130 pinctrl_select_state(pctl
, snd_ac97_rst_cfg
.pstate_warm_reset
);
132 gpio_direction_output(snd_ac97_rst_cfg
.gpio_sync
, 1);
136 gpio_direction_output(snd_ac97_rst_cfg
.gpio_sync
, 0);
138 pinctrl_select_state(pctl
, snd_ac97_rst_cfg
.pstate_run
);
142 static void snd_soc_ac97_reset(struct snd_ac97
*ac97
)
144 struct pinctrl
*pctl
= snd_ac97_rst_cfg
.pctl
;
146 pinctrl_select_state(pctl
, snd_ac97_rst_cfg
.pstate_reset
);
148 gpio_direction_output(snd_ac97_rst_cfg
.gpio_sync
, 0);
149 gpio_direction_output(snd_ac97_rst_cfg
.gpio_sdata
, 0);
150 gpio_direction_output(snd_ac97_rst_cfg
.gpio_reset
, 0);
154 gpio_direction_output(snd_ac97_rst_cfg
.gpio_reset
, 1);
156 pinctrl_select_state(pctl
, snd_ac97_rst_cfg
.pstate_run
);
160 static int snd_soc_ac97_parse_pinctl(struct device
*dev
,
161 struct snd_ac97_reset_cfg
*cfg
)
164 struct pinctrl_state
*state
;
168 p
= devm_pinctrl_get(dev
);
170 dev_err(dev
, "Failed to get pinctrl\n");
175 state
= pinctrl_lookup_state(p
, "ac97-reset");
177 dev_err(dev
, "Can't find pinctrl state ac97-reset\n");
178 return PTR_ERR(state
);
180 cfg
->pstate_reset
= state
;
182 state
= pinctrl_lookup_state(p
, "ac97-warm-reset");
184 dev_err(dev
, "Can't find pinctrl state ac97-warm-reset\n");
185 return PTR_ERR(state
);
187 cfg
->pstate_warm_reset
= state
;
189 state
= pinctrl_lookup_state(p
, "ac97-running");
191 dev_err(dev
, "Can't find pinctrl state ac97-running\n");
192 return PTR_ERR(state
);
194 cfg
->pstate_run
= state
;
196 gpio
= of_get_named_gpio(dev
->of_node
, "ac97-gpios", 0);
198 dev_err(dev
, "Can't find ac97-sync gpio\n");
201 ret
= devm_gpio_request(dev
, gpio
, "AC97 link sync");
203 dev_err(dev
, "Failed requesting ac97-sync gpio\n");
206 cfg
->gpio_sync
= gpio
;
208 gpio
= of_get_named_gpio(dev
->of_node
, "ac97-gpios", 1);
210 dev_err(dev
, "Can't find ac97-sdata gpio %d\n", gpio
);
213 ret
= devm_gpio_request(dev
, gpio
, "AC97 link sdata");
215 dev_err(dev
, "Failed requesting ac97-sdata gpio\n");
218 cfg
->gpio_sdata
= gpio
;
220 gpio
= of_get_named_gpio(dev
->of_node
, "ac97-gpios", 2);
222 dev_err(dev
, "Can't find ac97-reset gpio\n");
225 ret
= devm_gpio_request(dev
, gpio
, "AC97 link reset");
227 dev_err(dev
, "Failed requesting ac97-reset gpio\n");
230 cfg
->gpio_reset
= gpio
;
235 struct snd_ac97_bus_ops
*soc_ac97_ops
;
236 EXPORT_SYMBOL_GPL(soc_ac97_ops
);
238 int snd_soc_set_ac97_ops(struct snd_ac97_bus_ops
*ops
)
240 if (ops
== soc_ac97_ops
)
243 if (soc_ac97_ops
&& ops
)
247 soc_ac97_bus
.ops
= ops
;
251 EXPORT_SYMBOL_GPL(snd_soc_set_ac97_ops
);
254 * snd_soc_set_ac97_ops_of_reset - Set ac97 ops with generic ac97 reset functions
256 * This function sets the reset and warm_reset properties of ops and parses
257 * the device node of pdev to get pinctrl states and gpio numbers to use.
259 int snd_soc_set_ac97_ops_of_reset(struct snd_ac97_bus_ops
*ops
,
260 struct platform_device
*pdev
)
262 struct device
*dev
= &pdev
->dev
;
263 struct snd_ac97_reset_cfg cfg
;
266 ret
= snd_soc_ac97_parse_pinctl(dev
, &cfg
);
270 ret
= snd_soc_set_ac97_ops(ops
);
274 ops
->warm_reset
= snd_soc_ac97_warm_reset
;
275 ops
->reset
= snd_soc_ac97_reset
;
277 snd_ac97_rst_cfg
= cfg
;
280 EXPORT_SYMBOL_GPL(snd_soc_set_ac97_ops_of_reset
);