4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
9 #include <linux/module.h>
10 #include <linux/bitops.h>
11 #include <linux/clk.h>
12 #include <linux/device.h>
13 #include <linux/idr.h>
14 #include <linux/list.h>
15 #include <linux/mutex.h>
18 #include <linux/pm_runtime.h>
19 #include <linux/slab.h>
20 #include <linux/sysfs.h>
21 #include <sound/ac97/codec.h>
22 #include <sound/ac97/controller.h>
23 #include <sound/ac97/regs.h>
25 #include "ac97_core.h"
28 * Protects ac97_controllers and each ac97_controller structure.
30 static DEFINE_MUTEX(ac97_controllers_mutex);
31 static DEFINE_IDR(ac97_adapter_idr);
32 static LIST_HEAD(ac97_controllers);
34 static struct bus_type ac97_bus_type;
36 static inline struct ac97_controller*
37 to_ac97_controller(struct device *ac97_adapter)
39 return container_of(ac97_adapter, struct ac97_controller, adap);
42 static int ac97_unbound_ctrl_write(struct ac97_controller *adrv, int slot,
43 unsigned short reg, unsigned short val)
48 static int ac97_unbound_ctrl_read(struct ac97_controller *adrv, int slot,
54 static const struct ac97_controller_ops ac97_unbound_ctrl_ops = {
55 .write = ac97_unbound_ctrl_write,
56 .read = ac97_unbound_ctrl_read,
59 static struct ac97_controller ac97_unbound_ctrl = {
60 .ops = &ac97_unbound_ctrl_ops,
63 static struct ac97_codec_device *
64 ac97_codec_find(struct ac97_controller *ac97_ctrl, unsigned int codec_num)
66 if (codec_num >= AC97_BUS_MAX_CODECS)
67 return ERR_PTR(-EINVAL);
69 return ac97_ctrl->codecs[codec_num];
72 static struct device_node *
73 ac97_of_get_child_device(struct ac97_controller *ac97_ctrl, int idx,
74 unsigned int vendor_id)
76 struct device_node *node;
78 char compat[] = "ac97,0000,0000";
80 snprintf(compat, sizeof(compat), "ac97,%04x,%04x",
81 vendor_id >> 16, vendor_id & 0xffff);
83 for_each_child_of_node(ac97_ctrl->parent->of_node, node) {
84 if ((idx != of_property_read_u32(node, "reg", ®)) ||
85 !of_device_is_compatible(node, compat))
87 return of_node_get(node);
93 static void ac97_codec_release(struct device *dev)
95 struct ac97_codec_device *adev;
96 struct ac97_controller *ac97_ctrl;
98 adev = to_ac97_device(dev);
99 ac97_ctrl = adev->ac97_ctrl;
100 ac97_ctrl->codecs[adev->num] = NULL;
101 of_node_put(dev->of_node);
105 static int ac97_codec_add(struct ac97_controller *ac97_ctrl, int idx,
106 unsigned int vendor_id)
108 struct ac97_codec_device *codec;
111 codec = kzalloc(sizeof(*codec), GFP_KERNEL);
114 ac97_ctrl->codecs[idx] = codec;
115 codec->vendor_id = vendor_id;
116 codec->dev.release = ac97_codec_release;
117 codec->dev.bus = &ac97_bus_type;
118 codec->dev.parent = &ac97_ctrl->adap;
120 codec->ac97_ctrl = ac97_ctrl;
122 device_initialize(&codec->dev);
123 dev_set_name(&codec->dev, "%s:%u", dev_name(ac97_ctrl->parent), idx);
124 codec->dev.of_node = ac97_of_get_child_device(ac97_ctrl, idx,
127 ret = device_add(&codec->dev);
133 of_node_put(codec->dev.of_node);
134 put_device(&codec->dev);
136 ac97_ctrl->codecs[idx] = NULL;
141 unsigned int snd_ac97_bus_scan_one(struct ac97_controller *adrv,
142 unsigned int codec_num)
144 unsigned short vid1, vid2;
147 ret = adrv->ops->read(adrv, codec_num, AC97_VENDOR_ID1);
148 vid1 = (ret & 0xffff);
152 ret = adrv->ops->read(adrv, codec_num, AC97_VENDOR_ID2);
153 vid2 = (ret & 0xffff);
157 dev_dbg(&adrv->adap, "%s(codec_num=%u): vendor_id=0x%08x\n",
158 __func__, codec_num, AC97_ID(vid1, vid2));
159 return AC97_ID(vid1, vid2);
162 static int ac97_bus_scan(struct ac97_controller *ac97_ctrl)
165 unsigned int vendor_id;
167 for (i = 0; i < AC97_BUS_MAX_CODECS; i++) {
168 if (ac97_codec_find(ac97_ctrl, i))
170 if (!(ac97_ctrl->slots_available & BIT(i)))
172 vendor_id = snd_ac97_bus_scan_one(ac97_ctrl, i);
176 ret = ac97_codec_add(ac97_ctrl, i, vendor_id);
183 static int ac97_bus_reset(struct ac97_controller *ac97_ctrl)
185 ac97_ctrl->ops->reset(ac97_ctrl);
191 * snd_ac97_codec_driver_register - register an AC97 codec driver
192 * @dev: AC97 driver codec to register
194 * Register an AC97 codec driver to the ac97 bus driver, aka. the AC97 digital
197 * Returns 0 on success or error code
199 int snd_ac97_codec_driver_register(struct ac97_codec_driver *drv)
201 drv->driver.bus = &ac97_bus_type;
202 return driver_register(&drv->driver);
204 EXPORT_SYMBOL_GPL(snd_ac97_codec_driver_register);
207 * snd_ac97_codec_driver_unregister - unregister an AC97 codec driver
208 * @dev: AC97 codec driver to unregister
210 * Unregister a previously registered ac97 codec driver.
212 void snd_ac97_codec_driver_unregister(struct ac97_codec_driver *drv)
214 driver_unregister(&drv->driver);
216 EXPORT_SYMBOL_GPL(snd_ac97_codec_driver_unregister);
219 * snd_ac97_codec_get_platdata - get platform_data
220 * @adev: the ac97 codec device
222 * For legacy platforms, in order to have platform_data in codec drivers
223 * available, while ac97 device are auto-created upon probe, this retrieves the
224 * platdata which was setup on ac97 controller registration.
226 * Returns the platform data pointer
228 void *snd_ac97_codec_get_platdata(const struct ac97_codec_device *adev)
230 struct ac97_controller *ac97_ctrl = adev->ac97_ctrl;
232 return ac97_ctrl->codecs_pdata[adev->num];
234 EXPORT_SYMBOL_GPL(snd_ac97_codec_get_platdata);
236 static void ac97_ctrl_codecs_unregister(struct ac97_controller *ac97_ctrl)
240 for (i = 0; i < AC97_BUS_MAX_CODECS; i++)
241 if (ac97_ctrl->codecs[i]) {
242 ac97_ctrl->codecs[i]->ac97_ctrl = &ac97_unbound_ctrl;
243 device_unregister(&ac97_ctrl->codecs[i]->dev);
247 static ssize_t cold_reset_store(struct device *dev,
248 struct device_attribute *attr, const char *buf,
251 struct ac97_controller *ac97_ctrl;
253 mutex_lock(&ac97_controllers_mutex);
254 ac97_ctrl = to_ac97_controller(dev);
255 ac97_ctrl->ops->reset(ac97_ctrl);
256 mutex_unlock(&ac97_controllers_mutex);
259 static DEVICE_ATTR_WO(cold_reset);
261 static ssize_t warm_reset_store(struct device *dev,
262 struct device_attribute *attr, const char *buf,
265 struct ac97_controller *ac97_ctrl;
270 mutex_lock(&ac97_controllers_mutex);
271 ac97_ctrl = to_ac97_controller(dev);
272 ac97_ctrl->ops->warm_reset(ac97_ctrl);
273 mutex_unlock(&ac97_controllers_mutex);
276 static DEVICE_ATTR_WO(warm_reset);
278 static struct attribute *ac97_controller_device_attrs[] = {
279 &dev_attr_cold_reset.attr,
280 &dev_attr_warm_reset.attr,
284 static struct attribute_group ac97_adapter_attr_group = {
285 .name = "ac97_operations",
286 .attrs = ac97_controller_device_attrs,
289 static const struct attribute_group *ac97_adapter_groups[] = {
290 &ac97_adapter_attr_group,
294 static void ac97_del_adapter(struct ac97_controller *ac97_ctrl)
296 mutex_lock(&ac97_controllers_mutex);
297 ac97_ctrl_codecs_unregister(ac97_ctrl);
298 list_del(&ac97_ctrl->controllers);
299 mutex_unlock(&ac97_controllers_mutex);
301 device_unregister(&ac97_ctrl->adap);
304 static void ac97_adapter_release(struct device *dev)
306 struct ac97_controller *ac97_ctrl;
308 ac97_ctrl = to_ac97_controller(dev);
309 idr_remove(&ac97_adapter_idr, ac97_ctrl->nr);
310 dev_dbg(&ac97_ctrl->adap, "adapter unregistered by %s\n",
311 dev_name(ac97_ctrl->parent));
314 static const struct device_type ac97_adapter_type = {
315 .groups = ac97_adapter_groups,
316 .release = ac97_adapter_release,
319 static int ac97_add_adapter(struct ac97_controller *ac97_ctrl)
323 mutex_lock(&ac97_controllers_mutex);
324 ret = idr_alloc(&ac97_adapter_idr, ac97_ctrl, 0, 0, GFP_KERNEL);
327 dev_set_name(&ac97_ctrl->adap, "ac97-%d", ret);
328 ac97_ctrl->adap.type = &ac97_adapter_type;
329 ac97_ctrl->adap.parent = ac97_ctrl->parent;
330 ret = device_register(&ac97_ctrl->adap);
332 put_device(&ac97_ctrl->adap);
335 list_add(&ac97_ctrl->controllers, &ac97_controllers);
336 mutex_unlock(&ac97_controllers_mutex);
339 dev_dbg(&ac97_ctrl->adap, "adapter registered by %s\n",
340 dev_name(ac97_ctrl->parent));
345 * snd_ac97_controller_register - register an ac97 controller
346 * @ops: the ac97 bus operations
347 * @dev: the device providing the ac97 DC function
348 * @slots_available: mask of the ac97 codecs that can be scanned and probed
349 * bit0 => codec 0, bit1 => codec 1 ... bit 3 => codec 3
351 * Register a digital controller which can control up to 4 ac97 codecs. This is
352 * the controller side of the AC97 AC-link, while the slave side are the codecs.
354 * Returns a valid controller upon success, negative pointer value upon error
356 struct ac97_controller *snd_ac97_controller_register(
357 const struct ac97_controller_ops *ops, struct device *dev,
358 unsigned short slots_available, void **codecs_pdata)
360 struct ac97_controller *ac97_ctrl;
363 ac97_ctrl = kzalloc(sizeof(*ac97_ctrl), GFP_KERNEL);
365 return ERR_PTR(-ENOMEM);
367 for (i = 0; i < AC97_BUS_MAX_CODECS && codecs_pdata; i++)
368 ac97_ctrl->codecs_pdata[i] = codecs_pdata[i];
370 ac97_ctrl->ops = ops;
371 ac97_ctrl->slots_available = slots_available;
372 ac97_ctrl->parent = dev;
373 ret = ac97_add_adapter(ac97_ctrl);
377 ac97_bus_reset(ac97_ctrl);
378 ac97_bus_scan(ac97_ctrl);
385 EXPORT_SYMBOL_GPL(snd_ac97_controller_register);
388 * snd_ac97_controller_unregister - unregister an ac97 controller
389 * @ac97_ctrl: the device previously provided to ac97_controller_register()
392 void snd_ac97_controller_unregister(struct ac97_controller *ac97_ctrl)
394 ac97_del_adapter(ac97_ctrl);
396 EXPORT_SYMBOL_GPL(snd_ac97_controller_unregister);
399 static int ac97_pm_runtime_suspend(struct device *dev)
401 struct ac97_codec_device *codec = to_ac97_device(dev);
402 int ret = pm_generic_runtime_suspend(dev);
404 if (ret == 0 && dev->driver) {
405 if (pm_runtime_is_irq_safe(dev))
406 clk_disable(codec->clk);
408 clk_disable_unprepare(codec->clk);
414 static int ac97_pm_runtime_resume(struct device *dev)
416 struct ac97_codec_device *codec = to_ac97_device(dev);
420 if (pm_runtime_is_irq_safe(dev))
421 ret = clk_enable(codec->clk);
423 ret = clk_prepare_enable(codec->clk);
428 return pm_generic_runtime_resume(dev);
430 #endif /* CONFIG_PM */
432 static const struct dev_pm_ops ac97_pm = {
433 .suspend = pm_generic_suspend,
434 .resume = pm_generic_resume,
435 .freeze = pm_generic_freeze,
436 .thaw = pm_generic_thaw,
437 .poweroff = pm_generic_poweroff,
438 .restore = pm_generic_restore,
440 ac97_pm_runtime_suspend,
441 ac97_pm_runtime_resume,
445 static int ac97_get_enable_clk(struct ac97_codec_device *adev)
449 adev->clk = clk_get(&adev->dev, "ac97_clk");
450 if (IS_ERR(adev->clk))
451 return PTR_ERR(adev->clk);
453 ret = clk_prepare_enable(adev->clk);
460 static void ac97_put_disable_clk(struct ac97_codec_device *adev)
462 clk_disable_unprepare(adev->clk);
466 static ssize_t vendor_id_show(struct device *dev,
467 struct device_attribute *attr, char *buf)
469 struct ac97_codec_device *codec = to_ac97_device(dev);
471 return sprintf(buf, "%08x", codec->vendor_id);
473 DEVICE_ATTR_RO(vendor_id);
475 static struct attribute *ac97_dev_attrs[] = {
476 &dev_attr_vendor_id.attr,
479 ATTRIBUTE_GROUPS(ac97_dev);
481 static int ac97_bus_match(struct device *dev, struct device_driver *drv)
483 struct ac97_codec_device *adev = to_ac97_device(dev);
484 struct ac97_codec_driver *adrv = to_ac97_driver(drv);
485 const struct ac97_id *id = adrv->id_table;
488 if (adev->vendor_id == 0x0 || adev->vendor_id == 0xffffffff)
492 if (ac97_ids_match(id[i].id, adev->vendor_id, id[i].mask))
494 } while (id[i++].id);
499 static int ac97_bus_probe(struct device *dev)
501 struct ac97_codec_device *adev = to_ac97_device(dev);
502 struct ac97_codec_driver *adrv = to_ac97_driver(dev->driver);
505 ret = ac97_get_enable_clk(adev);
509 pm_runtime_get_noresume(dev);
510 pm_runtime_set_active(dev);
511 pm_runtime_enable(dev);
513 ret = adrv->probe(adev);
517 pm_runtime_disable(dev);
518 pm_runtime_set_suspended(dev);
519 pm_runtime_put_noidle(dev);
520 ac97_put_disable_clk(adev);
525 static int ac97_bus_remove(struct device *dev)
527 struct ac97_codec_device *adev = to_ac97_device(dev);
528 struct ac97_codec_driver *adrv = to_ac97_driver(dev->driver);
531 ret = pm_runtime_get_sync(dev);
535 ret = adrv->remove(adev);
536 pm_runtime_put_noidle(dev);
538 ac97_put_disable_clk(adev);
540 pm_runtime_disable(dev);
545 static struct bus_type ac97_bus_type = {
547 .dev_groups = ac97_dev_groups,
548 .match = ac97_bus_match,
550 .probe = ac97_bus_probe,
551 .remove = ac97_bus_remove,
554 static int __init ac97_bus_init(void)
556 return bus_register(&ac97_bus_type);
558 subsys_initcall(ac97_bus_init);
560 static void __exit ac97_bus_exit(void)
562 bus_unregister(&ac97_bus_type);
564 module_exit(ac97_bus_exit);
566 MODULE_LICENSE("GPL");