blob: 3a5af7e06624f18ba4fd1616f5dc55a24e3303f9 [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 *
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/version.h>
23#include <linux/pci.h>
24#include <linux/delay.h>
25#include <linux/fs.h>
26#include <linux/miscdevice.h>
27
Kylene Hall3122a882005-06-23 22:01:48 -070028enum tpm_timeout {
29 TPM_TIMEOUT = 5, /* msecs */
30};
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32/* TPM addresses */
Kylene Hall3122a882005-06-23 22:01:48 -070033enum tpm_addr {
34 TPM_ADDR = 0x4E,
35 TPM_DATA = 0x4F
36};
37
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39struct tpm_chip;
40
41struct tpm_vendor_specific {
42 u8 req_complete_mask;
43 u8 req_complete_val;
44 u16 base; /* TPM base address */
45
46 int (*recv) (struct tpm_chip *, u8 *, size_t);
47 int (*send) (struct tpm_chip *, u8 *, size_t);
48 void (*cancel) (struct tpm_chip *);
49 struct miscdevice miscdev;
50};
51
52struct tpm_chip {
53 struct pci_dev *pci_dev; /* PCI device stuff */
54
55 int dev_num; /* /dev/tpm# */
56 int num_opens; /* only one allowed */
57 int time_expired;
58
59 /* Data passed to and from the tpm via the read/write calls */
60 u8 *data_buffer;
61 atomic_t data_pending;
62 struct semaphore buffer_mutex;
63
64 struct timer_list user_read_timer; /* user needs to claim result */
65 struct semaphore tpm_mutex; /* tpm is processing */
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67 struct tpm_vendor_specific *vendor;
68
69 struct list_head list;
70};
71
72static inline int tpm_read_index(int index)
73{
74 outb(index, TPM_ADDR);
75 return inb(TPM_DATA) & 0xFF;
76}
77
78static inline void tpm_write_index(int index, int value)
79{
80 outb(index, TPM_ADDR);
81 outb(value & 0xFF, TPM_DATA);
82}
83
Linus Torvalds1da177e2005-04-16 15:20:36 -070084extern int tpm_lpc_bus_init(struct pci_dev *, u16);
85
86extern int tpm_register_hardware(struct pci_dev *,
87 struct tpm_vendor_specific *);
88extern int tpm_open(struct inode *, struct file *);
89extern int tpm_release(struct inode *, struct file *);
90extern ssize_t tpm_write(struct file *, const char __user *, size_t,
91 loff_t *);
92extern ssize_t tpm_read(struct file *, char __user *, size_t, loff_t *);
93extern void __devexit tpm_remove(struct pci_dev *);
Pavel Machek4fd416c2005-04-16 15:25:24 -070094extern int tpm_pm_suspend(struct pci_dev *, pm_message_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095extern int tpm_pm_resume(struct pci_dev *);