2 * Copyright (C) 2005 IBM Corporation
5 * Seiji Munetoh <munetoh@jp.ibm.com>
6 * Stefan Berger <stefanb@us.ibm.com>
7 * Reiner Sailer <sailer@watson.ibm.com>
8 * Kylene Hall <kjhall@us.ibm.com>
10 * Maintained by: <tpmdd-devel@lists.sourceforge.net>
12 * Access to the eventlog extended by the TCG BIOS of PC platform
14 * This program is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU General Public License
16 * as published by the Free Software Foundation; either version
17 * 2 of the License, or (at your option) any later version.
21 #include <linux/seq_file.h>
23 #include <linux/security.h>
24 #include <linux/module.h>
25 #include <linux/slab.h>
26 #include <linux/acpi.h>
29 #include "tpm_eventlog.h"
32 struct acpi_table_header hdr
;
36 u32 log_max_len __packed
;
37 u64 log_start_addr __packed
;
41 u64 log_max_len __packed
;
42 u64 log_start_addr __packed
;
47 /* read binary bios log */
48 int read_log(struct tpm_bios_log
*log
)
50 struct acpi_tcpa
*buff
;
55 if (log
->bios_event_log
!= NULL
) {
57 "%s: ERROR - Eventlog already initialized\n",
62 /* Find TCPA entry in RSDT (ACPI_LOGICAL_ADDRESSING) */
63 status
= acpi_get_table(ACPI_SIG_TCPA
, 1,
64 (struct acpi_table_header
**)&buff
);
66 if (ACPI_FAILURE(status
)) {
67 printk(KERN_ERR
"%s: ERROR - Could not get TCPA table\n",
72 switch(buff
->platform_class
) {
74 len
= buff
->server
.log_max_len
;
75 start
= buff
->server
.log_start_addr
;
79 len
= buff
->client
.log_max_len
;
80 start
= buff
->client
.log_start_addr
;
84 printk(KERN_ERR
"%s: ERROR - TCPA log area empty\n", __func__
);
88 /* malloc EventLog space */
89 log
->bios_event_log
= kmalloc(len
, GFP_KERNEL
);
90 if (!log
->bios_event_log
) {
91 printk("%s: ERROR - Not enough Memory for BIOS measurements\n",
96 log
->bios_event_log_end
= log
->bios_event_log
+ len
;
98 virt
= acpi_os_map_iomem(start
, len
);
100 kfree(log
->bios_event_log
);
101 printk("%s: ERROR - Unable to map memory\n", __func__
);
105 memcpy_fromio(log
->bios_event_log
, virt
, len
);
107 acpi_os_unmap_iomem(virt
, len
);