source: trunk/packages/xen-3.1/xen-3.1/tools/firmware/hvmloader/acpi/ssdt_tpm.asl @ 34

Last change on this file since 34 was 34, checked in by hartmans, 17 years ago

Add xen and xen-common

  • Property svn:mime-type set to text/cpp
File size: 1.1 KB
Line 
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
20DefinitionBlock ("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}
Note: See TracBrowser for help on using the repository browser.