16

The file /sys/devices/system/clocksource/clocksource0/available_clocksource in my Linux box lists the following clock sources:

tsc hpet acpi_pm

I know that tsc is the Timestamp Counter Register in the Processer. I know the hpet is the High Precision event timer.

I do not know what the acpi_pm is and what hardware implements it? Is this the PIT (programmable interval timer)?

user
  • 5,335
  • 7
  • 47
  • 63
user460880
  • 349
  • 2
  • 3
  • 7

1 Answers1

16

That's ACPI power management timer.

The ACPI Power Management Timer (or ACPI PMT) is yet another clock device included in almost all ACPI-based motherboards. Its clock signal has a fixed frequency of roughly 3.58 MHz. The device is actually a simple counter increased at each clock tick

(from Understanding the Linux Kernel)

Tobu
  • 24,771
  • 4
  • 91
  • 98
unbeli
  • 29,501
  • 5
  • 55
  • 57