]> err.no Git - linux-2.6/blob - drivers/char/tpm/tpm.h
[PATCH] tpm: command duration update
[linux-2.6] / 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/pci.h>
23 #include <linux/delay.h>
24 #include <linux/fs.h>
25 #include <linux/miscdevice.h>
26 #include <linux/platform_device.h>
27 #include <linux/io.h>
28
29 enum tpm_timeout {
30         TPM_TIMEOUT = 5,        /* msecs */
31 };
32
33 /* TPM addresses */
34 enum tpm_addr {
35         TPM_SUPERIO_ADDR = 0x2E,
36         TPM_ADDR = 0x4E,
37 };
38
39 extern ssize_t tpm_show_pubek(struct device *, struct device_attribute *attr,
40                                 char *);
41 extern ssize_t tpm_show_pcrs(struct device *, struct device_attribute *attr,
42                                 char *);
43 extern ssize_t tpm_show_caps(struct device *, struct device_attribute *attr,
44                                 char *);
45 extern ssize_t tpm_store_cancel(struct device *, struct device_attribute *attr,
46                                 const char *, size_t);
47
48 struct tpm_chip;
49
50 struct tpm_vendor_specific {
51         const u8 req_complete_mask;
52         const u8 req_complete_val;
53         const u8 req_canceled;
54         void __iomem *iobase;           /* ioremapped address */
55         unsigned long base;             /* TPM base address */
56
57         int region_size;
58         int have_region;
59
60         int (*recv) (struct tpm_chip *, u8 *, size_t);
61         int (*send) (struct tpm_chip *, u8 *, size_t);
62         void (*cancel) (struct tpm_chip *);
63         u8 (*status) (struct tpm_chip *);
64         struct miscdevice miscdev;
65         struct attribute_group *attr_group;
66         u32 duration[3];
67 };
68
69 struct tpm_chip {
70         struct device *dev;     /* Device stuff */
71
72         int dev_num;            /* /dev/tpm# */
73         int num_opens;          /* only one allowed */
74         int time_expired;
75
76         /* Data passed to and from the tpm via the read/write calls */
77         u8 *data_buffer;
78         atomic_t data_pending;
79         struct semaphore buffer_mutex;
80
81         struct timer_list user_read_timer;      /* user needs to claim result */
82         struct work_struct work;
83         struct semaphore tpm_mutex;     /* tpm is processing */
84
85         struct tpm_vendor_specific vendor;
86
87         struct dentry **bios_dir;
88
89         struct list_head list;
90 };
91
92 static inline int tpm_read_index(int base, int index)
93 {
94         outb(index, base);
95         return inb(base+1) & 0xFF;
96 }
97
98 static inline void tpm_write_index(int base, int index, int value)
99 {
100         outb(index, base);
101         outb(value & 0xFF, base+1);
102 }
103
104 extern unsigned long tpm_calc_ordinal_duration(struct tpm_chip *, u32);
105 extern struct tpm_chip* tpm_register_hardware(struct device *,
106                                  const struct tpm_vendor_specific *);
107 extern int tpm_open(struct inode *, struct file *);
108 extern int tpm_release(struct inode *, struct file *);
109 extern ssize_t tpm_write(struct file *, const char __user *, size_t,
110                          loff_t *);
111 extern ssize_t tpm_read(struct file *, char __user *, size_t, loff_t *);
112 extern void tpm_remove_hardware(struct device *);
113 extern int tpm_pm_suspend(struct device *, pm_message_t);
114 extern int tpm_pm_resume(struct device *);
115
116 #ifdef CONFIG_ACPI
117 extern struct dentry ** tpm_bios_log_setup(char *);
118 extern void tpm_bios_log_teardown(struct dentry **);
119 #else
120 static inline struct dentry* tpm_bios_log_setup(char *name)
121 {
122         return NULL;
123 }
124 static inline void tpm_bios_log_teardown(struct dentry **dir)
125 {
126 }
127 #endif