VirtualBox

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

Last change on this file since 57444 was 57191, checked in by vboxsync, 9 years ago

pdmifs.h: ViewPort -> Viewport, docs.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.9 KB
Line 
1/** @file
2 * VMware SVGA device
3 */
4/*
5 * Copyright (C) 2013-2015 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
30#define VMSVGA_VAL_UNINITIALIZED (unsigned)-1
31
32/* u32ActionFlags */
33#define VMSVGA_ACTION_CHANGEMODE_BIT 0
34#define VMSVGA_ACTION_CHANGEMODE RT_BIT(VMSVGA_ACTION_CHANGEMODE_BIT)
35
36DECLCALLBACK(int) vmsvgaR3IORegionMap(PPCIDEVICE pPciDev, int iRegion, RTGCPHYS GCPhysAddress, uint32_t cb, PCIADDRESSSPACE enmType);
37
38DECLCALLBACK(void) vmsvgaPortSetViewport(PPDMIDISPLAYPORT pInterface, uint32_t uScreenId, uint32_t x, uint32_t y, uint32_t cx, uint32_t cy);
39
40int vmsvgaInit(PPDMDEVINS pDevIns);
41int vmsvgaReset(PPDMDEVINS pDevIns);
42int vmsvgaDestruct(PPDMDEVINS pDevIns);
43int vmsvgaLoadExec(PPDMDEVINS pDevIns, PSSMHANDLE pSSM, uint32_t uVersion, uint32_t uPass);
44int vmsvgaLoadDone(PPDMDEVINS pDevIns);
45int vmsvgaSaveExec(PPDMDEVINS pDevIns, PSSMHANDLE pSSM);
46DECLCALLBACK(void) vmsvgaR3PowerOn(PPDMDEVINS pDevIns);
47DECLCALLBACK(void) vmsvgaR3PowerOff(PPDMDEVINS pDevIns);
48
49#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