1 /******************************************************************************
3 * Name: hwtimer.c - ACPI Power Management Timer Interface
5 *****************************************************************************/
8 * Copyright (C) 2000 - 2018, 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
46 #include <acpi/acpi.h>
49 #define _COMPONENT ACPI_HARDWARE
50 ACPI_MODULE_NAME("hwtimer")
52 #if (!ACPI_REDUCED_HARDWARE) /* Entire module */
53 /******************************************************************************
55 * FUNCTION: acpi_get_timer_resolution
57 * PARAMETERS: resolution - Where the resolution is returned
59 * RETURN: Status and timer resolution
61 * DESCRIPTION: Obtains resolution of the ACPI PM Timer (24 or 32 bits).
63 ******************************************************************************/
64 acpi_status
acpi_get_timer_resolution(u32
* resolution
)
66 ACPI_FUNCTION_TRACE(acpi_get_timer_resolution
);
69 return_ACPI_STATUS(AE_BAD_PARAMETER
);
72 if ((acpi_gbl_FADT
.flags
& ACPI_FADT_32BIT_TIMER
) == 0) {
78 return_ACPI_STATUS(AE_OK
);
81 ACPI_EXPORT_SYMBOL(acpi_get_timer_resolution
)
83 /******************************************************************************
85 * FUNCTION: acpi_get_timer
87 * PARAMETERS: ticks - Where the timer value is returned
89 * RETURN: Status and current timer value (ticks)
91 * DESCRIPTION: Obtains current value of ACPI PM Timer (in ticks).
93 ******************************************************************************/
94 acpi_status
acpi_get_timer(u32
* ticks
)
99 ACPI_FUNCTION_TRACE(acpi_get_timer
);
102 return_ACPI_STATUS(AE_BAD_PARAMETER
);
105 /* ACPI 5.0A: PM Timer is optional */
107 if (!acpi_gbl_FADT
.xpm_timer_block
.address
) {
108 return_ACPI_STATUS(AE_SUPPORT
);
111 status
= acpi_hw_read(&timer_value
, &acpi_gbl_FADT
.xpm_timer_block
);
112 if (ACPI_SUCCESS(status
)) {
114 /* ACPI PM Timer is defined to be 32 bits (PM_TMR_LEN) */
116 *ticks
= (u32
)timer_value
;
119 return_ACPI_STATUS(status
);
122 ACPI_EXPORT_SYMBOL(acpi_get_timer
)
124 /******************************************************************************
126 * FUNCTION: acpi_get_timer_duration
128 * PARAMETERS: start_ticks - Starting timestamp
129 * end_ticks - End timestamp
130 * time_elapsed - Where the elapsed time is returned
132 * RETURN: Status and time_elapsed
134 * DESCRIPTION: Computes the time elapsed (in microseconds) between two
135 * PM Timer time stamps, taking into account the possibility of
136 * rollovers, the timer resolution, and timer frequency.
138 * The PM Timer's clock ticks at roughly 3.6 times per
139 * _microsecond_, and its clock continues through Cx state
140 * transitions (unlike many CPU timestamp counters) -- making it
141 * a versatile and accurate timer.
143 * Note that this function accommodates only a single timer
144 * rollover. Thus for 24-bit timers, this function should only
145 * be used for calculating durations less than ~4.6 seconds
146 * (~20 minutes for 32-bit timers) -- calculations below:
148 * 2**24 Ticks / 3,600,000 Ticks/Sec = 4.66 sec
149 * 2**32 Ticks / 3,600,000 Ticks/Sec = 1193 sec or 19.88 minutes
151 ******************************************************************************/
153 acpi_get_timer_duration(u32 start_ticks
, u32 end_ticks
, u32
*time_elapsed
)
159 ACPI_FUNCTION_TRACE(acpi_get_timer_duration
);
162 return_ACPI_STATUS(AE_BAD_PARAMETER
);
165 /* ACPI 5.0A: PM Timer is optional */
167 if (!acpi_gbl_FADT
.xpm_timer_block
.address
) {
168 return_ACPI_STATUS(AE_SUPPORT
);
171 if (start_ticks
== end_ticks
) {
173 return_ACPI_STATUS(AE_OK
);
177 * Compute Tick Delta:
178 * Handle (max one) timer rollovers on 24-bit versus 32-bit timers.
180 delta_ticks
= end_ticks
;
181 if (start_ticks
> end_ticks
) {
182 if ((acpi_gbl_FADT
.flags
& ACPI_FADT_32BIT_TIMER
) == 0) {
186 delta_ticks
|= (u64
)1 << 24;
190 delta_ticks
|= (u64
)1 << 32;
193 delta_ticks
-= start_ticks
;
196 * Compute Duration (Requires a 64-bit multiply and divide):
198 * time_elapsed (microseconds) =
199 * (delta_ticks * ACPI_USEC_PER_SEC) / ACPI_PM_TIMER_FREQUENCY;
201 status
= acpi_ut_short_divide(delta_ticks
* ACPI_USEC_PER_SEC
,
202 ACPI_PM_TIMER_FREQUENCY
, "ient
, NULL
);
204 *time_elapsed
= (u32
)quotient
;
205 return_ACPI_STATUS(status
);
208 ACPI_EXPORT_SYMBOL(acpi_get_timer_duration
)
209 #endif /* !ACPI_REDUCED_HARDWARE */