Home | History | Annotate | Download | only in nv30

Lines Matching refs:mthd

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);
136 #define SUBC_M2MF(mthd) 2, (mthd)
137 #define NV03_M2MF(mthd) SUBC_M2MF(NV03_M2MF_##mthd)
139 #define SUBC_SF2D(mthd) 3, (mthd)
140 #define NV04_SF2D(mthd) SUBC_SF2D(NV04_SURFACE_2D_##mthd)
142 #define SUBC_SSWZ(mthd) 4, (mthd)
143 #define NV04_SSWZ(mthd) SUBC_SSWZ(NV04_SURFACE_SWZ_##mthd)
145 #define SUBC_SIFM(mthd) 5, (mthd)
146 #define NV03_SIFM(mthd) SUBC_SIFM(NV03_SIFM_##mthd)
147 #define NV05_SIFM(mthd) SUBC_SIFM(NV05_SIFM_##mthd)
149 #define SUBC_3D(mthd) 7, (mthd)
150 #define NV30_3D(mthd) SUBC_3D(NV30_3D_##mthd)
151 #define NV40_3D(mthd) SUBC_3D(NV40_3D_##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))