xref: /openbmc/linux/sound/hda/hdac_device.c (revision 09787492537462e3c7b8f67b30ff9704062f97cc)
17639a06cSTakashi Iwai /*
27639a06cSTakashi Iwai  * HD-audio codec core device
37639a06cSTakashi Iwai  */
47639a06cSTakashi Iwai 
57639a06cSTakashi Iwai #include <linux/init.h>
6*09787492SAbhijeet Kumar #include <linux/delay.h>
77639a06cSTakashi Iwai #include <linux/device.h>
87639a06cSTakashi Iwai #include <linux/slab.h>
97639a06cSTakashi Iwai #include <linux/module.h>
107639a06cSTakashi Iwai #include <linux/export.h>
117639a06cSTakashi Iwai #include <linux/pm_runtime.h>
127639a06cSTakashi Iwai #include <sound/hdaudio.h>
1301ed3c06STakashi Iwai #include <sound/hda_regmap.h>
14b7d023e1STakashi Iwai #include <sound/pcm.h>
157639a06cSTakashi Iwai #include "local.h"
167639a06cSTakashi Iwai 
177639a06cSTakashi Iwai static void setup_fg_nodes(struct hdac_device *codec);
187639a06cSTakashi Iwai static int get_codec_vendor_name(struct hdac_device *codec);
197639a06cSTakashi Iwai 
207639a06cSTakashi Iwai static void default_release(struct device *dev)
217639a06cSTakashi Iwai {
227639a06cSTakashi Iwai 	snd_hdac_device_exit(container_of(dev, struct hdac_device, dev));
237639a06cSTakashi Iwai }
247639a06cSTakashi Iwai 
257639a06cSTakashi Iwai /**
267639a06cSTakashi Iwai  * snd_hdac_device_init - initialize the HD-audio codec base device
277639a06cSTakashi Iwai  * @codec: device to initialize
287639a06cSTakashi Iwai  * @bus: but to attach
297639a06cSTakashi Iwai  * @name: device name string
307639a06cSTakashi Iwai  * @addr: codec address
317639a06cSTakashi Iwai  *
327639a06cSTakashi Iwai  * Returns zero for success or a negative error code.
337639a06cSTakashi Iwai  *
347639a06cSTakashi Iwai  * This function increments the runtime PM counter and marks it active.
357639a06cSTakashi Iwai  * The caller needs to turn it off appropriately later.
367639a06cSTakashi Iwai  *
377639a06cSTakashi Iwai  * The caller needs to set the device's release op properly by itself.
387639a06cSTakashi Iwai  */
397639a06cSTakashi Iwai int snd_hdac_device_init(struct hdac_device *codec, struct hdac_bus *bus,
407639a06cSTakashi Iwai 			 const char *name, unsigned int addr)
417639a06cSTakashi Iwai {
427639a06cSTakashi Iwai 	struct device *dev;
437639a06cSTakashi Iwai 	hda_nid_t fg;
447639a06cSTakashi Iwai 	int err;
457639a06cSTakashi Iwai 
467639a06cSTakashi Iwai 	dev = &codec->dev;
477639a06cSTakashi Iwai 	device_initialize(dev);
487639a06cSTakashi Iwai 	dev->parent = bus->dev;
497639a06cSTakashi Iwai 	dev->bus = &snd_hda_bus_type;
507639a06cSTakashi Iwai 	dev->release = default_release;
513256be65STakashi Iwai 	dev->groups = hdac_dev_attr_groups;
527639a06cSTakashi Iwai 	dev_set_name(dev, "%s", name);
537639a06cSTakashi Iwai 	device_enable_async_suspend(dev);
547639a06cSTakashi Iwai 
557639a06cSTakashi Iwai 	codec->bus = bus;
567639a06cSTakashi Iwai 	codec->addr = addr;
577639a06cSTakashi Iwai 	codec->type = HDA_DEV_CORE;
587639a06cSTakashi Iwai 	pm_runtime_set_active(&codec->dev);
597639a06cSTakashi Iwai 	pm_runtime_get_noresume(&codec->dev);
607639a06cSTakashi Iwai 	atomic_set(&codec->in_pm, 0);
617639a06cSTakashi Iwai 
627639a06cSTakashi Iwai 	err = snd_hdac_bus_add_device(bus, codec);
637639a06cSTakashi Iwai 	if (err < 0)
647639a06cSTakashi Iwai 		goto error;
657639a06cSTakashi Iwai 
667639a06cSTakashi Iwai 	/* fill parameters */
677639a06cSTakashi Iwai 	codec->vendor_id = snd_hdac_read_parm(codec, AC_NODE_ROOT,
687639a06cSTakashi Iwai 					      AC_PAR_VENDOR_ID);
697639a06cSTakashi Iwai 	if (codec->vendor_id == -1) {
707639a06cSTakashi Iwai 		/* read again, hopefully the access method was corrected
717639a06cSTakashi Iwai 		 * in the last read...
727639a06cSTakashi Iwai 		 */
737639a06cSTakashi Iwai 		codec->vendor_id = snd_hdac_read_parm(codec, AC_NODE_ROOT,
747639a06cSTakashi Iwai 						      AC_PAR_VENDOR_ID);
757639a06cSTakashi Iwai 	}
767639a06cSTakashi Iwai 
777639a06cSTakashi Iwai 	codec->subsystem_id = snd_hdac_read_parm(codec, AC_NODE_ROOT,
787639a06cSTakashi Iwai 						 AC_PAR_SUBSYSTEM_ID);
797639a06cSTakashi Iwai 	codec->revision_id = snd_hdac_read_parm(codec, AC_NODE_ROOT,
807639a06cSTakashi Iwai 						AC_PAR_REV_ID);
817639a06cSTakashi Iwai 
827639a06cSTakashi Iwai 	setup_fg_nodes(codec);
837639a06cSTakashi Iwai 	if (!codec->afg && !codec->mfg) {
847639a06cSTakashi Iwai 		dev_err(dev, "no AFG or MFG node found\n");
857639a06cSTakashi Iwai 		err = -ENODEV;
867639a06cSTakashi Iwai 		goto error;
877639a06cSTakashi Iwai 	}
887639a06cSTakashi Iwai 
897639a06cSTakashi Iwai 	fg = codec->afg ? codec->afg : codec->mfg;
907639a06cSTakashi Iwai 
919780ded3STakashi Iwai 	err = snd_hdac_refresh_widgets(codec, false);
927639a06cSTakashi Iwai 	if (err < 0)
937639a06cSTakashi Iwai 		goto error;
947639a06cSTakashi Iwai 
957639a06cSTakashi Iwai 	codec->power_caps = snd_hdac_read_parm(codec, fg, AC_PAR_POWER_STATE);
967639a06cSTakashi Iwai 	/* reread ssid if not set by parameter */
97ffda568eSDavid Henningsson 	if (codec->subsystem_id == -1 || codec->subsystem_id == 0)
987639a06cSTakashi Iwai 		snd_hdac_read(codec, fg, AC_VERB_GET_SUBSYSTEM_ID, 0,
997639a06cSTakashi Iwai 			      &codec->subsystem_id);
1007639a06cSTakashi Iwai 
1017639a06cSTakashi Iwai 	err = get_codec_vendor_name(codec);
1027639a06cSTakashi Iwai 	if (err < 0)
1037639a06cSTakashi Iwai 		goto error;
1047639a06cSTakashi Iwai 
1057639a06cSTakashi Iwai 	codec->chip_name = kasprintf(GFP_KERNEL, "ID %x",
1067639a06cSTakashi Iwai 				     codec->vendor_id & 0xffff);
1077639a06cSTakashi Iwai 	if (!codec->chip_name) {
1087639a06cSTakashi Iwai 		err = -ENOMEM;
1097639a06cSTakashi Iwai 		goto error;
1107639a06cSTakashi Iwai 	}
1117639a06cSTakashi Iwai 
1127639a06cSTakashi Iwai 	return 0;
1137639a06cSTakashi Iwai 
1147639a06cSTakashi Iwai  error:
1157639a06cSTakashi Iwai 	put_device(&codec->dev);
1167639a06cSTakashi Iwai 	return err;
1177639a06cSTakashi Iwai }
1187639a06cSTakashi Iwai EXPORT_SYMBOL_GPL(snd_hdac_device_init);
1197639a06cSTakashi Iwai 
1207639a06cSTakashi Iwai /**
1217639a06cSTakashi Iwai  * snd_hdac_device_exit - clean up the HD-audio codec base device
1227639a06cSTakashi Iwai  * @codec: device to clean up
1237639a06cSTakashi Iwai  */
1247639a06cSTakashi Iwai void snd_hdac_device_exit(struct hdac_device *codec)
1257639a06cSTakashi Iwai {
126c4c2533fSTakashi Iwai 	pm_runtime_put_noidle(&codec->dev);
1277639a06cSTakashi Iwai 	snd_hdac_bus_remove_device(codec->bus, codec);
1287639a06cSTakashi Iwai 	kfree(codec->vendor_name);
1297639a06cSTakashi Iwai 	kfree(codec->chip_name);
1307639a06cSTakashi Iwai }
1317639a06cSTakashi Iwai EXPORT_SYMBOL_GPL(snd_hdac_device_exit);
1327639a06cSTakashi Iwai 
1337639a06cSTakashi Iwai /**
1343256be65STakashi Iwai  * snd_hdac_device_register - register the hd-audio codec base device
1353256be65STakashi Iwai  * codec: the device to register
1363256be65STakashi Iwai  */
1373256be65STakashi Iwai int snd_hdac_device_register(struct hdac_device *codec)
1383256be65STakashi Iwai {
1393256be65STakashi Iwai 	int err;
1403256be65STakashi Iwai 
1413256be65STakashi Iwai 	err = device_add(&codec->dev);
1423256be65STakashi Iwai 	if (err < 0)
1433256be65STakashi Iwai 		return err;
1443256be65STakashi Iwai 	err = hda_widget_sysfs_init(codec);
1453256be65STakashi Iwai 	if (err < 0) {
1463256be65STakashi Iwai 		device_del(&codec->dev);
1473256be65STakashi Iwai 		return err;
1483256be65STakashi Iwai 	}
1493256be65STakashi Iwai 
1503256be65STakashi Iwai 	return 0;
1513256be65STakashi Iwai }
1523256be65STakashi Iwai EXPORT_SYMBOL_GPL(snd_hdac_device_register);
1533256be65STakashi Iwai 
1543256be65STakashi Iwai /**
1553256be65STakashi Iwai  * snd_hdac_device_unregister - unregister the hd-audio codec base device
1563256be65STakashi Iwai  * codec: the device to unregister
1573256be65STakashi Iwai  */
1583256be65STakashi Iwai void snd_hdac_device_unregister(struct hdac_device *codec)
1593256be65STakashi Iwai {
1603256be65STakashi Iwai 	if (device_is_registered(&codec->dev)) {
1613256be65STakashi Iwai 		hda_widget_sysfs_exit(codec);
1623256be65STakashi Iwai 		device_del(&codec->dev);
163eb8d0eaaSTakashi Iwai 		snd_hdac_bus_remove_device(codec->bus, codec);
1643256be65STakashi Iwai 	}
1653256be65STakashi Iwai }
1663256be65STakashi Iwai EXPORT_SYMBOL_GPL(snd_hdac_device_unregister);
1673256be65STakashi Iwai 
1683256be65STakashi Iwai /**
169ded255beSTakashi Iwai  * snd_hdac_device_set_chip_name - set/update the codec name
170ded255beSTakashi Iwai  * @codec: the HDAC device
171ded255beSTakashi Iwai  * @name: name string to set
172ded255beSTakashi Iwai  *
173ded255beSTakashi Iwai  * Returns 0 if the name is set or updated, or a negative error code.
174ded255beSTakashi Iwai  */
175ded255beSTakashi Iwai int snd_hdac_device_set_chip_name(struct hdac_device *codec, const char *name)
176ded255beSTakashi Iwai {
177ded255beSTakashi Iwai 	char *newname;
178ded255beSTakashi Iwai 
179ded255beSTakashi Iwai 	if (!name)
180ded255beSTakashi Iwai 		return 0;
181ded255beSTakashi Iwai 	newname = kstrdup(name, GFP_KERNEL);
182ded255beSTakashi Iwai 	if (!newname)
183ded255beSTakashi Iwai 		return -ENOMEM;
184ded255beSTakashi Iwai 	kfree(codec->chip_name);
185ded255beSTakashi Iwai 	codec->chip_name = newname;
186ded255beSTakashi Iwai 	return 0;
187ded255beSTakashi Iwai }
188ded255beSTakashi Iwai EXPORT_SYMBOL_GPL(snd_hdac_device_set_chip_name);
189ded255beSTakashi Iwai 
190ded255beSTakashi Iwai /**
1914f9e0c38STakashi Iwai  * snd_hdac_codec_modalias - give the module alias name
1924f9e0c38STakashi Iwai  * @codec: HDAC device
1934f9e0c38STakashi Iwai  * @buf: string buffer to store
1944f9e0c38STakashi Iwai  * @size: string buffer size
1954f9e0c38STakashi Iwai  *
1964f9e0c38STakashi Iwai  * Returns the size of string, like snprintf(), or a negative error code.
1974f9e0c38STakashi Iwai  */
1984f9e0c38STakashi Iwai int snd_hdac_codec_modalias(struct hdac_device *codec, char *buf, size_t size)
1994f9e0c38STakashi Iwai {
2004f9e0c38STakashi Iwai 	return snprintf(buf, size, "hdaudio:v%08Xr%08Xa%02X\n",
2014f9e0c38STakashi Iwai 			codec->vendor_id, codec->revision_id, codec->type);
2024f9e0c38STakashi Iwai }
2034f9e0c38STakashi Iwai EXPORT_SYMBOL_GPL(snd_hdac_codec_modalias);
2044f9e0c38STakashi Iwai 
2054f9e0c38STakashi Iwai /**
2067639a06cSTakashi Iwai  * snd_hdac_make_cmd - compose a 32bit command word to be sent to the
2077639a06cSTakashi Iwai  *	HD-audio controller
2087639a06cSTakashi Iwai  * @codec: the codec object
2097639a06cSTakashi Iwai  * @nid: NID to encode
2107639a06cSTakashi Iwai  * @verb: verb to encode
2117639a06cSTakashi Iwai  * @parm: parameter to encode
2127639a06cSTakashi Iwai  *
2137639a06cSTakashi Iwai  * Return an encoded command verb or -1 for error.
2147639a06cSTakashi Iwai  */
2157639a06cSTakashi Iwai unsigned int snd_hdac_make_cmd(struct hdac_device *codec, hda_nid_t nid,
2167639a06cSTakashi Iwai 			       unsigned int verb, unsigned int parm)
2177639a06cSTakashi Iwai {
2187639a06cSTakashi Iwai 	u32 val, addr;
2197639a06cSTakashi Iwai 
2207639a06cSTakashi Iwai 	addr = codec->addr;
2217639a06cSTakashi Iwai 	if ((addr & ~0xf) || (nid & ~0x7f) ||
2227639a06cSTakashi Iwai 	    (verb & ~0xfff) || (parm & ~0xffff)) {
2237639a06cSTakashi Iwai 		dev_err(&codec->dev, "out of range cmd %x:%x:%x:%x\n",
2247639a06cSTakashi Iwai 			addr, nid, verb, parm);
2257639a06cSTakashi Iwai 		return -1;
2267639a06cSTakashi Iwai 	}
2277639a06cSTakashi Iwai 
2287639a06cSTakashi Iwai 	val = addr << 28;
2297639a06cSTakashi Iwai 	val |= (u32)nid << 20;
2307639a06cSTakashi Iwai 	val |= verb << 8;
2317639a06cSTakashi Iwai 	val |= parm;
2327639a06cSTakashi Iwai 	return val;
2337639a06cSTakashi Iwai }
2347639a06cSTakashi Iwai EXPORT_SYMBOL_GPL(snd_hdac_make_cmd);
2357639a06cSTakashi Iwai 
2367639a06cSTakashi Iwai /**
23705852448STakashi Iwai  * snd_hdac_exec_verb - execute an encoded verb
23805852448STakashi Iwai  * @codec: the codec object
23905852448STakashi Iwai  * @cmd: encoded verb to execute
24005852448STakashi Iwai  * @flags: optional flags, pass zero for default
24105852448STakashi Iwai  * @res: the pointer to store the result, NULL if running async
24205852448STakashi Iwai  *
24305852448STakashi Iwai  * Returns zero if successful, or a negative error code.
24405852448STakashi Iwai  *
24505852448STakashi Iwai  * This calls the exec_verb op when set in hdac_codec.  If not,
24605852448STakashi Iwai  * call the default snd_hdac_bus_exec_verb().
24705852448STakashi Iwai  */
24805852448STakashi Iwai int snd_hdac_exec_verb(struct hdac_device *codec, unsigned int cmd,
24905852448STakashi Iwai 		       unsigned int flags, unsigned int *res)
25005852448STakashi Iwai {
25105852448STakashi Iwai 	if (codec->exec_verb)
25205852448STakashi Iwai 		return codec->exec_verb(codec, cmd, flags, res);
25305852448STakashi Iwai 	return snd_hdac_bus_exec_verb(codec->bus, codec->addr, cmd, res);
25405852448STakashi Iwai }
25505852448STakashi Iwai EXPORT_SYMBOL_GPL(snd_hdac_exec_verb);
25605852448STakashi Iwai 
25705852448STakashi Iwai 
25805852448STakashi Iwai /**
2597639a06cSTakashi Iwai  * snd_hdac_read - execute a verb
2607639a06cSTakashi Iwai  * @codec: the codec object
2617639a06cSTakashi Iwai  * @nid: NID to execute a verb
2627639a06cSTakashi Iwai  * @verb: verb to execute
2637639a06cSTakashi Iwai  * @parm: parameter for a verb
2647639a06cSTakashi Iwai  * @res: the pointer to store the result, NULL if running async
2657639a06cSTakashi Iwai  *
2667639a06cSTakashi Iwai  * Returns zero if successful, or a negative error code.
2677639a06cSTakashi Iwai  */
2687639a06cSTakashi Iwai int snd_hdac_read(struct hdac_device *codec, hda_nid_t nid,
2697639a06cSTakashi Iwai 		  unsigned int verb, unsigned int parm, unsigned int *res)
2707639a06cSTakashi Iwai {
2717639a06cSTakashi Iwai 	unsigned int cmd = snd_hdac_make_cmd(codec, nid, verb, parm);
2727639a06cSTakashi Iwai 
27305852448STakashi Iwai 	return snd_hdac_exec_verb(codec, cmd, 0, res);
2747639a06cSTakashi Iwai }
2757639a06cSTakashi Iwai EXPORT_SYMBOL_GPL(snd_hdac_read);
2767639a06cSTakashi Iwai 
2777639a06cSTakashi Iwai /**
27801ed3c06STakashi Iwai  * _snd_hdac_read_parm - read a parmeter
2797639a06cSTakashi Iwai  *
28001ed3c06STakashi Iwai  * This function returns zero or an error unlike snd_hdac_read_parm().
2817639a06cSTakashi Iwai  */
28201ed3c06STakashi Iwai int _snd_hdac_read_parm(struct hdac_device *codec, hda_nid_t nid, int parm,
28301ed3c06STakashi Iwai 			unsigned int *res)
2847639a06cSTakashi Iwai {
28501ed3c06STakashi Iwai 	unsigned int cmd;
2867639a06cSTakashi Iwai 
28701ed3c06STakashi Iwai 	cmd = snd_hdac_regmap_encode_verb(nid, AC_VERB_PARAMETERS) | parm;
28801ed3c06STakashi Iwai 	return snd_hdac_regmap_read_raw(codec, cmd, res);
2897639a06cSTakashi Iwai }
29001ed3c06STakashi Iwai EXPORT_SYMBOL_GPL(_snd_hdac_read_parm);
2917639a06cSTakashi Iwai 
2927639a06cSTakashi Iwai /**
2939ba17b4dSTakashi Iwai  * snd_hdac_read_parm_uncached - read a codec parameter without caching
2947639a06cSTakashi Iwai  * @codec: the codec object
2957639a06cSTakashi Iwai  * @nid: NID to read a parameter
2967639a06cSTakashi Iwai  * @parm: parameter to read
2977639a06cSTakashi Iwai  *
2987639a06cSTakashi Iwai  * Returns -1 for error.  If you need to distinguish the error more
2997639a06cSTakashi Iwai  * strictly, use snd_hdac_read() directly.
3007639a06cSTakashi Iwai  */
3019ba17b4dSTakashi Iwai int snd_hdac_read_parm_uncached(struct hdac_device *codec, hda_nid_t nid,
3029ba17b4dSTakashi Iwai 				int parm)
3037639a06cSTakashi Iwai {
3043194ed49STakashi Iwai 	unsigned int cmd, val;
3057639a06cSTakashi Iwai 
3063194ed49STakashi Iwai 	cmd = snd_hdac_regmap_encode_verb(nid, AC_VERB_PARAMETERS) | parm;
3073194ed49STakashi Iwai 	if (snd_hdac_regmap_read_raw_uncached(codec, cmd, &val) < 0)
3083194ed49STakashi Iwai 		return -1;
3097639a06cSTakashi Iwai 	return val;
3107639a06cSTakashi Iwai }
3119ba17b4dSTakashi Iwai EXPORT_SYMBOL_GPL(snd_hdac_read_parm_uncached);
3129ba17b4dSTakashi Iwai 
3139ba17b4dSTakashi Iwai /**
314faa75f8aSTakashi Iwai  * snd_hdac_override_parm - override read-only parameters
315faa75f8aSTakashi Iwai  * @codec: the codec object
316faa75f8aSTakashi Iwai  * @nid: NID for the parameter
317faa75f8aSTakashi Iwai  * @parm: the parameter to change
318faa75f8aSTakashi Iwai  * @val: the parameter value to overwrite
319faa75f8aSTakashi Iwai  */
320faa75f8aSTakashi Iwai int snd_hdac_override_parm(struct hdac_device *codec, hda_nid_t nid,
321faa75f8aSTakashi Iwai 			   unsigned int parm, unsigned int val)
322faa75f8aSTakashi Iwai {
323faa75f8aSTakashi Iwai 	unsigned int verb = (AC_VERB_PARAMETERS << 8) | (nid << 20) | parm;
324faa75f8aSTakashi Iwai 	int err;
325faa75f8aSTakashi Iwai 
326faa75f8aSTakashi Iwai 	if (!codec->regmap)
327faa75f8aSTakashi Iwai 		return -EINVAL;
328faa75f8aSTakashi Iwai 
329faa75f8aSTakashi Iwai 	codec->caps_overwriting = true;
330faa75f8aSTakashi Iwai 	err = snd_hdac_regmap_write_raw(codec, verb, val);
331faa75f8aSTakashi Iwai 	codec->caps_overwriting = false;
332faa75f8aSTakashi Iwai 	return err;
333faa75f8aSTakashi Iwai }
334faa75f8aSTakashi Iwai EXPORT_SYMBOL_GPL(snd_hdac_override_parm);
3357639a06cSTakashi Iwai 
3367639a06cSTakashi Iwai /**
3377639a06cSTakashi Iwai  * snd_hdac_get_sub_nodes - get start NID and number of subtree nodes
3387639a06cSTakashi Iwai  * @codec: the codec object
3397639a06cSTakashi Iwai  * @nid: NID to inspect
3407639a06cSTakashi Iwai  * @start_id: the pointer to store the starting NID
3417639a06cSTakashi Iwai  *
3427639a06cSTakashi Iwai  * Returns the number of subtree nodes or zero if not found.
3439ba17b4dSTakashi Iwai  * This function reads parameters always without caching.
3447639a06cSTakashi Iwai  */
3457639a06cSTakashi Iwai int snd_hdac_get_sub_nodes(struct hdac_device *codec, hda_nid_t nid,
3467639a06cSTakashi Iwai 			   hda_nid_t *start_id)
3477639a06cSTakashi Iwai {
3487639a06cSTakashi Iwai 	unsigned int parm;
3497639a06cSTakashi Iwai 
3509ba17b4dSTakashi Iwai 	parm = snd_hdac_read_parm_uncached(codec, nid, AC_PAR_NODE_COUNT);
3517639a06cSTakashi Iwai 	if (parm == -1) {
3527639a06cSTakashi Iwai 		*start_id = 0;
3537639a06cSTakashi Iwai 		return 0;
3547639a06cSTakashi Iwai 	}
3557639a06cSTakashi Iwai 	*start_id = (parm >> 16) & 0x7fff;
3567639a06cSTakashi Iwai 	return (int)(parm & 0x7fff);
3577639a06cSTakashi Iwai }
3587639a06cSTakashi Iwai EXPORT_SYMBOL_GPL(snd_hdac_get_sub_nodes);
3597639a06cSTakashi Iwai 
3607639a06cSTakashi Iwai /*
3617639a06cSTakashi Iwai  * look for an AFG and MFG nodes
3627639a06cSTakashi Iwai  */
3637639a06cSTakashi Iwai static void setup_fg_nodes(struct hdac_device *codec)
3647639a06cSTakashi Iwai {
3657639a06cSTakashi Iwai 	int i, total_nodes, function_id;
3667639a06cSTakashi Iwai 	hda_nid_t nid;
3677639a06cSTakashi Iwai 
3687639a06cSTakashi Iwai 	total_nodes = snd_hdac_get_sub_nodes(codec, AC_NODE_ROOT, &nid);
3697639a06cSTakashi Iwai 	for (i = 0; i < total_nodes; i++, nid++) {
3707639a06cSTakashi Iwai 		function_id = snd_hdac_read_parm(codec, nid,
3717639a06cSTakashi Iwai 						 AC_PAR_FUNCTION_TYPE);
3727639a06cSTakashi Iwai 		switch (function_id & 0xff) {
3737639a06cSTakashi Iwai 		case AC_GRP_AUDIO_FUNCTION:
3747639a06cSTakashi Iwai 			codec->afg = nid;
3757639a06cSTakashi Iwai 			codec->afg_function_id = function_id & 0xff;
3767639a06cSTakashi Iwai 			codec->afg_unsol = (function_id >> 8) & 1;
3777639a06cSTakashi Iwai 			break;
3787639a06cSTakashi Iwai 		case AC_GRP_MODEM_FUNCTION:
3797639a06cSTakashi Iwai 			codec->mfg = nid;
3807639a06cSTakashi Iwai 			codec->mfg_function_id = function_id & 0xff;
3817639a06cSTakashi Iwai 			codec->mfg_unsol = (function_id >> 8) & 1;
3827639a06cSTakashi Iwai 			break;
3837639a06cSTakashi Iwai 		default:
3847639a06cSTakashi Iwai 			break;
3857639a06cSTakashi Iwai 		}
3867639a06cSTakashi Iwai 	}
3877639a06cSTakashi Iwai }
3887639a06cSTakashi Iwai 
3897639a06cSTakashi Iwai /**
3907639a06cSTakashi Iwai  * snd_hdac_refresh_widgets - Reset the widget start/end nodes
3917639a06cSTakashi Iwai  * @codec: the codec object
3929780ded3STakashi Iwai  * @sysfs: re-initialize sysfs tree, too
3937639a06cSTakashi Iwai  */
3949780ded3STakashi Iwai int snd_hdac_refresh_widgets(struct hdac_device *codec, bool sysfs)
3957639a06cSTakashi Iwai {
3967639a06cSTakashi Iwai 	hda_nid_t start_nid;
3979780ded3STakashi Iwai 	int nums, err;
3987639a06cSTakashi Iwai 
3997639a06cSTakashi Iwai 	nums = snd_hdac_get_sub_nodes(codec, codec->afg, &start_nid);
4007639a06cSTakashi Iwai 	if (!start_nid || nums <= 0 || nums >= 0xff) {
4017639a06cSTakashi Iwai 		dev_err(&codec->dev, "cannot read sub nodes for FG 0x%02x\n",
4027639a06cSTakashi Iwai 			codec->afg);
4037639a06cSTakashi Iwai 		return -EINVAL;
4047639a06cSTakashi Iwai 	}
4057639a06cSTakashi Iwai 
4069780ded3STakashi Iwai 	if (sysfs) {
4079780ded3STakashi Iwai 		err = hda_widget_sysfs_reinit(codec, start_nid, nums);
4089780ded3STakashi Iwai 		if (err < 0)
4099780ded3STakashi Iwai 			return err;
4109780ded3STakashi Iwai 	}
4119780ded3STakashi Iwai 
4127639a06cSTakashi Iwai 	codec->num_nodes = nums;
4137639a06cSTakashi Iwai 	codec->start_nid = start_nid;
4147639a06cSTakashi Iwai 	codec->end_nid = start_nid + nums;
4157639a06cSTakashi Iwai 	return 0;
4167639a06cSTakashi Iwai }
4177639a06cSTakashi Iwai EXPORT_SYMBOL_GPL(snd_hdac_refresh_widgets);
4187639a06cSTakashi Iwai 
4197639a06cSTakashi Iwai /* return CONNLIST_LEN parameter of the given widget */
4207639a06cSTakashi Iwai static unsigned int get_num_conns(struct hdac_device *codec, hda_nid_t nid)
4217639a06cSTakashi Iwai {
4227639a06cSTakashi Iwai 	unsigned int wcaps = get_wcaps(codec, nid);
4237639a06cSTakashi Iwai 	unsigned int parm;
4247639a06cSTakashi Iwai 
4257639a06cSTakashi Iwai 	if (!(wcaps & AC_WCAP_CONN_LIST) &&
4267639a06cSTakashi Iwai 	    get_wcaps_type(wcaps) != AC_WID_VOL_KNB)
4277639a06cSTakashi Iwai 		return 0;
4287639a06cSTakashi Iwai 
4297639a06cSTakashi Iwai 	parm = snd_hdac_read_parm(codec, nid, AC_PAR_CONNLIST_LEN);
4307639a06cSTakashi Iwai 	if (parm == -1)
4317639a06cSTakashi Iwai 		parm = 0;
4327639a06cSTakashi Iwai 	return parm;
4337639a06cSTakashi Iwai }
4347639a06cSTakashi Iwai 
4357639a06cSTakashi Iwai /**
4367639a06cSTakashi Iwai  * snd_hdac_get_connections - get a widget connection list
4377639a06cSTakashi Iwai  * @codec: the codec object
4387639a06cSTakashi Iwai  * @nid: NID
4397639a06cSTakashi Iwai  * @conn_list: the array to store the results, can be NULL
4407639a06cSTakashi Iwai  * @max_conns: the max size of the given array
4417639a06cSTakashi Iwai  *
4427639a06cSTakashi Iwai  * Returns the number of connected widgets, zero for no connection, or a
4437639a06cSTakashi Iwai  * negative error code.  When the number of elements don't fit with the
4447639a06cSTakashi Iwai  * given array size, it returns -ENOSPC.
4457639a06cSTakashi Iwai  *
4467639a06cSTakashi Iwai  * When @conn_list is NULL, it just checks the number of connections.
4477639a06cSTakashi Iwai  */
4487639a06cSTakashi Iwai int snd_hdac_get_connections(struct hdac_device *codec, hda_nid_t nid,
4497639a06cSTakashi Iwai 			     hda_nid_t *conn_list, int max_conns)
4507639a06cSTakashi Iwai {
4517639a06cSTakashi Iwai 	unsigned int parm;
4527639a06cSTakashi Iwai 	int i, conn_len, conns, err;
4537639a06cSTakashi Iwai 	unsigned int shift, num_elems, mask;
4547639a06cSTakashi Iwai 	hda_nid_t prev_nid;
4557639a06cSTakashi Iwai 	int null_count = 0;
4567639a06cSTakashi Iwai 
4577639a06cSTakashi Iwai 	parm = get_num_conns(codec, nid);
4587639a06cSTakashi Iwai 	if (!parm)
4597639a06cSTakashi Iwai 		return 0;
4607639a06cSTakashi Iwai 
4617639a06cSTakashi Iwai 	if (parm & AC_CLIST_LONG) {
4627639a06cSTakashi Iwai 		/* long form */
4637639a06cSTakashi Iwai 		shift = 16;
4647639a06cSTakashi Iwai 		num_elems = 2;
4657639a06cSTakashi Iwai 	} else {
4667639a06cSTakashi Iwai 		/* short form */
4677639a06cSTakashi Iwai 		shift = 8;
4687639a06cSTakashi Iwai 		num_elems = 4;
4697639a06cSTakashi Iwai 	}
4707639a06cSTakashi Iwai 	conn_len = parm & AC_CLIST_LENGTH;
4717639a06cSTakashi Iwai 	mask = (1 << (shift-1)) - 1;
4727639a06cSTakashi Iwai 
4737639a06cSTakashi Iwai 	if (!conn_len)
4747639a06cSTakashi Iwai 		return 0; /* no connection */
4757639a06cSTakashi Iwai 
4767639a06cSTakashi Iwai 	if (conn_len == 1) {
4777639a06cSTakashi Iwai 		/* single connection */
4787639a06cSTakashi Iwai 		err = snd_hdac_read(codec, nid, AC_VERB_GET_CONNECT_LIST, 0,
4797639a06cSTakashi Iwai 				    &parm);
4807639a06cSTakashi Iwai 		if (err < 0)
4817639a06cSTakashi Iwai 			return err;
4827639a06cSTakashi Iwai 		if (conn_list)
4837639a06cSTakashi Iwai 			conn_list[0] = parm & mask;
4847639a06cSTakashi Iwai 		return 1;
4857639a06cSTakashi Iwai 	}
4867639a06cSTakashi Iwai 
4877639a06cSTakashi Iwai 	/* multi connection */
4887639a06cSTakashi Iwai 	conns = 0;
4897639a06cSTakashi Iwai 	prev_nid = 0;
4907639a06cSTakashi Iwai 	for (i = 0; i < conn_len; i++) {
4917639a06cSTakashi Iwai 		int range_val;
4927639a06cSTakashi Iwai 		hda_nid_t val, n;
4937639a06cSTakashi Iwai 
4947639a06cSTakashi Iwai 		if (i % num_elems == 0) {
4957639a06cSTakashi Iwai 			err = snd_hdac_read(codec, nid,
4967639a06cSTakashi Iwai 					    AC_VERB_GET_CONNECT_LIST, i,
4977639a06cSTakashi Iwai 					    &parm);
4987639a06cSTakashi Iwai 			if (err < 0)
4997639a06cSTakashi Iwai 				return -EIO;
5007639a06cSTakashi Iwai 		}
5017639a06cSTakashi Iwai 		range_val = !!(parm & (1 << (shift-1))); /* ranges */
5027639a06cSTakashi Iwai 		val = parm & mask;
5037639a06cSTakashi Iwai 		if (val == 0 && null_count++) {  /* no second chance */
5047639a06cSTakashi Iwai 			dev_dbg(&codec->dev,
5057639a06cSTakashi Iwai 				"invalid CONNECT_LIST verb %x[%i]:%x\n",
5067639a06cSTakashi Iwai 				nid, i, parm);
5077639a06cSTakashi Iwai 			return 0;
5087639a06cSTakashi Iwai 		}
5097639a06cSTakashi Iwai 		parm >>= shift;
5107639a06cSTakashi Iwai 		if (range_val) {
5117639a06cSTakashi Iwai 			/* ranges between the previous and this one */
5127639a06cSTakashi Iwai 			if (!prev_nid || prev_nid >= val) {
5137639a06cSTakashi Iwai 				dev_warn(&codec->dev,
5147639a06cSTakashi Iwai 					 "invalid dep_range_val %x:%x\n",
5157639a06cSTakashi Iwai 					 prev_nid, val);
5167639a06cSTakashi Iwai 				continue;
5177639a06cSTakashi Iwai 			}
5187639a06cSTakashi Iwai 			for (n = prev_nid + 1; n <= val; n++) {
5197639a06cSTakashi Iwai 				if (conn_list) {
5207639a06cSTakashi Iwai 					if (conns >= max_conns)
5217639a06cSTakashi Iwai 						return -ENOSPC;
5227639a06cSTakashi Iwai 					conn_list[conns] = n;
5237639a06cSTakashi Iwai 				}
5247639a06cSTakashi Iwai 				conns++;
5257639a06cSTakashi Iwai 			}
5267639a06cSTakashi Iwai 		} else {
5277639a06cSTakashi Iwai 			if (conn_list) {
5287639a06cSTakashi Iwai 				if (conns >= max_conns)
5297639a06cSTakashi Iwai 					return -ENOSPC;
5307639a06cSTakashi Iwai 				conn_list[conns] = val;
5317639a06cSTakashi Iwai 			}
5327639a06cSTakashi Iwai 			conns++;
5337639a06cSTakashi Iwai 		}
5347639a06cSTakashi Iwai 		prev_nid = val;
5357639a06cSTakashi Iwai 	}
5367639a06cSTakashi Iwai 	return conns;
5377639a06cSTakashi Iwai }
5387639a06cSTakashi Iwai EXPORT_SYMBOL_GPL(snd_hdac_get_connections);
5397639a06cSTakashi Iwai 
5407639a06cSTakashi Iwai #ifdef CONFIG_PM
5417639a06cSTakashi Iwai /**
542664c7155STakashi Iwai  * snd_hdac_power_up - power up the codec
5437639a06cSTakashi Iwai  * @codec: the codec object
544664c7155STakashi Iwai  *
545664c7155STakashi Iwai  * This function calls the runtime PM helper to power up the given codec.
546664c7155STakashi Iwai  * Unlike snd_hdac_power_up_pm(), you should call this only for the code
547664c7155STakashi Iwai  * path that isn't included in PM path.  Otherwise it gets stuck.
548fbce23a0STakashi Iwai  *
549fbce23a0STakashi Iwai  * Returns zero if successful, or a negative error code.
5507639a06cSTakashi Iwai  */
551fbce23a0STakashi Iwai int snd_hdac_power_up(struct hdac_device *codec)
5527639a06cSTakashi Iwai {
553fbce23a0STakashi Iwai 	return pm_runtime_get_sync(&codec->dev);
5547639a06cSTakashi Iwai }
5557639a06cSTakashi Iwai EXPORT_SYMBOL_GPL(snd_hdac_power_up);
5567639a06cSTakashi Iwai 
5577639a06cSTakashi Iwai /**
558664c7155STakashi Iwai  * snd_hdac_power_down - power down the codec
5597639a06cSTakashi Iwai  * @codec: the codec object
560fbce23a0STakashi Iwai  *
561fbce23a0STakashi Iwai  * Returns zero if successful, or a negative error code.
5627639a06cSTakashi Iwai  */
563fbce23a0STakashi Iwai int snd_hdac_power_down(struct hdac_device *codec)
5647639a06cSTakashi Iwai {
5657639a06cSTakashi Iwai 	struct device *dev = &codec->dev;
5667639a06cSTakashi Iwai 
5677639a06cSTakashi Iwai 	pm_runtime_mark_last_busy(dev);
568fbce23a0STakashi Iwai 	return pm_runtime_put_autosuspend(dev);
5697639a06cSTakashi Iwai }
5707639a06cSTakashi Iwai EXPORT_SYMBOL_GPL(snd_hdac_power_down);
571c3aeda62STakashi Iwai 
572c3aeda62STakashi Iwai /**
573c3aeda62STakashi Iwai  * snd_hdac_power_up_pm - power up the codec
574c3aeda62STakashi Iwai  * @codec: the codec object
575c3aeda62STakashi Iwai  *
576c3aeda62STakashi Iwai  * This function can be called in a recursive code path like init code
577c3aeda62STakashi Iwai  * which may be called by PM suspend/resume again.  OTOH, if a power-up
578c3aeda62STakashi Iwai  * call must wake up the sleeper (e.g. in a kctl callback), use
579c3aeda62STakashi Iwai  * snd_hdac_power_up() instead.
580fbce23a0STakashi Iwai  *
581fbce23a0STakashi Iwai  * Returns zero if successful, or a negative error code.
582c3aeda62STakashi Iwai  */
583fbce23a0STakashi Iwai int snd_hdac_power_up_pm(struct hdac_device *codec)
584c3aeda62STakashi Iwai {
585c3aeda62STakashi Iwai 	if (!atomic_inc_not_zero(&codec->in_pm))
586fbce23a0STakashi Iwai 		return snd_hdac_power_up(codec);
587fbce23a0STakashi Iwai 	return 0;
588c3aeda62STakashi Iwai }
589c3aeda62STakashi Iwai EXPORT_SYMBOL_GPL(snd_hdac_power_up_pm);
590c3aeda62STakashi Iwai 
591fc4f000bSTakashi Iwai /* like snd_hdac_power_up_pm(), but only increment the pm count when
592fc4f000bSTakashi Iwai  * already powered up.  Returns -1 if not powered up, 1 if incremented
593fc4f000bSTakashi Iwai  * or 0 if unchanged.  Only used in hdac_regmap.c
594fc4f000bSTakashi Iwai  */
595fc4f000bSTakashi Iwai int snd_hdac_keep_power_up(struct hdac_device *codec)
596fc4f000bSTakashi Iwai {
597fc4f000bSTakashi Iwai 	if (!atomic_inc_not_zero(&codec->in_pm)) {
598fc4f000bSTakashi Iwai 		int ret = pm_runtime_get_if_in_use(&codec->dev);
599fc4f000bSTakashi Iwai 		if (!ret)
600fc4f000bSTakashi Iwai 			return -1;
601fc4f000bSTakashi Iwai 		if (ret < 0)
602fc4f000bSTakashi Iwai 			return 0;
603fc4f000bSTakashi Iwai 	}
604fc4f000bSTakashi Iwai 	return 1;
605fc4f000bSTakashi Iwai }
606fc4f000bSTakashi Iwai 
607c3aeda62STakashi Iwai /**
608c3aeda62STakashi Iwai  * snd_hdac_power_down_pm - power down the codec
609c3aeda62STakashi Iwai  * @codec: the codec object
610c3aeda62STakashi Iwai  *
611c3aeda62STakashi Iwai  * Like snd_hdac_power_up_pm(), this function is used in a recursive
612c3aeda62STakashi Iwai  * code path like init code which may be called by PM suspend/resume again.
613fbce23a0STakashi Iwai  *
614fbce23a0STakashi Iwai  * Returns zero if successful, or a negative error code.
615c3aeda62STakashi Iwai  */
616fbce23a0STakashi Iwai int snd_hdac_power_down_pm(struct hdac_device *codec)
617c3aeda62STakashi Iwai {
618c3aeda62STakashi Iwai 	if (atomic_dec_if_positive(&codec->in_pm) < 0)
619fbce23a0STakashi Iwai 		return snd_hdac_power_down(codec);
620fbce23a0STakashi Iwai 	return 0;
621c3aeda62STakashi Iwai }
622c3aeda62STakashi Iwai EXPORT_SYMBOL_GPL(snd_hdac_power_down_pm);
6237639a06cSTakashi Iwai #endif
6247639a06cSTakashi Iwai 
62578dd5e21STakashi Iwai /**
62678dd5e21STakashi Iwai  * snd_hdac_link_power - Enable/disable the link power for a codec
62778dd5e21STakashi Iwai  * @codec: the codec object
62878dd5e21STakashi Iwai  * @bool: enable or disable the link power
629a5e7e07cSMengdong Lin  */
630a5e7e07cSMengdong Lin int snd_hdac_link_power(struct hdac_device *codec, bool enable)
631a5e7e07cSMengdong Lin {
632a5e7e07cSMengdong Lin 	if  (!codec->link_power_control)
633a5e7e07cSMengdong Lin 		return 0;
634a5e7e07cSMengdong Lin 
635a5e7e07cSMengdong Lin 	if  (codec->bus->ops->link_power)
636a5e7e07cSMengdong Lin 		return codec->bus->ops->link_power(codec->bus, enable);
637a5e7e07cSMengdong Lin 	else
638a5e7e07cSMengdong Lin 		return -EINVAL;
639a5e7e07cSMengdong Lin }
640a5e7e07cSMengdong Lin EXPORT_SYMBOL_GPL(snd_hdac_link_power);
641a5e7e07cSMengdong Lin 
6427639a06cSTakashi Iwai /* codec vendor labels */
6437639a06cSTakashi Iwai struct hda_vendor_id {
6447639a06cSTakashi Iwai 	unsigned int id;
6457639a06cSTakashi Iwai 	const char *name;
6467639a06cSTakashi Iwai };
6477639a06cSTakashi Iwai 
6487639a06cSTakashi Iwai static struct hda_vendor_id hda_vendor_ids[] = {
6497639a06cSTakashi Iwai 	{ 0x1002, "ATI" },
6507639a06cSTakashi Iwai 	{ 0x1013, "Cirrus Logic" },
6517639a06cSTakashi Iwai 	{ 0x1057, "Motorola" },
6527639a06cSTakashi Iwai 	{ 0x1095, "Silicon Image" },
6537639a06cSTakashi Iwai 	{ 0x10de, "Nvidia" },
6547639a06cSTakashi Iwai 	{ 0x10ec, "Realtek" },
6557639a06cSTakashi Iwai 	{ 0x1102, "Creative" },
6567639a06cSTakashi Iwai 	{ 0x1106, "VIA" },
6577639a06cSTakashi Iwai 	{ 0x111d, "IDT" },
6587639a06cSTakashi Iwai 	{ 0x11c1, "LSI" },
6597639a06cSTakashi Iwai 	{ 0x11d4, "Analog Devices" },
6607639a06cSTakashi Iwai 	{ 0x13f6, "C-Media" },
6617639a06cSTakashi Iwai 	{ 0x14f1, "Conexant" },
6627639a06cSTakashi Iwai 	{ 0x17e8, "Chrontel" },
6637639a06cSTakashi Iwai 	{ 0x1854, "LG" },
6647639a06cSTakashi Iwai 	{ 0x1aec, "Wolfson Microelectronics" },
6657639a06cSTakashi Iwai 	{ 0x1af4, "QEMU" },
6667639a06cSTakashi Iwai 	{ 0x434d, "C-Media" },
6677639a06cSTakashi Iwai 	{ 0x8086, "Intel" },
6687639a06cSTakashi Iwai 	{ 0x8384, "SigmaTel" },
6697639a06cSTakashi Iwai 	{} /* terminator */
6707639a06cSTakashi Iwai };
6717639a06cSTakashi Iwai 
6727639a06cSTakashi Iwai /* store the codec vendor name */
6737639a06cSTakashi Iwai static int get_codec_vendor_name(struct hdac_device *codec)
6747639a06cSTakashi Iwai {
6757639a06cSTakashi Iwai 	const struct hda_vendor_id *c;
6767639a06cSTakashi Iwai 	u16 vendor_id = codec->vendor_id >> 16;
6777639a06cSTakashi Iwai 
6787639a06cSTakashi Iwai 	for (c = hda_vendor_ids; c->id; c++) {
6797639a06cSTakashi Iwai 		if (c->id == vendor_id) {
6807639a06cSTakashi Iwai 			codec->vendor_name = kstrdup(c->name, GFP_KERNEL);
6817639a06cSTakashi Iwai 			return codec->vendor_name ? 0 : -ENOMEM;
6827639a06cSTakashi Iwai 		}
6837639a06cSTakashi Iwai 	}
6847639a06cSTakashi Iwai 
6857639a06cSTakashi Iwai 	codec->vendor_name = kasprintf(GFP_KERNEL, "Generic %04x", vendor_id);
6867639a06cSTakashi Iwai 	return codec->vendor_name ? 0 : -ENOMEM;
6877639a06cSTakashi Iwai }
688b7d023e1STakashi Iwai 
689b7d023e1STakashi Iwai /*
690b7d023e1STakashi Iwai  * stream formats
691b7d023e1STakashi Iwai  */
692b7d023e1STakashi Iwai struct hda_rate_tbl {
693b7d023e1STakashi Iwai 	unsigned int hz;
694b7d023e1STakashi Iwai 	unsigned int alsa_bits;
695b7d023e1STakashi Iwai 	unsigned int hda_fmt;
696b7d023e1STakashi Iwai };
697b7d023e1STakashi Iwai 
698b7d023e1STakashi Iwai /* rate = base * mult / div */
699b7d023e1STakashi Iwai #define HDA_RATE(base, mult, div) \
700b7d023e1STakashi Iwai 	(AC_FMT_BASE_##base##K | (((mult) - 1) << AC_FMT_MULT_SHIFT) | \
701b7d023e1STakashi Iwai 	 (((div) - 1) << AC_FMT_DIV_SHIFT))
702b7d023e1STakashi Iwai 
703b7d023e1STakashi Iwai static struct hda_rate_tbl rate_bits[] = {
704b7d023e1STakashi Iwai 	/* rate in Hz, ALSA rate bitmask, HDA format value */
705b7d023e1STakashi Iwai 
706b7d023e1STakashi Iwai 	/* autodetected value used in snd_hda_query_supported_pcm */
707b7d023e1STakashi Iwai 	{ 8000, SNDRV_PCM_RATE_8000, HDA_RATE(48, 1, 6) },
708b7d023e1STakashi Iwai 	{ 11025, SNDRV_PCM_RATE_11025, HDA_RATE(44, 1, 4) },
709b7d023e1STakashi Iwai 	{ 16000, SNDRV_PCM_RATE_16000, HDA_RATE(48, 1, 3) },
710b7d023e1STakashi Iwai 	{ 22050, SNDRV_PCM_RATE_22050, HDA_RATE(44, 1, 2) },
711b7d023e1STakashi Iwai 	{ 32000, SNDRV_PCM_RATE_32000, HDA_RATE(48, 2, 3) },
712b7d023e1STakashi Iwai 	{ 44100, SNDRV_PCM_RATE_44100, HDA_RATE(44, 1, 1) },
713b7d023e1STakashi Iwai 	{ 48000, SNDRV_PCM_RATE_48000, HDA_RATE(48, 1, 1) },
714b7d023e1STakashi Iwai 	{ 88200, SNDRV_PCM_RATE_88200, HDA_RATE(44, 2, 1) },
715b7d023e1STakashi Iwai 	{ 96000, SNDRV_PCM_RATE_96000, HDA_RATE(48, 2, 1) },
716b7d023e1STakashi Iwai 	{ 176400, SNDRV_PCM_RATE_176400, HDA_RATE(44, 4, 1) },
717b7d023e1STakashi Iwai 	{ 192000, SNDRV_PCM_RATE_192000, HDA_RATE(48, 4, 1) },
718b7d023e1STakashi Iwai #define AC_PAR_PCM_RATE_BITS	11
719b7d023e1STakashi Iwai 	/* up to bits 10, 384kHZ isn't supported properly */
720b7d023e1STakashi Iwai 
721b7d023e1STakashi Iwai 	/* not autodetected value */
722b7d023e1STakashi Iwai 	{ 9600, SNDRV_PCM_RATE_KNOT, HDA_RATE(48, 1, 5) },
723b7d023e1STakashi Iwai 
724b7d023e1STakashi Iwai 	{ 0 } /* terminator */
725b7d023e1STakashi Iwai };
726b7d023e1STakashi Iwai 
727b7d023e1STakashi Iwai /**
728b7d023e1STakashi Iwai  * snd_hdac_calc_stream_format - calculate the format bitset
729b7d023e1STakashi Iwai  * @rate: the sample rate
730b7d023e1STakashi Iwai  * @channels: the number of channels
731b7d023e1STakashi Iwai  * @format: the PCM format (SNDRV_PCM_FORMAT_XXX)
732b7d023e1STakashi Iwai  * @maxbps: the max. bps
733b7d023e1STakashi Iwai  * @spdif_ctls: HD-audio SPDIF status bits (0 if irrelevant)
734b7d023e1STakashi Iwai  *
735b7d023e1STakashi Iwai  * Calculate the format bitset from the given rate, channels and th PCM format.
736b7d023e1STakashi Iwai  *
737b7d023e1STakashi Iwai  * Return zero if invalid.
738b7d023e1STakashi Iwai  */
739b7d023e1STakashi Iwai unsigned int snd_hdac_calc_stream_format(unsigned int rate,
740b7d023e1STakashi Iwai 					 unsigned int channels,
741b7d023e1STakashi Iwai 					 unsigned int format,
742b7d023e1STakashi Iwai 					 unsigned int maxbps,
743b7d023e1STakashi Iwai 					 unsigned short spdif_ctls)
744b7d023e1STakashi Iwai {
745b7d023e1STakashi Iwai 	int i;
746b7d023e1STakashi Iwai 	unsigned int val = 0;
747b7d023e1STakashi Iwai 
748b7d023e1STakashi Iwai 	for (i = 0; rate_bits[i].hz; i++)
749b7d023e1STakashi Iwai 		if (rate_bits[i].hz == rate) {
750b7d023e1STakashi Iwai 			val = rate_bits[i].hda_fmt;
751b7d023e1STakashi Iwai 			break;
752b7d023e1STakashi Iwai 		}
753b7d023e1STakashi Iwai 	if (!rate_bits[i].hz)
754b7d023e1STakashi Iwai 		return 0;
755b7d023e1STakashi Iwai 
756b7d023e1STakashi Iwai 	if (channels == 0 || channels > 8)
757b7d023e1STakashi Iwai 		return 0;
758b7d023e1STakashi Iwai 	val |= channels - 1;
759b7d023e1STakashi Iwai 
760b7d023e1STakashi Iwai 	switch (snd_pcm_format_width(format)) {
761b7d023e1STakashi Iwai 	case 8:
762b7d023e1STakashi Iwai 		val |= AC_FMT_BITS_8;
763b7d023e1STakashi Iwai 		break;
764b7d023e1STakashi Iwai 	case 16:
765b7d023e1STakashi Iwai 		val |= AC_FMT_BITS_16;
766b7d023e1STakashi Iwai 		break;
767b7d023e1STakashi Iwai 	case 20:
768b7d023e1STakashi Iwai 	case 24:
769b7d023e1STakashi Iwai 	case 32:
770b7d023e1STakashi Iwai 		if (maxbps >= 32 || format == SNDRV_PCM_FORMAT_FLOAT_LE)
771b7d023e1STakashi Iwai 			val |= AC_FMT_BITS_32;
772b7d023e1STakashi Iwai 		else if (maxbps >= 24)
773b7d023e1STakashi Iwai 			val |= AC_FMT_BITS_24;
774b7d023e1STakashi Iwai 		else
775b7d023e1STakashi Iwai 			val |= AC_FMT_BITS_20;
776b7d023e1STakashi Iwai 		break;
777b7d023e1STakashi Iwai 	default:
778b7d023e1STakashi Iwai 		return 0;
779b7d023e1STakashi Iwai 	}
780b7d023e1STakashi Iwai 
781b7d023e1STakashi Iwai 	if (spdif_ctls & AC_DIG1_NONAUDIO)
782b7d023e1STakashi Iwai 		val |= AC_FMT_TYPE_NON_PCM;
783b7d023e1STakashi Iwai 
784b7d023e1STakashi Iwai 	return val;
785b7d023e1STakashi Iwai }
786b7d023e1STakashi Iwai EXPORT_SYMBOL_GPL(snd_hdac_calc_stream_format);
787b7d023e1STakashi Iwai 
788b7d023e1STakashi Iwai static unsigned int query_pcm_param(struct hdac_device *codec, hda_nid_t nid)
789b7d023e1STakashi Iwai {
790b7d023e1STakashi Iwai 	unsigned int val = 0;
791b7d023e1STakashi Iwai 
792b7d023e1STakashi Iwai 	if (nid != codec->afg &&
793b7d023e1STakashi Iwai 	    (get_wcaps(codec, nid) & AC_WCAP_FORMAT_OVRD))
794b7d023e1STakashi Iwai 		val = snd_hdac_read_parm(codec, nid, AC_PAR_PCM);
795b7d023e1STakashi Iwai 	if (!val || val == -1)
796b7d023e1STakashi Iwai 		val = snd_hdac_read_parm(codec, codec->afg, AC_PAR_PCM);
797b7d023e1STakashi Iwai 	if (!val || val == -1)
798b7d023e1STakashi Iwai 		return 0;
799b7d023e1STakashi Iwai 	return val;
800b7d023e1STakashi Iwai }
801b7d023e1STakashi Iwai 
802b7d023e1STakashi Iwai static unsigned int query_stream_param(struct hdac_device *codec, hda_nid_t nid)
803b7d023e1STakashi Iwai {
804b7d023e1STakashi Iwai 	unsigned int streams = snd_hdac_read_parm(codec, nid, AC_PAR_STREAM);
805b7d023e1STakashi Iwai 
806b7d023e1STakashi Iwai 	if (!streams || streams == -1)
807b7d023e1STakashi Iwai 		streams = snd_hdac_read_parm(codec, codec->afg, AC_PAR_STREAM);
808b7d023e1STakashi Iwai 	if (!streams || streams == -1)
809b7d023e1STakashi Iwai 		return 0;
810b7d023e1STakashi Iwai 	return streams;
811b7d023e1STakashi Iwai }
812b7d023e1STakashi Iwai 
813b7d023e1STakashi Iwai /**
814b7d023e1STakashi Iwai  * snd_hdac_query_supported_pcm - query the supported PCM rates and formats
815b7d023e1STakashi Iwai  * @codec: the codec object
816b7d023e1STakashi Iwai  * @nid: NID to query
817b7d023e1STakashi Iwai  * @ratesp: the pointer to store the detected rate bitflags
818b7d023e1STakashi Iwai  * @formatsp: the pointer to store the detected formats
819b7d023e1STakashi Iwai  * @bpsp: the pointer to store the detected format widths
820b7d023e1STakashi Iwai  *
821b7d023e1STakashi Iwai  * Queries the supported PCM rates and formats.  The NULL @ratesp, @formatsp
822b7d023e1STakashi Iwai  * or @bsps argument is ignored.
823b7d023e1STakashi Iwai  *
824b7d023e1STakashi Iwai  * Returns 0 if successful, otherwise a negative error code.
825b7d023e1STakashi Iwai  */
826b7d023e1STakashi Iwai int snd_hdac_query_supported_pcm(struct hdac_device *codec, hda_nid_t nid,
827b7d023e1STakashi Iwai 				 u32 *ratesp, u64 *formatsp, unsigned int *bpsp)
828b7d023e1STakashi Iwai {
829b7d023e1STakashi Iwai 	unsigned int i, val, wcaps;
830b7d023e1STakashi Iwai 
831b7d023e1STakashi Iwai 	wcaps = get_wcaps(codec, nid);
832b7d023e1STakashi Iwai 	val = query_pcm_param(codec, nid);
833b7d023e1STakashi Iwai 
834b7d023e1STakashi Iwai 	if (ratesp) {
835b7d023e1STakashi Iwai 		u32 rates = 0;
836b7d023e1STakashi Iwai 		for (i = 0; i < AC_PAR_PCM_RATE_BITS; i++) {
837b7d023e1STakashi Iwai 			if (val & (1 << i))
838b7d023e1STakashi Iwai 				rates |= rate_bits[i].alsa_bits;
839b7d023e1STakashi Iwai 		}
840b7d023e1STakashi Iwai 		if (rates == 0) {
841b7d023e1STakashi Iwai 			dev_err(&codec->dev,
842b7d023e1STakashi Iwai 				"rates == 0 (nid=0x%x, val=0x%x, ovrd=%i)\n",
843b7d023e1STakashi Iwai 				nid, val,
844b7d023e1STakashi Iwai 				(wcaps & AC_WCAP_FORMAT_OVRD) ? 1 : 0);
845b7d023e1STakashi Iwai 			return -EIO;
846b7d023e1STakashi Iwai 		}
847b7d023e1STakashi Iwai 		*ratesp = rates;
848b7d023e1STakashi Iwai 	}
849b7d023e1STakashi Iwai 
850b7d023e1STakashi Iwai 	if (formatsp || bpsp) {
851b7d023e1STakashi Iwai 		u64 formats = 0;
852b7d023e1STakashi Iwai 		unsigned int streams, bps;
853b7d023e1STakashi Iwai 
854b7d023e1STakashi Iwai 		streams = query_stream_param(codec, nid);
855b7d023e1STakashi Iwai 		if (!streams)
856b7d023e1STakashi Iwai 			return -EIO;
857b7d023e1STakashi Iwai 
858b7d023e1STakashi Iwai 		bps = 0;
859b7d023e1STakashi Iwai 		if (streams & AC_SUPFMT_PCM) {
860b7d023e1STakashi Iwai 			if (val & AC_SUPPCM_BITS_8) {
861b7d023e1STakashi Iwai 				formats |= SNDRV_PCM_FMTBIT_U8;
862b7d023e1STakashi Iwai 				bps = 8;
863b7d023e1STakashi Iwai 			}
864b7d023e1STakashi Iwai 			if (val & AC_SUPPCM_BITS_16) {
865b7d023e1STakashi Iwai 				formats |= SNDRV_PCM_FMTBIT_S16_LE;
866b7d023e1STakashi Iwai 				bps = 16;
867b7d023e1STakashi Iwai 			}
868b7d023e1STakashi Iwai 			if (wcaps & AC_WCAP_DIGITAL) {
869b7d023e1STakashi Iwai 				if (val & AC_SUPPCM_BITS_32)
870b7d023e1STakashi Iwai 					formats |= SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE;
871b7d023e1STakashi Iwai 				if (val & (AC_SUPPCM_BITS_20|AC_SUPPCM_BITS_24))
872b7d023e1STakashi Iwai 					formats |= SNDRV_PCM_FMTBIT_S32_LE;
873b7d023e1STakashi Iwai 				if (val & AC_SUPPCM_BITS_24)
874b7d023e1STakashi Iwai 					bps = 24;
875b7d023e1STakashi Iwai 				else if (val & AC_SUPPCM_BITS_20)
876b7d023e1STakashi Iwai 					bps = 20;
877b7d023e1STakashi Iwai 			} else if (val & (AC_SUPPCM_BITS_20|AC_SUPPCM_BITS_24|
878b7d023e1STakashi Iwai 					  AC_SUPPCM_BITS_32)) {
879b7d023e1STakashi Iwai 				formats |= SNDRV_PCM_FMTBIT_S32_LE;
880b7d023e1STakashi Iwai 				if (val & AC_SUPPCM_BITS_32)
881b7d023e1STakashi Iwai 					bps = 32;
882b7d023e1STakashi Iwai 				else if (val & AC_SUPPCM_BITS_24)
883b7d023e1STakashi Iwai 					bps = 24;
884b7d023e1STakashi Iwai 				else if (val & AC_SUPPCM_BITS_20)
885b7d023e1STakashi Iwai 					bps = 20;
886b7d023e1STakashi Iwai 			}
887b7d023e1STakashi Iwai 		}
888b7d023e1STakashi Iwai #if 0 /* FIXME: CS4206 doesn't work, which is the only codec supporting float */
889b7d023e1STakashi Iwai 		if (streams & AC_SUPFMT_FLOAT32) {
890b7d023e1STakashi Iwai 			formats |= SNDRV_PCM_FMTBIT_FLOAT_LE;
891b7d023e1STakashi Iwai 			if (!bps)
892b7d023e1STakashi Iwai 				bps = 32;
893b7d023e1STakashi Iwai 		}
894b7d023e1STakashi Iwai #endif
895b7d023e1STakashi Iwai 		if (streams == AC_SUPFMT_AC3) {
896b7d023e1STakashi Iwai 			/* should be exclusive */
897b7d023e1STakashi Iwai 			/* temporary hack: we have still no proper support
898b7d023e1STakashi Iwai 			 * for the direct AC3 stream...
899b7d023e1STakashi Iwai 			 */
900b7d023e1STakashi Iwai 			formats |= SNDRV_PCM_FMTBIT_U8;
901b7d023e1STakashi Iwai 			bps = 8;
902b7d023e1STakashi Iwai 		}
903b7d023e1STakashi Iwai 		if (formats == 0) {
904b7d023e1STakashi Iwai 			dev_err(&codec->dev,
905b7d023e1STakashi Iwai 				"formats == 0 (nid=0x%x, val=0x%x, ovrd=%i, streams=0x%x)\n",
906b7d023e1STakashi Iwai 				nid, val,
907b7d023e1STakashi Iwai 				(wcaps & AC_WCAP_FORMAT_OVRD) ? 1 : 0,
908b7d023e1STakashi Iwai 				streams);
909b7d023e1STakashi Iwai 			return -EIO;
910b7d023e1STakashi Iwai 		}
911b7d023e1STakashi Iwai 		if (formatsp)
912b7d023e1STakashi Iwai 			*formatsp = formats;
913b7d023e1STakashi Iwai 		if (bpsp)
914b7d023e1STakashi Iwai 			*bpsp = bps;
915b7d023e1STakashi Iwai 	}
916b7d023e1STakashi Iwai 
917b7d023e1STakashi Iwai 	return 0;
918b7d023e1STakashi Iwai }
919b7d023e1STakashi Iwai EXPORT_SYMBOL_GPL(snd_hdac_query_supported_pcm);
920b7d023e1STakashi Iwai 
921b7d023e1STakashi Iwai /**
922b7d023e1STakashi Iwai  * snd_hdac_is_supported_format - Check the validity of the format
923b7d023e1STakashi Iwai  * @codec: the codec object
924b7d023e1STakashi Iwai  * @nid: NID to check
925b7d023e1STakashi Iwai  * @format: the HD-audio format value to check
926b7d023e1STakashi Iwai  *
927b7d023e1STakashi Iwai  * Check whether the given node supports the format value.
928b7d023e1STakashi Iwai  *
929b7d023e1STakashi Iwai  * Returns true if supported, false if not.
930b7d023e1STakashi Iwai  */
931b7d023e1STakashi Iwai bool snd_hdac_is_supported_format(struct hdac_device *codec, hda_nid_t nid,
932b7d023e1STakashi Iwai 				  unsigned int format)
933b7d023e1STakashi Iwai {
934b7d023e1STakashi Iwai 	int i;
935b7d023e1STakashi Iwai 	unsigned int val = 0, rate, stream;
936b7d023e1STakashi Iwai 
937b7d023e1STakashi Iwai 	val = query_pcm_param(codec, nid);
938b7d023e1STakashi Iwai 	if (!val)
939b7d023e1STakashi Iwai 		return false;
940b7d023e1STakashi Iwai 
941b7d023e1STakashi Iwai 	rate = format & 0xff00;
942b7d023e1STakashi Iwai 	for (i = 0; i < AC_PAR_PCM_RATE_BITS; i++)
943b7d023e1STakashi Iwai 		if (rate_bits[i].hda_fmt == rate) {
944b7d023e1STakashi Iwai 			if (val & (1 << i))
945b7d023e1STakashi Iwai 				break;
946b7d023e1STakashi Iwai 			return false;
947b7d023e1STakashi Iwai 		}
948b7d023e1STakashi Iwai 	if (i >= AC_PAR_PCM_RATE_BITS)
949b7d023e1STakashi Iwai 		return false;
950b7d023e1STakashi Iwai 
951b7d023e1STakashi Iwai 	stream = query_stream_param(codec, nid);
952b7d023e1STakashi Iwai 	if (!stream)
953b7d023e1STakashi Iwai 		return false;
954b7d023e1STakashi Iwai 
955b7d023e1STakashi Iwai 	if (stream & AC_SUPFMT_PCM) {
956b7d023e1STakashi Iwai 		switch (format & 0xf0) {
957b7d023e1STakashi Iwai 		case 0x00:
958b7d023e1STakashi Iwai 			if (!(val & AC_SUPPCM_BITS_8))
959b7d023e1STakashi Iwai 				return false;
960b7d023e1STakashi Iwai 			break;
961b7d023e1STakashi Iwai 		case 0x10:
962b7d023e1STakashi Iwai 			if (!(val & AC_SUPPCM_BITS_16))
963b7d023e1STakashi Iwai 				return false;
964b7d023e1STakashi Iwai 			break;
965b7d023e1STakashi Iwai 		case 0x20:
966b7d023e1STakashi Iwai 			if (!(val & AC_SUPPCM_BITS_20))
967b7d023e1STakashi Iwai 				return false;
968b7d023e1STakashi Iwai 			break;
969b7d023e1STakashi Iwai 		case 0x30:
970b7d023e1STakashi Iwai 			if (!(val & AC_SUPPCM_BITS_24))
971b7d023e1STakashi Iwai 				return false;
972b7d023e1STakashi Iwai 			break;
973b7d023e1STakashi Iwai 		case 0x40:
974b7d023e1STakashi Iwai 			if (!(val & AC_SUPPCM_BITS_32))
975b7d023e1STakashi Iwai 				return false;
976b7d023e1STakashi Iwai 			break;
977b7d023e1STakashi Iwai 		default:
978b7d023e1STakashi Iwai 			return false;
979b7d023e1STakashi Iwai 		}
980b7d023e1STakashi Iwai 	} else {
981b7d023e1STakashi Iwai 		/* FIXME: check for float32 and AC3? */
982b7d023e1STakashi Iwai 	}
983b7d023e1STakashi Iwai 
984b7d023e1STakashi Iwai 	return true;
985b7d023e1STakashi Iwai }
986b7d023e1STakashi Iwai EXPORT_SYMBOL_GPL(snd_hdac_is_supported_format);
9871b5e6167SSubhransu S. Prusty 
9881b5e6167SSubhransu S. Prusty static unsigned int codec_read(struct hdac_device *hdac, hda_nid_t nid,
9891b5e6167SSubhransu S. Prusty 			int flags, unsigned int verb, unsigned int parm)
9901b5e6167SSubhransu S. Prusty {
9911b5e6167SSubhransu S. Prusty 	unsigned int cmd = snd_hdac_make_cmd(hdac, nid, verb, parm);
9921b5e6167SSubhransu S. Prusty 	unsigned int res;
9931b5e6167SSubhransu S. Prusty 
9941b5e6167SSubhransu S. Prusty 	if (snd_hdac_exec_verb(hdac, cmd, flags, &res))
9951b5e6167SSubhransu S. Prusty 		return -1;
9961b5e6167SSubhransu S. Prusty 
9971b5e6167SSubhransu S. Prusty 	return res;
9981b5e6167SSubhransu S. Prusty }
9991b5e6167SSubhransu S. Prusty 
10001b5e6167SSubhransu S. Prusty static int codec_write(struct hdac_device *hdac, hda_nid_t nid,
10011b5e6167SSubhransu S. Prusty 			int flags, unsigned int verb, unsigned int parm)
10021b5e6167SSubhransu S. Prusty {
10031b5e6167SSubhransu S. Prusty 	unsigned int cmd = snd_hdac_make_cmd(hdac, nid, verb, parm);
10041b5e6167SSubhransu S. Prusty 
10051b5e6167SSubhransu S. Prusty 	return snd_hdac_exec_verb(hdac, cmd, flags, NULL);
10061b5e6167SSubhransu S. Prusty }
10071b5e6167SSubhransu S. Prusty 
10081b5e6167SSubhransu S. Prusty /**
10091b5e6167SSubhransu S. Prusty  * snd_hdac_codec_read - send a command and get the response
10101b5e6167SSubhransu S. Prusty  * @hdac: the HDAC device
10111b5e6167SSubhransu S. Prusty  * @nid: NID to send the command
10121b5e6167SSubhransu S. Prusty  * @flags: optional bit flags
10131b5e6167SSubhransu S. Prusty  * @verb: the verb to send
10141b5e6167SSubhransu S. Prusty  * @parm: the parameter for the verb
10151b5e6167SSubhransu S. Prusty  *
10161b5e6167SSubhransu S. Prusty  * Send a single command and read the corresponding response.
10171b5e6167SSubhransu S. Prusty  *
10181b5e6167SSubhransu S. Prusty  * Returns the obtained response value, or -1 for an error.
10191b5e6167SSubhransu S. Prusty  */
10201b5e6167SSubhransu S. Prusty int snd_hdac_codec_read(struct hdac_device *hdac, hda_nid_t nid,
10211b5e6167SSubhransu S. Prusty 			int flags, unsigned int verb, unsigned int parm)
10221b5e6167SSubhransu S. Prusty {
10231b5e6167SSubhransu S. Prusty 	return codec_read(hdac, nid, flags, verb, parm);
10241b5e6167SSubhransu S. Prusty }
10251b5e6167SSubhransu S. Prusty EXPORT_SYMBOL_GPL(snd_hdac_codec_read);
10261b5e6167SSubhransu S. Prusty 
10271b5e6167SSubhransu S. Prusty /**
10281b5e6167SSubhransu S. Prusty  * snd_hdac_codec_write - send a single command without waiting for response
10291b5e6167SSubhransu S. Prusty  * @hdac: the HDAC device
10301b5e6167SSubhransu S. Prusty  * @nid: NID to send the command
10311b5e6167SSubhransu S. Prusty  * @flags: optional bit flags
10321b5e6167SSubhransu S. Prusty  * @verb: the verb to send
10331b5e6167SSubhransu S. Prusty  * @parm: the parameter for the verb
10341b5e6167SSubhransu S. Prusty  *
10351b5e6167SSubhransu S. Prusty  * Send a single command without waiting for response.
10361b5e6167SSubhransu S. Prusty  *
10371b5e6167SSubhransu S. Prusty  * Returns 0 if successful, or a negative error code.
10381b5e6167SSubhransu S. Prusty  */
10391b5e6167SSubhransu S. Prusty int snd_hdac_codec_write(struct hdac_device *hdac, hda_nid_t nid,
10401b5e6167SSubhransu S. Prusty 			int flags, unsigned int verb, unsigned int parm)
10411b5e6167SSubhransu S. Prusty {
10421b5e6167SSubhransu S. Prusty 	return codec_write(hdac, nid, flags, verb, parm);
10431b5e6167SSubhransu S. Prusty }
10441b5e6167SSubhransu S. Prusty EXPORT_SYMBOL_GPL(snd_hdac_codec_write);
10451b5e6167SSubhransu S. Prusty 
104678dd5e21STakashi Iwai /**
104778dd5e21STakashi Iwai  * snd_hdac_check_power_state - check whether the actual power state matches
10481b5e6167SSubhransu S. Prusty  * with the target state
10491b5e6167SSubhransu S. Prusty  *
10501b5e6167SSubhransu S. Prusty  * @hdac: the HDAC device
10511b5e6167SSubhransu S. Prusty  * @nid: NID to send the command
10521b5e6167SSubhransu S. Prusty  * @target_state: target state to check for
10531b5e6167SSubhransu S. Prusty  *
10541b5e6167SSubhransu S. Prusty  * Return true if state matches, false if not
10551b5e6167SSubhransu S. Prusty  */
10561b5e6167SSubhransu S. Prusty bool snd_hdac_check_power_state(struct hdac_device *hdac,
10571b5e6167SSubhransu S. Prusty 		hda_nid_t nid, unsigned int target_state)
10581b5e6167SSubhransu S. Prusty {
10591b5e6167SSubhransu S. Prusty 	unsigned int state = codec_read(hdac, nid, 0,
10601b5e6167SSubhransu S. Prusty 				AC_VERB_GET_POWER_STATE, 0);
10611b5e6167SSubhransu S. Prusty 
10621b5e6167SSubhransu S. Prusty 	if (state & AC_PWRST_ERROR)
10631b5e6167SSubhransu S. Prusty 		return true;
10641b5e6167SSubhransu S. Prusty 	state = (state >> 4) & 0x0f;
10651b5e6167SSubhransu S. Prusty 	return (state == target_state);
10661b5e6167SSubhransu S. Prusty }
10671b5e6167SSubhransu S. Prusty EXPORT_SYMBOL_GPL(snd_hdac_check_power_state);
1068*09787492SAbhijeet Kumar /**
1069*09787492SAbhijeet Kumar  * snd_hdac_sync_power_state - wait until actual power state matches
1070*09787492SAbhijeet Kumar  * with the target state
1071*09787492SAbhijeet Kumar  *
1072*09787492SAbhijeet Kumar  * @hdac: the HDAC device
1073*09787492SAbhijeet Kumar  * @nid: NID to send the command
1074*09787492SAbhijeet Kumar  * @target_state: target state to check for
1075*09787492SAbhijeet Kumar  *
1076*09787492SAbhijeet Kumar  * Return power state or PS_ERROR if codec rejects GET verb.
1077*09787492SAbhijeet Kumar  */
1078*09787492SAbhijeet Kumar unsigned int snd_hdac_sync_power_state(struct hdac_device *codec,
1079*09787492SAbhijeet Kumar 			hda_nid_t nid, unsigned int power_state)
1080*09787492SAbhijeet Kumar {
1081*09787492SAbhijeet Kumar 	unsigned long end_time = jiffies + msecs_to_jiffies(500);
1082*09787492SAbhijeet Kumar 	unsigned int state, actual_state, count;
1083*09787492SAbhijeet Kumar 
1084*09787492SAbhijeet Kumar 	for (count = 0; count < 500; count++) {
1085*09787492SAbhijeet Kumar 		state = snd_hdac_codec_read(codec, nid, 0,
1086*09787492SAbhijeet Kumar 				AC_VERB_GET_POWER_STATE, 0);
1087*09787492SAbhijeet Kumar 		if (state & AC_PWRST_ERROR) {
1088*09787492SAbhijeet Kumar 			msleep(20);
1089*09787492SAbhijeet Kumar 			break;
1090*09787492SAbhijeet Kumar 		}
1091*09787492SAbhijeet Kumar 		actual_state = (state >> 4) & 0x0f;
1092*09787492SAbhijeet Kumar 		if (actual_state == power_state)
1093*09787492SAbhijeet Kumar 			break;
1094*09787492SAbhijeet Kumar 		if (time_after_eq(jiffies, end_time))
1095*09787492SAbhijeet Kumar 			break;
1096*09787492SAbhijeet Kumar 		/* wait until the codec reachs to the target state */
1097*09787492SAbhijeet Kumar 		msleep(1);
1098*09787492SAbhijeet Kumar 	}
1099*09787492SAbhijeet Kumar 	return state;
1100*09787492SAbhijeet Kumar }
1101*09787492SAbhijeet Kumar EXPORT_SYMBOL_GPL(snd_hdac_sync_power_state);
1102