blob: da24067a59f9c042ac7e7faee3caa91115400093 [file] [log] [blame]
Furquan Shaikh4208e0c2014-04-28 16:43:07 -07001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright 2014 Google Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
Furquan Shaikh4208e0c2014-04-28 16:43:07 -070014 */
15
16#include <console/console.h>
17#include <timer.h>
18#include <delay.h>
19#include <thread.h>
20
Julius Werner44cf8702014-12-08 13:39:14 -080021__attribute__((weak)) void init_timer() { /* do nothing */ }
22
Furquan Shaikh4208e0c2014-04-28 16:43:07 -070023void udelay(unsigned usec)
24{
Aaron Durbinb9894ef2014-09-23 16:33:21 -050025 struct stopwatch sw;
Aaron Durbin515bd132014-08-04 16:21:50 -050026
27 /*
Aaron Durbine5e36302014-09-25 10:05:15 -050028 * As the timer granularity is in microseconds pad the
Aaron Durbin515bd132014-08-04 16:21:50 -050029 * requested delay by one to get at least >= requested usec delay.
30 */
Aaron Durbinb9894ef2014-09-23 16:33:21 -050031 usec += 1;
32
33 if (!thread_yield_microseconds(usec))
34 return;
35
36 stopwatch_init_usecs_expire(&sw, usec);
Aaron Durbine5e36302014-09-25 10:05:15 -050037
Aaron Durbinb9894ef2014-09-23 16:33:21 -050038 while (!stopwatch_expired(&sw))
39 ;
Furquan Shaikh4208e0c2014-04-28 16:43:07 -070040}