VirtualBox

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

Last change on this file since 60404 was 56292, checked in by vboxsync, 9 years ago

Devices: Updated (C) year.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.9 KB
Line 
1/* $Id: PS2Dev.h 56292 2015-06-09 14:20:46Z vboxsync $ */
2/** @file
3 * PS/2 devices - Internal header file.
4 */
5
6/*
7 * Copyright (C) 2007-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
18#ifndef PS2DEV_H
19#define PS2DEV_H
20
21/** The size of the PS2K/PS2M structure fillers.
22 * @note Must be at least as big as the real struct. Compile time assert
23 * makes sure this is so. */
24#define PS2K_STRUCT_FILLER 512
25#define PS2M_STRUCT_FILLER 512
26
27/* Hide the internal structure. */
28#if !(defined(IN_PS2K) || defined(VBOX_DEVICE_STRUCT_TESTCASE))
29typedef struct PS2K
30{
31 uint8_t abFiller[PS2K_STRUCT_FILLER];
32} PS2K;
33#endif
34
35#if !(defined(IN_PS2M) || defined(VBOX_DEVICE_STRUCT_TESTCASE))
36typedef struct PS2M
37{
38 uint8_t abFiller[PS2M_STRUCT_FILLER];
39} PS2M;
40#endif
41
42/* Internal PS/2 Keyboard interface. */
43typedef struct PS2K *PPS2K;
44
45int PS2KByteToKbd(PPS2K pThis, uint8_t cmd);
46int PS2KByteFromKbd(PPS2K pThis, uint8_t *pVal);
47
48int PS2KConstruct(PPS2K pThis, PPDMDEVINS pDevIns, void *pParent, int iInstance);
49int PS2KAttach(PPS2K pThis, PPDMDEVINS pDevIns, unsigned iLUN, uint32_t fFlags);
50void PS2KReset(PPS2K pThis);
51void PS2KRelocate(PPS2K pThis, RTGCINTPTR offDelta, PPDMDEVINS pDevIns);
52void PS2KSaveState(PPS2K pThis, PSSMHANDLE pSSM);
53int PS2KLoadState(PPS2K pThis, PSSMHANDLE pSSM, uint32_t uVersion);
54int PS2KLoadDone(PPS2K pThis, PSSMHANDLE pSSM);
55
56PS2K *KBDGetPS2KFromDevIns(PPDMDEVINS pDevIns);
57
58
59/* Internal PS/2 Auxiliary device interface. */
60typedef struct PS2M *PPS2M;
61
62int PS2MByteToAux(PPS2M pThis, uint8_t cmd);
63int PS2MByteFromAux(PPS2M pThis, uint8_t *pVal);
64
65int PS2MConstruct(PPS2M pThis, PPDMDEVINS pDevIns, void *pParent, int iInstance);
66int PS2MAttach(PPS2M pThis, PPDMDEVINS pDevIns, unsigned iLUN, uint32_t fFlags);
67void PS2MReset(PPS2M pThis);
68void PS2MRelocate(PPS2M pThis, RTGCINTPTR offDelta, PPDMDEVINS pDevIns);
69void PS2MSaveState(PPS2M pThis, PSSMHANDLE pSSM);
70int PS2MLoadState(PPS2M pThis, PSSMHANDLE pSSM, uint32_t uVersion);
71void PS2MFixupState(PPS2M pThis, uint8_t u8State, uint8_t u8Rate, uint8_t u8Proto);
72
73PS2M *KBDGetPS2MFromDevIns(PPDMDEVINS pDevIns);
74
75
76/* Shared keyboard/aux internal interface. */
77void KBCUpdateInterrupts(void *pKbc);
78
79
80///@todo: This should live with the KBC implementation.
81/** AT to PC scancode translator state. */
82typedef enum
83{
84 XS_IDLE, /**< Starting state. */
85 XS_BREAK, /**< F0 break byte was received. */
86 XS_HIBIT /**< Break code still active. */
87} xlat_state_t;
88
89int32_t XlateAT2PC(int32_t state, uint8_t scanIn, uint8_t *pScanOut);
90
91#endif
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use