2018-03-14 23:13:07 +00:00
|
|
|
// SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0
|
2005-04-16 22:20:36 +00:00
|
|
|
/******************************************************************************
|
|
|
|
*
|
|
|
|
* Name: hwtimer.c - ACPI Power Management Timer Interface
|
|
|
|
*
|
2022-04-11 18:54:22 +00:00
|
|
|
* Copyright (C) 2000 - 2022, Intel Corp.
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
2018-03-14 23:13:07 +00:00
|
|
|
*****************************************************************************/
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2013-10-29 01:29:51 +00:00
|
|
|
#define EXPORT_ACPI_INTERFACES
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <acpi/acpi.h>
|
2009-01-09 05:30:03 +00:00
|
|
|
#include "accommon.h"
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
#define _COMPONENT ACPI_HARDWARE
|
2005-08-05 04:44:28 +00:00
|
|
|
ACPI_MODULE_NAME("hwtimer")
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2012-02-14 10:14:27 +00:00
|
|
|
#if (!ACPI_REDUCED_HARDWARE) /* Entire module */
|
2005-04-16 22:20:36 +00:00
|
|
|
/******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_get_timer_resolution
|
|
|
|
*
|
2012-07-12 01:40:10 +00:00
|
|
|
* PARAMETERS: resolution - Where the resolution is returned
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
* RETURN: Status and timer resolution
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Obtains resolution of the ACPI PM Timer (24 or 32 bits).
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
2005-08-05 04:44:28 +00:00
|
|
|
acpi_status acpi_get_timer_resolution(u32 * resolution)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
ACPI: ACPICA 20060421
Removed a device initialization optimization introduced in
20051216 where the _STA method was not run unless an _INI
was also present for the same device. This optimization
could cause problems because it could allow _INI methods
to be run within a not-present device subtree (If a
not-present device had no _INI, _STA would not be run,
the not-present status would not be discovered, and the
children of the device would be incorrectly traversed.)
Implemented a new _STA optimization where namespace
subtrees that do not contain _INI are identified and
ignored during device initialization. Selectively running
_STA can significantly improve boot time on large machines
(with assistance from Len Brown.)
Implemented support for the device initialization case
where the returned _STA flags indicate a device not-present
but functioning. In this case, _INI is not run, but the
device children are examined for presence, as per the
ACPI specification.
Implemented an additional change to the IndexField support
in order to conform to MS behavior. The value written to
the Index Register is not simply a byte offset, it is a
byte offset in units of the access width of the parent
Index Field. (Fiodor Suietov)
Defined and deployed a new OSL interface,
acpi_os_validate_address(). This interface is called during
the creation of all AML operation regions, and allows
the host OS to exert control over what addresses it will
allow the AML code to access. Operation Regions whose
addresses are disallowed will cause a runtime exception
when they are actually accessed (will not affect or abort
table loading.)
Defined and deployed a new OSL interface,
acpi_os_validate_interface(). This interface allows the host OS
to match the various "optional" interface/behavior strings
for the _OSI predefined control method as appropriate
(with assistance from Bjorn Helgaas.)
Restructured and corrected various problems in the
exception handling code paths within DsCallControlMethod
and DsTerminateControlMethod in dsmethod (with assistance
from Takayoshi Kochi.)
Modified the Linux source converter to ignore quoted string
literals while converting identifiers from mixed to lower
case. This will correct problems with the disassembler
and other areas where such strings must not be modified.
The ACPI_FUNCTION_* macros no longer require quotes around
the function name. This allows the Linux source converter
to convert the names, now that the converter ignores
quoted strings.
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2006-04-21 21:15:00 +00:00
|
|
|
ACPI_FUNCTION_TRACE(acpi_get_timer_resolution);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
if (!resolution) {
|
2005-08-05 04:44:28 +00:00
|
|
|
return_ACPI_STATUS(AE_BAD_PARAMETER);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2007-02-02 16:48:18 +00:00
|
|
|
if ((acpi_gbl_FADT.flags & ACPI_FADT_32BIT_TIMER) == 0) {
|
2005-04-16 22:20:36 +00:00
|
|
|
*resolution = 24;
|
2005-08-05 04:44:28 +00:00
|
|
|
} else {
|
2005-04-16 22:20:36 +00:00
|
|
|
*resolution = 32;
|
|
|
|
}
|
|
|
|
|
2005-08-05 04:44:28 +00:00
|
|
|
return_ACPI_STATUS(AE_OK);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2006-10-03 04:00:00 +00:00
|
|
|
ACPI_EXPORT_SYMBOL(acpi_get_timer_resolution)
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_get_timer
|
|
|
|
*
|
2012-07-12 01:40:10 +00:00
|
|
|
* PARAMETERS: ticks - Where the timer value is returned
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
2005-04-19 02:49:35 +00:00
|
|
|
* RETURN: Status and current timer value (ticks)
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
* DESCRIPTION: Obtains current value of ACPI PM Timer (in ticks).
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
2005-08-05 04:44:28 +00:00
|
|
|
acpi_status acpi_get_timer(u32 * ticks)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2005-08-05 04:44:28 +00:00
|
|
|
acpi_status status;
|
2017-09-20 02:00:56 +00:00
|
|
|
u64 timer_value;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
ACPI: ACPICA 20060421
Removed a device initialization optimization introduced in
20051216 where the _STA method was not run unless an _INI
was also present for the same device. This optimization
could cause problems because it could allow _INI methods
to be run within a not-present device subtree (If a
not-present device had no _INI, _STA would not be run,
the not-present status would not be discovered, and the
children of the device would be incorrectly traversed.)
Implemented a new _STA optimization where namespace
subtrees that do not contain _INI are identified and
ignored during device initialization. Selectively running
_STA can significantly improve boot time on large machines
(with assistance from Len Brown.)
Implemented support for the device initialization case
where the returned _STA flags indicate a device not-present
but functioning. In this case, _INI is not run, but the
device children are examined for presence, as per the
ACPI specification.
Implemented an additional change to the IndexField support
in order to conform to MS behavior. The value written to
the Index Register is not simply a byte offset, it is a
byte offset in units of the access width of the parent
Index Field. (Fiodor Suietov)
Defined and deployed a new OSL interface,
acpi_os_validate_address(). This interface is called during
the creation of all AML operation regions, and allows
the host OS to exert control over what addresses it will
allow the AML code to access. Operation Regions whose
addresses are disallowed will cause a runtime exception
when they are actually accessed (will not affect or abort
table loading.)
Defined and deployed a new OSL interface,
acpi_os_validate_interface(). This interface allows the host OS
to match the various "optional" interface/behavior strings
for the _OSI predefined control method as appropriate
(with assistance from Bjorn Helgaas.)
Restructured and corrected various problems in the
exception handling code paths within DsCallControlMethod
and DsTerminateControlMethod in dsmethod (with assistance
from Takayoshi Kochi.)
Modified the Linux source converter to ignore quoted string
literals while converting identifiers from mixed to lower
case. This will correct problems with the disassembler
and other areas where such strings must not be modified.
The ACPI_FUNCTION_* macros no longer require quotes around
the function name. This allows the Linux source converter
to convert the names, now that the converter ignores
quoted strings.
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2006-04-21 21:15:00 +00:00
|
|
|
ACPI_FUNCTION_TRACE(acpi_get_timer);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
if (!ticks) {
|
2005-08-05 04:44:28 +00:00
|
|
|
return_ACPI_STATUS(AE_BAD_PARAMETER);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2013-08-08 07:29:51 +00:00
|
|
|
/* ACPI 5.0A: PM Timer is optional */
|
|
|
|
|
|
|
|
if (!acpi_gbl_FADT.xpm_timer_block.address) {
|
|
|
|
return_ACPI_STATUS(AE_SUPPORT);
|
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2017-09-20 02:00:56 +00:00
|
|
|
status = acpi_hw_read(&timer_value, &acpi_gbl_FADT.xpm_timer_block);
|
|
|
|
if (ACPI_SUCCESS(status)) {
|
|
|
|
|
|
|
|
/* ACPI PM Timer is defined to be 32 bits (PM_TMR_LEN) */
|
|
|
|
|
|
|
|
*ticks = (u32)timer_value;
|
|
|
|
}
|
|
|
|
|
2005-08-05 04:44:28 +00:00
|
|
|
return_ACPI_STATUS(status);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2006-10-03 04:00:00 +00:00
|
|
|
ACPI_EXPORT_SYMBOL(acpi_get_timer)
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_get_timer_duration
|
|
|
|
*
|
|
|
|
* PARAMETERS: start_ticks - Starting timestamp
|
|
|
|
* end_ticks - End timestamp
|
|
|
|
* time_elapsed - Where the elapsed time is returned
|
|
|
|
*
|
|
|
|
* RETURN: Status and time_elapsed
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Computes the time elapsed (in microseconds) between two
|
|
|
|
* PM Timer time stamps, taking into account the possibility of
|
|
|
|
* rollovers, the timer resolution, and timer frequency.
|
|
|
|
*
|
|
|
|
* The PM Timer's clock ticks at roughly 3.6 times per
|
|
|
|
* _microsecond_, and its clock continues through Cx state
|
|
|
|
* transitions (unlike many CPU timestamp counters) -- making it
|
|
|
|
* a versatile and accurate timer.
|
|
|
|
*
|
|
|
|
* Note that this function accommodates only a single timer
|
2012-10-31 02:26:55 +00:00
|
|
|
* rollover. Thus for 24-bit timers, this function should only
|
2005-04-16 22:20:36 +00:00
|
|
|
* be used for calculating durations less than ~4.6 seconds
|
|
|
|
* (~20 minutes for 32-bit timers) -- calculations below:
|
|
|
|
*
|
|
|
|
* 2**24 Ticks / 3,600,000 Ticks/Sec = 4.66 sec
|
|
|
|
* 2**32 Ticks / 3,600,000 Ticks/Sec = 1193 sec or 19.88 minutes
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
acpi_status
|
2017-11-17 23:40:14 +00:00
|
|
|
acpi_get_timer_duration(u32 start_ticks, u32 end_ticks, u32 *time_elapsed)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2005-08-05 04:44:28 +00:00
|
|
|
acpi_status status;
|
2017-11-17 23:40:14 +00:00
|
|
|
u64 delta_ticks;
|
2010-01-21 02:06:32 +00:00
|
|
|
u64 quotient;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
ACPI: ACPICA 20060421
Removed a device initialization optimization introduced in
20051216 where the _STA method was not run unless an _INI
was also present for the same device. This optimization
could cause problems because it could allow _INI methods
to be run within a not-present device subtree (If a
not-present device had no _INI, _STA would not be run,
the not-present status would not be discovered, and the
children of the device would be incorrectly traversed.)
Implemented a new _STA optimization where namespace
subtrees that do not contain _INI are identified and
ignored during device initialization. Selectively running
_STA can significantly improve boot time on large machines
(with assistance from Len Brown.)
Implemented support for the device initialization case
where the returned _STA flags indicate a device not-present
but functioning. In this case, _INI is not run, but the
device children are examined for presence, as per the
ACPI specification.
Implemented an additional change to the IndexField support
in order to conform to MS behavior. The value written to
the Index Register is not simply a byte offset, it is a
byte offset in units of the access width of the parent
Index Field. (Fiodor Suietov)
Defined and deployed a new OSL interface,
acpi_os_validate_address(). This interface is called during
the creation of all AML operation regions, and allows
the host OS to exert control over what addresses it will
allow the AML code to access. Operation Regions whose
addresses are disallowed will cause a runtime exception
when they are actually accessed (will not affect or abort
table loading.)
Defined and deployed a new OSL interface,
acpi_os_validate_interface(). This interface allows the host OS
to match the various "optional" interface/behavior strings
for the _OSI predefined control method as appropriate
(with assistance from Bjorn Helgaas.)
Restructured and corrected various problems in the
exception handling code paths within DsCallControlMethod
and DsTerminateControlMethod in dsmethod (with assistance
from Takayoshi Kochi.)
Modified the Linux source converter to ignore quoted string
literals while converting identifiers from mixed to lower
case. This will correct problems with the disassembler
and other areas where such strings must not be modified.
The ACPI_FUNCTION_* macros no longer require quotes around
the function name. This allows the Linux source converter
to convert the names, now that the converter ignores
quoted strings.
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2006-04-21 21:15:00 +00:00
|
|
|
ACPI_FUNCTION_TRACE(acpi_get_timer_duration);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
if (!time_elapsed) {
|
2005-08-05 04:44:28 +00:00
|
|
|
return_ACPI_STATUS(AE_BAD_PARAMETER);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2013-08-08 07:29:51 +00:00
|
|
|
/* ACPI 5.0A: PM Timer is optional */
|
|
|
|
|
|
|
|
if (!acpi_gbl_FADT.xpm_timer_block.address) {
|
|
|
|
return_ACPI_STATUS(AE_SUPPORT);
|
|
|
|
}
|
|
|
|
|
2017-11-17 23:40:14 +00:00
|
|
|
if (start_ticks == end_ticks) {
|
|
|
|
*time_elapsed = 0;
|
|
|
|
return_ACPI_STATUS(AE_OK);
|
|
|
|
}
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* Compute Tick Delta:
|
|
|
|
* Handle (max one) timer rollovers on 24-bit versus 32-bit timers.
|
|
|
|
*/
|
2017-11-17 23:40:14 +00:00
|
|
|
delta_ticks = end_ticks;
|
|
|
|
if (start_ticks > end_ticks) {
|
2007-02-02 16:48:18 +00:00
|
|
|
if ((acpi_gbl_FADT.flags & ACPI_FADT_32BIT_TIMER) == 0) {
|
2006-10-02 04:00:00 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/* 24-bit Timer */
|
|
|
|
|
2017-11-17 23:40:14 +00:00
|
|
|
delta_ticks |= (u64)1 << 24;
|
2005-08-05 04:44:28 +00:00
|
|
|
} else {
|
2005-04-16 22:20:36 +00:00
|
|
|
/* 32-bit Timer */
|
|
|
|
|
2017-11-17 23:40:14 +00:00
|
|
|
delta_ticks |= (u64)1 << 32;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
}
|
2017-11-17 23:40:14 +00:00
|
|
|
delta_ticks -= start_ticks;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Compute Duration (Requires a 64-bit multiply and divide):
|
|
|
|
*
|
2012-12-31 00:05:46 +00:00
|
|
|
* time_elapsed (microseconds) =
|
|
|
|
* (delta_ticks * ACPI_USEC_PER_SEC) / ACPI_PM_TIMER_FREQUENCY;
|
2005-04-16 22:20:36 +00:00
|
|
|
*/
|
2017-11-17 23:40:14 +00:00
|
|
|
status = acpi_ut_short_divide(delta_ticks * ACPI_USEC_PER_SEC,
|
2012-12-31 00:05:46 +00:00
|
|
|
ACPI_PM_TIMER_FREQUENCY, "ient, NULL);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2017-11-17 23:40:14 +00:00
|
|
|
*time_elapsed = (u32)quotient;
|
2005-08-05 04:44:28 +00:00
|
|
|
return_ACPI_STATUS(status);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
2005-04-19 02:49:35 +00:00
|
|
|
|
2006-10-03 04:00:00 +00:00
|
|
|
ACPI_EXPORT_SYMBOL(acpi_get_timer_duration)
|
2012-02-14 10:14:27 +00:00
|
|
|
#endif /* !ACPI_REDUCED_HARDWARE */
|