-
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.
- Loading branch information
Stephen Rothwell
authored and
Linus Torvalds
committed
Aug 17, 2005
1 parent
c9ce0a1
commit 67dafcb
Showing
6 changed files
with
52 additions
and
80 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: da5ca008933b3b28303ba44d0be3372fbac7748b | ||
refs/heads/master: 2ad56496627630ebc99f06af5f81ca23e17e014e |
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 (C) 2005 Stephen Rothwell IBM Corp. | ||
* | ||
* 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/mmu.h> | ||
#include <asm/page.h> | ||
#include <asm/iSeries/LparMap.h> | ||
|
||
const struct LparMap __attribute__((__section__(".text"))) xLparMap = { | ||
.xNumberEsids = HvEsidsToMap, | ||
.xNumberRanges = HvRangesToMap, | ||
.xSegmentTableOffs = STAB0_PAGE, | ||
|
||
.xEsids = { | ||
{ .xKernelEsid = GET_ESID(KERNELBASE), | ||
.xKernelVsid = KERNEL_VSID(KERNELBASE), }, | ||
{ .xKernelEsid = GET_ESID(VMALLOCBASE), | ||
.xKernelVsid = KERNEL_VSID(VMALLOCBASE), }, | ||
}, | ||
|
||
.xRanges = { | ||
{ .xPages = HvPagesToMap, | ||
.xOffset = 0, | ||
.xVPN = KERNEL_VSID(KERNELBASE) << (SID_SHIFT - PAGE_SHIFT), | ||
}, | ||
}, | ||
}; |
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