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/platform_device.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 struct acpi_table_header hdr
;
46 CRB_CA_REQ_GO_IDLE
= BIT(0),
47 CRB_CA_REQ_CMD_READY
= BIT(1),
51 CRB_CA_STS_ERROR
= BIT(0),
52 CRB_CA_STS_TPM_IDLE
= BIT(1),
56 CRB_START_INVOKE
= BIT(0),
60 CRB_CANCEL_INVOKE
= BIT(0),
63 struct crb_control_area
{
78 CRB_STS_COMPLETE
= BIT(0),
82 CRB_FL_ACPI_START
= BIT(0),
83 CRB_FL_CRB_START
= BIT(1),
88 struct crb_control_area __iomem
*cca
;
93 static SIMPLE_DEV_PM_OPS(crb_pm
, tpm_pm_suspend
, tpm_pm_resume
);
95 static u8
crb_status(struct tpm_chip
*chip
)
97 struct crb_priv
*priv
= chip
->vendor
.priv
;
100 if ((le32_to_cpu(ioread32(&priv
->cca
->start
)) & CRB_START_INVOKE
) !=
102 sts
|= CRB_STS_COMPLETE
;
107 static int crb_recv(struct tpm_chip
*chip
, u8
*buf
, size_t count
)
109 struct crb_priv
*priv
= chip
->vendor
.priv
;
110 unsigned int expected
;
116 if (le32_to_cpu(ioread32(&priv
->cca
->sts
)) & CRB_CA_STS_ERROR
)
119 memcpy_fromio(buf
, priv
->rsp
, 6);
120 expected
= be32_to_cpup((__be32
*) &buf
[2]);
122 if (expected
> count
)
125 memcpy_fromio(&buf
[6], &priv
->rsp
[6], expected
- 6);
130 static int crb_do_acpi_start(struct tpm_chip
*chip
)
132 union acpi_object
*obj
;
135 obj
= acpi_evaluate_dsm(chip
->acpi_dev_handle
,
137 CRB_ACPI_START_REVISION_ID
,
138 CRB_ACPI_START_INDEX
,
142 rc
= obj
->integer
.value
== 0 ? 0 : -ENXIO
;
147 static int crb_send(struct tpm_chip
*chip
, u8
*buf
, size_t len
)
149 struct crb_priv
*priv
= chip
->vendor
.priv
;
152 if (len
> le32_to_cpu(ioread32(&priv
->cca
->cmd_size
))) {
154 "invalid command count value %x %zx\n",
156 (size_t) le32_to_cpu(ioread32(&priv
->cca
->cmd_size
)));
160 memcpy_toio(priv
->cmd
, buf
, len
);
162 /* Make sure that cmd is populated before issuing start. */
165 if (priv
->flags
& CRB_FL_CRB_START
)
166 iowrite32(cpu_to_le32(CRB_START_INVOKE
), &priv
->cca
->start
);
168 if (priv
->flags
& CRB_FL_ACPI_START
)
169 rc
= crb_do_acpi_start(chip
);
174 static void crb_cancel(struct tpm_chip
*chip
)
176 struct crb_priv
*priv
= chip
->vendor
.priv
;
178 iowrite32(cpu_to_le32(CRB_CANCEL_INVOKE
), &priv
->cca
->cancel
);
180 /* Make sure that cmd is populated before issuing cancel. */
183 if ((priv
->flags
& CRB_FL_ACPI_START
) && crb_do_acpi_start(chip
))
184 dev_err(&chip
->dev
, "ACPI Start failed\n");
186 iowrite32(0, &priv
->cca
->cancel
);
189 static bool crb_req_canceled(struct tpm_chip
*chip
, u8 status
)
191 struct crb_priv
*priv
= chip
->vendor
.priv
;
192 u32 cancel
= le32_to_cpu(ioread32(&priv
->cca
->cancel
));
194 return (cancel
& CRB_CANCEL_INVOKE
) == CRB_CANCEL_INVOKE
;
197 static const struct tpm_class_ops tpm_crb
= {
198 .status
= crb_status
,
201 .cancel
= crb_cancel
,
202 .req_canceled
= crb_req_canceled
,
203 .req_complete_mask
= CRB_STS_COMPLETE
,
204 .req_complete_val
= CRB_STS_COMPLETE
,
207 static int crb_acpi_add(struct acpi_device
*device
)
209 struct tpm_chip
*chip
;
210 struct acpi_tpm2
*buf
;
211 struct crb_priv
*priv
;
212 struct device
*dev
= &device
->dev
;
218 status
= acpi_get_table(ACPI_SIG_TPM2
, 1,
219 (struct acpi_table_header
**) &buf
);
220 if (ACPI_FAILURE(status
)) {
221 dev_err(dev
, "failed to get TPM2 ACPI table\n");
225 /* Should the FIFO driver handle this? */
226 if (buf
->start_method
== TPM2_START_FIFO
)
229 chip
= tpmm_chip_alloc(dev
, &tpm_crb
);
231 return PTR_ERR(chip
);
233 chip
->flags
= TPM_CHIP_FLAG_TPM2
;
235 if (buf
->hdr
.length
< sizeof(struct acpi_tpm2
)) {
236 dev_err(dev
, "TPM2 ACPI table has wrong size");
240 priv
= (struct crb_priv
*) devm_kzalloc(dev
, sizeof(struct crb_priv
),
243 dev_err(dev
, "failed to devm_kzalloc for private data\n");
247 sm
= le32_to_cpu(buf
->start_method
);
249 /* The reason for the extra quirk is that the PTT in 4th Gen Core CPUs
250 * report only ACPI start but in practice seems to require both
251 * ACPI start and CRB start.
253 if (sm
== TPM2_START_CRB
|| sm
== TPM2_START_FIFO
||
254 !strcmp(acpi_device_hid(device
), "MSFT0101"))
255 priv
->flags
|= CRB_FL_CRB_START
;
257 if (sm
== TPM2_START_ACPI
|| sm
== TPM2_START_CRB_WITH_ACPI
)
258 priv
->flags
|= CRB_FL_ACPI_START
;
260 priv
->cca
= (struct crb_control_area __iomem
*)
261 devm_ioremap_nocache(dev
, buf
->control_area_pa
, 0x1000);
263 dev_err(dev
, "ioremap of the control area failed\n");
267 pa
= ((u64
) le32_to_cpu(ioread32(&priv
->cca
->cmd_pa_high
)) << 32) |
268 (u64
) le32_to_cpu(ioread32(&priv
->cca
->cmd_pa_low
));
269 priv
->cmd
= devm_ioremap_nocache(dev
, pa
,
270 ioread32(&priv
->cca
->cmd_size
));
272 dev_err(dev
, "ioremap of the command buffer failed\n");
276 memcpy_fromio(&pa
, &priv
->cca
->rsp_pa
, 8);
277 pa
= le64_to_cpu(pa
);
278 priv
->rsp
= devm_ioremap_nocache(dev
, pa
,
279 ioread32(&priv
->cca
->rsp_size
));
281 dev_err(dev
, "ioremap of the response buffer failed\n");
285 chip
->vendor
.priv
= priv
;
287 /* Default timeouts and durations */
288 chip
->vendor
.timeout_a
= msecs_to_jiffies(TPM2_TIMEOUT_A
);
289 chip
->vendor
.timeout_b
= msecs_to_jiffies(TPM2_TIMEOUT_B
);
290 chip
->vendor
.timeout_c
= msecs_to_jiffies(TPM2_TIMEOUT_C
);
291 chip
->vendor
.timeout_d
= msecs_to_jiffies(TPM2_TIMEOUT_D
);
292 chip
->vendor
.duration
[TPM_SHORT
] =
293 msecs_to_jiffies(TPM2_DURATION_SHORT
);
294 chip
->vendor
.duration
[TPM_MEDIUM
] =
295 msecs_to_jiffies(TPM2_DURATION_MEDIUM
);
296 chip
->vendor
.duration
[TPM_LONG
] =
297 msecs_to_jiffies(TPM2_DURATION_LONG
);
299 chip
->acpi_dev_handle
= device
->handle
;
301 rc
= tpm2_do_selftest(chip
);
305 return tpm_chip_register(chip
);
308 static int crb_acpi_remove(struct acpi_device
*device
)
310 struct device
*dev
= &device
->dev
;
311 struct tpm_chip
*chip
= dev_get_drvdata(dev
);
313 tpm_chip_unregister(chip
);
315 if (chip
->flags
& TPM_CHIP_FLAG_TPM2
)
316 tpm2_shutdown(chip
, TPM2_SU_CLEAR
);
321 static struct acpi_device_id crb_device_ids
[] = {
325 MODULE_DEVICE_TABLE(acpi
, crb_device_ids
);
327 static struct acpi_driver crb_acpi_driver
= {
329 .ids
= crb_device_ids
,
332 .remove
= crb_acpi_remove
,
339 module_acpi_driver(crb_acpi_driver
);
340 MODULE_AUTHOR("Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>");
341 MODULE_DESCRIPTION("TPM2 Driver");
342 MODULE_VERSION("0.1");
343 MODULE_LICENSE("GPL");