VirtualBox

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

Last change on this file since 73768 was 69107, checked in by vboxsync, 7 years ago

include/VBox/: (C) year

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 8.3 KB
Line 
1/* $Id: VMMDevTesting.h 69107 2017-10-17 10:53:48Z vboxsync $ */
2/** @file
3 * VMMDev - Testing Extensions.
4 */
5
6/*
7 * Copyright (C) 2010-2017 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
46/** MMIO offset: The NOP register - 1248 RW. */
47#define VMMDEV_TESTING_MMIO_OFF_NOP (0x000)
48/** MMIO offset: The go-to-ring-3-NOP register - 1248 RW. */
49#define VMMDEV_TESTING_MMIO_OFF_NOP_R3 (0x008)
50/** MMIO offset: The readback registers - 64 bytes of read/write "memory". */
51#define VMMDEV_TESTING_MMIO_OFF_READBACK (0x040)
52/** MMIO offset: Readback register view that always goes to ring-3. */
53#define VMMDEV_TESTING_MMIO_OFF_READBACK_R3 (0x080)
54/** The size of the MMIO readback registers. */
55#define VMMDEV_TESTING_READBACK_SIZE (0x40)
56
57/** Default address of VMMDEV_TESTING_MMIO_OFF_NOP. */
58#define VMMDEV_TESTING_MMIO_NOP (VMMDEV_TESTING_MMIO_BASE + VMMDEV_TESTING_MMIO_OFF_NOP)
59/** Default address of VMMDEV_TESTING_MMIO_OFF_NOP_R3. */
60#define VMMDEV_TESTING_MMIO_NOP_R3 (VMMDEV_TESTING_MMIO_BASE + VMMDEV_TESTING_MMIO_OFF_NOP_R3)
61/** Default address of VMMDEV_TESTING_MMIO_OFF_READBACK. */
62#define VMMDEV_TESTING_MMIO_READBACK (VMMDEV_TESTING_MMIO_BASE + VMMDEV_TESTING_MMIO_OFF_READBACK)
63/** Default address of VMMDEV_TESTING_MMIO_OFF_READBACK_R3. */
64#define VMMDEV_TESTING_MMIO_READBACK_R3 (VMMDEV_TESTING_MMIO_BASE + VMMDEV_TESTING_MMIO_OFF_READBACK_R3)
65
66/** The real mode selector to use.
67 * @remarks Requires that the A20 gate is enabled. */
68#define VMMDEV_TESTING_MMIO_RM_SEL 0xffff
69/** Calculate the real mode offset of a MMIO register. */
70#define VMMDEV_TESTING_MMIO_RM_OFF(val) ((val) - 0xffff0)
71/** Calculate the real mode offset of a MMIO register offset. */
72#define VMMDEV_TESTING_MMIO_RM_OFF2(off) ((off) + 16 + 0x1000)
73
74/** The base port of the I/O range used for testing. */
75#define VMMDEV_TESTING_IOPORT_BASE 0x0510
76/** The number of I/O ports reserved for testing. */
77#define VMMDEV_TESTING_IOPORT_COUNT 0x0010
78/** The NOP I/O port - 1,2,4 RW. */
79#define VMMDEV_TESTING_IOPORT_NOP (VMMDEV_TESTING_IOPORT_BASE + 0)
80/** The low nanosecond timestamp - 4 RO. */
81#define VMMDEV_TESTING_IOPORT_TS_LOW (VMMDEV_TESTING_IOPORT_BASE + 1)
82/** The high nanosecond timestamp - 4 RO. Read this after the low one! */
83#define VMMDEV_TESTING_IOPORT_TS_HIGH (VMMDEV_TESTING_IOPORT_BASE + 2)
84/** Command register usually used for preparing the data register - 4/2 WO. */
85#define VMMDEV_TESTING_IOPORT_CMD (VMMDEV_TESTING_IOPORT_BASE + 3)
86/** Data register which use depends on the current command - 1s, 4 WO. */
87#define VMMDEV_TESTING_IOPORT_DATA (VMMDEV_TESTING_IOPORT_BASE + 4)
88/** The go-to-ring-3-NOP I/O port - 1,2,4 RW. */
89#define VMMDEV_TESTING_IOPORT_NOP_R3 (VMMDEV_TESTING_IOPORT_BASE + 5)
90
91/** @name Commands.
92 * @{ */
93/** Initialize test, sending name (zero terminated string). (RTTestCreate) */
94#define VMMDEV_TESTING_CMD_INIT UINT32_C(0xcab1e000)
95/** Test done, sending 32-bit total error count with it. (RTTestSummaryAndDestroy) */
96#define VMMDEV_TESTING_CMD_TERM UINT32_C(0xcab1e001)
97/** Start a new sub-test, sending name (zero terminated string). (RTTestSub) */
98#define VMMDEV_TESTING_CMD_SUB_NEW UINT32_C(0xcab1e002)
99/** Sub-test is done, sending 32-bit error count for it. (RTTestDone) */
100#define VMMDEV_TESTING_CMD_SUB_DONE UINT32_C(0xcab1e003)
101/** Report a failure, sending reason (zero terminated string). (RTTestFailed) */
102#define VMMDEV_TESTING_CMD_FAILED UINT32_C(0xcab1e004)
103/** Report a value, sending the 64-bit value (2x4), the 32-bit unit (4), and
104 * finally the name (zero terminated string). (RTTestValue) */
105#define VMMDEV_TESTING_CMD_VALUE UINT32_C(0xcab1e005)
106/** Report a failure, sending reason (zero terminated string). (RTTestSkipped) */
107#define VMMDEV_TESTING_CMD_SKIPPED UINT32_C(0xcab1e006)
108/** Report a value found in a VMM register, sending a string on the form
109 * "value-name:register-name". */
110#define VMMDEV_TESTING_CMD_VALUE_REG UINT32_C(0xcab1e007)
111/** Print string, sending a string including newline. (RTTestPrintf) */
112#define VMMDEV_TESTING_CMD_PRINT UINT32_C(0xcab1e008)
113
114/** The magic part of the command. */
115#define VMMDEV_TESTING_CMD_MAGIC UINT32_C(0xcab1e000)
116/** The magic part of the command. */
117#define VMMDEV_TESTING_CMD_MAGIC_MASK UINT32_C(0xffffff00)
118/** The magic high word automatically supplied to 16-bit CMD writes. */
119#define VMMDEV_TESTING_CMD_MAGIC_HI_WORD UINT32_C(0xcab10000)
120/** @} */
121
122/** @name Value units
123 * @{ */
124#define VMMDEV_TESTING_UNIT_PCT UINT8_C(0x01) /**< Percentage. */
125#define VMMDEV_TESTING_UNIT_BYTES UINT8_C(0x02) /**< Bytes. */
126#define VMMDEV_TESTING_UNIT_BYTES_PER_SEC UINT8_C(0x03) /**< Bytes per second. */
127#define VMMDEV_TESTING_UNIT_KILOBYTES UINT8_C(0x04) /**< Kilobytes. */
128#define VMMDEV_TESTING_UNIT_KILOBYTES_PER_SEC UINT8_C(0x05) /**< Kilobytes per second. */
129#define VMMDEV_TESTING_UNIT_MEGABYTES UINT8_C(0x06) /**< Megabytes. */
130#define VMMDEV_TESTING_UNIT_MEGABYTES_PER_SEC UINT8_C(0x07) /**< Megabytes per second. */
131#define VMMDEV_TESTING_UNIT_PACKETS UINT8_C(0x08) /**< Packets. */
132#define VMMDEV_TESTING_UNIT_PACKETS_PER_SEC UINT8_C(0x09) /**< Packets per second. */
133#define VMMDEV_TESTING_UNIT_FRAMES UINT8_C(0x0a) /**< Frames. */
134#define VMMDEV_TESTING_UNIT_FRAMES_PER_SEC UINT8_C(0x0b) /**< Frames per second. */
135#define VMMDEV_TESTING_UNIT_OCCURRENCES UINT8_C(0x0c) /**< Occurrences. */
136#define VMMDEV_TESTING_UNIT_OCCURRENCES_PER_SEC UINT8_C(0x0d) /**< Occurrences per second. */
137#define VMMDEV_TESTING_UNIT_CALLS UINT8_C(0x0e) /**< Calls. */
138#define VMMDEV_TESTING_UNIT_CALLS_PER_SEC UINT8_C(0x0f) /**< Calls per second. */
139#define VMMDEV_TESTING_UNIT_ROUND_TRIP UINT8_C(0x10) /**< Round trips. */
140#define VMMDEV_TESTING_UNIT_SECS UINT8_C(0x11) /**< Seconds. */
141#define VMMDEV_TESTING_UNIT_MS UINT8_C(0x12) /**< Milliseconds. */
142#define VMMDEV_TESTING_UNIT_NS UINT8_C(0x13) /**< Nanoseconds. */
143#define VMMDEV_TESTING_UNIT_NS_PER_CALL UINT8_C(0x14) /**< Nanoseconds per call. */
144#define VMMDEV_TESTING_UNIT_NS_PER_FRAME UINT8_C(0x15) /**< Nanoseconds per frame. */
145#define VMMDEV_TESTING_UNIT_NS_PER_OCCURRENCE UINT8_C(0x16) /**< Nanoseconds per occurrence. */
146#define VMMDEV_TESTING_UNIT_NS_PER_PACKET UINT8_C(0x17) /**< Nanoseconds per frame. */
147#define VMMDEV_TESTING_UNIT_NS_PER_ROUND_TRIP UINT8_C(0x18) /**< Nanoseconds per round trip. */
148#define VMMDEV_TESTING_UNIT_INSTRS UINT8_C(0x19) /**< Instructions. */
149#define VMMDEV_TESTING_UNIT_INSTRS_PER_SEC UINT8_C(0x1a) /**< Instructions per second. */
150#define VMMDEV_TESTING_UNIT_NONE UINT8_C(0x1b) /**< No unit. */
151/** @} */
152
153
154/** What the NOP accesses returns. */
155#define VMMDEV_TESTING_NOP_RET UINT32_C(0x64726962) /* bird */
156
157/** @} */
158
159#endif
160
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use