/linux-5.10/drivers/gpu/drm/nouveau/nvkm/core/ |
D | ioctl.c | 36 struct nvif_ioctl_nop_v0 v0; in nvkm_ioctl_nop() member 41 if (!(ret = nvif_unpack(ret, &data, &size, args->v0, 0, 0, false))) { in nvkm_ioctl_nop() 42 nvif_ioctl(object, "nop vers %lld\n", args->v0.version); in nvkm_ioctl_nop() 43 args->v0.version = NVIF_VERSION_LATEST; in nvkm_ioctl_nop() 54 struct nvif_ioctl_sclass_v0 v0; in nvkm_ioctl_sclass() member 60 if (!(ret = nvif_unpack(ret, &data, &size, args->v0, 0, 0, true))) { in nvkm_ioctl_sclass() 62 args->v0.version, args->v0.count); in nvkm_ioctl_sclass() 63 if (size != args->v0.count * sizeof(args->v0.oclass[0])) in nvkm_ioctl_sclass() 68 if (i < args->v0.count) { in nvkm_ioctl_sclass() 69 args->v0.oclass[i].oclass = oclass.base.oclass; in nvkm_ioctl_sclass() [all …]
|
D | client.c | 39 struct nvif_client_v0 v0; in nvkm_uclient_new() member 44 if (!(ret = nvif_unpack(ret, &argv, &argc, args->v0, 0, 0, false))){ in nvkm_uclient_new() 45 args->v0.name[sizeof(args->v0.name) - 1] = 0; in nvkm_uclient_new() 46 ret = nvkm_client_new(args->v0.name, args->v0.device, NULL, in nvkm_uclient_new() 77 struct nvif_notify_rep_v0 v0; member 134 struct nvif_notify_req_v0 v0; in nvkm_client_notify_new() member 152 if (!(ret = nvif_unpack(ret, &data, &size, req->v0, 0, 0, true))) { in nvkm_client_notify_new() 154 "token %llx\n", req->v0.version, in nvkm_client_notify_new() 155 req->v0.reply, req->v0.route, req->v0.token); in nvkm_client_notify_new() 156 notify->version = req->v0.version; in nvkm_client_notify_new() [all …]
|
/linux-5.10/arch/arm64/crypto/ |
D | aes-ce-core.S | 13 ld1 {v0.16b}, [x2] 22 1: aese v0.16b, v2.16b 23 aesmc v0.16b, v0.16b 25 aese v0.16b, v3.16b 26 aesmc v0.16b, v0.16b 29 aese v0.16b, v1.16b 30 aesmc v0.16b, v0.16b 33 aese v0.16b, v2.16b 34 eor v0.16b, v0.16b, v3.16b 35 st1 {v0.16b}, [x1] [all …]
|
D | aes-modes.S | 26 encrypt_block4x v0, v1, v2, v3, w3, x2, x8, w7 31 decrypt_block4x v0, v1, v2, v3, w3, x2, x8, w7 37 encrypt_block5x v0, v1, v2, v3, v4, w3, x2, x8, w7 42 decrypt_block5x v0, v1, v2, v3, v4, w3, x2, x8, w7 63 ld1 {v0.16b-v3.16b}, [x1], #64 /* get 4 pt blocks */ 67 st1 {v0.16b-v3.16b}, [x0], #64 74 ld1 {v0.16b}, [x1], #16 /* get next pt block */ 75 encrypt_block v0, w3, x2, x5, w6 76 st1 {v0.16b}, [x0], #16 94 ld1 {v0.16b-v3.16b}, [x1], #64 /* get 4 ct blocks */ [all …]
|
D | aes-ce-ccm-core.S | 20 ld1 {v0.16b}, [x0] /* load mac */ 31 eor v0.16b, v0.16b, v1.16b 43 3: aese v0.16b, v4.16b 44 aesmc v0.16b, v0.16b 46 aese v0.16b, v5.16b 47 aesmc v0.16b, v0.16b 50 aese v0.16b, v3.16b 51 aesmc v0.16b, v0.16b 54 aese v0.16b, v4.16b 56 eor v0.16b, v0.16b, v5.16b /* final round */ [all …]
|
D | sm3-ce-core.S | 88 0: ld1 {v0.16b-v3.16b}, [x1], #64 94 CPU_LE( rev32 v0.16b, v0.16b ) 101 qround a, v0, v1, v2, v3, v4 102 qround a, v1, v2, v3, v4, v0 103 qround a, v2, v3, v4, v0, v1 104 qround a, v3, v4, v0, v1, v2 108 qround b, v4, v0, v1, v2, v3 109 qround b, v0, v1, v2, v3, v4 110 qround b, v1, v2, v3, v4, v0 111 qround b, v2, v3, v4, v0, v1 [all …]
|
/linux-5.10/drivers/gpu/drm/nouveau/nvkm/engine/device/ |
D | ctrl.c | 38 struct nvif_control_pstate_info_v0 v0; in nvkm_control_mthd_pstate_info() member 44 if (!(ret = nvif_unpack(ret, &data, &size, args->v0, 0, 0, false))) { in nvkm_control_mthd_pstate_info() 46 args->v0.version); in nvkm_control_mthd_pstate_info() 51 args->v0.count = clk->state_nr; in nvkm_control_mthd_pstate_info() 52 args->v0.ustate_ac = clk->ustate_ac; in nvkm_control_mthd_pstate_info() 53 args->v0.ustate_dc = clk->ustate_dc; in nvkm_control_mthd_pstate_info() 54 args->v0.pwrsrc = clk->pwrsrc; in nvkm_control_mthd_pstate_info() 55 args->v0.pstate = clk->pstate; in nvkm_control_mthd_pstate_info() 57 args->v0.count = 0; in nvkm_control_mthd_pstate_info() 58 args->v0.ustate_ac = NVIF_CONTROL_PSTATE_INFO_V0_USTATE_DISABLE; in nvkm_control_mthd_pstate_info() [all …]
|
D | user.c | 110 struct nv_device_info_v0 v0; in nvkm_udevice_info() member 126 if (!(ret = nvif_unpack(ret, &data, &size, args->v0, 0, 0, false))) { in nvkm_udevice_info() 127 nvif_ioctl(object, "device info vers %d\n", args->v0.version); in nvkm_udevice_info() 142 args->v0.platform = NV_DEVICE_INFO_V0_IGP; in nvkm_udevice_info() 147 args->v0.platform = NV_DEVICE_INFO_V0_PCI; in nvkm_udevice_info() 150 args->v0.platform = NV_DEVICE_INFO_V0_AGP; in nvkm_udevice_info() 153 args->v0.platform = NV_DEVICE_INFO_V0_PCIE; in nvkm_udevice_info() 156 args->v0.platform = NV_DEVICE_INFO_V0_SOC; in nvkm_udevice_info() 166 case NV_04: args->v0.family = NV_DEVICE_INFO_V0_TNT; break; in nvkm_udevice_info() 168 case NV_11: args->v0.family = NV_DEVICE_INFO_V0_CELSIUS; break; in nvkm_udevice_info() [all …]
|
/linux-5.10/arch/mips/include/asm/mach-cavium-octeon/ |
D | kernel-entry-init.h | 30 dmfc0 v0, CP0_CVMMEMCTL_REG 32 dins v0, $0, 0, 6 33 ori v0, CONFIG_CAVIUM_OCTEON_CVMSEG_SIZE 34 dmtc0 v0, CP0_CVMMEMCTL_REG # Write the cavium mem control register 35 dmfc0 v0, CP0_CVMCTL_REG # Read the cavium control register 38 or v0, v0, 0x5001 39 xor v0, v0, 0x1001 43 and v0, v0, v1 44 ori v0, v0, (6 << 7) 64 or v0, v0, 0x2000 # Set IPREF bit. [all …]
|
/linux-5.10/drivers/gpu/drm/nouveau/nvkm/engine/disp/ |
D | rootnv50.c | 40 struct nv50_disp_mthd_v0 v0; in nv50_disp_root_mthd_() member 54 if (!(ret = nvif_unpack(ret, &data, &size, args->v0, 0, 0, true))) { in nv50_disp_root_mthd_() 56 args->v0.version, args->v0.method, args->v0.head); in nv50_disp_root_mthd_() 57 mthd = args->v0.method; in nv50_disp_root_mthd_() 58 hidx = args->v0.head; in nv50_disp_root_mthd_() 98 struct nv50_disp_acquire_v0 v0; in nv50_disp_root_mthd_() member 101 if (!(ret = nvif_unpack(ret, &data, &size, args->v0, 0, 0, false))) { in nv50_disp_root_mthd_() 102 ret = nvkm_outp_acquire(outp, NVKM_OUTP_USER, args->v0.hda); in nv50_disp_root_mthd_() 104 args->v0.or = outp->ior->id; in nv50_disp_root_mthd_() 105 args->v0.link = outp->ior->asy.link; in nv50_disp_root_mthd_() [all …]
|
D | head.c | 47 struct nv04_disp_scanoutpos_v0 v0; in nvkm_head_mthd_scanoutpos() member 52 if (!(ret = nvif_unpack(ret, &data, &size, args->v0, 0, 0, false))) { in nvkm_head_mthd_scanoutpos() 54 args->v0.version); in nvkm_head_mthd_scanoutpos() 57 args->v0.vtotal = head->arm.vtotal; in nvkm_head_mthd_scanoutpos() 58 args->v0.vblanks = head->arm.vblanks; in nvkm_head_mthd_scanoutpos() 59 args->v0.vblanke = head->arm.vblanke; in nvkm_head_mthd_scanoutpos() 60 args->v0.htotal = head->arm.htotal; in nvkm_head_mthd_scanoutpos() 61 args->v0.hblanks = head->arm.hblanks; in nvkm_head_mthd_scanoutpos() 62 args->v0.hblanke = head->arm.hblanke; in nvkm_head_mthd_scanoutpos() 68 if (!args->v0.vtotal || !args->v0.htotal) in nvkm_head_mthd_scanoutpos() [all …]
|
/linux-5.10/drivers/gpu/drm/nouveau/ |
D | nouveau_usif.c | 77 struct nvif_notify_rep_v0 v0; in usif_notify() member 83 if (length == sizeof(rep->v0) && rep->v0.version == 0) { in usif_notify() 84 if (WARN_ON(!(ntfy = (void *)(unsigned long)rep->v0.token))) in usif_notify() 86 BUG_ON(rep->v0.route != NVDRM_NOTIFY_USIF); in usif_notify() 98 switch (rep->v0.version) { in usif_notify() 127 struct nvif_ioctl_ntfy_new_v0 v0; in usif_notify_new() member 130 struct nvif_notify_req_v0 v0; in usif_notify_new() member 135 if (!(ret = nvif_unpack(ret, &data, &size, args->v0, 0, 0, true))) { in usif_notify_new() 136 if (usif_notify_find(f, args->v0.index)) in usif_notify_new() 147 if (!(ret = nvif_unpack(ret, &data, &size, req->v0, 0, 0, true))) { in usif_notify_new() [all …]
|
/linux-5.10/tools/testing/selftests/powerpc/math/ |
D | vmx_asm.S | 9 # Should be safe from C, only touches r4, r5 and v0,v1,v2 15 lvx v0,r5,r4 16 vcmpequd. v1,v0,v20 20 lvx v0,r5,r4 21 vcmpequd. v1,v0,v21 25 lvx v0,r5,r4 26 vcmpequd. v1,v0,v22 30 lvx v0,r5,r4 31 vcmpequd. v1,v0,v23 35 lvx v0,r5,r4 [all …]
|
/linux-5.10/arch/powerpc/crypto/ |
D | crc32-vpmsum_core.S | 101 vspltisw v0,-1 103 vsldoi mask_32bit,zeroes,v0,4 104 vsldoi mask_64bit,zeroes,v0,8 159 /* zero v0-v7 which will contain our checksums */ 160 vxor v0,v0,v0 259 vxor v0,v0,v8 316 vxor v0,v0,v8 350 vxor v0,v0,v8 366 vsldoi v0,v0,zeroes,4 396 vxor v16,v0,v8 [all …]
|
/linux-5.10/drivers/gpu/drm/nouveau/nvkm/subdev/mmu/ |
D | ummu.c | 61 struct nvif_mmu_heap_v0 v0; in nvkm_ummu_heap() member 66 if (!(ret = nvif_unpack(ret, &argv, &argc, args->v0, 0, 0, false))) { in nvkm_ummu_heap() 67 if ((index = args->v0.index) >= mmu->heap_nr) in nvkm_ummu_heap() 69 args->v0.size = mmu->heap[index].size; in nvkm_ummu_heap() 81 struct nvif_mmu_type_v0 v0; in nvkm_ummu_type() member 86 if (!(ret = nvif_unpack(ret, &argv, &argc, args->v0, 0, 0, false))) { in nvkm_ummu_type() 87 if ((index = args->v0.index) >= mmu->type_nr) in nvkm_ummu_type() 90 args->v0.heap = mmu->type[index].heap; in nvkm_ummu_type() 91 args->v0.vram = !!(type & NVKM_MEM_VRAM); in nvkm_ummu_type() 92 args->v0.host = !!(type & NVKM_MEM_HOST); in nvkm_ummu_type() [all …]
|
D | uvmm.c | 50 struct nvif_vmm_pfnclr_v0 v0; in nvkm_uvmm_mthd_pfnclr() member 56 if (!(ret = nvif_unpack(ret, &argv, &argc, args->v0, 0, 0, false))) { in nvkm_uvmm_mthd_pfnclr() 57 addr = args->v0.addr; in nvkm_uvmm_mthd_pfnclr() 58 size = args->v0.size; in nvkm_uvmm_mthd_pfnclr() 79 struct nvif_vmm_pfnmap_v0 v0; in nvkm_uvmm_mthd_pfnmap() member 86 if (!(ret = nvif_unpack(ret, &argv, &argc, args->v0, 0, 0, true))) { in nvkm_uvmm_mthd_pfnmap() 87 page = args->v0.page; in nvkm_uvmm_mthd_pfnmap() 88 addr = args->v0.addr; in nvkm_uvmm_mthd_pfnmap() 89 size = args->v0.size; in nvkm_uvmm_mthd_pfnmap() 90 phys = args->v0.phys; in nvkm_uvmm_mthd_pfnmap() [all …]
|
/linux-5.10/lib/ |
D | siphash.c | 23 v0 += v1; v1 = rol64(v1, 13); v1 ^= v0; v0 = rol64(v0, 32); \ 25 v0 += v3; v3 = rol64(v3, 21); v3 ^= v0; \ 30 u64 v0 = 0x736f6d6570736575ULL; \ 38 v0 ^= key->key[0]; 44 v0 ^= b; \ 50 return (v0 ^ v1) ^ (v2 ^ v3); 63 v0 ^= m; in __siphash_aligned() 96 v0 ^= m; in __siphash_unaligned() 129 v0 ^= first; in siphash_1u64() 146 v0 ^= first; in siphash_2u64() [all …]
|
D | atomic64_test.c | 22 atomic##bit##_set(&v, v0); \ 23 r = v0; \ 46 atomic##bit##_set(&v, v0); \ 47 r = v0; \ 55 atomic##bit##_set(&v, v0); \ 56 r = v0; \ 58 BUG_ON(atomic##bit##_##op(val, &v) != v0); \ 106 int v0 = 0xaaa31337; in test_atomic() local 138 INC_RETURN_FAMILY_TEST(, v0); in test_atomic() 139 DEC_RETURN_FAMILY_TEST(, v0); in test_atomic() [all …]
|
/linux-5.10/drivers/gpu/drm/nouveau/nvkm/engine/fifo/ |
D | gpfifotu102.c | 57 struct volta_channel_gpfifo_a_v0 v0; in tu102_fifo_gpfifo_new() member 62 if (!(ret = nvif_unpack(ret, &data, &size, args->v0, 0, 0, false))) { in tu102_fifo_gpfifo_new() 66 args->v0.version, args->v0.vmm, args->v0.ioffset, in tu102_fifo_gpfifo_new() 67 args->v0.ilength, args->v0.runlist, args->v0.priv); in tu102_fifo_gpfifo_new() 68 if (args->v0.priv && !oclass->client->super) in tu102_fifo_gpfifo_new() 71 &args->v0.runlist, in tu102_fifo_gpfifo_new() 72 &args->v0.chid, in tu102_fifo_gpfifo_new() 73 args->v0.vmm, in tu102_fifo_gpfifo_new() 74 args->v0.ioffset, in tu102_fifo_gpfifo_new() 75 args->v0.ilength, in tu102_fifo_gpfifo_new() [all …]
|
/linux-5.10/drivers/gpu/drm/amd/amdkfd/ |
D | cwsr_trap_handler_gfx10.asm | 364 buffer_store_dword v0, v0, s_save_buf_rsrc0, s_save_mem_offset slc:1 glc:1 365 buffer_store_dword v1, v0, s_save_buf_rsrc0, s_save_mem_offset slc:1 glc:1 offset:128 366 buffer_store_dword v2, v0, s_save_buf_rsrc0, s_save_mem_offset slc:1 glc:1 offset:128*2 367 buffer_store_dword v3, v0, s_save_buf_rsrc0, s_save_mem_offset slc:1 glc:1 offset:128*3 375 buffer_store_dword v0, v0, s_save_buf_rsrc0, s_save_mem_offset slc:1 glc:1 376 buffer_store_dword v1, v0, s_save_buf_rsrc0, s_save_mem_offset slc:1 glc:1 offset:256 377 buffer_store_dword v2, v0, s_save_buf_rsrc0, s_save_mem_offset slc:1 glc:1 offset:256*2 378 buffer_store_dword v3, v0, s_save_buf_rsrc0, s_save_mem_offset slc:1 glc:1 offset:256*3 392 v_mov_b32 v0, 0x0 //Offset[31:0] from buffer resource 423 buffer_store_dword v2, v0, s_save_buf_rsrc0, s_save_mem_offset slc:1 glc:1 [all …]
|
/linux-5.10/arch/arm64/lib/ |
D | xor-neon.c | 19 register uint64x2_t v0, v1, v2, v3; in xor_arm64_neon_2() local 24 v0 = veorq_u64(vld1q_u64(dp1 + 0), vld1q_u64(dp2 + 0)); in xor_arm64_neon_2() 30 vst1q_u64(dp1 + 0, v0); in xor_arm64_neon_2() 47 register uint64x2_t v0, v1, v2, v3; in xor_arm64_neon_3() local 52 v0 = veorq_u64(vld1q_u64(dp1 + 0), vld1q_u64(dp2 + 0)); in xor_arm64_neon_3() 58 v0 = veorq_u64(v0, vld1q_u64(dp3 + 0)); in xor_arm64_neon_3() 64 vst1q_u64(dp1 + 0, v0); in xor_arm64_neon_3() 83 register uint64x2_t v0, v1, v2, v3; in xor_arm64_neon_4() local 88 v0 = veorq_u64(vld1q_u64(dp1 + 0), vld1q_u64(dp2 + 0)); in xor_arm64_neon_4() 94 v0 = veorq_u64(v0, vld1q_u64(dp3 + 0)); in xor_arm64_neon_4() [all …]
|
/linux-5.10/drivers/gpu/drm/nouveau/nvkm/engine/pm/ |
D | base.c | 265 struct nvif_perfdom_read_v0 v0; in nvkm_perfdom_read() member 272 if (!(ret = nvif_unpack(ret, &data, &size, args->v0, 0, 0, false))) { in nvkm_perfdom_read() 273 nvif_ioctl(object, "perfdom read vers %d\n", args->v0.version); in nvkm_perfdom_read() 287 args->v0.ctr[i] = dom->ctr[i]->ctr; in nvkm_perfdom_read() 288 args->v0.clk = dom->clk; in nvkm_perfdom_read() 371 struct nvif_perfdom_v0 v0; in nvkm_perfdom_new_() member 382 if (!(ret = nvif_unpack(ret, &data, &size, args->v0, 0, 0, false))) { in nvkm_perfdom_new_() 384 args->v0.version, args->v0.domain, args->v0.mode); in nvkm_perfdom_new_() 388 for (c = 0; c < ARRAY_SIZE(args->v0.ctr); c++) { in nvkm_perfdom_new_() 392 for (s = 0; s < ARRAY_SIZE(args->v0.ctr[c].signal); s++) { in nvkm_perfdom_new_() [all …]
|
/linux-5.10/arch/mips/lib/ |
D | strncpy_user.S | 34 LONG_L v0, TI_ADDR_LIMIT($28) # pointer ok? 35 and v0, a1 36 bnez v0, .Lfault\@ 41 1: EX(lbu, v0, (v1), .Lfault\@) 43 1: EX(lbue, v0, (v1), .Lfault\@) 47 sb v0, (a0) 48 beqz v0, 2f 52 2: PTR_ADDU v0, a1, t0 53 xor v0, a1 54 bltz v0, .Lfault\@ [all …]
|
D | strnlen_user.S | 31 LONG_L v0, TI_ADDR_LIMIT($28) # pointer ok? 32 and v0, a0 33 bnez v0, .Lfault\@ 35 move v0, a0 42 beq v0, a1, 1f # limit reached? 44 EX(lb, t0, (v0), .Lfault\@) 46 EX(lbe, t0, (v0), .Lfault\@) 52 PTR_ADDIU v0, 1 54 PTR_ADDU v0, AT 58 PTR_SUBU v0, a0 [all …]
|
/linux-5.10/arch/mips/kernel/ |
D | scall32-o32.S | 88 subu v0, v0, __NR_O32_Linux # check syscall number 89 sltiu t0, v0, __NR_O32_Linux_syscalls 92 sll t0, v0, 2 102 sltu t0, t0, v0 107 negu v0 # error 109 1: sw v0, PT_R2(sp) # result 121 * syscall number is in v0 unless we called syscall(__NR_###) 124 move a1, v0 125 subu t2, v0, __NR_O32_Linux 131 bltz v0, 1f # seccomp failed? Skip syscall [all …]
|