Lines Matching defs:verb
220 * @verb: verb to encode
223 * Return an encoded command verb or -1 for error.
226 unsigned int verb, unsigned int parm)
232 (verb & ~0xfff) || (parm & ~0xffff)) {
234 addr, nid, verb, parm);
240 val |= verb << 8;
246 * snd_hdac_exec_verb - execute an encoded verb
248 * @cmd: encoded verb to execute
267 * snd_hdac_read - execute a verb
269 * @nid: NID to execute a verb
270 * @verb: verb to execute
271 * @parm: parameter for a verb
277 unsigned int verb, unsigned int parm, unsigned int *res)
279 unsigned int cmd = snd_hdac_make_cmd(codec, nid, verb, parm);
335 unsigned int verb = (AC_VERB_PARAMETERS << 8) | (nid << 20) | parm;
342 err = snd_hdac_regmap_write_raw(codec, verb, val);
522 "invalid CONNECT_LIST verb %x[%i]:%x\n",
1058 int flags, unsigned int verb, unsigned int parm)
1060 unsigned int cmd = snd_hdac_make_cmd(hdac, nid, verb, parm);
1070 int flags, unsigned int verb, unsigned int parm)
1072 unsigned int cmd = snd_hdac_make_cmd(hdac, nid, verb, parm);
1082 * @verb: the verb to send
1083 * @parm: the parameter for the verb
1090 int flags, unsigned int verb, unsigned int parm)
1092 return codec_read(hdac, nid, flags, verb, parm);
1101 * @verb: the verb to send
1102 * @parm: the parameter for the verb
1109 int flags, unsigned int verb, unsigned int parm)
1111 return codec_write(hdac, nid, flags, verb, parm);
1145 * Return power state or PS_ERROR if codec rejects GET verb.