gem5  [DEVELOP-FOR-23.0]
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
types.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2011, 2018 ARM Limited
3  * All rights reserved
4  *
5  * The license below extends only to copyright in the software and shall
6  * not be construed as granting a license to any other intellectual
7  * property including but not limited to intellectual property relating
8  * to a hardware implementation of the functionality of the software
9  * licensed hereunder. You may use the software subject to the license
10  * terms below provided that you ensure that this notice is replicated
11  * unmodified and in its entirety in all distributions of the software,
12  * modified or unmodified, in source code or in binary form.
13  *
14  * Redistribution and use in source and binary forms, with or without
15  * modification, are permitted provided that the following conditions are
16  * met: redistributions of source code must retain the above copyright
17  * notice, this list of conditions and the following disclaimer;
18  * redistributions in binary form must reproduce the above copyright
19  * notice, this list of conditions and the following disclaimer in the
20  * documentation and/or other materials provided with the distribution;
21  * neither the name of the copyright holders nor the names of its
22  * contributors may be used to endorse or promote products derived from
23  * this software without specific prior written permission.
24  *
25  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36  */
37 
38 #ifndef __DEV_PS2_HH__
39 #define __DEV_PS2_HH__
40 
41 #include <stdint.h>
42 
43 #include <list>
44 #include <vector>
45 
46 #include "base/bitunion.hh"
47 #include "base/compiler.hh"
48 
53 namespace gem5
54 {
55 
56 namespace ps2
57 {
58 
59 enum
60 {
61  SelfTestPass = 0xAA,
62  ReadID = 0xF2,
63  Enable = 0xF4,
64  Disable = 0xF5,
66  SelfTestFail = 0xFC,
67  Ack = 0xFA,
68  Resend = 0xFE,
69  Reset = 0xFF,
70 };
71 
72 namespace keyboard
73 {
74 
75 enum
76 {
77  LEDWrite = 0xED,
80  TypematicInfo = 0xF3,
83  AllKeysToMake = 0xF9,
87  KeyToMakeOnly = 0xFD,
88 };
89 
90 extern const std::vector<uint8_t> ID;
91 
92 } // namespace keyboard
93 
94 namespace mouse
95 {
96 
97 enum
98 {
99  Scale1to1 = 0xE6,
100  Scale2to1 = 0xE7,
102  GetStatus = 0xE9,
103  ReadData = 0xEB,
105  WrapMode = 0xEE,
106  RemoteMode = 0xF0,
107  SampleRate = 0xF3,
108 };
109 
110 extern const std::vector<uint8_t> ID;
111 
112 } // namespace mouse
113 
116 BitUnion8(Ps2MouseMovement)
117  Bitfield<0> leftButton;
118  Bitfield<1> rightButton;
119  Bitfield<2> middleButton;
120  Bitfield<3> one;
121  Bitfield<4> xSign;
122  Bitfield<5> ySign;
123  Bitfield<6> xOverflow;
124  Bitfield<7> yOverflow;
125 EndBitUnion(Ps2MouseMovement)
126 
127 
133 void keySymToPs2(uint32_t key, bool down, bool &cur_shift,
134  std::list<uint8_t> &keys);
135 
136 } // namespace ps2
137 } // namespace gem5
138 
139 #endif // __DEV_PS2_HH__
gem5::ps2::mouse::ResetWrapMode
@ ResetWrapMode
Definition: types.hh:104
gem5::ps2::EndBitUnion
EndBitUnion(Ps2MouseMovement) void keySymToPs2(uint32_t key
Convert an x11 key symbol into a set of ps2 charecters.
gem5::ps2::mouse::ReadData
@ ReadData
Definition: types.hh:103
gem5::ps2::keyboard::AllKeysToMake
@ AllKeysToMake
Definition: types.hh:83
gem5::ps2::SelfTestPass
@ SelfTestPass
Definition: types.hh:61
gem5::ps2::keyboard::KeyToTypematic
@ KeyToTypematic
Definition: types.hh:85
gem5::ps2::mouse::SetResolution
@ SetResolution
Definition: types.hh:101
gem5::ps2::Resend
@ Resend
Definition: types.hh:68
gem5::ps2::keySymToPs2
void keySymToPs2(uint32_t key, bool down, bool &cur_shift, std::list< uint8_t > &keys)
Definition: types.cc:87
gem5::ps2::mouse::ID
const std::vector< uint8_t > ID
Definition: types.cc:52
sc_dt::list
static scfx_rep_node * list
Definition: scfx_rep.cc:368
std::vector< uint8_t >
gem5::ps2::keyboard::AllKeysToMakeRelease
@ AllKeysToMakeRelease
Definition: types.hh:82
gem5::ps2::xSign
Bitfield< 4 > xSign
Definition: types.hh:121
gem5::ps2::ySign
Bitfield< 5 > ySign
Definition: types.hh:122
gem5::ps2::keyboard::AllKeysToTypematicMakeRelease
@ AllKeysToTypematicMakeRelease
Definition: types.hh:84
gem5::ps2::mouse::RemoteMode
@ RemoteMode
Definition: types.hh:106
gem5::ps2::BitUnion8
BitUnion8(Ps2MouseMovement) Bitfield< 0 > leftButton
A bitfield that represents the first byte of a mouse movement packet.
gem5::ps2::mouse::WrapMode
@ WrapMode
Definition: types.hh:105
gem5::ArmISA::Reset
Definition: faults.hh:315
gem5::ps2::Enable
@ Enable
Definition: types.hh:63
gem5::ps2::one
Bitfield< 3 > one
Definition: types.hh:120
gem5::ps2::mouse::SampleRate
@ SampleRate
Definition: types.hh:107
gem5::ps2::xOverflow
Bitfield< 6 > xOverflow
Definition: types.hh:123
bitunion.hh
gem5::ps2::middleButton
Bitfield< 2 > middleButton
Definition: types.hh:119
gem5::ps2::Disable
@ Disable
Definition: types.hh:64
compiler.hh
gem5::ps2::keyboard::KeyToMakeOnly
@ KeyToMakeOnly
Definition: types.hh:87
gem5::ps2::keyboard::AllKeysToTypematic
@ AllKeysToTypematic
Definition: types.hh:81
gem5::ps2::keyboard::KeyToMakeRelease
@ KeyToMakeRelease
Definition: types.hh:86
gem5::ps2::mouse::Scale2to1
@ Scale2to1
Definition: types.hh:100
gem5::ps2::keys
bool bool std::list< uint8_t > & keys
Definition: types.hh:134
std
Overload hash function for BasicBlockRange type.
Definition: misc.hh:2909
gem5::ps2::ReadID
@ ReadID
Definition: types.hh:62
gem5::ps2::yOverflow
Bitfield< 7 > yOverflow
Definition: types.hh:124
gem5::ps2::keyboard::DiagnosticEcho
@ DiagnosticEcho
Definition: types.hh:78
gem5::ps2::rightButton
Bitfield< 1 > rightButton
Definition: types.hh:118
gem5::ps2::keyboard::TypematicInfo
@ TypematicInfo
Definition: types.hh:80
gem5::ps2::DefaultsAndDisable
@ DefaultsAndDisable
Definition: types.hh:65
gem5::ps2::keyboard::LEDWrite
@ LEDWrite
Definition: types.hh:77
gem5::ps2::cur_shift
bool bool & cur_shift
Definition: types.hh:133
gem5::ps2::Ack
@ Ack
Definition: types.hh:67
gem5
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Definition: gpu_translation_state.hh:37
gem5::ps2::down
bool down
Definition: types.hh:133
gem5::ps2::mouse::GetStatus
@ GetStatus
Definition: types.hh:102
gem5::ps2::keyboard::ID
const std::vector< uint8_t > ID
Definition: types.cc:51
gem5::ps2::keyboard::AlternateScanCodes
@ AlternateScanCodes
Definition: types.hh:79
gem5::ps2::mouse::Scale1to1
@ Scale1to1
Definition: types.hh:99
gem5::ps2::SelfTestFail
@ SelfTestFail
Definition: types.hh:66

Generated on Sun Jul 30 2023 01:56:50 for gem5 by doxygen 1.8.17