summaryrefslogtreecommitdiff
path: root/ReferenceCode/AcpiTables/Dptf/AcpiTables/Ertm.asl
blob: a2f0a504b3440712f91fe024bc0cbb6da1fdafdc (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
/*++
  This file contains an 'Intel Peripheral Driver' and uniquely  
  identified as "Intel Reference Module" and is                 
  licensed for Intel CPUs and chipsets under the terms of your  
  license agreement with Intel or your vendor.  This file may   
  be modified by the user, subject to additional terms of the   
  license agreement                                             
--*/

/*++

Copyright (c) 1999 - 2013 Intel Corporation. All rights reserved
This software and associated documentation (if any) is furnished
under a license and may only be used or copied in accordance
with the terms of the license. Except as permitted by such
license, no part of this software or documentation may be
reproduced, stored in a retrieval system, or transmitted in any
form or by any means without the express written consent of
Intel Corporation.

Module Name:

  Ertm.asl

Abstract:

  Intel ACPI Reference Code for Dynamic Platform & Thermal Framework 

--*/

Scope(\_SB.IETM)
{
    // ETRM (Intel DPTF Participant List)
    //
    // The ETRM object evaluates to a package of packages each of which describes one participant device.
    //
    Name(ETRM, Package() 
    { // TODO: Replace with system-specific ETRM data here
      Package() {\_SB.TCPU,                 "INT3401",    0x06, "0"}, // Processor Device
      Package() {\_SB.PCI0.TMEM,            "INT3402",    0x06, "0"}, // Memory Device
      Package() {\_SB.PCI0.LPCB.H_EC.TSKN,  "INT3403",    0x06, "0"}, // Skin Temperature Sensor
      Package() {\_SB.PCI0.LPCB.H_EC.TAMB,  "INT3403",    0x06, "1"}, // Ambient Temperature Sensor
      Package() {\_SB.PCI0.LPCB.H_EC.T_VR,  "INT3403",    0x06, "2"}, // VR Temperature Sensor
      Package() {\_SB.PCI0.LPCB.H_EC.TEFN,  "INT3403",    0x06, "3"}, // Exhaust Fan Temperature Sensor
      Package() {\_SB.PCI0.WWAN,            "INT3408",    0x06, "1"}, // Wireless WWAN temperature sensor Device
      Package() {\_SB.PCI0.LPCB.H_EC.TFN1,  "INT3404",    0x06, "0"}, // Fan Control Device
      Package() {\_SB.PCI0.LPCB.H_EC.TFN2,  "INT3404",    0x06, "1"}, // Fan Control Device
      Package() {\_SB.PCI0.DPLY,            "INT3406",    0x06, "0"}, // Display Participant Device
      Package() {\_SB.PCI0.B0D4,            "8086_0C03",  0x00, "0x00040000"}, // HSW SA Thermal Device
      Package() {\_SB.PCI0.TPCH,            "8086_8C24",  0x00, "0x001F0006"}, // LPT PCH Thermal Device
      Package() {\_SB.PCI0.B0D4,            "8086_0A03",  0x00, "0x00040000"}, // HSW ULT SA Thermal Device
      Package() {\_SB.PCI0.TPCH,            "8086_9C24",  0x00, "0x001F0006"}, // LPT ULT PCH Thermal Device
      Package() {\_SB.PCI0.B0D4,            "8086_0D03",  0x00, "0x00040000"}  // CRW SA Thermal Device
    })     
}