Home
last modified time | relevance | path

Searched refs:fpc (Results 1 – 24 of 24) sorted by relevance

/linux-5.19.10/drivers/pwm/
Dpwm-fsl-ftm.c62 static void ftm_clear_write_protection(struct fsl_pwm_chip *fpc) in ftm_clear_write_protection() argument
66 regmap_read(fpc->regmap, FTM_FMS, &val); in ftm_clear_write_protection()
68 regmap_update_bits(fpc->regmap, FTM_MODE, FTM_MODE_WPDIS, in ftm_clear_write_protection()
72 static void ftm_set_write_protection(struct fsl_pwm_chip *fpc) in ftm_set_write_protection() argument
74 regmap_update_bits(fpc->regmap, FTM_FMS, FTM_FMS_WPEN, FTM_FMS_WPEN); in ftm_set_write_protection()
92 struct fsl_pwm_chip *fpc = to_fsl_chip(chip); in fsl_pwm_request() local
94 ret = clk_prepare_enable(fpc->ipg_clk); in fsl_pwm_request()
95 if (!ret && fpc->soc->has_enable_bits) { in fsl_pwm_request()
96 mutex_lock(&fpc->lock); in fsl_pwm_request()
97 regmap_update_bits(fpc->regmap, FTM_SC, BIT(pwm->hwpwm + 16), in fsl_pwm_request()
[all …]
/linux-5.19.10/arch/s390/kernel/
Dtraps.c124 static inline void do_fp_trap(struct pt_regs *regs, __u32 fpc) in do_fp_trap() argument
128 if ((fpc & 0x00000300) == 0) { in do_fp_trap()
130 if (fpc & 0x8000) /* invalid fp operation */ in do_fp_trap()
132 else if (fpc & 0x4000) /* div by 0 */ in do_fp_trap()
134 else if (fpc & 0x2000) /* overflow */ in do_fp_trap()
136 else if (fpc & 0x1000) /* underflow */ in do_fp_trap()
138 else if (fpc & 0x0800) /* inexact */ in do_fp_trap()
203 vic = (current->thread.fpu.fpc & 0xf00) >> 8; in vector_exception()
229 if (current->thread.fpu.fpc & FPC_DXC_MASK) in data_exception()
230 do_fp_trap(regs, current->thread.fpu.fpc); in data_exception()
Dfpu.c26 asm volatile("stfpc %0" : "=Q" (state->fpc)); in __kernel_fpu_begin()
108 asm volatile("lfpc %0" : : "Q" (state->fpc)); in __kernel_fpu_end()
184 asm volatile("lfpc %0" : : "Q" (state->fpc)); in __load_fpu_regs()
235 asm volatile("stfpc %0" : "=Q" (state->fpc)); in save_fpu_regs()
Dcrash_dump.c46 u32 fpc; member
96 memcpy(&sa->fpc, &lc->fpt_creg_save_area, sizeof(sa->fpc)); in save_area_add_regs()
380 memcpy(&nt_fpregset.fpc, &sa->fpc, sizeof(sa->fpc)); in fill_cpu_elf_notes()
Dptrace.c237 } else if (addr == offsetof(struct user, regs.fp_regs.fpc)) { in __peek_user()
241 tmp = child->thread.fpu.fpc; in __peek_user()
384 } else if (addr == offsetof(struct user, regs.fp_regs.fpc)) { in __poke_user()
391 child->thread.fpu.fpc = data >> (BITS_PER_LONG - 32); in __poke_user()
616 } else if (addr == offsetof(struct compat_user, regs.fp_regs.fpc)) { in __peek_user_compat()
620 tmp = child->thread.fpu.fpc; in __peek_user_compat()
742 } else if (addr == offsetof(struct compat_user, regs.fp_regs.fpc)) { in __poke_user_compat()
748 child->thread.fpu.fpc = data; in __poke_user_compat()
897 fp_regs.fpc = target->thread.fpu.fpc; in s390_fpregs_get()
921 u32 ufpc[2] = { target->thread.fpu.fpc, 0 }; in s390_fpregs_set()
[all …]
Dcompat_linux.h30 unsigned int fpc; member
Dprocess.c191 current->thread.fpu.fpc = 0; in execve_tail()
Dsignal.c153 if (test_fp_ctl(user_sregs.fpregs.fpc)) in restore_sigregs()
Dcompat_signal.c102 if (test_fp_ctl(user_sregs.fpregs.fpc)) in restore_sigregs32()
/linux-5.19.10/arch/s390/include/asm/fpu/
Dinternal.h44 fpregs->fpc = fpu->fpc; in fpregs_store()
54 fpu->fpc = fpregs->fpc; in fpregs_load()
Dtypes.h15 __u32 fpc; /* Floating-point control */ member
31 u32 fpc; member
Dapi.h54 static inline int test_fp_ctl(u32 fpc) in test_fp_ctl() argument
67 : "d" (fpc), "0" (-EINVAL)); in test_fp_ctl()
/linux-5.19.10/drivers/gpu/drm/nouveau/dispnv04/
Ddfp.c49 static inline bool is_fpc_off(uint32_t fpc) in is_fpc_off() argument
51 return ((fpc & (FP_TG_CONTROL_ON | FP_TG_CONTROL_OFF)) == in is_fpc_off()
118 uint32_t *fpc; in nv04_dfp_update_fp_control() local
122 fpc = &nv04_display(dev)->mode_reg.crtc_reg[nv_crtc->index].fp_control; in nv04_dfp_update_fp_control()
124 if (is_fpc_off(*fpc)) { in nv04_dfp_update_fp_control()
129 *fpc = nv_crtc->dpms_saved_fp_control; in nv04_dfp_update_fp_control()
133 NVWriteRAMDAC(dev, nv_crtc->index, NV_PRAMDAC_FP_TG_CONTROL, *fpc); in nv04_dfp_update_fp_control()
137 fpc = &nv04_display(dev)->mode_reg.crtc_reg[nv_crtc->index].fp_control; in nv04_dfp_update_fp_control()
140 if (!is_fpc_off(*fpc) && !nv_crtc->fp_users) { in nv04_dfp_update_fp_control()
141 nv_crtc->dpms_saved_fp_control = *fpc; in nv04_dfp_update_fp_control()
[all …]
/linux-5.19.10/drivers/media/platform/ti/omap3isp/
Dispccdc.c567 isp_reg_writel(isp, ccdc->fpc.dma, OMAP3_ISP_IOMEM_CCDC, in ccdc_configure_fpc()
570 isp_reg_writel(isp, (ccdc->fpc.fpnum << ISPCCDC_FPC_FPNUM_SHIFT), in ccdc_configure_fpc()
572 isp_reg_writel(isp, (ccdc->fpc.fpnum << ISPCCDC_FPC_FPNUM_SHIFT) | in ccdc_configure_fpc()
707 struct omap3isp_ccdc_fpc fpc; in ccdc_config() local
718 if (copy_from_user(&fpc, ccdc_struct->fpc, sizeof(fpc))) in ccdc_config()
721 size = fpc.fpnum * 4; in ccdc_config()
727 fpc_new.fpnum = fpc.fpnum; in ccdc_config()
735 (__force void __user *)(long)fpc.fpcaddr, in ccdc_config()
742 fpc_old = ccdc->fpc; in ccdc_config()
743 ccdc->fpc = fpc_new; in ccdc_config()
[all …]
Dispccdc.h143 struct ispccdc_fpc fpc; member
/linux-5.19.10/tools/arch/s390/include/uapi/asm/
Dkvm.h188 __u32 fpc; member
264 __u32 fpc; /* valid on KVM_SYNC_VRS or KVM_SYNC_FPRS */ member
Dptrace.h201 __u32 fpc; member
/linux-5.19.10/arch/s390/include/uapi/asm/
Dkvm.h188 __u32 fpc; member
264 __u32 fpc; /* valid on KVM_SYNC_VRS or KVM_SYNC_FPRS */ member
Dsigcontext.h56 unsigned int fpc; member
Dptrace.h201 __u32 fpc; member
/linux-5.19.10/tools/testing/selftests/kvm/s390x/
Dresets.c151 TEST_ASSERT(sync_regs->fpc == 0, "fpc == 0 (sync_regs)"); in assert_initial()
163 TEST_ASSERT(!fpu.fpc, "fpc == 0"); in assert_initial()
/linux-5.19.10/arch/s390/kvm/
Dkvm-s390.c3660 vcpu->run->s.regs.fpc = 0; in kvm_arch_vcpu_ioctl_initial_reset()
3736 if (test_fp_ctl(fpu->fpc)) { in kvm_arch_vcpu_ioctl_set_fpu()
3740 vcpu->run->s.regs.fpc = fpu->fpc; in kvm_arch_vcpu_ioctl_set_fpu()
3763 fpu->fpc = vcpu->run->s.regs.fpc; in kvm_arch_vcpu_ioctl_get_fpu()
4390 vcpu->arch.host_fpregs.fpc = current->thread.fpu.fpc; in sync_regs()
4396 current->thread.fpu.fpc = vcpu->run->s.regs.fpc; in sync_regs()
4397 if (test_fp_ctl(current->thread.fpu.fpc)) in sync_regs()
4399 current->thread.fpu.fpc = 0; in sync_regs()
4463 vcpu->run->s.regs.fpc = current->thread.fpu.fpc; in store_regs()
4465 current->thread.fpu.fpc = vcpu->arch.host_fpregs.fpc; in store_regs()
[all …]
Dinterrupt.c655 rc |= put_guest_lc(vcpu, current->thread.fpu.fpc, in __write_machine_check()
/linux-5.19.10/include/uapi/linux/
Domap3isp.h441 struct omap3isp_ccdc_fpc __user *fpc; member