-
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: 91527 b: refs/heads/master c: 3eb9cf0 h: refs/heads/master i: 91525: 938fd98 91523: 0ddd891 91519: a3321f5 v: v3
- Loading branch information
Stephen Rothwell
authored and
Paul Mackerras
committed
Apr 15, 2008
1 parent
648c963
commit 1db2745
Showing
5 changed files
with
85 additions
and
5 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: a7e695f6bf37f829a01e693a1569e96a842a1017 | ||
refs/heads/master: 3eb9cf076180ed2003db77bd2c33ac4ed0211089 |
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
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 @@ | ||
/* | ||
* Copyright © 2008 Stephen Rothwell IBM Corporation | ||
* | ||
* 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. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program; if not, write to the Free Software | ||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
*/ | ||
#ifndef _ASM_POWERPC_ISERIES_ALPACA_H | ||
#define _ASM_POWERPC_ISERIES_ALPACA_H | ||
|
||
/* | ||
* This is the part of the paca that the iSeries hypervisor | ||
* needs to be statically initialised. Immediately after boot | ||
* we switch to the normal Linux paca. | ||
*/ | ||
struct alpaca { | ||
struct lppaca *lppaca_ptr; /* Pointer to LpPaca for PLIC */ | ||
void *reg_save_ptr; /* Pointer to LpRegSave for PLIC */ | ||
}; | ||
|
||
#endif /* _ASM_POWERPC_ISERIES_ALPACA_H */ |