Lines Matching refs:verb
219 * @verb: verb to encode
222 * Return an encoded command verb or -1 for error.
225 unsigned int verb, unsigned int parm)
231 (verb & ~0xfff) || (parm & ~0xffff)) {
233 addr, nid, verb, parm);
239 val |= verb << 8;
245 * snd_hdac_exec_verb - execute an encoded verb
247 * @cmd: encoded verb to execute
266 * snd_hdac_read - execute a verb
268 * @nid: NID to execute a verb
269 * @verb: verb to execute
270 * @parm: parameter for a verb
276 unsigned int verb, unsigned int parm, unsigned int *res)
278 unsigned int cmd = snd_hdac_make_cmd(codec, nid, verb, parm);
334 unsigned int verb = (AC_VERB_PARAMETERS << 8) | (nid << 20) | parm;
341 err = snd_hdac_regmap_write_raw(codec, verb, val);
521 "invalid CONNECT_LIST verb %x[%i]:%x\n",
990 int flags, unsigned int verb, unsigned int parm)
992 unsigned int cmd = snd_hdac_make_cmd(hdac, nid, verb, parm);
1002 int flags, unsigned int verb, unsigned int parm)
1004 unsigned int cmd = snd_hdac_make_cmd(hdac, nid, verb, parm);
1014 * @verb: the verb to send
1015 * @parm: the parameter for the verb
1022 int flags, unsigned int verb, unsigned int parm)
1024 return codec_read(hdac, nid, flags, verb, parm);
1033 * @verb: the verb to send
1034 * @parm: the parameter for the verb
1041 int flags, unsigned int verb, unsigned int parm)
1043 return codec_write(hdac, nid, flags, verb, parm);
1077 * Return power state or PS_ERROR if codec rejects GET verb.