diff options
author | Max Filippov <jcmvbkbc@gmail.com> | 2012-12-10 16:26:23 -0500 |
---|---|---|
committer | Chris Zankel <chris@zankel.net> | 2012-12-19 00:10:25 -0500 |
commit | eab5e7a79d1bb3d607dabf022bfad9f46d1e3ac8 (patch) | |
tree | 9b6c38cd910670a3ba9edb6ea9b9f572763a5c9b /arch/xtensa | |
parent | 79fcf52ba0dbcb9888812113df2d7248b41e9af1 (diff) |
xtensa: initialize CPENABLE SR when core has one
XCHAL_CP_NUM is defined in variant/tie.h and it is not included by
head.S, leaving CPENABLE register uninitialised. XCHAL_HAVE_CP is
defined in variant/core.h to 1 when core has CPENABLE SR.
Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
Signed-off-by: Chris Zankel <chris@zankel.net>
Diffstat (limited to 'arch/xtensa')
-rw-r--r-- | arch/xtensa/kernel/head.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/xtensa/kernel/head.S b/arch/xtensa/kernel/head.S index 0cd337a341d9..91d9095284de 100644 --- a/arch/xtensa/kernel/head.S +++ b/arch/xtensa/kernel/head.S | |||
@@ -124,7 +124,7 @@ ENTRY(_startup) | |||
124 | 124 | ||
125 | /* Disable coprocessors. */ | 125 | /* Disable coprocessors. */ |
126 | 126 | ||
127 | #if XCHAL_CP_NUM > 0 | 127 | #if XCHAL_HAVE_CP |
128 | wsr a0, cpenable | 128 | wsr a0, cpenable |
129 | #endif | 129 | #endif |
130 | 130 | ||