VirtualBox

source: vbox/trunk/include/VBox/VMMDevTesting.h@ 60871

Last change on this file since 60871 was 60440, checked in by vboxsync, 9 years ago

VMMDevTesting: Adjusted the CMD and DATA expectations to handle pure 16-bit CPU emulations too.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 7.2 KB
Line 
1/* $Id: VMMDevTesting.h 60440 2016-04-11 19:23:37Z vboxsync $ */
2/** @file
3 * VMMDev - Testing Extensions.
4 */
5
6/*
7 * Copyright (C) 2010-2015 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * The contents of this file may alternatively be used under the terms
18 * of the Common Development and Distribution License Version 1.0
19 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20 * VirtualBox OSE distribution, in which case the provisions of the
21 * CDDL are applicable instead of those of the GPL.
22 *
23 * You may elect to license modified versions of this file under the
24 * terms and conditions of either the GPL or the CDDL or both.
25 */
26
27
28#ifndef ___VBox_VMMDevTesting_h
29#define ___VBox_VMMDevTesting_h
30
31#include <VBox/types.h>
32
33
34/** @defgroup grp_vmmdev_testing VMM Device Testing
35 * @ingroup grp_vmmdev
36 * @{
37 */
38
39/** The base address of the MMIO range used for testing.
40 * This is intentionally put at the 2nd page above 1M so that it can be
41 * accessed from both real (!A20) and protected mode. */
42#define VMMDEV_TESTING_MMIO_BASE UINT32_C(0x00101000)
43/** The size of the MMIO range used for testing. */
44#define VMMDEV_TESTING_MMIO_SIZE UINT32_C(0x00001000)
45/** The NOP MMIO register - 1248 RW. */
46#define VMMDEV_TESTING_MMIO_NOP (VMMDEV_TESTING_MMIO_BASE + 0x000)
47/** The go-to-ring-3-NOP MMIO register - 1248 RW. */
48#define VMMDEV_TESTING_MMIO_NOP_R3 (VMMDEV_TESTING_MMIO_BASE + 0x008)
49/** The real mode selector to use.
50 * @remarks Requires that the A20 gate is enabled. */
51#define VMMDEV_TESTING_MMIO_RM_SEL 0xffff
52/** Calculate the real mode offset of a MMIO register. */
53#define VMMDEV_TESTING_MMIO_RM_OFF(val) ((val) - 0xffff0)
54
55/** The base port of the I/O range used for testing. */
56#define VMMDEV_TESTING_IOPORT_BASE 0x0510
57/** The number of I/O ports reserved for testing. */
58#define VMMDEV_TESTING_IOPORT_COUNT 0x0010
59/** The NOP I/O port - 1,2,4 RW. */
60#define VMMDEV_TESTING_IOPORT_NOP (VMMDEV_TESTING_IOPORT_BASE + 0)
61/** The low nanosecond timestamp - 4 RO. */
62#define VMMDEV_TESTING_IOPORT_TS_LOW (VMMDEV_TESTING_IOPORT_BASE + 1)
63/** The high nanosecond timestamp - 4 RO. Read this after the low one! */
64#define VMMDEV_TESTING_IOPORT_TS_HIGH (VMMDEV_TESTING_IOPORT_BASE + 2)
65/** Command register usually used for preparing the data register - 4/2 WO. */
66#define VMMDEV_TESTING_IOPORT_CMD (VMMDEV_TESTING_IOPORT_BASE + 3)
67/** Data register which use depends on the current command - 1s, 4 WO. */
68#define VMMDEV_TESTING_IOPORT_DATA (VMMDEV_TESTING_IOPORT_BASE + 4)
69/** The go-to-ring-3-NOP I/O port - 1,2,4 RW. */
70#define VMMDEV_TESTING_IOPORT_NOP_R3 (VMMDEV_TESTING_IOPORT_BASE + 5)
71
72/** @name Commands.
73 * @{ */
74/** Initialize test, sending name (zero terminated string). (RTTestCreate) */
75#define VMMDEV_TESTING_CMD_INIT UINT32_C(0xcab1e000)
76/** Test done, sending 32-bit total error count with it. (RTTestSummaryAndDestroy) */
77#define VMMDEV_TESTING_CMD_TERM UINT32_C(0xcab1e001)
78/** Start a new sub-test, sending name (zero terminated string). (RTTestSub) */
79#define VMMDEV_TESTING_CMD_SUB_NEW UINT32_C(0xcab1e002)
80/** Sub-test is done, sending 32-bit error count for it. (RTTestDone) */
81#define VMMDEV_TESTING_CMD_SUB_DONE UINT32_C(0xcab1e003)
82/** Report a failure, sending reason (zero terminated string). (RTTestFailed) */
83#define VMMDEV_TESTING_CMD_FAILED UINT32_C(0xcab1e004)
84/** Report a value, sending the 64-bit value (2x4), the 32-bit unit (4), and
85 * finally the name (zero terminated string). (RTTestValue) */
86#define VMMDEV_TESTING_CMD_VALUE UINT32_C(0xcab1e005)
87/** Report a failure, sending reason (zero terminated string). (RTTestSkipped) */
88#define VMMDEV_TESTING_CMD_SKIPPED UINT32_C(0xcab1e006)
89/** Report a value found in a VMM register, sending a string on the form
90 * "value-name:register-name". */
91#define VMMDEV_TESTING_CMD_VALUE_REG UINT32_C(0xcab1e007)
92/** Print string, sending a string including newline. (RTTestPrintf) */
93#define VMMDEV_TESTING_CMD_PRINT UINT32_C(0xcab1e008)
94
95/** The magic part of the command. */
96#define VMMDEV_TESTING_CMD_MAGIC UINT32_C(0xcab1e000)
97/** The magic part of the command. */
98#define VMMDEV_TESTING_CMD_MAGIC_MASK UINT32_C(0xffffff00)
99/** The magic high word automatically supplied to 16-bit CMD writes. */
100#define VMMDEV_TESTING_CMD_MAGIC_HI_WORD UINT32_C(0xcab10000)
101/** @} */
102
103/** @name Value units
104 * @{ */
105#define VMMDEV_TESTING_UNIT_PCT UINT8_C(0x01) /**< Percentage. */
106#define VMMDEV_TESTING_UNIT_BYTES UINT8_C(0x02) /**< Bytes. */
107#define VMMDEV_TESTING_UNIT_BYTES_PER_SEC UINT8_C(0x03) /**< Bytes per second. */
108#define VMMDEV_TESTING_UNIT_KILOBYTES UINT8_C(0x04) /**< Kilobytes. */
109#define VMMDEV_TESTING_UNIT_KILOBYTES_PER_SEC UINT8_C(0x05) /**< Kilobytes per second. */
110#define VMMDEV_TESTING_UNIT_MEGABYTES UINT8_C(0x06) /**< Megabytes. */
111#define VMMDEV_TESTING_UNIT_MEGABYTES_PER_SEC UINT8_C(0x07) /**< Megabytes per second. */
112#define VMMDEV_TESTING_UNIT_PACKETS UINT8_C(0x08) /**< Packets. */
113#define VMMDEV_TESTING_UNIT_PACKETS_PER_SEC UINT8_C(0x09) /**< Packets per second. */
114#define VMMDEV_TESTING_UNIT_FRAMES UINT8_C(0x0a) /**< Frames. */
115#define VMMDEV_TESTING_UNIT_FRAMES_PER_SEC UINT8_C(0x0b) /**< Frames per second. */
116#define VMMDEV_TESTING_UNIT_OCCURRENCES UINT8_C(0x0c) /**< Occurrences. */
117#define VMMDEV_TESTING_UNIT_OCCURRENCES_PER_SEC UINT8_C(0x0d) /**< Occurrences per second. */
118#define VMMDEV_TESTING_UNIT_CALLS UINT8_C(0x0e) /**< Calls. */
119#define VMMDEV_TESTING_UNIT_CALLS_PER_SEC UINT8_C(0x0f) /**< Calls per second. */
120#define VMMDEV_TESTING_UNIT_ROUND_TRIP UINT8_C(0x10) /**< Round trips. */
121#define VMMDEV_TESTING_UNIT_SECS UINT8_C(0x11) /**< Seconds. */
122#define VMMDEV_TESTING_UNIT_MS UINT8_C(0x12) /**< Milliseconds. */
123#define VMMDEV_TESTING_UNIT_NS UINT8_C(0x13) /**< Nanoseconds. */
124#define VMMDEV_TESTING_UNIT_NS_PER_CALL UINT8_C(0x14) /**< Nanoseconds per call. */
125#define VMMDEV_TESTING_UNIT_NS_PER_FRAME UINT8_C(0x15) /**< Nanoseconds per frame. */
126#define VMMDEV_TESTING_UNIT_NS_PER_OCCURRENCE UINT8_C(0x16) /**< Nanoseconds per occurrence. */
127#define VMMDEV_TESTING_UNIT_NS_PER_PACKET UINT8_C(0x17) /**< Nanoseconds per frame. */
128#define VMMDEV_TESTING_UNIT_NS_PER_ROUND_TRIP UINT8_C(0x18) /**< Nanoseconds per round trip. */
129#define VMMDEV_TESTING_UNIT_INSTRS UINT8_C(0x19) /**< Instructions. */
130#define VMMDEV_TESTING_UNIT_INSTRS_PER_SEC UINT8_C(0x1a) /**< Instructions per second. */
131#define VMMDEV_TESTING_UNIT_NONE UINT8_C(0x1b) /**< No unit. */
132/** @} */
133
134
135/** What the NOP accesses returns. */
136#define VMMDEV_TESTING_NOP_RET UINT32_C(0x64726962) /* bird */
137
138/** @} */
139
140#endif
141
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