1 /* MN10300 Short delay interpolation routines
3 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public Licence
8 * as published by the Free Software Foundation; either version
9 * 2 of the Licence, or (at your option) any later version.
11 #include <linux/module.h>
12 #include <linux/sched.h>
13 #include <linux/delay.h>
14 #include <asm/div64.h>
19 void __delay(unsigned long loops)
34 EXPORT_SYMBOL(__delay);
37 * handle a delay specified in terms of microseconds
39 void __udelay(unsigned long usecs)
41 unsigned long start, stop, cnt;
43 /* usecs * CLK / 1E6 */
44 stop = __muldiv64u(usecs, MN10300_TSCCLK, 1000000);
48 cnt = start - TMTSCBC;
51 EXPORT_SYMBOL(__udelay);