blob: fa0f66809503196943e70c59424683261cdb405f [file] [log] [blame]
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -08001/*
2 * Copyright (C) 2014 Intel Corporation
3 *
4 * Authors:
5 * Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
6 *
7 * Maintained by: <tpmdd-devel@lists.sourceforge.net>
8 *
9 * This device driver implements the TPM interface as defined in
10 * the TCG CRB 2.0 TPM specification.
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; version 2
15 * of the License.
16 */
17
18#include <linux/acpi.h>
19#include <linux/highmem.h>
20#include <linux/rculist.h>
21#include <linux/module.h>
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -080022#include "tpm.h"
23
24#define ACPI_SIG_TPM2 "TPM2"
25
26static const u8 CRB_ACPI_START_UUID[] = {
27 /* 0000 */ 0xAB, 0x6C, 0xBF, 0x6B, 0x63, 0x54, 0x14, 0x47,
28 /* 0008 */ 0xB7, 0xCD, 0xF0, 0x20, 0x3C, 0x03, 0x68, 0xD4
29};
30
31enum crb_defaults {
32 CRB_ACPI_START_REVISION_ID = 1,
33 CRB_ACPI_START_INDEX = 1,
34};
35
Jarkko Sakkinen7fd10d62016-09-02 22:34:19 +030036enum crb_ctrl_req {
Jarkko Sakkinenf39a9e92016-09-02 22:34:20 +030037 CRB_CTRL_REQ_CMD_READY = BIT(0),
38 CRB_CTRL_REQ_GO_IDLE = BIT(1),
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -080039};
40
Jarkko Sakkinen7fd10d62016-09-02 22:34:19 +030041enum crb_ctrl_sts {
42 CRB_CTRL_STS_ERROR = BIT(0),
43 CRB_CTRL_STS_TPM_IDLE = BIT(1),
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -080044};
45
46enum crb_start {
47 CRB_START_INVOKE = BIT(0),
48};
49
50enum crb_cancel {
51 CRB_CANCEL_INVOKE = BIT(0),
52};
53
54struct crb_control_area {
55 u32 req;
56 u32 sts;
57 u32 cancel;
58 u32 start;
59 u32 int_enable;
60 u32 int_sts;
61 u32 cmd_size;
Jarkko Sakkinen149789c2015-09-15 20:05:40 +030062 u32 cmd_pa_low;
63 u32 cmd_pa_high;
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -080064 u32 rsp_size;
65 u64 rsp_pa;
66} __packed;
67
68enum crb_status {
Jarkko Sakkinen7fd10d62016-09-02 22:34:19 +030069 CRB_DRV_STS_COMPLETE = BIT(0),
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -080070};
71
72enum crb_flags {
73 CRB_FL_ACPI_START = BIT(0),
74 CRB_FL_CRB_START = BIT(1),
75};
76
77struct crb_priv {
78 unsigned int flags;
Jason Gunthorpe1bd047b2016-01-07 17:36:26 -070079 void __iomem *iobase;
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -080080 struct crb_control_area __iomem *cca;
81 u8 __iomem *cmd;
82 u8 __iomem *rsp;
Tomas Winkleraa77ea02016-09-12 13:52:10 +030083 u32 cmd_size;
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -080084};
85
Jarkko Sakkinen4886cd82016-09-27 12:00:13 +030086static SIMPLE_DEV_PM_OPS(crb_pm, tpm_pm_suspend, tpm_pm_resume);
87
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -080088static u8 crb_status(struct tpm_chip *chip)
89{
Christophe Ricard9e0d39d2016-03-31 22:57:00 +020090 struct crb_priv *priv = dev_get_drvdata(&chip->dev);
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -080091 u8 sts = 0;
92
Jason Gunthorpe1e3ed592016-01-07 17:36:25 -070093 if ((ioread32(&priv->cca->start) & CRB_START_INVOKE) !=
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -080094 CRB_START_INVOKE)
Jarkko Sakkinen7fd10d62016-09-02 22:34:19 +030095 sts |= CRB_DRV_STS_COMPLETE;
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -080096
97 return sts;
98}
99
100static int crb_recv(struct tpm_chip *chip, u8 *buf, size_t count)
101{
Christophe Ricard9e0d39d2016-03-31 22:57:00 +0200102 struct crb_priv *priv = dev_get_drvdata(&chip->dev);
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800103 unsigned int expected;
104
105 /* sanity check */
106 if (count < 6)
107 return -EIO;
108
Jarkko Sakkinen7fd10d62016-09-02 22:34:19 +0300109 if (ioread32(&priv->cca->sts) & CRB_CTRL_STS_ERROR)
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800110 return -EIO;
111
112 memcpy_fromio(buf, priv->rsp, 6);
113 expected = be32_to_cpup((__be32 *) &buf[2]);
Jerry Snitselaarcc15d342017-03-10 17:46:04 -0700114 if (expected > count || expected < 6)
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800115 return -EIO;
116
117 memcpy_fromio(&buf[6], &priv->rsp[6], expected - 6);
118
119 return expected;
120}
121
122static int crb_do_acpi_start(struct tpm_chip *chip)
123{
124 union acpi_object *obj;
125 int rc;
126
127 obj = acpi_evaluate_dsm(chip->acpi_dev_handle,
128 CRB_ACPI_START_UUID,
129 CRB_ACPI_START_REVISION_ID,
130 CRB_ACPI_START_INDEX,
131 NULL);
132 if (!obj)
133 return -ENXIO;
134 rc = obj->integer.value == 0 ? 0 : -ENXIO;
135 ACPI_FREE(obj);
136 return rc;
137}
138
139static int crb_send(struct tpm_chip *chip, u8 *buf, size_t len)
140{
Christophe Ricard9e0d39d2016-03-31 22:57:00 +0200141 struct crb_priv *priv = dev_get_drvdata(&chip->dev);
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800142 int rc = 0;
143
Jarkko Sakkinen72fd50e2016-09-02 22:34:17 +0300144 /* Zero the cancel register so that the next command will not get
145 * canceled.
146 */
147 iowrite32(0, &priv->cca->cancel);
148
Tomas Winkleraa77ea02016-09-12 13:52:10 +0300149 if (len > priv->cmd_size) {
150 dev_err(&chip->dev, "invalid command count value %zd %d\n",
151 len, priv->cmd_size);
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800152 return -E2BIG;
153 }
154
155 memcpy_toio(priv->cmd, buf, len);
156
157 /* Make sure that cmd is populated before issuing start. */
158 wmb();
159
160 if (priv->flags & CRB_FL_CRB_START)
Tomas Winkler47de6832016-09-12 14:27:09 +0300161 iowrite32(CRB_START_INVOKE, &priv->cca->start);
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800162
163 if (priv->flags & CRB_FL_ACPI_START)
164 rc = crb_do_acpi_start(chip);
165
166 return rc;
167}
168
169static void crb_cancel(struct tpm_chip *chip)
170{
Christophe Ricard9e0d39d2016-03-31 22:57:00 +0200171 struct crb_priv *priv = dev_get_drvdata(&chip->dev);
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800172
Tomas Winkler47de6832016-09-12 14:27:09 +0300173 iowrite32(CRB_CANCEL_INVOKE, &priv->cca->cancel);
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800174
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800175 if ((priv->flags & CRB_FL_ACPI_START) && crb_do_acpi_start(chip))
176 dev_err(&chip->dev, "ACPI Start failed\n");
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800177}
178
179static bool crb_req_canceled(struct tpm_chip *chip, u8 status)
180{
Christophe Ricard9e0d39d2016-03-31 22:57:00 +0200181 struct crb_priv *priv = dev_get_drvdata(&chip->dev);
Jason Gunthorpe1e3ed592016-01-07 17:36:25 -0700182 u32 cancel = ioread32(&priv->cca->cancel);
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800183
184 return (cancel & CRB_CANCEL_INVOKE) == CRB_CANCEL_INVOKE;
185}
186
187static const struct tpm_class_ops tpm_crb = {
Jason Gunthorpecae8b442016-07-12 11:41:49 -0600188 .flags = TPM_OPS_AUTO_STARTUP,
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800189 .status = crb_status,
190 .recv = crb_recv,
191 .send = crb_send,
192 .cancel = crb_cancel,
193 .req_canceled = crb_req_canceled,
Jarkko Sakkinen7fd10d62016-09-02 22:34:19 +0300194 .req_complete_mask = CRB_DRV_STS_COMPLETE,
195 .req_complete_val = CRB_DRV_STS_COMPLETE,
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800196};
197
Jarkko Sakkinen2b7926a2016-09-27 12:01:13 +0300198static int crb_init(struct acpi_device *device, struct crb_priv *priv)
199{
200 struct tpm_chip *chip;
201
202 chip = tpmm_chip_alloc(&device->dev, &tpm_crb);
203 if (IS_ERR(chip))
204 return PTR_ERR(chip);
205
206 dev_set_drvdata(&chip->dev, priv);
207 chip->acpi_dev_handle = device->handle;
208 chip->flags = TPM_CHIP_FLAG_TPM2;
209
210 return tpm_chip_register(chip);
211}
212
Jason Gunthorpe1bd047b2016-01-07 17:36:26 -0700213static int crb_check_resource(struct acpi_resource *ares, void *data)
214{
Jarkko Sakkinen14ddfbf2016-03-15 21:41:40 +0200215 struct resource *io_res = data;
Jason Gunthorpe1bd047b2016-01-07 17:36:26 -0700216 struct resource res;
217
Jarkko Sakkinen30f9c8c2016-02-17 02:10:52 +0200218 if (acpi_dev_resource_memory(ares, &res)) {
Jarkko Sakkinen14ddfbf2016-03-15 21:41:40 +0200219 *io_res = res;
220 io_res->name = NULL;
Jarkko Sakkinen30f9c8c2016-02-17 02:10:52 +0200221 }
Jason Gunthorpe1bd047b2016-01-07 17:36:26 -0700222
223 return 1;
224}
225
226static void __iomem *crb_map_res(struct device *dev, struct crb_priv *priv,
Jarkko Sakkinen14ddfbf2016-03-15 21:41:40 +0200227 struct resource *io_res, u64 start, u32 size)
Jason Gunthorpe1bd047b2016-01-07 17:36:26 -0700228{
229 struct resource new_res = {
230 .start = start,
231 .end = start + size - 1,
232 .flags = IORESOURCE_MEM,
233 };
234
235 /* Detect a 64 bit address on a 32 bit system */
236 if (start != new_res.start)
Jarkko Sakkinenf786b752016-06-17 16:39:29 +0200237 return (void __iomem *) ERR_PTR(-EINVAL);
Jason Gunthorpe1bd047b2016-01-07 17:36:26 -0700238
Jarkko Sakkinen14ddfbf2016-03-15 21:41:40 +0200239 if (!resource_contains(io_res, &new_res))
Jason Gunthorpe1bd047b2016-01-07 17:36:26 -0700240 return devm_ioremap_resource(dev, &new_res);
241
Jarkko Sakkinen14ddfbf2016-03-15 21:41:40 +0200242 return priv->iobase + (new_res.start - io_res->start);
Jason Gunthorpe1bd047b2016-01-07 17:36:26 -0700243}
244
245static int crb_map_io(struct acpi_device *device, struct crb_priv *priv,
246 struct acpi_table_tpm2 *buf)
247{
248 struct list_head resources;
Jarkko Sakkinen14ddfbf2016-03-15 21:41:40 +0200249 struct resource io_res;
Jason Gunthorpe1bd047b2016-01-07 17:36:26 -0700250 struct device *dev = &device->dev;
Jarkko Sakkinen422eac32016-04-19 12:54:18 +0300251 u64 cmd_pa;
252 u32 cmd_size;
253 u64 rsp_pa;
254 u32 rsp_size;
Jason Gunthorpe1bd047b2016-01-07 17:36:26 -0700255 int ret;
256
257 INIT_LIST_HEAD(&resources);
258 ret = acpi_dev_get_resources(device, &resources, crb_check_resource,
Jarkko Sakkinen14ddfbf2016-03-15 21:41:40 +0200259 &io_res);
Jason Gunthorpe1bd047b2016-01-07 17:36:26 -0700260 if (ret < 0)
261 return ret;
262 acpi_dev_free_resource_list(&resources);
263
Jarkko Sakkinen14ddfbf2016-03-15 21:41:40 +0200264 if (resource_type(&io_res) != IORESOURCE_MEM) {
Tomas Winkler64fba5302016-09-12 02:03:55 +0300265 dev_err(dev, FW_BUG "TPM2 ACPI table does not define a memory resource\n");
Jason Gunthorpe1bd047b2016-01-07 17:36:26 -0700266 return -EINVAL;
267 }
268
Jarkko Sakkinen14ddfbf2016-03-15 21:41:40 +0200269 priv->iobase = devm_ioremap_resource(dev, &io_res);
Jason Gunthorpe1bd047b2016-01-07 17:36:26 -0700270 if (IS_ERR(priv->iobase))
271 return PTR_ERR(priv->iobase);
272
Jarkko Sakkinen14ddfbf2016-03-15 21:41:40 +0200273 priv->cca = crb_map_res(dev, priv, &io_res, buf->control_address,
Jarkko Sakkinen422eac32016-04-19 12:54:18 +0300274 sizeof(struct crb_control_area));
Jason Gunthorpe1bd047b2016-01-07 17:36:26 -0700275 if (IS_ERR(priv->cca))
276 return PTR_ERR(priv->cca);
277
Jarkko Sakkinencfa18822016-09-27 12:01:43 +0300278 cmd_pa = ((u64) ioread32(&priv->cca->cmd_pa_high) << 32) |
279 (u64) ioread32(&priv->cca->cmd_pa_low);
Jarkko Sakkinen422eac32016-04-19 12:54:18 +0300280 cmd_size = ioread32(&priv->cca->cmd_size);
281 priv->cmd = crb_map_res(dev, priv, &io_res, cmd_pa, cmd_size);
Jarkko Sakkinencfa18822016-09-27 12:01:43 +0300282 if (IS_ERR(priv->cmd))
283 return PTR_ERR(priv->cmd);
Jason Gunthorpe1bd047b2016-01-07 17:36:26 -0700284
Jarkko Sakkinen422eac32016-04-19 12:54:18 +0300285 memcpy_fromio(&rsp_pa, &priv->cca->rsp_pa, 8);
286 rsp_pa = le64_to_cpu(rsp_pa);
287 rsp_size = ioread32(&priv->cca->rsp_size);
288
289 if (cmd_pa != rsp_pa) {
290 priv->rsp = crb_map_res(dev, priv, &io_res, rsp_pa, rsp_size);
Jarkko Sakkinencfa18822016-09-27 12:01:43 +0300291 return PTR_ERR_OR_ZERO(priv->rsp);
Jarkko Sakkinen422eac32016-04-19 12:54:18 +0300292 }
293
294 /* According to the PTP specification, overlapping command and response
295 * buffer sizes must be identical.
296 */
297 if (cmd_size != rsp_size) {
298 dev_err(dev, FW_BUG "overlapping command and response buffer sizes are not identical");
Jarkko Sakkinencfa18822016-09-27 12:01:43 +0300299 return -EINVAL;
Jarkko Sakkinen422eac32016-04-19 12:54:18 +0300300 }
Tomas Winkleraa77ea02016-09-12 13:52:10 +0300301 priv->cmd_size = cmd_size;
Jarkko Sakkinen422eac32016-04-19 12:54:18 +0300302
303 priv->rsp = priv->cmd;
Jarkko Sakkinencfa18822016-09-27 12:01:43 +0300304 return 0;
Jason Gunthorpe1bd047b2016-01-07 17:36:26 -0700305}
306
307static int crb_acpi_add(struct acpi_device *device)
308{
Jason Gunthorpe55a889c2016-01-07 17:36:20 -0700309 struct acpi_table_tpm2 *buf;
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800310 struct crb_priv *priv;
311 struct device *dev = &device->dev;
312 acpi_status status;
313 u32 sm;
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800314 int rc;
315
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800316 status = acpi_get_table(ACPI_SIG_TPM2, 1,
317 (struct acpi_table_header **) &buf);
Jason Gunthorpe55a889c2016-01-07 17:36:20 -0700318 if (ACPI_FAILURE(status) || buf->header.length < sizeof(*buf)) {
319 dev_err(dev, FW_BUG "failed to get TPM2 ACPI table\n");
Jason Gunthorpe1bd047b2016-01-07 17:36:26 -0700320 return -EINVAL;
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800321 }
322
Jarkko Sakkinen399235d2015-09-29 00:32:19 +0300323 /* Should the FIFO driver handle this? */
Jason Gunthorpe55a889c2016-01-07 17:36:20 -0700324 sm = buf->start_method;
325 if (sm == ACPI_TPM2_MEMORY_MAPPED)
Jarkko Sakkinen399235d2015-09-29 00:32:19 +0300326 return -ENODEV;
327
Jason Gunthorpe1bd047b2016-01-07 17:36:26 -0700328 priv = devm_kzalloc(dev, sizeof(struct crb_priv), GFP_KERNEL);
329 if (!priv)
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800330 return -ENOMEM;
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800331
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800332 /* The reason for the extra quirk is that the PTT in 4th Gen Core CPUs
333 * report only ACPI start but in practice seems to require both
334 * ACPI start and CRB start.
335 */
Jason Gunthorpe55a889c2016-01-07 17:36:20 -0700336 if (sm == ACPI_TPM2_COMMAND_BUFFER || sm == ACPI_TPM2_MEMORY_MAPPED ||
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800337 !strcmp(acpi_device_hid(device), "MSFT0101"))
338 priv->flags |= CRB_FL_CRB_START;
339
Jason Gunthorpe55a889c2016-01-07 17:36:20 -0700340 if (sm == ACPI_TPM2_START_METHOD ||
341 sm == ACPI_TPM2_COMMAND_BUFFER_WITH_START_METHOD)
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800342 priv->flags |= CRB_FL_ACPI_START;
343
Jason Gunthorpe1bd047b2016-01-07 17:36:26 -0700344 rc = crb_map_io(device, priv, buf);
Jason Gunthorpe25112042015-11-25 14:05:32 -0700345 if (rc)
346 return rc;
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800347
Jarkko Sakkinencfa18822016-09-27 12:01:43 +0300348 return crb_init(device, priv);
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800349}
350
351static int crb_acpi_remove(struct acpi_device *device)
352{
353 struct device *dev = &device->dev;
354 struct tpm_chip *chip = dev_get_drvdata(dev);
355
Jarkko Sakkinen99cda8c2016-02-18 22:11:29 +0200356 tpm_chip_unregister(chip);
357
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800358 return 0;
359}
360
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800361static struct acpi_device_id crb_device_ids[] = {
362 {"MSFT0101", 0},
363 {"", 0},
364};
365MODULE_DEVICE_TABLE(acpi, crb_device_ids);
366
367static struct acpi_driver crb_acpi_driver = {
368 .name = "tpm_crb",
369 .ids = crb_device_ids,
370 .ops = {
371 .add = crb_acpi_add,
372 .remove = crb_acpi_remove,
373 },
374 .drv = {
375 .pm = &crb_pm,
376 },
377};
378
379module_acpi_driver(crb_acpi_driver);
380MODULE_AUTHOR("Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>");
381MODULE_DESCRIPTION("TPM2 Driver");
382MODULE_VERSION("0.1");
383MODULE_LICENSE("GPL");