Skip to content

Commit ced2a3b

Browse files
marcXceeeeeRussell King
authored andcommitted
ARM: 7750/1: update legacy CPU ID in decompressor cache support jump table
The previous mask values for the legacy ARM CPU IDs were conflicting with the CPU ID assignments for late-generation CPUs (like the Qualcomm MSM/QSD or Broadcom Brahma-15 processors). This change corrects the legacy ARM CPU ID value so that the jump table can fall-through to the appropriate cache maintenance / MMU functions. Signed-off-by: Marc C <[email protected]> Signed-off-by: Russell King <[email protected]>
1 parent da94a82 commit ced2a3b

File tree

1 file changed

+2
-2
lines changed
  • arch/arm/boot/compressed

1 file changed

+2
-2
lines changed

arch/arm/boot/compressed/head.S

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -806,8 +806,8 @@ call_cache_fn: adr r12, proc_types
806806
.align 2
807807
.type proc_types,#object
808808
proc_types:
809-
.word 0x00000000 @ old ARM ID
810-
.word 0x0000f000
809+
.word 0x41000000 @ old ARM ID
810+
.word 0xff00f000
811811
mov pc, lr
812812
THUMB( nop )
813813
mov pc, lr

0 commit comments

Comments
 (0)