1 // SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0
2 /******************************************************************************
4 * Name: hwtimer.c - ACPI Power Management Timer Interface
6 * Copyright (C) 2000 - 2018, Intel Corp.
8 *****************************************************************************/
10 #define EXPORT_ACPI_INTERFACES
12 #include <acpi/acpi.h>
15 #define _COMPONENT ACPI_HARDWARE
16 ACPI_MODULE_NAME("hwtimer")
18 #if (!ACPI_REDUCED_HARDWARE) /* Entire module */
19 /******************************************************************************
21 * FUNCTION: acpi_get_timer_resolution
23 * PARAMETERS: resolution - Where the resolution is returned
25 * RETURN: Status and timer resolution
27 * DESCRIPTION: Obtains resolution of the ACPI PM Timer (24 or 32 bits).
29 ******************************************************************************/
30 acpi_status
acpi_get_timer_resolution(u32
* resolution
)
32 ACPI_FUNCTION_TRACE(acpi_get_timer_resolution
);
35 return_ACPI_STATUS(AE_BAD_PARAMETER
);
38 if ((acpi_gbl_FADT
.flags
& ACPI_FADT_32BIT_TIMER
) == 0) {
44 return_ACPI_STATUS(AE_OK
);
47 ACPI_EXPORT_SYMBOL(acpi_get_timer_resolution
)
49 /******************************************************************************
51 * FUNCTION: acpi_get_timer
53 * PARAMETERS: ticks - Where the timer value is returned
55 * RETURN: Status and current timer value (ticks)
57 * DESCRIPTION: Obtains current value of ACPI PM Timer (in ticks).
59 ******************************************************************************/
60 acpi_status
acpi_get_timer(u32
* ticks
)
65 ACPI_FUNCTION_TRACE(acpi_get_timer
);
68 return_ACPI_STATUS(AE_BAD_PARAMETER
);
71 /* ACPI 5.0A: PM Timer is optional */
73 if (!acpi_gbl_FADT
.xpm_timer_block
.address
) {
74 return_ACPI_STATUS(AE_SUPPORT
);
77 status
= acpi_hw_read(&timer_value
, &acpi_gbl_FADT
.xpm_timer_block
);
78 if (ACPI_SUCCESS(status
)) {
80 /* ACPI PM Timer is defined to be 32 bits (PM_TMR_LEN) */
82 *ticks
= (u32
)timer_value
;
85 return_ACPI_STATUS(status
);
88 ACPI_EXPORT_SYMBOL(acpi_get_timer
)
90 /******************************************************************************
92 * FUNCTION: acpi_get_timer_duration
94 * PARAMETERS: start_ticks - Starting timestamp
95 * end_ticks - End timestamp
96 * time_elapsed - Where the elapsed time is returned
98 * RETURN: Status and time_elapsed
100 * DESCRIPTION: Computes the time elapsed (in microseconds) between two
101 * PM Timer time stamps, taking into account the possibility of
102 * rollovers, the timer resolution, and timer frequency.
104 * The PM Timer's clock ticks at roughly 3.6 times per
105 * _microsecond_, and its clock continues through Cx state
106 * transitions (unlike many CPU timestamp counters) -- making it
107 * a versatile and accurate timer.
109 * Note that this function accommodates only a single timer
110 * rollover. Thus for 24-bit timers, this function should only
111 * be used for calculating durations less than ~4.6 seconds
112 * (~20 minutes for 32-bit timers) -- calculations below:
114 * 2**24 Ticks / 3,600,000 Ticks/Sec = 4.66 sec
115 * 2**32 Ticks / 3,600,000 Ticks/Sec = 1193 sec or 19.88 minutes
117 ******************************************************************************/
119 acpi_get_timer_duration(u32 start_ticks
, u32 end_ticks
, u32
*time_elapsed
)
125 ACPI_FUNCTION_TRACE(acpi_get_timer_duration
);
128 return_ACPI_STATUS(AE_BAD_PARAMETER
);
131 /* ACPI 5.0A: PM Timer is optional */
133 if (!acpi_gbl_FADT
.xpm_timer_block
.address
) {
134 return_ACPI_STATUS(AE_SUPPORT
);
137 if (start_ticks
== end_ticks
) {
139 return_ACPI_STATUS(AE_OK
);
143 * Compute Tick Delta:
144 * Handle (max one) timer rollovers on 24-bit versus 32-bit timers.
146 delta_ticks
= end_ticks
;
147 if (start_ticks
> end_ticks
) {
148 if ((acpi_gbl_FADT
.flags
& ACPI_FADT_32BIT_TIMER
) == 0) {
152 delta_ticks
|= (u64
)1 << 24;
156 delta_ticks
|= (u64
)1 << 32;
159 delta_ticks
-= start_ticks
;
162 * Compute Duration (Requires a 64-bit multiply and divide):
164 * time_elapsed (microseconds) =
165 * (delta_ticks * ACPI_USEC_PER_SEC) / ACPI_PM_TIMER_FREQUENCY;
167 status
= acpi_ut_short_divide(delta_ticks
* ACPI_USEC_PER_SEC
,
168 ACPI_PM_TIMER_FREQUENCY
, "ient
, NULL
);
170 *time_elapsed
= (u32
)quotient
;
171 return_ACPI_STATUS(status
);
174 ACPI_EXPORT_SYMBOL(acpi_get_timer_duration
)
175 #endif /* !ACPI_REDUCED_HARDWARE */