Lines Matching +full:64 +full:- +full:byte

1 /* SPDX-License-Identifier: GPL-2.0 */
9 #include <asm/processor-flags.h>
62 * This could fault if CR4 does not exist. Non-existent CR4 in native_read_cr4()
89 asm volatile(".byte 0x0f,0x01,0xee\n\t" in rdpkru()
103 asm volatile(".byte 0x0f,0x01,0xef\n\t" in wrpkru()
206 alternative_io(".byte 0x3e; clflush %P0", in clflushopt()
207 ".byte 0x66; clflush %P0", in clflushopt()
214 volatile struct { char x[64]; } *p = __p; in clwb()
217 ".byte 0x3e; clflush (%[pax])", in clwb()
218 ".byte 0x66; clflush (%[pax])", /* clflushopt (%%rax) */ in clwb()
220 ".byte 0x66, 0x0f, 0xae, 0x30", /* clwb (%%rax) */ in clwb()
231 asm volatile(".byte 0xf, 0x1, 0xe8" ::: "memory"); in serialize()
234 /* The dst parameter must be 64-bytes aligned */
237 const struct { char _[64]; } *__src = src; in movdir64b()
238 struct { char _[64]; } __iomem *__dst = dst; in movdir64b()
251 asm volatile(".byte 0x66, 0x0f, 0x38, 0xf8, 0x02" in movdir64b()
257 * enqcmds - Enqueue a command in supervisor (CPL0) mode
258 * @dst: destination, in MMIO space (must be 512-bit aligned)
261 * The ENQCMDS instruction allows software to write a 512-bit command to
262 * a 512-bit-aligned special MMIO region that supports the instruction.
269 * returns 0 on success and -EAGAIN on failure.
277 const struct { char _[64]; } *__src = src; in enqcmds()
278 struct { char _[64]; } __iomem *__dst = dst; in enqcmds()
286 asm volatile(".byte 0xf3, 0x0f, 0x38, 0xf8, 0x02, 0x66, 0x90" in enqcmds()
293 return -EAGAIN; in enqcmds()
304 asm volatile(".byte 0xc4, 0xe2, 0x78, 0x49, 0xc0"); in tile_release()