summaryrefslogtreecommitdiffstats
path: root/arch/mips64/mm
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2000-08-09 20:49:33 +0000
committerRalf Baechle <ralf@linux-mips.org>2000-08-09 20:49:33 +0000
commit2567d9daed42ade3c173a7715df190550bb7ad9b (patch)
tree584721f611764c4d37e135a186a23558fc5e9c10 /arch/mips64/mm
parent40d1d45c4219e24490f07c8af6eec0d8165c5d9f (diff)
Kill BARRIER macro; it's not needed on R10000.
Diffstat (limited to 'arch/mips64/mm')
-rw-r--r--arch/mips64/mm/andes.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/arch/mips64/mm/andes.c b/arch/mips64/mm/andes.c
index 43edfe728..b2b133a51 100644
--- a/arch/mips64/mm/andes.c
+++ b/arch/mips64/mm/andes.c
@@ -20,11 +20,6 @@
static int scache_lsz64;
-/* CP0 hazard avoidance. I think we can drop this for the R10000. */
-#define BARRIER __asm__ __volatile__(".set noreorder\n\t" \
- "nop; nop; nop; nop; nop; nop;\n\t" \
- ".set reorder\n\t")
-
/*
* This version has been tuned on an Origin. For other machines the arguments
* of the pref instructin may have to be tuned differently.
@@ -143,8 +138,6 @@ andes_flush_cache_sigtramp(unsigned long addr)
#define NTLB_ENTRIES 64
#define NTLB_ENTRIES_HALF 32
-/* TLB operations.
- XXX These should work fine on R10k without the BARRIERs. */
static inline void
andes_flush_tlb_all(void)
{
@@ -162,19 +155,15 @@ andes_flush_tlb_all(void)
set_entryhi(CKSEG0);
set_entrylo0(0);
set_entrylo1(0);
- BARRIER;
entry = get_wired();
/* Blast 'em all away. */
while(entry < NTLB_ENTRIES) {
set_index(entry);
- BARRIER;
tlb_write_indexed();
- BARRIER;
entry++;
}
- BARRIER;
set_entryhi(old_ctx);
__restore_flags(flags);
}
@@ -222,18 +211,14 @@ andes_flush_tlb_range(struct mm_struct *mm, unsigned long start,
set_entryhi(start | newpid);
start += (PAGE_SIZE << 1);
- BARRIER;
tlb_probe();
- BARRIER;
idx = get_index();
set_entrylo0(0);
set_entrylo1(0);
set_entryhi(KSEG0);
- BARRIER;
if(idx < 0)
continue;
tlb_write_indexed();
- BARRIER;
}
set_entryhi(oldpid);
} else {
@@ -261,20 +246,16 @@ andes_flush_tlb_page(struct vm_area_struct *vma, unsigned long page)
__save_and_cli(flags);
oldpid = (get_entryhi() & 0xff);
set_entryhi(page | newpid);
- BARRIER;
tlb_probe();
- BARRIER;
idx = get_index();
set_entrylo0(0);
set_entrylo1(0);
set_entryhi(KSEG0);
if(idx < 0)
goto finish;
- BARRIER;
tlb_write_indexed();
finish:
- BARRIER;
set_entryhi(oldpid);
__restore_flags(flags);
}
@@ -311,25 +292,19 @@ static void andes_update_mmu_cache(struct vm_area_struct * vma,
address &= (PAGE_MASK << 1);
set_entryhi(address | (pid));
pgdp = pgd_offset(vma->vm_mm, address);
- BARRIER;
tlb_probe();
- BARRIER;
pmdp = pmd_offset(pgdp, address);
idx = get_index();
ptep = pte_offset(pmdp, address);
- BARRIER;
set_entrylo0(pte_val(*ptep++) >> 6);
set_entrylo1(pte_val(*ptep) >> 6);
set_entryhi(address | (pid));
- BARRIER;
if(idx < 0) {
tlb_write_random();
} else {
tlb_write_indexed();
}
- BARRIER;
set_entryhi(pid);
- BARRIER;
__restore_flags(flags);
}