VirtualBox

source: vbox/trunk/src/VBox/Devices/Graphics/DevVGA-SVGA.h@ 53393

Last change on this file since 53393 was 53201, checked in by vboxsync, 10 years ago

Devices/Main: vmsvga updates

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.0 KB
Line 
1/** @file
2 * VMware SVGA device
3 */
4/*
5 * Copyright (C) 2013 Oracle Corporation
6 *
7 * This file is part of VirtualBox Open Source Edition (OSE), as
8 * available from http://www.virtualbox.org. This file is free software;
9 * you can redistribute it and/or modify it under the terms of the GNU
10 * General Public License (GPL) as published by the Free Software
11 * Foundation, in version 2 as it comes in the "COPYING" file of the
12 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
13 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
14 */
15#ifndef __DEVVGA_SVGA_H__
16#define __DEVVGA_SVGA_H__
17
18
19/** Default FIFO size. */
20#define VMSVGA_FIFO_SIZE 0x20000
21/** Default scratch region size. */
22#define VMSVGA_SCRATCH_SIZE 0x100
23/** Surface memory available to the guest. */
24#define VMSVGA_SURFACE_SIZE (512*1024*1024)
25/** Maximum GMR pages. */
26#define VMSVGA_MAX_GMR_PAGES 0x100000
27/** Maximum nr of GMR ids. */
28#define VMSVGA_MAX_GMR_IDS 0x100
29/** Size of the region to backup when switching into svga mode. */
30#define VMSVGA_FRAMEBUFFER_BACKUP_SIZE (32*1024)
31
32#define VMSVGA_VAL_UNINITIALIZED (unsigned)-1
33
34/* u32ActionFlags */
35#define VMSVGA_ACTION_CHANGEMODE_BIT 0
36#define VMSVGA_ACTION_CHANGEMODE RT_BIT(VMSVGA_ACTION_CHANGEMODE_BIT)
37
38DECLCALLBACK(int) vmsvgaR3IORegionMap(PPCIDEVICE pPciDev, int iRegion, RTGCPHYS GCPhysAddress, uint32_t cb, PCIADDRESSSPACE enmType);
39
40DECLCALLBACK(void) vmsvgaPortSetViewPort(PPDMIDISPLAYPORT pInterface, uint32_t uScreenId, uint32_t x, uint32_t y, uint32_t cx, uint32_t cy);
41
42int vmsvgaInit(PPDMDEVINS pDevIns);
43int vmsvgaReset(PPDMDEVINS pDevIns);
44int vmsvgaDestruct(PPDMDEVINS pDevIns);
45int vmsvgaLoadExec(PPDMDEVINS pDevIns, PSSMHANDLE pSSM, uint32_t uVersion, uint32_t uPass);
46int vmsvgaLoadDone(PPDMDEVINS pDevIns);
47int vmsvgaSaveExec(PPDMDEVINS pDevIns, PSSMHANDLE pSSM);
48DECLCALLBACK(void) vmsvgaR3PowerOn(PPDMDEVINS pDevIns);
49DECLCALLBACK(void) vmsvgaR3PowerOff(PPDMDEVINS pDevIns);
50
51#endif /* __DEVVGA_SVGA_H__ */
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette