Home
last modified time | relevance | path

Searched refs:fsw (Results 1 – 8 of 8) sorted by relevance

/linux/scripts/
H A Dmake_fit.py92 def setup_fit(fsw, name): argument
101 fsw.INC_SIZE = 65536
102 fsw.finish_reservemap()
103 fsw.begin_node('')
104 fsw.property_string('description', f'{name} with devicetree set')
105 fsw.property_u32('#address-cells', 1)
107 fsw.property_u32('timestamp', int(time.time()))
108 fsw.begin_node('images')
111 def write_kernel(fsw, data, args): argument
125 with fsw.add_node('kernel'):
[all …]
/linux/arch/riscv/kvm/
H A Dvcpu_switch.S242 fsw f0, KVM_ARCH_FP_F_F0(a0)
243 fsw f1, KVM_ARCH_FP_F_F1(a0)
244 fsw f2, KVM_ARCH_FP_F_F2(a0)
245 fsw f3, KVM_ARCH_FP_F_F3(a0)
246 fsw f4, KVM_ARCH_FP_F_F4(a0)
247 fsw f5, KVM_ARCH_FP_F_F5(a0)
248 fsw f6, KVM_ARCH_FP_F_F6(a0)
249 fsw f7, KVM_ARCH_FP_F_F7(a0)
250 fsw f8, KVM_ARCH_FP_F_F8(a0)
251 fsw f9, KVM_ARCH_FP_F_F9(a0)
[all …]
/linux/arch/x86/kernel/fpu/
H A Dinit.c59 u16 fsw, fcw; in fpu__probe_without_cpuid() local
61 fsw = fcw = 0xffff; in fpu__probe_without_cpuid()
67 asm volatile("fninit ; fnstsw %0 ; fnstcw %1" : "+m" (fsw), "+m" (fcw)); in fpu__probe_without_cpuid()
69 pr_info("x86/fpu: Probing for FPU: FSW=0x%04hx FCW=0x%04hx\n", fsw, fcw); in fpu__probe_without_cpuid()
71 return fsw == 0 && (fcw & 0x103f) == 0x003f; in fpu__probe_without_cpuid()
/linux/arch/x86/boot/
H A Dcpuflags.c17 u16 fcw = -1, fsw = -1; in has_fpu() local
27 : "+m" (fsw), "+m" (fcw)); in has_fpu()
29 return fsw == 0 && (fcw & 0x103f) == 0x003f; in has_fpu()
/linux/arch/x86/include/uapi/asm/
H A Dkvm.h173 __u16 fsw; member
/linux/tools/arch/x86/include/uapi/asm/
H A Dkvm.h173 __u16 fsw; member
/linux/arch/x86/kvm/
H A Demulate.c1123 u16 fsw; in em_fnstsw() local
1129 asm volatile("fnstsw %0": "+m"(fsw)); in em_fnstsw()
1132 ctxt->dst.val = fsw; in em_fnstsw()
H A Dx86.c12153 fpu->fsw = fxsave->swd; in kvm_arch_vcpu_ioctl_get_fpu()
12177 fxsave->swd = fpu->fsw; in kvm_arch_vcpu_ioctl_set_fpu()