Page MenuHomeFreeBSD

Fix bug in TPM 2.0 TIS driver.
ClosedPublic

Authored by darrick.freebsd_gmail.com on Jan 8 2020, 2:37 AM.
Tags
None
Referenced Files
Unknown Object (File)
Fri, Nov 7, 12:09 AM
Unknown Object (File)
Sat, Nov 1, 3:11 PM
Unknown Object (File)
Tue, Oct 28, 12:08 AM
Unknown Object (File)
Mon, Oct 27, 4:57 AM
Unknown Object (File)
Wed, Oct 22, 8:40 AM
Unknown Object (File)
Sat, Oct 18, 5:21 AM
Unknown Object (File)
Wed, Oct 15, 11:56 PM
Unknown Object (File)
Wed, Oct 15, 11:56 PM
Subscribers

Details

Summary

tpmtis_go_ready() reads the value of the TPM_STS register and ORs TPM_STS_CMD_READY to the existing value and writes it back to the register. However, the TPM Profile (PTP) specification states that only one bit in the write request value may be set to 1, or else the entire write request is ignored.

Also removed call which clears the TPM_STS_CMD_READY flag in the same call. It was being ignored for the same reasons.

Diff Detail

Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 28532
Build 26585: arc lint + arc unit

Event Timeline

(I suspect all of these AND4/OR4 constructs are dubious and should be removed in favor of explicit AND/ORing as necessary, but that's a larger cleanup than fixing the bug.)

This revision is now accepted and ready to land.Jan 8 2020, 2:55 AM
This revision was automatically updated to reflect the committed changes.