Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 191610
b: refs/heads/master
c: 99dc5c0
h: refs/heads/master
v: v3
  • Loading branch information
Paul Mundt committed Apr 7, 2010
1 parent aad3eb6 commit 81423bf
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 94a46d3cde81fc82eef2105fcb5c9e6e31bac0f7
refs/heads/master: 99dc5c0ca953fb154a3c75ebc6801e0a3c2fe3fe
11 changes: 9 additions & 2 deletions trunk/arch/sh/include/cpu-sh4/cpu/mmu_context.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,13 @@
#define MMU_UTLB_DATA_ARRAY2 0xF7800000
#define MMU_PAGE_ASSOC_BIT 0x80

#define MMUCR_TI (1<<2)
#ifdef CONFIG_MMU
#define MMUCR_AT (1 << 0)
#else
#define MMUCR_AT (0)
#endif

#define MMUCR_TI (1 << 2)

#define MMUCR_URB 0x00FC0000
#define MMUCR_URB_SHIFT 18
Expand Down Expand Up @@ -65,7 +71,8 @@
#endif

#define MMU_NTLB_ENTRIES 64
#define MMU_CONTROL_INIT (0x05|MMUCR_SQMD|MMUCR_ME|MMUCR_SE|MMUCR_AEX)
#define MMU_CONTROL_INIT (MMUCR_AT | MMUCR_TI | MMUCR_SQMD | \
MMUCR_ME | MMUCR_SE | MMUCR_AEX)

#define TRA 0xff000020
#define EXPEVT 0xff000024
Expand Down

0 comments on commit 81423bf

Please sign in to comment.