1 | //**********************************************************************// |
---|
2 | //* |
---|
3 | //* Copyright (c) 2006, IBM Corporation. |
---|
4 | //* |
---|
5 | //* This program is free software; you can redistribute it and/or modify it |
---|
6 | //* under the terms and conditions of the GNU General Public License, |
---|
7 | //* version 2, as published by the Free Software Foundation. |
---|
8 | //* |
---|
9 | //* This program is distributed in the hope it will be useful, but WITHOUT |
---|
10 | //* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
---|
11 | //* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
---|
12 | //* more details. |
---|
13 | //* |
---|
14 | //* You should have received a copy of the GNU General Public License along with |
---|
15 | //* this program; if not, write to the Free Software Foundation, Inc., 59 Temple |
---|
16 | //* Place - Suite 330, Boston, MA 02111-1307 USA. |
---|
17 | |
---|
18 | //* SSDT for TPM TIS Interface for Xen with Qemu device model |
---|
19 | |
---|
20 | DefinitionBlock ("SSDT_TPM.aml", "SSDT", 2, "Xen", "HVM", 0) |
---|
21 | { |
---|
22 | Device (TPM) { |
---|
23 | Name (_HID, EisaId ("PNP0C31")) |
---|
24 | Name (_CRS, ResourceTemplate () |
---|
25 | { |
---|
26 | Memory32Fixed (ReadWrite, 0xFED40000, 0x5000,) |
---|
27 | }) |
---|
28 | } |
---|
29 | } |
---|