VirtualBox

source: vbox/trunk/src/VBox/Devices/Input/PS2Dev.h@ 49893

Last change on this file since 49893 was 49469, checked in by vboxsync, 11 years ago

DevPS2: Release keys after restoring saved state, not while loading it.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.8 KB
Line 
1/** @file
2 * PS/2 devices - Internal header file.
3 */
4
5/*
6 * Copyright (C) 2007-2012 Oracle Corporation
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License (GPL) as published by the Free Software
12 * Foundation, in version 2 as it comes in the "COPYING" file of the
13 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15 */
16
17#ifndef PS2DEV_H
18#define PS2DEV_H
19
20/** The size of the PS2K/PS2M structure fillers.
21 * @note Must be at least as big as the real struct. Compile time assert
22 * makes sure this is so. */
23#define PS2K_STRUCT_FILLER 512
24#define PS2M_STRUCT_FILLER 512
25
26/* Hide the internal structure. */
27#if !(defined(IN_PS2K) || defined(VBOX_DEVICE_STRUCT_TESTCASE))
28typedef struct PS2K
29{
30 uint8_t abFiller[PS2K_STRUCT_FILLER];
31} PS2K;
32#endif
33
34#if !(defined(IN_PS2M) || defined(VBOX_DEVICE_STRUCT_TESTCASE))
35typedef struct PS2M
36{
37 uint8_t abFiller[PS2M_STRUCT_FILLER];
38} PS2M;
39#endif
40
41/* Internal PS/2 Keyboard interface. */
42typedef struct PS2K *PPS2K;
43
44int PS2KByteToKbd(PPS2K pThis, uint8_t cmd);
45int PS2KByteFromKbd(PPS2K pThis, uint8_t *pVal);
46
47int PS2KConstruct(PPS2K pThis, PPDMDEVINS pDevIns, void *pParent, int iInstance);
48int PS2KAttach(PPS2K pThis, PPDMDEVINS pDevIns, unsigned iLUN, uint32_t fFlags);
49void PS2KReset(PPS2K pThis);
50void PS2KRelocate(PPS2K pThis, RTGCINTPTR offDelta, PPDMDEVINS pDevIns);
51void PS2KSaveState(PPS2K pThis, PSSMHANDLE pSSM);
52int PS2KLoadState(PPS2K pThis, PSSMHANDLE pSSM, uint32_t uVersion);
53int PS2KLoadDone(PPS2K pThis, PSSMHANDLE pSSM);
54
55PS2K *KBDGetPS2KFromDevIns(PPDMDEVINS pDevIns);
56
57
58/* Internal PS/2 Auxiliary device interface. */
59typedef struct PS2M *PPS2M;
60
61int PS2MByteToAux(PPS2M pThis, uint8_t cmd);
62int PS2MByteFromAux(PPS2M pThis, uint8_t *pVal);
63
64int PS2MConstruct(PPS2M pThis, PPDMDEVINS pDevIns, void *pParent, int iInstance);
65int PS2MAttach(PPS2M pThis, PPDMDEVINS pDevIns, unsigned iLUN, uint32_t fFlags);
66void PS2MReset(PPS2M pThis);
67void PS2MRelocate(PPS2M pThis, RTGCINTPTR offDelta, PPDMDEVINS pDevIns);
68void PS2MSaveState(PPS2M pThis, PSSMHANDLE pSSM);
69int PS2MLoadState(PPS2M pThis, PSSMHANDLE pSSM, uint32_t uVersion);
70
71PS2M *KBDGetPS2MFromDevIns(PPDMDEVINS pDevIns);
72
73
74/* Shared keyboard/aux internal interface. */
75void KBCUpdateInterrupts(void *pKbc);
76
77
78///@todo: This should live with the KBC implementation.
79/** AT to PC scancode translator state. */
80typedef enum
81{
82 XS_IDLE, /**< Starting state. */
83 XS_BREAK, /**< F0 break byte was received. */
84 XS_HIBIT /**< Break code still active. */
85} xlat_state_t;
86
87int32_t XlateAT2PC(int32_t state, uint8_t scanIn, uint8_t *pScanOut);
88
89#endif
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