GNU Linux-libre 4.14.257-gnu1
[releases.git] / drivers / char / tpm / tpm_crb.c
1 /*
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>
22 #include <linux/pm_runtime.h>
23 #ifdef CONFIG_ARM64
24 #include <linux/arm-smccc.h>
25 #endif
26 #include "tpm.h"
27
28 #define ACPI_SIG_TPM2 "TPM2"
29
30 static const guid_t crb_acpi_start_guid =
31         GUID_INIT(0x6BBF6CAB, 0x5463, 0x4714,
32                   0xB7, 0xCD, 0xF0, 0x20, 0x3C, 0x03, 0x68, 0xD4);
33
34 enum crb_defaults {
35         CRB_ACPI_START_REVISION_ID = 1,
36         CRB_ACPI_START_INDEX = 1,
37 };
38
39 enum crb_loc_ctrl {
40         CRB_LOC_CTRL_REQUEST_ACCESS     = BIT(0),
41         CRB_LOC_CTRL_RELINQUISH         = BIT(1),
42 };
43
44 enum crb_loc_state {
45         CRB_LOC_STATE_LOC_ASSIGNED      = BIT(1),
46         CRB_LOC_STATE_TPM_REG_VALID_STS = BIT(7),
47 };
48
49 enum crb_ctrl_req {
50         CRB_CTRL_REQ_CMD_READY  = BIT(0),
51         CRB_CTRL_REQ_GO_IDLE    = BIT(1),
52 };
53
54 enum crb_ctrl_sts {
55         CRB_CTRL_STS_ERROR      = BIT(0),
56         CRB_CTRL_STS_TPM_IDLE   = BIT(1),
57 };
58
59 enum crb_start {
60         CRB_START_INVOKE        = BIT(0),
61 };
62
63 enum crb_cancel {
64         CRB_CANCEL_INVOKE       = BIT(0),
65 };
66
67 struct 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
77 struct 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;
89 } __packed;
90
91 enum crb_status {
92         CRB_DRV_STS_COMPLETE    = BIT(0),
93 };
94
95 enum crb_flags {
96         CRB_FL_ACPI_START       = BIT(0),
97         CRB_FL_CRB_START        = BIT(1),
98         CRB_FL_CRB_SMC_START    = BIT(2),
99 };
100
101 struct crb_priv {
102         unsigned int flags;
103         void __iomem *iobase;
104         struct crb_regs_head __iomem *regs_h;
105         struct crb_regs_tail __iomem *regs_t;
106         u8 __iomem *cmd;
107         u8 __iomem *rsp;
108         u32 cmd_size;
109         u32 smc_func_id;
110 };
111
112 struct tpm2_crb_smc {
113         u32 interrupt;
114         u8 interrupt_flags;
115         u8 op_flags;
116         u16 reserved2;
117         u32 smc_func_id;
118 };
119
120 static bool crb_wait_for_reg_32(u32 __iomem *reg, u32 mask, u32 value,
121                                 unsigned long timeout)
122 {
123         ktime_t start;
124         ktime_t stop;
125
126         start = ktime_get();
127         stop = ktime_add(start, ms_to_ktime(timeout));
128
129         do {
130                 if ((ioread32(reg) & mask) == value)
131                         return true;
132
133                 usleep_range(50, 100);
134         } while (ktime_before(ktime_get(), stop));
135
136         return ((ioread32(reg) & mask) == value);
137 }
138
139 /**
140  * __crb_go_idle - request tpm crb device to go the idle state
141  *
142  * @dev:  crb device
143  * @priv: crb private data
144  *
145  * Write CRB_CTRL_REQ_GO_IDLE to TPM_CRB_CTRL_REQ
146  * The device should respond within TIMEOUT_C by clearing the bit.
147  * Anyhow, we do not wait here as a consequent CMD_READY request
148  * will be handled correctly even if idle was not completed.
149  *
150  * The function does nothing for devices with ACPI-start method.
151  *
152  * Return: 0 always
153  */
154 static int __crb_go_idle(struct device *dev, struct crb_priv *priv)
155 {
156         if ((priv->flags & CRB_FL_ACPI_START) ||
157             (priv->flags & CRB_FL_CRB_SMC_START))
158                 return 0;
159
160         iowrite32(CRB_CTRL_REQ_GO_IDLE, &priv->regs_t->ctrl_req);
161
162         if (!crb_wait_for_reg_32(&priv->regs_t->ctrl_req,
163                                  CRB_CTRL_REQ_GO_IDLE/* mask */,
164                                  0, /* value */
165                                  TPM2_TIMEOUT_C)) {
166                 dev_warn(dev, "goIdle timed out\n");
167                 return -ETIME;
168         }
169
170         return 0;
171 }
172
173 static int crb_go_idle(struct tpm_chip *chip)
174 {
175         struct device *dev = &chip->dev;
176         struct crb_priv *priv = dev_get_drvdata(dev);
177
178         return __crb_go_idle(dev, priv);
179 }
180
181 /**
182  * __crb_cmd_ready - request tpm crb device to enter ready state
183  *
184  * @dev:  crb device
185  * @priv: crb private data
186  *
187  * Write CRB_CTRL_REQ_CMD_READY to TPM_CRB_CTRL_REQ
188  * and poll till the device acknowledge it by clearing the bit.
189  * The device should respond within TIMEOUT_C.
190  *
191  * The function does nothing for devices with ACPI-start method
192  *
193  * Return: 0 on success -ETIME on timeout;
194  */
195 static int __crb_cmd_ready(struct device *dev, struct crb_priv *priv)
196 {
197         if ((priv->flags & CRB_FL_ACPI_START) ||
198             (priv->flags & CRB_FL_CRB_SMC_START))
199                 return 0;
200
201         iowrite32(CRB_CTRL_REQ_CMD_READY, &priv->regs_t->ctrl_req);
202         if (!crb_wait_for_reg_32(&priv->regs_t->ctrl_req,
203                                  CRB_CTRL_REQ_CMD_READY /* mask */,
204                                  0, /* value */
205                                  TPM2_TIMEOUT_C)) {
206                 dev_warn(dev, "cmdReady timed out\n");
207                 return -ETIME;
208         }
209
210         return 0;
211 }
212
213 static int crb_cmd_ready(struct tpm_chip *chip)
214 {
215         struct device *dev = &chip->dev;
216         struct crb_priv *priv = dev_get_drvdata(dev);
217
218         return __crb_cmd_ready(dev, priv);
219 }
220
221 static int __crb_request_locality(struct device *dev,
222                                   struct crb_priv *priv, int loc)
223 {
224         u32 value = CRB_LOC_STATE_LOC_ASSIGNED |
225                     CRB_LOC_STATE_TPM_REG_VALID_STS;
226
227         if (!priv->regs_h)
228                 return 0;
229
230         iowrite32(CRB_LOC_CTRL_REQUEST_ACCESS, &priv->regs_h->loc_ctrl);
231         if (!crb_wait_for_reg_32(&priv->regs_h->loc_state, value, value,
232                                  TPM2_TIMEOUT_C)) {
233                 dev_warn(dev, "TPM_LOC_STATE_x.requestAccess timed out\n");
234                 return -ETIME;
235         }
236
237         return 0;
238 }
239
240 static int crb_request_locality(struct tpm_chip *chip, int loc)
241 {
242         struct crb_priv *priv = dev_get_drvdata(&chip->dev);
243
244         return __crb_request_locality(&chip->dev, priv, loc);
245 }
246
247 static int __crb_relinquish_locality(struct device *dev,
248                                      struct crb_priv *priv, int loc)
249 {
250         u32 mask = CRB_LOC_STATE_LOC_ASSIGNED |
251                    CRB_LOC_STATE_TPM_REG_VALID_STS;
252         u32 value = CRB_LOC_STATE_TPM_REG_VALID_STS;
253
254         if (!priv->regs_h)
255                 return 0;
256
257         iowrite32(CRB_LOC_CTRL_RELINQUISH, &priv->regs_h->loc_ctrl);
258         if (!crb_wait_for_reg_32(&priv->regs_h->loc_state, mask, value,
259                                  TPM2_TIMEOUT_C)) {
260                 dev_warn(dev, "TPM_LOC_STATE_x.requestAccess timed out\n");
261                 return -ETIME;
262         }
263
264         return 0;
265 }
266
267 static int crb_relinquish_locality(struct tpm_chip *chip, int loc)
268 {
269         struct crb_priv *priv = dev_get_drvdata(&chip->dev);
270
271         return __crb_relinquish_locality(&chip->dev, priv, loc);
272 }
273
274 static u8 crb_status(struct tpm_chip *chip)
275 {
276         struct crb_priv *priv = dev_get_drvdata(&chip->dev);
277         u8 sts = 0;
278
279         if ((ioread32(&priv->regs_t->ctrl_start) & CRB_START_INVOKE) !=
280             CRB_START_INVOKE)
281                 sts |= CRB_DRV_STS_COMPLETE;
282
283         return sts;
284 }
285
286 static int crb_recv(struct tpm_chip *chip, u8 *buf, size_t count)
287 {
288         struct crb_priv *priv = dev_get_drvdata(&chip->dev);
289         unsigned int expected;
290
291         /* A sanity check that the upper layer wants to get at least the header
292          * as that is the minimum size for any TPM response.
293          */
294         if (count < TPM_HEADER_SIZE)
295                 return -EIO;
296
297         /* If this bit is set, according to the spec, the TPM is in
298          * unrecoverable condition.
299          */
300         if (ioread32(&priv->regs_t->ctrl_sts) & CRB_CTRL_STS_ERROR)
301                 return -EIO;
302
303         /* Read the first 8 bytes in order to get the length of the response.
304          * We read exactly a quad word in order to make sure that the remaining
305          * reads will be aligned.
306          */
307         memcpy_fromio(buf, priv->rsp, 8);
308
309         expected = be32_to_cpup((__be32 *)&buf[2]);
310         if (expected > count || expected < TPM_HEADER_SIZE)
311                 return -EIO;
312
313         memcpy_fromio(&buf[8], &priv->rsp[8], expected - 8);
314
315         return expected;
316 }
317
318 static int crb_do_acpi_start(struct tpm_chip *chip)
319 {
320         union acpi_object *obj;
321         int rc;
322
323         obj = acpi_evaluate_dsm(chip->acpi_dev_handle,
324                                 &crb_acpi_start_guid,
325                                 CRB_ACPI_START_REVISION_ID,
326                                 CRB_ACPI_START_INDEX,
327                                 NULL);
328         if (!obj)
329                 return -ENXIO;
330         rc = obj->integer.value == 0 ? 0 : -ENXIO;
331         ACPI_FREE(obj);
332         return rc;
333 }
334
335 #ifdef CONFIG_ARM64
336 /*
337  * This is a TPM Command Response Buffer start method that invokes a
338  * Secure Monitor Call to requrest the firmware to execute or cancel
339  * a TPM 2.0 command.
340  */
341 static int tpm_crb_smc_start(struct device *dev, unsigned long func_id)
342 {
343         struct arm_smccc_res res;
344
345         arm_smccc_smc(func_id, 0, 0, 0, 0, 0, 0, 0, &res);
346         if (res.a0 != 0) {
347                 dev_err(dev,
348                         FW_BUG "tpm_crb_smc_start() returns res.a0 = 0x%lx\n",
349                         res.a0);
350                 return -EIO;
351         }
352
353         return 0;
354 }
355 #else
356 static int tpm_crb_smc_start(struct device *dev, unsigned long func_id)
357 {
358         dev_err(dev, FW_BUG "tpm_crb: incorrect start method\n");
359         return -EINVAL;
360 }
361 #endif
362
363 static int crb_send(struct tpm_chip *chip, u8 *buf, size_t len)
364 {
365         struct crb_priv *priv = dev_get_drvdata(&chip->dev);
366         int rc = 0;
367
368         /* Zero the cancel register so that the next command will not get
369          * canceled.
370          */
371         iowrite32(0, &priv->regs_t->ctrl_cancel);
372
373         if (len > priv->cmd_size) {
374                 dev_err(&chip->dev, "invalid command count value %zd %d\n",
375                         len, priv->cmd_size);
376                 return -E2BIG;
377         }
378
379         memcpy_toio(priv->cmd, buf, len);
380
381         /* Make sure that cmd is populated before issuing start. */
382         wmb();
383
384         if (priv->flags & CRB_FL_CRB_START)
385                 iowrite32(CRB_START_INVOKE, &priv->regs_t->ctrl_start);
386
387         if (priv->flags & CRB_FL_ACPI_START)
388                 rc = crb_do_acpi_start(chip);
389
390         if (priv->flags & CRB_FL_CRB_SMC_START) {
391                 iowrite32(CRB_START_INVOKE, &priv->regs_t->ctrl_start);
392                 rc = tpm_crb_smc_start(&chip->dev, priv->smc_func_id);
393         }
394
395         return rc;
396 }
397
398 static void crb_cancel(struct tpm_chip *chip)
399 {
400         struct crb_priv *priv = dev_get_drvdata(&chip->dev);
401
402         iowrite32(CRB_CANCEL_INVOKE, &priv->regs_t->ctrl_cancel);
403
404         if ((priv->flags & CRB_FL_ACPI_START) && crb_do_acpi_start(chip))
405                 dev_err(&chip->dev, "ACPI Start failed\n");
406 }
407
408 static bool crb_req_canceled(struct tpm_chip *chip, u8 status)
409 {
410         struct crb_priv *priv = dev_get_drvdata(&chip->dev);
411         u32 cancel = ioread32(&priv->regs_t->ctrl_cancel);
412
413         return (cancel & CRB_CANCEL_INVOKE) == CRB_CANCEL_INVOKE;
414 }
415
416 static const struct tpm_class_ops tpm_crb = {
417         .flags = TPM_OPS_AUTO_STARTUP,
418         .status = crb_status,
419         .recv = crb_recv,
420         .send = crb_send,
421         .cancel = crb_cancel,
422         .req_canceled = crb_req_canceled,
423         .go_idle  = crb_go_idle,
424         .cmd_ready = crb_cmd_ready,
425         .request_locality = crb_request_locality,
426         .relinquish_locality = crb_relinquish_locality,
427         .req_complete_mask = CRB_DRV_STS_COMPLETE,
428         .req_complete_val = CRB_DRV_STS_COMPLETE,
429 };
430
431 static int crb_check_resource(struct acpi_resource *ares, void *data)
432 {
433         struct resource *io_res = data;
434         struct resource_win win;
435         struct resource *res = &(win.res);
436
437         if (acpi_dev_resource_memory(ares, res) ||
438             acpi_dev_resource_address_space(ares, &win)) {
439                 *io_res = *res;
440                 io_res->name = NULL;
441         }
442
443         return 1;
444 }
445
446 static void __iomem *crb_map_res(struct device *dev, struct crb_priv *priv,
447                                  struct resource *io_res, u64 start, u32 size)
448 {
449         struct resource new_res = {
450                 .start  = start,
451                 .end    = start + size - 1,
452                 .flags  = IORESOURCE_MEM,
453         };
454
455         /* Detect a 64 bit address on a 32 bit system */
456         if (start != new_res.start)
457                 return (void __iomem *) ERR_PTR(-EINVAL);
458
459         if (!resource_contains(io_res, &new_res))
460                 return devm_ioremap_resource(dev, &new_res);
461
462         return priv->iobase + (new_res.start - io_res->start);
463 }
464
465 /*
466  * Work around broken BIOSs that return inconsistent values from the ACPI
467  * region vs the registers. Trust the ACPI region. Such broken systems
468  * probably cannot send large TPM commands since the buffer will be truncated.
469  */
470 static u64 crb_fixup_cmd_size(struct device *dev, struct resource *io_res,
471                               u64 start, u64 size)
472 {
473         if (io_res->start > start || io_res->end < start)
474                 return size;
475
476         if (start + size - 1 <= io_res->end)
477                 return size;
478
479         dev_err(dev,
480                 FW_BUG "ACPI region does not cover the entire command/response buffer. %pr vs %llx %llx\n",
481                 io_res, start, size);
482
483         return io_res->end - start + 1;
484 }
485
486 static int crb_map_io(struct acpi_device *device, struct crb_priv *priv,
487                       struct acpi_table_tpm2 *buf)
488 {
489         struct list_head resources;
490         struct resource io_res;
491         struct device *dev = &device->dev;
492         u32 pa_high, pa_low;
493         u64 cmd_pa;
494         u32 cmd_size;
495         u64 rsp_pa;
496         u32 rsp_size;
497         int ret;
498
499         INIT_LIST_HEAD(&resources);
500         ret = acpi_dev_get_resources(device, &resources, crb_check_resource,
501                                      &io_res);
502         if (ret < 0)
503                 return ret;
504         acpi_dev_free_resource_list(&resources);
505
506         if (resource_type(&io_res) != IORESOURCE_MEM) {
507                 dev_err(dev, FW_BUG "TPM2 ACPI table does not define a memory resource\n");
508                 return -EINVAL;
509         }
510
511         priv->iobase = devm_ioremap_resource(dev, &io_res);
512         if (IS_ERR(priv->iobase))
513                 return PTR_ERR(priv->iobase);
514
515         /* The ACPI IO region starts at the head area and continues to include
516          * the control area, as one nice sane region except for some older
517          * stuff that puts the control area outside the ACPI IO region.
518          */
519         if (!(priv->flags & CRB_FL_ACPI_START)) {
520                 if (buf->control_address == io_res.start +
521                     sizeof(*priv->regs_h))
522                         priv->regs_h = priv->iobase;
523                 else
524                         dev_warn(dev, FW_BUG "Bad ACPI memory layout");
525         }
526
527         ret = __crb_request_locality(dev, priv, 0);
528         if (ret)
529                 return ret;
530
531         priv->regs_t = crb_map_res(dev, priv, &io_res, buf->control_address,
532                                    sizeof(struct crb_regs_tail));
533         if (IS_ERR(priv->regs_t)) {
534                 ret = PTR_ERR(priv->regs_t);
535                 goto out_relinquish_locality;
536         }
537
538         /*
539          * PTT HW bug w/a: wake up the device to access
540          * possibly not retained registers.
541          */
542         ret = __crb_cmd_ready(dev, priv);
543         if (ret)
544                 goto out_relinquish_locality;
545
546         pa_high = ioread32(&priv->regs_t->ctrl_cmd_pa_high);
547         pa_low  = ioread32(&priv->regs_t->ctrl_cmd_pa_low);
548         cmd_pa = ((u64)pa_high << 32) | pa_low;
549         cmd_size = crb_fixup_cmd_size(dev, &io_res, cmd_pa,
550                                       ioread32(&priv->regs_t->ctrl_cmd_size));
551
552         dev_dbg(dev, "cmd_hi = %X cmd_low = %X cmd_size %X\n",
553                 pa_high, pa_low, cmd_size);
554
555         priv->cmd = crb_map_res(dev, priv, &io_res, cmd_pa, cmd_size);
556         if (IS_ERR(priv->cmd)) {
557                 ret = PTR_ERR(priv->cmd);
558                 goto out;
559         }
560
561         memcpy_fromio(&rsp_pa, &priv->regs_t->ctrl_rsp_pa, 8);
562         rsp_pa = le64_to_cpu(rsp_pa);
563         rsp_size = crb_fixup_cmd_size(dev, &io_res, rsp_pa,
564                                       ioread32(&priv->regs_t->ctrl_rsp_size));
565
566         if (cmd_pa != rsp_pa) {
567                 priv->rsp = crb_map_res(dev, priv, &io_res, rsp_pa, rsp_size);
568                 ret = PTR_ERR_OR_ZERO(priv->rsp);
569                 goto out;
570         }
571
572         /* According to the PTP specification, overlapping command and response
573          * buffer sizes must be identical.
574          */
575         if (cmd_size != rsp_size) {
576                 dev_err(dev, FW_BUG "overlapping command and response buffer sizes are not identical");
577                 ret = -EINVAL;
578                 goto out;
579         }
580
581         priv->rsp = priv->cmd;
582
583 out:
584         if (!ret)
585                 priv->cmd_size = cmd_size;
586
587         __crb_go_idle(dev, priv);
588
589 out_relinquish_locality:
590
591         __crb_relinquish_locality(dev, priv, 0);
592
593         return ret;
594 }
595
596 static int crb_acpi_add(struct acpi_device *device)
597 {
598         struct acpi_table_tpm2 *buf;
599         struct crb_priv *priv;
600         struct tpm_chip *chip;
601         struct device *dev = &device->dev;
602         struct tpm2_crb_smc *crb_smc;
603         acpi_status status;
604         u32 sm;
605         int rc;
606
607         status = acpi_get_table(ACPI_SIG_TPM2, 1,
608                                 (struct acpi_table_header **) &buf);
609         if (ACPI_FAILURE(status) || buf->header.length < sizeof(*buf)) {
610                 dev_err(dev, FW_BUG "failed to get TPM2 ACPI table\n");
611                 return -EINVAL;
612         }
613
614         /* Should the FIFO driver handle this? */
615         sm = buf->start_method;
616         if (sm == ACPI_TPM2_MEMORY_MAPPED)
617                 return -ENODEV;
618
619         priv = devm_kzalloc(dev, sizeof(struct crb_priv), GFP_KERNEL);
620         if (!priv)
621                 return -ENOMEM;
622
623         /* The reason for the extra quirk is that the PTT in 4th Gen Core CPUs
624          * report only ACPI start but in practice seems to require both
625          * ACPI start and CRB start.
626          */
627         if (sm == ACPI_TPM2_COMMAND_BUFFER || sm == ACPI_TPM2_MEMORY_MAPPED ||
628             !strcmp(acpi_device_hid(device), "MSFT0101"))
629                 priv->flags |= CRB_FL_CRB_START;
630
631         if (sm == ACPI_TPM2_START_METHOD ||
632             sm == ACPI_TPM2_COMMAND_BUFFER_WITH_START_METHOD)
633                 priv->flags |= CRB_FL_ACPI_START;
634
635         if (sm == ACPI_TPM2_COMMAND_BUFFER_WITH_ARM_SMC) {
636                 if (buf->header.length < (sizeof(*buf) + sizeof(*crb_smc))) {
637                         dev_err(dev,
638                                 FW_BUG "TPM2 ACPI table has wrong size %u for start method type %d\n",
639                                 buf->header.length,
640                                 ACPI_TPM2_COMMAND_BUFFER_WITH_ARM_SMC);
641                         return -EINVAL;
642                 }
643                 crb_smc = ACPI_ADD_PTR(struct tpm2_crb_smc, buf, sizeof(*buf));
644                 priv->smc_func_id = crb_smc->smc_func_id;
645                 priv->flags |= CRB_FL_CRB_SMC_START;
646         }
647
648         rc = crb_map_io(device, priv, buf);
649         if (rc)
650                 return rc;
651
652         chip = tpmm_chip_alloc(dev, &tpm_crb);
653         if (IS_ERR(chip))
654                 return PTR_ERR(chip);
655
656         dev_set_drvdata(&chip->dev, priv);
657         chip->acpi_dev_handle = device->handle;
658         chip->flags = TPM_CHIP_FLAG_TPM2;
659
660         return tpm_chip_register(chip);
661 }
662
663 static int crb_acpi_remove(struct acpi_device *device)
664 {
665         struct device *dev = &device->dev;
666         struct tpm_chip *chip = dev_get_drvdata(dev);
667
668         tpm_chip_unregister(chip);
669
670         return 0;
671 }
672
673 static const struct dev_pm_ops crb_pm = {
674         SET_SYSTEM_SLEEP_PM_OPS(tpm_pm_suspend, tpm_pm_resume)
675 };
676
677 static const struct acpi_device_id crb_device_ids[] = {
678         {"MSFT0101", 0},
679         {"", 0},
680 };
681 MODULE_DEVICE_TABLE(acpi, crb_device_ids);
682
683 static struct acpi_driver crb_acpi_driver = {
684         .name = "tpm_crb",
685         .ids = crb_device_ids,
686         .ops = {
687                 .add = crb_acpi_add,
688                 .remove = crb_acpi_remove,
689         },
690         .drv = {
691                 .pm = &crb_pm,
692         },
693 };
694
695 module_acpi_driver(crb_acpi_driver);
696 MODULE_AUTHOR("Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>");
697 MODULE_DESCRIPTION("TPM2 Driver");
698 MODULE_VERSION("0.1");
699 MODULE_LICENSE("GPL");