diff options
author | Catalin Marinas <catalin.marinas@arm.com> | 2006-06-18 16:21:50 +0100 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2006-06-18 16:21:50 +0100 |
commit | 45a7b9cf8e0634fa546e9e7ad29af990ab4afcf2 (patch) | |
tree | 2a9910617eeebe7f70b4406fe7843908b2a0359e /arch/arm/boot/compressed/head.S | |
parent | 5247593c9634309d1b9f7b549495b8e5ad521688 (diff) | |
download | op-kernel-dev-45a7b9cf8e0634fa546e9e7ad29af990ab4afcf2.zip op-kernel-dev-45a7b9cf8e0634fa546e9e7ad29af990ab4afcf2.tar.gz |
[ARM] 3548/1: Fix the ARMv6 CPU id in compressed/head.S
Patch from Catalin Marinas
This code was still using the old format for the ARMv6 CPU id and it wasn't
flushing the caches on the MPCore CPU (and other ARM1176 cores). The patch
changes the mask bits to cope with the new id format.
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/boot/compressed/head.S')
-rw-r--r-- | arch/arm/boot/compressed/head.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/boot/compressed/head.S b/arch/arm/boot/compressed/head.S index b56f5e6..23016f6 100644 --- a/arch/arm/boot/compressed/head.S +++ b/arch/arm/boot/compressed/head.S @@ -605,8 +605,8 @@ proc_types: b __armv4_mmu_cache_off b __armv4_mmu_cache_flush - .word 0x00070000 @ ARMv6 - .word 0x000f0000 + .word 0x0007b000 @ ARMv6 + .word 0x0007f000 b __armv4_mmu_cache_on b __armv4_mmu_cache_off b __armv6_mmu_cache_flush |