-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
RealView: Move the SCU initialisation out of __v6_setup
This patch moves the SCU initialisation from __v6_setup to the smp_prepare_cpus() function as it relies on platform-specific settings. Changes to get_core_count() are mainly for allowing cleaner code with the upcoming PB11MPCore patches. Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
- Loading branch information
Catalin Marinas
committed
Apr 18, 2008
1 parent
cb170a4
commit b7b0ba9
Showing
4 changed files
with
43 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,13 @@ | ||
#ifndef __ASMARM_ARCH_SCU_H | ||
#define __ASMARM_ARCH_SCU_H | ||
|
||
#include <asm/arch/board-eb.h> | ||
|
||
#define SCU_BASE REALVIEW_EB11MP_SCU_BASE | ||
/* | ||
* SCU registers | ||
*/ | ||
#define SCU_CTRL 0x00 | ||
#define SCU_CONFIG 0x04 | ||
#define SCU_CPU_STATUS 0x08 | ||
#define SCU_INVALIDATE 0x0c | ||
#define SCU_FPGA_REVISION 0x10 | ||
|
||
#endif |
This file was deleted.
Oops, something went wrong.