Thomas Gleixner | 82c73e0 | 2019-06-03 07:44:59 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
john stultz | 5d0cf41 | 2006-06-26 00:25:12 -0700 | [diff] [blame] | 2 | /* |
| 3 | * linux/drivers/clocksource/acpi_pm.c |
| 4 | * |
| 5 | * This file contains the ACPI PM based clocksource. |
| 6 | * |
| 7 | * This code was largely moved from the i386 timer_pm.c file |
| 8 | * which was (C) Dominik Brodowski <linux@brodo.de> 2003 |
| 9 | * and contained the following comments: |
| 10 | * |
| 11 | * Driver to use the Power Management Timer (PMTMR) available in some |
| 12 | * southbridges as primary timing source for the Linux kernel. |
| 13 | * |
| 14 | * Based on parts of linux/drivers/acpi/hardware/hwtimer.c, timer_pit.c, |
| 15 | * timer_hpet.c, and on Arjan van de Ven's implementation for 2.4. |
john stultz | 5d0cf41 | 2006-06-26 00:25:12 -0700 | [diff] [blame] | 16 | */ |
| 17 | |
Thomas Gleixner | d66bea5 | 2007-02-16 01:27:57 -0800 | [diff] [blame] | 18 | #include <linux/acpi_pmtmr.h> |
john stultz | 5d0cf41 | 2006-06-26 00:25:12 -0700 | [diff] [blame] | 19 | #include <linux/clocksource.h> |
Arnd Bergmann | 08604bd | 2009-06-16 15:31:12 -0700 | [diff] [blame] | 20 | #include <linux/timex.h> |
john stultz | 5d0cf41 | 2006-06-26 00:25:12 -0700 | [diff] [blame] | 21 | #include <linux/errno.h> |
| 22 | #include <linux/init.h> |
| 23 | #include <linux/pci.h> |
Dominik Brodowski | 4ab6a21 | 2008-09-05 14:05:35 -0700 | [diff] [blame] | 24 | #include <linux/delay.h> |
john stultz | 5d0cf41 | 2006-06-26 00:25:12 -0700 | [diff] [blame] | 25 | #include <asm/io.h> |
| 26 | |
john stultz | 5d0cf41 | 2006-06-26 00:25:12 -0700 | [diff] [blame] | 27 | /* |
| 28 | * The I/O port the PMTMR resides at. |
| 29 | * The location is detected during setup_arch(), |
Daniel Walker | 8ce8e2f | 2007-04-25 14:27:06 -0400 | [diff] [blame] | 30 | * in arch/i386/kernel/acpi/boot.c |
john stultz | 5d0cf41 | 2006-06-26 00:25:12 -0700 | [diff] [blame] | 31 | */ |
Andreas Mohr | 7d622d4 | 2006-06-26 00:25:14 -0700 | [diff] [blame] | 32 | u32 pmtmr_ioport __read_mostly; |
john stultz | 5d0cf41 | 2006-06-26 00:25:12 -0700 | [diff] [blame] | 33 | |
john stultz | 5d0cf41 | 2006-06-26 00:25:12 -0700 | [diff] [blame] | 34 | static inline u32 read_pmtmr(void) |
| 35 | { |
| 36 | /* mask the output to 24 bits */ |
| 37 | return inl(pmtmr_ioport) & ACPI_PM_MASK; |
| 38 | } |
| 39 | |
Thomas Gleixner | d66bea5 | 2007-02-16 01:27:57 -0800 | [diff] [blame] | 40 | u32 acpi_pm_read_verified(void) |
john stultz | 5d0cf41 | 2006-06-26 00:25:12 -0700 | [diff] [blame] | 41 | { |
| 42 | u32 v1 = 0, v2 = 0, v3 = 0; |
| 43 | |
| 44 | /* |
| 45 | * It has been reported that because of various broken |
| 46 | * chipsets (ICH4, PIIX4 and PIIX4E) where the ACPI PM clock |
Andreas Mohr | 7d622d4 | 2006-06-26 00:25:14 -0700 | [diff] [blame] | 47 | * source is not latched, you must read it multiple |
john stultz | 5d0cf41 | 2006-06-26 00:25:12 -0700 | [diff] [blame] | 48 | * times to ensure a safe value is read: |
| 49 | */ |
| 50 | do { |
| 51 | v1 = read_pmtmr(); |
| 52 | v2 = read_pmtmr(); |
| 53 | v3 = read_pmtmr(); |
Daniel Walker | 78f3266 | 2006-10-21 10:24:10 -0700 | [diff] [blame] | 54 | } while (unlikely((v1 > v2 && v1 < v3) || (v2 > v3 && v2 < v1) |
| 55 | || (v3 > v1 && v3 < v2))); |
john stultz | 5d0cf41 | 2006-06-26 00:25:12 -0700 | [diff] [blame] | 56 | |
Thomas Gleixner | d66bea5 | 2007-02-16 01:27:57 -0800 | [diff] [blame] | 57 | return v2; |
| 58 | } |
| 59 | |
Thomas Gleixner | a5a1d1c | 2016-12-21 20:32:01 +0100 | [diff] [blame] | 60 | static u64 acpi_pm_read(struct clocksource *cs) |
john stultz | 5d0cf41 | 2006-06-26 00:25:12 -0700 | [diff] [blame] | 61 | { |
Thomas Gleixner | a5a1d1c | 2016-12-21 20:32:01 +0100 | [diff] [blame] | 62 | return (u64)read_pmtmr(); |
john stultz | 5d0cf41 | 2006-06-26 00:25:12 -0700 | [diff] [blame] | 63 | } |
| 64 | |
| 65 | static struct clocksource clocksource_acpi_pm = { |
| 66 | .name = "acpi_pm", |
| 67 | .rating = 200, |
| 68 | .read = acpi_pm_read, |
Thomas Gleixner | a5a1d1c | 2016-12-21 20:32:01 +0100 | [diff] [blame] | 69 | .mask = (u64)ACPI_PM_MASK, |
Thomas Gleixner | 73b08d2 | 2007-02-16 01:27:36 -0800 | [diff] [blame] | 70 | .flags = CLOCK_SOURCE_IS_CONTINUOUS, |
john stultz | 5d0cf41 | 2006-06-26 00:25:12 -0700 | [diff] [blame] | 71 | }; |
| 72 | |
| 73 | |
| 74 | #ifdef CONFIG_PCI |
Greg Kroah-Hartman | 1850514 | 2012-12-21 15:11:38 -0800 | [diff] [blame] | 75 | static int acpi_pm_good; |
john stultz | 5d0cf41 | 2006-06-26 00:25:12 -0700 | [diff] [blame] | 76 | static int __init acpi_pm_good_setup(char *__str) |
| 77 | { |
Daniel Walker | f5f1a24 | 2006-12-10 02:21:33 -0800 | [diff] [blame] | 78 | acpi_pm_good = 1; |
| 79 | return 1; |
john stultz | 5d0cf41 | 2006-06-26 00:25:12 -0700 | [diff] [blame] | 80 | } |
| 81 | __setup("acpi_pm_good", acpi_pm_good_setup); |
| 82 | |
Thomas Gleixner | a5a1d1c | 2016-12-21 20:32:01 +0100 | [diff] [blame] | 83 | static u64 acpi_pm_read_slow(struct clocksource *cs) |
Bjorn Helgaas | 0a57b78 | 2008-12-01 14:18:12 -0800 | [diff] [blame] | 84 | { |
Thomas Gleixner | a5a1d1c | 2016-12-21 20:32:01 +0100 | [diff] [blame] | 85 | return (u64)acpi_pm_read_verified(); |
Bjorn Helgaas | 0a57b78 | 2008-12-01 14:18:12 -0800 | [diff] [blame] | 86 | } |
| 87 | |
john stultz | 5d0cf41 | 2006-06-26 00:25:12 -0700 | [diff] [blame] | 88 | static inline void acpi_pm_need_workaround(void) |
| 89 | { |
Thomas Gleixner | d66bea5 | 2007-02-16 01:27:57 -0800 | [diff] [blame] | 90 | clocksource_acpi_pm.read = acpi_pm_read_slow; |
john stultz | 1ff100d | 2007-03-26 21:32:19 -0800 | [diff] [blame] | 91 | clocksource_acpi_pm.rating = 120; |
john stultz | 5d0cf41 | 2006-06-26 00:25:12 -0700 | [diff] [blame] | 92 | } |
| 93 | |
| 94 | /* |
| 95 | * PIIX4 Errata: |
| 96 | * |
| 97 | * The power management timer may return improper results when read. |
| 98 | * Although the timer value settles properly after incrementing, |
| 99 | * while incrementing there is a 3 ns window every 69.8 ns where the |
| 100 | * timer value is indeterminate (a 4.2% chance that the data will be |
| 101 | * incorrect when read). As a result, the ACPI free running count up |
| 102 | * timer specification is violated due to erroneous reads. |
| 103 | */ |
Greg Kroah-Hartman | 1850514 | 2012-12-21 15:11:38 -0800 | [diff] [blame] | 104 | static void acpi_pm_check_blacklist(struct pci_dev *dev) |
john stultz | 5d0cf41 | 2006-06-26 00:25:12 -0700 | [diff] [blame] | 105 | { |
john stultz | 5d0cf41 | 2006-06-26 00:25:12 -0700 | [diff] [blame] | 106 | if (acpi_pm_good) |
| 107 | return; |
| 108 | |
john stultz | 5d0cf41 | 2006-06-26 00:25:12 -0700 | [diff] [blame] | 109 | /* the bug has been fixed in PIIX4M */ |
Auke Kok | 44c1013 | 2007-06-08 15:46:36 -0700 | [diff] [blame] | 110 | if (dev->revision < 3) { |
Andy Shevchenko | 0141488 | 2015-12-28 15:41:25 +0200 | [diff] [blame] | 111 | pr_warn("* Found PM-Timer Bug on the chipset. Due to workarounds for a bug,\n" |
| 112 | "* this clock source is slow. Consider trying other clock sources\n"); |
john stultz | 5d0cf41 | 2006-06-26 00:25:12 -0700 | [diff] [blame] | 113 | |
| 114 | acpi_pm_need_workaround(); |
| 115 | } |
| 116 | } |
| 117 | DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82371AB_3, |
| 118 | acpi_pm_check_blacklist); |
| 119 | |
Greg Kroah-Hartman | 1850514 | 2012-12-21 15:11:38 -0800 | [diff] [blame] | 120 | static void acpi_pm_check_graylist(struct pci_dev *dev) |
john stultz | 5d0cf41 | 2006-06-26 00:25:12 -0700 | [diff] [blame] | 121 | { |
| 122 | if (acpi_pm_good) |
| 123 | return; |
| 124 | |
Andy Shevchenko | 0141488 | 2015-12-28 15:41:25 +0200 | [diff] [blame] | 125 | pr_warn("* The chipset may have PM-Timer Bug. Due to workarounds for a bug,\n" |
| 126 | "* this clock source is slow. If you are sure your timer does not have\n" |
| 127 | "* this bug, please use \"acpi_pm_good\" to disable the workaround\n"); |
john stultz | 5d0cf41 | 2006-06-26 00:25:12 -0700 | [diff] [blame] | 128 | |
| 129 | acpi_pm_need_workaround(); |
| 130 | } |
| 131 | DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801DB_0, |
| 132 | acpi_pm_check_graylist); |
Daniel Walker | 78f3266 | 2006-10-21 10:24:10 -0700 | [diff] [blame] | 133 | DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_SERVERWORKS, PCI_DEVICE_ID_SERVERWORKS_LE, |
| 134 | acpi_pm_check_graylist); |
john stultz | 5d0cf41 | 2006-06-26 00:25:12 -0700 | [diff] [blame] | 135 | #endif |
| 136 | |
john stultz | 562f9c5 | 2006-12-08 02:36:02 -0800 | [diff] [blame] | 137 | #ifndef CONFIG_X86_64 |
Ingo Molnar | 1164dd0 | 2009-01-28 19:34:09 +0100 | [diff] [blame] | 138 | #include <asm/mach_timer.h> |
john stultz | 562f9c5 | 2006-12-08 02:36:02 -0800 | [diff] [blame] | 139 | #define PMTMR_EXPECTED_RATE \ |
Deepak Saxena | cbf1599 | 2011-11-01 14:25:01 -0700 | [diff] [blame] | 140 | ((CALIBRATE_LATCH * (PMTMR_TICKS_PER_SEC >> 10)) / (PIT_TICK_RATE>>10)) |
john stultz | 562f9c5 | 2006-12-08 02:36:02 -0800 | [diff] [blame] | 141 | /* |
| 142 | * Some boards have the PMTMR running way too fast. We check |
| 143 | * the PMTMR rate against PIT channel 2 to catch these cases. |
| 144 | */ |
| 145 | static int verify_pmtmr_rate(void) |
| 146 | { |
Thomas Gleixner | a5a1d1c | 2016-12-21 20:32:01 +0100 | [diff] [blame] | 147 | u64 value1, value2; |
john stultz | 562f9c5 | 2006-12-08 02:36:02 -0800 | [diff] [blame] | 148 | unsigned long count, delta; |
| 149 | |
| 150 | mach_prepare_counter(); |
Magnus Damm | 8e19608 | 2009-04-21 12:24:00 -0700 | [diff] [blame] | 151 | value1 = clocksource_acpi_pm.read(&clocksource_acpi_pm); |
john stultz | 562f9c5 | 2006-12-08 02:36:02 -0800 | [diff] [blame] | 152 | mach_countup(&count); |
Magnus Damm | 8e19608 | 2009-04-21 12:24:00 -0700 | [diff] [blame] | 153 | value2 = clocksource_acpi_pm.read(&clocksource_acpi_pm); |
john stultz | 562f9c5 | 2006-12-08 02:36:02 -0800 | [diff] [blame] | 154 | delta = (value2 - value1) & ACPI_PM_MASK; |
| 155 | |
| 156 | /* Check that the PMTMR delta is within 5% of what we expect */ |
| 157 | if (delta < (PMTMR_EXPECTED_RATE * 19) / 20 || |
| 158 | delta > (PMTMR_EXPECTED_RATE * 21) / 20) { |
Andy Shevchenko | 0141488 | 2015-12-28 15:41:25 +0200 | [diff] [blame] | 159 | pr_info("PM-Timer running at invalid rate: %lu%% of normal - aborting.\n", |
john stultz | 562f9c5 | 2006-12-08 02:36:02 -0800 | [diff] [blame] | 160 | 100UL * delta / PMTMR_EXPECTED_RATE); |
| 161 | return -1; |
| 162 | } |
| 163 | |
| 164 | return 0; |
| 165 | } |
| 166 | #else |
| 167 | #define verify_pmtmr_rate() (0) |
| 168 | #endif |
john stultz | 5d0cf41 | 2006-06-26 00:25:12 -0700 | [diff] [blame] | 169 | |
Dominik Brodowski | 4ab6a21 | 2008-09-05 14:05:35 -0700 | [diff] [blame] | 170 | /* Number of monotonicity checks to perform during initialization */ |
| 171 | #define ACPI_PM_MONOTONICITY_CHECKS 10 |
Dominik Brodowski | f1926ce | 2008-09-11 11:09:49 +0200 | [diff] [blame] | 172 | /* Number of reads we try to get two different values */ |
| 173 | #define ACPI_PM_READ_CHECKS 10000 |
Dominik Brodowski | 4ab6a21 | 2008-09-05 14:05:35 -0700 | [diff] [blame] | 174 | |
Thomas Gleixner | d48fc63 | 2012-04-11 23:49:16 +0200 | [diff] [blame] | 175 | static int __init init_acpi_pm_clocksource(void) |
john stultz | 5d0cf41 | 2006-06-26 00:25:12 -0700 | [diff] [blame] | 176 | { |
Thomas Gleixner | a5a1d1c | 2016-12-21 20:32:01 +0100 | [diff] [blame] | 177 | u64 value1, value2; |
Dominik Brodowski | f1926ce | 2008-09-11 11:09:49 +0200 | [diff] [blame] | 178 | unsigned int i, j = 0; |
john stultz | 5d0cf41 | 2006-06-26 00:25:12 -0700 | [diff] [blame] | 179 | |
Thomas Gleixner | d48fc63 | 2012-04-11 23:49:16 +0200 | [diff] [blame] | 180 | if (!pmtmr_ioport) |
| 181 | return -ENODEV; |
john stultz | 5d0cf41 | 2006-06-26 00:25:12 -0700 | [diff] [blame] | 182 | |
john stultz | 5d0cf41 | 2006-06-26 00:25:12 -0700 | [diff] [blame] | 183 | /* "verify" this timing source: */ |
Dominik Brodowski | 4ab6a21 | 2008-09-05 14:05:35 -0700 | [diff] [blame] | 184 | for (j = 0; j < ACPI_PM_MONOTONICITY_CHECKS; j++) { |
Thomas Gleixner | d48fc63 | 2012-04-11 23:49:16 +0200 | [diff] [blame] | 185 | udelay(100 * j); |
Magnus Damm | 8e19608 | 2009-04-21 12:24:00 -0700 | [diff] [blame] | 186 | value1 = clocksource_acpi_pm.read(&clocksource_acpi_pm); |
Dominik Brodowski | f1926ce | 2008-09-11 11:09:49 +0200 | [diff] [blame] | 187 | for (i = 0; i < ACPI_PM_READ_CHECKS; i++) { |
Magnus Damm | 8e19608 | 2009-04-21 12:24:00 -0700 | [diff] [blame] | 188 | value2 = clocksource_acpi_pm.read(&clocksource_acpi_pm); |
Dominik Brodowski | 4ab6a21 | 2008-09-05 14:05:35 -0700 | [diff] [blame] | 189 | if (value2 == value1) |
| 190 | continue; |
| 191 | if (value2 > value1) |
Dominik Brodowski | 4ab6a21 | 2008-09-05 14:05:35 -0700 | [diff] [blame] | 192 | break; |
| 193 | if ((value2 < value1) && ((value2) < 0xFFF)) |
Dominik Brodowski | 4ab6a21 | 2008-09-05 14:05:35 -0700 | [diff] [blame] | 194 | break; |
Andy Shevchenko | 0141488 | 2015-12-28 15:41:25 +0200 | [diff] [blame] | 195 | pr_info("PM-Timer had inconsistent results: %#llx, %#llx - aborting.\n", |
| 196 | value1, value2); |
Konrad Rzeszutek Wilk | db6b175 | 2011-01-14 09:47:26 -0800 | [diff] [blame] | 197 | pmtmr_ioport = 0; |
Thomas Gleixner | d48fc63 | 2012-04-11 23:49:16 +0200 | [diff] [blame] | 198 | return -EINVAL; |
Dominik Brodowski | 4ab6a21 | 2008-09-05 14:05:35 -0700 | [diff] [blame] | 199 | } |
Dominik Brodowski | f1926ce | 2008-09-11 11:09:49 +0200 | [diff] [blame] | 200 | if (i == ACPI_PM_READ_CHECKS) { |
Andy Shevchenko | 0141488 | 2015-12-28 15:41:25 +0200 | [diff] [blame] | 201 | pr_info("PM-Timer failed consistency check (%#llx) - aborting.\n", |
| 202 | value1); |
Konrad Rzeszutek Wilk | db6b175 | 2011-01-14 09:47:26 -0800 | [diff] [blame] | 203 | pmtmr_ioport = 0; |
Thomas Gleixner | d48fc63 | 2012-04-11 23:49:16 +0200 | [diff] [blame] | 204 | return -ENODEV; |
Dominik Brodowski | f1926ce | 2008-09-11 11:09:49 +0200 | [diff] [blame] | 205 | } |
john stultz | 5d0cf41 | 2006-06-26 00:25:12 -0700 | [diff] [blame] | 206 | } |
john stultz | 5d0cf41 | 2006-06-26 00:25:12 -0700 | [diff] [blame] | 207 | |
Konrad Rzeszutek Wilk | db6b175 | 2011-01-14 09:47:26 -0800 | [diff] [blame] | 208 | if (verify_pmtmr_rate() != 0){ |
| 209 | pmtmr_ioport = 0; |
Thomas Gleixner | d48fc63 | 2012-04-11 23:49:16 +0200 | [diff] [blame] | 210 | return -ENODEV; |
Konrad Rzeszutek Wilk | db6b175 | 2011-01-14 09:47:26 -0800 | [diff] [blame] | 211 | } |
john stultz | 562f9c5 | 2006-12-08 02:36:02 -0800 | [diff] [blame] | 212 | |
Thomas Gleixner | d48fc63 | 2012-04-11 23:49:16 +0200 | [diff] [blame] | 213 | return clocksource_register_hz(&clocksource_acpi_pm, |
John Stultz | f12a15b | 2010-07-13 17:56:27 -0700 | [diff] [blame] | 214 | PMTMR_TICKS_PER_SEC); |
john stultz | 5d0cf41 | 2006-06-26 00:25:12 -0700 | [diff] [blame] | 215 | } |
| 216 | |
john stultz | 6bb74df | 2007-03-05 00:30:50 -0800 | [diff] [blame] | 217 | /* We use fs_initcall because we want the PCI fixups to have run |
| 218 | * but we still need to load before device_initcall |
| 219 | */ |
| 220 | fs_initcall(init_acpi_pm_clocksource); |
Thomas Gleixner | 6b14850 | 2008-05-21 21:14:58 +0200 | [diff] [blame] | 221 | |
| 222 | /* |
| 223 | * Allow an override of the IOPort. Stupid BIOSes do not tell us about |
| 224 | * the PMTimer, but we might know where it is. |
| 225 | */ |
| 226 | static int __init parse_pmtmr(char *arg) |
| 227 | { |
Dan Carpenter | 60e3bf1 | 2012-10-20 07:46:02 +0300 | [diff] [blame] | 228 | unsigned int base; |
| 229 | int ret; |
Thomas Gleixner | 6b14850 | 2008-05-21 21:14:58 +0200 | [diff] [blame] | 230 | |
Dan Carpenter | 60e3bf1 | 2012-10-20 07:46:02 +0300 | [diff] [blame] | 231 | ret = kstrtouint(arg, 16, &base); |
| 232 | if (ret) |
| 233 | return ret; |
| 234 | |
| 235 | pr_info("PMTMR IOPort override: 0x%04x -> 0x%04x\n", pmtmr_ioport, |
| 236 | base); |
Thomas Gleixner | 6b14850 | 2008-05-21 21:14:58 +0200 | [diff] [blame] | 237 | pmtmr_ioport = base; |
| 238 | |
| 239 | return 1; |
| 240 | } |
| 241 | __setup("pmtmr=", parse_pmtmr); |