AAEON EMB-QM87A User Manual

Page 112

Advertising
background image

M i n i - I T X

E M B - Q M 8 7 A

Appendix E Electrical Specifications for I/O Ports

D-8

************************************************************************************
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(); 


************************************************************************************

Advertising