HGSMIHost.h revision cf5f6bf2704d4fff443139e10bccc6a0a7fa4b85
/** @file
*
* VBox Host Guest Shared Memory Interface (HGSMI).
* Host part.
*/
/*
* Copyright (C) 2006-2008 Sun Microsystems, Inc.
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* you can redistribute it and/or modify it under the terms of the GNU
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
* Clara, CA 95054 USA or visit http://www.sun.com if you need
* additional information or have any questions.
*/
#ifndef __HGSMIHost_h__
#define __HGSMIHost_h__
#include <VBox/vm.h>
#include <VBox/HGSMI/HGSMI.h>
#include <VBox/HGSMI/HGSMIChSetup.h>
struct _HGSMIINSTANCE;
typedef struct _HGSMIINSTANCE *PHGSMIINSTANCE;
/* Callback for the guest notifiation about a new host buffer. */
typedef DECLCALLBACK(void) FNHGSMINOTIFYGUEST(void *pvCallback);
typedef FNHGSMINOTIFYGUEST *PFNHGSMINOTIFYGUEST;
/*
* Public Host API for virtual devices.
*/
int HGSMICreate (PHGSMIINSTANCE *ppIns,
PVM pVM,
const char *pszName,
HGSMIOFFSET offBase,
uint8_t *pu8MemBase,
HGSMISIZE cbMem,
PFNHGSMINOTIFYGUEST pfnNotifyGuest,
void *pvNotifyGuest,
size_t cbContext);
void HGSMIDestroy (PHGSMIINSTANCE pIns);
void *HGSMIContext (PHGSMIINSTANCE pIns);
void *HGSMIOffsetToPointerHost (PHGSMIINSTANCE pIns,
HGSMIOFFSET offBuffer);
HGSMIOFFSET HGSMIPointerToOffsetHost (PHGSMIINSTANCE pIns,
const void *pv);
int HGSMIHostChannelRegister (PHGSMIINSTANCE pIns,
uint8_t u8Channel,
PFNHGSMICHANNELHANDLER pfnChannelHandler,
void *pvChannelHandler,
HGSMICHANNELHANDLER *pOldHandler);
int HGSMIChannelRegisterName (PHGSMIINSTANCE pIns,
const char *pszChannel,
PFNHGSMICHANNELHANDLER pfnChannelHandler,
void *pvChannelHandler,
uint8_t *pu8Channel,
HGSMICHANNELHANDLER *pOldHandler);
int HGSMIChannelHandlerCall (PHGSMIINSTANCE pIns,
const HGSMICHANNELHANDLER *pHandler,
const HGSMIBUFFERHEADER *pHeader);
int HGSMISetupHostHeap (PHGSMIINSTANCE pIns,
HGSMIOFFSET offHeap,
HGSMISIZE cbHeap);
int HGSMISaveStateExec (PHGSMIINSTANCE pIns, PSSMHANDLE pSSM);
int HGSMILoadStateExec (PHGSMIINSTANCE pIns, PSSMHANDLE pSSM);
/*
* Virtual hardware IO handlers.
*/
/* Guests passes a new command buffer to the host. */
void HGSMIGuestWrite (PHGSMIINSTANCE pIns,
HGSMIOFFSET offBuffer);
/* Guest reads information about guest buffers. */
HGSMIOFFSET HGSMIGuestRead (PHGSMIINSTANCE pIns);
/* Guest reads the host FIFO to get a command. */
HGSMIOFFSET HGSMIHostRead (PHGSMIINSTANCE pIns);
/* Guest reports that the command at this offset has been processed. */
void HGSMIHostWrite (PHGSMIINSTANCE pIns,
HGSMIOFFSET offBuffer);
void HGSMISetHostGuestFlags(PHGSMIINSTANCE pIns, uint32_t flags);
void HGSMIClearHostGuestFlags(PHGSMIINSTANCE pIns, uint32_t flags);
/*
* Low level interface for submitting buffers to the guest.
*
* These functions are not directly available for anyone but the
* virtual hardware device.
*/
/* Allocate a buffer in the host heap. */
int HGSMIHostCommandAlloc (PHGSMIINSTANCE pIns,
void **ppvMem,
HGSMISIZE cbMem,
uint8_t u8Channel,
uint16_t u16ChannelInfo);
int HGSMIHostCommandProcess (PHGSMIINSTANCE pIns,
void *pvMem);
int HGSMIHostCommandProcessAndFreeAsynch (PHGSMIINSTANCE pIns,
void *pvMem,
bool bDoIrq);
int HGSMIHostCommandFree (PHGSMIINSTANCE pIns,
void *pvMem);
int HGSMIHostLoadStateExec (PHGSMIINSTANCE pIns, PSSMHANDLE pSSM, uint32_t u32Version);
int HGSMIHostSaveStateExec (PHGSMIINSTANCE pIns, PSSMHANDLE pSSM);
#if 0
/* Submit this buffer to the guest asynchronously. */
int HGSMIHostBufferProcessAsync (PHGSMIINSTANCE pIns,
void *pvMem,
PFNHGSMIBUFFERPROCESSED);
#endif
#endif /* __HGSMIHost_h__*/