Lines Matching defs:subc
157 PUSH_MTHDl(struct nouveau_pushbuf *push, int subc, int mthd,
160 nouveau_bufctx_mthd(BUFCTX(push), 0, (1 << 18) | (subc << 13) | mthd,
166 PUSH_MTHDo(struct nouveau_pushbuf *push, int subc, int mthd,
169 nouveau_bufctx_mthd(BUFCTX(push), 0, (1 << 18) | (subc << 13) | mthd,
178 PUSH_MTHDs(struct nouveau_pushbuf *push, int subc, int mthd,
182 nouveau_bufctx_mthd(BUFCTX(push), 0, (1 << 18) | (subc << 13) | mthd,
191 PUSH_MTHD(struct nouveau_pushbuf *push, int subc, int mthd,
195 nouveau_bufctx_mthd(BUFCTX(push), 0, (1 << 18) | (subc << 13) | mthd,
216 BEGIN_NV04(struct nouveau_pushbuf *push, int subc, int mthd, int size)
218 PUSH_DATA (push, 0x00000000 | (size << 18) | (subc << 13) | mthd);
222 BEGIN_NI04(struct nouveau_pushbuf *push, int subc, int mthd, int size)
224 PUSH_DATA (push, 0x40000000 | (size << 18) | (subc << 13) | mthd);
228 BEGIN_NVC0(struct nouveau_pushbuf *push, int subc, int mthd, int size)
230 PUSH_DATA (push, 0x20000000 | (size << 16) | (subc << 13) | (mthd / 4));
234 BEGIN_NIC0(struct nouveau_pushbuf *push, int subc, int mthd, int size)
236 PUSH_DATA (push, 0x60000000 | (size << 16) | (subc << 13) | (mthd / 4));
240 IMMED_NVC0(struct nouveau_pushbuf *push, int subc, int mthd, int data)
242 PUSH_DATA (push, 0x80000000 | (data << 16) | (subc << 13) | (mthd / 4));
246 BEGIN_1IC0(struct nouveau_pushbuf *push, int subc, int mthd, int size)
248 PUSH_DATA (push, 0xa0000000 | (size << 16) | (subc << 13) | (mthd / 4));
251 #define NV01_SUBC(subc, mthd) SUBC_##subc((NV01_SUBCHAN_##mthd))
252 #define NV11_SUBC(subc, mthd) SUBC_##subc((NV11_SUBCHAN_##mthd))
253 #define NV84_SUBC(subc, mthd) SUBC_##subc((NV84_SUBCHAN_##mthd))
255 #define NV04_GRAPH(subc, mthd) SUBC_##subc((NV04_GRAPH_##mthd))
256 #define NV50_GRAPH(subc, mthd) SUBC_##subc((NV50_GRAPH_##mthd))
257 #define NVC0_GRAPH(subc, mthd) SUBC_##subc((NVC0_GRAPH_##mthd))