Home
last modified time | relevance | path

Searched refs:vc (Results 1 – 12 of 12) sorted by relevance

/arch/arm/mach-omap2/
Dvc.c87 struct omap_vc_channel *vc = voltdm->vc; in omap_vc_config_channel() local
93 if (vc->flags & OMAP_VC_CHANNEL_DEFAULT) in omap_vc_config_channel()
94 vc->cfg_channel &= vc_cfg_bits->racen; in omap_vc_config_channel()
96 voltdm->rmw(CFG_CHANNEL_MASK << vc->cfg_channel_sa_shift, in omap_vc_config_channel()
97 vc->cfg_channel << vc->cfg_channel_sa_shift, in omap_vc_config_channel()
98 vc->cfg_channel_reg); in omap_vc_config_channel()
108 struct omap_vc_channel *vc = voltdm->vc; in omap_vc_pre_scale() local
135 vc_cmdval = voltdm->read(vc->cmdval_reg); in omap_vc_pre_scale()
136 vc_cmdval &= ~vc->common->cmd_on_mask; in omap_vc_pre_scale()
137 vc_cmdval |= (*target_vsel << vc->common->cmd_on_shift); in omap_vc_pre_scale()
[all …]
Dvoltagedomains44xx_data.c53 .vc = &omap4_vc_mpu,
64 .vc = &omap4_vc_iva,
75 .vc = &omap4_vc_core,
Dvoltagedomains3xxx_data.c58 .vc = &omap3_vc_mpu,
69 .vc = &omap3_vc_core,
Dvoltage.h71 struct omap_vc_channel *vc; member
Dvoltage.c274 if (voltdm->vc) { in omap_voltage_late_init()
DMakefile98 voltagedomain-common := voltage.o vc.o vp.o
/arch/mips/math-emu/
Dieee754int.h78 #define EXPLODESP(v, vc, vs, ve, vm) \ argument
85 vc = IEEE754_CLASS_INF;\
87 vc = IEEE754_CLASS_SNAN;\
89 vc = IEEE754_CLASS_QNAN;\
93 vc = IEEE754_CLASS_DNORM;\
95 vc = IEEE754_CLASS_ZERO;\
99 vc = IEEE754_CLASS_NORM;\
112 #define EXPLODEDP(v, vc, vs, ve, vm) \ argument
119 vc = IEEE754_CLASS_INF;\
121 vc = IEEE754_CLASS_SNAN;\
[all …]
/arch/powerpc/math-emu/
Dmath_efp.c185 union dw_union vc, va, vb; in do_spe_mathemu() local
202 vc.wp[0] = current->thread.evr[fc]; in do_spe_mathemu()
203 vc.wp[1] = regs->gpr[fc]; in do_spe_mathemu()
212 pr_debug("vc: %08x %08x\n", vc.wp[0], vc.wp[1]); in do_spe_mathemu()
237 vc.wp[1] = va.wp[1] & ~SIGN_BIT_S; in do_spe_mathemu()
241 vc.wp[1] = va.wp[1] | SIGN_BIT_S; in do_spe_mathemu()
245 vc.wp[1] = va.wp[1] ^ SIGN_BIT_S; in do_spe_mathemu()
282 vc.wp[1] = 0x0; in do_spe_mathemu()
285 vc.wp[1] = (func == EFSCTSF) ? in do_spe_mathemu()
288 vc.wp[1] = (func == EFSCTSF) ? in do_spe_mathemu()
[all …]
/arch/powerpc/kvm/
Dbook3s_hv.c555 static void kvmppc_remove_runnable(struct kvmppc_vcore *vc, in kvmppc_remove_runnable() argument
563 --vc->n_runnable; in kvmppc_remove_runnable()
564 ++vc->n_busy; in kvmppc_remove_runnable()
567 list_for_each_entry_continue(v, &vc->runnable_threads, arch.run_list) in kvmppc_remove_runnable()
576 struct kvmppc_vcore *vc = vcpu->arch.vcore; in kvmppc_start_thread() local
582 cpu = vc->pcpu + vcpu->arch.ptid; in kvmppc_start_thread()
585 tpaca->kvm_hstate.kvm_vcore = vc; in kvmppc_start_thread()
587 vcpu->cpu = vc->pcpu; in kvmppc_start_thread()
594 ++vc->n_woken; in kvmppc_start_thread()
599 static void kvmppc_wait_for_nap(struct kvmppc_vcore *vc) in kvmppc_wait_for_nap() argument
[all …]
/arch/alpha/math-emu/
Dmath.c105 unsigned long res, va, vb, vc, swcr, fpcr; in alpha_fp_emul() local
174 vc = 0x4000000000000000UL; in alpha_fp_emul()
184 case FOP_FNC_CMPxUN: if (res != 3) vc = 0; break; in alpha_fp_emul()
185 case FOP_FNC_CMPxEQ: if (res) vc = 0; break; in alpha_fp_emul()
186 case FOP_FNC_CMPxLT: if (res != -1) vc = 0; break; in alpha_fp_emul()
187 case FOP_FNC_CMPxLE: if ((long)res > 0) vc = 0; break; in alpha_fp_emul()
237 vc = 0; in alpha_fp_emul()
239 FP_TO_INT_ROUND_D(vc, DB, 64, 2); in alpha_fp_emul()
253 vc = ((vb & 0xc0000000) << 32 | /* sign and msb */ in alpha_fp_emul()
271 FP_PACK_SP(&vc, SR); in alpha_fp_emul()
[all …]
/arch/powerpc/kernel/
Dvecemu.c262 unsigned int va, vb, vc, vd; in emulate_altivec() local
272 vc = (instr >> 6) & 0x1f; in emulate_altivec()
277 switch (vc) { in emulate_altivec()
335 vmaddfp(&vrs[vd], &vrs[va], &vrs[vb], &vrs[vc]); in emulate_altivec()
338 vnmsubfp(&vrs[vd], &vrs[va], &vrs[vb], &vrs[vc]); in emulate_altivec()
/arch/powerpc/include/asm/
Dkvm_host.h268 #define VCORE_ENTRY_COUNT(vc) ((vc)->entry_exit_count & 0xff) argument
269 #define VCORE_EXIT_COUNT(vc) ((vc)->entry_exit_count >> 8) argument