Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1481259
| Path | csiph.com!feeder.erje.net!1.us.feeder.erje.net!newsfeed.fsmpi.rwth-aachen.de!newsfeed.straub-nv.de!news.unit0.net!news.panservice.it!bofh.it!news.nic.it!robomod |
|---|---|
| From | Tomas Winkler <tomas.winkler@intel.com> |
| Newsgroups | linux.kernel |
| Subject | [PATCH v3 3/4] tpm/tpm_crb: open code the crb_init into acpi_add |
| Date | Mon, 12 Sep 2016 15:10:02 +0200 |
| Message-ID | <sgz9M-3JB-63@gated-at.bofh.it> (permalink) |
| References | <sgz9L-3JB-5@gated-at.bofh.it> |
| X-Extloop1 | 1 |
| X-Ironport-Av | E=Sophos;i="5.30,322,1470726000"; d="scan'208";a="7328851" |
| X-Mailer | git-send-email 2.7.4 |
| Sender | robomod@news.nic.it |
| List-ID | <linux-kernel.vger.kernel.org> |
| X-Mailing-List | linux-kernel@vger.kernel.org |
| Approved | robomod@news.nic.it |
| Lines | 68 |
| Organization | linux.* mail to news gateway |
| X-Original-Cc | linux-kernel@vger.kernel.org, Tomas Winkler <tomas.winkler@intel.com> |
| X-Original-Date | Mon, 12 Sep 2016 16:04:20 +0300 |
| X-Original-Message-ID | <1473685461-6540-4-git-send-email-tomas.winkler@intel.com> |
| X-Original-References | <1473685461-6540-1-git-send-email-tomas.winkler@intel.com> |
| X-Original-Sender | linux-kernel-owner@vger.kernel.org |
| Xref | csiph.com linux.kernel:1481259 |
Show key headers only | View raw
This is preparation step for implementing tpm crb
runtime pm. We need to have tpm chip allocated
and populated before we access the runtime handlers.
Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
---
V2: new in the series
V3: resend
drivers/char/tpm/tpm_crb.c | 26 ++++++++++----------------
1 file changed, 10 insertions(+), 16 deletions(-)
diff --git a/drivers/char/tpm/tpm_crb.c b/drivers/char/tpm/tpm_crb.c
index e945177cf2c8..b0c0e2c9022b 100644
--- a/drivers/char/tpm/tpm_crb.c
+++ b/drivers/char/tpm/tpm_crb.c
@@ -265,21 +265,6 @@ static const struct tpm_class_ops tpm_crb = {
.req_complete_val = CRB_DRV_STS_COMPLETE,
};
-static int crb_init(struct acpi_device *device, struct crb_priv *priv)
-{
- struct tpm_chip *chip;
-
- chip = tpmm_chip_alloc(&device->dev, &tpm_crb);
- if (IS_ERR(chip))
- return PTR_ERR(chip);
-
- dev_set_drvdata(&chip->dev, priv);
- chip->acpi_dev_handle = device->handle;
- chip->flags = TPM_CHIP_FLAG_TPM2;
-
- return tpm_chip_register(chip);
-}
-
static int crb_check_resource(struct acpi_resource *ares, void *data)
{
struct resource *io_res = data;
@@ -401,6 +386,7 @@ static int crb_acpi_add(struct acpi_device *device)
{
struct acpi_table_tpm2 *buf;
struct crb_priv *priv;
+ struct tpm_chip *chip;
struct device *dev = &device->dev;
acpi_status status;
u32 sm;
@@ -438,11 +424,19 @@ static int crb_acpi_add(struct acpi_device *device)
if (rc)
return rc;
+ chip = tpmm_chip_alloc(dev, &tpm_crb);
+ if (IS_ERR(chip))
+ return PTR_ERR(chip);
+
+ dev_set_drvdata(&chip->dev, priv);
+ chip->acpi_dev_handle = device->handle;
+ chip->flags = TPM_CHIP_FLAG_TPM2;
+
rc = crb_cmd_ready(dev, priv);
if (rc)
return rc;
- rc = crb_init(device, priv);
+ rc = tpm_chip_register(chip);
if (rc)
crb_go_idle(dev, priv);
--
2.7.4
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH v3 0/4] tpm/tpm_crb: implement power management. Tomas Winkler <tomas.winkler@intel.com> - 2016-09-12 15:10 +0200
[PATCH v3 3/4] tpm/tpm_crb: open code the crb_init into acpi_add Tomas Winkler <tomas.winkler@intel.com> - 2016-09-12 15:10 +0200
Re: [PATCH v3 3/4] tpm/tpm_crb: open code the crb_init into acpi_add Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com> - 2016-09-15 08:30 +0200
Re: [PATCH v3 0/4] tpm/tpm_crb: implement power management. "Winkler, Tomas" <tomas.winkler@intel.com> - 2016-09-14 08:30 +0200
Re: [PATCH v3 0/4] tpm/tpm_crb: implement power management. Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com> - 2016-09-14 18:10 +0200
Re: [PATCH v3 0/4] tpm/tpm_crb: implement power management. Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com> - 2016-09-14 18:10 +0200
Re: [PATCH v3 0/4] tpm/tpm_crb: implement power management. Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com> - 2016-09-14 20:30 +0200
csiph-web