ACPICA: Remove extra spaces after periods within comments
[deliverable/linux.git] / drivers / acpi / acpica / hwtimer.c
CommitLineData
1da177e4
LT
1/******************************************************************************
2 *
3 * Name: hwtimer.c - ACPI Power Management Timer Interface
4 *
5 *****************************************************************************/
6
7/*
77848130 8 * Copyright (C) 2000 - 2012, Intel Corp.
1da177e4
LT
9 * 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
214f2c90 44#include <linux/export.h>
1da177e4 45#include <acpi/acpi.h>
e2f7a777 46#include "accommon.h"
1da177e4
LT
47
48#define _COMPONENT ACPI_HARDWARE
4be44fcd 49ACPI_MODULE_NAME("hwtimer")
1da177e4 50
33620c54 51#if (!ACPI_REDUCED_HARDWARE) /* Entire module */
1da177e4
LT
52/******************************************************************************
53 *
54 * FUNCTION: acpi_get_timer_resolution
55 *
ba494bee 56 * PARAMETERS: resolution - Where the resolution is returned
1da177e4
LT
57 *
58 * RETURN: Status and timer resolution
59 *
60 * DESCRIPTION: Obtains resolution of the ACPI PM Timer (24 or 32 bits).
61 *
62 ******************************************************************************/
4be44fcd 63acpi_status acpi_get_timer_resolution(u32 * resolution)
1da177e4 64{
b229cf92 65 ACPI_FUNCTION_TRACE(acpi_get_timer_resolution);
1da177e4
LT
66
67 if (!resolution) {
4be44fcd 68 return_ACPI_STATUS(AE_BAD_PARAMETER);
1da177e4
LT
69 }
70
f3d2e786 71 if ((acpi_gbl_FADT.flags & ACPI_FADT_32BIT_TIMER) == 0) {
1da177e4 72 *resolution = 24;
4be44fcd 73 } else {
1da177e4
LT
74 *resolution = 32;
75 }
76
4be44fcd 77 return_ACPI_STATUS(AE_OK);
1da177e4
LT
78}
79
8313524a
BM
80ACPI_EXPORT_SYMBOL(acpi_get_timer_resolution)
81
1da177e4
LT
82/******************************************************************************
83 *
84 * FUNCTION: acpi_get_timer
85 *
ba494bee 86 * PARAMETERS: ticks - Where the timer value is returned
1da177e4 87 *
44f6c012 88 * RETURN: Status and current timer value (ticks)
1da177e4
LT
89 *
90 * DESCRIPTION: Obtains current value of ACPI PM Timer (in ticks).
91 *
92 ******************************************************************************/
4be44fcd 93acpi_status acpi_get_timer(u32 * ticks)
1da177e4 94{
4be44fcd 95 acpi_status status;
1da177e4 96
b229cf92 97 ACPI_FUNCTION_TRACE(acpi_get_timer);
1da177e4
LT
98
99 if (!ticks) {
4be44fcd 100 return_ACPI_STATUS(AE_BAD_PARAMETER);
1da177e4
LT
101 }
102
1f86e8c1 103 status = acpi_hw_read(ticks, &acpi_gbl_FADT.xpm_timer_block);
1da177e4 104
4be44fcd 105 return_ACPI_STATUS(status);
1da177e4 106}
1da177e4 107
8313524a 108ACPI_EXPORT_SYMBOL(acpi_get_timer)
1da177e4
LT
109
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
73a3090a 130 * rollover. Thus for 24-bit timers, this function should only
1da177e4
LT
131 * 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 ******************************************************************************/
1da177e4 138acpi_status
4be44fcd 139acpi_get_timer_duration(u32 start_ticks, u32 end_ticks, u32 * time_elapsed)
1da177e4 140{
4be44fcd
LB
141 acpi_status status;
142 u32 delta_ticks;
5df7e6cb 143 u64 quotient;
1da177e4 144
b229cf92 145 ACPI_FUNCTION_TRACE(acpi_get_timer_duration);
1da177e4
LT
146
147 if (!time_elapsed) {
4be44fcd 148 return_ACPI_STATUS(AE_BAD_PARAMETER);
1da177e4
LT
149 }
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;
4be44fcd 157 } else if (start_ticks > end_ticks) {
f3d2e786 158 if ((acpi_gbl_FADT.flags & ACPI_FADT_32BIT_TIMER) == 0) {
52fc0b02 159
1da177e4
LT
160 /* 24-bit Timer */
161
4be44fcd
LB
162 delta_ticks =
163 (((0x00FFFFFF - start_ticks) +
164 end_ticks) & 0x00FFFFFF);
165 } else {
1da177e4
LT
166 /* 32-bit Timer */
167
168 delta_ticks = (0xFFFFFFFF - start_ticks) + end_ticks;
169 }
4be44fcd
LB
170 } else { /* start_ticks == end_ticks */
171
1da177e4 172 *time_elapsed = 0;
4be44fcd 173 return_ACPI_STATUS(AE_OK);
1da177e4
LT
174 }
175
176 /*
177 * Compute Duration (Requires a 64-bit multiply and divide):
178 *
179 * time_elapsed = (delta_ticks * 1000000) / PM_TIMER_FREQUENCY;
180 */
4be44fcd
LB
181 status = acpi_ut_short_divide(((u64) delta_ticks) * 1000000,
182 PM_TIMER_FREQUENCY, &quotient, NULL);
1da177e4
LT
183
184 *time_elapsed = (u32) quotient;
4be44fcd 185 return_ACPI_STATUS(status);
1da177e4 186}
44f6c012 187
8313524a 188ACPI_EXPORT_SYMBOL(acpi_get_timer_duration)
33620c54 189#endif /* !ACPI_REDUCED_HARDWARE */
This page took 0.713981 seconds and 5 git commands to generate.