]> err.no Git - linux-2.6/blob - drivers/char/tpm/tpm_nsc.c
[PATCH] tpm: replace odd LPC init function
[linux-2.6] / drivers / char / tpm / tpm_nsc.c
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
22 #include "tpm.h"
23
24 /* National definitions */
25 enum tpm_nsc_addr{
26         TPM_NSC_BASE = 0x360,
27         TPM_NSC_IRQ = 0x07,
28         TPM_NSC_BASE0_HI = 0x60,
29         TPM_NSC_BASE0_LO = 0x61,
30         TPM_NSC_BASE1_HI = 0x62,
31         TPM_NSC_BASE1_LO = 0x63
32 };
33
34 enum tpm_nsc_index {
35         NSC_LDN_INDEX = 0x07,
36         NSC_SID_INDEX = 0x20,
37         NSC_LDC_INDEX = 0x30,
38         NSC_DIO_INDEX = 0x60,
39         NSC_CIO_INDEX = 0x62,
40         NSC_IRQ_INDEX = 0x70,
41         NSC_ITS_INDEX = 0x71
42 };
43
44 enum tpm_nsc_status_loc {
45         NSC_STATUS = 0x01,
46         NSC_COMMAND = 0x01,
47         NSC_DATA = 0x00
48 };
49
50 /* status bits */
51 enum tpm_nsc_status {
52         NSC_STATUS_OBF = 0x01,  /* output buffer full */
53         NSC_STATUS_IBF = 0x02,  /* input buffer full */
54         NSC_STATUS_F0 = 0x04,   /* F0 */
55         NSC_STATUS_A2 = 0x08,   /* A2 */
56         NSC_STATUS_RDY = 0x10,  /* ready to receive command */
57         NSC_STATUS_IBR = 0x20   /* ready to receive data */
58 };
59 /* command bits */
60 enum tpm_nsc_cmd_mode {
61         NSC_COMMAND_NORMAL = 0x01,      /* normal mode */
62         NSC_COMMAND_EOC = 0x03,
63         NSC_COMMAND_CANCEL = 0x22
64 };
65 /*
66  * Wait for a certain status to appear
67  */
68 static int wait_for_stat(struct tpm_chip *chip, u8 mask, u8 val, u8 * data)
69 {
70         unsigned long stop;
71
72         /* status immediately available check */
73         *data = inb(chip->vendor->base + NSC_STATUS);
74         if ((*data & mask) == val)
75                 return 0;
76
77         /* wait for status */
78         stop = jiffies + 10 * HZ;
79         do {
80                 msleep(TPM_TIMEOUT);
81                 *data = inb(chip->vendor->base + 1);
82                 if ((*data & mask) == val)
83                         return 0;
84         }
85         while (time_before(jiffies, stop));
86
87         return -EBUSY;
88 }
89
90 static int nsc_wait_for_ready(struct tpm_chip *chip)
91 {
92         int status;
93         unsigned long stop;
94
95         /* status immediately available check */
96         status = inb(chip->vendor->base + NSC_STATUS);
97         if (status & NSC_STATUS_OBF)
98                 status = inb(chip->vendor->base + NSC_DATA);
99         if (status & NSC_STATUS_RDY)
100                 return 0;
101
102         /* wait for status */
103         stop = jiffies + 100;
104         do {
105                 msleep(TPM_TIMEOUT);
106                 status = inb(chip->vendor->base + NSC_STATUS);
107                 if (status & NSC_STATUS_OBF)
108                         status = inb(chip->vendor->base + NSC_DATA);
109                 if (status & NSC_STATUS_RDY)
110                         return 0;
111         }
112         while (time_before(jiffies, stop));
113
114         dev_info(&chip->pci_dev->dev, "wait for ready failed\n");
115         return -EBUSY;
116 }
117
118
119 static int tpm_nsc_recv(struct tpm_chip *chip, u8 * buf, size_t count)
120 {
121         u8 *buffer = buf;
122         u8 data, *p;
123         u32 size;
124         __be32 *native_size;
125
126         if (count < 6)
127                 return -EIO;
128
129         if (wait_for_stat(chip, NSC_STATUS_F0, NSC_STATUS_F0, &data) < 0) {
130                 dev_err(&chip->pci_dev->dev, "F0 timeout\n");
131                 return -EIO;
132         }
133         if ((data =
134              inb(chip->vendor->base + NSC_DATA)) != NSC_COMMAND_NORMAL) {
135                 dev_err(&chip->pci_dev->dev, "not in normal mode (0x%x)\n",
136                         data);
137                 return -EIO;
138         }
139
140         /* read the whole packet */
141         for (p = buffer; p < &buffer[count]; p++) {
142                 if (wait_for_stat
143                     (chip, NSC_STATUS_OBF, NSC_STATUS_OBF, &data) < 0) {
144                         dev_err(&chip->pci_dev->dev,
145                                 "OBF timeout (while reading data)\n");
146                         return -EIO;
147                 }
148                 if (data & NSC_STATUS_F0)
149                         break;
150                 *p = inb(chip->vendor->base + NSC_DATA);
151         }
152
153         if ((data & NSC_STATUS_F0) == 0) {
154                 dev_err(&chip->pci_dev->dev, "F0 not set\n");
155                 return -EIO;
156         }
157         if ((data = inb(chip->vendor->base + NSC_DATA)) != NSC_COMMAND_EOC) {
158                 dev_err(&chip->pci_dev->dev,
159                         "expected end of command(0x%x)\n", data);
160                 return -EIO;
161         }
162
163         native_size = (__force __be32 *) (buf + 2);
164         size = be32_to_cpu(*native_size);
165
166         if (count < size)
167                 return -EIO;
168
169         return size;
170 }
171
172 static int tpm_nsc_send(struct tpm_chip *chip, u8 * buf, size_t count)
173 {
174         u8 data;
175         int i;
176
177         /*
178          * If we hit the chip with back to back commands it locks up
179          * and never set IBF. Hitting it with this "hammer" seems to
180          * fix it. Not sure why this is needed, we followed the flow
181          * chart in the manual to the letter.
182          */
183         outb(NSC_COMMAND_CANCEL, chip->vendor->base + NSC_COMMAND);
184
185         if (nsc_wait_for_ready(chip) != 0)
186                 return -EIO;
187
188         if (wait_for_stat(chip, NSC_STATUS_IBF, 0, &data) < 0) {
189                 dev_err(&chip->pci_dev->dev, "IBF timeout\n");
190                 return -EIO;
191         }
192
193         outb(NSC_COMMAND_NORMAL, chip->vendor->base + NSC_COMMAND);
194         if (wait_for_stat(chip, NSC_STATUS_IBR, NSC_STATUS_IBR, &data) < 0) {
195                 dev_err(&chip->pci_dev->dev, "IBR timeout\n");
196                 return -EIO;
197         }
198
199         for (i = 0; i < count; i++) {
200                 if (wait_for_stat(chip, NSC_STATUS_IBF, 0, &data) < 0) {
201                         dev_err(&chip->pci_dev->dev,
202                                 "IBF timeout (while writing data)\n");
203                         return -EIO;
204                 }
205                 outb(buf[i], chip->vendor->base + NSC_DATA);
206         }
207
208         if (wait_for_stat(chip, NSC_STATUS_IBF, 0, &data) < 0) {
209                 dev_err(&chip->pci_dev->dev, "IBF timeout\n");
210                 return -EIO;
211         }
212         outb(NSC_COMMAND_EOC, chip->vendor->base + NSC_COMMAND);
213
214         return count;
215 }
216
217 static void tpm_nsc_cancel(struct tpm_chip *chip)
218 {
219         outb(NSC_COMMAND_CANCEL, chip->vendor->base + NSC_COMMAND);
220 }
221
222 static struct file_operations nsc_ops = {
223         .owner = THIS_MODULE,
224         .llseek = no_llseek,
225         .open = tpm_open,
226         .read = tpm_read,
227         .write = tpm_write,
228         .release = tpm_release,
229 };
230
231 static DEVICE_ATTR(pubek, S_IRUGO, tpm_show_pubek, NULL);
232 static DEVICE_ATTR(pcrs, S_IRUGO, tpm_show_pcrs, NULL);
233 static DEVICE_ATTR(caps, S_IRUGO, tpm_show_caps, NULL);
234 static DEVICE_ATTR(cancel, S_IWUSR|S_IWGRP, NULL, tpm_store_cancel);
235
236 static struct attribute * nsc_attrs[] = {
237         &dev_attr_pubek.attr,
238         &dev_attr_pcrs.attr,
239         &dev_attr_caps.attr,
240         &dev_attr_cancel.attr,
241         0,
242 };
243
244 static struct attribute_group nsc_attr_grp = { .attrs = nsc_attrs };
245
246 static struct tpm_vendor_specific tpm_nsc = {
247         .recv = tpm_nsc_recv,
248         .send = tpm_nsc_send,
249         .cancel = tpm_nsc_cancel,
250         .req_complete_mask = NSC_STATUS_OBF,
251         .req_complete_val = NSC_STATUS_OBF,
252         .req_canceled = NSC_STATUS_RDY,
253         .attr_group = &nsc_attr_grp,
254         .miscdev = { .fops = &nsc_ops, },
255 };
256
257 static int __devinit tpm_nsc_init(struct pci_dev *pci_dev,
258                                   const struct pci_device_id *pci_id)
259 {
260         int rc = 0;
261         int lo, hi;
262
263         hi = tpm_read_index(TPM_NSC_BASE0_HI);
264         lo = tpm_read_index(TPM_NSC_BASE0_LO);
265
266         tpm_nsc.base = (hi<<8) | lo;
267
268         if (pci_enable_device(pci_dev))
269                 return -EIO;
270
271         /* verify that it is a National part (SID) */
272         if (tpm_read_index(NSC_SID_INDEX) != 0xEF) {
273                 rc = -ENODEV;
274                 goto out_err;
275         }
276
277         dev_dbg(&pci_dev->dev, "NSC TPM detected\n");
278         dev_dbg(&pci_dev->dev,
279                 "NSC LDN 0x%x, SID 0x%x, SRID 0x%x\n",
280                 tpm_read_index(0x07), tpm_read_index(0x20),
281                 tpm_read_index(0x27));
282         dev_dbg(&pci_dev->dev,
283                 "NSC SIOCF1 0x%x SIOCF5 0x%x SIOCF6 0x%x SIOCF8 0x%x\n",
284                 tpm_read_index(0x21), tpm_read_index(0x25),
285                 tpm_read_index(0x26), tpm_read_index(0x28));
286         dev_dbg(&pci_dev->dev, "NSC IO Base0 0x%x\n",
287                 (tpm_read_index(0x60) << 8) | tpm_read_index(0x61));
288         dev_dbg(&pci_dev->dev, "NSC IO Base1 0x%x\n",
289                 (tpm_read_index(0x62) << 8) | tpm_read_index(0x63));
290         dev_dbg(&pci_dev->dev, "NSC Interrupt number and wakeup 0x%x\n",
291                 tpm_read_index(0x70));
292         dev_dbg(&pci_dev->dev, "NSC IRQ type select 0x%x\n",
293                 tpm_read_index(0x71));
294         dev_dbg(&pci_dev->dev,
295                 "NSC DMA channel select0 0x%x, select1 0x%x\n",
296                 tpm_read_index(0x74), tpm_read_index(0x75));
297         dev_dbg(&pci_dev->dev,
298                 "NSC Config "
299                 "0x%x 0x%x 0x%x 0x%x 0x%x 0x%x 0x%x 0x%x 0x%x 0x%x\n",
300                 tpm_read_index(0xF0), tpm_read_index(0xF1),
301                 tpm_read_index(0xF2), tpm_read_index(0xF3),
302                 tpm_read_index(0xF4), tpm_read_index(0xF5),
303                 tpm_read_index(0xF6), tpm_read_index(0xF7),
304                 tpm_read_index(0xF8), tpm_read_index(0xF9));
305
306         dev_info(&pci_dev->dev,
307                  "NSC PC21100 TPM revision %d\n",
308                  tpm_read_index(0x27) & 0x1F);
309
310         if (tpm_read_index(NSC_LDC_INDEX) == 0)
311                 dev_info(&pci_dev->dev, ": NSC TPM not active\n");
312
313         /* select PM channel 1 */
314         tpm_write_index(NSC_LDN_INDEX, 0x12);
315         tpm_read_index(NSC_LDN_INDEX);
316
317         /* disable the DPM module */
318         tpm_write_index(NSC_LDC_INDEX, 0);
319         tpm_read_index(NSC_LDC_INDEX);
320
321         /* set the data register base addresses */
322         tpm_write_index(NSC_DIO_INDEX, TPM_NSC_BASE >> 8);
323         tpm_write_index(NSC_DIO_INDEX + 1, TPM_NSC_BASE);
324         tpm_read_index(NSC_DIO_INDEX);
325         tpm_read_index(NSC_DIO_INDEX + 1);
326
327         /* set the command register base addresses */
328         tpm_write_index(NSC_CIO_INDEX, (TPM_NSC_BASE + 1) >> 8);
329         tpm_write_index(NSC_CIO_INDEX + 1, (TPM_NSC_BASE + 1));
330         tpm_read_index(NSC_DIO_INDEX);
331         tpm_read_index(NSC_DIO_INDEX + 1);
332
333         /* set the interrupt number to be used for the host interface */
334         tpm_write_index(NSC_IRQ_INDEX, TPM_NSC_IRQ);
335         tpm_write_index(NSC_ITS_INDEX, 0x00);
336         tpm_read_index(NSC_IRQ_INDEX);
337
338         /* enable the DPM module */
339         tpm_write_index(NSC_LDC_INDEX, 0x01);
340         tpm_read_index(NSC_LDC_INDEX);
341
342         if ((rc = tpm_register_hardware(pci_dev, &tpm_nsc)) < 0)
343                 goto out_err;
344
345         return 0;
346
347 out_err:
348         pci_disable_device(pci_dev);
349         return rc;
350 }
351
352 static struct pci_device_id tpm_pci_tbl[] __devinitdata = {
353         {PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_0)},
354         {PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801CA_12)},
355         {PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801DB_0)},
356         {PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801DB_12)},
357         {PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801EB_0)},
358         {PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_8111_LPC)},
359         {0,}
360 };
361
362 MODULE_DEVICE_TABLE(pci, tpm_pci_tbl);
363
364 static struct pci_driver nsc_pci_driver = {
365         .name = "tpm_nsc",
366         .id_table = tpm_pci_tbl,
367         .probe = tpm_nsc_init,
368         .remove = __devexit_p(tpm_remove),
369         .suspend = tpm_pm_suspend,
370         .resume = tpm_pm_resume,
371 };
372
373 static int __init init_nsc(void)
374 {
375         return pci_register_driver(&nsc_pci_driver);
376 }
377
378 static void __exit cleanup_nsc(void)
379 {
380         pci_unregister_driver(&nsc_pci_driver);
381 }
382
383 module_init(init_nsc);
384 module_exit(cleanup_nsc);
385
386 MODULE_AUTHOR("Leendert van Doorn (leendert@watson.ibm.com)");
387 MODULE_DESCRIPTION("TPM Driver");
388 MODULE_VERSION("2.0");
389 MODULE_LICENSE("GPL");