Linux-libre 2.6.32.42-gnu1
[librecmc/linux-libre.git] / drivers / char / tpm / tpm.h
1 /*
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  *
10  * Maintained by: <tpmdd-devel@lists.sourceforge.net>
11  *
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>
22 #include <linux/delay.h>
23 #include <linux/fs.h>
24 #include <linux/mutex.h>
25 #include <linux/sched.h>
26 #include <linux/miscdevice.h>
27 #include <linux/platform_device.h>
28 #include <linux/io.h>
29 #include <linux/tpm.h>
30
31 enum tpm_timeout {
32         TPM_TIMEOUT = 5,        /* msecs */
33 };
34
35 /* TPM addresses */
36 enum tpm_addr {
37         TPM_SUPERIO_ADDR = 0x2E,
38         TPM_ADDR = 0x4E,
39 };
40
41 extern ssize_t tpm_show_pubek(struct device *, struct device_attribute *attr,
42                                 char *);
43 extern ssize_t tpm_show_pcrs(struct device *, struct device_attribute *attr,
44                                 char *);
45 extern ssize_t tpm_show_caps(struct device *, struct device_attribute *attr,
46                                 char *);
47 extern ssize_t tpm_show_caps_1_2(struct device *, struct device_attribute *attr,
48                                 char *);
49 extern ssize_t tpm_store_cancel(struct device *, struct device_attribute *attr,
50                                 const char *, size_t);
51 extern ssize_t tpm_show_enabled(struct device *, struct device_attribute *attr,
52                                 char *);
53 extern ssize_t tpm_show_active(struct device *, struct device_attribute *attr,
54                                 char *);
55 extern ssize_t tpm_show_owned(struct device *, struct device_attribute *attr,
56                                 char *);
57 extern ssize_t tpm_show_temp_deactivated(struct device *,
58                                          struct device_attribute *attr, char *);
59 extern ssize_t tpm_show_timeouts(struct device *,
60                                  struct device_attribute *attr, char *);
61
62 struct tpm_chip;
63
64 struct tpm_vendor_specific {
65         const u8 req_complete_mask;
66         const u8 req_complete_val;
67         const u8 req_canceled;
68         void __iomem *iobase;           /* ioremapped address */
69         unsigned long base;             /* TPM base address */
70
71         int irq;
72
73         int region_size;
74         int have_region;
75
76         int (*recv) (struct tpm_chip *, u8 *, size_t);
77         int (*send) (struct tpm_chip *, u8 *, size_t);
78         void (*cancel) (struct tpm_chip *);
79         u8 (*status) (struct tpm_chip *);
80         void (*release) (struct device *);
81         struct miscdevice miscdev;
82         struct attribute_group *attr_group;
83         struct list_head list;
84         int locality;
85         unsigned long timeout_a, timeout_b, timeout_c, timeout_d; /* jiffies */
86         unsigned long duration[3]; /* jiffies */
87
88         wait_queue_head_t read_queue;
89         wait_queue_head_t int_queue;
90 };
91
92 struct tpm_chip {
93         struct device *dev;     /* Device stuff */
94
95         int dev_num;            /* /dev/tpm# */
96         unsigned long is_open;  /* only one allowed */
97         int time_expired;
98
99         /* Data passed to and from the tpm via the read/write calls */
100         u8 *data_buffer;
101         atomic_t data_pending;
102         struct mutex buffer_mutex;
103
104         struct timer_list user_read_timer;      /* user needs to claim result */
105         struct work_struct work;
106         struct mutex tpm_mutex; /* tpm is processing */
107
108         struct tpm_vendor_specific vendor;
109
110         struct dentry **bios_dir;
111
112         struct list_head list;
113         void (*release) (struct device *);
114 };
115
116 #define to_tpm_chip(n) container_of(n, struct tpm_chip, vendor)
117
118 static inline int tpm_read_index(int base, int index)
119 {
120         outb(index, base);
121         return inb(base+1) & 0xFF;
122 }
123
124 static inline void tpm_write_index(int base, int index, int value)
125 {
126         outb(index, base);
127         outb(value & 0xFF, base+1);
128 }
129 struct tpm_input_header {
130         __be16  tag;
131         __be32  length;
132         __be32  ordinal;
133 }__attribute__((packed));
134
135 struct tpm_output_header {
136         __be16  tag;
137         __be32  length;
138         __be32  return_code;
139 }__attribute__((packed));
140
141 struct  stclear_flags_t {
142         __be16  tag;
143         u8      deactivated;
144         u8      disableForceClear;
145         u8      physicalPresence;
146         u8      physicalPresenceLock;
147         u8      bGlobalLock;
148 }__attribute__((packed));
149
150 struct  tpm_version_t {
151         u8      Major;
152         u8      Minor;
153         u8      revMajor;
154         u8      revMinor;
155 }__attribute__((packed));
156
157 struct  tpm_version_1_2_t {
158         __be16  tag;
159         u8      Major;
160         u8      Minor;
161         u8      revMajor;
162         u8      revMinor;
163 }__attribute__((packed));
164
165 struct  timeout_t {
166         __be32  a;
167         __be32  b;
168         __be32  c;
169         __be32  d;
170 }__attribute__((packed));
171
172 struct duration_t {
173         __be32  tpm_short;
174         __be32  tpm_medium;
175         __be32  tpm_long;
176 }__attribute__((packed));
177
178 struct permanent_flags_t {
179         __be16  tag;
180         u8      disable;
181         u8      ownership;
182         u8      deactivated;
183         u8      readPubek;
184         u8      disableOwnerClear;
185         u8      allowMaintenance;
186         u8      physicalPresenceLifetimeLock;
187         u8      physicalPresenceHWEnable;
188         u8      physicalPresenceCMDEnable;
189         u8      CEKPUsed;
190         u8      TPMpost;
191         u8      TPMpostLock;
192         u8      FIPS;
193         u8      operator;
194         u8      enableRevokeEK;
195         u8      nvLocked;
196         u8      readSRKPub;
197         u8      tpmEstablished;
198         u8      maintenanceDone;
199         u8      disableFullDALogicInfo;
200 }__attribute__((packed));
201
202 typedef union {
203         struct  permanent_flags_t perm_flags;
204         struct  stclear_flags_t stclear_flags;
205         bool    owned;
206         __be32  num_pcrs;
207         struct  tpm_version_t   tpm_version;
208         struct  tpm_version_1_2_t tpm_version_1_2;
209         __be32  manufacturer_id;
210         struct timeout_t  timeout;
211         struct duration_t duration;
212 } cap_t;
213
214 struct  tpm_getcap_params_in {
215         __be32  cap;
216         __be32  subcap_size;
217         __be32  subcap;
218 }__attribute__((packed));
219
220 struct  tpm_getcap_params_out {
221         __be32  cap_size;
222         cap_t   cap;
223 }__attribute__((packed));
224
225 struct  tpm_readpubek_params_out {
226         u8      algorithm[4];
227         u8      encscheme[2];
228         u8      sigscheme[2];
229         __be32  paramsize;
230         u8      parameters[12]; /*assuming RSA*/
231         __be32  keysize;
232         u8      modulus[256];
233         u8      checksum[20];
234 }__attribute__((packed));
235
236 typedef union {
237         struct  tpm_input_header in;
238         struct  tpm_output_header out;
239 } tpm_cmd_header;
240
241 #define TPM_DIGEST_SIZE 20
242 struct tpm_pcrread_out {
243         u8      pcr_result[TPM_DIGEST_SIZE];
244 }__attribute__((packed));
245
246 struct tpm_pcrread_in {
247         __be32  pcr_idx;
248 }__attribute__((packed));
249
250 struct tpm_pcrextend_in {
251         __be32  pcr_idx;
252         u8      hash[TPM_DIGEST_SIZE];
253 }__attribute__((packed));
254
255 typedef union {
256         struct  tpm_getcap_params_out getcap_out;
257         struct  tpm_readpubek_params_out readpubek_out;
258         u8      readpubek_out_buffer[sizeof(struct tpm_readpubek_params_out)];
259         struct  tpm_getcap_params_in getcap_in;
260         struct  tpm_pcrread_in  pcrread_in;
261         struct  tpm_pcrread_out pcrread_out;
262         struct  tpm_pcrextend_in pcrextend_in;
263 } tpm_cmd_params;
264
265 struct tpm_cmd_t {
266         tpm_cmd_header  header;
267         tpm_cmd_params  params;
268 }__attribute__((packed));
269
270 ssize_t tpm_getcap(struct device *, __be32, cap_t *, const char *);
271
272 extern void tpm_get_timeouts(struct tpm_chip *);
273 extern void tpm_gen_interrupt(struct tpm_chip *);
274 extern void tpm_continue_selftest(struct tpm_chip *);
275 extern unsigned long tpm_calc_ordinal_duration(struct tpm_chip *, u32);
276 extern struct tpm_chip* tpm_register_hardware(struct device *,
277                                  const struct tpm_vendor_specific *);
278 extern int tpm_open(struct inode *, struct file *);
279 extern int tpm_release(struct inode *, struct file *);
280 extern void tpm_dev_vendor_release(struct tpm_chip *);
281 extern ssize_t tpm_write(struct file *, const char __user *, size_t,
282                          loff_t *);
283 extern ssize_t tpm_read(struct file *, char __user *, size_t, loff_t *);
284 extern void tpm_remove_hardware(struct device *);
285 extern int tpm_pm_suspend(struct device *, pm_message_t);
286 extern int tpm_pm_resume(struct device *);
287
288 #ifdef CONFIG_ACPI
289 extern struct dentry ** tpm_bios_log_setup(char *);
290 extern void tpm_bios_log_teardown(struct dentry **);
291 #else
292 static inline struct dentry ** tpm_bios_log_setup(char *name)
293 {
294         return NULL;
295 }
296 static inline void tpm_bios_log_teardown(struct dentry **dir)
297 {
298 }
299 #endif