3 * Copyright (C) 2001 Mike Corrigan IBM Corporation
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 //===========================================================================
24 // Name______________: HvTypes.H
26 // Description_______:
28 // General typedefs for the hypervisor.
30 // Declared Class(es):
32 //===========================================================================
34 #include <asm/types.h>
36 //-------------------------------------------------------------------
38 //-------------------------------------------------------------------
40 typedef u16 HvLpInstanceId
;
42 typedef u64 HvLpSystemSerialNum
;
43 typedef u8 HvLpDeviceSerialNum
[12];
44 typedef u16 HvLpSanHwSet
;
46 typedef u16 HvLpBoard
;
48 typedef u8 HvLpDeviceType
[4];
49 typedef u8 HvLpDeviceModel
[3];
50 typedef u64 HvIoToken
;
51 typedef u8 HvLpName
[8];
53 typedef u64 HvRealMemoryIndex
;
54 typedef u32 HvLpIndexMap
; // Must hold HvMaxArchitectedLps bits!!!
55 typedef u16 HvLpVrmIndex
;
56 typedef u32 HvXmGenerationId
;
57 typedef u8 HvLpBusPool
;
58 typedef u8 HvLpSharedPoolIndex
;
59 typedef u16 HvLpSharedProcUnitsX100
;
60 typedef u8 HvLpVirtualLanIndex
;
61 typedef u16 HvLpVirtualLanIndexMap
; // Must hold HvMaxArchitectedVirtualLans bits!!!
62 typedef u16 HvBusNumber
; // Hypervisor Bus Number
63 typedef u8 HvSubBusNumber
; // Hypervisor SubBus Number
64 typedef u8 HvAgentId
; // Hypervisor DevFn
67 #define HVMAXARCHITECTEDLPS 32
68 #define HVMAXARCHITECTEDVIRTUALLANS 16
69 #define HVMAXARCHITECTEDVIRTUALDISKS 32
70 #define HVMAXARCHITECTEDVIRTUALCDROMS 8
71 #define HVMAXARCHITECTEDVIRTUALTAPES 8
72 #define HVCHUNKSIZE 256 * 1024
73 #define HVPAGESIZE 4 * 1024
74 #define HVLPMINMEGSPRIMARY 256
75 #define HVLPMINMEGSSECONDARY 64
76 #define HVCHUNKSPERMEG 4
77 #define HVPAGESPERMEG 256
78 #define HVPAGESPERCHUNK 64
80 #define HvMaxArchitectedLps ((HvLpIndex)HVMAXARCHITECTEDLPS)
81 #define HvMaxArchitectedVirtualLans ((HvLpVirtualLanIndex)16)
82 #define HvLpIndexInvalid ((HvLpIndex)0xff)
84 //--------------------------------------------------------------------
85 // Enums for the sub-components under PLIC
86 // Used in HvCall and HvPrimaryCall
87 //--------------------------------------------------------------------
91 HvCallCpuCtlsCompId
= 1,
93 HvCallEventCompId
= 3,
100 HvCallRioCompId
= 10,
101 HvCallRsvd3CompId
= 11,
102 HvCallRsvd2CompId
= 12,
103 HvCallRsvd1CompId
= 13,
104 HvCallMaxCompId
= 14,
105 HvPrimaryCallCompId
= 0,
106 HvPrimaryCallCfgCompId
= 1,
107 HvPrimaryCallPciCompId
= 2,
108 HvPrimaryCallSmCompId
= 3,
109 HvPrimaryCallSpdCompId
= 4,
110 HvPrimaryCallXmCompId
= 5,
111 HvPrimaryCallRioCompId
= 6,
112 HvPrimaryCallRsvd7CompId
= 7,
113 HvPrimaryCallRsvd6CompId
= 8,
114 HvPrimaryCallRsvd5CompId
= 9,
115 HvPrimaryCallRsvd4CompId
= 10,
116 HvPrimaryCallRsvd3CompId
= 11,
117 HvPrimaryCallRsvd2CompId
= 12,
118 HvPrimaryCallRsvd1CompId
= 13,
119 HvPrimaryCallMaxCompId
= HvCallMaxCompId
122 struct HvLpBufferList
{
127 #endif /* _HVTYPES_H */