mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-18 03:16:47 +07:00
d2912cb15b
Based on 2 normalized pattern(s): this program is free software you can redistribute it and or modify it under the terms of the gnu general public license version 2 as published by the free software foundation this program is free software you can redistribute it and or modify it under the terms of the gnu general public license version 2 as published by the free software foundation # extracted by the scancode license scanner the SPDX license identifier GPL-2.0-only has been chosen to replace the boilerplate/reference in 4122 file(s). Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Enrico Weigelt <info@metux.net> Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org> Reviewed-by: Allison Randal <allison@lohutok.net> Cc: linux-spdx@vger.kernel.org Link: https://lkml.kernel.org/r/20190604081206.933168790@linutronix.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
42 lines
898 B
C
42 lines
898 B
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* linux/arch/arm/kernel/arch_timer.c
|
|
*
|
|
* Copyright (C) 2011 ARM Ltd.
|
|
* All Rights Reserved
|
|
*/
|
|
#include <linux/init.h>
|
|
#include <linux/types.h>
|
|
#include <linux/errno.h>
|
|
|
|
#include <asm/delay.h>
|
|
|
|
#include <clocksource/arm_arch_timer.h>
|
|
|
|
static unsigned long arch_timer_read_counter_long(void)
|
|
{
|
|
return arch_timer_read_counter();
|
|
}
|
|
|
|
static struct delay_timer arch_delay_timer;
|
|
|
|
static void __init arch_timer_delay_timer_register(void)
|
|
{
|
|
/* Use the architected timer for the delay loop. */
|
|
arch_delay_timer.read_current_timer = arch_timer_read_counter_long;
|
|
arch_delay_timer.freq = arch_timer_get_rate();
|
|
register_current_timer_delay(&arch_delay_timer);
|
|
}
|
|
|
|
int __init arch_timer_arch_init(void)
|
|
{
|
|
u32 arch_timer_rate = arch_timer_get_rate();
|
|
|
|
if (arch_timer_rate == 0)
|
|
return -ENXIO;
|
|
|
|
arch_timer_delay_timer_register();
|
|
|
|
return 0;
|
|
}
|