• Home
  • Raw
  • Download

Lines Matching refs:offset

44 	unsigned indx, unsigned base_indx, unsigned offset)  in host1x_class_host_wait_syncpt_base()  argument
48 | host1x_uclass_wait_syncpt_base_offset_f(offset); in host1x_class_host_wait_syncpt_base()
52 unsigned base_indx, unsigned offset) in host1x_class_host_incr_syncpt_base() argument
55 | host1x_uclass_incr_syncpt_base_offset_f(offset); in host1x_class_host_incr_syncpt_base()
66 unsigned mod_id, unsigned offset, bool auto_inc) in host1x_class_host_indoff_reg_write() argument
70 | host1x_uclass_indoff_indroffset_f(offset); in host1x_class_host_indoff_reg_write()
77 unsigned mod_id, unsigned offset, bool auto_inc) in host1x_class_host_indoff_reg_read() argument
80 | host1x_uclass_indoff_indroffset_f(offset) in host1x_class_host_indoff_reg_read()
90 unsigned class_id, unsigned offset, unsigned mask) in host1x_opcode_setclass() argument
92 return (0 << 28) | (offset << 16) | (class_id << 6) | mask; in host1x_opcode_setclass()
95 static inline u32 host1x_opcode_incr(unsigned offset, unsigned count) in host1x_opcode_incr() argument
97 return (1 << 28) | (offset << 16) | count; in host1x_opcode_incr()
100 static inline u32 host1x_opcode_nonincr(unsigned offset, unsigned count) in host1x_opcode_nonincr() argument
102 return (2 << 28) | (offset << 16) | count; in host1x_opcode_nonincr()
105 static inline u32 host1x_opcode_mask(unsigned offset, unsigned mask) in host1x_opcode_mask() argument
107 return (3 << 28) | (offset << 16) | mask; in host1x_opcode_mask()
110 static inline u32 host1x_opcode_imm(unsigned offset, unsigned value) in host1x_opcode_imm() argument
112 return (4 << 28) | (offset << 16) | value; in host1x_opcode_imm()
131 static inline u32 host1x_opcode_gather_nonincr(unsigned offset, unsigned count) in host1x_opcode_gather_nonincr() argument
133 return (6 << 28) | (offset << 16) | BIT(15) | count; in host1x_opcode_gather_nonincr()
136 static inline u32 host1x_opcode_gather_incr(unsigned offset, unsigned count) in host1x_opcode_gather_incr() argument
138 return (6 << 28) | (offset << 16) | BIT(15) | BIT(14) | count; in host1x_opcode_gather_incr()