summaryrefslogtreecommitdiffstats
path: root/sys/dev/acpi/tpm.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* unrevert, i missed deraadt's commit with the proper fixtedu2019-05-151-1/+2
| | | | noticed by deraadt
* revert previous, since it makes jmc's machine print an extra newline.tedu2019-05-151-2/+1
| | | | several printfs here seem to have mismatched newlines?
* if \n is added in attach, then tpm_init() should skip it.deraadt2019-05-151-3/+3
|
* print a newline for attach. from f holoptedu2019-05-131-1/+2
|
* MSFT0101 must require some special handling, since this breaksderaadt2019-04-131-2/+1
| | | | suspend on some machines. Back out until more known.
* Make tpm(4) attach to MSFT0101 chips.edd2019-04-041-1/+2
| | | | | | | I found this chip in my Lenovo Thinkpad X1 (5th gen): tpm0 at acpi0: TPM_ addr 0xfed40000/0x5000: device 0x001b15d1 rev 0x10 "Yes, please commit this" deraadt@. Thanks.
* acpi: clean up some inconsistent style in the hid matching arraysmlarkin2018-07-011-2/+2
| | | | ok millert, kettenis, jcs, phessler, deraadt, mpi
* Add the resource index to aml_parse_resource() callback function.pirofti2016-10-251-3/+3
| | | | | | | This is needed by an upcoming acpiec commit that handles machines breaking the current ACPI specifications. Change suggested by and ok kettenis@, guenther@
* add a minimal TPM 1.2 driver just to issue a "save state" commandjcs2016-08-031-0/+653
before suspending, in order to fix suspend/resume on some newer machines. more cleanup and TPM 2.0 support coming later. earlier version ok pirofti ok deraadt