2 The TPM2 definition block in ACPI table for TCG2 physical presence
5 Copyright (c) 2015, Intel Corporation. All rights reserved.<BR>
6 This program and the accompanying materials
7 are licensed and made available under the terms and conditions of the BSD License
8 which accompanies this distribution. The full text of the license may be found at
9 http://opensource.org/licenses/bsd-license.php
11 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
12 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
32 Name (_HID, "MSFT0101")
35 // Readable name of this device, don't know if this way is correct yet
37 Name (_STR, Unicode ("TPM 2.0 Device"))
40 // Return the resource consumed by TPM device
42 Name (_CRS, ResourceTemplate () {
43 Memory32Fixed (ReadOnly, 0xfed40000, 0x5000)
47 // Operational region for Smi port access
49 OperationRegion (SMIP, SystemIO, 0xB2, 1)
50 Field (SMIP, ByteAcc, NoLock, Preserve)
56 // Operational region for TPM access
58 OperationRegion (TPMR, SystemMemory, 0xfed40000, 0x5000)
59 Field (TPMR, AnyAcc, NoLock, Preserve)
65 // Operational region for TPM support, TPM Physical Presence and TPM Memory Clear
66 // Region Offset 0xFFFF0000 and Length 0xF0 will be fixed in C code.
68 OperationRegion (TNVS, SystemMemory, 0xFFFF0000, 0xF0)
69 Field (TNVS, AnyAcc, NoLock, Preserve)
71 PPIN, 8, // Software SMI for Physical Presence Interface
72 PPIP, 32, // Used for save physical presence paramter
73 PPRP, 32, // Physical Presence request operation response
74 PPRQ, 32, // Physical Presence request operation
75 PPRM, 32, // Physical Presence request operation parameter
76 LPPR, 32, // Last Physical Presence request operation
77 FRET, 32, // Physical Presence function return code
78 MCIN, 8, // Software SMI for Memory Clear Interface
79 MCIP, 32, // Used for save the Mor paramter
80 MORD, 32, // Memory Overwrite Request Data
81 MRET, 32 // Memory Overwrite function return code
84 Method (PTS, 1, Serialized)
87 // Detect Sx state for MOR, only S4, S5 need to handle
89 If (LAnd (LLess (Arg0, 6), LGreater (Arg0, 3)))
92 // Bit4 -- DisableAutoDetect. 0 -- Firmware MAY autodetect.
94 If (LNot (And (MORD, 0x10)))
97 // Triggle the SMI through ACPI _PTS method.
102 // Triggle the SMI interrupt
112 if (LEqual (ACC0, 0xff))
120 // TCG Hardware Information
122 Method (HINF, 3, Serialized, 0, {BuffObj, PkgObj}, {UnknownObj, UnknownObj, UnknownObj}) // IntObj, IntObj, PkgObj
125 // Switch by function index
127 Switch (ToInteger(Arg1))
134 Return (Buffer () {0x03})
139 // Return failure if no TPM present
141 Name(TPMV, Package () {0x01, Package () {0x2, 0x0}})
142 if (LEqual (_STA (), 0x00))
144 Return (Package () {0x00})
148 // Return TPM version
154 Return (Buffer () {0})
157 Name(TPM2, Package (0x02){
162 Name(TPM3, Package (0x03){
169 // TCG Physical Presence Interface
171 Method (TPPI, 3, Serialized, 0, {BuffObj, PkgObj, IntObj, StrObj}, {UnknownObj, UnknownObj, UnknownObj}) // IntObj, IntObj, PkgObj
174 // Switch by function index
176 Switch (ToInteger(Arg1))
181 // Standard query, supports function 1-8
183 Return (Buffer () {0xFF, 0x01})
188 // a) Get Physical Presence Interface Version
195 // b) Submit TPM Operation Request to Pre-OS Environment
198 Store (DerefOf (Index (Arg2, 0x00)), PPRQ)
202 // Triggle the SMI interrupt
212 // c) Get Pending TPM Operation Requested By the OS
215 Store (PPRQ, Index (TPM2, 0x01))
221 // d) Get Platform-Specific Action to Transition to Pre-OS Environment
228 // e) Return TPM Operation Response to OS Environment
233 // Triggle the SMI interrupt
237 Store (LPPR, Index (TPM3, 0x01))
238 Store (PPRP, Index (TPM3, 0x02))
246 // f) Submit preferred user language (Not implemented)
255 // g) Submit TPM Operation Request to Pre-OS Environment 2
258 Store (DerefOf (Index (Arg2, 0x00)), PPRQ)
260 If (LEqual (PPRQ, 23)) {
261 Store (DerefOf (Index (Arg2, 0x01)), PPRM)
265 // Triggle the SMI interrupt
273 // e) Get User Confirmation Status for Operation
276 Store (DerefOf (Index (Arg2, 0x00)), PPRQ)
279 // Triggle the SMI interrupt
291 Method (TMCI, 3, Serialized, 0, IntObj, {UnknownObj, UnknownObj, UnknownObj}) // IntObj, IntObj, PkgObj
294 // Switch by function index
296 Switch (ToInteger (Arg1))
301 // Standard query, supports function 1-1
303 Return (Buffer () {0x03})
308 // Save the Operation Value of the Request to MORD (reserved memory)
310 Store (DerefOf (Index (Arg2, 0x00)), MORD)
313 // Triggle the SMI through ACPI _DSM method.
318 // Triggle the SMI interrupt
328 Method (_DSM, 4, Serialized, 0, UnknownObj, {BuffObj, IntObj, IntObj, PkgObj})
332 // TCG Hardware Information
334 If(LEqual(Arg0, ToUUID ("cf8e16a5-c1e8-4e25-b712-4f54a96702c8")))
336 Return (HINF (Arg1, Arg2, Arg3))
340 // TCG Physical Presence Interface
342 If(LEqual(Arg0, ToUUID ("3dddfaa6-361b-4eb4-a424-8d10089d1653")))
344 Return (TPPI (Arg1, Arg2, Arg3))
348 // TCG Memory Clear Interface
350 If(LEqual(Arg0, ToUUID ("376054ed-cc13-4675-901c-4756d7f2d45d")))
352 Return (TMCI (Arg1, Arg2, Arg3))
355 Return (Buffer () {0})