arm/iop32x: Fix iop321 cpuid.

svn path=/dists/trunk/linux-2.6/; revision=7382
This commit is contained in:
Martin Michlmayr 2006-09-11 07:43:53 +00:00
parent 364983fa82
commit 744ef7a86e
3 changed files with 33 additions and 0 deletions

1
debian/changelog vendored
View File

@ -5,6 +5,7 @@ linux-2.6 (2.6.17+2.6.18-rc6-0experimental.2) UNRELEASED; urgency=low
* arm/iop32x: Build ext2/3 as modules.
* arm/iop32x: Disable CONFIG_EMBEDDED.
* mipsel/r5k-cobalt: Enable ISDN.
* arm/iop32x: Fix iop321 cpuid.
[ Sven Luther ]
* [powerpc] Enabled the -prep flavour.

31
debian/patches/arm-iop-fix-cpuid vendored Normal file
View File

@ -0,0 +1,31 @@
# Upstream status: posted to the patch tracker
Subject: Fix iop321 cpuid
From: Dan Williams <dan.j.williams@intel.com>
commit a6a38a66224c7c578cfed2f584b440c81af0c3ae changed the iop321 id to a
value that does not work with all platforms. Change the mask to permit bit
11. Tested on an iq80321 600Mhz CRB.
http://www.arm.linux.org.uk/developer/patches/viewpatch.php?id=3780/1
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
---
arch/arm/mm/proc-xscale.S | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/arch/arm/mm/proc-xscale.S b/arch/arm/mm/proc-xscale.S
index 561bff7..3ca0c92 100644
--- a/arch/arm/mm/proc-xscale.S
+++ b/arch/arm/mm/proc-xscale.S
@@ -644,7 +644,7 @@ __80219_proc_info:
.type __8032x_proc_info,#object
__8032x_proc_info:
.long 0x69052420
- .long 0xffffffe0
+ .long 0xfffff7e0
.long PMD_TYPE_SECT | \
PMD_SECT_BUFFERABLE | \
PMD_SECT_CACHEABLE | \

View File

@ -1,2 +1,3 @@
+ powerpc-mkvmlinuz-support-ppc.patch
+ powerpc-mkvmlinuz-support-powerpc.patch
+ arm-iop-fix-cpuid