• Home
  • Raw
  • Download

Lines Matching refs:offset

33 	unsigned indx, unsigned base_indx, unsigned offset)  in host1x_class_host_wait_syncpt_base()  argument
37 | host1x_uclass_wait_syncpt_base_offset_f(offset); in host1x_class_host_wait_syncpt_base()
41 unsigned base_indx, unsigned offset) in host1x_class_host_incr_syncpt_base() argument
44 | host1x_uclass_incr_syncpt_base_offset_f(offset); in host1x_class_host_incr_syncpt_base()
55 unsigned mod_id, unsigned offset, bool auto_inc) in host1x_class_host_indoff_reg_write() argument
59 | host1x_uclass_indoff_indroffset_f(offset); in host1x_class_host_indoff_reg_write()
66 unsigned mod_id, unsigned offset, bool auto_inc) in host1x_class_host_indoff_reg_read() argument
69 | host1x_uclass_indoff_indroffset_f(offset) in host1x_class_host_indoff_reg_read()
78 unsigned class_id, unsigned offset, unsigned mask) in host1x_opcode_setclass() argument
80 return (0 << 28) | (offset << 16) | (class_id << 6) | mask; in host1x_opcode_setclass()
83 static inline u32 host1x_opcode_incr(unsigned offset, unsigned count) in host1x_opcode_incr() argument
85 return (1 << 28) | (offset << 16) | count; in host1x_opcode_incr()
88 static inline u32 host1x_opcode_nonincr(unsigned offset, unsigned count) in host1x_opcode_nonincr() argument
90 return (2 << 28) | (offset << 16) | count; in host1x_opcode_nonincr()
93 static inline u32 host1x_opcode_mask(unsigned offset, unsigned mask) in host1x_opcode_mask() argument
95 return (3 << 28) | (offset << 16) | mask; in host1x_opcode_mask()
98 static inline u32 host1x_opcode_imm(unsigned offset, unsigned value) in host1x_opcode_imm() argument
100 return (4 << 28) | (offset << 16) | value; in host1x_opcode_imm()
119 static inline u32 host1x_opcode_gather_nonincr(unsigned offset, unsigned count) in host1x_opcode_gather_nonincr() argument
121 return (6 << 28) | (offset << 16) | BIT(15) | count; in host1x_opcode_gather_nonincr()
124 static inline u32 host1x_opcode_gather_incr(unsigned offset, unsigned count) in host1x_opcode_gather_incr() argument
126 return (6 << 28) | (offset << 16) | BIT(15) | BIT(14) | count; in host1x_opcode_gather_incr()