blob: f1b2c3b94cac0e004669bb4d647497704f224e8e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
2/******************************************************************************
3 *
4 * Name: hwtimer.c - ACPI Power Management Timer Interface
5 *
6 *****************************************************************************/
7
8/*
Bob Moore77848132012-01-12 13:27:23 +08009 * Copyright (C) 2000 - 2012, Intel Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 * All rights reserved.
11 *
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
14 * are met:
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, this list of conditions, and the following disclaimer,
17 * without modification.
18 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
19 * substantially similar to the "NO WARRANTY" disclaimer below
20 * ("Disclaimer") and any redistribution must be conditioned upon
21 * including a substantially similar Disclaimer requirement for further
22 * binary redistribution.
23 * 3. Neither the names of the above-listed copyright holders nor the names
24 * of any contributors may be used to endorse or promote products derived
25 * from this software without specific prior written permission.
26 *
27 * Alternatively, this software may be distributed under the terms of the
28 * GNU General Public License ("GPL") version 2 as published by the Free
29 * Software Foundation.
30 *
31 * NO WARRANTY
32 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
33 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
34 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
35 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
36 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
37 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
38 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
39 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
40 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
41 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
42 * POSSIBILITY OF SUCH DAMAGES.
43 */
44
Paul Gortmaker214f2c92011-10-26 16:22:14 -040045#include <linux/export.h>
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 *
57 * PARAMETERS: Resolution - Where the resolution is returned
58 *
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 *
87 * PARAMETERS: Ticks - Where the timer value is returned
88 *
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;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Bob Mooreb229cf92006-04-21 17:15:00 -040098 ACPI_FUNCTION_TRACE(acpi_get_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100 if (!ticks) {
Len Brown4be44fc2005-08-05 00:44:28 -0400101 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 }
103
Bob Mooref3d2e782007-02-02 19:48:18 +0300104 status =
Bob Moorec6b57742009-06-24 09:44:06 +0800105 acpi_hw_read(ticks, &acpi_gbl_FADT.xpm_timer_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
Len Brown4be44fc2005-08-05 00:44:28 -0400107 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
Bob Moore83135242006-10-03 00:00:00 -0400110ACPI_EXPORT_SYMBOL(acpi_get_timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
112/******************************************************************************
113 *
114 * FUNCTION: acpi_get_timer_duration
115 *
116 * PARAMETERS: start_ticks - Starting timestamp
117 * end_ticks - End timestamp
118 * time_elapsed - Where the elapsed time is returned
119 *
120 * RETURN: Status and time_elapsed
121 *
122 * DESCRIPTION: Computes the time elapsed (in microseconds) between two
123 * PM Timer time stamps, taking into account the possibility of
124 * rollovers, the timer resolution, and timer frequency.
125 *
126 * The PM Timer's clock ticks at roughly 3.6 times per
127 * _microsecond_, and its clock continues through Cx state
128 * transitions (unlike many CPU timestamp counters) -- making it
129 * a versatile and accurate timer.
130 *
131 * Note that this function accommodates only a single timer
132 * rollover. Thus for 24-bit timers, this function should only
133 * be used for calculating durations less than ~4.6 seconds
134 * (~20 minutes for 32-bit timers) -- calculations below:
135 *
136 * 2**24 Ticks / 3,600,000 Ticks/Sec = 4.66 sec
137 * 2**32 Ticks / 3,600,000 Ticks/Sec = 1193 sec or 19.88 minutes
138 *
139 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400141acpi_get_timer_duration(u32 start_ticks, u32 end_ticks, u32 * time_elapsed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142{
Len Brown4be44fc2005-08-05 00:44:28 -0400143 acpi_status status;
144 u32 delta_ticks;
Bob Moore5df7e6c2010-01-21 10:06:32 +0800145 u64 quotient;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Bob Mooreb229cf92006-04-21 17:15:00 -0400147 ACPI_FUNCTION_TRACE(acpi_get_timer_duration);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
149 if (!time_elapsed) {
Len Brown4be44fc2005-08-05 00:44:28 -0400150 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 }
152
153 /*
154 * Compute Tick Delta:
155 * Handle (max one) timer rollovers on 24-bit versus 32-bit timers.
156 */
157 if (start_ticks < end_ticks) {
158 delta_ticks = end_ticks - start_ticks;
Len Brown4be44fc2005-08-05 00:44:28 -0400159 } else if (start_ticks > end_ticks) {
Bob Mooref3d2e782007-02-02 19:48:18 +0300160 if ((acpi_gbl_FADT.flags & ACPI_FADT_32BIT_TIMER) == 0) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400161
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 /* 24-bit Timer */
163
Len Brown4be44fc2005-08-05 00:44:28 -0400164 delta_ticks =
165 (((0x00FFFFFF - start_ticks) +
166 end_ticks) & 0x00FFFFFF);
167 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 /* 32-bit Timer */
169
170 delta_ticks = (0xFFFFFFFF - start_ticks) + end_ticks;
171 }
Len Brown4be44fc2005-08-05 00:44:28 -0400172 } else { /* start_ticks == end_ticks */
173
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 *time_elapsed = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400175 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 }
177
178 /*
179 * Compute Duration (Requires a 64-bit multiply and divide):
180 *
181 * time_elapsed = (delta_ticks * 1000000) / PM_TIMER_FREQUENCY;
182 */
Len Brown4be44fc2005-08-05 00:44:28 -0400183 status = acpi_ut_short_divide(((u64) delta_ticks) * 1000000,
184 PM_TIMER_FREQUENCY, &quotient, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
186 *time_elapsed = (u32) quotient;
Len Brown4be44fc2005-08-05 00:44:28 -0400187 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188}
Robert Moore44f6c012005-04-18 22:49:35 -0400189
Bob Moore83135242006-10-03 00:00:00 -0400190ACPI_EXPORT_SYMBOL(acpi_get_timer_duration)
Bob Moore33620c52012-02-14 18:14:27 +0800191#endif /* !ACPI_REDUCED_HARDWARE */