Appendix C – Digital I/O Ports
88
Mo
bile
N
VR
VPC
-5500S
************************************************************************************
VOID SIOEnterMBPnPMode(){
IOWriteByte(SIOIndex, 0x87);
IOWriteByte(SIOIndex, 0x87);
}
VOID SIOExitMBPnPMode(){
IOWriteByte(SIOIndex, 0xAA);
}
VOID SIOSelectLDN(byte LDN){
IOWriteByte(SIOIndex, 0x07);
// SIO LDN Register Offset = 0x07
IOWriteByte(SIOData, LDN);
}
VOID SIOBitSet(byte LDN, byte Register, byte BitNum, byte Value){
Byte TmpValue;
SIOEnterMBPnPMode();
SIOSelectLDN(byte LDN);
IOWriteByte(SIOIndex, Register);
TmpValue = IOReadByte(SIOData);
TmpValue &= ~(1 << BitNum);
TmpValue |= (Value << BitNum);
IOWriteByte(SIOData, TmpValue);
SIOExitMBPnPMode();
}
VOID SIOByteSet(byte LDN, byte Register, byte Value){
SIOEnterMBPnPMode();
SIOSelectLDN(LDN);
IOWriteByte(SIOIndex, Register);
IOWriteByte(SIOData, Value);
SIOExitMBPnPMode();
}
************************************************************************************
Содержание VPC-5500S
Страница 1: ...Last Updated November 4 2016 VPC 5500S Mobile NVR User s Manual 6th Ed...
Страница 14: ...Mobile NVR VPC 5500S Chapter 1 Chapter 1 Product Specifications...
Страница 18: ...Mobile NVR VPC 5500S Chapter 2 Chapter 2 Hardware Information...
Страница 20: ...Chapter 2 Hardware Information 7 Mobile NVR VPC 5500S...
Страница 24: ...Chapter 2 Hardware Information 11 Mobile NVR VPC 5500S U86 U87 MSATA1 CN20 DIMM2...
Страница 36: ...Mobile NVR VPC 5500S Chapter 3 Chapter 3 AMI BIOS Setup...
Страница 39: ...Chapter 3 AMI BIOS Setup 26 Mobile NVR VPC 5500S 3 3 Setup submenu Main...
Страница 40: ...Chapter 3 AMI BIOS Setup 27 Mobile NVR VPC 5500S 3 4 Setup submenu Advanced...
Страница 41: ...Chapter 3 AMI BIOS Setup 28 Mobile NVR VPC 5500S 3 4 1 Advanced CPU Configuration...
Страница 46: ...Chapter 3 AMI BIOS Setup 33 Mobile NVR VPC 5500S 3 4 6 Advanced F81666 Super IO Configuration...
Страница 63: ...Chapter 3 AMI BIOS Setup 50 Mobile NVR VPC 5500S 3 5 3 Chipset Memory Configuration...
Страница 67: ...Chapter 3 AMI BIOS Setup 54 Mobile NVR VPC 5500S 3 8 Setup submenu Save Exit...
Страница 68: ...Mobile NVR VPC 5500S Chapter 4 Chapter 4 Drivers Installation...
Страница 73: ...Chapter 4 Driver Installation 60 Mobile NVR VPC 5500S 2 Reboot and log in as administrator...
Страница 74: ...Chapter 4 Driver Installation 61 Mobile NVR VPC 5500S 3 Run patch bat as administrator...
Страница 77: ...Chapter 4 Driver Installation 64 Mobile NVR VPC 5500S...
Страница 78: ...Mobile NVR VPC 5500S Appendix A Appendix A Watchdog Timer Programming...
Страница 84: ...Mobile NVR VPC 5500S Appendix B Appendix B I O Information...
Страница 85: ...Appendix B I O Information 72 Mobile NVR VPC 5500S B 1 I O Address Map...
Страница 86: ...Appendix B I O Information 73 Mobile NVR VPC 5500S...
Страница 87: ...Appendix B I O Information 74 Mobile NVR VPC 5500S B 2 Memory Address Map...
Страница 88: ...Appendix B I O Information 75 Mobile NVR VPC 5500S...
Страница 89: ...Appendix B I O Information 76 Mobile NVR VPC 5500S B 3 IRQ Mapping Chart...
Страница 90: ...Appendix B I O Information 77 Mobile NVR VPC 5500S...
Страница 91: ...Appendix B I O Information 78 Mobile NVR VPC 5500S...
Страница 92: ...Appendix B I O Information 79 Mobile NVR VPC 5500S...
Страница 93: ...Appendix B I O Information 80 Mobile NVR VPC 5500S B 4 DMA Channel Assignments...
Страница 94: ...Mobile NVR VPC 5500S Appendix C Appendix C Digital I O Ports...