Lines Matching refs:ib
62 * @ib: indirect buffer to fill with commands
70 struct radeon_ib *ib,
79 ib->ptr[ib->length_dw++] = DMA_PACKET(DMA_PACKET_COPY,
81 ib->ptr[ib->length_dw++] = lower_32_bits(pe);
82 ib->ptr[ib->length_dw++] = lower_32_bits(src);
83 ib->ptr[ib->length_dw++] = upper_32_bits(pe) & 0xff;
84 ib->ptr[ib->length_dw++] = upper_32_bits(src) & 0xff;
96 * @ib: indirect buffer to fill with commands
106 struct radeon_ib *ib,
120 ib->ptr[ib->length_dw++] = DMA_PACKET(DMA_PACKET_WRITE, 0, 0, 0, ndw);
121 ib->ptr[ib->length_dw++] = pe;
122 ib->ptr[ib->length_dw++] = upper_32_bits(pe) & 0xff;
133 ib->ptr[ib->length_dw++] = value;
134 ib->ptr[ib->length_dw++] = upper_32_bits(value);
143 * @ib: indirect buffer to fill with commands
153 struct radeon_ib *ib,
172 ib->ptr[ib->length_dw++] = DMA_PTE_PDE_PACKET(ndw);
173 ib->ptr[ib->length_dw++] = pe; /* dst addr */
174 ib->ptr[ib->length_dw++] = upper_32_bits(pe) & 0xff;
175 ib->ptr[ib->length_dw++] = flags; /* mask */
176 ib->ptr[ib->length_dw++] = 0;
177 ib->ptr[ib->length_dw++] = value; /* value */
178 ib->ptr[ib->length_dw++] = upper_32_bits(value);
179 ib->ptr[ib->length_dw++] = incr; /* increment size */
180 ib->ptr[ib->length_dw++] = 0;