1 /******************************************************************************
3 * Name: hwtimer.c - ACPI Power Management Timer Interface
5 *****************************************************************************/
8 * Copyright (C) 2000 - 2013, Intel Corp.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions, and the following disclaimer,
16 * without modification.
17 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
18 * substantially similar to the "NO WARRANTY" disclaimer below
19 * ("Disclaimer") and any redistribution must be conditioned upon
20 * including a substantially similar Disclaimer requirement for further
21 * binary redistribution.
22 * 3. Neither the names of the above-listed copyright holders nor the names
23 * of any contributors may be used to endorse or promote products derived
24 * from this software without specific prior written permission.
26 * Alternatively, this software may be distributed under the terms of the
27 * GNU General Public License ("GPL") version 2 as published by the Free
28 * Software Foundation.
31 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
34 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
36 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
37 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
39 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
40 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
41 * POSSIBILITY OF SUCH DAMAGES.
44 #define EXPORT_ACPI_INTERFACES
49 #define _COMPONENT ACPI_HARDWARE
50 ACPI_MODULE_NAME ("hwtimer")
53 #if (!ACPI_REDUCED_HARDWARE) /* Entire module */
54 /******************************************************************************
56 * FUNCTION: AcpiGetTimerResolution
58 * PARAMETERS: Resolution - Where the resolution is returned
60 * RETURN: Status and timer resolution
62 * DESCRIPTION: Obtains resolution of the ACPI PM Timer (24 or 32 bits).
64 ******************************************************************************/
67 AcpiGetTimerResolution (
70 ACPI_FUNCTION_TRACE (AcpiGetTimerResolution
);
75 return_ACPI_STATUS (AE_BAD_PARAMETER
);
78 if ((AcpiGbl_FADT
.Flags
& ACPI_FADT_32BIT_TIMER
) == 0)
87 return_ACPI_STATUS (AE_OK
);
90 ACPI_EXPORT_SYMBOL (AcpiGetTimerResolution
)
93 /******************************************************************************
95 * FUNCTION: AcpiGetTimer
97 * PARAMETERS: Ticks - Where the timer value is returned
99 * RETURN: Status and current timer value (ticks)
101 * DESCRIPTION: Obtains current value of ACPI PM Timer (in ticks).
103 ******************************************************************************/
112 ACPI_FUNCTION_TRACE (AcpiGetTimer
);
117 return_ACPI_STATUS (AE_BAD_PARAMETER
);
120 /* ACPI 5.0A: PM Timer is optional */
122 if (!AcpiGbl_FADT
.XPmTimerBlock
.Address
)
124 return_ACPI_STATUS (AE_SUPPORT
);
127 Status
= AcpiHwRead (Ticks
, &AcpiGbl_FADT
.XPmTimerBlock
);
128 return_ACPI_STATUS (Status
);
131 ACPI_EXPORT_SYMBOL (AcpiGetTimer
)
134 /******************************************************************************
136 * FUNCTION: AcpiGetTimerDuration
138 * PARAMETERS: StartTicks - Starting timestamp
139 * EndTicks - End timestamp
140 * TimeElapsed - Where the elapsed time is returned
142 * RETURN: Status and TimeElapsed
144 * DESCRIPTION: Computes the time elapsed (in microseconds) between two
145 * PM Timer time stamps, taking into account the possibility of
146 * rollovers, the timer resolution, and timer frequency.
148 * The PM Timer's clock ticks at roughly 3.6 times per
149 * _microsecond_, and its clock continues through Cx state
150 * transitions (unlike many CPU timestamp counters) -- making it
151 * a versatile and accurate timer.
153 * Note that this function accommodates only a single timer
154 * rollover. Thus for 24-bit timers, this function should only
155 * be used for calculating durations less than ~4.6 seconds
156 * (~20 minutes for 32-bit timers) -- calculations below:
158 * 2**24 Ticks / 3,600,000 Ticks/Sec = 4.66 sec
159 * 2**32 Ticks / 3,600,000 Ticks/Sec = 1193 sec or 19.88 minutes
161 ******************************************************************************/
164 AcpiGetTimerDuration (
174 ACPI_FUNCTION_TRACE (AcpiGetTimerDuration
);
179 return_ACPI_STATUS (AE_BAD_PARAMETER
);
182 /* ACPI 5.0A: PM Timer is optional */
184 if (!AcpiGbl_FADT
.XPmTimerBlock
.Address
)
186 return_ACPI_STATUS (AE_SUPPORT
);
190 * Compute Tick Delta:
191 * Handle (max one) timer rollovers on 24-bit versus 32-bit timers.
193 if (StartTicks
< EndTicks
)
195 DeltaTicks
= EndTicks
- StartTicks
;
197 else if (StartTicks
> EndTicks
)
199 if ((AcpiGbl_FADT
.Flags
& ACPI_FADT_32BIT_TIMER
) == 0)
203 DeltaTicks
= (((0x00FFFFFF - StartTicks
) + EndTicks
) & 0x00FFFFFF);
209 DeltaTicks
= (0xFFFFFFFF - StartTicks
) + EndTicks
;
212 else /* StartTicks == EndTicks */
215 return_ACPI_STATUS (AE_OK
);
219 * Compute Duration (Requires a 64-bit multiply and divide):
221 * TimeElapsed (microseconds) =
222 * (DeltaTicks * ACPI_USEC_PER_SEC) / ACPI_PM_TIMER_FREQUENCY;
224 Status
= AcpiUtShortDivide (((UINT64
) DeltaTicks
) * ACPI_USEC_PER_SEC
,
225 ACPI_PM_TIMER_FREQUENCY
, &Quotient
, NULL
);
227 *TimeElapsed
= (UINT32
) Quotient
;
228 return_ACPI_STATUS (Status
);
231 ACPI_EXPORT_SYMBOL (AcpiGetTimerDuration
)
233 #endif /* !ACPI_REDUCED_HARDWARE */