blob: a2edc5c96d5d72525ffbb5a48a4c06d966796368 [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.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19
20#include <console/console.h>
21#include <timer.h>
22#include <delay.h>
23#include <thread.h>
24
Furquan Shaikh4208e0c2014-04-28 16:43:07 -070025void udelay(unsigned usec)
26{
Aaron Durbinb9894ef2014-09-23 16:33:21 -050027 struct stopwatch sw;
Aaron Durbin515bd132014-08-04 16:21:50 -050028
29 /*
Aaron Durbine5e36302014-09-25 10:05:15 -050030 * As the timer granularity is in microseconds pad the
Aaron Durbin515bd132014-08-04 16:21:50 -050031 * requested delay by one to get at least >= requested usec delay.
32 */
Aaron Durbinb9894ef2014-09-23 16:33:21 -050033 usec += 1;
34
35 if (!thread_yield_microseconds(usec))
36 return;
37
38 stopwatch_init_usecs_expire(&sw, usec);
Aaron Durbine5e36302014-09-25 10:05:15 -050039
Aaron Durbinb9894ef2014-09-23 16:33:21 -050040 while (!stopwatch_expired(&sw))
41 ;
Furquan Shaikh4208e0c2014-04-28 16:43:07 -070042}