blob: deb4b5c80914a0311ea613b87ba20b32a36071d3 [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
22#include "tpm.h"
Kylene Jo Hallad5ea3c2005-11-13 16:07:41 -080023#include "tpm_atmel.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
25/* write status bits */
Kylene Hall3122a882005-06-23 22:01:48 -070026enum tpm_atmel_write_status {
27 ATML_STATUS_ABORT = 0x01,
28 ATML_STATUS_LASTBYTE = 0x04
29};
Linus Torvalds1da177e2005-04-16 15:20:36 -070030/* read status bits */
Kylene Hall3122a882005-06-23 22:01:48 -070031enum tpm_atmel_read_status {
32 ATML_STATUS_BUSY = 0x01,
33 ATML_STATUS_DATA_AVAIL = 0x02,
34 ATML_STATUS_REWRITE = 0x04,
35 ATML_STATUS_READY = 0x08
36};
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Andrew Mortonb888c872005-10-30 15:03:28 -080038static int tpm_atml_recv(struct tpm_chip *chip, u8 *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -070039{
40 u8 status, *hdr = buf;
41 u32 size;
42 int i;
43 __be32 *native_size;
44
45 /* start reading header */
46 if (count < 6)
47 return -EIO;
48
49 for (i = 0; i < 6; i++) {
Kylene Jo Hallad5ea3c2005-11-13 16:07:41 -080050 status = atmel_getb(chip, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 if ((status & ATML_STATUS_DATA_AVAIL) == 0) {
Kylene Jo Halle659a3f2005-10-30 15:03:24 -080052 dev_err(chip->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 "error reading header\n");
54 return -EIO;
55 }
Kylene Jo Hallad5ea3c2005-11-13 16:07:41 -080056 *buf++ = atmel_getb(chip, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 }
58
59 /* size of the data received */
60 native_size = (__force __be32 *) (hdr + 2);
61 size = be32_to_cpu(*native_size);
62
63 if (count < size) {
Kylene Jo Halle659a3f2005-10-30 15:03:24 -080064 dev_err(chip->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 "Recv size(%d) less than available space\n", size);
66 for (; i < size; i++) { /* clear the waiting data anyway */
Kylene Jo Hallad5ea3c2005-11-13 16:07:41 -080067 status = atmel_getb(chip, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 if ((status & ATML_STATUS_DATA_AVAIL) == 0) {
Kylene Jo Halle659a3f2005-10-30 15:03:24 -080069 dev_err(chip->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 "error reading data\n");
71 return -EIO;
72 }
73 }
74 return -EIO;
75 }
76
77 /* read all the data available */
78 for (; i < size; i++) {
Kylene Jo Hallad5ea3c2005-11-13 16:07:41 -080079 status = atmel_getb(chip, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 if ((status & ATML_STATUS_DATA_AVAIL) == 0) {
Kylene Jo Halle659a3f2005-10-30 15:03:24 -080081 dev_err(chip->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 "error reading data\n");
83 return -EIO;
84 }
Kylene Jo Hallad5ea3c2005-11-13 16:07:41 -080085 *buf++ = atmel_getb(chip, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 }
87
88 /* make sure data available is gone */
Kylene Jo Hallad5ea3c2005-11-13 16:07:41 -080089 status = atmel_getb(chip, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 if (status & ATML_STATUS_DATA_AVAIL) {
Kylene Jo Halle659a3f2005-10-30 15:03:24 -080091 dev_err(chip->dev, "data available is stuck\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 return -EIO;
93 }
94
95 return size;
96}
97
Andrew Mortonb888c872005-10-30 15:03:28 -080098static int tpm_atml_send(struct tpm_chip *chip, u8 *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099{
100 int i;
101
Kylene Jo Halle659a3f2005-10-30 15:03:24 -0800102 dev_dbg(chip->dev, "tpm_atml_send:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 for (i = 0; i < count; i++) {
Kylene Jo Halle659a3f2005-10-30 15:03:24 -0800104 dev_dbg(chip->dev, "%d 0x%x(%d)\n", i, buf[i], buf[i]);
Kylene Jo Hallad5ea3c2005-11-13 16:07:41 -0800105 atmel_putb(buf[i], chip, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 }
107
108 return count;
109}
110
111static void tpm_atml_cancel(struct tpm_chip *chip)
112{
Kylene Jo Hallad5ea3c2005-11-13 16:07:41 -0800113 atmel_putb(ATML_STATUS_ABORT, chip, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114}
115
Kylene Jo Hallb4ed3e32005-10-30 15:03:23 -0800116static u8 tpm_atml_status(struct tpm_chip *chip)
117{
Kylene Jo Hallad5ea3c2005-11-13 16:07:41 -0800118 return atmel_getb(chip, 1);
Kylene Jo Hallb4ed3e32005-10-30 15:03:23 -0800119}
120
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121static struct file_operations atmel_ops = {
122 .owner = THIS_MODULE,
123 .llseek = no_llseek,
124 .open = tpm_open,
125 .read = tpm_read,
126 .write = tpm_write,
127 .release = tpm_release,
128};
129
Kylene Hall6659ca22005-06-23 22:02:00 -0700130static DEVICE_ATTR(pubek, S_IRUGO, tpm_show_pubek, NULL);
131static DEVICE_ATTR(pcrs, S_IRUGO, tpm_show_pcrs, NULL);
132static DEVICE_ATTR(caps, S_IRUGO, tpm_show_caps, NULL);
133static DEVICE_ATTR(cancel, S_IWUSR |S_IWGRP, NULL, tpm_store_cancel);
134
135static struct attribute* atmel_attrs[] = {
136 &dev_attr_pubek.attr,
137 &dev_attr_pcrs.attr,
138 &dev_attr_caps.attr,
139 &dev_attr_cancel.attr,
Randy Dunlap874ec332005-10-30 15:03:29 -0800140 NULL,
Kylene Hall6659ca22005-06-23 22:02:00 -0700141};
142
143static struct attribute_group atmel_attr_grp = { .attrs = atmel_attrs };
144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145static struct tpm_vendor_specific tpm_atmel = {
146 .recv = tpm_atml_recv,
147 .send = tpm_atml_send,
148 .cancel = tpm_atml_cancel,
Kylene Jo Hallb4ed3e32005-10-30 15:03:23 -0800149 .status = tpm_atml_status,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 .req_complete_mask = ATML_STATUS_BUSY | ATML_STATUS_DATA_AVAIL,
151 .req_complete_val = ATML_STATUS_DATA_AVAIL,
Kylene Halld9e5b6b2005-06-23 22:02:02 -0700152 .req_canceled = ATML_STATUS_READY,
Kylene Hall6659ca22005-06-23 22:02:00 -0700153 .attr_group = &atmel_attr_grp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 .miscdev = { .fops = &atmel_ops, },
155};
156
Andrew Mortonb888c872005-10-30 15:03:28 -0800157static struct platform_device *pdev;
Kylene Jo Hall682e97a2005-10-30 15:03:25 -0800158
Kylene Jo Hallad5ea3c2005-11-13 16:07:41 -0800159static void atml_plat_remove(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160{
Kylene Jo Hallad5ea3c2005-11-13 16:07:41 -0800161 struct tpm_chip *chip = dev_get_drvdata(&pdev->dev);
162
Andrew Mortonb888c872005-10-30 15:03:28 -0800163 if (chip) {
Kylene Jo Hallad5ea3c2005-11-13 16:07:41 -0800164 if (chip->vendor->have_region)
165 atmel_release_region(chip->vendor->base, chip->vendor->region_size);
166 atmel_put_base_addr(chip->vendor);
Kylene Jo Halle659a3f2005-10-30 15:03:24 -0800167 tpm_remove_hardware(chip->dev);
Kylene Jo Hallad5ea3c2005-11-13 16:07:41 -0800168 platform_device_unregister(pdev);
Kylene Jo Hall682e97a2005-10-30 15:03:25 -0800169 }
Kylene Jo Halle659a3f2005-10-30 15:03:24 -0800170}
171
Kylene Jo Hall682e97a2005-10-30 15:03:25 -0800172static struct device_driver atml_drv = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 .name = "tpm_atmel",
Kylene Jo Hall682e97a2005-10-30 15:03:25 -0800174 .bus = &platform_bus_type,
175 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 .suspend = tpm_pm_suspend,
177 .resume = tpm_pm_resume,
178};
179
180static int __init init_atmel(void)
181{
Kylene Jo Hall682e97a2005-10-30 15:03:25 -0800182 int rc = 0;
Kylene Jo Hall682e97a2005-10-30 15:03:25 -0800183
184 driver_register(&atml_drv);
185
Kylene Jo Hallad5ea3c2005-11-13 16:07:41 -0800186 if (atmel_get_base_addr(&tpm_atmel) != 0) {
187 rc = -ENODEV;
188 goto err_unreg_drv;
Kylene Jo Hall682e97a2005-10-30 15:03:25 -0800189 }
190
Kylene Jo Hallad5ea3c2005-11-13 16:07:41 -0800191 tpm_atmel.have_region = (atmel_request_region( tpm_atmel.base, tpm_atmel.region_size, "tpm_atmel0") == NULL) ? 0 : 1;
Kylene Jo Hall682e97a2005-10-30 15:03:25 -0800192
Kylene Jo Hallad5ea3c2005-11-13 16:07:41 -0800193 if (IS_ERR(pdev = platform_device_register_simple("tpm_atmel", -1, NULL, 0 ))) {
194 rc = PTR_ERR(pdev);
195 goto err_rel_reg;
Kylene Jo Hall682e97a2005-10-30 15:03:25 -0800196 }
197
Kylene Jo Hallad5ea3c2005-11-13 16:07:41 -0800198 if ((rc = tpm_register_hardware(&pdev->dev, &tpm_atmel)) < 0)
199 goto err_unreg_dev;
Kylene Jo Hall682e97a2005-10-30 15:03:25 -0800200 return 0;
Kylene Jo Hallad5ea3c2005-11-13 16:07:41 -0800201
202err_unreg_dev:
203 platform_device_unregister(pdev);
204err_rel_reg:
205 if (tpm_atmel.have_region)
206 atmel_release_region(tpm_atmel.base, tpm_atmel.region_size);
207 atmel_put_base_addr(&tpm_atmel);
208err_unreg_drv:
209 driver_unregister(&atml_drv);
210 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211}
212
213static void __exit cleanup_atmel(void)
214{
Kylene Jo Hall682e97a2005-10-30 15:03:25 -0800215 driver_unregister(&atml_drv);
Kylene Jo Hallad5ea3c2005-11-13 16:07:41 -0800216 atml_plat_remove();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217}
218
219module_init(init_atmel);
220module_exit(cleanup_atmel);
221
222MODULE_AUTHOR("Leendert van Doorn (leendert@watson.ibm.com)");
223MODULE_DESCRIPTION("TPM Driver");
224MODULE_VERSION("2.0");
225MODULE_LICENSE("GPL");