summaryrefslogtreecommitdiff
path: root/IntelFrameworkModulePkg/Bus/Isa/Ps2MouseDxe/CommPs2.h
diff options
context:
space:
mode:
Diffstat (limited to 'IntelFrameworkModulePkg/Bus/Isa/Ps2MouseDxe/CommPs2.h')
-rw-r--r--IntelFrameworkModulePkg/Bus/Isa/Ps2MouseDxe/CommPs2.h73
1 files changed, 46 insertions, 27 deletions
diff --git a/IntelFrameworkModulePkg/Bus/Isa/Ps2MouseDxe/CommPs2.h b/IntelFrameworkModulePkg/Bus/Isa/Ps2MouseDxe/CommPs2.h
index 8e2b58d440..5eb55de13c 100644
--- a/IntelFrameworkModulePkg/Bus/Isa/Ps2MouseDxe/CommPs2.h
+++ b/IntelFrameworkModulePkg/Bus/Isa/Ps2MouseDxe/CommPs2.h
@@ -75,32 +75,50 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
//
// Keyboard Controller Status
//
-#define KBC_PARE 0x80 // Parity Error
-#define KBC_TIM 0x40 // General Time Out
-#define KBC_AUXB 0x20 // Output buffer for auxiliary device (PS/2):
-// 0 - Holds keyboard data
-// 1 - Holds data for auxiliary device
-//
-#define KBC_KEYL 0x10 // Keyboard lock status:
-// 0 - keyboard locked
-// 1 - keyboard free
-//
-#define KBC_CD 0x08 // Command/Data:
-// 0 - data byte written via port 60h
-// 1 - command byte written via port 64h
-//
-#define KBC_SYSF 0x04 // System Flag:
-// 0 - power-on reset
-// 1 - self-test successful
-//
-#define KBC_INPB 0x02 // Input Buffer Status :
-// 0 - input buffer empty
-// 1 - CPU data in input buffer
-//
-#define KBC_OUTB 0x01 // Output Buffer Status :
-// 0 - output buffer empty
-// 1 - keyboard controller data in output buffer
-//
+///
+/// Parity Error
+///
+#define KBC_PARE 0x80
+///
+/// General Time Out
+///
+#define KBC_TIM 0x40
+///
+/// Output buffer for auxiliary device (PS/2):
+/// 0 - Holds keyboard data
+/// 1 - Holds data for auxiliary device
+///
+#define KBC_AUXB 0x20
+///
+/// Keyboard lock status:
+/// 0 - keyboard locked
+/// 1 - keyboard free
+///
+#define KBC_KEYL 0x10
+///
+/// Command/Data:
+/// 0 - data byte written via port 60h
+/// 1 - command byte written via port 64h
+///
+#define KBC_CD 0x08
+///
+/// System Flag:
+/// 0 - power-on reset
+/// 1 - self-test successful
+///
+#define KBC_SYSF 0x04
+///
+/// Input Buffer Status :
+/// 0 - input buffer empty
+/// 1 - CPU data in input buffer
+///
+#define KBC_INPB 0x02
+///
+/// Output Buffer Status :
+/// 0 - output buffer empty
+/// 1 - keyboard controller data in output buffer
+///
+#define KBC_OUTB 0x01
/**
Issue self test command via IsaIo interface.
@@ -413,4 +431,5 @@ WaitOutputFull (
IN UINTN Timeout
);
-#endif // _COMMPS2_H_
+#endif
+