Home | History | Annotate | Download | only in nv30

Lines Matching refs:subc

50 PUSH_MTHDl(struct nouveau_pushbuf *push, int subc, int mthd, int bin,
53 nouveau_bufctx_mthd(bufctx(push), bin, (1 << 18) | (subc << 13) | mthd,
59 PUSH_MTHDo(struct nouveau_pushbuf *push, int subc, int mthd, int bin,
62 nouveau_bufctx_mthd(bufctx(push), bin, (1 << 18) | (subc << 13) | mthd,
71 PUSH_MTHDs(struct nouveau_pushbuf *push, int subc, int mthd, int bin,
75 nouveau_bufctx_mthd(bufctx(push), bin, (1 << 18) | (subc << 13) | mthd,
84 PUSH_MTHD(struct nouveau_pushbuf *push, int subc, int mthd, int bin,
89 nouveau_bufctx_mthd(bufctx(push), bin, (1 << 18) | (subc << 13) | mthd,
103 PUSH_RESRC(struct nouveau_pushbuf *push, int subc, int mthd, int bin,
107 PUSH_MTHD(push, subc, mthd, bin, r->bo, r->offset + data,
112 BEGIN_NV04(struct nouveau_pushbuf *push, int subc, int mthd, int size)
115 PUSH_DATA (push, 0x00000000 | (size << 18) | (subc << 13) | mthd);
119 BEGIN_NI04(struct nouveau_pushbuf *push, int subc, int mthd, int size)
122 PUSH_DATA (push, 0x40000000 | (size << 18) | (subc << 13) | mthd);
153 #define NV01_SUBC(subc, mthd) SUBC_##subc((NV01_SUBCHAN_##mthd))
154 #define NV11_SUBC(subc, mthd) SUBC_##subc((NV11_SUBCHAN_##mthd))
156 #define NV04_GRAPH(subc, mthd) SUBC_##subc((NV04_GRAPH_##mthd))