2005-08-16 23:01:50 -04:00
|
|
|
/*
|
|
|
|
* 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>
|
2005-12-15 22:49:25 -05:00
|
|
|
#include <asm/pgtable.h>
|
2005-11-01 23:02:47 -05:00
|
|
|
#include <asm/iseries/lpar_map.h>
|
2005-08-16 23:01:50 -04:00
|
|
|
|
|
|
|
const struct LparMap __attribute__((__section__(".text"))) xLparMap = {
|
|
|
|
.xNumberEsids = HvEsidsToMap,
|
|
|
|
.xNumberRanges = HvRangesToMap,
|
|
|
|
.xSegmentTableOffs = STAB0_PAGE,
|
|
|
|
|
|
|
|
.xEsids = {
|
2005-12-05 11:24:33 -05:00
|
|
|
{ .xKernelEsid = GET_ESID(PAGE_OFFSET),
|
|
|
|
.xKernelVsid = KERNEL_VSID(PAGE_OFFSET), },
|
2005-12-14 00:08:40 -05:00
|
|
|
{ .xKernelEsid = GET_ESID(VMALLOC_START),
|
|
|
|
.xKernelVsid = KERNEL_VSID(VMALLOC_START), },
|
2005-08-16 23:01:50 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
.xRanges = {
|
|
|
|
{ .xPages = HvPagesToMap,
|
|
|
|
.xOffset = 0,
|
2005-12-05 11:24:33 -05:00
|
|
|
.xVPN = KERNEL_VSID(PAGE_OFFSET) << (SID_SHIFT - HW_PAGE_SHIFT),
|
2005-08-16 23:01:50 -04:00
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|