Searched refs:MI_MATH_INSTR (Results 1 – 1 of 1) sorted by relevance
/linux-6.6.21/drivers/gpu/drm/i915/gt/ |
D | intel_gpu_commands.h | 344 #define MI_MATH_INSTR(opcode, op1, op2) ((opcode) << 20 | (op1) << 10 | (op2)) macro 346 #define MI_MATH_NOOP MI_MATH_INSTR(0x000, 0x0, 0x0) 347 #define MI_MATH_LOAD(op1, op2) MI_MATH_INSTR(0x080, op1, op2) 348 #define MI_MATH_LOADINV(op1, op2) MI_MATH_INSTR(0x480, op1, op2) 349 #define MI_MATH_LOAD0(op1) MI_MATH_INSTR(0x081, op1) 350 #define MI_MATH_LOAD1(op1) MI_MATH_INSTR(0x481, op1) 351 #define MI_MATH_ADD MI_MATH_INSTR(0x100, 0x0, 0x0) 352 #define MI_MATH_SUB MI_MATH_INSTR(0x101, 0x0, 0x0) 353 #define MI_MATH_AND MI_MATH_INSTR(0x102, 0x0, 0x0) 354 #define MI_MATH_OR MI_MATH_INSTR(0x103, 0x0, 0x0) [all …]
|