1/*
2 * ssdt_tpm.asl
3 *
4 * Copyright (c) 2006, IBM Corporation.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU Lesser General Public License as published
8 * by the Free Software Foundation; version 2.1 only. with the special
9 * exception on linking described in file LICENSE.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 * GNU Lesser General Public License for more details.
15 */
16
17/* SSDT for TPM TIS Interface for Xen with Qemu device model. */
18
19DefinitionBlock ("SSDT_TPM.aml", "SSDT", 2, "Xen", "HVM", 0)
20{
21    Device (TPM) {
22        Name (_HID, EisaId ("PNP0C31"))
23        Name (_CRS, ResourceTemplate ()
24        {
25            Memory32Fixed (ReadWrite, 0xFED40000, 0x5000,)
26        })
27    }
28}
29