tpm: drop tpm1_chip_register(/unregister)
authorJarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
Mon, 14 Nov 2016 10:00:51 +0000 (05:00 -0500)
committerJarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
Sun, 27 Nov 2016 23:31:32 +0000 (01:31 +0200)
Check for TPM2 chip in tpm_sysfs_add_device, tpm_bios_log_setup and
tpm_bios_log_teardown in order to make code flow cleaner and to enable
to implement TPM 2.0 support later on. This is partially derived from
the commit by Nayna Jain with the extension that also tpm1_chip_register
is dropped.

Signed-off-by: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
Reviewed-by: Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
Reviewed-by: Nayna Jain <nayna@linux.vnet.ibm.com>
Tested-by: Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
Tested-by: Nayna Jain <nayna@linux.vnet.ibm.com>
drivers/char/tpm/tpm-chip.c
drivers/char/tpm/tpm-sysfs.c
drivers/char/tpm/tpm_eventlog.c

index d0c187269ef4aff95e35808bb4b5fbe4ab79c073..250a651ebd950fefdf61553023d291695745eb25 100644 (file)
@@ -276,28 +276,6 @@ static void tpm_del_char_device(struct tpm_chip *chip)
        up_write(&chip->ops_sem);
 }
 
-static int tpm1_chip_register(struct tpm_chip *chip)
-{
-       int rc;
-
-       if (chip->flags & TPM_CHIP_FLAG_TPM2)
-               return 0;
-
-       tpm_sysfs_add_device(chip);
-
-       rc = tpm_bios_log_setup(chip);
-
-       return rc;
-}
-
-static void tpm1_chip_unregister(struct tpm_chip *chip)
-{
-       if (chip->flags & TPM_CHIP_FLAG_TPM2)
-               return;
-
-       tpm_bios_log_teardown(chip);
-}
-
 static void tpm_del_legacy_sysfs(struct tpm_chip *chip)
 {
        struct attribute **i;
@@ -364,7 +342,9 @@ int tpm_chip_register(struct tpm_chip *chip)
                        return rc;
        }
 
-       rc = tpm1_chip_register(chip);
+       tpm_sysfs_add_device(chip);
+
+       rc = tpm_bios_log_setup(chip);
        if (rc)
                return rc;
 
@@ -372,7 +352,7 @@ int tpm_chip_register(struct tpm_chip *chip)
 
        rc = tpm_add_char_device(chip);
        if (rc) {
-               tpm1_chip_unregister(chip);
+               tpm_bios_log_teardown(chip);
                return rc;
        }
 
@@ -402,8 +382,7 @@ EXPORT_SYMBOL_GPL(tpm_chip_register);
 void tpm_chip_unregister(struct tpm_chip *chip)
 {
        tpm_del_legacy_sysfs(chip);
-
-       tpm1_chip_unregister(chip);
+       tpm_bios_log_teardown(chip);
        tpm_del_char_device(chip);
 }
 EXPORT_SYMBOL_GPL(tpm_chip_unregister);
index 59a1ead4d141042dc8fad0a93dace2c6f74ed305..848ad6580b46d942d5600bd4b8285d65f1aaa9df 100644 (file)
@@ -284,6 +284,9 @@ static const struct attribute_group tpm_dev_group = {
 
 void tpm_sysfs_add_device(struct tpm_chip *chip)
 {
+       if (chip->flags & TPM_CHIP_FLAG_TPM2)
+               return;
+
        /* The sysfs routines rely on an implicit tpm_try_get_ops, device_del
         * is called before ops is null'd and the sysfs core synchronizes this
         * removal so that no callbacks are running or can run again
index 9c644764214418de86abdff96772d3d40f1bddd0..0afb0f4e81f01576477f2548e570dc63d78048cb 100644 (file)
@@ -364,6 +364,9 @@ int tpm_bios_log_setup(struct tpm_chip *chip)
        const char *name = dev_name(&chip->dev);
        unsigned int cnt;
 
+       if (chip->flags & TPM_CHIP_FLAG_TPM2)
+               return 0;
+
        cnt = 0;
        chip->bios_dir[cnt] = securityfs_create_dir(name, NULL);
        /* NOTE: securityfs_create_dir can return ENODEV if securityfs is