Appendix C – Digital I/O Ports
79
Mo
bile
NVR
VPC
-5600S
************************************************************************************
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();
}
************************************************************************************
Summary of Contents for VPC-5600S
Page 1: ...Last Updated July 10 2018 VPC 5600S Mobile NVR User s Manual 4th Ed...
Page 14: ...Mobile NVR VPC 5600S Chapter 1 Chapter 1 Product Specifications...
Page 17: ...Mobile NVR VPC 5600S Chapter 2 Chapter 2 Hardware Information...
Page 19: ...Chapter 2 Hardware Information 6 Mobile NVR VPC 5600S 174 7 100 50 145 64...
Page 36: ...Chapter 2 Hardware Information 23 Mobile NVR VPC 5600S 2 Remove the screws from 6 locations...
Page 37: ...Chapter 2 Hardware Information 24 Mobile NVR VPC 5600S 3 Remove the top cover...
Page 40: ...Chapter 2 Hardware Information 27 Mobile NVR VPC 5600S 2 Remove the bottom cover...
Page 41: ...Chapter 2 Hardware Information 28 Mobile NVR VPC 5600S 3 Remove these six screws...
Page 42: ...Chapter 2 Hardware Information 29 Mobile NVR VPC 5600S 4 Lift up the case...
Page 43: ...Chapter 2 Hardware Information 30 Mobile NVR VPC 5600S 5 Pick up the case...
Page 44: ...Chapter 2 Hardware Information 31 Mobile NVR VPC 5600S 6 Install the GPS cable and WiFi Screw...
Page 45: ...Chapter 2 Hardware Information 32 Mobile NVR VPC 5600S 7 Install the RAM and thermal pad...
Page 46: ...Mobile NVR VPC 5600S Chapter 3 Chapter 3 AMI BIOS Setup...
Page 49: ...Chapter 3 AMI BIOS Setup 36 Mobile NVR VPC 5600S 3 3 Setup submenu Main...
Page 50: ...Chapter 3 AMI BIOS Setup 37 Mobile NVR VPC 5600S 3 4 Setup submenu Advanced...
Page 56: ...Chapter 3 AMI BIOS Setup 43 Mobile NVR VPC 5600S 3 4 5 Advanced Hardware Monitor...
Page 57: ...Chapter 3 AMI BIOS Setup 44 Mobile NVR VPC 5600S 3 4 6 Advanced SIO Configuration...
Page 67: ...Chapter 3 AMI BIOS Setup 54 Mobile NVR VPC 5600S 3 5 Setup submenu Chipset...
Page 68: ...Chapter 3 AMI BIOS Setup 55 Mobile NVR VPC 5600S 3 5 1 Chipset System Agent SA Configuration...
Page 72: ...Chapter 3 AMI BIOS Setup 59 Mobile NVR VPC 5600S 3 8 Setup submenu Save Exit...
Page 73: ...Mobile NVR VPC 5600S Chapter 4 Chapter 4 Drivers Installation...
Page 76: ...Mobile NVR VPC 5600S Appendix A Appendix A Watchdog Timer Programming...
Page 82: ...Mobile NVR VPC 5600S Appendix B Appendix B I O Information...
Page 83: ...Appendix B I O Information 70 Mobile NVR VPC 5600S B 1 I O Address Map...
Page 84: ...Appendix B I O Information 71 Mobile NVR VPC 5600S B 2 IRQ Mapping Chart...
Page 85: ...Mobile NVR VPC 5600S Appendix C Appendix C Digital I O Ports...