/kernel/linux/linux-5.10/arch/powerpc/mm/ |
D | hugetlbpage.c | 46 unsigned int pshift, spinlock_t *ptl) in __hugepte_alloc() argument 53 if (pshift >= pdshift) { in __hugepte_alloc() 55 num_hugepd = 1 << (pshift - pdshift); in __hugepte_alloc() 57 cachep = PGT_CACHE(pdshift - pshift); in __hugepte_alloc() 68 BUG_ON(pshift > HUGEPD_SHIFT_MASK); in __hugepte_alloc() 91 hugepd_populate(hpdp, new, pshift); in __hugepte_alloc() 116 unsigned pshift = __ffs(sz); in huge_pte_alloc() local 125 if (pshift == PGDIR_SHIFT) in huge_pte_alloc() 128 else if (pshift > PUD_SHIFT) { in huge_pte_alloc() 139 if (pshift == PUD_SHIFT) in huge_pte_alloc() [all …]
|
D | slice.c | 283 int pshift = max_t(int, mmu_psize_defs[psize].shift, PAGE_SHIFT); in slice_find_area_bottomup() local 289 info.align_mask = PAGE_MASK & ((1ul << pshift) - 1); in slice_find_area_bottomup() 329 int pshift = max_t(int, mmu_psize_defs[psize].shift, PAGE_SHIFT); in slice_find_area_topdown() local 336 info.align_mask = PAGE_MASK & ((1ul << pshift) - 1); in slice_find_area_topdown() 438 int pshift = max_t(int, mmu_psize_defs[psize].shift, PAGE_SHIFT); in slice_get_unmapped_area() local 439 unsigned long page_size = 1UL << pshift; in slice_get_unmapped_area()
|
/kernel/linux/linux-5.10/drivers/clk/sprd/ |
D | pll.c | 21 #define pshift(pll, member) \ macro 29 GENMASK(pwidth(pll, member) + pshift(pll, member) - 1, \ 30 pshift(pll, member)) : 0) 36 (pinternal(pll, cfg, member) >> pshift(pll, member)) 76 shift = pshift(pll, PLL_REFIN); in pll_get_refin() 194 shift = pshift(pll, PLL_NINT); in _sprd_pll_set_rate() 201 shift = pshift(pll, PLL_KINT); in _sprd_pll_set_rate() 212 shift = pshift(pll, PLL_IBIAS); in _sprd_pll_set_rate()
|
/kernel/linux/linux-5.10/arch/powerpc/include/asm/nohash/ |
D | hugetlb-book3e.h | 31 static inline void hugepd_populate(hugepd_t *hpdp, pte_t *new, unsigned int pshift) in hugepd_populate() argument 34 *hpdp = __hugepd(((unsigned long)new & ~PD_HUGE) | pshift); in hugepd_populate()
|
/kernel/linux/linux-5.10/arch/powerpc/include/asm/nohash/32/ |
D | hugetlb-8xx.h | 33 static inline void hugepd_populate(hugepd_t *hpdp, pte_t *new, unsigned int pshift) in hugepd_populate() argument 38 static inline void hugepd_populate_kernel(hugepd_t *hpdp, pte_t *new, unsigned int pshift) in hugepd_populate_kernel() argument
|
/kernel/linux/linux-5.10/drivers/clk/sunxi/ |
D | clk-sun9i-core.c | 64 .pshift = 16, 172 .pshift = 0, 255 .pshift = 16,
|
D | clk-sunxi.c | 422 .pshift = 16, 443 .pshift = 16, 464 .pshift = 4, 471 .pshift = 4, 478 .pshift = 16, 486 .pshift = 20,
|
D | clk-factors.h | 17 u8 pshift; member
|
D | clk-sun6i-ar100.c | 59 .pshift = 4,
|
D | clk-factors.c | 60 p = FACTOR_GET(config->pshift, config->pwidth, reg); in clk_factors_recalc_rate() 156 reg = FACTOR_SET(config->pshift, config->pwidth, reg, req.p); in clk_factors_set_rate()
|
D | clk-mod0.c | 54 .pshift = 16,
|
/kernel/linux/linux-5.10/arch/powerpc/kvm/ |
D | book3s_hv_rm_mmu.c | 1064 unsigned int pshift; in mmio_cache_search() local 1070 pshift = entry->slb_base_pshift; in mmio_cache_search() 1071 if ((entry->eaddr >> pshift) == (eaddr >> pshift) && in mmio_cache_search() 1099 unsigned int pshift; in kvmppc_hv_find_lock_hpte() local 1110 pshift = 12; in kvmppc_hv_find_lock_hpte() 1114 pshift = slb_base_page_shift[(slb_v & SLB_VSID_LP) >> 4]; in kvmppc_hv_find_lock_hpte() 1124 hash = (vsid ^ ((eaddr & somask) >> pshift)) & kvmppc_hpt_mask(&kvm->arch.hpt); in kvmppc_hv_find_lock_hpte() 1128 if (pshift >= 24) in kvmppc_hv_find_lock_hpte() 1129 avpn &= ~((1UL << (pshift - 16)) - 1); in kvmppc_hv_find_lock_hpte() 1161 kvmppc_hpte_base_page_shift(v, r) == pshift) in kvmppc_hv_find_lock_hpte() [all …]
|
D | book3s_64_mmu_hv.c | 1242 int pshift; in resize_hpt_rehash_hpte() local 1311 pshift = kvmppc_hpte_base_page_shift(vpte, rpte); in resize_hpt_rehash_hpte() 1312 avpn = HPTE_V_AVPN_VAL(vpte) & ~(((1ul << pshift) - 1) >> 23); in resize_hpt_rehash_hpte() 1324 if (pshift < 23) in resize_hpt_rehash_hpte() 1325 offset |= ((vsid ^ pteg) & old_hash_mask) << pshift; in resize_hpt_rehash_hpte() 1327 hash = vsid ^ (offset >> pshift); in resize_hpt_rehash_hpte() 1334 if (pshift < 23) in resize_hpt_rehash_hpte() 1335 offset |= ((vsid ^ (vsid << 25) ^ pteg) & old_hash_mask) << pshift; in resize_hpt_rehash_hpte() 1337 hash = vsid ^ (vsid << 25) ^ (offset >> pshift); in resize_hpt_rehash_hpte() 1840 int pshift; in kvm_htab_write() local [all …]
|
D | book3s_64_mmu_radix.c | 303 unsigned int pshift, unsigned int lpid) in kvmppc_radix_tlbie_page() argument 310 if (pshift) in kvmppc_radix_tlbie_page() 311 psize = 1UL << pshift; in kvmppc_radix_tlbie_page() 313 pshift = PAGE_SHIFT; in kvmppc_radix_tlbie_page() 322 psi = shift_to_mmu_psize(pshift); in kvmppc_radix_tlbie_page()
|
/kernel/linux/linux-5.10/arch/powerpc/include/asm/book3s/64/ |
D | hugetlb.h | 102 static inline void hugepd_populate(hugepd_t *hpdp, pte_t *new, unsigned int pshift) in hugepd_populate() argument 104 *hpdp = __hugepd(__pa(new) | HUGEPD_VAL_BITS | (shift_to_mmu_psize(pshift) << 2)); in hugepd_populate()
|
/kernel/linux/linux-5.10/arch/powerpc/include/asm/ |
D | kvm_book3s.h | 194 unsigned int pshift, unsigned int lpid);
|
/kernel/linux/linux-5.10/arch/powerpc/mm/book3s64/ |
D | hash_utils.c | 774 unsigned pshift = mmu_psize_defs[mmu_virtual_psize].shift; in htab_shift_for_mem_size() local 782 pteg_shift = memshift - (pshift + 1); in htab_shift_for_mem_size()
|
/kernel/linux/linux-5.10/arch/x86/kernel/apic/ |
D | x2apic_uv_x.c | 909 static __init void map_high(char *id, unsigned long base, int pshift, int bshift, int max_pnode, en… in map_high() argument 913 paddr = base << pshift; in map_high()
|
/kernel/linux/linux-5.10/arch/x86/kvm/ |
D | x86.c | 2068 s8 *pshift, u32 *pmultiplier) in kvm_get_time_scale() argument 2091 *pshift = shift; in kvm_get_time_scale()
|