blob: c7276a61695b1ec0f20905124a675a667f586882 [file] [log] [blame]
john stultz5d0cf412006-06-26 00:25:12 -07001/*
2 * linux/drivers/clocksource/acpi_pm.c
3 *
4 * This file contains the ACPI PM based clocksource.
5 *
6 * This code was largely moved from the i386 timer_pm.c file
7 * which was (C) Dominik Brodowski <linux@brodo.de> 2003
8 * and contained the following comments:
9 *
10 * Driver to use the Power Management Timer (PMTMR) available in some
11 * southbridges as primary timing source for the Linux kernel.
12 *
13 * Based on parts of linux/drivers/acpi/hardware/hwtimer.c, timer_pit.c,
14 * timer_hpet.c, and on Arjan van de Ven's implementation for 2.4.
15 *
16 * This file is licensed under the GPL v2.
17 */
18
19#include <linux/clocksource.h>
20#include <linux/errno.h>
21#include <linux/init.h>
22#include <linux/pci.h>
23#include <asm/io.h>
24
25/* Number of PMTMR ticks expected during calibration run */
26#define PMTMR_TICKS_PER_SEC 3579545
27
28/*
29 * The I/O port the PMTMR resides at.
30 * The location is detected during setup_arch(),
31 * in arch/i386/acpi/boot.c
32 */
Andreas Mohr7d622d42006-06-26 00:25:14 -070033u32 pmtmr_ioport __read_mostly;
john stultz5d0cf412006-06-26 00:25:12 -070034
Jim Cromie7f9f3032006-06-26 00:25:15 -070035#define ACPI_PM_MASK CLOCKSOURCE_MASK(24) /* limit it to 24 bits */
john stultz5d0cf412006-06-26 00:25:12 -070036
37static inline u32 read_pmtmr(void)
38{
39 /* mask the output to 24 bits */
40 return inl(pmtmr_ioport) & ACPI_PM_MASK;
41}
42
43static cycle_t acpi_pm_read_verified(void)
44{
45 u32 v1 = 0, v2 = 0, v3 = 0;
46
47 /*
48 * It has been reported that because of various broken
49 * chipsets (ICH4, PIIX4 and PIIX4E) where the ACPI PM clock
Andreas Mohr7d622d42006-06-26 00:25:14 -070050 * source is not latched, you must read it multiple
john stultz5d0cf412006-06-26 00:25:12 -070051 * times to ensure a safe value is read:
52 */
53 do {
54 v1 = read_pmtmr();
55 v2 = read_pmtmr();
56 v3 = read_pmtmr();
Daniel Walker78f32662006-10-21 10:24:10 -070057 } while (unlikely((v1 > v2 && v1 < v3) || (v2 > v3 && v2 < v1)
58 || (v3 > v1 && v3 < v2)));
john stultz5d0cf412006-06-26 00:25:12 -070059
60 return (cycle_t)v2;
61}
62
63static cycle_t acpi_pm_read(void)
64{
65 return (cycle_t)read_pmtmr();
66}
67
68static struct clocksource clocksource_acpi_pm = {
69 .name = "acpi_pm",
70 .rating = 200,
71 .read = acpi_pm_read,
72 .mask = (cycle_t)ACPI_PM_MASK,
73 .mult = 0, /*to be caluclated*/
74 .shift = 22,
Thomas Gleixner73b08d22007-02-16 01:27:36 -080075 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
76
john stultz5d0cf412006-06-26 00:25:12 -070077};
78
79
80#ifdef CONFIG_PCI
Daniel Walkerf5f1a242006-12-10 02:21:33 -080081static int __devinitdata acpi_pm_good;
john stultz5d0cf412006-06-26 00:25:12 -070082static int __init acpi_pm_good_setup(char *__str)
83{
Daniel Walkerf5f1a242006-12-10 02:21:33 -080084 acpi_pm_good = 1;
85 return 1;
john stultz5d0cf412006-06-26 00:25:12 -070086}
87__setup("acpi_pm_good", acpi_pm_good_setup);
88
89static inline void acpi_pm_need_workaround(void)
90{
91 clocksource_acpi_pm.read = acpi_pm_read_verified;
92 clocksource_acpi_pm.rating = 110;
93}
94
95/*
96 * PIIX4 Errata:
97 *
98 * The power management timer may return improper results when read.
99 * Although the timer value settles properly after incrementing,
100 * while incrementing there is a 3 ns window every 69.8 ns where the
101 * timer value is indeterminate (a 4.2% chance that the data will be
102 * incorrect when read). As a result, the ACPI free running count up
103 * timer specification is violated due to erroneous reads.
104 */
105static void __devinit acpi_pm_check_blacklist(struct pci_dev *dev)
106{
107 u8 rev;
108
109 if (acpi_pm_good)
110 return;
111
112 pci_read_config_byte(dev, PCI_REVISION_ID, &rev);
113 /* the bug has been fixed in PIIX4M */
114 if (rev < 3) {
115 printk(KERN_WARNING "* Found PM-Timer Bug on the chipset."
116 " Due to workarounds for a bug,\n"
117 "* this clock source is slow. Consider trying"
118 " other clock sources\n");
119
120 acpi_pm_need_workaround();
121 }
122}
123DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82371AB_3,
124 acpi_pm_check_blacklist);
125
126static void __devinit acpi_pm_check_graylist(struct pci_dev *dev)
127{
128 if (acpi_pm_good)
129 return;
130
131 printk(KERN_WARNING "* The chipset may have PM-Timer Bug. Due to"
132 " workarounds for a bug,\n"
133 "* this clock source is slow. If you are sure your timer"
134 " does not have\n"
135 "* this bug, please use \"acpi_pm_good\" to disable the"
136 " workaround\n");
137
138 acpi_pm_need_workaround();
139}
140DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801DB_0,
141 acpi_pm_check_graylist);
Daniel Walker78f32662006-10-21 10:24:10 -0700142DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_SERVERWORKS, PCI_DEVICE_ID_SERVERWORKS_LE,
143 acpi_pm_check_graylist);
john stultz5d0cf412006-06-26 00:25:12 -0700144#endif
145
john stultz562f9c52006-12-08 02:36:02 -0800146#ifndef CONFIG_X86_64
147#include "mach_timer.h"
148#define PMTMR_EXPECTED_RATE \
149 ((CALIBRATE_LATCH * (PMTMR_TICKS_PER_SEC >> 10)) / (CLOCK_TICK_RATE>>10))
150/*
151 * Some boards have the PMTMR running way too fast. We check
152 * the PMTMR rate against PIT channel 2 to catch these cases.
153 */
154static int verify_pmtmr_rate(void)
155{
156 u32 value1, value2;
157 unsigned long count, delta;
158
159 mach_prepare_counter();
160 value1 = read_pmtmr();
161 mach_countup(&count);
162 value2 = read_pmtmr();
163 delta = (value2 - value1) & ACPI_PM_MASK;
164
165 /* Check that the PMTMR delta is within 5% of what we expect */
166 if (delta < (PMTMR_EXPECTED_RATE * 19) / 20 ||
167 delta > (PMTMR_EXPECTED_RATE * 21) / 20) {
168 printk(KERN_INFO "PM-Timer running at invalid rate: %lu%% "
169 "of normal - aborting.\n",
170 100UL * delta / PMTMR_EXPECTED_RATE);
171 return -1;
172 }
173
174 return 0;
175}
176#else
177#define verify_pmtmr_rate() (0)
178#endif
john stultz5d0cf412006-06-26 00:25:12 -0700179
180static int __init init_acpi_pm_clocksource(void)
181{
182 u32 value1, value2;
183 unsigned int i;
184
185 if (!pmtmr_ioport)
186 return -ENODEV;
187
188 clocksource_acpi_pm.mult = clocksource_hz2mult(PMTMR_TICKS_PER_SEC,
189 clocksource_acpi_pm.shift);
190
191 /* "verify" this timing source: */
192 value1 = read_pmtmr();
193 for (i = 0; i < 10000; i++) {
194 value2 = read_pmtmr();
195 if (value2 == value1)
196 continue;
197 if (value2 > value1)
198 goto pm_good;
199 if ((value2 < value1) && ((value2) < 0xFFF))
200 goto pm_good;
201 printk(KERN_INFO "PM-Timer had inconsistent results:"
202 " 0x%#x, 0x%#x - aborting.\n", value1, value2);
203 return -EINVAL;
204 }
205 printk(KERN_INFO "PM-Timer had no reasonable result:"
206 " 0x%#x - aborting.\n", value1);
207 return -ENODEV;
208
209pm_good:
john stultz562f9c52006-12-08 02:36:02 -0800210 if (verify_pmtmr_rate() != 0)
211 return -ENODEV;
212
john stultza2752542006-06-26 00:25:14 -0700213 return clocksource_register(&clocksource_acpi_pm);
john stultz5d0cf412006-06-26 00:25:12 -0700214}
215
216module_init(init_acpi_pm_clocksource);