Lines Matching +full:count +full:- +full:threshold
1 /* SPDX-License-Identifier: GPL-2.0-only */
14 unsigned indx, unsigned threshold) in host1x_class_host_wait_syncpt() argument
17 | host1x_uclass_wait_syncpt_thresh_f(threshold); in host1x_class_host_wait_syncpt()
21 unsigned indx, unsigned threshold) in host1x_class_host_load_syncpt_base() argument
24 | host1x_uclass_load_syncpt_base_value_f(threshold); in host1x_class_host_load_syncpt_base()
77 static inline u32 host1x_opcode_incr(unsigned offset, unsigned count) in host1x_opcode_incr() argument
79 return (1 << 28) | (offset << 16) | count; in host1x_opcode_incr()
82 static inline u32 host1x_opcode_nonincr(unsigned offset, unsigned count) in host1x_opcode_nonincr() argument
84 return (2 << 28) | (offset << 16) | count; in host1x_opcode_nonincr()
108 static inline u32 host1x_opcode_gather(unsigned count) in host1x_opcode_gather() argument
110 return (6 << 28) | count; in host1x_opcode_gather()
113 static inline u32 host1x_opcode_gather_nonincr(unsigned offset, unsigned count) in host1x_opcode_gather_nonincr() argument
115 return (6 << 28) | (offset << 16) | BIT(15) | count; in host1x_opcode_gather_nonincr()
118 static inline u32 host1x_opcode_gather_incr(unsigned offset, unsigned count) in host1x_opcode_gather_incr() argument
120 return (6 << 28) | (offset << 16) | BIT(15) | BIT(14) | count; in host1x_opcode_gather_incr()
133 static inline u32 host1x_opcode_gather_wide(unsigned count) in host1x_opcode_gather_wide() argument
135 return (12 << 28) | count; in host1x_opcode_gather_wide()