Link: https://lore.kernel.org/r/20260217200002.683975158@linuxfoundation.org Tested-by: Florian Fainelli <florian.fainelli@broadcom.com> Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com> Tested-by: Peter Schneider <pschneider1968@googlemail.com> Tested-by: Jon Hunter <jonathanh@nvidia.com> Tested-by: Salvatore Bonaccorso <carnil@debian.org> Tested-by: Brett A C Sheffield <bacs@librecast.net> Tested-by: Mark Brown <broonie@kernel.org> Tested-by: Luna Jernberg <droidbittin@gmail.com> Tested-by: Ronald Warsow <rwarsow@gmx.de> Tested-by: Justin M. Forbes <jforbes@fedoraproject.org> Tested-by: Ron Economos <re@w6rz.net> Tested-by: Miguel Ojeda <ojeda@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
47 lines
940 B
C
47 lines
940 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* Precise Delay Loops for S390
|
|
*
|
|
* Copyright IBM Corp. 1999, 2008
|
|
* Author(s): Martin Schwidefsky <schwidefsky@de.ibm.com>,
|
|
*/
|
|
|
|
#include <linux/processor.h>
|
|
#include <linux/export.h>
|
|
#include <linux/delay.h>
|
|
#include <asm/div64.h>
|
|
#include <asm/timex.h>
|
|
|
|
void __delay(unsigned long loops)
|
|
{
|
|
/*
|
|
* Loop 'loops' times. Callers must not assume a specific
|
|
* amount of time passes before this function returns.
|
|
*/
|
|
asm volatile("0: brct %0,0b" : : "d" ((loops/2) + 1));
|
|
}
|
|
EXPORT_SYMBOL(__delay);
|
|
|
|
static void delay_loop(unsigned long delta)
|
|
{
|
|
unsigned long end;
|
|
|
|
end = get_tod_clock_monotonic() + delta;
|
|
while (!tod_after(get_tod_clock_monotonic(), end))
|
|
cpu_relax();
|
|
}
|
|
|
|
void __udelay(unsigned long usecs)
|
|
{
|
|
delay_loop(usecs << 12);
|
|
}
|
|
EXPORT_SYMBOL(__udelay);
|
|
|
|
void __ndelay(unsigned long nsecs)
|
|
{
|
|
nsecs <<= 9;
|
|
do_div(nsecs, 125);
|
|
delay_loop(nsecs);
|
|
}
|
|
EXPORT_SYMBOL(__ndelay);
|