Searched refs:rpn (Results 1 – 4 of 4) sorted by relevance
/u-boot/arch/powerpc/cpu/mpc85xx/ |
A D | tlb.c | 48 phys_addr_t *rpn) in read_tlbcam_entry() argument 59 *rpn = mfspr(MAS3) & MAS3_RPN; in read_tlbcam_entry() 61 *rpn |= ((u64)mfspr(MAS7)) << 32; in read_tlbcam_entry() 75 phys_addr_t rpn; in print_tlbcam() local 77 read_tlbcam_entry(i, &valid, &tsize, &epn, &rpn); in print_tlbcam() 80 (unsigned long long)rpn); in print_tlbcam() 138 void set_tlb(u8 tlb, u32 epn, u64 rpn, in set_tlb() argument 157 _mas3 = FSL_BOOKE_MAS3(rpn, 0, perms); in set_tlb() 158 _mas7 = FSL_BOOKE_MAS7(rpn); in set_tlb() 231 phys_addr_t rpn; in init_addr_map() local [all …]
|
A D | cpu.c | 488 phys_addr_t *rpn); 672 phys_addr_t rpn = 0; in arch_memory_test_cleanup() local 681 read_tlbcam_entry(ddr_esel, &valid, &tsize, &epn, &rpn); in arch_memory_test_cleanup()
|
A D | start.S | 177 .macro create_tlb1_entry esel ts tsize epn wimg rpn perm phy_high scratch 187 lis \scratch, FSL_BOOKE_MAS3(\rpn, 0, \perm)@h 188 ori \scratch, \scratch, FSL_BOOKE_MAS3(\rpn, 0, \perm)@l 199 .macro create_tlb0_entry esel ts tsize epn wimg rpn perm phy_high scratch 209 lis \scratch, FSL_BOOKE_MAS3(\rpn, 0, \perm)@h 210 ori \scratch, \scratch, FSL_BOOKE_MAS3(\rpn, 0, \perm)@l
|
/u-boot/arch/powerpc/include/asm/ |
A D | mmu.h | 18 unsigned long long rpn:52; member 24 unsigned long rpn:20; /* Real (physical) page number */ 455 #define FSL_BOOKE_MAS3(rpn, user, perms) \ argument 456 (((rpn) & MAS3_RPN) | (user) | (perms)) 457 #define FSL_BOOKE_MAS7(rpn) \ argument 458 (((u64)(rpn)) >> 32) 499 extern void set_tlb(u8 tlb, u32 epn, u64 rpn,
|
Completed in 9 milliseconds