Searched refs:pv (Results 1 - 25 of 54) sorted by path

123

/linux-master/arch/alpha/include/uapi/asm/
H A Dregdef.h39 #define pv t12 /* procedure-variable register */ macro
/linux-master/arch/arm/mm/
H A DMakefile24 obj-$(CONFIG_ARM_PV_FIXUP) += pv-fixup-asm.o
/linux-master/arch/mips/math-emu/
H A Dme-debugfs.c21 local_t *pv; local
24 pv = (void *)ps + (unsigned long)data;
25 sum += local_read(pv);
/linux-master/arch/powerpc/include/asm/
H A Dhvsi.h82 extern void hvsilib_init(struct hvsi_priv *pv,
88 extern int hvsilib_open(struct hvsi_priv *pv, struct hvc_struct *hp);
89 extern void hvsilib_close(struct hvsi_priv *pv, struct hvc_struct *hp);
90 extern int hvsilib_read_mctrl(struct hvsi_priv *pv);
91 extern int hvsilib_write_mctrl(struct hvsi_priv *pv, int dtr);
92 extern void hvsilib_establish(struct hvsi_priv *pv);
93 extern ssize_t hvsilib_get_chars(struct hvsi_priv *pv, u8 *buf, size_t count);
94 extern ssize_t hvsilib_put_chars(struct hvsi_priv *pv, const u8 *buf,
/linux-master/arch/s390/include/asm/
H A Dkvm_host.h769 struct kvm_s390_pv_vcpu pv; member in struct:kvm_vcpu_arch
828 /* subset of available UV-features for pv-guests enabled by user space */
997 struct kvm_s390_pv pv; member in struct:kvm_arch
/linux-master/arch/s390/kvm/
H A DMakefile11 kvm-y += diag.o gaccess.o guestdbg.o vsie.o pv.o
H A Dkvm-s390.c2556 if (kvm->arch.pv.dumping)
2570 kvm->arch.pv.dumping = true;
2578 if (!kvm->arch.pv.dumping)
2591 if (!kvm->arch.pv.dumping)
3417 INIT_LIST_HEAD(&kvm->arch.pv.need_cleanup);
3418 kvm->arch.pv.set_aside = NULL;
3463 * can mess with the pv state.
3472 if (kvm->arch.pv.mmu_notifier.ops)
3473 mmu_notifier_unregister(&kvm->arch.pv.mmu_notifier, kvm->mm);
5031 if (vcpu->kvm->arch.pv
[all...]
H A Dkvm-s390.h262 /* implemented in pv.c */
283 return kvm->arch.pv.handle;
288 return vcpu->arch.pv.handle;
H A Dpv.c60 kvm->arch.pv.handle = 0;
61 kvm->arch.pv.guest_len = 0;
62 kvm->arch.pv.stor_base = 0;
63 kvm->arch.pv.stor_var = NULL;
81 free_pages(vcpu->arch.pv.stor_base,
87 memset(&vcpu->arch.pv, 0, sizeof(vcpu->arch.pv));
112 vcpu->arch.pv.stor_base = __get_free_pages(GFP_KERNEL_ACCOUNT,
114 if (!vcpu->arch.pv.stor_base)
121 uvcb.stor_origin = virt_to_phys((void *)vcpu->arch.pv
[all...]
/linux-master/arch/x86/include/asm/
H A Dkvm_host.h1000 /* pv related host specific info */
1003 } pv; member in struct:kvm_vcpu_arch
1020 /* pv related cpuid info */
1029 * indicates whether pv emulation should be disabled if features
/linux-master/arch/x86/kvm/
H A Dlapic.c928 * this makes sure pv eoi is only enabled when we know it's safe.
1337 vcpu->arch.pv.pv_unhalted = 1;
H A Dx86.c5698 * does not support pv clocks.
11222 vcpu->arch.pv.pv_unhalted = false;
11686 vcpu->arch.pv.pv_unhalted)
13128 if (vcpu->arch.pv.pv_unhalted)
13186 if (READ_ONCE(vcpu->arch.pv.pv_unhalted))
/linux-master/drivers/clk/
H A Dclk.c5370 u32 pv; local
5386 of_property_for_each_u32(clkspec.np, "clock-indices", prop, vp, pv) {
5387 if (index == pv) {
/linux-master/drivers/gpu/drm/nouveau/dispnv04/
H A Dcrtc.c126 struct nvkm_pll_vals *pv = &regp->pllvals; local
134 pv->NM2 = 0;
150 if (!clk->pll_calc(clk, &pll_lim, dot_clock, pv))
164 if (pv->NM2)
166 pv->N1, pv->N2, pv->M1, pv->M2, pv->log2P);
169 pv
[all...]
H A Dhw.c205 nouveau_hw_pllvals_to_clk(struct nvkm_pll_vals *pv) argument
208 if (!pv->M1 || !pv->M2)
211 return pv->N1 * pv->N2 * pv->refclk / (pv->M1 * pv->M2) >> pv->log2P;
265 struct nvkm_pll_vals pv; local
[all...]
/linux-master/drivers/gpu/drm/nouveau/include/nvkm/subdev/
H A Dclk.h116 struct nvkm_pll_vals *pv);
117 int (*pll_prog)(struct nvkm_clk *, u32 reg1, struct nvkm_pll_vals *pv);
/linux-master/drivers/gpu/drm/nouveau/nvkm/subdev/clk/
H A Dnv04.c33 int clk, struct nvkm_pll_vals *pv)
38 pv->refclk = info->refclk;
39 pv->N1 = N1;
40 pv->M1 = M1;
41 pv->N2 = N2;
42 pv->M2 = M2;
43 pv->log2P = P;
49 nv04_clk_pll_prog(struct nvkm_clk *clk, u32 reg1, struct nvkm_pll_vals *pv) argument
58 setPLL_double_highregs(devinit, reg1, pv);
60 setPLL_double_lowregs(devinit, reg1, pv);
32 nv04_clk_pll_calc(struct nvkm_clk *clock, struct nvbios_pll *info, int clk, struct nvkm_pll_vals *pv) argument
[all...]
/linux-master/drivers/gpu/drm/nouveau/nvkm/subdev/devinit/
H A Dnv04.c144 struct nvkm_pll_vals *pv)
150 uint32_t pll = (oldpll & 0xfff80000) | pv->log2P << 16 | pv->NM1;
164 if (oldM && pv->M1 && (oldN / oldM < pv->N1 / pv->M1))
166 nvkm_wr32(device, reg, pv->log2P << 16 | (oldpll & 0xffff));
169 nvkm_wr32(device, reg, (oldpll & 0xffff0000) | pv->NM1);
199 struct nvkm_pll_vals *pv)
207 uint32_t pll1 = (oldpll1 & 0xfff80000) | pv
143 setPLL_single(struct nvkm_devinit *init, u32 reg, struct nvkm_pll_vals *pv) argument
198 setPLL_double_highregs(struct nvkm_devinit *init, u32 reg1, struct nvkm_pll_vals *pv) argument
276 setPLL_double_lowregs(struct nvkm_devinit *init, u32 NMNMreg, struct nvkm_pll_vals *pv) argument
360 struct nvkm_pll_vals pv; local
[all...]
/linux-master/drivers/hte/
H A Dhte-tegra194.c603 u32 tsh, tsl, src, pv, cv, acv, slice, bit_index, line_id; local
618 pv = tegra_hte_readl(gs, HTE_TEPCV);
620 acv = pv ^ cv;
/linux-master/drivers/input/touchscreen/
H A Dili210x.c439 u8 pv[2]; local
443 &pv, sizeof(pv));
445 memcpy(priv->version_proto, pv, sizeof(pv));
534 u8 *pv = priv->version_proto; local
536 return sysfs_emit(buf, "%02x.%02x\n", pv[0], pv[1]);
/linux-master/drivers/isdn/hardware/mISDN/
H A Dhfcmulti.c885 u_int pv; local
914 pv = readl(plx_acc_32);
915 pv &= ~PLX_SYNC_O_EN;
916 writel(pv, plx_acc_32);
936 pv = readl(plx_acc_32);
937 pv |= PLX_SYNC_O_EN;
938 writel(pv, plx_acc_32);
967 pv = readl(plx_acc_32);
968 pv |= PLX_SYNC_O_EN;
969 writel(pv, plx_acc_3
1012 u_int pv; local
1083 u_int pv; local
[all...]
/linux-master/drivers/macintosh/
H A Dwindfarm_ad7417_sensor.c38 struct wf_ad7417_priv *pv = sr->priv; local
44 mutex_lock(&pv->lock);
48 rc = i2c_master_send(pv->i2c, buf, 1);
51 rc = i2c_master_recv(pv->i2c, buf, 2);
61 mutex_unlock(&pv->lock);
65 mutex_unlock(&pv->lock);
79 static void wf_ad7417_adc_convert(struct wf_ad7417_priv *pv, argument
84 *value = (raw * (s32)pv->mpu->mdiode +
85 ((s32)pv->mpu->bdiode << 12)) >> 2;
101 struct wf_ad7417_priv *pv local
154 struct wf_ad7417_priv *pv = container_of(ref, local
161 struct wf_ad7417_priv *pv = sr->priv; local
179 wf_ad7417_add_sensor(struct wf_ad7417_priv *pv, int index, const char *name, const struct wf_sensor_ops *ops) argument
190 wf_ad7417_init_chip(struct wf_ad7417_priv *pv) argument
234 struct wf_ad7417_priv *pv; local
293 struct wf_ad7417_priv *pv = dev_get_drvdata(&client->dev); local
[all...]
H A Dwindfarm_fcu_controls.c73 struct wf_fcu_priv *pv = container_of(ref, struct wf_fcu_priv, ref); local
75 kfree(pv);
86 static int wf_fcu_read_reg(struct wf_fcu_priv *pv, int reg, argument
91 mutex_lock(&pv->lock);
96 nw = i2c_master_send(pv->i2c, buf, 1);
109 nr = i2c_master_recv(pv->i2c, buf, nb);
118 mutex_unlock(&pv->lock);
122 static int wf_fcu_write_reg(struct wf_fcu_priv *pv, int reg, argument
133 nw = i2c_master_send(pv->i2c, buf, nb);
147 struct wf_fcu_priv *pv local
169 struct wf_fcu_priv *pv = fan->fcu_priv; local
204 struct wf_fcu_priv *pv = fan->fcu_priv; local
226 struct wf_fcu_priv *pv = fan->fcu_priv; local
321 struct wf_fcu_priv *pv = fan->fcu_priv; local
361 wf_fcu_add_fan(struct wf_fcu_priv *pv, const char *name, int type, int id) argument
400 wf_fcu_lookup_fans(struct wf_fcu_priv *pv) argument
480 wf_fcu_default_fans(struct wf_fcu_priv *pv) argument
495 wf_fcu_init_chip(struct wf_fcu_priv *pv) argument
519 struct wf_fcu_priv *pv; local
564 struct wf_fcu_priv *pv = dev_get_drvdata(&client->dev); local
[all...]
/linux-master/drivers/media/radio/si4713/
H A Dsi4713.c256 * @pv: property value to be returned on success
258 static int si4713_read_property(struct si4713_device *sdev, u16 prop, u32 *pv) argument
280 *pv = compose_u16(val[2], val[3]);
284 __func__, prop, *pv, val[0]);
/linux-master/drivers/misc/
H A Dfastrpc.c127 u64 pv; /* buffer pointer */ member in struct:fastrpc_remote_buf
974 rpra[i].buf.pv = 0;
985 rpra[i].buf.pv = (u64) ctx->args[i].ptr;
1012 rpra[i].buf.pv = args - ctx->olaps[oix].offset;
1026 void *dst = (void *)(uintptr_t)rpra[i].buf.pv;
1080 void *src = (void *)(uintptr_t)rpra[i].buf.pv;

Completed in 550 milliseconds

123