2012-08-15 01:35:32 +02:00
|
|
|
/*
|
|
|
|
* Copyright 2012 IBM Corporation
|
|
|
|
*
|
2014-12-05 04:01:51 +01:00
|
|
|
* Author: Ashley Lai <ashleydlai@gmail.com>
|
2016-11-14 11:00:54 +01:00
|
|
|
* Nayna Jain <nayna@linux.vnet.ibm.com>
|
2012-08-15 01:35:32 +02:00
|
|
|
*
|
|
|
|
* Maintained by: <tpmdd-devel@lists.sourceforge.net>
|
|
|
|
*
|
|
|
|
* Read the event log created by the firmware on PPC64
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version
|
|
|
|
* 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/slab.h>
|
|
|
|
#include <linux/of.h>
|
|
|
|
|
|
|
|
#include "tpm.h"
|
|
|
|
#include "tpm_eventlog.h"
|
|
|
|
|
2016-11-14 11:00:54 +01:00
|
|
|
int tpm_read_log_of(struct tpm_chip *chip)
|
2012-08-15 01:35:32 +02:00
|
|
|
{
|
|
|
|
struct device_node *np;
|
|
|
|
const u32 *sizep;
|
2015-06-18 00:17:09 +02:00
|
|
|
const u64 *basep;
|
2016-11-14 11:00:52 +01:00
|
|
|
struct tpm_bios_log *log;
|
2017-01-23 08:26:26 +01:00
|
|
|
u32 size;
|
|
|
|
u64 base;
|
2012-08-15 01:35:32 +02:00
|
|
|
|
2016-11-14 11:00:52 +01:00
|
|
|
log = &chip->log;
|
2016-11-19 19:18:28 +01:00
|
|
|
if (chip->dev.parent && chip->dev.parent->of_node)
|
2016-11-14 11:00:55 +01:00
|
|
|
np = chip->dev.parent->of_node;
|
2016-11-15 14:27:22 +01:00
|
|
|
else
|
2012-08-15 01:35:32 +02:00
|
|
|
return -ENODEV;
|
|
|
|
|
2017-06-27 12:27:24 +02:00
|
|
|
if (of_property_read_bool(np, "powered-while-suspended"))
|
|
|
|
chip->flags |= TPM_CHIP_FLAG_ALWAYS_POWERED;
|
|
|
|
|
2012-08-15 01:35:32 +02:00
|
|
|
sizep = of_get_property(np, "linux,sml-size", NULL);
|
2016-11-19 19:18:28 +01:00
|
|
|
basep = of_get_property(np, "linux,sml-base", NULL);
|
|
|
|
if (sizep == NULL && basep == NULL)
|
|
|
|
return -ENODEV;
|
|
|
|
if (sizep == NULL || basep == NULL)
|
2016-11-14 11:00:56 +01:00
|
|
|
return -EIO;
|
|
|
|
|
2017-01-23 08:26:26 +01:00
|
|
|
/*
|
|
|
|
* For both vtpm/tpm, firmware has log addr and log size in big
|
|
|
|
* endian format. But in case of vtpm, there is a method called
|
|
|
|
* sml-handover which is run during kernel init even before
|
|
|
|
* device tree is setup. This sml-handover function takes care
|
|
|
|
* of endianness and writes to sml-base and sml-size in little
|
|
|
|
* endian format. For this reason, vtpm doesn't need conversion
|
|
|
|
* but physical tpm needs the conversion.
|
|
|
|
*/
|
|
|
|
if (of_property_match_string(np, "compatible", "IBM,vtpm") < 0) {
|
|
|
|
size = be32_to_cpup(sizep);
|
|
|
|
base = be64_to_cpup(basep);
|
|
|
|
} else {
|
|
|
|
size = *sizep;
|
|
|
|
base = *basep;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (size == 0) {
|
2016-11-14 11:00:56 +01:00
|
|
|
dev_warn(&chip->dev, "%s: Event log area empty\n", __func__);
|
|
|
|
return -EIO;
|
2012-08-15 01:35:32 +02:00
|
|
|
}
|
|
|
|
|
2017-01-23 08:26:26 +01:00
|
|
|
log->bios_event_log = kmalloc(size, GFP_KERNEL);
|
2016-11-14 11:00:56 +01:00
|
|
|
if (!log->bios_event_log)
|
2012-08-15 01:35:32 +02:00
|
|
|
return -ENOMEM;
|
|
|
|
|
2017-01-23 08:26:26 +01:00
|
|
|
log->bios_event_log_end = log->bios_event_log + size;
|
2012-08-15 01:35:32 +02:00
|
|
|
|
2017-01-23 08:26:26 +01:00
|
|
|
memcpy(log->bios_event_log, __va(base), size);
|
2012-08-15 01:35:32 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|