blob: bfdce22f37988721385ff0d9f19131c2ff405a2d [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 Moore77848132012-01-12 13:27:23 +08008 * Copyright (C) 2000 - 2012, 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
Paul Gortmaker214f2c92011-10-26 16:22:14 -040044#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <acpi/acpi.h>
Len Browne2f7a772009-01-09 00:30:03 -050046#include "accommon.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48#define _COMPONENT ACPI_HARDWARE
Len Brown4be44fc2005-08-05 00:44:28 -040049ACPI_MODULE_NAME("hwtimer")
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Bob Moore33620c52012-02-14 18:14:27 +080051#if (!ACPI_REDUCED_HARDWARE) /* Entire module */
Linus Torvalds1da177e2005-04-16 15:20:36 -070052/******************************************************************************
53 *
54 * FUNCTION: acpi_get_timer_resolution
55 *
Bob Mooreba494be2012-07-12 09:40:10 +080056 * PARAMETERS: resolution - Where the resolution is returned
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 *
58 * RETURN: Status and timer resolution
59 *
60 * DESCRIPTION: Obtains resolution of the ACPI PM Timer (24 or 32 bits).
61 *
62 ******************************************************************************/
Len Brown4be44fc2005-08-05 00:44:28 -040063acpi_status acpi_get_timer_resolution(u32 * resolution)
Linus Torvalds1da177e2005-04-16 15:20:36 -070064{
Bob Mooreb229cf92006-04-21 17:15:00 -040065 ACPI_FUNCTION_TRACE(acpi_get_timer_resolution);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67 if (!resolution) {
Len Brown4be44fc2005-08-05 00:44:28 -040068 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 }
70
Bob Mooref3d2e782007-02-02 19:48:18 +030071 if ((acpi_gbl_FADT.flags & ACPI_FADT_32BIT_TIMER) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 *resolution = 24;
Len Brown4be44fc2005-08-05 00:44:28 -040073 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 *resolution = 32;
75 }
76
Len Brown4be44fc2005-08-05 00:44:28 -040077 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078}
79
Bob Moore83135242006-10-03 00:00:00 -040080ACPI_EXPORT_SYMBOL(acpi_get_timer_resolution)
81
Linus Torvalds1da177e2005-04-16 15:20:36 -070082/******************************************************************************
83 *
84 * FUNCTION: acpi_get_timer
85 *
Bob Mooreba494be2012-07-12 09:40:10 +080086 * PARAMETERS: ticks - Where the timer value is returned
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 *
Robert Moore44f6c012005-04-18 22:49:35 -040088 * RETURN: Status and current timer value (ticks)
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 *
90 * DESCRIPTION: Obtains current value of ACPI PM Timer (in ticks).
91 *
92 ******************************************************************************/
Len Brown4be44fc2005-08-05 00:44:28 -040093acpi_status acpi_get_timer(u32 * ticks)
Linus Torvalds1da177e2005-04-16 15:20:36 -070094{
Len Brown4be44fc2005-08-05 00:44:28 -040095 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Bob Mooreb229cf92006-04-21 17:15:00 -040097 ACPI_FUNCTION_TRACE(acpi_get_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
99 if (!ticks) {
Len Brown4be44fc2005-08-05 00:44:28 -0400100 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 }
102
Lv Zheng1f86e8c2012-10-31 02:25:45 +0000103 status = acpi_hw_read(ticks, &acpi_gbl_FADT.xpm_timer_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
Len Brown4be44fc2005-08-05 00:44:28 -0400105 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Bob Moore83135242006-10-03 00:00:00 -0400108ACPI_EXPORT_SYMBOL(acpi_get_timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
110/******************************************************************************
111 *
112 * FUNCTION: acpi_get_timer_duration
113 *
114 * PARAMETERS: start_ticks - Starting timestamp
115 * end_ticks - End timestamp
116 * time_elapsed - Where the elapsed time is returned
117 *
118 * RETURN: Status and time_elapsed
119 *
120 * DESCRIPTION: Computes the time elapsed (in microseconds) between two
121 * PM Timer time stamps, taking into account the possibility of
122 * rollovers, the timer resolution, and timer frequency.
123 *
124 * The PM Timer's clock ticks at roughly 3.6 times per
125 * _microsecond_, and its clock continues through Cx state
126 * transitions (unlike many CPU timestamp counters) -- making it
127 * a versatile and accurate timer.
128 *
129 * Note that this function accommodates only a single timer
Bob Moore73a30902012-10-31 02:26:55 +0000130 * rollover. Thus for 24-bit timers, this function should only
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 * be used for calculating durations less than ~4.6 seconds
132 * (~20 minutes for 32-bit timers) -- calculations below:
133 *
134 * 2**24 Ticks / 3,600,000 Ticks/Sec = 4.66 sec
135 * 2**32 Ticks / 3,600,000 Ticks/Sec = 1193 sec or 19.88 minutes
136 *
137 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400139acpi_get_timer_duration(u32 start_ticks, u32 end_ticks, u32 * time_elapsed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140{
Len Brown4be44fc2005-08-05 00:44:28 -0400141 acpi_status status;
142 u32 delta_ticks;
Bob Moore5df7e6c2010-01-21 10:06:32 +0800143 u64 quotient;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Bob Mooreb229cf92006-04-21 17:15:00 -0400145 ACPI_FUNCTION_TRACE(acpi_get_timer_duration);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
147 if (!time_elapsed) {
Len Brown4be44fc2005-08-05 00:44:28 -0400148 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 }
150
151 /*
152 * Compute Tick Delta:
153 * Handle (max one) timer rollovers on 24-bit versus 32-bit timers.
154 */
155 if (start_ticks < end_ticks) {
156 delta_ticks = end_ticks - start_ticks;
Len Brown4be44fc2005-08-05 00:44:28 -0400157 } else if (start_ticks > end_ticks) {
Bob Mooref3d2e782007-02-02 19:48:18 +0300158 if ((acpi_gbl_FADT.flags & ACPI_FADT_32BIT_TIMER) == 0) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400159
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 /* 24-bit Timer */
161
Len Brown4be44fc2005-08-05 00:44:28 -0400162 delta_ticks =
163 (((0x00FFFFFF - start_ticks) +
164 end_ticks) & 0x00FFFFFF);
165 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 /* 32-bit Timer */
167
168 delta_ticks = (0xFFFFFFFF - start_ticks) + end_ticks;
169 }
Len Brown4be44fc2005-08-05 00:44:28 -0400170 } else { /* start_ticks == end_ticks */
171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 *time_elapsed = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400173 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 }
175
176 /*
177 * Compute Duration (Requires a 64-bit multiply and divide):
178 *
179 * time_elapsed = (delta_ticks * 1000000) / PM_TIMER_FREQUENCY;
180 */
Len Brown4be44fc2005-08-05 00:44:28 -0400181 status = acpi_ut_short_divide(((u64) delta_ticks) * 1000000,
182 PM_TIMER_FREQUENCY, &quotient, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
184 *time_elapsed = (u32) quotient;
Len Brown4be44fc2005-08-05 00:44:28 -0400185 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186}
Robert Moore44f6c012005-04-18 22:49:35 -0400187
Bob Moore83135242006-10-03 00:00:00 -0400188ACPI_EXPORT_SYMBOL(acpi_get_timer_duration)
Bob Moore33620c52012-02-14 18:14:27 +0800189#endif /* !ACPI_REDUCED_HARDWARE */