2012-08-15 07:35:32 +08:00
|
|
|
/*
|
|
|
|
* Copyright 2012 IBM Corporation
|
|
|
|
*
|
2014-12-05 11:01:51 +08:00
|
|
|
* Author: Ashley Lai <ashleydlai@gmail.com>
|
2016-11-14 18:00:54 +08:00
|
|
|
* Nayna Jain <nayna@linux.vnet.ibm.com>
|
2012-08-15 07:35:32 +08: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 18:00:54 +08:00
|
|
|
int tpm_read_log_of(struct tpm_chip *chip)
|
2012-08-15 07:35:32 +08:00
|
|
|
{
|
|
|
|
struct device_node *np;
|
|
|
|
const u32 *sizep;
|
2015-06-18 06:17:09 +08:00
|
|
|
const u64 *basep;
|
2016-11-14 18:00:52 +08:00
|
|
|
struct tpm_bios_log *log;
|
2012-08-15 07:35:32 +08:00
|
|
|
|
2016-11-14 18:00:52 +08:00
|
|
|
log = &chip->log;
|
2016-11-20 02:18:28 +08:00
|
|
|
if (chip->dev.parent && chip->dev.parent->of_node)
|
2016-11-14 18:00:55 +08:00
|
|
|
np = chip->dev.parent->of_node;
|
2016-11-15 21:27:22 +08:00
|
|
|
else
|
2012-08-15 07:35:32 +08:00
|
|
|
return -ENODEV;
|
|
|
|
|
|
|
|
sizep = of_get_property(np, "linux,sml-size", NULL);
|
2016-11-20 02:18:28 +08: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 18:00:56 +08:00
|
|
|
return -EIO;
|
|
|
|
|
2012-08-15 07:35:32 +08:00
|
|
|
if (*sizep == 0) {
|
2016-11-14 18:00:56 +08:00
|
|
|
dev_warn(&chip->dev, "%s: Event log area empty\n", __func__);
|
|
|
|
return -EIO;
|
2012-08-15 07:35:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
log->bios_event_log = kmalloc(*sizep, GFP_KERNEL);
|
2016-11-14 18:00:56 +08:00
|
|
|
if (!log->bios_event_log)
|
2012-08-15 07:35:32 +08:00
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
log->bios_event_log_end = log->bios_event_log + *sizep;
|
|
|
|
|
2015-06-18 06:17:09 +08:00
|
|
|
memcpy(log->bios_event_log, __va(*basep), *sizep);
|
2012-08-15 07:35:32 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|