diff options
-rw-r--r-- | drivers/acpi/acpica/hwsleep.c | 2 | ||||
-rw-r--r-- | drivers/acpi/acpica/hwtimer.c | 7 | ||||
-rw-r--r-- | drivers/acpi/acpica/hwxfsleep.c | 2 | ||||
-rw-r--r-- | include/acpi/actypes.h | 17 |
4 files changed, 22 insertions, 6 deletions
diff --git a/drivers/acpi/acpica/hwsleep.c b/drivers/acpi/acpica/hwsleep.c index 691a5fb10d4d..675a8f865063 100644 --- a/drivers/acpi/acpica/hwsleep.c +++ b/drivers/acpi/acpica/hwsleep.c | |||
@@ -177,7 +177,7 @@ acpi_status acpi_hw_legacy_sleep(u8 sleep_state) | |||
177 | * to still read the right value. Ideally, this block would go | 177 | * to still read the right value. Ideally, this block would go |
178 | * away entirely. | 178 | * away entirely. |
179 | */ | 179 | */ |
180 | acpi_os_stall(10000000); | 180 | acpi_os_stall(10 * ACPI_USEC_PER_SEC); |
181 | 181 | ||
182 | status = acpi_hw_register_write(ACPI_REGISTER_PM1_CONTROL, | 182 | status = acpi_hw_register_write(ACPI_REGISTER_PM1_CONTROL, |
183 | sleep_enable_reg_info-> | 183 | sleep_enable_reg_info-> |
diff --git a/drivers/acpi/acpica/hwtimer.c b/drivers/acpi/acpica/hwtimer.c index bfdce22f3798..4e741d85e6b4 100644 --- a/drivers/acpi/acpica/hwtimer.c +++ b/drivers/acpi/acpica/hwtimer.c | |||
@@ -176,10 +176,11 @@ acpi_get_timer_duration(u32 start_ticks, u32 end_ticks, u32 * time_elapsed) | |||
176 | /* | 176 | /* |
177 | * Compute Duration (Requires a 64-bit multiply and divide): | 177 | * Compute Duration (Requires a 64-bit multiply and divide): |
178 | * | 178 | * |
179 | * time_elapsed = (delta_ticks * 1000000) / PM_TIMER_FREQUENCY; | 179 | * time_elapsed (microseconds) = |
180 | * (delta_ticks * ACPI_USEC_PER_SEC) / ACPI_PM_TIMER_FREQUENCY; | ||
180 | */ | 181 | */ |
181 | status = acpi_ut_short_divide(((u64) delta_ticks) * 1000000, | 182 | status = acpi_ut_short_divide(((u64)delta_ticks) * ACPI_USEC_PER_SEC, |
182 | PM_TIMER_FREQUENCY, "ient, NULL); | 183 | ACPI_PM_TIMER_FREQUENCY, "ient, NULL); |
183 | 184 | ||
184 | *time_elapsed = (u32) quotient; | 185 | *time_elapsed = (u32) quotient; |
185 | return_ACPI_STATUS(status); | 186 | return_ACPI_STATUS(status); |
diff --git a/drivers/acpi/acpica/hwxfsleep.c b/drivers/acpi/acpica/hwxfsleep.c index 6fcee00cb34b..ca4df0f1a621 100644 --- a/drivers/acpi/acpica/hwxfsleep.c +++ b/drivers/acpi/acpica/hwxfsleep.c | |||
@@ -207,7 +207,7 @@ acpi_status asmlinkage acpi_enter_sleep_state_s4bios(void) | |||
207 | (u32)acpi_gbl_FADT.s4_bios_request, 8); | 207 | (u32)acpi_gbl_FADT.s4_bios_request, 8); |
208 | 208 | ||
209 | do { | 209 | do { |
210 | acpi_os_stall(1000); | 210 | acpi_os_stall(ACPI_USEC_PER_MSEC); |
211 | status = | 211 | status = |
212 | acpi_read_bit_register(ACPI_BITREG_WAKE_STATUS, &in_value); | 212 | acpi_read_bit_register(ACPI_BITREG_WAKE_STATUS, &in_value); |
213 | if (ACPI_FAILURE(status)) { | 213 | if (ACPI_FAILURE(status)) { |
diff --git a/include/acpi/actypes.h b/include/acpi/actypes.h index 3de70eddd4e5..796a63e887ee 100644 --- a/include/acpi/actypes.h +++ b/include/acpi/actypes.h | |||
@@ -341,7 +341,7 @@ typedef u32 acpi_physical_address; | |||
341 | 341 | ||
342 | /* PM Timer ticks per second (HZ) */ | 342 | /* PM Timer ticks per second (HZ) */ |
343 | 343 | ||
344 | #define PM_TIMER_FREQUENCY 3579545 | 344 | #define ACPI_PM_TIMER_FREQUENCY 3579545 |
345 | 345 | ||
346 | /******************************************************************************* | 346 | /******************************************************************************* |
347 | * | 347 | * |
@@ -373,6 +373,21 @@ typedef u32 acpi_name; /* 4-byte ACPI name */ | |||
373 | typedef char *acpi_string; /* Null terminated ASCII string */ | 373 | typedef char *acpi_string; /* Null terminated ASCII string */ |
374 | typedef void *acpi_handle; /* Actually a ptr to a NS Node */ | 374 | typedef void *acpi_handle; /* Actually a ptr to a NS Node */ |
375 | 375 | ||
376 | /* Time constants for timer calculations */ | ||
377 | |||
378 | #define ACPI_MSEC_PER_SEC 1000L | ||
379 | |||
380 | #define ACPI_USEC_PER_MSEC 1000L | ||
381 | #define ACPI_USEC_PER_SEC 1000000L | ||
382 | |||
383 | #define ACPI_100NSEC_PER_USEC 10L | ||
384 | #define ACPI_100NSEC_PER_MSEC 10000L | ||
385 | #define ACPI_100NSEC_PER_SEC 10000000L | ||
386 | |||
387 | #define ACPI_NSEC_PER_USEC 1000L | ||
388 | #define ACPI_NSEC_PER_MSEC 1000000L | ||
389 | #define ACPI_NSEC_PER_SEC 1000000000L | ||
390 | |||
376 | /* Owner IDs are used to track namespace nodes for selective deletion */ | 391 | /* Owner IDs are used to track namespace nodes for selective deletion */ |
377 | 392 | ||
378 | typedef u8 acpi_owner_id; | 393 | typedef u8 acpi_owner_id; |