blob: e264de16285f8c7d38077320bc11c79edbebf6f4 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (C) 2004 IBM Corporation
3 *
4 * Authors:
5 * Leendert van Doorn <leendert@watson.ibm.com>
6 * Dave Safford <safford@watson.ibm.com>
7 * Reiner Sailer <sailer@watson.ibm.com>
8 * Kylene Hall <kjhall@us.ibm.com>
9 *
Kent Yoder8e81cc12007-08-22 14:01:04 -070010 * Maintained by: <tpmdd-devel@lists.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 *
12 * Device driver for TCG/TCPA TPM (trusted platform module).
13 * Specifications at www.trustedcomputinggroup.org
14 *
15 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License as
17 * published by the Free Software Foundation, version 2 of the
18 * License.
19 *
20 */
21#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/delay.h>
23#include <linux/fs.h>
Matthias Kaehlcked081d472007-05-08 00:32:02 -070024#include <linux/mutex.h>
Al Viro914e2632006-10-18 13:55:46 -040025#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/miscdevice.h>
Al Virobbc5b212005-11-01 15:14:05 +000027#include <linux/platform_device.h>
Andrew Morton276ad0c2006-03-25 03:07:35 -080028#include <linux/io.h>
Rajiv Andrade659aaf22009-02-02 15:23:44 -020029#include <linux/tpm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Kylene Hall3122a882005-06-23 22:01:48 -070031enum tpm_timeout {
32 TPM_TIMEOUT = 5, /* msecs */
33};
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35/* TPM addresses */
Kylene Hall3122a882005-06-23 22:01:48 -070036enum tpm_addr {
Kylene Jo Halldaacdfa2005-06-25 14:55:39 -070037 TPM_SUPERIO_ADDR = 0x2E,
Kylene Hall3122a882005-06-23 22:01:48 -070038 TPM_ADDR = 0x4E,
Kylene Hall3122a882005-06-23 22:01:48 -070039};
40
Stefan Berger68d6e672011-11-11 12:57:04 -050041#define TPM_WARN_DOING_SELFTEST 0x802
42
Kylene Hall6659ca22005-06-23 22:02:00 -070043extern ssize_t tpm_show_pubek(struct device *, struct device_attribute *attr,
44 char *);
45extern ssize_t tpm_show_pcrs(struct device *, struct device_attribute *attr,
46 char *);
47extern ssize_t tpm_show_caps(struct device *, struct device_attribute *attr,
48 char *);
Kylene Jo Hall08e96e42006-04-22 02:37:50 -070049extern ssize_t tpm_show_caps_1_2(struct device *, struct device_attribute *attr,
50 char *);
Kylene Hall6659ca22005-06-23 22:02:00 -070051extern ssize_t tpm_store_cancel(struct device *, struct device_attribute *attr,
52 const char *, size_t);
Kylene Jo Hall08e96e42006-04-22 02:37:50 -070053extern ssize_t tpm_show_enabled(struct device *, struct device_attribute *attr,
54 char *);
55extern ssize_t tpm_show_active(struct device *, struct device_attribute *attr,
56 char *);
57extern ssize_t tpm_show_owned(struct device *, struct device_attribute *attr,
58 char *);
59extern ssize_t tpm_show_temp_deactivated(struct device *,
60 struct device_attribute *attr, char *);
Stefan Berger04ab2292011-03-30 12:13:25 -040061extern ssize_t tpm_show_durations(struct device *,
62 struct device_attribute *attr, char *);
Stefan Berger62592102011-03-30 12:13:28 -040063extern ssize_t tpm_show_timeouts(struct device *,
64 struct device_attribute *attr, char *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
66struct tpm_chip;
67
68struct tpm_vendor_specific {
Kylene Jo Halle0dd03c2006-04-22 02:37:26 -070069 const u8 req_complete_mask;
70 const u8 req_complete_val;
71 const u8 req_canceled;
Kylene Jo Hallad5ea3c2005-11-13 16:07:41 -080072 void __iomem *iobase; /* ioremapped address */
73 unsigned long base; /* TPM base address */
74
Leendert van Doorn27084ef2006-04-22 02:38:03 -070075 int irq;
Stefan Bergera7b66822011-03-30 12:13:32 -040076 int probed_irq;
Leendert van Doorn27084ef2006-04-22 02:38:03 -070077
Kylene Jo Hallad5ea3c2005-11-13 16:07:41 -080078 int region_size;
79 int have_region;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
81 int (*recv) (struct tpm_chip *, u8 *, size_t);
82 int (*send) (struct tpm_chip *, u8 *, size_t);
83 void (*cancel) (struct tpm_chip *);
Kylene Jo Hallb4ed3e32005-10-30 15:03:23 -080084 u8 (*status) (struct tpm_chip *);
Richard MUSIL5bd91f12008-02-06 01:37:02 -080085 void (*release) (struct device *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 struct miscdevice miscdev;
Kylene Hall6659ca22005-06-23 22:02:00 -070087 struct attribute_group *attr_group;
Leendert van Doorn27084ef2006-04-22 02:38:03 -070088 struct list_head list;
89 int locality;
Kylene Jo Hall36b20022006-04-22 02:38:19 -070090 unsigned long timeout_a, timeout_b, timeout_c, timeout_d; /* jiffies */
Stefan Berger62592102011-03-30 12:13:28 -040091 bool timeout_adjusted;
Kylene Jo Hall36b20022006-04-22 02:38:19 -070092 unsigned long duration[3]; /* jiffies */
Stefan Berger04ab2292011-03-30 12:13:25 -040093 bool duration_adjusted;
Leendert van Doorn27084ef2006-04-22 02:38:03 -070094
95 wait_queue_head_t read_queue;
96 wait_queue_head_t int_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097};
98
99struct tpm_chip {
Kylene Jo Halle659a3f2005-10-30 15:03:24 -0800100 struct device *dev; /* Device stuff */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
102 int dev_num; /* /dev/tpm# */
Rajiv Andradedc36d322008-10-11 09:04:02 +1100103 unsigned long is_open; /* only one allowed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 int time_expired;
105
106 /* Data passed to and from the tpm via the read/write calls */
107 u8 *data_buffer;
108 atomic_t data_pending;
Matthias Kaehlcked081d472007-05-08 00:32:02 -0700109 struct mutex buffer_mutex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
111 struct timer_list user_read_timer; /* user needs to claim result */
Kylene Jo Hall09e12f92005-11-13 16:07:43 -0800112 struct work_struct work;
Matthias Kaehlcked081d472007-05-08 00:32:02 -0700113 struct mutex tpm_mutex; /* tpm is processing */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Kylene Jo Hall90dda522006-04-22 02:37:15 -0700115 struct tpm_vendor_specific vendor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Kylene Jo Hall55a82ab2006-01-08 01:03:15 -0800117 struct dentry **bios_dir;
118
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 struct list_head list;
Richard MUSIL5bd91f12008-02-06 01:37:02 -0800120 void (*release) (struct device *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121};
122
Leendert van Doorn27084ef2006-04-22 02:38:03 -0700123#define to_tpm_chip(n) container_of(n, struct tpm_chip, vendor)
124
Mimi Zohara0e39342010-11-23 17:50:32 -0500125static inline void tpm_chip_put(struct tpm_chip *chip)
126{
127 module_put(chip->dev->driver->owner);
128}
129
Kylene Jo Halldaacdfa2005-06-25 14:55:39 -0700130static inline int tpm_read_index(int base, int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131{
Kylene Jo Halldaacdfa2005-06-25 14:55:39 -0700132 outb(index, base);
133 return inb(base+1) & 0xFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134}
135
Kylene Jo Halldaacdfa2005-06-25 14:55:39 -0700136static inline void tpm_write_index(int base, int index, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137{
Kylene Jo Halldaacdfa2005-06-25 14:55:39 -0700138 outb(index, base);
139 outb(value & 0xFF, base+1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140}
Rajiv Andrade08837432009-02-02 15:23:43 -0200141struct tpm_input_header {
142 __be16 tag;
143 __be32 length;
144 __be32 ordinal;
145}__attribute__((packed));
146
147struct tpm_output_header {
148 __be16 tag;
149 __be32 length;
150 __be32 return_code;
151}__attribute__((packed));
152
153struct stclear_flags_t {
154 __be16 tag;
155 u8 deactivated;
156 u8 disableForceClear;
157 u8 physicalPresence;
158 u8 physicalPresenceLock;
159 u8 bGlobalLock;
160}__attribute__((packed));
161
162struct tpm_version_t {
163 u8 Major;
164 u8 Minor;
165 u8 revMajor;
166 u8 revMinor;
167}__attribute__((packed));
168
169struct tpm_version_1_2_t {
170 __be16 tag;
171 u8 Major;
172 u8 Minor;
173 u8 revMajor;
174 u8 revMinor;
175}__attribute__((packed));
176
177struct timeout_t {
178 __be32 a;
179 __be32 b;
180 __be32 c;
181 __be32 d;
182}__attribute__((packed));
183
184struct duration_t {
185 __be32 tpm_short;
186 __be32 tpm_medium;
187 __be32 tpm_long;
188}__attribute__((packed));
189
190struct permanent_flags_t {
191 __be16 tag;
192 u8 disable;
193 u8 ownership;
194 u8 deactivated;
195 u8 readPubek;
196 u8 disableOwnerClear;
197 u8 allowMaintenance;
198 u8 physicalPresenceLifetimeLock;
199 u8 physicalPresenceHWEnable;
200 u8 physicalPresenceCMDEnable;
201 u8 CEKPUsed;
202 u8 TPMpost;
203 u8 TPMpostLock;
204 u8 FIPS;
205 u8 operator;
206 u8 enableRevokeEK;
207 u8 nvLocked;
208 u8 readSRKPub;
209 u8 tpmEstablished;
210 u8 maintenanceDone;
211 u8 disableFullDALogicInfo;
212}__attribute__((packed));
213
214typedef union {
215 struct permanent_flags_t perm_flags;
216 struct stclear_flags_t stclear_flags;
217 bool owned;
218 __be32 num_pcrs;
219 struct tpm_version_t tpm_version;
220 struct tpm_version_1_2_t tpm_version_1_2;
221 __be32 manufacturer_id;
222 struct timeout_t timeout;
223 struct duration_t duration;
224} cap_t;
225
226struct tpm_getcap_params_in {
227 __be32 cap;
228 __be32 subcap_size;
229 __be32 subcap;
230}__attribute__((packed));
231
232struct tpm_getcap_params_out {
233 __be32 cap_size;
234 cap_t cap;
235}__attribute__((packed));
236
237struct tpm_readpubek_params_out {
238 u8 algorithm[4];
239 u8 encscheme[2];
240 u8 sigscheme[2];
Rajiv Andrade02a077c2010-06-14 13:58:22 -0300241 __be32 paramsize;
Rajiv Andrade08837432009-02-02 15:23:43 -0200242 u8 parameters[12]; /*assuming RSA*/
243 __be32 keysize;
244 u8 modulus[256];
245 u8 checksum[20];
246}__attribute__((packed));
247
248typedef union {
249 struct tpm_input_header in;
250 struct tpm_output_header out;
251} tpm_cmd_header;
252
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200253#define TPM_DIGEST_SIZE 20
254struct tpm_pcrread_out {
255 u8 pcr_result[TPM_DIGEST_SIZE];
256}__attribute__((packed));
257
258struct tpm_pcrread_in {
259 __be32 pcr_idx;
260}__attribute__((packed));
261
262struct tpm_pcrextend_in {
263 __be32 pcr_idx;
264 u8 hash[TPM_DIGEST_SIZE];
265}__attribute__((packed));
266
Rajiv Andrade08837432009-02-02 15:23:43 -0200267typedef union {
268 struct tpm_getcap_params_out getcap_out;
269 struct tpm_readpubek_params_out readpubek_out;
270 u8 readpubek_out_buffer[sizeof(struct tpm_readpubek_params_out)];
271 struct tpm_getcap_params_in getcap_in;
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200272 struct tpm_pcrread_in pcrread_in;
273 struct tpm_pcrread_out pcrread_out;
274 struct tpm_pcrextend_in pcrextend_in;
Rajiv Andrade08837432009-02-02 15:23:43 -0200275} tpm_cmd_params;
276
277struct tpm_cmd_t {
278 tpm_cmd_header header;
279 tpm_cmd_params params;
280}__attribute__((packed));
281
282ssize_t tpm_getcap(struct device *, __be32, cap_t *, const char *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
Stefan Berger2b30a902011-11-11 12:57:02 -0500284extern int tpm_get_timeouts(struct tpm_chip *);
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700285extern void tpm_gen_interrupt(struct tpm_chip *);
Stefan Berger68d6e672011-11-11 12:57:04 -0500286extern int tpm_do_selftest(struct tpm_chip *);
Kylene Jo Hall9e18ee12006-04-22 02:37:38 -0700287extern unsigned long tpm_calc_ordinal_duration(struct tpm_chip *, u32);
Kylene Jo Halle0dd03c2006-04-22 02:37:26 -0700288extern struct tpm_chip* tpm_register_hardware(struct device *,
289 const struct tpm_vendor_specific *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290extern int tpm_open(struct inode *, struct file *);
291extern int tpm_release(struct inode *, struct file *);
Rajiv Andrade253115b2008-10-11 09:04:39 +1100292extern void tpm_dev_vendor_release(struct tpm_chip *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293extern ssize_t tpm_write(struct file *, const char __user *, size_t,
294 loff_t *);
295extern ssize_t tpm_read(struct file *, char __user *, size_t, loff_t *);
Kylene Jo Halle659a3f2005-10-30 15:03:24 -0800296extern void tpm_remove_hardware(struct device *);
Kylene Jo Hallce2c87d2005-10-30 15:03:25 -0800297extern int tpm_pm_suspend(struct device *, pm_message_t);
298extern int tpm_pm_resume(struct device *);
Kylene Jo Hall55a82ab2006-01-08 01:03:15 -0800299
300#ifdef CONFIG_ACPI
301extern struct dentry ** tpm_bios_log_setup(char *);
302extern void tpm_bios_log_teardown(struct dentry **);
303#else
Daniel Walkerbb53a762006-05-15 09:44:27 -0700304static inline struct dentry ** tpm_bios_log_setup(char *name)
Kylene Jo Hall55a82ab2006-01-08 01:03:15 -0800305{
306 return NULL;
307}
308static inline void tpm_bios_log_teardown(struct dentry **dir)
309{
310}
311#endif