When I reboot I get an error
pci 0000:00:01.0: ASPM: Could not configure common clock
tpm_tis 00:01: A TPM error (7) occurred attempting to read a pcr value
and when run dmesg|grep TPM
I get
[ 4.788710] tpm_tis 00:01: 1.2 TPM (device-id 0xB, rev-id 16)
[ 5.028712] tpm_tis 00:01: TPM is disabled/deactivated (0x7)
[ 5.128725] tpm_tis 00:01: A TPM error (7) occurred attempting to read a pcr value
[ 5.128797] ima: No TPM chip found, activating TPM-bypass
Is this a cause for concern and can I do something about it?
TPM
TPM stands Trusted Platform Module and you can read more about it on Wikipedia (TPM on Wiki). The chip when present on the motherboard is used for securely producing cryptographic keys and securing the hardware components. Several laptop motherboards (and many desktop boards) have such TPM chips. The message you receive means: Either the chip is available but not recognized or it is absent. The message itself is harmless.
For your system, from the specs I see that there is a TPM chip (ver 1.2) onboard.
You can check in your BIOS under security or trusted computing section for TPM and deactivate it. Most probably this will stop the errors.
ASPM
ASPM stands for Active State Power Management whose purpose is to save power in order to extend battery life on portable devices like laptops. It instructs PCIe components to go to low power mode to save power. The parameters controlling ASPM are controllable (which by default should be on ON state).
To set the parameter for ASPM you can
These are the kernel parameters which you can try :
Disable ASPM:
Use default firmware configuration:
Disables ASPM and clock power management (bad for battery life):
Highest power saving mode, enable ASPM and clock power management:
Force ASPM on:
Force ASPM on while trying to maximize saving power:
Once you got it working make the change permanent according to the link attached (for kernel boot parameter).
Coincidentally I also experienced this problem.
I enabled the
secure boot
option in the BIOS.After restarting, the problem was solved.