Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S943465AbcJSOyZ convert rfc822-to-8bit (ORCPT ); Wed, 19 Oct 2016 10:54:25 -0400 Received: from mga09.intel.com ([134.134.136.24]:17238 "EHLO mga09.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S943034AbcJSOyW (ORCPT ); Wed, 19 Oct 2016 10:54:22 -0400 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.31,514,1473145200"; d="scan'208";a="1072570558" From: "Winkler, Tomas" To: Jarkko Sakkinen , "tpmdd-devel@lists.sourceforge.net" CC: open list Subject: RE: [tpmdd-devel] [PATCH] tpm, tpm_crb: remove redundant CRB_FL_CRB_START flag Thread-Topic: [tpmdd-devel] [PATCH] tpm, tpm_crb: remove redundant CRB_FL_CRB_START flag Thread-Index: AQHSKMkEqYDSAgguP0e/p0XnJoG/zKCvlBFw Date: Wed, 19 Oct 2016 10:28:29 +0000 Message-ID: <5B8DA87D05A7694D9FA63FD143655C1B542FF8FC@hasmsx108.ger.corp.intel.com> References: <20161017204224.27163-1-jarkko.sakkinen@linux.intel.com> <20161017225113.qnghq5vroxlmsurc@intel.com> In-Reply-To: <20161017225113.qnghq5vroxlmsurc@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-ctpclassification: CTP_IC x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiZDFmNjE4ZmQtNDA1MC00YWUzLTg3NWItYTA3NzI5OWNiNWEzIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX0lDIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE1LjkuNi42IiwiVHJ1c3RlZExhYmVsSGFzaCI6ImxHTDlBKzBaXC9mVUJ4WmR3cFdhc3BmZGdmWjhZXC9ndjRvaTVcL0k0TThNdVE9In0= x-originating-ip: [10.184.70.10] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 8BIT MIME-Version: 1.0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2961 Lines: 81 > > On Mon, Oct 17, 2016 at 11:42:24PM +0300, Jarkko Sakkinen wrote: > > Because all the existing hardware have HID MSFT0101 we end up always > > setting CRB_FL_CRB_START flag as a workaround for 4th Gen Core CPUs. > > Even if ACPI start is used, the driver will always issue also CRB start. Do you have some more historical data about this fix, I was wondering about this quirk before, when restructuring the start method parsing. The description is ' in practice seems to require both' sounds not certain about the root cause of this. > > This commit makes the invocation of CRB start unconditional. > > > > Signed-off-by: Jarkko Sakkinen > > --- > > drivers/char/tpm/tpm_crb.c | 16 +++++----------- > > 1 file changed, 5 insertions(+), 11 deletions(-) > > I will include this to the next version of locale series if this is accepted. Just > wanted to make sure that this is OK before I make the next version of the > series. > > /Jarkko > > > > > diff --git a/drivers/char/tpm/tpm_crb.c b/drivers/char/tpm/tpm_crb.c > > index 65040d7..5928ec8 100644 > > --- a/drivers/char/tpm/tpm_crb.c > > +++ b/drivers/char/tpm/tpm_crb.c > > @@ -72,7 +72,6 @@ enum crb_status { > > > > enum crb_flags { > > CRB_FL_ACPI_START = BIT(0), > > - CRB_FL_CRB_START = BIT(1), > > }; > > > > struct crb_priv { > > @@ -226,8 +225,11 @@ static int crb_send(struct tpm_chip *chip, u8 *buf, > size_t len) > > /* Make sure that cmd is populated before issuing start. */ > > wmb(); > > > > - if (priv->flags & CRB_FL_CRB_START) > > - iowrite32(CRB_START_INVOKE, &priv->cca->start); > > + > > + /* At least some of the 4th Gen Core CPUs that report only needing > ACPI > > + * start require also CRB start so we always set it just in case. > > + */ > > + iowrite32(CRB_START_INVOKE, &priv->cca->start); > > > > if (priv->flags & CRB_FL_ACPI_START) > > rc = crb_do_acpi_start(chip); > > @@ -407,14 +409,6 @@ static int crb_acpi_add(struct acpi_device *device) > > if (!priv) > > return -ENOMEM; > > > > - /* The reason for the extra quirk is that the PTT in 4th Gen Core CPUs > > - * report only ACPI start but in practice seems to require both > > - * ACPI start and CRB start. > > - */ > > - if (sm == ACPI_TPM2_COMMAND_BUFFER || sm == > ACPI_TPM2_MEMORY_MAPPED || > > - !strcmp(acpi_device_hid(device), "MSFT0101")) > > - priv->flags |= CRB_FL_CRB_START; > > - > > if (sm == ACPI_TPM2_START_METHOD || > > sm == ACPI_TPM2_COMMAND_BUFFER_WITH_START_METHOD) > > priv->flags |= CRB_FL_ACPI_START; > > -- > > 2.9.3 > > > > ------------------------------------------------------------------------------ > Check out the vibrant tech community on one of the world's most > engaging tech sites, SlashDot.org! http://sdm.link/slashdot > _______________________________________________ > tpmdd-devel mailing list > tpmdd-devel@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/tpmdd-devel