2 * Copyright (C) 2014 Intel Corporation
5 * Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
7 * Maintained by: <tpmdd-devel@lists.sourceforge.net>
9 * This device driver implements the TPM interface as defined in
10 * the TCG CRB 2.0 TPM specification.
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
18 #include <linux/acpi.h>
19 #include <linux/highmem.h>
20 #include <linux/rculist.h>
21 #include <linux/module.h>
22 #include <linux/pm_runtime.h>
25 #define ACPI_SIG_TPM2 "TPM2"
27 static const u8 CRB_ACPI_START_UUID
[] = {
28 /* 0000 */ 0xAB, 0x6C, 0xBF, 0x6B, 0x63, 0x54, 0x14, 0x47,
29 /* 0008 */ 0xB7, 0xCD, 0xF0, 0x20, 0x3C, 0x03, 0x68, 0xD4
33 CRB_ACPI_START_REVISION_ID
= 1,
34 CRB_ACPI_START_INDEX
= 1,
38 CRB_CTRL_REQ_CMD_READY
= BIT(0),
39 CRB_CTRL_REQ_GO_IDLE
= BIT(1),
43 CRB_CTRL_STS_ERROR
= BIT(0),
44 CRB_CTRL_STS_TPM_IDLE
= BIT(1),
48 CRB_START_INVOKE
= BIT(0),
52 CRB_CANCEL_INVOKE
= BIT(0),
55 struct crb_control_area
{
70 CRB_DRV_STS_COMPLETE
= BIT(0),
74 CRB_FL_ACPI_START
= BIT(0),
75 CRB_FL_CRB_START
= BIT(1),
81 struct crb_control_area __iomem
*cca
;
88 * crb_go_idle - request tpm crb device to go the idle state
91 * @priv: crb private data
93 * Write CRB_CTRL_REQ_GO_IDLE to TPM_CRB_CTRL_REQ
94 * The device should respond within TIMEOUT_C by clearing the bit.
95 * Anyhow, we do not wait here as a consequent CMD_READY request
96 * will be handled correctly even if idle was not completed.
98 * The function does nothing for devices with ACPI-start method.
102 static int __maybe_unused
crb_go_idle(struct device
*dev
, struct crb_priv
*priv
)
104 if (priv
->flags
& CRB_FL_ACPI_START
)
107 iowrite32(CRB_CTRL_REQ_GO_IDLE
, &priv
->cca
->req
);
108 /* we don't really care when this settles */
114 * crb_cmd_ready - request tpm crb device to enter ready state
117 * @priv: crb private data
119 * Write CRB_CTRL_REQ_CMD_READY to TPM_CRB_CTRL_REQ
120 * and poll till the device acknowledge it by clearing the bit.
121 * The device should respond within TIMEOUT_C.
123 * The function does nothing for devices with ACPI-start method
125 * Return: 0 on success -ETIME on timeout;
127 static int __maybe_unused
crb_cmd_ready(struct device
*dev
,
128 struct crb_priv
*priv
)
132 if (priv
->flags
& CRB_FL_ACPI_START
)
135 iowrite32(CRB_CTRL_REQ_CMD_READY
, &priv
->cca
->req
);
138 stop
= ktime_add(start
, ms_to_ktime(TPM2_TIMEOUT_C
));
140 if (!(ioread32(&priv
->cca
->req
) & CRB_CTRL_REQ_CMD_READY
))
142 usleep_range(50, 100);
143 } while (ktime_before(ktime_get(), stop
));
145 if (ioread32(&priv
->cca
->req
) & CRB_CTRL_REQ_CMD_READY
) {
146 dev_warn(dev
, "cmdReady timed out\n");
153 static u8
crb_status(struct tpm_chip
*chip
)
155 struct crb_priv
*priv
= dev_get_drvdata(&chip
->dev
);
158 if ((ioread32(&priv
->cca
->start
) & CRB_START_INVOKE
) !=
160 sts
|= CRB_DRV_STS_COMPLETE
;
165 static int crb_recv(struct tpm_chip
*chip
, u8
*buf
, size_t count
)
167 struct crb_priv
*priv
= dev_get_drvdata(&chip
->dev
);
168 unsigned int expected
;
174 if (ioread32(&priv
->cca
->sts
) & CRB_CTRL_STS_ERROR
)
177 memcpy_fromio(buf
, priv
->rsp
, 6);
178 expected
= be32_to_cpup((__be32
*) &buf
[2]);
180 if (expected
> count
)
183 memcpy_fromio(&buf
[6], &priv
->rsp
[6], expected
- 6);
188 static int crb_do_acpi_start(struct tpm_chip
*chip
)
190 union acpi_object
*obj
;
193 obj
= acpi_evaluate_dsm(chip
->acpi_dev_handle
,
195 CRB_ACPI_START_REVISION_ID
,
196 CRB_ACPI_START_INDEX
,
200 rc
= obj
->integer
.value
== 0 ? 0 : -ENXIO
;
205 static int crb_send(struct tpm_chip
*chip
, u8
*buf
, size_t len
)
207 struct crb_priv
*priv
= dev_get_drvdata(&chip
->dev
);
210 /* Zero the cancel register so that the next command will not get
213 iowrite32(0, &priv
->cca
->cancel
);
215 if (len
> priv
->cmd_size
) {
216 dev_err(&chip
->dev
, "invalid command count value %zd %d\n",
217 len
, priv
->cmd_size
);
221 memcpy_toio(priv
->cmd
, buf
, len
);
223 /* Make sure that cmd is populated before issuing start. */
226 if (priv
->flags
& CRB_FL_CRB_START
)
227 iowrite32(CRB_START_INVOKE
, &priv
->cca
->start
);
229 if (priv
->flags
& CRB_FL_ACPI_START
)
230 rc
= crb_do_acpi_start(chip
);
235 static void crb_cancel(struct tpm_chip
*chip
)
237 struct crb_priv
*priv
= dev_get_drvdata(&chip
->dev
);
239 iowrite32(CRB_CANCEL_INVOKE
, &priv
->cca
->cancel
);
241 if ((priv
->flags
& CRB_FL_ACPI_START
) && crb_do_acpi_start(chip
))
242 dev_err(&chip
->dev
, "ACPI Start failed\n");
245 static bool crb_req_canceled(struct tpm_chip
*chip
, u8 status
)
247 struct crb_priv
*priv
= dev_get_drvdata(&chip
->dev
);
248 u32 cancel
= ioread32(&priv
->cca
->cancel
);
250 return (cancel
& CRB_CANCEL_INVOKE
) == CRB_CANCEL_INVOKE
;
253 static const struct tpm_class_ops tpm_crb
= {
254 .flags
= TPM_OPS_AUTO_STARTUP
,
255 .status
= crb_status
,
258 .cancel
= crb_cancel
,
259 .req_canceled
= crb_req_canceled
,
260 .req_complete_mask
= CRB_DRV_STS_COMPLETE
,
261 .req_complete_val
= CRB_DRV_STS_COMPLETE
,
264 static int crb_check_resource(struct acpi_resource
*ares
, void *data
)
266 struct resource
*io_res
= data
;
269 if (acpi_dev_resource_memory(ares
, &res
)) {
277 static void __iomem
*crb_map_res(struct device
*dev
, struct crb_priv
*priv
,
278 struct resource
*io_res
, u64 start
, u32 size
)
280 struct resource new_res
= {
282 .end
= start
+ size
- 1,
283 .flags
= IORESOURCE_MEM
,
286 /* Detect a 64 bit address on a 32 bit system */
287 if (start
!= new_res
.start
)
288 return (void __iomem
*) ERR_PTR(-EINVAL
);
290 if (!resource_contains(io_res
, &new_res
))
291 return devm_ioremap_resource(dev
, &new_res
);
293 return priv
->iobase
+ (new_res
.start
- io_res
->start
);
296 static int crb_map_io(struct acpi_device
*device
, struct crb_priv
*priv
,
297 struct acpi_table_tpm2
*buf
)
299 struct list_head resources
;
300 struct resource io_res
;
301 struct device
*dev
= &device
->dev
;
309 INIT_LIST_HEAD(&resources
);
310 ret
= acpi_dev_get_resources(device
, &resources
, crb_check_resource
,
314 acpi_dev_free_resource_list(&resources
);
316 if (resource_type(&io_res
) != IORESOURCE_MEM
) {
317 dev_err(dev
, FW_BUG
"TPM2 ACPI table does not define a memory resource\n");
321 priv
->iobase
= devm_ioremap_resource(dev
, &io_res
);
322 if (IS_ERR(priv
->iobase
))
323 return PTR_ERR(priv
->iobase
);
325 priv
->cca
= crb_map_res(dev
, priv
, &io_res
, buf
->control_address
,
326 sizeof(struct crb_control_area
));
327 if (IS_ERR(priv
->cca
))
328 return PTR_ERR(priv
->cca
);
331 * PTT HW bug w/a: wake up the device to access
332 * possibly not retained registers.
334 ret
= crb_cmd_ready(dev
, priv
);
338 pa_high
= ioread32(&priv
->cca
->cmd_pa_high
);
339 pa_low
= ioread32(&priv
->cca
->cmd_pa_low
);
340 cmd_pa
= ((u64
)pa_high
<< 32) | pa_low
;
341 cmd_size
= ioread32(&priv
->cca
->cmd_size
);
343 dev_dbg(dev
, "cmd_hi = %X cmd_low = %X cmd_size %X\n",
344 pa_high
, pa_low
, cmd_size
);
346 priv
->cmd
= crb_map_res(dev
, priv
, &io_res
, cmd_pa
, cmd_size
);
347 if (IS_ERR(priv
->cmd
)) {
348 ret
= PTR_ERR(priv
->cmd
);
352 memcpy_fromio(&rsp_pa
, &priv
->cca
->rsp_pa
, 8);
353 rsp_pa
= le64_to_cpu(rsp_pa
);
354 rsp_size
= ioread32(&priv
->cca
->rsp_size
);
356 if (cmd_pa
!= rsp_pa
) {
357 priv
->rsp
= crb_map_res(dev
, priv
, &io_res
, rsp_pa
, rsp_size
);
358 ret
= PTR_ERR_OR_ZERO(priv
->rsp
);
362 /* According to the PTP specification, overlapping command and response
363 * buffer sizes must be identical.
365 if (cmd_size
!= rsp_size
) {
366 dev_err(dev
, FW_BUG
"overlapping command and response buffer sizes are not identical");
371 priv
->cmd_size
= cmd_size
;
373 priv
->rsp
= priv
->cmd
;
376 crb_go_idle(dev
, priv
);
381 static int crb_acpi_add(struct acpi_device
*device
)
383 struct acpi_table_tpm2
*buf
;
384 struct crb_priv
*priv
;
385 struct tpm_chip
*chip
;
386 struct device
*dev
= &device
->dev
;
391 status
= acpi_get_table(ACPI_SIG_TPM2
, 1,
392 (struct acpi_table_header
**) &buf
);
393 if (ACPI_FAILURE(status
) || buf
->header
.length
< sizeof(*buf
)) {
394 dev_err(dev
, FW_BUG
"failed to get TPM2 ACPI table\n");
398 /* Should the FIFO driver handle this? */
399 sm
= buf
->start_method
;
400 if (sm
== ACPI_TPM2_MEMORY_MAPPED
)
403 priv
= devm_kzalloc(dev
, sizeof(struct crb_priv
), GFP_KERNEL
);
407 /* The reason for the extra quirk is that the PTT in 4th Gen Core CPUs
408 * report only ACPI start but in practice seems to require both
409 * ACPI start and CRB start.
411 if (sm
== ACPI_TPM2_COMMAND_BUFFER
|| sm
== ACPI_TPM2_MEMORY_MAPPED
||
412 !strcmp(acpi_device_hid(device
), "MSFT0101"))
413 priv
->flags
|= CRB_FL_CRB_START
;
415 if (sm
== ACPI_TPM2_START_METHOD
||
416 sm
== ACPI_TPM2_COMMAND_BUFFER_WITH_START_METHOD
)
417 priv
->flags
|= CRB_FL_ACPI_START
;
419 rc
= crb_map_io(device
, priv
, buf
);
423 chip
= tpmm_chip_alloc(dev
, &tpm_crb
);
425 return PTR_ERR(chip
);
427 dev_set_drvdata(&chip
->dev
, priv
);
428 chip
->acpi_dev_handle
= device
->handle
;
429 chip
->flags
= TPM_CHIP_FLAG_TPM2
;
431 rc
= crb_cmd_ready(dev
, priv
);
435 pm_runtime_get_noresume(dev
);
436 pm_runtime_set_active(dev
);
437 pm_runtime_enable(dev
);
439 rc
= tpm_chip_register(chip
);
441 crb_go_idle(dev
, priv
);
442 pm_runtime_put_noidle(dev
);
443 pm_runtime_disable(dev
);
452 static int crb_acpi_remove(struct acpi_device
*device
)
454 struct device
*dev
= &device
->dev
;
455 struct tpm_chip
*chip
= dev_get_drvdata(dev
);
457 tpm_chip_unregister(chip
);
459 pm_runtime_disable(dev
);
465 static int crb_pm_runtime_suspend(struct device
*dev
)
467 struct tpm_chip
*chip
= dev_get_drvdata(dev
);
468 struct crb_priv
*priv
= dev_get_drvdata(&chip
->dev
);
470 return crb_go_idle(dev
, priv
);
473 static int crb_pm_runtime_resume(struct device
*dev
)
475 struct tpm_chip
*chip
= dev_get_drvdata(dev
);
476 struct crb_priv
*priv
= dev_get_drvdata(&chip
->dev
);
478 return crb_cmd_ready(dev
, priv
);
480 #endif /* CONFIG_PM */
482 static const struct dev_pm_ops crb_pm
= {
483 SET_SYSTEM_SLEEP_PM_OPS(tpm_pm_suspend
, tpm_pm_resume
)
484 SET_RUNTIME_PM_OPS(crb_pm_runtime_suspend
, crb_pm_runtime_resume
, NULL
)
487 static struct acpi_device_id crb_device_ids
[] = {
491 MODULE_DEVICE_TABLE(acpi
, crb_device_ids
);
493 static struct acpi_driver crb_acpi_driver
= {
495 .ids
= crb_device_ids
,
498 .remove
= crb_acpi_remove
,
505 module_acpi_driver(crb_acpi_driver
);
506 MODULE_AUTHOR("Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>");
507 MODULE_DESCRIPTION("TPM2 Driver");
508 MODULE_VERSION("0.1");
509 MODULE_LICENSE("GPL");