Commit | Line | Data |
---|---|---|
82c73e0a | 1 | // SPDX-License-Identifier: GPL-2.0-only |
5d0cf410 | 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. | |
5d0cf410 | 16 | */ |
17 | ||
d66bea57 | 18 | #include <linux/acpi_pmtmr.h> |
5d0cf410 | 19 | #include <linux/clocksource.h> |
08604bd9 | 20 | #include <linux/timex.h> |
5d0cf410 | 21 | #include <linux/errno.h> |
22 | #include <linux/init.h> | |
23 | #include <linux/pci.h> | |
4ab6a219 | 24 | #include <linux/delay.h> |
5d0cf410 | 25 | #include <asm/io.h> |
efc8b329 | 26 | #include <asm/time.h> |
5d0cf410 | 27 | |
56bd72e9 MM |
28 | static void *suspend_resume_cb_data; |
29 | ||
30 | static void (*suspend_resume_callback)(void *data, bool suspend); | |
31 | ||
5d0cf410 | 32 | /* |
33 | * The I/O port the PMTMR resides at. | |
34 | * The location is detected during setup_arch(), | |
8ce8e2f9 | 35 | * in arch/i386/kernel/acpi/boot.c |
5d0cf410 | 36 | */ |
7d622d47 | 37 | u32 pmtmr_ioport __read_mostly; |
5d0cf410 | 38 | |
5d0cf410 | 39 | static inline u32 read_pmtmr(void) |
40 | { | |
41 | /* mask the output to 24 bits */ | |
42 | return inl(pmtmr_ioport) & ACPI_PM_MASK; | |
43 | } | |
44 | ||
d66bea57 | 45 | u32 acpi_pm_read_verified(void) |
5d0cf410 | 46 | { |
47 | u32 v1 = 0, v2 = 0, v3 = 0; | |
48 | ||
49 | /* | |
50 | * It has been reported that because of various broken | |
51 | * chipsets (ICH4, PIIX4 and PIIX4E) where the ACPI PM clock | |
7d622d47 | 52 | * source is not latched, you must read it multiple |
5d0cf410 | 53 | * times to ensure a safe value is read: |
54 | */ | |
55 | do { | |
56 | v1 = read_pmtmr(); | |
57 | v2 = read_pmtmr(); | |
58 | v3 = read_pmtmr(); | |
78f32668 DW |
59 | } while (unlikely((v1 > v2 && v1 < v3) || (v2 > v3 && v2 < v1) |
60 | || (v3 > v1 && v3 < v2))); | |
5d0cf410 | 61 | |
d66bea57 TG |
62 | return v2; |
63 | } | |
64 | ||
56bd72e9 MM |
65 | void acpi_pmtmr_register_suspend_resume_callback(void (*cb)(void *data, bool suspend), void *data) |
66 | { | |
67 | suspend_resume_callback = cb; | |
68 | suspend_resume_cb_data = data; | |
69 | } | |
70 | EXPORT_SYMBOL_GPL(acpi_pmtmr_register_suspend_resume_callback); | |
71 | ||
72 | void acpi_pmtmr_unregister_suspend_resume_callback(void) | |
73 | { | |
74 | suspend_resume_callback = NULL; | |
75 | suspend_resume_cb_data = NULL; | |
76 | } | |
77 | EXPORT_SYMBOL_GPL(acpi_pmtmr_unregister_suspend_resume_callback); | |
78 | ||
79 | static void acpi_pm_suspend(struct clocksource *cs) | |
80 | { | |
81 | if (suspend_resume_callback) | |
82 | suspend_resume_callback(suspend_resume_cb_data, true); | |
83 | } | |
84 | ||
85 | static void acpi_pm_resume(struct clocksource *cs) | |
86 | { | |
87 | if (suspend_resume_callback) | |
88 | suspend_resume_callback(suspend_resume_cb_data, false); | |
89 | } | |
90 | ||
a5a1d1c2 | 91 | static u64 acpi_pm_read(struct clocksource *cs) |
5d0cf410 | 92 | { |
a5a1d1c2 | 93 | return (u64)read_pmtmr(); |
5d0cf410 | 94 | } |
95 | ||
96 | static struct clocksource clocksource_acpi_pm = { | |
97 | .name = "acpi_pm", | |
98 | .rating = 200, | |
99 | .read = acpi_pm_read, | |
a5a1d1c2 | 100 | .mask = (u64)ACPI_PM_MASK, |
73b08d2a | 101 | .flags = CLOCK_SOURCE_IS_CONTINUOUS, |
56bd72e9 MM |
102 | .suspend = acpi_pm_suspend, |
103 | .resume = acpi_pm_resume, | |
5d0cf410 | 104 | }; |
105 | ||
106 | ||
107 | #ifdef CONFIG_PCI | |
1850514b | 108 | static int acpi_pm_good; |
5d0cf410 | 109 | static int __init acpi_pm_good_setup(char *__str) |
110 | { | |
f5f1a24a DW |
111 | acpi_pm_good = 1; |
112 | return 1; | |
5d0cf410 | 113 | } |
114 | __setup("acpi_pm_good", acpi_pm_good_setup); | |
115 | ||
a5a1d1c2 | 116 | static u64 acpi_pm_read_slow(struct clocksource *cs) |
0a57b783 | 117 | { |
a5a1d1c2 | 118 | return (u64)acpi_pm_read_verified(); |
0a57b783 BH |
119 | } |
120 | ||
5d0cf410 | 121 | static inline void acpi_pm_need_workaround(void) |
122 | { | |
d66bea57 | 123 | clocksource_acpi_pm.read = acpi_pm_read_slow; |
1ff100d7 | 124 | clocksource_acpi_pm.rating = 120; |
5d0cf410 | 125 | } |
126 | ||
127 | /* | |
128 | * PIIX4 Errata: | |
129 | * | |
130 | * The power management timer may return improper results when read. | |
131 | * Although the timer value settles properly after incrementing, | |
132 | * while incrementing there is a 3 ns window every 69.8 ns where the | |
133 | * timer value is indeterminate (a 4.2% chance that the data will be | |
134 | * incorrect when read). As a result, the ACPI free running count up | |
135 | * timer specification is violated due to erroneous reads. | |
136 | */ | |
1850514b | 137 | static void acpi_pm_check_blacklist(struct pci_dev *dev) |
5d0cf410 | 138 | { |
5d0cf410 | 139 | if (acpi_pm_good) |
140 | return; | |
141 | ||
5d0cf410 | 142 | /* the bug has been fixed in PIIX4M */ |
44c10138 | 143 | if (dev->revision < 3) { |
01414888 AS |
144 | pr_warn("* Found PM-Timer Bug on the chipset. Due to workarounds for a bug,\n" |
145 | "* this clock source is slow. Consider trying other clock sources\n"); | |
5d0cf410 | 146 | |
147 | acpi_pm_need_workaround(); | |
148 | } | |
149 | } | |
150 | DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82371AB_3, | |
151 | acpi_pm_check_blacklist); | |
152 | ||
1850514b | 153 | static void acpi_pm_check_graylist(struct pci_dev *dev) |
5d0cf410 | 154 | { |
155 | if (acpi_pm_good) | |
156 | return; | |
157 | ||
01414888 AS |
158 | pr_warn("* The chipset may have PM-Timer Bug. Due to workarounds for a bug,\n" |
159 | "* this clock source is slow. If you are sure your timer does not have\n" | |
160 | "* this bug, please use \"acpi_pm_good\" to disable the workaround\n"); | |
5d0cf410 | 161 | |
162 | acpi_pm_need_workaround(); | |
163 | } | |
164 | DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801DB_0, | |
165 | acpi_pm_check_graylist); | |
78f32668 DW |
166 | DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_SERVERWORKS, PCI_DEVICE_ID_SERVERWORKS_LE, |
167 | acpi_pm_check_graylist); | |
5d0cf410 | 168 | #endif |
169 | ||
562f9c57 | 170 | #ifndef CONFIG_X86_64 |
1164dd00 | 171 | #include <asm/mach_timer.h> |
562f9c57 | 172 | #define PMTMR_EXPECTED_RATE \ |
cbf1599b | 173 | ((CALIBRATE_LATCH * (PMTMR_TICKS_PER_SEC >> 10)) / (PIT_TICK_RATE>>10)) |
562f9c57 | 174 | /* |
175 | * Some boards have the PMTMR running way too fast. We check | |
176 | * the PMTMR rate against PIT channel 2 to catch these cases. | |
177 | */ | |
178 | static int verify_pmtmr_rate(void) | |
179 | { | |
a5a1d1c2 | 180 | u64 value1, value2; |
562f9c57 | 181 | unsigned long count, delta; |
182 | ||
183 | mach_prepare_counter(); | |
8e19608e | 184 | value1 = clocksource_acpi_pm.read(&clocksource_acpi_pm); |
562f9c57 | 185 | mach_countup(&count); |
8e19608e | 186 | value2 = clocksource_acpi_pm.read(&clocksource_acpi_pm); |
562f9c57 | 187 | delta = (value2 - value1) & ACPI_PM_MASK; |
188 | ||
189 | /* Check that the PMTMR delta is within 5% of what we expect */ | |
190 | if (delta < (PMTMR_EXPECTED_RATE * 19) / 20 || | |
191 | delta > (PMTMR_EXPECTED_RATE * 21) / 20) { | |
01414888 | 192 | pr_info("PM-Timer running at invalid rate: %lu%% of normal - aborting.\n", |
562f9c57 | 193 | 100UL * delta / PMTMR_EXPECTED_RATE); |
194 | return -1; | |
195 | } | |
196 | ||
197 | return 0; | |
198 | } | |
199 | #else | |
200 | #define verify_pmtmr_rate() (0) | |
201 | #endif | |
5d0cf410 | 202 | |
4ab6a219 DB |
203 | /* Number of monotonicity checks to perform during initialization */ |
204 | #define ACPI_PM_MONOTONICITY_CHECKS 10 | |
f1926ce6 DB |
205 | /* Number of reads we try to get two different values */ |
206 | #define ACPI_PM_READ_CHECKS 10000 | |
4ab6a219 | 207 | |
d48fc63f | 208 | static int __init init_acpi_pm_clocksource(void) |
5d0cf410 | 209 | { |
a5a1d1c2 | 210 | u64 value1, value2; |
f1926ce6 | 211 | unsigned int i, j = 0; |
5d0cf410 | 212 | |
d48fc63f TG |
213 | if (!pmtmr_ioport) |
214 | return -ENODEV; | |
5d0cf410 | 215 | |
5d0cf410 | 216 | /* "verify" this timing source: */ |
4ab6a219 | 217 | for (j = 0; j < ACPI_PM_MONOTONICITY_CHECKS; j++) { |
d48fc63f | 218 | udelay(100 * j); |
8e19608e | 219 | value1 = clocksource_acpi_pm.read(&clocksource_acpi_pm); |
f1926ce6 | 220 | for (i = 0; i < ACPI_PM_READ_CHECKS; i++) { |
8e19608e | 221 | value2 = clocksource_acpi_pm.read(&clocksource_acpi_pm); |
4ab6a219 DB |
222 | if (value2 == value1) |
223 | continue; | |
224 | if (value2 > value1) | |
4ab6a219 DB |
225 | break; |
226 | if ((value2 < value1) && ((value2) < 0xFFF)) | |
4ab6a219 | 227 | break; |
01414888 AS |
228 | pr_info("PM-Timer had inconsistent results: %#llx, %#llx - aborting.\n", |
229 | value1, value2); | |
db6b175f | 230 | pmtmr_ioport = 0; |
d48fc63f | 231 | return -EINVAL; |
4ab6a219 | 232 | } |
f1926ce6 | 233 | if (i == ACPI_PM_READ_CHECKS) { |
01414888 AS |
234 | pr_info("PM-Timer failed consistency check (%#llx) - aborting.\n", |
235 | value1); | |
db6b175f | 236 | pmtmr_ioport = 0; |
d48fc63f | 237 | return -ENODEV; |
f1926ce6 | 238 | } |
5d0cf410 | 239 | } |
5d0cf410 | 240 | |
db6b175f KRW |
241 | if (verify_pmtmr_rate() != 0){ |
242 | pmtmr_ioport = 0; | |
d48fc63f | 243 | return -ENODEV; |
db6b175f | 244 | } |
562f9c57 | 245 | |
efc8b329 PM |
246 | if (tsc_clocksource_watchdog_disabled()) |
247 | clocksource_acpi_pm.flags |= CLOCK_SOURCE_MUST_VERIFY; | |
248 | return clocksource_register_hz(&clocksource_acpi_pm, PMTMR_TICKS_PER_SEC); | |
5d0cf410 | 249 | } |
250 | ||
6bb74df4 | 251 | /* We use fs_initcall because we want the PCI fixups to have run |
252 | * but we still need to load before device_initcall | |
253 | */ | |
254 | fs_initcall(init_acpi_pm_clocksource); | |
6b148507 TG |
255 | |
256 | /* | |
257 | * Allow an override of the IOPort. Stupid BIOSes do not tell us about | |
258 | * the PMTimer, but we might know where it is. | |
259 | */ | |
260 | static int __init parse_pmtmr(char *arg) | |
261 | { | |
60e3bf14 DC |
262 | unsigned int base; |
263 | int ret; | |
6b148507 | 264 | |
60e3bf14 | 265 | ret = kstrtouint(arg, 16, &base); |
6a861abc RD |
266 | if (ret) { |
267 | pr_warn("PMTMR: invalid 'pmtmr=' value: '%s'\n", arg); | |
268 | return 1; | |
269 | } | |
60e3bf14 DC |
270 | |
271 | pr_info("PMTMR IOPort override: 0x%04x -> 0x%04x\n", pmtmr_ioport, | |
272 | base); | |
6b148507 TG |
273 | pmtmr_ioport = base; |
274 | ||
275 | return 1; | |
276 | } | |
277 | __setup("pmtmr=", parse_pmtmr); |