From: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
To: Azhar Shaikh <azhar.shaikh@intel.com>
Cc: jgg@ziepe.ca, peterhuewe@gmx.de,
linux-security-module@vger.kernel.org,
linux-integrity@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v6 0/2] Fix corner cases with disabling CLKRUN in tpm_tis
Date: Sun, 24 Dec 2017 21:47:03 +0200 [thread overview]
Message-ID: <20171224194703.zo75mrwqmruqe65f@linux.intel.com> (raw)
In-Reply-To: <1513973624-44226-1-git-send-email-azhar.shaikh@intel.com>
On Fri, Dec 22, 2017 at 12:13:42PM -0800, Azhar Shaikh wrote:
> Changes from v1:
> - Patch 1: "tpm: Keep CLKRUN enabled throughout the duration of transmit_cmd()"
> - Add NULL checks before calling clk_toggle callback
> - Use IS_ENABLED instead of ifdef in tpm_tis_clkrun_toggle()
> - Do not call tpm_platform_begin_xfer() and tpm_platform_end_xfer()
> from tpm_tis_clkrun_toggle(). Make them static again.
>
> - Patch 2: "tpm_tis: Move ilb_base_addr to tpm_tis_tcg_phy"
> - This is a new patch in this series as per suggestion from Jason.
> - Is the current implementation ok or I should move the code in tpm_tis_pnp_remove()
> and tpm_tis_plat_remove() inside tpm_tis_remove(). That way all the unmapping
> can be done in one place, instead of 3 different places now. Also the unmapping
> in tpm_tis_init() can be moved to tpm_tis_remove(), since in case of error
> tpm_tis_core_init() calls tpm_tis_remove(). Kindly suggest.
>
> Changes from v2:
> - Patch 1: "tpm: Keep CLKRUN enabled throughout the duration of transmit_cmd()"
> - No changes
>
> - Patch 2: "tpm_tis: Move ilb_base_addr to tpm_tis_tcg_phy"
> - Updated is_bsw() function to have the #ifdef CONFIG_X86 check within the function
> itself. Also removed the #ifdef CONFIG_X86 from all other places around is_bsw()
>
> Changes from v3:
> - Patch 1: "tpm: Keep CLKRUN enabled throughout the duration of transmit_cmd()"
> - Change function name from clk_toggle to clk_enable
> - Update the commit message.
>
> - Patch 2: "tpm_tis: Move ilb_base_addr to tpm_tis_tcg_phy"
> - No changes
>
> Changes from v4:
> - The numbering of patches is now interchanged.
>
> - Patch 1: "tpm_tis: Move ilb_base_addr to tpm_tis_data"
> - Had to move ilb_base_addr to tpm_tis_data, from tpm_tis_tcg_phy.
> Since the ioremapping of ilb_base_addr had to be done before any TPM access,
> hence moved the variable to tpm_tis_data.
> - Also move the ioremapping of ilb_base_addr from tpm_tis_init() to
> tpm_tis_core_init() i.e. before any TPM access is done.
> - Rename marco LPC_CNTRL_REG_OFFSET to LPC_CNTRL_OFFSET
> - Update the commit message.
>
> - Patch 2: "tpm: Keep CLKRUN enabled throughout the duration of transmit_cmd()"
> - Remove the functions tpm_platform_begin_xfer() and tpm_platform_end_xfer()
> - Move the code from these functions to tpm_tis_clkrun_enable().
>
> Changes from v5:
> - Patch 1: "tpm_tis: Move ilb_base_addr to tpm_tis_data"
> - No changes
>
> - Patch 2: "tpm: Keep CLKRUN enabled throughout the duration of transmit_cmd()"
> - Update the commit message.
>
> Changes from v6:
> - - Patch 1: "tpm_tis: Move ilb_base_addr to tpm_tis_data"
> - No changes
>
> - Patch 2: "tpm: Keep CLKRUN enabled throughout the duration of transmit_cmd()"
> - chip->ops was set to NULL in tpm_del_char_device() called from tpm_chip_unregister() in
> error/driver exit path. Fix this code. (Suggested by Javier Martinez Canillas and Jason Gunthorpe)
> - Add a comment in tpm_tis_clkrun_enable() function.
>
> Azhar Shaikh (2):
> tpm_tis: Move ilb_base_addr to tpm_tis_data
> tpm: Keep CLKRUN enabled throughout the duration of transmit_cmd()
>
> drivers/char/tpm/tpm-interface.c | 6 ++
> drivers/char/tpm/tpm_tis.c | 121 ++++++---------------------------------
> drivers/char/tpm/tpm_tis_core.c | 111 +++++++++++++++++++++++++++++++++--
> drivers/char/tpm/tpm_tis_core.h | 17 ++++++
> include/linux/tpm.h | 1 +
> 5 files changed, 147 insertions(+), 109 deletions(-)
>
> --
> 1.9.1
>
Reviewed-by: Jarkko Sakkinen <jarkko.sakkine@linux.intel.com>
Tested-by: Jarkko Sakkinen <jarkko.sakkine@linux.intel.com> (with SPI
TPM on Sandybridge machine)
/Jarkko
WARNING: multiple messages have this Message-ID (diff)
From: jarkko.sakkinen@linux.intel.com (Jarkko Sakkinen)
To: linux-security-module@vger.kernel.org
Subject: [PATCH v6 0/2] Fix corner cases with disabling CLKRUN in tpm_tis
Date: Sun, 24 Dec 2017 21:47:03 +0200 [thread overview]
Message-ID: <20171224194703.zo75mrwqmruqe65f@linux.intel.com> (raw)
In-Reply-To: <1513973624-44226-1-git-send-email-azhar.shaikh@intel.com>
On Fri, Dec 22, 2017 at 12:13:42PM -0800, Azhar Shaikh wrote:
> Changes from v1:
> - Patch 1: "tpm: Keep CLKRUN enabled throughout the duration of transmit_cmd()"
> - Add NULL checks before calling clk_toggle callback
> - Use IS_ENABLED instead of ifdef in tpm_tis_clkrun_toggle()
> - Do not call tpm_platform_begin_xfer() and tpm_platform_end_xfer()
> from tpm_tis_clkrun_toggle(). Make them static again.
>
> - Patch 2: "tpm_tis: Move ilb_base_addr to tpm_tis_tcg_phy"
> - This is a new patch in this series as per suggestion from Jason.
> - Is the current implementation ok or I should move the code in tpm_tis_pnp_remove()
> and tpm_tis_plat_remove() inside tpm_tis_remove(). That way all the unmapping
> can be done in one place, instead of 3 different places now. Also the unmapping
> in tpm_tis_init() can be moved to tpm_tis_remove(), since in case of error
> tpm_tis_core_init() calls tpm_tis_remove(). Kindly suggest.
>
> Changes from v2:
> - Patch 1: "tpm: Keep CLKRUN enabled throughout the duration of transmit_cmd()"
> - No changes
>
> - Patch 2: "tpm_tis: Move ilb_base_addr to tpm_tis_tcg_phy"
> - Updated is_bsw() function to have the #ifdef CONFIG_X86 check within the function
> itself. Also removed the #ifdef CONFIG_X86 from all other places around is_bsw()
>
> Changes from v3:
> - Patch 1: "tpm: Keep CLKRUN enabled throughout the duration of transmit_cmd()"
> - Change function name from clk_toggle to clk_enable
> - Update the commit message.
>
> - Patch 2: "tpm_tis: Move ilb_base_addr to tpm_tis_tcg_phy"
> - No changes
>
> Changes from v4:
> - The numbering of patches is now interchanged.
>
> - Patch 1: "tpm_tis: Move ilb_base_addr to tpm_tis_data"
> - Had to move ilb_base_addr to tpm_tis_data, from tpm_tis_tcg_phy.
> Since the ioremapping of ilb_base_addr had to be done before any TPM access,
> hence moved the variable to tpm_tis_data.
> - Also move the ioremapping of ilb_base_addr from tpm_tis_init() to
> tpm_tis_core_init() i.e. before any TPM access is done.
> - Rename marco LPC_CNTRL_REG_OFFSET to LPC_CNTRL_OFFSET
> - Update the commit message.
>
> - Patch 2: "tpm: Keep CLKRUN enabled throughout the duration of transmit_cmd()"
> - Remove the functions tpm_platform_begin_xfer() and tpm_platform_end_xfer()
> - Move the code from these functions to tpm_tis_clkrun_enable().
>
> Changes from v5:
> - Patch 1: "tpm_tis: Move ilb_base_addr to tpm_tis_data"
> - No changes
>
> - Patch 2: "tpm: Keep CLKRUN enabled throughout the duration of transmit_cmd()"
> - Update the commit message.
>
> Changes from v6:
> - - Patch 1: "tpm_tis: Move ilb_base_addr to tpm_tis_data"
> - No changes
>
> - Patch 2: "tpm: Keep CLKRUN enabled throughout the duration of transmit_cmd()"
> - chip->ops was set to NULL in tpm_del_char_device() called from tpm_chip_unregister() in
> error/driver exit path. Fix this code. (Suggested by Javier Martinez Canillas and Jason Gunthorpe)
> - Add a comment in tpm_tis_clkrun_enable() function.
>
> Azhar Shaikh (2):
> tpm_tis: Move ilb_base_addr to tpm_tis_data
> tpm: Keep CLKRUN enabled throughout the duration of transmit_cmd()
>
> drivers/char/tpm/tpm-interface.c | 6 ++
> drivers/char/tpm/tpm_tis.c | 121 ++++++---------------------------------
> drivers/char/tpm/tpm_tis_core.c | 111 +++++++++++++++++++++++++++++++++--
> drivers/char/tpm/tpm_tis_core.h | 17 ++++++
> include/linux/tpm.h | 1 +
> 5 files changed, 147 insertions(+), 109 deletions(-)
>
> --
> 1.9.1
>
Reviewed-by: Jarkko Sakkinen <jarkko.sakkine@linux.intel.com>
Tested-by: Jarkko Sakkinen <jarkko.sakkine@linux.intel.com> (with SPI
TPM on Sandybridge machine)
/Jarkko
--
To unsubscribe from this list: send the line "unsubscribe linux-security-module" in
the body of a message to majordomo at vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
next prev parent reply other threads:[~2017-12-24 19:47 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-12-22 20:13 [PATCH v6 0/2] Fix corner cases with disabling CLKRUN in tpm_tis Azhar Shaikh
2017-12-22 20:13 ` Azhar Shaikh
2017-12-22 20:13 ` [PATCH v7 1/2] tpm_tis: Move ilb_base_addr to tpm_tis_data Azhar Shaikh
2017-12-22 20:13 ` Azhar Shaikh
2017-12-22 20:13 ` [PATCH v7 2/2] tpm: Keep CLKRUN enabled throughout the duration of transmit_cmd() Azhar Shaikh
2017-12-22 20:13 ` Azhar Shaikh
2017-12-24 19:47 ` Jarkko Sakkinen [this message]
2017-12-24 19:47 ` [PATCH v6 0/2] Fix corner cases with disabling CLKRUN in tpm_tis Jarkko Sakkinen
-- strict thread matches above, loose matches on Subject: below --
2017-12-07 1:38 Azhar Shaikh
2017-12-07 1:38 ` Azhar Shaikh
2017-12-08 10:51 ` Jarkko Sakkinen
2017-12-08 10:51 ` Jarkko Sakkinen
2017-11-29 18:39 Azhar Shaikh
2017-11-29 18:39 ` Azhar Shaikh
2017-11-30 16:35 ` Jarkko Sakkinen
2017-11-30 16:35 ` Jarkko Sakkinen
2017-11-30 18:37 ` Shaikh, Azhar
2017-11-30 18:37 ` Shaikh, Azhar
2017-12-07 1:30 ` Jarkko Sakkinen
2017-12-07 1:30 ` Jarkko Sakkinen
2017-12-07 1:35 ` Shaikh, Azhar
2017-12-07 1:35 ` Shaikh, Azhar
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20171224194703.zo75mrwqmruqe65f@linux.intel.com \
--to=jarkko.sakkinen@linux.intel.com \
--cc=azhar.shaikh@intel.com \
--cc=jgg@ziepe.ca \
--cc=linux-integrity@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-security-module@vger.kernel.org \
--cc=peterhuewe@gmx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.