Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1557695 > unrolled thread
| Started by | "Maciej S. Szmigiero" <mail@maciej.szmigiero.name> |
|---|---|
| First post | 2017-01-12 19:20 +0100 |
| Last post | 2017-01-13 17:00 +0100 |
| Articles | 7 — 3 participants |
Back to article view | Back to linux.kernel
[PATCH] tpm_tis: override reported C and D timeouts for Atmel 3203 "Maciej S. Szmigiero" <mail@maciej.szmigiero.name> - 2017-01-12 19:20 +0100
Re: [PATCH] tpm_tis: override reported C and D timeouts for Atmel 3203 Jason Gunthorpe <jgunthorpe@obsidianresearch.com> - 2017-01-12 19:50 +0100
Re: [PATCH] tpm_tis: override reported C and D timeouts for Atmel 3203 "Maciej S. Szmigiero" <mail@maciej.szmigiero.name> - 2017-01-12 21:10 +0100
Re: [PATCH] tpm_tis: override reported C and D timeouts for Atmel 3203 Jason Gunthorpe <jgunthorpe@obsidianresearch.com> - 2017-01-12 21:20 +0100
Re: [PATCH] tpm_tis: override reported C and D timeouts for Atmel 3203 Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com> - 2017-01-12 21:30 +0100
Re: [PATCH] tpm_tis: override reported C and D timeouts for Atmel 3203 "Maciej S. Szmigiero" <mail@maciej.szmigiero.name> - 2017-01-12 22:40 +0100
Re: [PATCH] tpm_tis: override reported C and D timeouts for Atmel 3203 Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com> - 2017-01-13 17:00 +0100
| From | "Maciej S. Szmigiero" <mail@maciej.szmigiero.name> |
|---|---|
| Date | 2017-01-12 19:20 +0100 |
| Subject | [PATCH] tpm_tis: override reported C and D timeouts for Atmel 3203 |
| Message-ID | <sYS8H-7eZ-25@gated-at.bofh.it> |
Since commit 1107d065fdf1 ("tpm_tis: Introduce intermediate layer for TPM
access") Atmel 3203 TPM on ThinkPad X61S (TPM firmware version 13.9) no
longer works.
It turns out the initialization proceeds fine until we get and start using
chip-reported timeouts - and the chip reports C and D timeouts of zero.
Since these are clearly not long enough let's add an override for them
to TPM TIS default values, just as we do for Atmel 3204.
A and B timeouts are set to the same values as the chip normally reports.
Signed-off-by: Maciej S. Szmigiero <mail@maciej.szmigiero.name>
Fixes: 1107d065fdf1 ("tpm_tis: Introduce intermediate layer for TPM access")
Cc: stable@vger.kernel.org
---
drivers/char/tpm/tpm_tis_core.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/drivers/char/tpm/tpm_tis_core.c b/drivers/char/tpm/tpm_tis_core.c
index 7993678954a2..e42e5a6a3c2f 100644
--- a/drivers/char/tpm/tpm_tis_core.c
+++ b/drivers/char/tpm/tpm_tis_core.c
@@ -421,6 +421,9 @@ struct tis_vendor_timeout_override {
};
static const struct tis_vendor_timeout_override vendor_timeout_overrides[] = {
+ /* Atmel 3203 */
+ { 0x32031114, { (10*1000), (10*1000),
+ (TIS_SHORT_TIMEOUT*1000), (TIS_SHORT_TIMEOUT*1000) } },
/* Atmel 3204 */
{ 0x32041114, { (TIS_SHORT_TIMEOUT*1000), (TIS_LONG_TIMEOUT*1000),
(TIS_SHORT_TIMEOUT*1000), (TIS_SHORT_TIMEOUT*1000) } },
[toc] | [next] | [standalone]
| From | Jason Gunthorpe <jgunthorpe@obsidianresearch.com> |
|---|---|
| Date | 2017-01-12 19:50 +0100 |
| Subject | Re: [PATCH] tpm_tis: override reported C and D timeouts for Atmel 3203 |
| Message-ID | <sYSBI-7oY-5@gated-at.bofh.it> |
| In reply to | #1557695 |
On Thu, Jan 12, 2017 at 07:08:53PM +0100, Maciej S. Szmigiero wrote:
> Since commit 1107d065fdf1 ("tpm_tis: Introduce intermediate layer for TPM
> access") Atmel 3203 TPM on ThinkPad X61S (TPM firmware version 13.9) no
> longer works.
> It turns out the initialization proceeds fine until we get and start using
> chip-reported timeouts - and the chip reports C and D timeouts of zero.
>
> Since these are clearly not long enough let's add an override for them
> to TPM TIS default values, just as we do for Atmel 3204.
> A and B timeouts are set to the same values as the chip normally reports.
>
> Signed-off-by: Maciej S. Szmigiero <mail@maciej.szmigiero.name>
> static const struct tis_vendor_timeout_override vendor_timeout_overrides[] = {
> + /* Atmel 3203 */
> + { 0x32031114, { (10*1000), (10*1000),
> + (TIS_SHORT_TIMEOUT*1000), (TIS_SHORT_TIMEOUT*1000) } },
> /* Atmel 3204 */
> { 0x32041114, { (TIS_SHORT_TIMEOUT*1000), (TIS_LONG_TIMEOUT*1000),
> (TIS_SHORT_TIMEOUT*1000), (TIS_SHORT_TIMEOUT*1000) } },
Can you also add a check for 0 timeouts in the core code and print a
FW_BUG :\
Jason
[toc] | [prev] | [next] | [standalone]
| From | "Maciej S. Szmigiero" <mail@maciej.szmigiero.name> |
|---|---|
| Date | 2017-01-12 21:10 +0100 |
| Subject | Re: [PATCH] tpm_tis: override reported C and D timeouts for Atmel 3203 |
| Message-ID | <sYTR7-8jl-1@gated-at.bofh.it> |
| In reply to | #1557724 |
Hi Jason,
On 12.01.2017 19:42, Jason Gunthorpe wrote:
> On Thu, Jan 12, 2017 at 07:08:53PM +0100, Maciej S. Szmigiero wrote:
>> Since commit 1107d065fdf1 ("tpm_tis: Introduce intermediate layer for TPM
>> access") Atmel 3203 TPM on ThinkPad X61S (TPM firmware version 13.9) no
>> longer works.
>> It turns out the initialization proceeds fine until we get and start using
>> chip-reported timeouts - and the chip reports C and D timeouts of zero.
>>
>> Since these are clearly not long enough let's add an override for them
>> to TPM TIS default values, just as we do for Atmel 3204.
>> A and B timeouts are set to the same values as the chip normally reports.
>>
>> Signed-off-by: Maciej S. Szmigiero <mail@maciej.szmigiero.name>
>
>> static const struct tis_vendor_timeout_override vendor_timeout_overrides[] = {
>> + /* Atmel 3203 */
>> + { 0x32031114, { (10*1000), (10*1000),
>> + (TIS_SHORT_TIMEOUT*1000), (TIS_SHORT_TIMEOUT*1000) } },
>> /* Atmel 3204 */
>> { 0x32041114, { (TIS_SHORT_TIMEOUT*1000), (TIS_LONG_TIMEOUT*1000),
>> (TIS_SHORT_TIMEOUT*1000), (TIS_SHORT_TIMEOUT*1000) } },
>
> Can you also add a check for 0 timeouts in the core code and print a
> FW_BUG :\
Hmm, I dug in history of tpm-interface.c and the code had actually rejected
zero timeouts until commit 8e54caf407b98e (this is the commit that
introduced the Atmel 3204 workaround) and let default timeout values remain
instead (it looks like they were exactly like these in above override at
that time).
Did Atmel 3204 report wrong but non-zero timeouts?
> Jason
Maciej
[toc] | [prev] | [next] | [standalone]
| From | Jason Gunthorpe <jgunthorpe@obsidianresearch.com> |
|---|---|
| Date | 2017-01-12 21:20 +0100 |
| Subject | Re: [PATCH] tpm_tis: override reported C and D timeouts for Atmel 3203 |
| Message-ID | <sYU0O-8mC-29@gated-at.bofh.it> |
| In reply to | #1557759 |
On Thu, Jan 12, 2017 at 09:09:33PM +0100, Maciej S. Szmigiero wrote: > Hmm, I dug in history of tpm-interface.c and the code had actually rejected > zero timeouts until commit 8e54caf407b98e (this is the commit that > introduced the Atmel 3204 workaround) and let default timeout values remain > instead (it looks like they were exactly like these in above override at > that time). The model changed around then.. Just printing if the timeout is 0 is enough for now.. > Did Atmel 3204 report wrong but non-zero timeouts? Yes, I think it may have.. Jason
[toc] | [prev] | [next] | [standalone]
| From | Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com> |
|---|---|
| Date | 2017-01-12 21:30 +0100 |
| Subject | Re: [PATCH] tpm_tis: override reported C and D timeouts for Atmel 3203 |
| Message-ID | <sYUau-8pV-3@gated-at.bofh.it> |
| In reply to | #1557759 |
On Thu, Jan 12, 2017 at 09:09:33PM +0100, Maciej S. Szmigiero wrote:
> Hi Jason,
>
> On 12.01.2017 19:42, Jason Gunthorpe wrote:
> > On Thu, Jan 12, 2017 at 07:08:53PM +0100, Maciej S. Szmigiero wrote:
> >> Since commit 1107d065fdf1 ("tpm_tis: Introduce intermediate layer for TPM
> >> access") Atmel 3203 TPM on ThinkPad X61S (TPM firmware version 13.9) no
> >> longer works.
> >> It turns out the initialization proceeds fine until we get and start using
> >> chip-reported timeouts - and the chip reports C and D timeouts of zero.
> >>
> >> Since these are clearly not long enough let's add an override for them
> >> to TPM TIS default values, just as we do for Atmel 3204.
> >> A and B timeouts are set to the same values as the chip normally reports.
> >>
> >> Signed-off-by: Maciej S. Szmigiero <mail@maciej.szmigiero.name>
> >
> >> static const struct tis_vendor_timeout_override vendor_timeout_overrides[] = {
> >> + /* Atmel 3203 */
> >> + { 0x32031114, { (10*1000), (10*1000),
> >> + (TIS_SHORT_TIMEOUT*1000), (TIS_SHORT_TIMEOUT*1000) } },
> >> /* Atmel 3204 */
> >> { 0x32041114, { (TIS_SHORT_TIMEOUT*1000), (TIS_LONG_TIMEOUT*1000),
> >> (TIS_SHORT_TIMEOUT*1000), (TIS_SHORT_TIMEOUT*1000) } },
> >
> > Can you also add a check for 0 timeouts in the core code and print a
> > FW_BUG :\
>
> Hmm, I dug in history of tpm-interface.c and the code had actually rejected
> zero timeouts until commit 8e54caf407b98e (this is the commit that
> introduced the Atmel 3204 workaround) and let default timeout values remain
> instead (it looks like they were exactly like these in above override at
> that time).
>
> Did Atmel 3204 report wrong but non-zero timeouts?
Wouldn't it make more sense to fix this by re-adding this fallback?
/Jarkko
[toc] | [prev] | [next] | [standalone]
| From | "Maciej S. Szmigiero" <mail@maciej.szmigiero.name> |
|---|---|
| Date | 2017-01-12 22:40 +0100 |
| Subject | Re: [PATCH] tpm_tis: override reported C and D timeouts for Atmel 3203 |
| Message-ID | <sYVgf-Ak-27@gated-at.bofh.it> |
| In reply to | #1557777 |
On 12.01.2017 21:20, Jarkko Sakkinen wrote: > On Thu, Jan 12, 2017 at 09:09:33PM +0100, Maciej S. Szmigiero wrote: >> Hi Jason, >> >> On 12.01.2017 19:42, Jason Gunthorpe wrote: (..) >>> Can you also add a check for 0 timeouts in the core code and print a >>> FW_BUG :\ >> >> Hmm, I dug in history of tpm-interface.c and the code had actually rejected >> zero timeouts until commit 8e54caf407b98e (this is the commit that >> introduced the Atmel 3204 workaround) and let default timeout values remain >> instead (it looks like they were exactly like these in above override at >> that time). >> >> Did Atmel 3204 report wrong but non-zero timeouts? > > Wouldn't it make more sense to fix this by re-adding this fallback? I think it would be a cleaner fix and also catch other problematic devices (if there are any) without needing to add individual overrides. > /Jarkko Maciej
[toc] | [prev] | [next] | [standalone]
| From | Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com> |
|---|---|
| Date | 2017-01-13 17:00 +0100 |
| Subject | Re: [PATCH] tpm_tis: override reported C and D timeouts for Atmel 3203 |
| Message-ID | <sZcqK-2FK-31@gated-at.bofh.it> |
| In reply to | #1557828 |
On Thu, Jan 12, 2017 at 10:37:31PM +0100, Maciej S. Szmigiero wrote: > On 12.01.2017 21:20, Jarkko Sakkinen wrote: > > On Thu, Jan 12, 2017 at 09:09:33PM +0100, Maciej S. Szmigiero wrote: > >> Hi Jason, > >> > >> On 12.01.2017 19:42, Jason Gunthorpe wrote: > (..) > >>> Can you also add a check for 0 timeouts in the core code and print a > >>> FW_BUG :\ > >> > >> Hmm, I dug in history of tpm-interface.c and the code had actually rejected > >> zero timeouts until commit 8e54caf407b98e (this is the commit that > >> introduced the Atmel 3204 workaround) and let default timeout values remain > >> instead (it looks like they were exactly like these in above override at > >> that time). > >> > >> Did Atmel 3204 report wrong but non-zero timeouts? > > > > Wouldn't it make more sense to fix this by re-adding this fallback? > > I think it would be a cleaner fix and also catch other problematic > devices (if there are any) without needing to add individual overrides. Please go with that but add also FW_BUG print just to be aware of chips that report zero values. /Jarkko
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web