blob: 511e3b8ffc6d9ab1142d3fc040a594e8e24ac52e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/******************************************************************************
2 *
3 * Name: hwtimer.c - ACPI Power Management Timer Interface
4 *
5 *****************************************************************************/
6
7/*
Bob Mooreda6f8322018-01-04 10:06:38 -08008 * Copyright (C) 2000 - 2018, Intel Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * All rights reserved.
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
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.
25 *
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.
29 *
30 * NO WARRANTY
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.
42 */
43
Lv Zheng839e9282013-10-29 09:29:51 +080044#define EXPORT_ACPI_INTERFACES
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <acpi/acpi.h>
Len Browne2f7a772009-01-09 00:30:03 -050047#include "accommon.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49#define _COMPONENT ACPI_HARDWARE
Len Brown4be44fc2005-08-05 00:44:28 -040050ACPI_MODULE_NAME("hwtimer")
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Bob Moore33620c52012-02-14 18:14:27 +080052#if (!ACPI_REDUCED_HARDWARE) /* Entire module */
Linus Torvalds1da177e2005-04-16 15:20:36 -070053/******************************************************************************
54 *
55 * FUNCTION: acpi_get_timer_resolution
56 *
Bob Mooreba494be2012-07-12 09:40:10 +080057 * PARAMETERS: resolution - Where the resolution is returned
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 *
59 * RETURN: Status and timer resolution
60 *
61 * DESCRIPTION: Obtains resolution of the ACPI PM Timer (24 or 32 bits).
62 *
63 ******************************************************************************/
Len Brown4be44fc2005-08-05 00:44:28 -040064acpi_status acpi_get_timer_resolution(u32 * resolution)
Linus Torvalds1da177e2005-04-16 15:20:36 -070065{
Bob Mooreb229cf92006-04-21 17:15:00 -040066 ACPI_FUNCTION_TRACE(acpi_get_timer_resolution);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
68 if (!resolution) {
Len Brown4be44fc2005-08-05 00:44:28 -040069 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 }
71
Bob Mooref3d2e782007-02-02 19:48:18 +030072 if ((acpi_gbl_FADT.flags & ACPI_FADT_32BIT_TIMER) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 *resolution = 24;
Len Brown4be44fc2005-08-05 00:44:28 -040074 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 *resolution = 32;
76 }
77
Len Brown4be44fc2005-08-05 00:44:28 -040078 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079}
80
Bob Moore83135242006-10-03 00:00:00 -040081ACPI_EXPORT_SYMBOL(acpi_get_timer_resolution)
82
Linus Torvalds1da177e2005-04-16 15:20:36 -070083/******************************************************************************
84 *
85 * FUNCTION: acpi_get_timer
86 *
Bob Mooreba494be2012-07-12 09:40:10 +080087 * PARAMETERS: ticks - Where the timer value is returned
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 *
Robert Moore44f6c012005-04-18 22:49:35 -040089 * RETURN: Status and current timer value (ticks)
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 *
91 * DESCRIPTION: Obtains current value of ACPI PM Timer (in ticks).
92 *
93 ******************************************************************************/
Len Brown4be44fc2005-08-05 00:44:28 -040094acpi_status acpi_get_timer(u32 * ticks)
Linus Torvalds1da177e2005-04-16 15:20:36 -070095{
Len Brown4be44fc2005-08-05 00:44:28 -040096 acpi_status status;
Bob Moore80929362017-09-20 10:00:56 +080097 u64 timer_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Bob Mooreb229cf92006-04-21 17:15:00 -040099 ACPI_FUNCTION_TRACE(acpi_get_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
101 if (!ticks) {
Len Brown4be44fc2005-08-05 00:44:28 -0400102 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 }
104
Bob Moore1d82980c92013-08-08 15:29:51 +0800105 /* ACPI 5.0A: PM Timer is optional */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
Bob Moore1d82980c92013-08-08 15:29:51 +0800107 if (!acpi_gbl_FADT.xpm_timer_block.address) {
108 return_ACPI_STATUS(AE_SUPPORT);
109 }
110
Bob Moore80929362017-09-20 10:00:56 +0800111 status = acpi_hw_read(&timer_value, &acpi_gbl_FADT.xpm_timer_block);
112 if (ACPI_SUCCESS(status)) {
113
114 /* ACPI PM Timer is defined to be 32 bits (PM_TMR_LEN) */
115
116 *ticks = (u32)timer_value;
117 }
118
Len Brown4be44fc2005-08-05 00:44:28 -0400119 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Bob Moore83135242006-10-03 00:00:00 -0400122ACPI_EXPORT_SYMBOL(acpi_get_timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
124/******************************************************************************
125 *
126 * FUNCTION: acpi_get_timer_duration
127 *
128 * PARAMETERS: start_ticks - Starting timestamp
129 * end_ticks - End timestamp
130 * time_elapsed - Where the elapsed time is returned
131 *
132 * RETURN: Status and time_elapsed
133 *
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.
137 *
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.
142 *
143 * Note that this function accommodates only a single timer
Bob Moore73a30902012-10-31 02:26:55 +0000144 * rollover. Thus for 24-bit timers, this function should only
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 * be used for calculating durations less than ~4.6 seconds
146 * (~20 minutes for 32-bit timers) -- calculations below:
147 *
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
150 *
151 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152acpi_status
Jung-uk Kim8f275612017-11-17 15:40:14 -0800153acpi_get_timer_duration(u32 start_ticks, u32 end_ticks, u32 *time_elapsed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154{
Len Brown4be44fc2005-08-05 00:44:28 -0400155 acpi_status status;
Jung-uk Kim8f275612017-11-17 15:40:14 -0800156 u64 delta_ticks;
Bob Moore5df7e6c2010-01-21 10:06:32 +0800157 u64 quotient;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
Bob Mooreb229cf92006-04-21 17:15:00 -0400159 ACPI_FUNCTION_TRACE(acpi_get_timer_duration);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
161 if (!time_elapsed) {
Len Brown4be44fc2005-08-05 00:44:28 -0400162 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 }
164
Bob Moore1d82980c92013-08-08 15:29:51 +0800165 /* ACPI 5.0A: PM Timer is optional */
166
167 if (!acpi_gbl_FADT.xpm_timer_block.address) {
168 return_ACPI_STATUS(AE_SUPPORT);
169 }
170
Jung-uk Kim8f275612017-11-17 15:40:14 -0800171 if (start_ticks == end_ticks) {
172 *time_elapsed = 0;
173 return_ACPI_STATUS(AE_OK);
174 }
175
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 /*
177 * Compute Tick Delta:
178 * Handle (max one) timer rollovers on 24-bit versus 32-bit timers.
179 */
Jung-uk Kim8f275612017-11-17 15:40:14 -0800180 delta_ticks = end_ticks;
181 if (start_ticks > end_ticks) {
Bob Mooref3d2e782007-02-02 19:48:18 +0300182 if ((acpi_gbl_FADT.flags & ACPI_FADT_32BIT_TIMER) == 0) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400183
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 /* 24-bit Timer */
185
Jung-uk Kim8f275612017-11-17 15:40:14 -0800186 delta_ticks |= (u64)1 << 24;
Len Brown4be44fc2005-08-05 00:44:28 -0400187 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 /* 32-bit Timer */
189
Jung-uk Kim8f275612017-11-17 15:40:14 -0800190 delta_ticks |= (u64)1 << 32;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 }
Jung-uk Kim8f275612017-11-17 15:40:14 -0800193 delta_ticks -= start_ticks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
195 /*
196 * Compute Duration (Requires a 64-bit multiply and divide):
197 *
Bob Moorec41679a2012-12-31 00:05:46 +0000198 * time_elapsed (microseconds) =
199 * (delta_ticks * ACPI_USEC_PER_SEC) / ACPI_PM_TIMER_FREQUENCY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 */
Jung-uk Kim8f275612017-11-17 15:40:14 -0800201 status = acpi_ut_short_divide(delta_ticks * ACPI_USEC_PER_SEC,
Bob Moorec41679a2012-12-31 00:05:46 +0000202 ACPI_PM_TIMER_FREQUENCY, &quotient, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Jung-uk Kim8f275612017-11-17 15:40:14 -0800204 *time_elapsed = (u32)quotient;
Len Brown4be44fc2005-08-05 00:44:28 -0400205 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206}
Robert Moore44f6c012005-04-18 22:49:35 -0400207
Bob Moore83135242006-10-03 00:00:00 -0400208ACPI_EXPORT_SYMBOL(acpi_get_timer_duration)
Bob Moore33620c52012-02-14 18:14:27 +0800209#endif /* !ACPI_REDUCED_HARDWARE */