mirror of
https://review.coreboot.org/flashrom.git
synced 2025-04-26 14:42:36 +02:00

This allows the minimum time that default_delay() will choose to sleep for instead of polling to be configured at build-time. The default remains unchanged at 100 milliseconds for now. The test's correctness has been checked by testing with minimum sleep time left at its default and set to a non-default value smaller than 100 microseconds (both pass without sleeping, verified with strace) and with the minimum sleep time set to 0 (causing the test to be skipped). The configured value from the macro needs to be stored in a const to avoid -Werror=type-limits errors when configured to be zero. Change-Id: Ida96e0816ac914ed69d6fd82ad90ebe89cdef1cc Signed-off-by: Peter Marheine <pmarheine@chromium.org> Reviewed-on: https://review.coreboot.org/c/flashrom/+/81606 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Anastasia Klimchuk <aklm@chromium.org>
115 lines
2.8 KiB
C
115 lines
2.8 KiB
C
/*
|
|
* This file is part of the flashrom project.
|
|
*
|
|
* Copyright (C) 2000 Silicon Integrated System Corporation
|
|
* Copyright (C) 2009,2010 Carl-Daniel Hailfinger
|
|
* Copyright (C) 2024 Google LLC
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*/
|
|
|
|
#ifndef __LIBPAYLOAD__
|
|
|
|
#include <stdbool.h>
|
|
#include <unistd.h>
|
|
#include <errno.h>
|
|
#include <time.h>
|
|
#include <sys/time.h>
|
|
#include <stdlib.h>
|
|
#include <limits.h>
|
|
#include "flash.h"
|
|
#include "programmer.h"
|
|
|
|
#if HAVE_CLOCK_GETTIME == 1
|
|
|
|
static void clock_usec_delay(int usecs)
|
|
{
|
|
static clockid_t clock_id =
|
|
#ifdef _POSIX_MONOTONIC_CLOCK
|
|
CLOCK_MONOTONIC;
|
|
#else
|
|
CLOCK_REALTIME;
|
|
#endif
|
|
|
|
struct timespec now;
|
|
if (clock_gettime(clock_id, &now)) {
|
|
/* Fall back to realtime clock if monotonic doesn't work */
|
|
if (clock_id != CLOCK_REALTIME && errno == EINVAL) {
|
|
clock_id = CLOCK_REALTIME;
|
|
clock_gettime(clock_id, &now);
|
|
}
|
|
}
|
|
|
|
const long end_nsec = now.tv_nsec + usecs * 1000L;
|
|
const struct timespec end = {
|
|
end_nsec / (1000 * 1000 * 1000) + now.tv_sec,
|
|
end_nsec % (1000 * 1000 * 1000)
|
|
};
|
|
do {
|
|
clock_gettime(clock_id, &now);
|
|
} while (now.tv_sec < end.tv_sec || (now.tv_sec == end.tv_sec && now.tv_nsec < end.tv_nsec));
|
|
}
|
|
|
|
#else
|
|
|
|
static void clock_usec_delay(unsigned int usecs) {
|
|
struct timeval start, end;
|
|
unsigned long elapsed = 0;
|
|
|
|
gettimeofday(&start, NULL);
|
|
|
|
while (elapsed < usecs) {
|
|
gettimeofday(&end, NULL);
|
|
elapsed = 1000000 * (end.tv_sec - start.tv_sec) +
|
|
(end.tv_usec - start.tv_usec);
|
|
/* Protect against time going forward too much. */
|
|
if ((end.tv_sec > start.tv_sec) &&
|
|
((end.tv_sec - start.tv_sec) >= LONG_MAX / 1000000 - 1))
|
|
elapsed = 0;
|
|
/* Protect against time going backwards during leap seconds. */
|
|
if ((end.tv_sec < start.tv_sec) || (elapsed > LONG_MAX))
|
|
elapsed = 0;
|
|
}
|
|
}
|
|
|
|
#endif /* HAVE_CLOCK_GETTIME == 1 */
|
|
|
|
/* Not very precise sleep. */
|
|
void internal_sleep(unsigned int usecs)
|
|
{
|
|
#if IS_WINDOWS
|
|
Sleep((usecs + 999) / 1000);
|
|
#else
|
|
nanosleep(&(struct timespec){usecs / 1000000, (usecs * 1000) % 1000000000UL}, NULL);
|
|
#endif
|
|
}
|
|
|
|
static const unsigned min_sleep = CONFIG_DELAY_MINIMUM_SLEEP_US;
|
|
|
|
/* Precise delay. */
|
|
void default_delay(unsigned int usecs)
|
|
{
|
|
if (usecs < min_sleep) {
|
|
clock_usec_delay(usecs);
|
|
} else {
|
|
internal_sleep(usecs);
|
|
}
|
|
}
|
|
|
|
#else
|
|
#include <libpayload.h>
|
|
|
|
void default_delay(unsigned int usecs)
|
|
{
|
|
udelay(usecs);
|
|
}
|
|
#endif
|