VirtualBox

source: vbox/trunk/src/VBox/Devices/PC/DevPcArch.cpp@ 62890

Last change on this file since 62890 was 62890, checked in by vboxsync, 8 years ago

Devices: warnings

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 8.5 KB
Line 
1/* $Id: DevPcArch.cpp 62890 2016-08-02 23:51:30Z vboxsync $ */
2/** @file
3 * DevPcArch - PC Architecture Device.
4 */
5
6/*
7 * Copyright (C) 2006-2016 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
18
19/*********************************************************************************************************************************
20* Header Files *
21*********************************************************************************************************************************/
22#define LOG_GROUP LOG_GROUP_DEV_PC_ARCH
23#include <VBox/vmm/pdmdev.h>
24#include <VBox/vmm/mm.h>
25#include <VBox/log.h>
26#include <VBox/err.h>
27#include <iprt/assert.h>
28#include <iprt/string.h>
29
30#include "VBoxDD.h"
31
32
33/*********************************************************************************************************************************
34* Structures and Typedefs *
35*********************************************************************************************************************************/
36
37/**
38 * PC Bios instance data structure.
39 */
40typedef struct DEVPCARCH
41{
42 /** Pointer back to the device instance. */
43 PPDMDEVINS pDevIns;
44} DEVPCARCH, *PDEVPCARCH;
45
46
47
48/**
49 * @callback_method_impl{FNIOMIOPORTIN, Math coprocessor.}
50 */
51static DECLCALLBACK(int) pcarchIOPortFPURead(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT Port, uint32_t *pu32, unsigned cb)
52{
53 int rc;
54 NOREF(pvUser); NOREF(pDevIns); NOREF(pu32);
55 rc = PDMDevHlpDBGFStop(pDevIns, RT_SRC_POS, "Port=%#x cb=%d\n", Port, cb);
56 if (rc == VINF_SUCCESS)
57 rc = VERR_IOM_IOPORT_UNUSED;
58 return rc;
59}
60
61/**
62 * @callback_method_impl{FNIOMIOPORTOUT, Math coprocessor.}
63 * @todo Add IGNNE support.
64 */
65static DECLCALLBACK(int) pcarchIOPortFPUWrite(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT Port, uint32_t u32, unsigned cb)
66{
67 int rc = VINF_SUCCESS;
68 NOREF(pvUser);
69 if (cb == 1)
70 {
71 switch (Port)
72 {
73 /*
74 * Clear busy latch.
75 */
76 case 0xf0:
77 Log2(("PCARCH: FPU Clear busy latch u32=%#x\n", u32));
78/* This is triggered when booting Knoppix (3.7) */
79#if 0
80 if (!u32)
81 rc = PDMDeviceDBGFStop(pDevIns, RT_SRC_POS, "Port=%#x cb=%d u32=%#x\n", Port, cb, u32);
82#endif
83 /* pDevIns->pHlp->pfnPICSetIrq(pDevIns, 13, 0); */
84 break;
85
86 /* Reset. */
87 case 0xf1:
88 Log2(("PCARCH: FPU Reset cb=%d u32=%#x\n", cb, u32));
89 /** @todo figure out what the difference between FPU ports 0xf0 and 0xf1 are... */
90 /* pDevIns->pHlp->pfnPICSetIrq(pDevIns, 13, 0); */
91 break;
92
93 /* opcode transfers */
94 case 0xf8:
95 case 0xfa:
96 case 0xfc:
97 default:
98 rc = PDMDevHlpDBGFStop(pDevIns, RT_SRC_POS, "Port=%#x cb=%d u32=%#x\n", Port, cb, u32);
99 break;
100 }
101 /* this works better, but probably not entirely correct. */
102 PDMDevHlpISASetIrq(pDevIns, 13, 0);
103 }
104 else
105 rc = PDMDevHlpDBGFStop(pDevIns, RT_SRC_POS, "Port=%#x cb=%d u32=%#x\n", Port, cb, u32);
106 return rc;
107}
108
109
110/**
111 * @callback_method_impl{FNIOMIOPORTIN, PS/2 system control port A.}
112 *
113 * @todo Check if the A20 enable/disable method implemented here in any way
114 * should cooperate with the one implemented in the PS/2 keyboard device.
115 * This probably belongs together in the PS/2 keyboard device (since that
116 * is where the "port B" mentioned by Ralph Brown is implemented).
117 *
118 * @remark Ralph Brown and friends have this to say about this port:
119 *
120 * @verbatim
1210092 RW PS/2 system control port A (port B is at PORT 0061h) (see #P0415)
122
123Bitfields for PS/2 system control port A:
124Bit(s) Description (Table P0415)
125 7-6 any bit set to 1 turns activity light on
126 5 unused
127 4 watchdog timout occurred
128 3 =0 RTC/CMOS security lock (on password area) unlocked
129 =1 CMOS locked (done by POST)
130 2 unused
131 1 A20 is active
132 0 =0 system reset or write
133 =1 pulse alternate reset pin (high-speed alternate CPU reset)
134Notes: once set, bit 3 may only be cleared by a power-on reset
135 on at least the C&T 82C235, bit 0 remains set through a CPU reset to
136 allow the BIOS to determine the reset method
137 on the PS/2 30-286 & "Tortuga" the INT 15h/87h memory copy does
138 not use this port for A20 control, but instead uses the keyboard
139 controller (8042). Reportedly this may cause the system to crash
140 when access to the 8042 is disabled in password server mode
141 (see #P0398).
142SeeAlso: #P0416,#P0417,MSR 00001000h
143 * @endverbatim
144 */
145static DECLCALLBACK(int)
146pcarchIOPortPS2SysControlPortARead(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT Port, uint32_t *pu32, unsigned cb)
147{
148 RT_NOREF1(pvUser);
149 if (cb == 1)
150 {
151 *pu32 = PDMDevHlpA20IsEnabled(pDevIns) << 1;
152 return VINF_SUCCESS;
153 }
154 return PDMDevHlpDBGFStop(pDevIns, RT_SRC_POS, "Port=%#x cb=%d\n", Port, cb);
155}
156
157
158/**
159 * @callback_method_impl{FNIOMIOPORTOUT, PS/2 system control port A.}
160 * @see Remark and todo of pcarchIOPortPS2SysControlPortARead().
161 */
162static DECLCALLBACK(int)
163pcarchIOPortPS2SysControlPortAWrite(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT Port, uint32_t u32, unsigned cb)
164{
165 NOREF(pvUser);
166 if (cb == 1)
167 {
168 /*
169 * Fast reset?
170 */
171 if (u32 & 1)
172 {
173 LogRel(("Reset initiated by system port A\n"));
174 return PDMDevHlpVMReset(pDevIns, PDMVMRESET_F_PORT_A);
175 }
176
177 /*
178 * A20 is the only thing we care about of the other stuff.
179 */
180 PDMDevHlpA20Set(pDevIns, !!(u32 & 2));
181 return VINF_SUCCESS;
182 }
183 return PDMDevHlpDBGFStop(pDevIns, RT_SRC_POS, "Port=%#x cb=%d u32=%#x\n", Port, cb, u32);
184}
185
186
187/**
188 * @interface_method_impl{PDMDEVREG,pfnConstruct}
189 */
190static DECLCALLBACK(int) pcarchConstruct(PPDMDEVINS pDevIns, int iInstance, PCFGMNODE pCfg)
191{
192 RT_NOREF1(iInstance);
193 PDMDEV_CHECK_VERSIONS_RETURN(pDevIns);
194 PDEVPCARCH pThis = PDMINS_2_DATA(pDevIns, PDEVPCARCH);
195 int rc;
196 Assert(iInstance == 0);
197
198 /*
199 * Validate configuration.
200 */
201 if (!CFGMR3AreValuesValid(pCfg, "\0"))
202 return VERR_PDM_DEVINS_UNKNOWN_CFG_VALUES;
203
204 /*
205 * Init the data.
206 */
207 pThis->pDevIns = pDevIns;
208
209 /*
210 * Register I/O Ports
211 */
212 rc = PDMDevHlpIOPortRegister(pDevIns, 0xF0, 0x10, NULL,
213 pcarchIOPortFPUWrite, pcarchIOPortFPURead,
214 NULL, NULL, "Math Co-Processor (DOS/OS2 mode)");
215 if (RT_FAILURE(rc))
216 return rc;
217 rc = PDMDevHlpIOPortRegister(pDevIns, 0x92, 1, NULL,
218 pcarchIOPortPS2SysControlPortAWrite, pcarchIOPortPS2SysControlPortARead,
219 NULL, NULL, "PS/2 system control port A (A20 and more)");
220 if (RT_FAILURE(rc))
221 return rc;
222
223 return VINF_SUCCESS;
224}
225
226
227/**
228 * The device registration structure.
229 */
230const PDMDEVREG g_DevicePcArch =
231{
232 /* u32Version */
233 PDM_DEVREG_VERSION,
234 /* szName */
235 "pcarch",
236 /* szRCMod */
237 "",
238 /* szR0Mod */
239 "",
240 /* pszDescription */
241 "PC Architecture Device",
242 /* fFlags */
243 PDM_DEVREG_FLAGS_HOST_BITS_DEFAULT | PDM_DEVREG_FLAGS_GUEST_BITS_DEFAULT,
244 /* fClass */
245 PDM_DEVREG_CLASS_ARCH,
246 /* cMaxInstances */
247 1,
248 /* cbInstance */
249 sizeof(DEVPCARCH),
250 /* pfnConstruct */
251 pcarchConstruct,
252 /* pfnDestruct */
253 NULL,
254 /* pfnRelocate */
255 NULL,
256 /* pfnMemSetup */
257 NULL,
258 /* pfnPowerOn */
259 NULL,
260 /* pfnReset */
261 NULL,
262 /* pfnSuspend */
263 NULL,
264 /* pfnResume */
265 NULL,
266 /* pfnAttach */
267 NULL,
268 /* pfnDetach */
269 NULL,
270 /* pfnQueryInterface. */
271 NULL,
272 /* pfnInitComplete. */
273 NULL,
274 /* pfnPowerOff */
275 NULL,
276 /* pfnSoftReset */
277 NULL,
278 /* u32VersionEnd */
279 PDM_DEVREG_VERSION
280};
281
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