2 * HD-audio codec core device
5 #include <linux/init.h>
6 #include <linux/device.h>
7 #include <linux/slab.h>
8 #include <linux/module.h>
9 #include <linux/export.h>
10 #include <linux/pm_runtime.h>
11 #include <sound/hdaudio.h>
12 #include <sound/hda_regmap.h>
15 static void setup_fg_nodes(struct hdac_device
*codec
);
16 static int get_codec_vendor_name(struct hdac_device
*codec
);
18 static void default_release(struct device
*dev
)
20 snd_hdac_device_exit(container_of(dev
, struct hdac_device
, dev
));
24 * snd_hdac_device_init - initialize the HD-audio codec base device
25 * @codec: device to initialize
27 * @name: device name string
28 * @addr: codec address
30 * Returns zero for success or a negative error code.
32 * This function increments the runtime PM counter and marks it active.
33 * The caller needs to turn it off appropriately later.
35 * The caller needs to set the device's release op properly by itself.
37 int snd_hdac_device_init(struct hdac_device
*codec
, struct hdac_bus
*bus
,
38 const char *name
, unsigned int addr
)
45 device_initialize(dev
);
46 dev
->parent
= bus
->dev
;
47 dev
->bus
= &snd_hda_bus_type
;
48 dev
->release
= default_release
;
49 dev
->groups
= hdac_dev_attr_groups
;
50 dev_set_name(dev
, "%s", name
);
51 device_enable_async_suspend(dev
);
55 codec
->type
= HDA_DEV_CORE
;
56 pm_runtime_set_active(&codec
->dev
);
57 pm_runtime_get_noresume(&codec
->dev
);
58 atomic_set(&codec
->in_pm
, 0);
60 err
= snd_hdac_bus_add_device(bus
, codec
);
65 codec
->vendor_id
= snd_hdac_read_parm(codec
, AC_NODE_ROOT
,
67 if (codec
->vendor_id
== -1) {
68 /* read again, hopefully the access method was corrected
71 codec
->vendor_id
= snd_hdac_read_parm(codec
, AC_NODE_ROOT
,
75 codec
->subsystem_id
= snd_hdac_read_parm(codec
, AC_NODE_ROOT
,
77 codec
->revision_id
= snd_hdac_read_parm(codec
, AC_NODE_ROOT
,
80 setup_fg_nodes(codec
);
81 if (!codec
->afg
&& !codec
->mfg
) {
82 dev_err(dev
, "no AFG or MFG node found\n");
87 fg
= codec
->afg
? codec
->afg
: codec
->mfg
;
89 err
= snd_hdac_refresh_widgets(codec
);
93 codec
->power_caps
= snd_hdac_read_parm(codec
, fg
, AC_PAR_POWER_STATE
);
94 /* reread ssid if not set by parameter */
95 if (codec
->subsystem_id
== -1 || codec
->subsystem_id
== 0)
96 snd_hdac_read(codec
, fg
, AC_VERB_GET_SUBSYSTEM_ID
, 0,
97 &codec
->subsystem_id
);
99 err
= get_codec_vendor_name(codec
);
103 codec
->chip_name
= kasprintf(GFP_KERNEL
, "ID %x",
104 codec
->vendor_id
& 0xffff);
105 if (!codec
->chip_name
) {
113 put_device(&codec
->dev
);
116 EXPORT_SYMBOL_GPL(snd_hdac_device_init
);
119 * snd_hdac_device_exit - clean up the HD-audio codec base device
120 * @codec: device to clean up
122 void snd_hdac_device_exit(struct hdac_device
*codec
)
124 pm_runtime_put_noidle(&codec
->dev
);
125 snd_hdac_bus_remove_device(codec
->bus
, codec
);
126 kfree(codec
->vendor_name
);
127 kfree(codec
->chip_name
);
129 EXPORT_SYMBOL_GPL(snd_hdac_device_exit
);
132 * snd_hdac_device_register - register the hd-audio codec base device
133 * codec: the device to register
135 int snd_hdac_device_register(struct hdac_device
*codec
)
139 err
= device_add(&codec
->dev
);
142 err
= hda_widget_sysfs_init(codec
);
144 device_del(&codec
->dev
);
150 EXPORT_SYMBOL_GPL(snd_hdac_device_register
);
153 * snd_hdac_device_unregister - unregister the hd-audio codec base device
154 * codec: the device to unregister
156 void snd_hdac_device_unregister(struct hdac_device
*codec
)
158 if (device_is_registered(&codec
->dev
)) {
159 hda_widget_sysfs_exit(codec
);
160 device_del(&codec
->dev
);
163 EXPORT_SYMBOL_GPL(snd_hdac_device_unregister
);
166 * snd_hdac_make_cmd - compose a 32bit command word to be sent to the
167 * HD-audio controller
168 * @codec: the codec object
169 * @nid: NID to encode
170 * @verb: verb to encode
171 * @parm: parameter to encode
173 * Return an encoded command verb or -1 for error.
175 unsigned int snd_hdac_make_cmd(struct hdac_device
*codec
, hda_nid_t nid
,
176 unsigned int verb
, unsigned int parm
)
181 if ((addr
& ~0xf) || (nid
& ~0x7f) ||
182 (verb
& ~0xfff) || (parm
& ~0xffff)) {
183 dev_err(&codec
->dev
, "out of range cmd %x:%x:%x:%x\n",
184 addr
, nid
, verb
, parm
);
189 val
|= (u32
)nid
<< 20;
194 EXPORT_SYMBOL_GPL(snd_hdac_make_cmd
);
197 * snd_hdac_exec_verb - execute an encoded verb
198 * @codec: the codec object
199 * @cmd: encoded verb to execute
200 * @flags: optional flags, pass zero for default
201 * @res: the pointer to store the result, NULL if running async
203 * Returns zero if successful, or a negative error code.
205 * This calls the exec_verb op when set in hdac_codec. If not,
206 * call the default snd_hdac_bus_exec_verb().
208 int snd_hdac_exec_verb(struct hdac_device
*codec
, unsigned int cmd
,
209 unsigned int flags
, unsigned int *res
)
211 if (codec
->exec_verb
)
212 return codec
->exec_verb(codec
, cmd
, flags
, res
);
213 return snd_hdac_bus_exec_verb(codec
->bus
, codec
->addr
, cmd
, res
);
215 EXPORT_SYMBOL_GPL(snd_hdac_exec_verb
);
219 * snd_hdac_read - execute a verb
220 * @codec: the codec object
221 * @nid: NID to execute a verb
222 * @verb: verb to execute
223 * @parm: parameter for a verb
224 * @res: the pointer to store the result, NULL if running async
226 * Returns zero if successful, or a negative error code.
228 int snd_hdac_read(struct hdac_device
*codec
, hda_nid_t nid
,
229 unsigned int verb
, unsigned int parm
, unsigned int *res
)
231 unsigned int cmd
= snd_hdac_make_cmd(codec
, nid
, verb
, parm
);
233 return snd_hdac_exec_verb(codec
, cmd
, 0, res
);
235 EXPORT_SYMBOL_GPL(snd_hdac_read
);
238 * _snd_hdac_read_parm - read a parmeter
240 * This function returns zero or an error unlike snd_hdac_read_parm().
242 int _snd_hdac_read_parm(struct hdac_device
*codec
, hda_nid_t nid
, int parm
,
247 cmd
= snd_hdac_regmap_encode_verb(nid
, AC_VERB_PARAMETERS
) | parm
;
248 return snd_hdac_regmap_read_raw(codec
, cmd
, res
);
250 EXPORT_SYMBOL_GPL(_snd_hdac_read_parm
);
253 * snd_hdac_read_parm_uncached - read a codec parameter without caching
254 * @codec: the codec object
255 * @nid: NID to read a parameter
256 * @parm: parameter to read
258 * Returns -1 for error. If you need to distinguish the error more
259 * strictly, use snd_hdac_read() directly.
261 int snd_hdac_read_parm_uncached(struct hdac_device
*codec
, hda_nid_t nid
,
264 unsigned int cmd
, val
;
266 cmd
= snd_hdac_regmap_encode_verb(nid
, AC_VERB_PARAMETERS
) | parm
;
267 if (snd_hdac_regmap_read_raw_uncached(codec
, cmd
, &val
) < 0)
271 EXPORT_SYMBOL_GPL(snd_hdac_read_parm_uncached
);
274 * snd_hdac_override_parm - override read-only parameters
275 * @codec: the codec object
276 * @nid: NID for the parameter
277 * @parm: the parameter to change
278 * @val: the parameter value to overwrite
280 int snd_hdac_override_parm(struct hdac_device
*codec
, hda_nid_t nid
,
281 unsigned int parm
, unsigned int val
)
283 unsigned int verb
= (AC_VERB_PARAMETERS
<< 8) | (nid
<< 20) | parm
;
289 codec
->caps_overwriting
= true;
290 err
= snd_hdac_regmap_write_raw(codec
, verb
, val
);
291 codec
->caps_overwriting
= false;
294 EXPORT_SYMBOL_GPL(snd_hdac_override_parm
);
297 * snd_hdac_get_sub_nodes - get start NID and number of subtree nodes
298 * @codec: the codec object
299 * @nid: NID to inspect
300 * @start_id: the pointer to store the starting NID
302 * Returns the number of subtree nodes or zero if not found.
303 * This function reads parameters always without caching.
305 int snd_hdac_get_sub_nodes(struct hdac_device
*codec
, hda_nid_t nid
,
310 parm
= snd_hdac_read_parm_uncached(codec
, nid
, AC_PAR_NODE_COUNT
);
315 *start_id
= (parm
>> 16) & 0x7fff;
316 return (int)(parm
& 0x7fff);
318 EXPORT_SYMBOL_GPL(snd_hdac_get_sub_nodes
);
321 * look for an AFG and MFG nodes
323 static void setup_fg_nodes(struct hdac_device
*codec
)
325 int i
, total_nodes
, function_id
;
328 total_nodes
= snd_hdac_get_sub_nodes(codec
, AC_NODE_ROOT
, &nid
);
329 for (i
= 0; i
< total_nodes
; i
++, nid
++) {
330 function_id
= snd_hdac_read_parm(codec
, nid
,
331 AC_PAR_FUNCTION_TYPE
);
332 switch (function_id
& 0xff) {
333 case AC_GRP_AUDIO_FUNCTION
:
335 codec
->afg_function_id
= function_id
& 0xff;
336 codec
->afg_unsol
= (function_id
>> 8) & 1;
338 case AC_GRP_MODEM_FUNCTION
:
340 codec
->mfg_function_id
= function_id
& 0xff;
341 codec
->mfg_unsol
= (function_id
>> 8) & 1;
350 * snd_hdac_refresh_widgets - Reset the widget start/end nodes
351 * @codec: the codec object
353 int snd_hdac_refresh_widgets(struct hdac_device
*codec
)
358 nums
= snd_hdac_get_sub_nodes(codec
, codec
->afg
, &start_nid
);
359 if (!start_nid
|| nums
<= 0 || nums
>= 0xff) {
360 dev_err(&codec
->dev
, "cannot read sub nodes for FG 0x%02x\n",
365 codec
->num_nodes
= nums
;
366 codec
->start_nid
= start_nid
;
367 codec
->end_nid
= start_nid
+ nums
;
370 EXPORT_SYMBOL_GPL(snd_hdac_refresh_widgets
);
372 /* return CONNLIST_LEN parameter of the given widget */
373 static unsigned int get_num_conns(struct hdac_device
*codec
, hda_nid_t nid
)
375 unsigned int wcaps
= get_wcaps(codec
, nid
);
378 if (!(wcaps
& AC_WCAP_CONN_LIST
) &&
379 get_wcaps_type(wcaps
) != AC_WID_VOL_KNB
)
382 parm
= snd_hdac_read_parm(codec
, nid
, AC_PAR_CONNLIST_LEN
);
389 * snd_hdac_get_connections - get a widget connection list
390 * @codec: the codec object
392 * @conn_list: the array to store the results, can be NULL
393 * @max_conns: the max size of the given array
395 * Returns the number of connected widgets, zero for no connection, or a
396 * negative error code. When the number of elements don't fit with the
397 * given array size, it returns -ENOSPC.
399 * When @conn_list is NULL, it just checks the number of connections.
401 int snd_hdac_get_connections(struct hdac_device
*codec
, hda_nid_t nid
,
402 hda_nid_t
*conn_list
, int max_conns
)
405 int i
, conn_len
, conns
, err
;
406 unsigned int shift
, num_elems
, mask
;
410 parm
= get_num_conns(codec
, nid
);
414 if (parm
& AC_CLIST_LONG
) {
423 conn_len
= parm
& AC_CLIST_LENGTH
;
424 mask
= (1 << (shift
-1)) - 1;
427 return 0; /* no connection */
430 /* single connection */
431 err
= snd_hdac_read(codec
, nid
, AC_VERB_GET_CONNECT_LIST
, 0,
436 conn_list
[0] = parm
& mask
;
440 /* multi connection */
443 for (i
= 0; i
< conn_len
; i
++) {
447 if (i
% num_elems
== 0) {
448 err
= snd_hdac_read(codec
, nid
,
449 AC_VERB_GET_CONNECT_LIST
, i
,
454 range_val
= !!(parm
& (1 << (shift
-1))); /* ranges */
456 if (val
== 0 && null_count
++) { /* no second chance */
458 "invalid CONNECT_LIST verb %x[%i]:%x\n",
464 /* ranges between the previous and this one */
465 if (!prev_nid
|| prev_nid
>= val
) {
466 dev_warn(&codec
->dev
,
467 "invalid dep_range_val %x:%x\n",
471 for (n
= prev_nid
+ 1; n
<= val
; n
++) {
473 if (conns
>= max_conns
)
475 conn_list
[conns
] = n
;
481 if (conns
>= max_conns
)
483 conn_list
[conns
] = val
;
491 EXPORT_SYMBOL_GPL(snd_hdac_get_connections
);
495 * snd_hdac_power_up - power up the codec
496 * @codec: the codec object
498 * This function calls the runtime PM helper to power up the given codec.
499 * Unlike snd_hdac_power_up_pm(), you should call this only for the code
500 * path that isn't included in PM path. Otherwise it gets stuck.
502 * Returns zero if successful, or a negative error code.
504 int snd_hdac_power_up(struct hdac_device
*codec
)
506 return pm_runtime_get_sync(&codec
->dev
);
508 EXPORT_SYMBOL_GPL(snd_hdac_power_up
);
511 * snd_hdac_power_down - power down the codec
512 * @codec: the codec object
514 * Returns zero if successful, or a negative error code.
516 int snd_hdac_power_down(struct hdac_device
*codec
)
518 struct device
*dev
= &codec
->dev
;
520 pm_runtime_mark_last_busy(dev
);
521 return pm_runtime_put_autosuspend(dev
);
523 EXPORT_SYMBOL_GPL(snd_hdac_power_down
);
526 * snd_hdac_power_up_pm - power up the codec
527 * @codec: the codec object
529 * This function can be called in a recursive code path like init code
530 * which may be called by PM suspend/resume again. OTOH, if a power-up
531 * call must wake up the sleeper (e.g. in a kctl callback), use
532 * snd_hdac_power_up() instead.
534 * Returns zero if successful, or a negative error code.
536 int snd_hdac_power_up_pm(struct hdac_device
*codec
)
538 if (!atomic_inc_not_zero(&codec
->in_pm
))
539 return snd_hdac_power_up(codec
);
542 EXPORT_SYMBOL_GPL(snd_hdac_power_up_pm
);
545 * snd_hdac_power_down_pm - power down the codec
546 * @codec: the codec object
548 * Like snd_hdac_power_up_pm(), this function is used in a recursive
549 * code path like init code which may be called by PM suspend/resume again.
551 * Returns zero if successful, or a negative error code.
553 int snd_hdac_power_down_pm(struct hdac_device
*codec
)
555 if (atomic_dec_if_positive(&codec
->in_pm
) < 0)
556 return snd_hdac_power_down(codec
);
559 EXPORT_SYMBOL_GPL(snd_hdac_power_down_pm
);
562 /* codec vendor labels */
563 struct hda_vendor_id
{
568 static struct hda_vendor_id hda_vendor_ids
[] = {
570 { 0x1013, "Cirrus Logic" },
571 { 0x1057, "Motorola" },
572 { 0x1095, "Silicon Image" },
573 { 0x10de, "Nvidia" },
574 { 0x10ec, "Realtek" },
575 { 0x1102, "Creative" },
579 { 0x11d4, "Analog Devices" },
580 { 0x13f6, "C-Media" },
581 { 0x14f1, "Conexant" },
582 { 0x17e8, "Chrontel" },
584 { 0x1aec, "Wolfson Microelectronics" },
586 { 0x434d, "C-Media" },
588 { 0x8384, "SigmaTel" },
592 /* store the codec vendor name */
593 static int get_codec_vendor_name(struct hdac_device
*codec
)
595 const struct hda_vendor_id
*c
;
596 u16 vendor_id
= codec
->vendor_id
>> 16;
598 for (c
= hda_vendor_ids
; c
->id
; c
++) {
599 if (c
->id
== vendor_id
) {
600 codec
->vendor_name
= kstrdup(c
->name
, GFP_KERNEL
);
601 return codec
->vendor_name
? 0 : -ENOMEM
;
605 codec
->vendor_name
= kasprintf(GFP_KERNEL
, "Generic %04x", vendor_id
);
606 return codec
->vendor_name
? 0 : -ENOMEM
;