Print this page
update to acpica-unix2-20140114
update to acpica-unix2-20130927
acpica-unix2-20130823
PANKOVs restructure
   1 
   2 /******************************************************************************
   3  *
   4  * Name: hwtimer.c - ACPI Power Management Timer Interface
   5  *
   6  *****************************************************************************/
   7 
   8 /*
   9  * Copyright (C) 2000 - 2011, Intel Corp.
  10  * 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 


  45 #include "acpi.h"
  46 #include "accommon.h"
  47 
  48 #define _COMPONENT          ACPI_HARDWARE
  49         ACPI_MODULE_NAME    ("hwtimer")
  50 
  51 

  52 /******************************************************************************
  53  *
  54  * FUNCTION:    AcpiGetTimerResolution
  55  *
  56  * PARAMETERS:  Resolution          - Where the resolution is returned
  57  *
  58  * RETURN:      Status and timer resolution
  59  *
  60  * DESCRIPTION: Obtains resolution of the ACPI PM Timer (24 or 32 bits).
  61  *
  62  ******************************************************************************/
  63 
  64 ACPI_STATUS
  65 AcpiGetTimerResolution (
  66     UINT32                  *Resolution)
  67 {
  68     ACPI_FUNCTION_TRACE (AcpiGetTimerResolution);
  69 
  70 
  71     if (!Resolution)


  98  *
  99  * DESCRIPTION: Obtains current value of ACPI PM Timer (in ticks).
 100  *
 101  ******************************************************************************/
 102 
 103 ACPI_STATUS
 104 AcpiGetTimer (
 105     UINT32                  *Ticks)
 106 {
 107     ACPI_STATUS             Status;
 108 
 109 
 110     ACPI_FUNCTION_TRACE (AcpiGetTimer);
 111 
 112 
 113     if (!Ticks)
 114     {
 115         return_ACPI_STATUS (AE_BAD_PARAMETER);
 116     }
 117 
 118     Status = AcpiHwRead (Ticks, &AcpiGbl_FADT.XPmTimerBlock);
 119 






 120     return_ACPI_STATUS (Status);
 121 }
 122 
 123 ACPI_EXPORT_SYMBOL (AcpiGetTimer)
 124 
 125 
 126 /******************************************************************************
 127  *
 128  * FUNCTION:    AcpiGetTimerDuration
 129  *
 130  * PARAMETERS:  StartTicks          - Starting timestamp
 131  *              EndTicks            - End timestamp
 132  *              TimeElapsed         - Where the elapsed time is returned
 133  *
 134  * RETURN:      Status and TimeElapsed
 135  *
 136  * DESCRIPTION: Computes the time elapsed (in microseconds) between two
 137  *              PM Timer time stamps, taking into account the possibility of
 138  *              rollovers, the timer resolution, and timer frequency.
 139  *


 154 
 155 ACPI_STATUS
 156 AcpiGetTimerDuration (
 157     UINT32                  StartTicks,
 158     UINT32                  EndTicks,
 159     UINT32                  *TimeElapsed)
 160 {
 161     ACPI_STATUS             Status;
 162     UINT32                  DeltaTicks;
 163     UINT64                  Quotient;
 164 
 165 
 166     ACPI_FUNCTION_TRACE (AcpiGetTimerDuration);
 167 
 168 
 169     if (!TimeElapsed)
 170     {
 171         return_ACPI_STATUS (AE_BAD_PARAMETER);
 172     }
 173 







 174     /*
 175      * Compute Tick Delta:
 176      * Handle (max one) timer rollovers on 24-bit versus 32-bit timers.
 177      */
 178     if (StartTicks < EndTicks)
 179     {
 180         DeltaTicks = EndTicks - StartTicks;
 181     }
 182     else if (StartTicks > EndTicks)
 183     {
 184         if ((AcpiGbl_FADT.Flags & ACPI_FADT_32BIT_TIMER) == 0)
 185         {
 186             /* 24-bit Timer */
 187 
 188             DeltaTicks = (((0x00FFFFFF - StartTicks) + EndTicks) & 0x00FFFFFF);
 189         }
 190         else
 191         {
 192             /* 32-bit Timer */
 193 
 194             DeltaTicks = (0xFFFFFFFF - StartTicks) + EndTicks;
 195         }
 196     }
 197     else /* StartTicks == EndTicks */
 198     {
 199         *TimeElapsed = 0;
 200         return_ACPI_STATUS (AE_OK);
 201     }
 202 
 203     /*
 204      * Compute Duration (Requires a 64-bit multiply and divide):
 205      *
 206      * TimeElapsed = (DeltaTicks * 1000000) / PM_TIMER_FREQUENCY;

 207      */
 208     Status = AcpiUtShortDivide (((UINT64) DeltaTicks) * 1000000,
 209                 PM_TIMER_FREQUENCY, &Quotient, NULL);
 210 
 211     *TimeElapsed = (UINT32) Quotient;
 212     return_ACPI_STATUS (Status);
 213 }
 214 
 215 ACPI_EXPORT_SYMBOL (AcpiGetTimerDuration)
 216 


   1 /******************************************************************************
   2  *
   3  * Name: hwtimer.c - ACPI Power Management Timer Interface
   4  *
   5  *****************************************************************************/
   6 
   7 /*
   8  * Copyright (C) 2000 - 2014, Intel Corp.
   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 
  44 #define EXPORT_ACPI_INTERFACES
  45 
  46 #include "acpi.h"
  47 #include "accommon.h"
  48 
  49 #define _COMPONENT          ACPI_HARDWARE
  50         ACPI_MODULE_NAME    ("hwtimer")
  51 
  52 
  53 #if (!ACPI_REDUCED_HARDWARE) /* Entire module */
  54 /******************************************************************************
  55  *
  56  * FUNCTION:    AcpiGetTimerResolution
  57  *
  58  * PARAMETERS:  Resolution          - Where the resolution is returned
  59  *
  60  * RETURN:      Status and timer resolution
  61  *
  62  * DESCRIPTION: Obtains resolution of the ACPI PM Timer (24 or 32 bits).
  63  *
  64  ******************************************************************************/
  65 
  66 ACPI_STATUS
  67 AcpiGetTimerResolution (
  68     UINT32                  *Resolution)
  69 {
  70     ACPI_FUNCTION_TRACE (AcpiGetTimerResolution);
  71 
  72 
  73     if (!Resolution)


 100  *
 101  * DESCRIPTION: Obtains current value of ACPI PM Timer (in ticks).
 102  *
 103  ******************************************************************************/
 104 
 105 ACPI_STATUS
 106 AcpiGetTimer (
 107     UINT32                  *Ticks)
 108 {
 109     ACPI_STATUS             Status;
 110 
 111 
 112     ACPI_FUNCTION_TRACE (AcpiGetTimer);
 113 
 114 
 115     if (!Ticks)
 116     {
 117         return_ACPI_STATUS (AE_BAD_PARAMETER);
 118     }
 119 
 120     /* ACPI 5.0A: PM Timer is optional */
 121 
 122     if (!AcpiGbl_FADT.XPmTimerBlock.Address)
 123     {
 124         return_ACPI_STATUS (AE_SUPPORT);
 125     }
 126 
 127     Status = AcpiHwRead (Ticks, &AcpiGbl_FADT.XPmTimerBlock);
 128     return_ACPI_STATUS (Status);
 129 }
 130 
 131 ACPI_EXPORT_SYMBOL (AcpiGetTimer)
 132 
 133 
 134 /******************************************************************************
 135  *
 136  * FUNCTION:    AcpiGetTimerDuration
 137  *
 138  * PARAMETERS:  StartTicks          - Starting timestamp
 139  *              EndTicks            - End timestamp
 140  *              TimeElapsed         - Where the elapsed time is returned
 141  *
 142  * RETURN:      Status and TimeElapsed
 143  *
 144  * DESCRIPTION: Computes the time elapsed (in microseconds) between two
 145  *              PM Timer time stamps, taking into account the possibility of
 146  *              rollovers, the timer resolution, and timer frequency.
 147  *


 162 
 163 ACPI_STATUS
 164 AcpiGetTimerDuration (
 165     UINT32                  StartTicks,
 166     UINT32                  EndTicks,
 167     UINT32                  *TimeElapsed)
 168 {
 169     ACPI_STATUS             Status;
 170     UINT32                  DeltaTicks;
 171     UINT64                  Quotient;
 172 
 173 
 174     ACPI_FUNCTION_TRACE (AcpiGetTimerDuration);
 175 
 176 
 177     if (!TimeElapsed)
 178     {
 179         return_ACPI_STATUS (AE_BAD_PARAMETER);
 180     }
 181 
 182     /* ACPI 5.0A: PM Timer is optional */
 183 
 184     if (!AcpiGbl_FADT.XPmTimerBlock.Address)
 185     {
 186         return_ACPI_STATUS (AE_SUPPORT);
 187     }
 188 
 189     /*
 190      * Compute Tick Delta:
 191      * Handle (max one) timer rollovers on 24-bit versus 32-bit timers.
 192      */
 193     if (StartTicks < EndTicks)
 194     {
 195         DeltaTicks = EndTicks - StartTicks;
 196     }
 197     else if (StartTicks > EndTicks)
 198     {
 199         if ((AcpiGbl_FADT.Flags & ACPI_FADT_32BIT_TIMER) == 0)
 200         {
 201             /* 24-bit Timer */
 202 
 203             DeltaTicks = (((0x00FFFFFF - StartTicks) + EndTicks) & 0x00FFFFFF);
 204         }
 205         else
 206         {
 207             /* 32-bit Timer */
 208 
 209             DeltaTicks = (0xFFFFFFFF - StartTicks) + EndTicks;
 210         }
 211     }
 212     else /* StartTicks == EndTicks */
 213     {
 214         *TimeElapsed = 0;
 215         return_ACPI_STATUS (AE_OK);
 216     }
 217 
 218     /*
 219      * Compute Duration (Requires a 64-bit multiply and divide):
 220      *
 221      * TimeElapsed (microseconds) =
 222      *  (DeltaTicks * ACPI_USEC_PER_SEC) / ACPI_PM_TIMER_FREQUENCY;
 223      */
 224     Status = AcpiUtShortDivide (((UINT64) DeltaTicks) * ACPI_USEC_PER_SEC,
 225                 ACPI_PM_TIMER_FREQUENCY, &Quotient, NULL);
 226 
 227     *TimeElapsed = (UINT32) Quotient;
 228     return_ACPI_STATUS (Status);
 229 }
 230 
 231 ACPI_EXPORT_SYMBOL (AcpiGetTimerDuration)
 232 
 233 #endif /* !ACPI_REDUCED_HARDWARE */