lpar_map.h 2.9 KB
Newer Older
L
Linus Torvalds 已提交
1 2
/*
 * Copyright (C) 2001  Mike Corrigan IBM Corporation
3
 *
L
Linus Torvalds 已提交
4 5 6 7
 * 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.
8
 *
L
Linus Torvalds 已提交
9 10 11 12
 * 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.
13
 *
L
Linus Torvalds 已提交
14 15 16 17
 * 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
 */
18 19
#ifndef _ASM_POWERPC_ISERIES_LPAR_MAP_H
#define _ASM_POWERPC_ISERIES_LPAR_MAP_H
L
Linus Torvalds 已提交
20

21 22
#ifndef __ASSEMBLY__

L
Linus Torvalds 已提交
23 24
#include <asm/types.h>

25 26
#endif

27 28
/*
 * The iSeries hypervisor will set up mapping for one or more
L
Linus Torvalds 已提交
29 30 31 32 33
 * ESID/VSID pairs (in SLB/segment registers) and will set up
 * mappings of one or more ranges of pages to VAs.
 * We will have the hypervisor set up the ESID->VSID mapping
 * for the four kernel segments (C-F).  With shared processors,
 * the hypervisor will clear all segment registers and reload
34
 * these four whenever the processor is switched from one
L
Linus Torvalds 已提交
35 36 37 38 39 40 41 42 43 44
 * partition to another.
 */

/* The Vsid and Esid identified below will be used by the hypervisor
 * to set up a memory mapping for part of the load area before giving
 * control to the Linux kernel.  The load area is 64 MB, but this must
 * not attempt to map the whole load area.  The Hashed Page Table may
 * need to be located within the load area (if the total partition size
 * is 64 MB), but cannot be mapped.  Typically, this should specify
 * to map half (32 MB) of the load area.
45 46
 *
 * The hypervisor will set up page table entries for the number of
L
Linus Torvalds 已提交
47 48 49
 * pages specified.
 *
 * In 32-bit mode, the hypervisor will load all four of the
50
 * segment registers (identified by the low-order four bits of the
L
Linus Torvalds 已提交
51 52 53 54
 * Esid field.  In 64-bit mode, the hypervisor will load one SLB
 * entry to map the Esid to the Vsid.
*/

55 56 57
#define HvEsidsToMap	2
#define HvRangesToMap	1

58 59
/* Hypervisor initially maps 32MB of the load area */
#define HvPagesToMap	8192
L
Linus Torvalds 已提交
60

61
#ifndef __ASSEMBLY__
62
struct LparMap {
63 64 65
	u64	xNumberEsids;	// Number of ESID/VSID pairs
	u64	xNumberRanges;	// Number of VA ranges to map
	u64	xSegmentTableOffs; // Page number within load area of seg table
66
	u64	xRsvd[5];
67 68 69 70 71 72 73 74 75
	struct {
		u64	xKernelEsid;	// Esid used to map kernel load
		u64	xKernelVsid;	// Vsid used to map kernel load
	} xEsids[HvEsidsToMap];
	struct {
		u64	xPages;		// Number of pages to be mapped
		u64	xOffset;	// Offset from start of load area
		u64	xVPN;		// Virtual Page Number
	} xRanges[HvRangesToMap];
L
Linus Torvalds 已提交
76 77
};

78 79 80 81 82 83
extern const struct LparMap	xLparMap;

#endif /* __ASSEMBLY__ */

/* the fixed address where the LparMap exists */
#define LPARMAP_PHYS		0x7000
84

85
#endif /* _ASM_POWERPC_ISERIES_LPAR_MAP_H */