📄 tlbex-r4k.s
字号:
PTE_L pte, (ptr); /* This places the even/odd pte pair in the page * table at PTR into ENTRYLO0 and ENTRYLO1 using * TMP as a scratch register. */#define PTE_RELOAD(ptr, tmp) \ ori ptr, ptr, PTE_SIZE; \ xori ptr, ptr, PTE_SIZE; \ PTE_L tmp, PTE_SIZE(ptr); \ PTE_L ptr, 0(ptr); \ PTE_SRL tmp, tmp, 6; \ P_MTC0 tmp, CP0_ENTRYLO1; \ PTE_SRL ptr, ptr, 6; \ P_MTC0 ptr, CP0_ENTRYLO0;#define DO_FAULT(write) \ .set noat; \ SAVE_ALL; \ mfc0 a2, CP0_BADVADDR; \ KMODE; \ .set at; \ move a0, sp; \ jal do_page_fault; \ li a1, write; \ j ret_from_exception; \ nop; \ .set noat; /* Check is PTE is present, if not then jump to LABEL. * PTR points to the page table where this PTE is located, * when the macro is done executing PTE will be restored * with it's original value. */#define PTE_PRESENT(pte, ptr, label) \ andi pte, pte, (_PAGE_PRESENT | _PAGE_READ); \ xori pte, pte, (_PAGE_PRESENT | _PAGE_READ); \ bnez pte, label; \ PTE_L pte, (ptr); /* Make PTE valid, store result in PTR. */#define PTE_MAKEVALID(pte, ptr) \ ori pte, pte, (_PAGE_VALID | _PAGE_ACCESSED); \ PTE_S pte, (ptr); /* Check if PTE can be written to, if not branch to LABEL. * Regardless restore PTE with value from PTR when done. */#define PTE_WRITABLE(pte, ptr, label) \ andi pte, pte, (_PAGE_PRESENT | _PAGE_WRITE); \ xori pte, pte, (_PAGE_PRESENT | _PAGE_WRITE); \ bnez pte, label; \ PTE_L pte, (ptr); /* Make PTE writable, update software status bits as well, * then store at PTR. */#define PTE_MAKEWRITE(pte, ptr) \ ori pte, pte, (_PAGE_ACCESSED | _PAGE_MODIFIED | \ _PAGE_VALID | _PAGE_DIRTY); \ PTE_S pte, (ptr); .set noreorder/* * From the IDT errata for the QED RM5230 (Nevada), processor revision 1.0: * 2. A timing hazard exists for the TLBP instruction. * * stalling_instruction * TLBP * * The JTLB is being read for the TLBP throughout the stall generated by the * previous instruction. This is not really correct as the stalling instruction * can modify the address used to access the JTLB. The failure symptom is that * the TLBP instruction will use an address created for the stalling instruction * and not the address held in C0_ENHI and thus report the wrong results. * * The software work-around is to not allow the instruction preceding the TLBP * to stall - make it an NOP or some other instruction guaranteed not to stall. * * Errata 2 will not be fixed. This errata is also on the R5000. * * As if we MIPS hackers wouldn't know how to nop pipelines happy ... */#define R5K_HAZARD nop /* * Note for many R4k variants tlb probes cannot be executed out * of the instruction cache else you get bogus results. */ .align 5 NESTED(handle_tlbl, PT_SIZE, sp) .set noatinvalid_tlbl:#ifdef TLB_OPTIMIZE /* Test present bit in entry. */ LOAD_PTE(k0, k1) R5K_HAZARD tlbp PTE_PRESENT(k0, k1, nopage_tlbl) PTE_MAKEVALID(k0, k1) PTE_RELOAD(k1, k0) nop b 1f tlbwi1: nop .set mips3 eret .set mips0#endifnopage_tlbl: DO_FAULT(0) END(handle_tlbl) .align 5 NESTED(handle_tlbs, PT_SIZE, sp) .set noat#ifdef TLB_OPTIMIZE .set mips3 li k0,0 LOAD_PTE(k0, k1) R5K_HAZARD tlbp # find faulting entry PTE_WRITABLE(k0, k1, nopage_tlbs) PTE_MAKEWRITE(k0, k1) PTE_RELOAD(k1, k0) nop b 1f tlbwi1: nop .set mips3 eret .set mips0#endifnopage_tlbs: DO_FAULT(1) END(handle_tlbs) .align 5 NESTED(handle_mod, PT_SIZE, sp) .set noat#ifdef TLB_OPTIMIZE .set mips3 LOAD_PTE(k0, k1) R5K_HAZARD tlbp # find faulting entry andi k0, k0, _PAGE_WRITE beqz k0, nowrite_mod PTE_L k0, (k1) /* Present and writable bits set, set accessed and dirty bits. */ PTE_MAKEWRITE(k0, k1) /* Now reload the entry into the tlb. */ PTE_RELOAD(k1, k0) nop b 1f tlbwi1: nop .set mips3 eret .set mips0#endifnowrite_mod: DO_FAULT(1) END(handle_mod)#ifdef CONFIG_MIPS_AU1000#ifdef CONFIG_MIPS_PB1500#define PSEUDO_ADDR_BASE 0x20000000#endif#ifdef CONFIG_MIPS_PB1000#define PSEUDO_ADDR_BASE 0xC0000000#endif/* * On entry k0 contains the pte with the pseudo address. * On exit, k0 contains the "real" address, which is a * 36 bit physicall address. * This function is called only after it has been * determined that the pte is a pseudo physical address. * * Destroys k0, k1, and at. It's assumed that the calling * function will preserve those. */LEAF(get_real_pte) .set mips3 .set at li k1, 0xe0000000 # check lcd bltu k0, k1, check_pcmcia_socket_1 nop # lcd pseudo access li k1, 0x0fffffff and k0, k0, k1 # get offset#ifdef CONFIG_MIPS_PB1500 lui k1, 0x1b00 addu k0, k0, k1#endif srl k0, k0, 6 lui k1, 0xe000>>2 or k0, k0, k1 j ra nopcheck_pcmcia_socket_1: li k1, 0xD0000000 bltu k0, k1, pcmcia_socket_0 nop # famous last words, should not happen ...1: b 1b # fixme -- to something a little more useful # pcmcia socket 1 pseudo accesspcmcia_socket_0: # check mem access li k1, 0xC8000000 bltu k0, k1, check_attr # handle pseudo memory access li k1, 0x00ffffff and k1, k0, k1 # get access offset lui k0, 0x8000 or k0, k0, k1 # now we have the correct even pte ... bits 31:0 srl k0, k0, 6 lui k1, 0xf000>>2 or k0, k0, k1 j ra # done nopcheck_attr: li k1, 0xC4000000 bltu k0, k1, io_access # handle pseudo attribute access li k1, 0x00ffffff and k1, k0, k1 # get access offset lui k0, 0x4000 or k0, k0, k1 # now we have the correct even pte ... bits 31:0 srl k0, k0, 6 lui k1, 0xf000>>2 or k0, k0, k1 j ra # done nopio_access:#ifdef CONFIG_MIPS_PB1500 li k1, 0xC0000000 bltu k0, k1, pci_access#endif # handle pseudo io access li k1, 0x00ffffff and k0, k0, k1 # get access offset # now we have the correct even pte ... bits 31:0 srl k0, k0, 6 lui k1, 0xf000>>2 or k0, k0, k1 j ra # done nop#ifdef CONFIG_MIPS_PB1500pci_access: li k1, 0x80000000 bltu k0, k1, pci_io_access lui k1, 0x4000>>2 # handle pseudo pci mem access srl k0, k0, 6 or k0, k0, k1 j ra # done noppci_io_access: li k1, 0x70000000 bltu k0, k1, pci_cfg_access lui k1, 0x5000>>2 # handle pseudo pci io access srl k0, k0, 6 or k0, k0, k1 j ra # done noppci_cfg_access: # handle pseudo pci ext cfg access li k1, 0x0fffffff and k0, k0, k1 # get access offset srl k0, k0, 6 lui k1, 0x6000>>2 or k0, k0, k1 j ra # done nop#endif .set noatEND(get_real_pte)/* * On entry k1 contains pte pointer. Clobbers only k0 and k1. */ LEAF(translate_pte) .set mips3 lui k0, %hi(__saved_at) .set noat sw $at, %lo(__saved_at)(k0) # save at .set at sw k1, %lo(__saved_pte)(k0) # save pte pointer sw ra, %lo(__saved_ra)(k0) # save ra lw k0, 0(k1) # get even pte li k1, PSEUDO_ADDR_BASE # check pseudo addr bltu k0, k1, 1f nop bal get_real_pte nop b 2f nop1: srl k0, k0, 62: mtc0 k0, CP0_ENTRYLO0 # load it lui k1, %hi(__saved_pte) lw k1, %lo(__saved_pte)(k1) # recover pte pointer lw k0, 4(k1) # get odd pte li k1, PSEUDO_ADDR_BASE # check pseudo addr bltu k0, k1, 1f nop bal get_real_pte nop b 2f nop1: srl k0, k0, 6 # convert to entrylo02: mtc0 k0, CP0_ENTRYLO1 # load it nop b 1f tlbwr # write random tlb entry1: lui k0, %hi(__saved_at) .set noat lw $at, %lo(__saved_at)(k0) # restore at .set at lw ra, %lo(__saved_ra)(k0) # restore ra eret # return from trap .set noat END(translate_pte)__saved_at: PTR 0__saved_pte: PTR 0__saved_ra: PTR 0#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -