blob: 7b3c2a8aa9defc33e4189658e797dbecdb38149f [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>
Winkler, Tomase74f2f72016-10-08 14:59:39 +030022#include <linux/pm_runtime.h>
Jiandi An08eff492017-03-24 04:55:45 -050023#ifdef CONFIG_ARM64
24#include <linux/arm-smccc.h>
25#endif
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -080026#include "tpm.h"
27
28#define ACPI_SIG_TPM2 "TPM2"
29
Andy Shevchenko94116f82017-06-05 19:40:46 +030030static const guid_t crb_acpi_start_guid =
31 GUID_INIT(0x6BBF6CAB, 0x5463, 0x4714,
32 0xB7, 0xCD, 0xF0, 0x20, 0x3C, 0x03, 0x68, 0xD4);
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -080033
34enum crb_defaults {
35 CRB_ACPI_START_REVISION_ID = 1,
36 CRB_ACPI_START_INDEX = 1,
37};
38
Jarkko Sakkinen877c57d2017-03-24 11:45:49 +020039enum crb_loc_ctrl {
40 CRB_LOC_CTRL_REQUEST_ACCESS = BIT(0),
41 CRB_LOC_CTRL_RELINQUISH = BIT(1),
42};
43
44enum crb_loc_state {
45 CRB_LOC_STATE_LOC_ASSIGNED = BIT(1),
46 CRB_LOC_STATE_TPM_REG_VALID_STS = BIT(7),
47};
48
Jarkko Sakkinen7fd10d62016-09-02 22:34:19 +030049enum crb_ctrl_req {
Jarkko Sakkinenf39a9e92016-09-02 22:34:20 +030050 CRB_CTRL_REQ_CMD_READY = BIT(0),
51 CRB_CTRL_REQ_GO_IDLE = BIT(1),
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -080052};
53
Jarkko Sakkinen7fd10d62016-09-02 22:34:19 +030054enum crb_ctrl_sts {
55 CRB_CTRL_STS_ERROR = BIT(0),
56 CRB_CTRL_STS_TPM_IDLE = BIT(1),
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -080057};
58
59enum crb_start {
60 CRB_START_INVOKE = BIT(0),
61};
62
63enum crb_cancel {
64 CRB_CANCEL_INVOKE = BIT(0),
65};
66
Jarkko Sakkinen13b1f4a2017-02-08 13:11:35 +020067struct crb_regs_head {
68 u32 loc_state;
69 u32 reserved1;
70 u32 loc_ctrl;
71 u32 loc_sts;
72 u8 reserved2[32];
73 u64 intf_id;
74 u64 ctrl_ext;
75} __packed;
76
77struct crb_regs_tail {
78 u32 ctrl_req;
79 u32 ctrl_sts;
80 u32 ctrl_cancel;
81 u32 ctrl_start;
82 u32 ctrl_int_enable;
83 u32 ctrl_int_sts;
84 u32 ctrl_cmd_size;
85 u32 ctrl_cmd_pa_low;
86 u32 ctrl_cmd_pa_high;
87 u32 ctrl_rsp_size;
88 u64 ctrl_rsp_pa;
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -080089} __packed;
90
91enum crb_status {
Jarkko Sakkinen7fd10d62016-09-02 22:34:19 +030092 CRB_DRV_STS_COMPLETE = BIT(0),
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -080093};
94
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -080095struct crb_priv {
Jiandi Anf5357412017-08-25 18:28:55 -050096 u32 sm;
97 const char *hid;
Jason Gunthorpe1bd047b2016-01-07 17:36:26 -070098 void __iomem *iobase;
Jarkko Sakkinen13b1f4a2017-02-08 13:11:35 +020099 struct crb_regs_head __iomem *regs_h;
100 struct crb_regs_tail __iomem *regs_t;
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800101 u8 __iomem *cmd;
102 u8 __iomem *rsp;
Tomas Winkleraa77ea02016-09-12 13:52:10 +0300103 u32 cmd_size;
Jiandi An08eff492017-03-24 04:55:45 -0500104 u32 smc_func_id;
105};
106
107struct tpm2_crb_smc {
108 u32 interrupt;
109 u8 interrupt_flags;
110 u8 op_flags;
111 u16 reserved2;
112 u32 smc_func_id;
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800113};
114
Winkler, Tomasba5287b2016-09-15 10:27:38 +0300115/**
116 * crb_go_idle - request tpm crb device to go the idle state
117 *
118 * @dev: crb device
119 * @priv: crb private data
120 *
121 * Write CRB_CTRL_REQ_GO_IDLE to TPM_CRB_CTRL_REQ
122 * The device should respond within TIMEOUT_C by clearing the bit.
123 * Anyhow, we do not wait here as a consequent CMD_READY request
124 * will be handled correctly even if idle was not completed.
125 *
Jiandi Anf5357412017-08-25 18:28:55 -0500126 * The function does nothing for devices with ACPI-start method
127 * or SMC-start method.
Winkler, Tomasba5287b2016-09-15 10:27:38 +0300128 *
129 * Return: 0 always
130 */
131static int __maybe_unused crb_go_idle(struct device *dev, struct crb_priv *priv)
132{
Jiandi Anf5357412017-08-25 18:28:55 -0500133 if ((priv->sm == ACPI_TPM2_START_METHOD) ||
134 (priv->sm == ACPI_TPM2_COMMAND_BUFFER_WITH_START_METHOD) ||
135 (priv->sm == ACPI_TPM2_COMMAND_BUFFER_WITH_ARM_SMC))
Winkler, Tomasba5287b2016-09-15 10:27:38 +0300136 return 0;
137
Jarkko Sakkinen13b1f4a2017-02-08 13:11:35 +0200138 iowrite32(CRB_CTRL_REQ_GO_IDLE, &priv->regs_t->ctrl_req);
Winkler, Tomasba5287b2016-09-15 10:27:38 +0300139 /* we don't really care when this settles */
140
141 return 0;
142}
143
Jarkko Sakkinen38eb24e2017-02-08 13:11:36 +0200144static bool crb_wait_for_reg_32(u32 __iomem *reg, u32 mask, u32 value,
145 unsigned long timeout)
146{
147 ktime_t start;
148 ktime_t stop;
149
150 start = ktime_get();
151 stop = ktime_add(start, ms_to_ktime(timeout));
152
153 do {
154 if ((ioread32(reg) & mask) == value)
155 return true;
156
157 usleep_range(50, 100);
158 } while (ktime_before(ktime_get(), stop));
159
160 return false;
161}
162
Winkler, Tomasba5287b2016-09-15 10:27:38 +0300163/**
164 * crb_cmd_ready - request tpm crb device to enter ready state
165 *
166 * @dev: crb device
167 * @priv: crb private data
168 *
169 * Write CRB_CTRL_REQ_CMD_READY to TPM_CRB_CTRL_REQ
170 * and poll till the device acknowledge it by clearing the bit.
171 * The device should respond within TIMEOUT_C.
172 *
173 * The function does nothing for devices with ACPI-start method
Jiandi Anf5357412017-08-25 18:28:55 -0500174 * or SMC-start method.
Winkler, Tomasba5287b2016-09-15 10:27:38 +0300175 *
176 * Return: 0 on success -ETIME on timeout;
177 */
178static int __maybe_unused crb_cmd_ready(struct device *dev,
179 struct crb_priv *priv)
180{
Jiandi Anf5357412017-08-25 18:28:55 -0500181 if ((priv->sm == ACPI_TPM2_START_METHOD) ||
182 (priv->sm == ACPI_TPM2_COMMAND_BUFFER_WITH_START_METHOD) ||
183 (priv->sm == ACPI_TPM2_COMMAND_BUFFER_WITH_ARM_SMC))
Winkler, Tomasba5287b2016-09-15 10:27:38 +0300184 return 0;
185
Jarkko Sakkinen13b1f4a2017-02-08 13:11:35 +0200186 iowrite32(CRB_CTRL_REQ_CMD_READY, &priv->regs_t->ctrl_req);
Jarkko Sakkinen38eb24e2017-02-08 13:11:36 +0200187 if (!crb_wait_for_reg_32(&priv->regs_t->ctrl_req,
188 CRB_CTRL_REQ_CMD_READY /* mask */,
189 0, /* value */
190 TPM2_TIMEOUT_C)) {
Winkler, Tomasba5287b2016-09-15 10:27:38 +0300191 dev_warn(dev, "cmdReady timed out\n");
192 return -ETIME;
193 }
194
195 return 0;
196}
197
Jarkko Sakkinen877c57d2017-03-24 11:45:49 +0200198static int crb_request_locality(struct tpm_chip *chip, int loc)
199{
200 struct crb_priv *priv = dev_get_drvdata(&chip->dev);
201 u32 value = CRB_LOC_STATE_LOC_ASSIGNED |
202 CRB_LOC_STATE_TPM_REG_VALID_STS;
203
204 if (!priv->regs_h)
205 return 0;
206
207 iowrite32(CRB_LOC_CTRL_REQUEST_ACCESS, &priv->regs_h->loc_ctrl);
208 if (!crb_wait_for_reg_32(&priv->regs_h->loc_state, value, value,
209 TPM2_TIMEOUT_C)) {
210 dev_warn(&chip->dev, "TPM_LOC_STATE_x.requestAccess timed out\n");
211 return -ETIME;
212 }
213
214 return 0;
215}
216
217static void crb_relinquish_locality(struct tpm_chip *chip, int loc)
218{
219 struct crb_priv *priv = dev_get_drvdata(&chip->dev);
220
221 if (!priv->regs_h)
222 return;
223
224 iowrite32(CRB_LOC_CTRL_RELINQUISH, &priv->regs_h->loc_ctrl);
225}
226
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800227static u8 crb_status(struct tpm_chip *chip)
228{
Christophe Ricard9e0d39d2016-03-31 22:57:00 +0200229 struct crb_priv *priv = dev_get_drvdata(&chip->dev);
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800230 u8 sts = 0;
231
Jarkko Sakkinen13b1f4a2017-02-08 13:11:35 +0200232 if ((ioread32(&priv->regs_t->ctrl_start) & CRB_START_INVOKE) !=
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800233 CRB_START_INVOKE)
Jarkko Sakkinen7fd10d62016-09-02 22:34:19 +0300234 sts |= CRB_DRV_STS_COMPLETE;
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800235
236 return sts;
237}
238
239static int crb_recv(struct tpm_chip *chip, u8 *buf, size_t count)
240{
Christophe Ricard9e0d39d2016-03-31 22:57:00 +0200241 struct crb_priv *priv = dev_get_drvdata(&chip->dev);
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800242 unsigned int expected;
243
244 /* sanity check */
245 if (count < 6)
246 return -EIO;
247
Jarkko Sakkinen13b1f4a2017-02-08 13:11:35 +0200248 if (ioread32(&priv->regs_t->ctrl_sts) & CRB_CTRL_STS_ERROR)
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800249 return -EIO;
250
251 memcpy_fromio(buf, priv->rsp, 6);
252 expected = be32_to_cpup((__be32 *) &buf[2]);
Jerry Snitselaar8569def2017-03-10 17:46:04 -0700253 if (expected > count || expected < 6)
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800254 return -EIO;
255
256 memcpy_fromio(&buf[6], &priv->rsp[6], expected - 6);
257
258 return expected;
259}
260
261static int crb_do_acpi_start(struct tpm_chip *chip)
262{
263 union acpi_object *obj;
264 int rc;
265
266 obj = acpi_evaluate_dsm(chip->acpi_dev_handle,
Andy Shevchenko94116f82017-06-05 19:40:46 +0300267 &crb_acpi_start_guid,
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800268 CRB_ACPI_START_REVISION_ID,
269 CRB_ACPI_START_INDEX,
270 NULL);
271 if (!obj)
272 return -ENXIO;
273 rc = obj->integer.value == 0 ? 0 : -ENXIO;
274 ACPI_FREE(obj);
275 return rc;
276}
277
Jiandi An08eff492017-03-24 04:55:45 -0500278#ifdef CONFIG_ARM64
279/*
280 * This is a TPM Command Response Buffer start method that invokes a
281 * Secure Monitor Call to requrest the firmware to execute or cancel
282 * a TPM 2.0 command.
283 */
284static int tpm_crb_smc_start(struct device *dev, unsigned long func_id)
285{
286 struct arm_smccc_res res;
287
288 arm_smccc_smc(func_id, 0, 0, 0, 0, 0, 0, 0, &res);
289 if (res.a0 != 0) {
290 dev_err(dev,
291 FW_BUG "tpm_crb_smc_start() returns res.a0 = 0x%lx\n",
292 res.a0);
293 return -EIO;
294 }
295
296 return 0;
297}
298#else
299static int tpm_crb_smc_start(struct device *dev, unsigned long func_id)
300{
301 dev_err(dev, FW_BUG "tpm_crb: incorrect start method\n");
302 return -EINVAL;
303}
304#endif
305
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800306static int crb_send(struct tpm_chip *chip, u8 *buf, size_t len)
307{
Christophe Ricard9e0d39d2016-03-31 22:57:00 +0200308 struct crb_priv *priv = dev_get_drvdata(&chip->dev);
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800309 int rc = 0;
310
Jarkko Sakkinen72fd50e2016-09-02 22:34:17 +0300311 /* Zero the cancel register so that the next command will not get
312 * canceled.
313 */
Jarkko Sakkinen13b1f4a2017-02-08 13:11:35 +0200314 iowrite32(0, &priv->regs_t->ctrl_cancel);
Jarkko Sakkinen72fd50e2016-09-02 22:34:17 +0300315
Tomas Winkleraa77ea02016-09-12 13:52:10 +0300316 if (len > priv->cmd_size) {
317 dev_err(&chip->dev, "invalid command count value %zd %d\n",
318 len, priv->cmd_size);
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800319 return -E2BIG;
320 }
321
322 memcpy_toio(priv->cmd, buf, len);
323
324 /* Make sure that cmd is populated before issuing start. */
325 wmb();
326
Jiandi Anf5357412017-08-25 18:28:55 -0500327 /* The reason for the extra quirk is that the PTT in 4th Gen Core CPUs
328 * report only ACPI start but in practice seems to require both
329 * CRB start, hence invoking CRB start method if hid == MSFT0101.
330 */
331 if ((priv->sm == ACPI_TPM2_COMMAND_BUFFER) ||
332 (priv->sm == ACPI_TPM2_MEMORY_MAPPED) ||
333 (!strcmp(priv->hid, "MSFT0101")))
Jarkko Sakkinen13b1f4a2017-02-08 13:11:35 +0200334 iowrite32(CRB_START_INVOKE, &priv->regs_t->ctrl_start);
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800335
Jiandi Anf5357412017-08-25 18:28:55 -0500336 if ((priv->sm == ACPI_TPM2_START_METHOD) ||
337 (priv->sm == ACPI_TPM2_COMMAND_BUFFER_WITH_START_METHOD))
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800338 rc = crb_do_acpi_start(chip);
339
Jiandi Anf5357412017-08-25 18:28:55 -0500340 if (priv->sm == ACPI_TPM2_COMMAND_BUFFER_WITH_ARM_SMC) {
Jiandi An08eff492017-03-24 04:55:45 -0500341 iowrite32(CRB_START_INVOKE, &priv->regs_t->ctrl_start);
342 rc = tpm_crb_smc_start(&chip->dev, priv->smc_func_id);
343 }
344
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800345 return rc;
346}
347
348static void crb_cancel(struct tpm_chip *chip)
349{
Christophe Ricard9e0d39d2016-03-31 22:57:00 +0200350 struct crb_priv *priv = dev_get_drvdata(&chip->dev);
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800351
Jarkko Sakkinen13b1f4a2017-02-08 13:11:35 +0200352 iowrite32(CRB_CANCEL_INVOKE, &priv->regs_t->ctrl_cancel);
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800353
Jiandi Anf5357412017-08-25 18:28:55 -0500354 if (((priv->sm == ACPI_TPM2_START_METHOD) ||
355 (priv->sm == ACPI_TPM2_COMMAND_BUFFER_WITH_START_METHOD)) &&
356 crb_do_acpi_start(chip))
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800357 dev_err(&chip->dev, "ACPI Start failed\n");
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800358}
359
360static bool crb_req_canceled(struct tpm_chip *chip, u8 status)
361{
Christophe Ricard9e0d39d2016-03-31 22:57:00 +0200362 struct crb_priv *priv = dev_get_drvdata(&chip->dev);
Jarkko Sakkinen13b1f4a2017-02-08 13:11:35 +0200363 u32 cancel = ioread32(&priv->regs_t->ctrl_cancel);
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800364
365 return (cancel & CRB_CANCEL_INVOKE) == CRB_CANCEL_INVOKE;
366}
367
368static const struct tpm_class_ops tpm_crb = {
Jason Gunthorpecae8b442016-07-12 11:41:49 -0600369 .flags = TPM_OPS_AUTO_STARTUP,
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800370 .status = crb_status,
371 .recv = crb_recv,
372 .send = crb_send,
373 .cancel = crb_cancel,
374 .req_canceled = crb_req_canceled,
Jarkko Sakkinen877c57d2017-03-24 11:45:49 +0200375 .request_locality = crb_request_locality,
376 .relinquish_locality = crb_relinquish_locality,
Jarkko Sakkinen7fd10d62016-09-02 22:34:19 +0300377 .req_complete_mask = CRB_DRV_STS_COMPLETE,
378 .req_complete_val = CRB_DRV_STS_COMPLETE,
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800379};
380
Jason Gunthorpe1bd047b2016-01-07 17:36:26 -0700381static int crb_check_resource(struct acpi_resource *ares, void *data)
382{
Jarkko Sakkinen14ddfbf2016-03-15 21:41:40 +0200383 struct resource *io_res = data;
Jiandi An19b7bf52016-12-18 22:20:53 -0600384 struct resource_win win;
385 struct resource *res = &(win.res);
Jason Gunthorpe1bd047b2016-01-07 17:36:26 -0700386
Jiandi An19b7bf52016-12-18 22:20:53 -0600387 if (acpi_dev_resource_memory(ares, res) ||
388 acpi_dev_resource_address_space(ares, &win)) {
389 *io_res = *res;
Jarkko Sakkinen14ddfbf2016-03-15 21:41:40 +0200390 io_res->name = NULL;
Jarkko Sakkinen30f9c8c2016-02-17 02:10:52 +0200391 }
Jason Gunthorpe1bd047b2016-01-07 17:36:26 -0700392
393 return 1;
394}
395
396static void __iomem *crb_map_res(struct device *dev, struct crb_priv *priv,
Jarkko Sakkinen14ddfbf2016-03-15 21:41:40 +0200397 struct resource *io_res, u64 start, u32 size)
Jason Gunthorpe1bd047b2016-01-07 17:36:26 -0700398{
399 struct resource new_res = {
400 .start = start,
401 .end = start + size - 1,
402 .flags = IORESOURCE_MEM,
403 };
404
405 /* Detect a 64 bit address on a 32 bit system */
406 if (start != new_res.start)
Jarkko Sakkinenf786b752016-06-17 16:39:29 +0200407 return (void __iomem *) ERR_PTR(-EINVAL);
Jason Gunthorpe1bd047b2016-01-07 17:36:26 -0700408
Jarkko Sakkinen14ddfbf2016-03-15 21:41:40 +0200409 if (!resource_contains(io_res, &new_res))
Jason Gunthorpe1bd047b2016-01-07 17:36:26 -0700410 return devm_ioremap_resource(dev, &new_res);
411
Jarkko Sakkinen14ddfbf2016-03-15 21:41:40 +0200412 return priv->iobase + (new_res.start - io_res->start);
Jason Gunthorpe1bd047b2016-01-07 17:36:26 -0700413}
414
Jason Gunthorpeb4e2eb02017-02-21 14:14:24 -0700415/*
416 * Work around broken BIOSs that return inconsistent values from the ACPI
417 * region vs the registers. Trust the ACPI region. Such broken systems
418 * probably cannot send large TPM commands since the buffer will be truncated.
419 */
420static u64 crb_fixup_cmd_size(struct device *dev, struct resource *io_res,
421 u64 start, u64 size)
422{
423 if (io_res->start > start || io_res->end < start)
424 return size;
425
426 if (start + size - 1 <= io_res->end)
427 return size;
428
429 dev_err(dev,
430 FW_BUG "ACPI region does not cover the entire command/response buffer. %pr vs %llx %llx\n",
431 io_res, start, size);
432
433 return io_res->end - start + 1;
434}
435
Jason Gunthorpe1bd047b2016-01-07 17:36:26 -0700436static int crb_map_io(struct acpi_device *device, struct crb_priv *priv,
437 struct acpi_table_tpm2 *buf)
438{
439 struct list_head resources;
Jarkko Sakkinen14ddfbf2016-03-15 21:41:40 +0200440 struct resource io_res;
Jason Gunthorpe1bd047b2016-01-07 17:36:26 -0700441 struct device *dev = &device->dev;
Winkler, Tomasbc33c5d2016-09-12 16:04:19 +0300442 u32 pa_high, pa_low;
Jarkko Sakkinen422eac32016-04-19 12:54:18 +0300443 u64 cmd_pa;
444 u32 cmd_size;
445 u64 rsp_pa;
446 u32 rsp_size;
Jason Gunthorpe1bd047b2016-01-07 17:36:26 -0700447 int ret;
448
449 INIT_LIST_HEAD(&resources);
450 ret = acpi_dev_get_resources(device, &resources, crb_check_resource,
Jarkko Sakkinen14ddfbf2016-03-15 21:41:40 +0200451 &io_res);
Jason Gunthorpe1bd047b2016-01-07 17:36:26 -0700452 if (ret < 0)
453 return ret;
454 acpi_dev_free_resource_list(&resources);
455
Jarkko Sakkinen14ddfbf2016-03-15 21:41:40 +0200456 if (resource_type(&io_res) != IORESOURCE_MEM) {
Tomas Winkler64fba5302016-09-12 02:03:55 +0300457 dev_err(dev, FW_BUG "TPM2 ACPI table does not define a memory resource\n");
Jason Gunthorpe1bd047b2016-01-07 17:36:26 -0700458 return -EINVAL;
459 }
460
Jarkko Sakkinen14ddfbf2016-03-15 21:41:40 +0200461 priv->iobase = devm_ioremap_resource(dev, &io_res);
Jason Gunthorpe1bd047b2016-01-07 17:36:26 -0700462 if (IS_ERR(priv->iobase))
463 return PTR_ERR(priv->iobase);
464
Jarkko Sakkinen13b1f4a2017-02-08 13:11:35 +0200465 /* The ACPI IO region starts at the head area and continues to include
466 * the control area, as one nice sane region except for some older
467 * stuff that puts the control area outside the ACPI IO region.
468 */
Jiandi Anf5357412017-08-25 18:28:55 -0500469 if ((priv->sm == ACPI_TPM2_COMMAND_BUFFER) ||
470 (priv->sm == ACPI_TPM2_MEMORY_MAPPED)) {
Jarkko Sakkinen13b1f4a2017-02-08 13:11:35 +0200471 if (buf->control_address == io_res.start +
472 sizeof(*priv->regs_h))
473 priv->regs_h = priv->iobase;
474 else
475 dev_warn(dev, FW_BUG "Bad ACPI memory layout");
476 }
477
478 priv->regs_t = crb_map_res(dev, priv, &io_res, buf->control_address,
479 sizeof(struct crb_regs_tail));
480 if (IS_ERR(priv->regs_t))
481 return PTR_ERR(priv->regs_t);
Jason Gunthorpe1bd047b2016-01-07 17:36:26 -0700482
Winkler, Tomasbc33c5d2016-09-12 16:04:19 +0300483 /*
484 * PTT HW bug w/a: wake up the device to access
485 * possibly not retained registers.
486 */
487 ret = crb_cmd_ready(dev, priv);
488 if (ret)
489 return ret;
490
Jarkko Sakkinen13b1f4a2017-02-08 13:11:35 +0200491 pa_high = ioread32(&priv->regs_t->ctrl_cmd_pa_high);
492 pa_low = ioread32(&priv->regs_t->ctrl_cmd_pa_low);
Winkler, Tomasbc33c5d2016-09-12 16:04:19 +0300493 cmd_pa = ((u64)pa_high << 32) | pa_low;
Jason Gunthorpeb4e2eb02017-02-21 14:14:24 -0700494 cmd_size = crb_fixup_cmd_size(dev, &io_res, cmd_pa,
Jarkko Sakkinen13b1f4a2017-02-08 13:11:35 +0200495 ioread32(&priv->regs_t->ctrl_cmd_size));
Winkler, Tomasbc33c5d2016-09-12 16:04:19 +0300496
497 dev_dbg(dev, "cmd_hi = %X cmd_low = %X cmd_size %X\n",
498 pa_high, pa_low, cmd_size);
499
Jarkko Sakkinen422eac32016-04-19 12:54:18 +0300500 priv->cmd = crb_map_res(dev, priv, &io_res, cmd_pa, cmd_size);
Winkler, Tomasbc33c5d2016-09-12 16:04:19 +0300501 if (IS_ERR(priv->cmd)) {
502 ret = PTR_ERR(priv->cmd);
503 goto out;
504 }
Jason Gunthorpe1bd047b2016-01-07 17:36:26 -0700505
Jarkko Sakkinen13b1f4a2017-02-08 13:11:35 +0200506 memcpy_fromio(&rsp_pa, &priv->regs_t->ctrl_rsp_pa, 8);
Jarkko Sakkinen422eac32016-04-19 12:54:18 +0300507 rsp_pa = le64_to_cpu(rsp_pa);
Jason Gunthorpeb4e2eb02017-02-21 14:14:24 -0700508 rsp_size = crb_fixup_cmd_size(dev, &io_res, rsp_pa,
Jarkko Sakkinen13b1f4a2017-02-08 13:11:35 +0200509 ioread32(&priv->regs_t->ctrl_rsp_size));
Jarkko Sakkinen422eac32016-04-19 12:54:18 +0300510
511 if (cmd_pa != rsp_pa) {
512 priv->rsp = crb_map_res(dev, priv, &io_res, rsp_pa, rsp_size);
Winkler, Tomasbc33c5d2016-09-12 16:04:19 +0300513 ret = PTR_ERR_OR_ZERO(priv->rsp);
514 goto out;
Jarkko Sakkinen422eac32016-04-19 12:54:18 +0300515 }
516
517 /* According to the PTP specification, overlapping command and response
518 * buffer sizes must be identical.
519 */
520 if (cmd_size != rsp_size) {
521 dev_err(dev, FW_BUG "overlapping command and response buffer sizes are not identical");
Winkler, Tomasbc33c5d2016-09-12 16:04:19 +0300522 ret = -EINVAL;
523 goto out;
Jarkko Sakkinen422eac32016-04-19 12:54:18 +0300524 }
Winkler, Tomasbc33c5d2016-09-12 16:04:19 +0300525
Jarkko Sakkinen422eac32016-04-19 12:54:18 +0300526 priv->rsp = priv->cmd;
Winkler, Tomasbc33c5d2016-09-12 16:04:19 +0300527
528out:
Manuel Laussf1284802017-06-19 08:27:17 +0200529 if (!ret)
530 priv->cmd_size = cmd_size;
531
Winkler, Tomasbc33c5d2016-09-12 16:04:19 +0300532 crb_go_idle(dev, priv);
533
534 return ret;
Jason Gunthorpe1bd047b2016-01-07 17:36:26 -0700535}
536
537static int crb_acpi_add(struct acpi_device *device)
538{
Jason Gunthorpe55a889c2016-01-07 17:36:20 -0700539 struct acpi_table_tpm2 *buf;
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800540 struct crb_priv *priv;
Winkler, Tomasc58bd34c2016-09-12 16:04:20 +0300541 struct tpm_chip *chip;
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800542 struct device *dev = &device->dev;
Jiandi An08eff492017-03-24 04:55:45 -0500543 struct tpm2_crb_smc *crb_smc;
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800544 acpi_status status;
545 u32 sm;
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800546 int rc;
547
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800548 status = acpi_get_table(ACPI_SIG_TPM2, 1,
549 (struct acpi_table_header **) &buf);
Jason Gunthorpe55a889c2016-01-07 17:36:20 -0700550 if (ACPI_FAILURE(status) || buf->header.length < sizeof(*buf)) {
551 dev_err(dev, FW_BUG "failed to get TPM2 ACPI table\n");
Jason Gunthorpe1bd047b2016-01-07 17:36:26 -0700552 return -EINVAL;
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800553 }
554
Jarkko Sakkinen399235d2015-09-29 00:32:19 +0300555 /* Should the FIFO driver handle this? */
Jason Gunthorpe55a889c2016-01-07 17:36:20 -0700556 sm = buf->start_method;
557 if (sm == ACPI_TPM2_MEMORY_MAPPED)
Jarkko Sakkinen399235d2015-09-29 00:32:19 +0300558 return -ENODEV;
559
Jason Gunthorpe1bd047b2016-01-07 17:36:26 -0700560 priv = devm_kzalloc(dev, sizeof(struct crb_priv), GFP_KERNEL);
561 if (!priv)
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800562 return -ENOMEM;
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800563
Bob Moorebff7f902017-06-05 16:39:00 +0800564 if (sm == ACPI_TPM2_COMMAND_BUFFER_WITH_ARM_SMC) {
Jiandi An08eff492017-03-24 04:55:45 -0500565 if (buf->header.length < (sizeof(*buf) + sizeof(*crb_smc))) {
566 dev_err(dev,
567 FW_BUG "TPM2 ACPI table has wrong size %u for start method type %d\n",
568 buf->header.length,
Bob Moorebff7f902017-06-05 16:39:00 +0800569 ACPI_TPM2_COMMAND_BUFFER_WITH_ARM_SMC);
Jiandi An08eff492017-03-24 04:55:45 -0500570 return -EINVAL;
571 }
Jarkko Sakkinen3b395d62017-04-05 14:07:24 +0300572 crb_smc = ACPI_ADD_PTR(struct tpm2_crb_smc, buf, sizeof(*buf));
Jiandi An08eff492017-03-24 04:55:45 -0500573 priv->smc_func_id = crb_smc->smc_func_id;
Jiandi An08eff492017-03-24 04:55:45 -0500574 }
575
Jiandi Anf5357412017-08-25 18:28:55 -0500576 priv->sm = sm;
577 priv->hid = acpi_device_hid(device);
578
Jason Gunthorpe1bd047b2016-01-07 17:36:26 -0700579 rc = crb_map_io(device, priv, buf);
Jason Gunthorpe25112042015-11-25 14:05:32 -0700580 if (rc)
581 return rc;
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800582
Winkler, Tomasc58bd34c2016-09-12 16:04:20 +0300583 chip = tpmm_chip_alloc(dev, &tpm_crb);
584 if (IS_ERR(chip))
585 return PTR_ERR(chip);
586
587 dev_set_drvdata(&chip->dev, priv);
588 chip->acpi_dev_handle = device->handle;
589 chip->flags = TPM_CHIP_FLAG_TPM2;
590
Winkler, Tomasbc33c5d2016-09-12 16:04:19 +0300591 rc = crb_cmd_ready(dev, priv);
592 if (rc)
593 return rc;
594
Winkler, Tomase74f2f72016-10-08 14:59:39 +0300595 pm_runtime_get_noresume(dev);
596 pm_runtime_set_active(dev);
597 pm_runtime_enable(dev);
Winkler, Tomasbc33c5d2016-09-12 16:04:19 +0300598
Winkler, Tomase74f2f72016-10-08 14:59:39 +0300599 rc = tpm_chip_register(chip);
600 if (rc) {
601 crb_go_idle(dev, priv);
602 pm_runtime_put_noidle(dev);
603 pm_runtime_disable(dev);
604 return rc;
605 }
606
607 pm_runtime_put(dev);
608
609 return 0;
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800610}
611
612static int crb_acpi_remove(struct acpi_device *device)
613{
614 struct device *dev = &device->dev;
615 struct tpm_chip *chip = dev_get_drvdata(dev);
616
Jarkko Sakkinen99cda8c2016-02-18 22:11:29 +0200617 tpm_chip_unregister(chip);
618
Winkler, Tomase74f2f72016-10-08 14:59:39 +0300619 pm_runtime_disable(dev);
620
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800621 return 0;
622}
623
Jérémy Lefaure67c2f3d2017-03-16 21:51:33 -0400624static int __maybe_unused crb_pm_runtime_suspend(struct device *dev)
Winkler, Tomase74f2f72016-10-08 14:59:39 +0300625{
626 struct tpm_chip *chip = dev_get_drvdata(dev);
627 struct crb_priv *priv = dev_get_drvdata(&chip->dev);
628
629 return crb_go_idle(dev, priv);
630}
631
Jérémy Lefaure67c2f3d2017-03-16 21:51:33 -0400632static int __maybe_unused crb_pm_runtime_resume(struct device *dev)
Winkler, Tomase74f2f72016-10-08 14:59:39 +0300633{
634 struct tpm_chip *chip = dev_get_drvdata(dev);
635 struct crb_priv *priv = dev_get_drvdata(&chip->dev);
636
637 return crb_cmd_ready(dev, priv);
638}
Winkler, Tomas095fc302017-03-06 01:53:35 +0200639
Jérémy Lefaure67c2f3d2017-03-16 21:51:33 -0400640static int __maybe_unused crb_pm_suspend(struct device *dev)
Winkler, Tomas095fc302017-03-06 01:53:35 +0200641{
642 int ret;
643
644 ret = tpm_pm_suspend(dev);
645 if (ret)
646 return ret;
647
648 return crb_pm_runtime_suspend(dev);
649}
650
Jérémy Lefaure67c2f3d2017-03-16 21:51:33 -0400651static int __maybe_unused crb_pm_resume(struct device *dev)
Winkler, Tomas095fc302017-03-06 01:53:35 +0200652{
653 int ret;
654
655 ret = crb_pm_runtime_resume(dev);
656 if (ret)
657 return ret;
658
659 return tpm_pm_resume(dev);
660}
661
Winkler, Tomase74f2f72016-10-08 14:59:39 +0300662static const struct dev_pm_ops crb_pm = {
Winkler, Tomas095fc302017-03-06 01:53:35 +0200663 SET_SYSTEM_SLEEP_PM_OPS(crb_pm_suspend, crb_pm_resume)
Winkler, Tomase74f2f72016-10-08 14:59:39 +0300664 SET_RUNTIME_PM_OPS(crb_pm_runtime_suspend, crb_pm_runtime_resume, NULL)
665};
666
Arvind Yadave1ec6502017-07-06 23:18:39 +0530667static const struct acpi_device_id crb_device_ids[] = {
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800668 {"MSFT0101", 0},
669 {"", 0},
670};
671MODULE_DEVICE_TABLE(acpi, crb_device_ids);
672
673static struct acpi_driver crb_acpi_driver = {
674 .name = "tpm_crb",
675 .ids = crb_device_ids,
676 .ops = {
677 .add = crb_acpi_add,
678 .remove = crb_acpi_remove,
679 },
680 .drv = {
681 .pm = &crb_pm,
682 },
683};
684
685module_acpi_driver(crb_acpi_driver);
686MODULE_AUTHOR("Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>");
687MODULE_DESCRIPTION("TPM2 Driver");
688MODULE_VERSION("0.1");
689MODULE_LICENSE("GPL");