Home
last modified time | relevance | path

Searched refs:urb (Results 1 – 3 of 3) sorted by relevance

/arch/sh/mm/
Dtlb-urb.c23 int urb; in tlb_wire_entry() local
28 urb = (status & MMUCR_URB) >> MMUCR_URB_SHIFT; in tlb_wire_entry()
34 BUG_ON(!--urb); in tlb_wire_entry()
36 urb = urb % MMUCR_URB_NENTRIES; in tlb_wire_entry()
42 status |= (urb << MMUCR_URC_SHIFT); in tlb_wire_entry()
53 status |= (urb << MMUCR_URB_SHIFT); in tlb_wire_entry()
72 int urb; in tlb_unwire_entry() local
77 urb = (status & MMUCR_URB) >> MMUCR_URB_SHIFT; in tlb_unwire_entry()
84 BUG_ON(urb++ == MMUCR_URB_NENTRIES); in tlb_unwire_entry()
86 urb = urb % MMUCR_URB_NENTRIES; in tlb_unwire_entry()
[all …]
Dtlb-debugfs.c46 unsigned int urb; in tlb_seq_show() local
71 urb = (mmucr & MMUCR_URB) >> MMUCR_URB_SHIFT; in tlb_seq_show()
74 if (urb == 0) in tlb_seq_show()
75 urb = MMUCR_URB_NENTRIES + 1; in tlb_seq_show()
128 (urb <= entry) ? "W" : "-"); in tlb_seq_show()
DMakefile33 tlb-$(CONFIG_CPU_SH4) := tlb-sh4.o tlb-urb.o
35 tlb-$(CONFIG_CPU_HAS_PTEAEX) := tlb-pteaex.o tlb-urb.o