-
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.
yaml --- r: 138404 b: refs/heads/master c: 105c31d h: refs/heads/master v: v3
- Loading branch information
Kumar Gala
committed
Jan 29, 2009
1 parent
22cbd54
commit 7a3ba53
Showing
7 changed files
with
99 additions
and
31 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 0585a155a7318e69d43ef20636c2f072ad17d03f | ||
refs/heads/master: 105c31df6fc5a424b480321763b5598cf3817821 |
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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
/* | ||
* This file contains low level CPU setup functions. | ||
* Kumar Gala <galak@kernel.crashing.org> | ||
* Copyright 2009 Freescale Semiconductor, Inc. | ||
* | ||
* Based on cpu_setup_6xx code by | ||
* Benjamin Herrenschmidt <benh@kernel.crashing.org> | ||
* | ||
* This program is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU General Public License | ||
* as published by the Free Software Foundation; either version | ||
* 2 of the License, or (at your option) any later version. | ||
* | ||
*/ | ||
|
||
#include <asm/processor.h> | ||
#include <asm/cputable.h> | ||
#include <asm/ppc_asm.h> | ||
|
||
_GLOBAL(__setup_cpu_e200) | ||
/* enable dedicated debug exception handling resources (Debug APU) */ | ||
mfspr r3,SPRN_HID0 | ||
ori r3,r3,HID0_DAPUEN@l | ||
mtspr SPRN_HID0,r3 | ||
b __setup_e200_ivors | ||
_GLOBAL(__setup_cpu_e500v1) | ||
_GLOBAL(__setup_cpu_e500v2) | ||
b __setup_e500_ivors | ||
_GLOBAL(__setup_cpu_e500mc) | ||
b __setup_e500mc_ivors | ||
|
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