mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-21 10:05:00 +08:00
0dc5536521
Traversal of the ACPI device tree was not done right. PPI interface should be looked up only from the ACPI device that is the platform device for the TPM. This could cause problems with systems with two TPM chips such as 4th gen Intel systems. In addition, added the missing license and copyright platter to the tpm_ppi.c. Signed-off-by: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com> Reviewed-by: Jasob Gunthorpe <jason.gunthorpe@obsidianresearch.com> Reviewed-by: Stefan Berger <stefanb@linux.vnet.ibm.com> Tested-by: Scot Doyle <lkml14@scotdoyle.com> Signed-off-by: Peter Huewe <peterhuewe@gmx.de>
369 lines
8.2 KiB
C
369 lines
8.2 KiB
C
/*
|
|
* Copyright (C) 2004 IBM Corporation
|
|
*
|
|
* Authors:
|
|
* Leendert van Doorn <leendert@watson.ibm.com>
|
|
* Dave Safford <safford@watson.ibm.com>
|
|
* Reiner Sailer <sailer@watson.ibm.com>
|
|
* Kylene Hall <kjhall@us.ibm.com>
|
|
*
|
|
* Maintained by: <tpmdd-devel@lists.sourceforge.net>
|
|
*
|
|
* Device driver for TCG/TCPA TPM (trusted platform module).
|
|
* Specifications at www.trustedcomputinggroup.org
|
|
*
|
|
* 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, version 2 of the
|
|
* License.
|
|
*
|
|
*/
|
|
#include <linux/module.h>
|
|
#include <linux/delay.h>
|
|
#include <linux/fs.h>
|
|
#include <linux/mutex.h>
|
|
#include <linux/sched.h>
|
|
#include <linux/miscdevice.h>
|
|
#include <linux/platform_device.h>
|
|
#include <linux/io.h>
|
|
#include <linux/tpm.h>
|
|
#include <linux/acpi.h>
|
|
|
|
enum tpm_const {
|
|
TPM_MINOR = 224, /* officially assigned */
|
|
TPM_BUFSIZE = 4096,
|
|
TPM_NUM_DEVICES = 256,
|
|
TPM_RETRY = 50, /* 5 seconds */
|
|
};
|
|
|
|
enum tpm_timeout {
|
|
TPM_TIMEOUT = 5, /* msecs */
|
|
TPM_TIMEOUT_RETRY = 100 /* msecs */
|
|
};
|
|
|
|
/* TPM addresses */
|
|
enum tpm_addr {
|
|
TPM_SUPERIO_ADDR = 0x2E,
|
|
TPM_ADDR = 0x4E,
|
|
};
|
|
|
|
/* Indexes the duration array */
|
|
enum tpm_duration {
|
|
TPM_SHORT = 0,
|
|
TPM_MEDIUM = 1,
|
|
TPM_LONG = 2,
|
|
TPM_UNDEFINED,
|
|
};
|
|
|
|
#define TPM_WARN_RETRY 0x800
|
|
#define TPM_WARN_DOING_SELFTEST 0x802
|
|
#define TPM_ERR_DEACTIVATED 0x6
|
|
#define TPM_ERR_DISABLED 0x7
|
|
#define TPM_ERR_INVALID_POSTINIT 38
|
|
|
|
#define TPM_HEADER_SIZE 10
|
|
struct tpm_chip;
|
|
|
|
struct tpm_vendor_specific {
|
|
void __iomem *iobase; /* ioremapped address */
|
|
unsigned long base; /* TPM base address */
|
|
|
|
int irq;
|
|
int probed_irq;
|
|
|
|
int region_size;
|
|
int have_region;
|
|
|
|
struct miscdevice miscdev;
|
|
struct list_head list;
|
|
int locality;
|
|
unsigned long timeout_a, timeout_b, timeout_c, timeout_d; /* jiffies */
|
|
bool timeout_adjusted;
|
|
unsigned long duration[3]; /* jiffies */
|
|
bool duration_adjusted;
|
|
void *priv;
|
|
|
|
wait_queue_head_t read_queue;
|
|
wait_queue_head_t int_queue;
|
|
|
|
u16 manufacturer_id;
|
|
};
|
|
|
|
#define TPM_VPRIV(c) (c)->vendor.priv
|
|
|
|
#define TPM_VID_INTEL 0x8086
|
|
#define TPM_VID_WINBOND 0x1050
|
|
#define TPM_VID_STM 0x104A
|
|
|
|
#define TPM_PPI_VERSION_LEN 3
|
|
|
|
enum tpm_chip_flags {
|
|
TPM_CHIP_FLAG_REGISTERED = BIT(0),
|
|
TPM_CHIP_FLAG_PPI = BIT(1),
|
|
};
|
|
|
|
struct tpm_chip {
|
|
struct device *dev; /* Device stuff */
|
|
const struct tpm_class_ops *ops;
|
|
unsigned int flags;
|
|
|
|
int dev_num; /* /dev/tpm# */
|
|
char devname[7];
|
|
unsigned long is_open; /* only one allowed */
|
|
int time_expired;
|
|
|
|
struct mutex tpm_mutex; /* tpm is processing */
|
|
|
|
struct tpm_vendor_specific vendor;
|
|
|
|
struct dentry **bios_dir;
|
|
|
|
#ifdef CONFIG_ACPI
|
|
acpi_handle acpi_dev_handle;
|
|
char ppi_version[TPM_PPI_VERSION_LEN + 1];
|
|
#endif /* CONFIG_ACPI */
|
|
|
|
struct list_head list;
|
|
};
|
|
|
|
#define to_tpm_chip(n) container_of(n, struct tpm_chip, vendor)
|
|
|
|
static inline void tpm_chip_put(struct tpm_chip *chip)
|
|
{
|
|
module_put(chip->dev->driver->owner);
|
|
}
|
|
|
|
static inline int tpm_read_index(int base, int index)
|
|
{
|
|
outb(index, base);
|
|
return inb(base+1) & 0xFF;
|
|
}
|
|
|
|
static inline void tpm_write_index(int base, int index, int value)
|
|
{
|
|
outb(index, base);
|
|
outb(value & 0xFF, base+1);
|
|
}
|
|
struct tpm_input_header {
|
|
__be16 tag;
|
|
__be32 length;
|
|
__be32 ordinal;
|
|
} __packed;
|
|
|
|
struct tpm_output_header {
|
|
__be16 tag;
|
|
__be32 length;
|
|
__be32 return_code;
|
|
} __packed;
|
|
|
|
#define TPM_TAG_RQU_COMMAND cpu_to_be16(193)
|
|
|
|
struct stclear_flags_t {
|
|
__be16 tag;
|
|
u8 deactivated;
|
|
u8 disableForceClear;
|
|
u8 physicalPresence;
|
|
u8 physicalPresenceLock;
|
|
u8 bGlobalLock;
|
|
} __packed;
|
|
|
|
struct tpm_version_t {
|
|
u8 Major;
|
|
u8 Minor;
|
|
u8 revMajor;
|
|
u8 revMinor;
|
|
} __packed;
|
|
|
|
struct tpm_version_1_2_t {
|
|
__be16 tag;
|
|
u8 Major;
|
|
u8 Minor;
|
|
u8 revMajor;
|
|
u8 revMinor;
|
|
} __packed;
|
|
|
|
struct timeout_t {
|
|
__be32 a;
|
|
__be32 b;
|
|
__be32 c;
|
|
__be32 d;
|
|
} __packed;
|
|
|
|
struct duration_t {
|
|
__be32 tpm_short;
|
|
__be32 tpm_medium;
|
|
__be32 tpm_long;
|
|
} __packed;
|
|
|
|
struct permanent_flags_t {
|
|
__be16 tag;
|
|
u8 disable;
|
|
u8 ownership;
|
|
u8 deactivated;
|
|
u8 readPubek;
|
|
u8 disableOwnerClear;
|
|
u8 allowMaintenance;
|
|
u8 physicalPresenceLifetimeLock;
|
|
u8 physicalPresenceHWEnable;
|
|
u8 physicalPresenceCMDEnable;
|
|
u8 CEKPUsed;
|
|
u8 TPMpost;
|
|
u8 TPMpostLock;
|
|
u8 FIPS;
|
|
u8 operator;
|
|
u8 enableRevokeEK;
|
|
u8 nvLocked;
|
|
u8 readSRKPub;
|
|
u8 tpmEstablished;
|
|
u8 maintenanceDone;
|
|
u8 disableFullDALogicInfo;
|
|
} __packed;
|
|
|
|
typedef union {
|
|
struct permanent_flags_t perm_flags;
|
|
struct stclear_flags_t stclear_flags;
|
|
bool owned;
|
|
__be32 num_pcrs;
|
|
struct tpm_version_t tpm_version;
|
|
struct tpm_version_1_2_t tpm_version_1_2;
|
|
__be32 manufacturer_id;
|
|
struct timeout_t timeout;
|
|
struct duration_t duration;
|
|
} cap_t;
|
|
|
|
enum tpm_capabilities {
|
|
TPM_CAP_FLAG = cpu_to_be32(4),
|
|
TPM_CAP_PROP = cpu_to_be32(5),
|
|
CAP_VERSION_1_1 = cpu_to_be32(0x06),
|
|
CAP_VERSION_1_2 = cpu_to_be32(0x1A)
|
|
};
|
|
|
|
enum tpm_sub_capabilities {
|
|
TPM_CAP_PROP_PCR = cpu_to_be32(0x101),
|
|
TPM_CAP_PROP_MANUFACTURER = cpu_to_be32(0x103),
|
|
TPM_CAP_FLAG_PERM = cpu_to_be32(0x108),
|
|
TPM_CAP_FLAG_VOL = cpu_to_be32(0x109),
|
|
TPM_CAP_PROP_OWNER = cpu_to_be32(0x111),
|
|
TPM_CAP_PROP_TIS_TIMEOUT = cpu_to_be32(0x115),
|
|
TPM_CAP_PROP_TIS_DURATION = cpu_to_be32(0x120),
|
|
|
|
};
|
|
|
|
struct tpm_getcap_params_in {
|
|
__be32 cap;
|
|
__be32 subcap_size;
|
|
__be32 subcap;
|
|
} __packed;
|
|
|
|
struct tpm_getcap_params_out {
|
|
__be32 cap_size;
|
|
cap_t cap;
|
|
} __packed;
|
|
|
|
struct tpm_readpubek_params_out {
|
|
u8 algorithm[4];
|
|
u8 encscheme[2];
|
|
u8 sigscheme[2];
|
|
__be32 paramsize;
|
|
u8 parameters[12]; /*assuming RSA*/
|
|
__be32 keysize;
|
|
u8 modulus[256];
|
|
u8 checksum[20];
|
|
} __packed;
|
|
|
|
typedef union {
|
|
struct tpm_input_header in;
|
|
struct tpm_output_header out;
|
|
} tpm_cmd_header;
|
|
|
|
struct tpm_pcrread_out {
|
|
u8 pcr_result[TPM_DIGEST_SIZE];
|
|
} __packed;
|
|
|
|
struct tpm_pcrread_in {
|
|
__be32 pcr_idx;
|
|
} __packed;
|
|
|
|
struct tpm_pcrextend_in {
|
|
__be32 pcr_idx;
|
|
u8 hash[TPM_DIGEST_SIZE];
|
|
} __packed;
|
|
|
|
/* 128 bytes is an arbitrary cap. This could be as large as TPM_BUFSIZE - 18
|
|
* bytes, but 128 is still a relatively large number of random bytes and
|
|
* anything much bigger causes users of struct tpm_cmd_t to start getting
|
|
* compiler warnings about stack frame size. */
|
|
#define TPM_MAX_RNG_DATA 128
|
|
|
|
struct tpm_getrandom_out {
|
|
__be32 rng_data_len;
|
|
u8 rng_data[TPM_MAX_RNG_DATA];
|
|
} __packed;
|
|
|
|
struct tpm_getrandom_in {
|
|
__be32 num_bytes;
|
|
} __packed;
|
|
|
|
struct tpm_startup_in {
|
|
__be16 startup_type;
|
|
} __packed;
|
|
|
|
typedef union {
|
|
struct tpm_getcap_params_out getcap_out;
|
|
struct tpm_readpubek_params_out readpubek_out;
|
|
u8 readpubek_out_buffer[sizeof(struct tpm_readpubek_params_out)];
|
|
struct tpm_getcap_params_in getcap_in;
|
|
struct tpm_pcrread_in pcrread_in;
|
|
struct tpm_pcrread_out pcrread_out;
|
|
struct tpm_pcrextend_in pcrextend_in;
|
|
struct tpm_getrandom_in getrandom_in;
|
|
struct tpm_getrandom_out getrandom_out;
|
|
struct tpm_startup_in startup_in;
|
|
} tpm_cmd_params;
|
|
|
|
struct tpm_cmd_t {
|
|
tpm_cmd_header header;
|
|
tpm_cmd_params params;
|
|
} __packed;
|
|
|
|
ssize_t tpm_getcap(struct device *, __be32, cap_t *, const char *);
|
|
ssize_t tpm_transmit(struct tpm_chip *chip, const char *buf,
|
|
size_t bufsiz);
|
|
ssize_t tpm_transmit_cmd(struct tpm_chip *chip, void *cmd, int len,
|
|
const char *desc);
|
|
extern int tpm_get_timeouts(struct tpm_chip *);
|
|
extern void tpm_gen_interrupt(struct tpm_chip *);
|
|
extern int tpm_do_selftest(struct tpm_chip *);
|
|
extern unsigned long tpm_calc_ordinal_duration(struct tpm_chip *, u32);
|
|
extern int tpm_pm_suspend(struct device *);
|
|
extern int tpm_pm_resume(struct device *);
|
|
extern int wait_for_tpm_stat(struct tpm_chip *, u8, unsigned long,
|
|
wait_queue_head_t *, bool);
|
|
|
|
struct tpm_chip *tpm_chip_find_get(int chip_num);
|
|
extern struct tpm_chip *tpmm_chip_alloc(struct device *dev,
|
|
const struct tpm_class_ops *ops);
|
|
extern int tpm_chip_register(struct tpm_chip *chip);
|
|
extern void tpm_chip_unregister(struct tpm_chip *chip);
|
|
|
|
int tpm_dev_add_device(struct tpm_chip *chip);
|
|
void tpm_dev_del_device(struct tpm_chip *chip);
|
|
int tpm_sysfs_add_device(struct tpm_chip *chip);
|
|
void tpm_sysfs_del_device(struct tpm_chip *chip);
|
|
|
|
int tpm_pcr_read_dev(struct tpm_chip *chip, int pcr_idx, u8 *res_buf);
|
|
|
|
#ifdef CONFIG_ACPI
|
|
extern int tpm_add_ppi(struct tpm_chip *chip);
|
|
extern void tpm_remove_ppi(struct tpm_chip *chip);
|
|
#else
|
|
static inline int tpm_add_ppi(struct tpm_chip *chip)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
static inline void tpm_remove_ppi(struct tpm_chip *chip)
|
|
{
|
|
}
|
|
#endif
|