]> asedeno.scripts.mit.edu Git - linux.git/blob - drivers/char/tpm/tpm-interface.c
tpm: Unify the send callback behaviour
[linux.git] / drivers / char / tpm / tpm-interface.c
1 /*
2  * Copyright (C) 2004 IBM Corporation
3  * Copyright (C) 2014 Intel Corporation
4  *
5  * Authors:
6  * Leendert van Doorn <leendert@watson.ibm.com>
7  * Dave Safford <safford@watson.ibm.com>
8  * Reiner Sailer <sailer@watson.ibm.com>
9  * Kylene Hall <kjhall@us.ibm.com>
10  *
11  * Maintained by: <tpmdd-devel@lists.sourceforge.net>
12  *
13  * Device driver for TCG/TCPA TPM (trusted platform module).
14  * Specifications at www.trustedcomputinggroup.org
15  *
16  * This program is free software; you can redistribute it and/or
17  * modify it under the terms of the GNU General Public License as
18  * published by the Free Software Foundation, version 2 of the
19  * License.
20  *
21  * Note, the TPM chip is not interrupt driven (only polling)
22  * and can have very long timeouts (minutes!). Hence the unusual
23  * calls to msleep.
24  *
25  */
26
27 #include <linux/poll.h>
28 #include <linux/slab.h>
29 #include <linux/mutex.h>
30 #include <linux/spinlock.h>
31 #include <linux/freezer.h>
32 #include <linux/tpm_eventlog.h>
33
34 #include "tpm.h"
35
36 /*
37  * Bug workaround - some TPM's don't flush the most
38  * recently changed pcr on suspend, so force the flush
39  * with an extend to the selected _unused_ non-volatile pcr.
40  */
41 static u32 tpm_suspend_pcr;
42 module_param_named(suspend_pcr, tpm_suspend_pcr, uint, 0644);
43 MODULE_PARM_DESC(suspend_pcr,
44                  "PCR to use for dummy writes to facilitate flush on suspend.");
45
46 /**
47  * tpm_calc_ordinal_duration() - calculate the maximum command duration
48  * @chip:    TPM chip to use.
49  * @ordinal: TPM command ordinal.
50  *
51  * The function returns the maximum amount of time the chip could take
52  * to return the result for a particular ordinal in jiffies.
53  *
54  * Return: A maximal duration time for an ordinal in jiffies.
55  */
56 unsigned long tpm_calc_ordinal_duration(struct tpm_chip *chip, u32 ordinal)
57 {
58         if (chip->flags & TPM_CHIP_FLAG_TPM2)
59                 return tpm2_calc_ordinal_duration(chip, ordinal);
60         else
61                 return tpm1_calc_ordinal_duration(chip, ordinal);
62 }
63 EXPORT_SYMBOL_GPL(tpm_calc_ordinal_duration);
64
65 static int tpm_validate_command(struct tpm_chip *chip,
66                                  struct tpm_space *space,
67                                  const u8 *cmd,
68                                  size_t len)
69 {
70         const struct tpm_input_header *header = (const void *)cmd;
71         int i;
72         u32 cc;
73         u32 attrs;
74         unsigned int nr_handles;
75
76         if (len < TPM_HEADER_SIZE)
77                 return -EINVAL;
78
79         if (!space)
80                 return 0;
81
82         if (chip->flags & TPM_CHIP_FLAG_TPM2 && chip->nr_commands) {
83                 cc = be32_to_cpu(header->ordinal);
84
85                 i = tpm2_find_cc(chip, cc);
86                 if (i < 0) {
87                         dev_dbg(&chip->dev, "0x%04X is an invalid command\n",
88                                 cc);
89                         return -EOPNOTSUPP;
90                 }
91
92                 attrs = chip->cc_attrs_tbl[i];
93                 nr_handles =
94                         4 * ((attrs >> TPM2_CC_ATTR_CHANDLES) & GENMASK(2, 0));
95                 if (len < TPM_HEADER_SIZE + 4 * nr_handles)
96                         goto err_len;
97         }
98
99         return 0;
100 err_len:
101         dev_dbg(&chip->dev,
102                 "%s: insufficient command length %zu", __func__, len);
103         return -EINVAL;
104 }
105
106 static int tpm_request_locality(struct tpm_chip *chip, unsigned int flags)
107 {
108         int rc;
109
110         if (flags & TPM_TRANSMIT_NESTED)
111                 return 0;
112
113         if (!chip->ops->request_locality)
114                 return 0;
115
116         rc = chip->ops->request_locality(chip, 0);
117         if (rc < 0)
118                 return rc;
119
120         chip->locality = rc;
121
122         return 0;
123 }
124
125 static void tpm_relinquish_locality(struct tpm_chip *chip, unsigned int flags)
126 {
127         int rc;
128
129         if (flags & TPM_TRANSMIT_NESTED)
130                 return;
131
132         if (!chip->ops->relinquish_locality)
133                 return;
134
135         rc = chip->ops->relinquish_locality(chip, chip->locality);
136         if (rc)
137                 dev_err(&chip->dev, "%s: : error %d\n", __func__, rc);
138
139         chip->locality = -1;
140 }
141
142 static int tpm_cmd_ready(struct tpm_chip *chip, unsigned int flags)
143 {
144         if (flags & TPM_TRANSMIT_NESTED)
145                 return 0;
146
147         if (!chip->ops->cmd_ready)
148                 return 0;
149
150         return chip->ops->cmd_ready(chip);
151 }
152
153 static int tpm_go_idle(struct tpm_chip *chip, unsigned int flags)
154 {
155         if (flags & TPM_TRANSMIT_NESTED)
156                 return 0;
157
158         if (!chip->ops->go_idle)
159                 return 0;
160
161         return chip->ops->go_idle(chip);
162 }
163
164 static ssize_t tpm_try_transmit(struct tpm_chip *chip,
165                                 struct tpm_space *space,
166                                 u8 *buf, size_t bufsiz,
167                                 unsigned int flags)
168 {
169         struct tpm_output_header *header = (void *)buf;
170         int rc;
171         ssize_t len = 0;
172         u32 count, ordinal;
173         unsigned long stop;
174         bool need_locality;
175
176         rc = tpm_validate_command(chip, space, buf, bufsiz);
177         if (rc == -EINVAL)
178                 return rc;
179         /*
180          * If the command is not implemented by the TPM, synthesize a
181          * response with a TPM2_RC_COMMAND_CODE return for user-space.
182          */
183         if (rc == -EOPNOTSUPP) {
184                 header->length = cpu_to_be32(sizeof(*header));
185                 header->tag = cpu_to_be16(TPM2_ST_NO_SESSIONS);
186                 header->return_code = cpu_to_be32(TPM2_RC_COMMAND_CODE |
187                                                   TSS2_RESMGR_TPM_RC_LAYER);
188                 return sizeof(*header);
189         }
190
191         if (bufsiz > TPM_BUFSIZE)
192                 bufsiz = TPM_BUFSIZE;
193
194         count = be32_to_cpu(*((__be32 *) (buf + 2)));
195         ordinal = be32_to_cpu(*((__be32 *) (buf + 6)));
196         if (count == 0)
197                 return -ENODATA;
198         if (count > bufsiz) {
199                 dev_err(&chip->dev,
200                         "invalid count value %x %zx\n", count, bufsiz);
201                 return -E2BIG;
202         }
203
204         if (!(flags & TPM_TRANSMIT_UNLOCKED) && !(flags & TPM_TRANSMIT_NESTED))
205                 mutex_lock(&chip->tpm_mutex);
206
207         if (chip->ops->clk_enable != NULL)
208                 chip->ops->clk_enable(chip, true);
209
210         /* Store the decision as chip->locality will be changed. */
211         need_locality = chip->locality == -1;
212
213         if (need_locality) {
214                 rc = tpm_request_locality(chip, flags);
215                 if (rc < 0) {
216                         need_locality = false;
217                         goto out_locality;
218                 }
219         }
220
221         rc = tpm_cmd_ready(chip, flags);
222         if (rc)
223                 goto out_locality;
224
225         rc = tpm2_prepare_space(chip, space, ordinal, buf);
226         if (rc)
227                 goto out;
228
229         rc = chip->ops->send(chip, buf, count);
230         if (rc < 0) {
231                 if (rc != -EPIPE)
232                         dev_err(&chip->dev,
233                                 "%s: send(): error %d\n", __func__, rc);
234                 goto out;
235         }
236
237         /* A sanity check. send() should just return zero on success e.g.
238          * not the command length.
239          */
240         if (rc > 0) {
241                 dev_warn(&chip->dev,
242                          "%s: send(): invalid value %d\n", __func__, rc);
243                 rc = 0;
244         }
245
246         if (chip->flags & TPM_CHIP_FLAG_IRQ)
247                 goto out_recv;
248
249         stop = jiffies + tpm_calc_ordinal_duration(chip, ordinal);
250         do {
251                 u8 status = chip->ops->status(chip);
252                 if ((status & chip->ops->req_complete_mask) ==
253                     chip->ops->req_complete_val)
254                         goto out_recv;
255
256                 if (chip->ops->req_canceled(chip, status)) {
257                         dev_err(&chip->dev, "Operation Canceled\n");
258                         rc = -ECANCELED;
259                         goto out;
260                 }
261
262                 tpm_msleep(TPM_TIMEOUT_POLL);
263                 rmb();
264         } while (time_before(jiffies, stop));
265
266         chip->ops->cancel(chip);
267         dev_err(&chip->dev, "Operation Timed out\n");
268         rc = -ETIME;
269         goto out;
270
271 out_recv:
272         len = chip->ops->recv(chip, buf, bufsiz);
273         if (len < 0) {
274                 rc = len;
275                 dev_err(&chip->dev,
276                         "tpm_transmit: tpm_recv: error %d\n", rc);
277                 goto out;
278         } else if (len < TPM_HEADER_SIZE) {
279                 rc = -EFAULT;
280                 goto out;
281         }
282
283         if (len != be32_to_cpu(header->length)) {
284                 rc = -EFAULT;
285                 goto out;
286         }
287
288         rc = tpm2_commit_space(chip, space, ordinal, buf, &len);
289         if (rc)
290                 dev_err(&chip->dev, "tpm2_commit_space: error %d\n", rc);
291
292 out:
293         /* may fail but do not override previous error value in rc */
294         tpm_go_idle(chip, flags);
295
296 out_locality:
297         if (need_locality)
298                 tpm_relinquish_locality(chip, flags);
299
300         if (chip->ops->clk_enable != NULL)
301                 chip->ops->clk_enable(chip, false);
302
303         if (!(flags & TPM_TRANSMIT_UNLOCKED) && !(flags & TPM_TRANSMIT_NESTED))
304                 mutex_unlock(&chip->tpm_mutex);
305         return rc ? rc : len;
306 }
307
308 /**
309  * tpm_transmit - Internal kernel interface to transmit TPM commands.
310  *
311  * @chip: TPM chip to use
312  * @space: tpm space
313  * @buf: TPM command buffer
314  * @bufsiz: length of the TPM command buffer
315  * @flags: tpm transmit flags - bitmap
316  *
317  * A wrapper around tpm_try_transmit that handles TPM2_RC_RETRY
318  * returns from the TPM and retransmits the command after a delay up
319  * to a maximum wait of TPM2_DURATION_LONG.
320  *
321  * Note: TPM1 never returns TPM2_RC_RETRY so the retry logic is TPM2
322  * only
323  *
324  * Return:
325  *     the length of the return when the operation is successful.
326  *     A negative number for system errors (errno).
327  */
328 ssize_t tpm_transmit(struct tpm_chip *chip, struct tpm_space *space,
329                      u8 *buf, size_t bufsiz, unsigned int flags)
330 {
331         struct tpm_output_header *header = (struct tpm_output_header *)buf;
332         /* space for header and handles */
333         u8 save[TPM_HEADER_SIZE + 3*sizeof(u32)];
334         unsigned int delay_msec = TPM2_DURATION_SHORT;
335         u32 rc = 0;
336         ssize_t ret;
337         const size_t save_size = min(space ? sizeof(save) : TPM_HEADER_SIZE,
338                                      bufsiz);
339         /* the command code is where the return code will be */
340         u32 cc = be32_to_cpu(header->return_code);
341
342         /*
343          * Subtlety here: if we have a space, the handles will be
344          * transformed, so when we restore the header we also have to
345          * restore the handles.
346          */
347         memcpy(save, buf, save_size);
348
349         for (;;) {
350                 ret = tpm_try_transmit(chip, space, buf, bufsiz, flags);
351                 if (ret < 0)
352                         break;
353                 rc = be32_to_cpu(header->return_code);
354                 if (rc != TPM2_RC_RETRY && rc != TPM2_RC_TESTING)
355                         break;
356                 /*
357                  * return immediately if self test returns test
358                  * still running to shorten boot time.
359                  */
360                 if (rc == TPM2_RC_TESTING && cc == TPM2_CC_SELF_TEST)
361                         break;
362
363                 if (delay_msec > TPM2_DURATION_LONG) {
364                         if (rc == TPM2_RC_RETRY)
365                                 dev_err(&chip->dev, "in retry loop\n");
366                         else
367                                 dev_err(&chip->dev,
368                                         "self test is still running\n");
369                         break;
370                 }
371                 tpm_msleep(delay_msec);
372                 delay_msec *= 2;
373                 memcpy(buf, save, save_size);
374         }
375         return ret;
376 }
377 /**
378  * tpm_transmit_cmd - send a tpm command to the device
379  *    The function extracts tpm out header return code
380  *
381  * @chip: TPM chip to use
382  * @space: tpm space
383  * @buf: TPM command buffer
384  * @bufsiz: length of the buffer
385  * @min_rsp_body_length: minimum expected length of response body
386  * @flags: tpm transmit flags - bitmap
387  * @desc: command description used in the error message
388  *
389  * Return:
390  *     0 when the operation is successful.
391  *     A negative number for system errors (errno).
392  *     A positive number for a TPM error.
393  */
394 ssize_t tpm_transmit_cmd(struct tpm_chip *chip, struct tpm_space *space,
395                          void *buf, size_t bufsiz,
396                          size_t min_rsp_body_length, unsigned int flags,
397                          const char *desc)
398 {
399         const struct tpm_output_header *header = buf;
400         int err;
401         ssize_t len;
402
403         len = tpm_transmit(chip, space, buf, bufsiz, flags);
404         if (len <  0)
405                 return len;
406
407         err = be32_to_cpu(header->return_code);
408         if (err != 0 && err != TPM_ERR_DISABLED && err != TPM_ERR_DEACTIVATED
409             && desc)
410                 dev_err(&chip->dev, "A TPM error (%d) occurred %s\n", err,
411                         desc);
412         if (err)
413                 return err;
414
415         if (len < min_rsp_body_length + TPM_HEADER_SIZE)
416                 return -EFAULT;
417
418         return 0;
419 }
420 EXPORT_SYMBOL_GPL(tpm_transmit_cmd);
421
422 int tpm_get_timeouts(struct tpm_chip *chip)
423 {
424         if (chip->flags & TPM_CHIP_FLAG_HAVE_TIMEOUTS)
425                 return 0;
426
427         if (chip->flags & TPM_CHIP_FLAG_TPM2)
428                 return tpm2_get_timeouts(chip);
429         else
430                 return tpm1_get_timeouts(chip);
431 }
432 EXPORT_SYMBOL_GPL(tpm_get_timeouts);
433
434 /**
435  * tpm_is_tpm2 - do we a have a TPM2 chip?
436  * @chip:       a &struct tpm_chip instance, %NULL for the default chip
437  *
438  * Return:
439  * 1 if we have a TPM2 chip.
440  * 0 if we don't have a TPM2 chip.
441  * A negative number for system errors (errno).
442  */
443 int tpm_is_tpm2(struct tpm_chip *chip)
444 {
445         int rc;
446
447         chip = tpm_find_get_ops(chip);
448         if (!chip)
449                 return -ENODEV;
450
451         rc = (chip->flags & TPM_CHIP_FLAG_TPM2) != 0;
452
453         tpm_put_ops(chip);
454
455         return rc;
456 }
457 EXPORT_SYMBOL_GPL(tpm_is_tpm2);
458
459 /**
460  * tpm_pcr_read - read a PCR value from SHA1 bank
461  * @chip:       a &struct tpm_chip instance, %NULL for the default chip
462  * @pcr_idx:    the PCR to be retrieved
463  * @res_buf:    the value of the PCR
464  *
465  * Return: same as with tpm_transmit_cmd()
466  */
467 int tpm_pcr_read(struct tpm_chip *chip, u32 pcr_idx, u8 *res_buf)
468 {
469         int rc;
470
471         chip = tpm_find_get_ops(chip);
472         if (!chip)
473                 return -ENODEV;
474
475         if (chip->flags & TPM_CHIP_FLAG_TPM2)
476                 rc = tpm2_pcr_read(chip, pcr_idx, res_buf);
477         else
478                 rc = tpm1_pcr_read(chip, pcr_idx, res_buf);
479
480         tpm_put_ops(chip);
481         return rc;
482 }
483 EXPORT_SYMBOL_GPL(tpm_pcr_read);
484
485 /**
486  * tpm_pcr_extend - extend a PCR value in SHA1 bank.
487  * @chip:       a &struct tpm_chip instance, %NULL for the default chip
488  * @pcr_idx:    the PCR to be retrieved
489  * @hash:       the hash value used to extend the PCR value
490  *
491  * Note: with TPM 2.0 extends also those banks with a known digest size to the
492  * cryto subsystem in order to prevent malicious use of those PCR banks. In the
493  * future we should dynamically determine digest sizes.
494  *
495  * Return: same as with tpm_transmit_cmd()
496  */
497 int tpm_pcr_extend(struct tpm_chip *chip, u32 pcr_idx, const u8 *hash)
498 {
499         int rc;
500         struct tpm2_digest digest_list[ARRAY_SIZE(chip->active_banks)];
501         u32 count = 0;
502         int i;
503
504         chip = tpm_find_get_ops(chip);
505         if (!chip)
506                 return -ENODEV;
507
508         if (chip->flags & TPM_CHIP_FLAG_TPM2) {
509                 memset(digest_list, 0, sizeof(digest_list));
510
511                 for (i = 0; i < ARRAY_SIZE(chip->active_banks) &&
512                             chip->active_banks[i] != TPM2_ALG_ERROR; i++) {
513                         digest_list[i].alg_id = chip->active_banks[i];
514                         memcpy(digest_list[i].digest, hash, TPM_DIGEST_SIZE);
515                         count++;
516                 }
517
518                 rc = tpm2_pcr_extend(chip, pcr_idx, count, digest_list);
519                 tpm_put_ops(chip);
520                 return rc;
521         }
522
523         rc = tpm1_pcr_extend(chip, pcr_idx, hash,
524                              "attempting extend a PCR value");
525         tpm_put_ops(chip);
526         return rc;
527 }
528 EXPORT_SYMBOL_GPL(tpm_pcr_extend);
529
530 /**
531  * tpm_send - send a TPM command
532  * @chip:       a &struct tpm_chip instance, %NULL for the default chip
533  * @cmd:        a TPM command buffer
534  * @buflen:     the length of the TPM command buffer
535  *
536  * Return: same as with tpm_transmit_cmd()
537  */
538 int tpm_send(struct tpm_chip *chip, void *cmd, size_t buflen)
539 {
540         int rc;
541
542         chip = tpm_find_get_ops(chip);
543         if (!chip)
544                 return -ENODEV;
545
546         rc = tpm_transmit_cmd(chip, NULL, cmd, buflen, 0, 0,
547                               "attempting to a send a command");
548         tpm_put_ops(chip);
549         return rc;
550 }
551 EXPORT_SYMBOL_GPL(tpm_send);
552
553 int tpm_auto_startup(struct tpm_chip *chip)
554 {
555         int rc;
556
557         if (!(chip->ops->flags & TPM_OPS_AUTO_STARTUP))
558                 return 0;
559
560         if (chip->flags & TPM_CHIP_FLAG_TPM2)
561                 rc = tpm2_auto_startup(chip);
562         else
563                 rc = tpm1_auto_startup(chip);
564
565         return rc;
566 }
567
568 /*
569  * We are about to suspend. Save the TPM state
570  * so that it can be restored.
571  */
572 int tpm_pm_suspend(struct device *dev)
573 {
574         struct tpm_chip *chip = dev_get_drvdata(dev);
575         int rc = 0;
576
577         if (!chip)
578                 return -ENODEV;
579
580         if (chip->flags & TPM_CHIP_FLAG_ALWAYS_POWERED)
581                 return 0;
582
583         if (chip->flags & TPM_CHIP_FLAG_TPM2)
584                 tpm2_shutdown(chip, TPM2_SU_STATE);
585         else
586                 rc = tpm1_pm_suspend(chip, tpm_suspend_pcr);
587
588         return rc;
589 }
590 EXPORT_SYMBOL_GPL(tpm_pm_suspend);
591
592 /*
593  * Resume from a power safe. The BIOS already restored
594  * the TPM state.
595  */
596 int tpm_pm_resume(struct device *dev)
597 {
598         struct tpm_chip *chip = dev_get_drvdata(dev);
599
600         if (chip == NULL)
601                 return -ENODEV;
602
603         return 0;
604 }
605 EXPORT_SYMBOL_GPL(tpm_pm_resume);
606
607 /**
608  * tpm_get_random() - get random bytes from the TPM's RNG
609  * @chip:       a &struct tpm_chip instance, %NULL for the default chip
610  * @out:        destination buffer for the random bytes
611  * @max:        the max number of bytes to write to @out
612  *
613  * Return: number of random bytes read or a negative error value.
614  */
615 int tpm_get_random(struct tpm_chip *chip, u8 *out, size_t max)
616 {
617         int rc;
618
619         if (!out || max > TPM_MAX_RNG_DATA)
620                 return -EINVAL;
621
622         chip = tpm_find_get_ops(chip);
623         if (!chip)
624                 return -ENODEV;
625
626         if (chip->flags & TPM_CHIP_FLAG_TPM2)
627                 rc = tpm2_get_random(chip, out, max);
628         else
629                 rc = tpm1_get_random(chip, out, max);
630
631         tpm_put_ops(chip);
632         return rc;
633 }
634 EXPORT_SYMBOL_GPL(tpm_get_random);
635
636 /**
637  * tpm_seal_trusted() - seal a trusted key payload
638  * @chip:       a &struct tpm_chip instance, %NULL for the default chip
639  * @options:    authentication values and other options
640  * @payload:    the key data in clear and encrypted form
641  *
642  * Note: only TPM 2.0 chip are supported. TPM 1.x implementation is located in
643  * the keyring subsystem.
644  *
645  * Return: same as with tpm_transmit_cmd()
646  */
647 int tpm_seal_trusted(struct tpm_chip *chip, struct trusted_key_payload *payload,
648                      struct trusted_key_options *options)
649 {
650         int rc;
651
652         chip = tpm_find_get_ops(chip);
653         if (!chip || !(chip->flags & TPM_CHIP_FLAG_TPM2))
654                 return -ENODEV;
655
656         rc = tpm2_seal_trusted(chip, payload, options);
657
658         tpm_put_ops(chip);
659         return rc;
660 }
661 EXPORT_SYMBOL_GPL(tpm_seal_trusted);
662
663 /**
664  * tpm_unseal_trusted() - unseal a trusted key
665  * @chip:       a &struct tpm_chip instance, %NULL for the default chip
666  * @options:    authentication values and other options
667  * @payload:    the key data in clear and encrypted form
668  *
669  * Note: only TPM 2.0 chip are supported. TPM 1.x implementation is located in
670  * the keyring subsystem.
671  *
672  * Return: same as with tpm_transmit_cmd()
673  */
674 int tpm_unseal_trusted(struct tpm_chip *chip,
675                        struct trusted_key_payload *payload,
676                        struct trusted_key_options *options)
677 {
678         int rc;
679
680         chip = tpm_find_get_ops(chip);
681         if (!chip || !(chip->flags & TPM_CHIP_FLAG_TPM2))
682                 return -ENODEV;
683
684         rc = tpm2_unseal_trusted(chip, payload, options);
685
686         tpm_put_ops(chip);
687
688         return rc;
689 }
690 EXPORT_SYMBOL_GPL(tpm_unseal_trusted);
691
692 static int __init tpm_init(void)
693 {
694         int rc;
695
696         tpm_class = class_create(THIS_MODULE, "tpm");
697         if (IS_ERR(tpm_class)) {
698                 pr_err("couldn't create tpm class\n");
699                 return PTR_ERR(tpm_class);
700         }
701
702         tpmrm_class = class_create(THIS_MODULE, "tpmrm");
703         if (IS_ERR(tpmrm_class)) {
704                 pr_err("couldn't create tpmrm class\n");
705                 rc = PTR_ERR(tpmrm_class);
706                 goto out_destroy_tpm_class;
707         }
708
709         rc = alloc_chrdev_region(&tpm_devt, 0, 2*TPM_NUM_DEVICES, "tpm");
710         if (rc < 0) {
711                 pr_err("tpm: failed to allocate char dev region\n");
712                 goto out_destroy_tpmrm_class;
713         }
714
715         rc = tpm_dev_common_init();
716         if (rc) {
717                 pr_err("tpm: failed to allocate char dev region\n");
718                 goto out_unreg_chrdev;
719         }
720
721         return 0;
722
723 out_unreg_chrdev:
724         unregister_chrdev_region(tpm_devt, 2 * TPM_NUM_DEVICES);
725 out_destroy_tpmrm_class:
726         class_destroy(tpmrm_class);
727 out_destroy_tpm_class:
728         class_destroy(tpm_class);
729
730         return rc;
731 }
732
733 static void __exit tpm_exit(void)
734 {
735         idr_destroy(&dev_nums_idr);
736         class_destroy(tpm_class);
737         class_destroy(tpmrm_class);
738         unregister_chrdev_region(tpm_devt, 2*TPM_NUM_DEVICES);
739         tpm_dev_common_exit();
740 }
741
742 subsys_initcall(tpm_init);
743 module_exit(tpm_exit);
744
745 MODULE_AUTHOR("Leendert van Doorn (leendert@watson.ibm.com)");
746 MODULE_DESCRIPTION("TPM Driver");
747 MODULE_VERSION("2.0");
748 MODULE_LICENSE("GPL");