Home | History | Annotate | Download | only in nv50

Lines Matching refs:mthd

66 NV50_FIFO_PKHDR(int subc, int mthd, unsigned size)
68 return 0x00000000 | (size << 18) | (subc << 13) | mthd;
72 NV50_FIFO_PKHDR_NI(int subc, int mthd, unsigned size)
74 return 0x40000000 | (size << 18) | (subc << 13) | mthd;
78 NV50_FIFO_PKHDR_L(int subc, int mthd)
80 return 0x00030000 | (subc << 13) | mthd;
98 BEGIN_NV04(struct nouveau_pushbuf *push, int subc, int mthd, unsigned size)
103 PUSH_DATA (push, NV50_FIFO_PKHDR(subc, mthd, size));
107 BEGIN_NI04(struct nouveau_pushbuf *push, int subc, int mthd, unsigned size)
112 PUSH_DATA (push, NV50_FIFO_PKHDR_NI(subc, mthd, size));
117 BEGIN_NL50(struct nouveau_pushbuf *push, int subc, int mthd, uint32_t size)
122 PUSH_DATA (push, NV50_FIFO_PKHDR_L(subc, mthd));