blob: 162d653ad51fc430d692d4436707eeecb6149af7 [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 Rothwell45dc76a2005-06-21 17:15:33 -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 Rothwell45dc76a2005-06-21 17:15:33 -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 Rothwell45dc76a2005-06-21 17:15:33 -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
Stephen Rothwell51106102006-01-12 13:51:42 +110017 *
Stephen Rothwell45dc76a2005-06-21 17:15:33 -070018 * This file contains the "hypervisor call" interface which is used to
19 * drive the hypervisor from the OS.
20 */
Kelly Dalyecb3ca22005-11-02 15:53:01 +110021#ifndef _ASM_POWERPC_ISERIES_HV_CALL_H
22#define _ASM_POWERPC_ISERIES_HV_CALL_H
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
Kelly Daly50592f52005-11-02 11:37:22 +110024#include <asm/iseries/hv_call_sc.h>
Kelly Daly1ec65d72005-11-02 13:46:07 +110025#include <asm/iseries/hv_types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <asm/paca.h>
27
Linus Torvalds1da177e2005-04-16 15:20:36 -070028/* Type of yield for HvCallBaseYieldProcessor */
Stephen Rothwell45dc76a2005-06-21 17:15:33 -070029#define HvCall_YieldTimed 0 /* Yield until specified time (tb) */
30#define HvCall_YieldToActive 1 /* Yield until all active procs have run */
31#define HvCall_YieldToProc 2 /* Yield until the specified processor has run */
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33/* interrupt masks for setEnabledInterrupts */
34#define HvCall_MaskIPI 0x00000001
35#define HvCall_MaskLpEvent 0x00000002
36#define HvCall_MaskLpProd 0x00000004
37#define HvCall_MaskTimeout 0x00000008
38
Stephen Rothwell45dc76a2005-06-21 17:15:33 -070039/* Log buffer formats */
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#define HvCall_LogBuffer_ASCII 0
41#define HvCall_LogBuffer_EBCDIC 1
42
43#define HvCallBaseAckDeferredInts HvCallBase + 0
44#define HvCallBaseCpmPowerOff HvCallBase + 1
45#define HvCallBaseGetHwPatch HvCallBase + 2
46#define HvCallBaseReIplSpAttn HvCallBase + 3
47#define HvCallBaseSetASR HvCallBase + 4
Stephen Rothwell45dc76a2005-06-21 17:15:33 -070048#define HvCallBaseSetASRAndRfi HvCallBase + 5
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#define HvCallBaseSetIMR HvCallBase + 6
50#define HvCallBaseSendIPI HvCallBase + 7
51#define HvCallBaseTerminateMachine HvCallBase + 8
52#define HvCallBaseTerminateMachineSrc HvCallBase + 9
53#define HvCallBaseProcessPlicInterrupts HvCallBase + 10
54#define HvCallBaseIsPrimaryCpmOrMsdIpl HvCallBase + 11
55#define HvCallBaseSetVirtualSIT HvCallBase + 12
56#define HvCallBaseVaryOffThisProcessor HvCallBase + 13
57#define HvCallBaseVaryOffMemoryChunk HvCallBase + 14
58#define HvCallBaseVaryOffInteractivePercentage HvCallBase + 15
59#define HvCallBaseSendLpProd HvCallBase + 16
60#define HvCallBaseSetEnabledInterrupts HvCallBase + 17
61#define HvCallBaseYieldProcessor HvCallBase + 18
62#define HvCallBaseVaryOffSharedProcUnits HvCallBase + 19
63#define HvCallBaseSetVirtualDecr HvCallBase + 20
64#define HvCallBaseClearLogBuffer HvCallBase + 21
65#define HvCallBaseGetLogBufferCodePage HvCallBase + 22
66#define HvCallBaseGetLogBufferFormat HvCallBase + 23
67#define HvCallBaseGetLogBufferLength HvCallBase + 24
Stephen Rothwell45dc76a2005-06-21 17:15:33 -070068#define HvCallBaseReadLogBuffer HvCallBase + 25
Linus Torvalds1da177e2005-04-16 15:20:36 -070069#define HvCallBaseSetLogBufferFormatAndCodePage HvCallBase + 26
Stephen Rothwell45dc76a2005-06-21 17:15:33 -070070#define HvCallBaseWriteLogBuffer HvCallBase + 27
Linus Torvalds1da177e2005-04-16 15:20:36 -070071#define HvCallBaseRouter28 HvCallBase + 28
72#define HvCallBaseRouter29 HvCallBase + 29
73#define HvCallBaseRouter30 HvCallBase + 30
Stephen Rothwell45dc76a2005-06-21 17:15:33 -070074#define HvCallBaseSetDebugBus HvCallBase + 31
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Stephen Rothwell45dc76a2005-06-21 17:15:33 -070076#define HvCallCcSetDABR HvCallCc + 7
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Stephen Rothwell45dc76a2005-06-21 17:15:33 -070078static inline void HvCall_setVirtualDecr(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070079{
Stephen Rothwell45dc76a2005-06-21 17:15:33 -070080 /*
81 * Ignore any error return codes - most likely means that the
82 * target value for the LP has been increased and this vary off
83 * would bring us below the new target.
84 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 HvCall0(HvCallBaseSetVirtualDecr);
86}
Stephen Rothwell45dc76a2005-06-21 17:15:33 -070087
88static inline void HvCall_yieldProcessor(unsigned typeOfYield, u64 yieldParm)
Linus Torvalds1da177e2005-04-16 15:20:36 -070089{
Stephen Rothwell45dc76a2005-06-21 17:15:33 -070090 HvCall2(HvCallBaseYieldProcessor, typeOfYield, yieldParm);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091}
92
Stephen Rothwell45dc76a2005-06-21 17:15:33 -070093static inline void HvCall_setEnabledInterrupts(u64 enabledInterrupts)
Linus Torvalds1da177e2005-04-16 15:20:36 -070094{
Stephen Rothwell45dc76a2005-06-21 17:15:33 -070095 HvCall1(HvCallBaseSetEnabledInterrupts, enabledInterrupts);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096}
97
Stephen Rothwell4a5304f2005-06-21 17:15:40 -070098static inline void HvCall_setLogBufferFormatAndCodepage(int format,
99 u32 codePage)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100{
Stephen Rothwell45dc76a2005-06-21 17:15:33 -0700101 HvCall2(HvCallBaseSetLogBufferFormatAndCodePage, format, codePage);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102}
103
Stephen Rothwell45dc76a2005-06-21 17:15:33 -0700104extern void HvCall_writeLogBuffer(const void *buffer, u64 bufLen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Stephen Rothwell45dc76a2005-06-21 17:15:33 -0700106static inline void HvCall_sendIPI(struct paca_struct *targetPaca)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107{
Stephen Rothwell45dc76a2005-06-21 17:15:33 -0700108 HvCall1(HvCallBaseSendIPI, targetPaca->paca_index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109}
110
Kelly Dalyecb3ca22005-11-02 15:53:01 +1100111#endif /* _ASM_POWERPC_ISERIES_HV_CALL_H */