Searched refs:epn (Results 1 – 5 of 5) sorted by relevance
/u-boot/arch/powerpc/cpu/mpc85xx/ |
A D | tlb.c | 58 *epn = mfspr(MAS2) & MAS2_EPN; in read_tlbcam_entry() 73 unsigned long epn; in print_tlbcam() local 77 read_tlbcam_entry(i, &valid, &tsize, &epn, &rpn); in print_tlbcam() 79 i, (valid == 0) ? 0 : 1, (unsigned int)epn, in print_tlbcam() 138 void set_tlb(u8 tlb, u32 epn, u64 rpn, in set_tlb() argument 150 __func__, tsize, tlb, epn); in set_tlb() 156 _mas2 = FSL_BOOKE_MAS2(epn, wimge); in set_tlb() 229 unsigned long epn; in init_addr_map() local 233 read_tlbcam_entry(i, &valid, &tsize, &epn, &rpn); in init_addr_map() 235 addrmap_set_entry(epn, rpn, TSIZE_TO_BYTES(tsize), i); in init_addr_map() [all …]
|
A D | cpu.c | 487 void read_tlbcam_entry(int idx, u32 *valid, u32 *tsize, unsigned long *epn, 588 unsigned long epn; in reset_tlb() local 600 read_tlbcam_entry(ddr_esel, &valid, &tsize, &epn, phys_offset); in reset_tlb() 670 unsigned long epn; 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 184 lis \scratch, FSL_BOOKE_MAS2(\epn, \wimg)@h 185 ori \scratch, \scratch, FSL_BOOKE_MAS2(\epn, \wimg)@l 199 .macro create_tlb0_entry esel ts tsize epn wimg rpn perm phy_high scratch 206 lis \scratch, FSL_BOOKE_MAS2(\epn, \wimg)@h 207 ori \scratch, \scratch, FSL_BOOKE_MAS2(\epn, \wimg)@l 233 .macro delete_tlb0_entry esel epn wimg scratch 239 lis \scratch, FSL_BOOKE_MAS2(\epn, \wimg)@h 240 ori \scratch, \scratch, FSL_BOOKE_MAS2(\epn, \wimg)@l
|
/u-boot/arch/powerpc/include/asm/ |
A D | mmu.h | 453 #define FSL_BOOKE_MAS2(epn, wimge) \ argument 454 (((epn) & MAS3_RPN) | (wimge)) 499 extern void set_tlb(u8 tlb, u32 epn, u64 rpn,
|
/u-boot/drivers/usb/musb-new/ |
A D | musb_core.c | 1318 u8 epn = cfg->hw_ep_num; in ep_config_from_table() local 1320 if (epn >= musb->config->num_eps) { in ep_config_from_table() 1322 musb_driver_name, epn); in ep_config_from_table() 1325 offset = fifo_setup(musb, hw_ep + epn, cfg++, offset); in ep_config_from_table() 1328 musb_driver_name, epn); in ep_config_from_table() 1331 epn++; in ep_config_from_table() 1332 musb->nr_endpoints = max(epn, musb->nr_endpoints); in ep_config_from_table()
|
Completed in 17 milliseconds