summaryrefslogtreecommitdiff
path: root/Board/IO/F81216/ACPI/Uart2.ASL
blob: 5f861fb8c0eb966c3a12ccd6d8ddf32dfa1ac6f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
//**********************************************************************
//**********************************************************************
//**                                                                  **
//**        (C)Copyright 1985-2009, American Megatrends, Inc.         **
//**                                                                  **
//**                       All Rights Reserved.                       **
//**                                                                  **
//**             5555 Oakbrook Pkwy, Norcross, GA 30093               **
//**                                                                  **
//**                       Phone: (770)-246-8600                      **
//**                                                                  **
//**********************************************************************
//**********************************************************************
// $Header: /Alaska/BIN/IO/Fintek/F81216_Sec/F81216 Device ASL Files/Uart2.ASL 2     7/04/11 3:23a Kasalinyi $
//
// $Revision: 2 $
//
// $Date: 7/04/11 3:23a $
//**********************************************************************;
// Revision History
// ----------------
// $Log: /Alaska/BIN/IO/Fintek/F81216_Sec/F81216 Device ASL Files/Uart2.ASL $
// 
// 2     7/04/11 3:23a Kasalinyi
// [Category]  	Improvement
// [Description]  	Update to new template
// [Files]  		Uart3.ASL
// Uart4.ASL
// Uart2.ASL
// Uart1.ASL
// DeviceASL.cif
// 
// 1     10/28/10 2:32a Mikes
// Implement new name rule
// 
// 1     3/31/10 5:56a Fantasylai
//**********************************************************************;
// UART2 //
// Category # :0x12
Device(UR12) {
    Name(_HID, EISAID("PNP0501"))    //PnP Device ID 16550 Type
	Name(_UID, 0x12)	
	Name(_DDN, "COM8")
                            //Generic ID for COMD
//	Method(_HID, 0)	{Return(^^SIO2.UHID(0x12))}	//PnP Device ID
	Method(_STA, 0) {Return(^^SIO2.DSTA(0x12))}	//Get UART status
	Method(_DIS, 0) {^^SIO2.DCNT(0x12, 0)}			//Disable UART
    //Default is share mode
	Method(_CRS, 0) {Return(^^SIO2.DCR3(0x12, 0))} //Get UART current resources
	Method(_SRS, 1) {^^SIO2.DSR3(Arg0, 0x12)}      //Set UART recources

//-----------------------------------------------------------------------
// UART2 Possible Resources
//-----------------------------------------------------------------------
//NOTE: _PRS MUST be the NAME not a METHOD object 
//to have GENERICSIO.C working right! 
//-----------------------------------------------------------------------
	Name(_PRS, ResourceTemplate() {
		StartDependentFn(0, 0) {
			IO(Decode16, 0x268, 0x268, 1, 8)
			IRQ(Level,ActiveLow,Shared) {11}
			DMA(Compatibility, NotBusMaster, Transfer8) {}
		}
		StartDependentFnNoPri() {
			IO(Decode16, 0x260, 0x260, 1, 8)
			IRQ(Level,ActiveLow,Shared) {10,11,12}
			DMA(Compatibility, NotBusMaster, Transfer8) {}
		}
		StartDependentFnNoPri() {
			IO(Decode16, 0x268, 0x268, 1, 8)
			IRQ(Level,ActiveLow,Shared) {10,11,12}
			DMA(Compatibility, NotBusMaster, Transfer8) {}
		}
		StartDependentFnNoPri() {
			IO(Decode16, 0x270, 0x270, 1, 8)
			IRQ(Level,ActiveLow,Shared) {10,11,12}
			DMA(Compatibility, NotBusMaster, Transfer8) {}
		}
		StartDependentFnNoPri() {
			IO(Decode16, 0x278, 0x278, 1, 8)
			IRQ(Level,ActiveLow,Shared) {10,11,12}
			DMA(Compatibility, NotBusMaster, Transfer8) {}
		}
		EndDependentFn()
	})
/*
//---------Power Resources for UART2 -------------------------
	PowerResource(URP2, 0, 0) {	//SystemLevel Parameter=0,
					//which means UART can be turned off
					//in any sleep state
		Method(_STA, 0) {
			Return(URBP)	//Get Power Status
		}			//end of _STA
		Method(_ON) {
			Store(1, URBP)	//Power on
		}			//end of _ON
		Method(_OFF){
			Store(0, URBP)	//Power off
		}			//end of _OFF
	}
	Name(_PR0, Package(){URP2})	//Reference to PowerResources
*/
} // End Of UAR2
//-----------------------------------------------------------------------

//*************************************************************************
//*************************************************************************
//**                                                                     **
//**        (C)Copyright 1985-2008, American Megatrends, Inc.            **
//**                                                                     **
//**                       All Rights Reserved.                          **
//**                                                                     **
//**      5555 Oakbrook Parkway, Suite 200, Norcross, GA 30093           **
//**                                                                     **
//**                       Phone: (770)-246-8600                         **
//**                                                                     **
//*************************************************************************
//*************************************************************************