/kernel/linux/linux-5.10/arch/x86/include/asm/xen/ |
D | page.h | 59 extern bool set_phys_to_machine(unsigned long pfn, unsigned long mfn); 60 extern bool __set_phys_to_machine(unsigned long pfn, unsigned long mfn); 143 unsigned long mfn; in __pfn_to_mfn() local 146 mfn = xen_p2m_addr[pfn]; in __pfn_to_mfn() 152 if (unlikely(mfn == INVALID_P2M_ENTRY)) in __pfn_to_mfn() 155 return mfn; in __pfn_to_mfn() 166 unsigned long mfn; in pfn_to_mfn() local 176 mfn = __pfn_to_mfn(pfn); in pfn_to_mfn() 178 if (mfn != INVALID_P2M_ENTRY) in pfn_to_mfn() 179 mfn &= ~(FOREIGN_FRAME_BIT | IDENTITY_FRAME_BIT); in pfn_to_mfn() [all …]
|
/kernel/linux/linux-5.10/include/xen/arm/ |
D | page.h | 60 unsigned long mfn; in pfn_to_bfn() local 63 mfn = __pfn_to_mfn(pfn); in pfn_to_bfn() 64 if (mfn != INVALID_P2M_ENTRY) in pfn_to_bfn() 65 return mfn; in pfn_to_bfn() 103 bool __set_phys_to_machine(unsigned long pfn, unsigned long mfn); 104 bool __set_phys_to_machine_multi(unsigned long pfn, unsigned long mfn, 107 static inline bool set_phys_to_machine(unsigned long pfn, unsigned long mfn) in set_phys_to_machine() argument 109 return __set_phys_to_machine(pfn, mfn); in set_phys_to_machine()
|
/kernel/linux/linux-5.10/drivers/clk/imx/ |
D | clk-pllv1.c | 48 static inline bool mfn_is_negative(struct clk_pllv1 *pll, unsigned int mfn) in mfn_is_negative() argument 50 return !is_imx1_pllv1(pll) && !is_imx21_pllv1(pll) && (mfn & MFN_SIGN); in mfn_is_negative() 59 unsigned int mfi, mfn, mfd, pd; in clk_pllv1_recalc_rate() local 76 mfn = reg & 0x3ff; in clk_pllv1_recalc_rate() 82 mfn_abs = mfn; in clk_pllv1_recalc_rate() 89 if (mfn_is_negative(pll, mfn)) { in clk_pllv1_recalc_rate() 91 mfn_abs = mfn & MFN_MASK; in clk_pllv1_recalc_rate() 93 mfn_abs = BIT(MFN_BITS) - mfn; in clk_pllv1_recalc_rate() 103 if (mfn_is_negative(pll, mfn)) in clk_pllv1_recalc_rate()
|
D | clk-pllv4.c | 72 u32 mult, mfn, mfd; in clk_pllv4_recalc_rate() local 79 mfn = readl_relaxed(pll->base + PLL_NUM_OFFSET); in clk_pllv4_recalc_rate() 82 temp64 *= mfn; in clk_pllv4_recalc_rate() 93 u32 mfn, mfd = DEFAULT_MFD; in clk_pllv4_round_rate() local 117 mfn = temp64; in clk_pllv4_round_rate() 125 if (mfn >= mfd) in clk_pllv4_round_rate() 129 temp64 *= mfn; in clk_pllv4_round_rate() 152 u32 val, mult, mfn, mfd = DEFAULT_MFD; in clk_pllv4_set_rate() local 166 mfn = temp64; in clk_pllv4_set_rate() 173 writel_relaxed(mfn, pll->base + PLL_NUM_OFFSET); in clk_pllv4_set_rate()
|
D | clk-pllv3.c | 217 u32 mfn = readl_relaxed(pll->base + pll->num_offset); in clk_pllv3_av_recalc_rate() local 222 temp64 *= mfn; in clk_pllv3_av_recalc_rate() 235 u32 mfn, mfd = 1000000; in clk_pllv3_av_round_rate() local 251 mfn = temp64; in clk_pllv3_av_round_rate() 254 temp64 *= mfn; in clk_pllv3_av_round_rate() 267 u32 mfn, mfd = 1000000; in clk_pllv3_av_set_rate() local 281 mfn = temp64; in clk_pllv3_av_set_rate() 287 writel_relaxed(mfn, pll->base + pll->num_offset); in clk_pllv3_av_set_rate() 304 u32 mfn; /* numerator, 30-bit value */ member 314 temp64 *= mf.mfn; in clk_pllv3_vf610_mf_to_rate() [all …]
|
D | clk-pllv2.c | 81 long mfi, mfn, mfd, pdf, ref_clk; in __clk_pllv2_recalc_rate() local 91 mfn = dp_mfn & MXC_PLL_DP_MFN_MASK; in __clk_pllv2_recalc_rate() 92 mfn = sign_extend32(mfn, 26); in __clk_pllv2_recalc_rate() 99 temp = (u64) ref_clk * abs(mfn); in __clk_pllv2_recalc_rate() 101 if (mfn < 0) in __clk_pllv2_recalc_rate() 130 long mfi, pdf, mfn, mfd = 999999; in __clk_pllv2_set_rate() local 144 mfn = (long)temp64; in __clk_pllv2_set_rate() 150 *dp_mfn = mfn; in __clk_pllv2_set_rate()
|
/kernel/linux/linux-5.10/arch/arm/xen/ |
D | p2m.c | 23 unsigned long mfn; member 58 __func__, &new->pfn, &new->mfn, &entry->pfn, &entry->mfn); in xen_add_phys_to_mach_entry() 74 unsigned long mfn = entry->mfn + (pfn - entry->pfn); in __pfn_to_mfn() local 76 return mfn; in __pfn_to_mfn() 151 unsigned long mfn, unsigned long nr_pages) in __set_phys_to_machine_multi() argument 158 if (mfn == INVALID_P2M_ENTRY) { in __set_phys_to_machine_multi() 184 p2m_entry->mfn = mfn; in __set_phys_to_machine_multi() 198 bool __set_phys_to_machine(unsigned long pfn, unsigned long mfn) in __set_phys_to_machine() argument 200 return __set_phys_to_machine_multi(pfn, mfn, 1); in __set_phys_to_machine()
|
/kernel/linux/linux-5.10/arch/x86/xen/ |
D | p2m.c | 219 unsigned long pfn, mfn; in xen_build_mfn_list_list() local 251 mfn = pte_mfn(*ptep); in xen_build_mfn_list_list() 274 mid_mfn_p[mididx] = mfn; in xen_build_mfn_list_list() 315 unsigned long mfn; in xen_p2m_elem_type() local 320 mfn = xen_p2m_addr[pfn]; in xen_p2m_elem_type() 322 if (mfn == INVALID_P2M_ENTRY) in xen_p2m_elem_type() 325 if (mfn & IDENTITY_FRAME_BIT) in xen_p2m_elem_type() 650 bool __set_phys_to_machine(unsigned long pfn, unsigned long mfn) in __set_phys_to_machine() argument 657 return mfn == INVALID_P2M_ENTRY; in __set_phys_to_machine() 663 if (likely(!xen_safe_write_ulong(xen_p2m_addr + pfn, mfn))) in __set_phys_to_machine() [all …]
|
D | suspend_pv.c | 16 xen_start_info->console.domU.mfn = in xen_pv_pre_suspend() 17 mfn_to_pfn(xen_start_info->console.domU.mfn); in xen_pv_pre_suspend() 37 xen_start_info->console.domU.mfn = in xen_pv_post_suspend() 38 pfn_to_mfn(xen_start_info->console.domU.mfn); in xen_pv_post_suspend()
|
D | setup.c | 236 static int __init xen_free_mfn(unsigned long mfn) in xen_free_mfn() argument 244 set_xen_guest_handle(reservation.extent_start, &mfn); in xen_free_mfn() 265 unsigned long mfn = pfn_to_mfn(pfn); in xen_set_identity_and_release_chunk() local 268 if (mfn == INVALID_P2M_ENTRY || mfn_to_pfn(mfn) != pfn) in xen_set_identity_and_release_chunk() 271 ret = xen_free_mfn(mfn); in xen_set_identity_and_release_chunk() 288 static void __init xen_update_mem_tables(unsigned long pfn, unsigned long mfn) in xen_update_mem_tables() argument 291 .ptr = ((uint64_t)mfn << PAGE_SHIFT) | MMU_MACHPHYS_UPDATE, in xen_update_mem_tables() 296 if (!set_phys_to_machine(pfn, mfn)) { in xen_update_mem_tables() 298 pfn, mfn); in xen_update_mem_tables() 305 mfn, pfn); in xen_update_mem_tables() [all …]
|
D | mmu_pv.c | 244 void set_pte_mfn(unsigned long vaddr, unsigned long mfn, pgprot_t flags) in set_pte_mfn() argument 246 set_pte_vaddr(vaddr, mfn_pte(mfn, flags)); in set_pte_mfn() 315 unsigned long mfn = (val & XEN_PTE_MFN_MASK) >> PAGE_SHIFT; in pte_mfn_to_pfn() local 316 unsigned long pfn = mfn_to_pfn(mfn); in pte_mfn_to_pfn() 333 unsigned long mfn; in pte_pfn_to_mfn() local 335 mfn = __pfn_to_mfn(pfn); in pte_pfn_to_mfn() 343 if (unlikely(mfn == INVALID_P2M_ENTRY)) { in pte_pfn_to_mfn() 344 mfn = 0; in pte_pfn_to_mfn() 347 mfn &= ~(FOREIGN_FRAME_BIT | IDENTITY_FRAME_BIT); in pte_pfn_to_mfn() 348 val = ((pteval_t)mfn << PAGE_SHIFT) | flags; in pte_pfn_to_mfn() [all …]
|
D | mmu.h | 16 bool __set_phys_to_machine(unsigned long pfn, unsigned long mfn);
|
D | enlighten_pv.c | 442 unsigned long pfn, mfn; in xen_load_gdt() local 462 mfn = pfn_to_mfn(pfn); in xen_load_gdt() 468 if (HYPERVISOR_set_gdt(&mfn, size / sizeof(struct desc_struct))) in xen_load_gdt() 479 unsigned long pfn, mfn; in xen_load_gdt_boot() local 487 mfn = pfn_to_mfn(pfn); in xen_load_gdt_boot() 494 if (HYPERVISOR_set_gdt(&mfn, size / sizeof(struct desc_struct))) in xen_load_gdt_boot() 1379 xen_start_info->console.domU.mfn = 0; in xen_start_kernel()
|
/kernel/linux/linux-5.10/arch/powerpc/boot/ |
D | mpc8xx.c | 24 int mfi, mfn, mfd, pdf; in mpc885_get_clock() local 44 mfn = (plprcr >> 27) & 0x1f; in mpc885_get_clock() 48 if (mfn != 0) in mpc885_get_clock() 49 ret += crystal * mfn / (mfd + 1); in mpc885_get_clock()
|
/kernel/linux/linux-5.10/drivers/gpu/drm/i915/gvt/ |
D | trace.h | 43 TP_PROTO(int id, void *spt, int type, unsigned long mfn, 46 TP_ARGS(id, spt, type, mfn, gpt_gfn), 52 __field(unsigned long, mfn) 60 __entry->mfn = mfn; 68 __entry->mfn,
|
D | opregion.c | 260 u64 mfn; in map_vgpu_opregion() local 264 mfn = intel_gvt_hypervisor_virt_to_mfn(vgpu_opregion(vgpu)->va in map_vgpu_opregion() 266 if (mfn == INTEL_GVT_INVALID_ADDR) { in map_vgpu_opregion() 272 mfn, 1, map); in map_vgpu_opregion()
|
D | mpt.h | 285 unsigned long mfn, unsigned int nr, in intel_gvt_hypervisor_map_gfn_to_mfn() argument 292 return intel_gvt_host.mpt->map_gfn_to_mfn(vgpu->handle, gfn, mfn, nr, in intel_gvt_hypervisor_map_gfn_to_mfn()
|
D | hypercall.h | 72 unsigned long mfn, unsigned int nr, bool map);
|
/kernel/linux/linux-5.10/include/xen/ |
D | xen-ops.h | 170 unsigned long addr, xen_pfn_t *mfn, in xen_remap_domain_mfn_array() argument 178 return xen_remap_pfn(vma, addr, mfn, nr, err_ptr, prot, domid, in xen_remap_domain_mfn_array()
|
/kernel/linux/linux-5.10/include/xen/interface/ |
D | xen.h | 363 xen_pfn_t mfn; member 645 xen_pfn_t mfn; /* MACHINE page number of console page. */ member
|
D | vcpu.h | 173 uint64_t mfn; /* mfn of page to place vcpu_info */ member
|
D | platform.h | 66 xen_pfn_t mfn; member 96 xen_pfn_t mfn; member
|
/kernel/linux/patches/linux-5.10/prebuilts/usr/include/xen/ |
D | privcmd.h | 30 __u64 mfn; member
|
/kernel/linux/patches/linux-4.19/prebuilts/usr/include/xen/ |
D | privcmd.h | 18 __u64 mfn; member
|
/kernel/linux/linux-5.10/include/uapi/xen/ |
D | privcmd.h | 52 __u64 mfn; member
|