blob: 2ec384d66abb90578e897df9b0fd42f8cc5c058e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Copyright (C) 2001 Mike Corrigan IBM Corporation
Stephen Rothwellfcee3892005-06-21 17:15:34 -07003 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
Stephen Rothwellfcee3892005-06-21 17:15:34 -07008 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
Stephen Rothwellfcee3892005-06-21 17:15:34 -070013 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 */
Kelly Dalyecb3ca272005-11-02 15:53:01 +110018#ifndef _ASM_POWERPC_ISERIES_LPAR_MAP_H
19#define _ASM_POWERPC_ISERIES_LPAR_MAP_H
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
Stephen Rothwell2ad56492005-08-17 13:01:50 +100021#ifndef __ASSEMBLY__
22
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <asm/types.h>
24
Stephen Rothwellfcee3892005-06-21 17:15:34 -070025/*
26 * The iSeries hypervisor will set up mapping for one or more
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 * ESID/VSID pairs (in SLB/segment registers) and will set up
28 * mappings of one or more ranges of pages to VAs.
29 * We will have the hypervisor set up the ESID->VSID mapping
30 * for the four kernel segments (C-F). With shared processors,
31 * the hypervisor will clear all segment registers and reload
Stephen Rothwellfcee3892005-06-21 17:15:34 -070032 * these four whenever the processor is switched from one
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 * partition to another.
34 */
35
36/* The Vsid and Esid identified below will be used by the hypervisor
37 * to set up a memory mapping for part of the load area before giving
38 * control to the Linux kernel. The load area is 64 MB, but this must
39 * not attempt to map the whole load area. The Hashed Page Table may
40 * need to be located within the load area (if the total partition size
41 * is 64 MB), but cannot be mapped. Typically, this should specify
42 * to map half (32 MB) of the load area.
Stephen Rothwellfcee3892005-06-21 17:15:34 -070043 *
44 * The hypervisor will set up page table entries for the number of
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 * pages specified.
46 *
47 * In 32-bit mode, the hypervisor will load all four of the
Stephen Rothwellfcee3892005-06-21 17:15:34 -070048 * segment registers (identified by the low-order four bits of the
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 * Esid field. In 64-bit mode, the hypervisor will load one SLB
50 * entry to map the Esid to the Vsid.
51*/
52
David Gibson488f8492005-07-27 11:44:21 -070053#define HvEsidsToMap 2
54#define HvRangesToMap 1
55
Stephen Rothwellfcee3892005-06-21 17:15:34 -070056/* Hypervisor initially maps 32MB of the load area */
57#define HvPagesToMap 8192
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Stephen Rothwellfcee3892005-06-21 17:15:34 -070059struct LparMap {
David Gibson488f8492005-07-27 11:44:21 -070060 u64 xNumberEsids; // Number of ESID/VSID pairs
61 u64 xNumberRanges; // Number of VA ranges to map
62 u64 xSegmentTableOffs; // Page number within load area of seg table
Stephen Rothwellfcee3892005-06-21 17:15:34 -070063 u64 xRsvd[5];
David Gibson488f8492005-07-27 11:44:21 -070064 struct {
65 u64 xKernelEsid; // Esid used to map kernel load
66 u64 xKernelVsid; // Vsid used to map kernel load
67 } xEsids[HvEsidsToMap];
68 struct {
69 u64 xPages; // Number of pages to be mapped
70 u64 xOffset; // Offset from start of load area
71 u64 xVPN; // Virtual Page Number
72 } xRanges[HvRangesToMap];
Linus Torvalds1da177e2005-04-16 15:20:36 -070073};
74
Stephen Rothwell2ad56492005-08-17 13:01:50 +100075extern const struct LparMap xLparMap;
76
77#endif /* __ASSEMBLY__ */
78
79/* the fixed address where the LparMap exists */
80#define LPARMAP_PHYS 0x7000
Stephen Rothwell0bc0ffd2005-06-21 17:15:36 -070081
Kelly Dalyecb3ca272005-11-02 15:53:01 +110082#endif /* _ASM_POWERPC_ISERIES_LPAR_MAP_H */