diff options
| author | Greg Ungerer <gerg@snapgear.com> | 2003-05-25 03:33:10 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@home.transmeta.com> | 2003-05-25 03:33:10 -0700 |
| commit | b27a08c37fdde3cfbfc79581cddc3efb673d97fa (patch) | |
| tree | c0dd7336b67f2b936f6f979fa24054d2fbbc2e33 | |
| parent | 21e1374fbd64cc031385aa9eff27b9b74fa9e55f (diff) | |
[PATCH] fix cache settings for m68knommu 5407 MOTOROLA target
Correct the wrong cache setup used on the MOTOROLA 5407 based board.
Specifically it enables precise exception mode and write buffering.
Original patch from Alessendra Rubini.
| -rw-r--r-- | arch/m68knommu/platform/5407/MOTOROLA/crt0_ram.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/m68knommu/platform/5407/MOTOROLA/crt0_ram.S b/arch/m68knommu/platform/5407/MOTOROLA/crt0_ram.S index b84bef00c5c9..38c2b6d5592a 100644 --- a/arch/m68knommu/platform/5407/MOTOROLA/crt0_ram.S +++ b/arch/m68knommu/platform/5407/MOTOROLA/crt0_ram.S @@ -99,7 +99,7 @@ _start: movec %d0, %ACR3 /* Enable cache */ - move.l #0x86088400, %d0 + move.l #0xa4098400, %d0 /* Write buffer, dflt precise */ movec %d0,%CACR nop |
