// SPDX-License-Identifier: GPL-2.0 /* * linux/arch/cris/kernel/time.c * * Copyright (C) 1991, 1992, 1995 Linus Torvalds * Copyright (C) 1999, 2000, 2001 Axis Communications AB * * 1994-07-02 Alan Modra * fixed set_rtc_mmss, fixed time.year for >= 2000, new mktime * 1995-03-26 Markus Kuhn * fixed 500 ms bug at call to set_rtc_mmss, fixed DS12887 * precision CMOS clock update * 1996-05-03 Ingo Molnar * fixed time warps in do_[slow|fast]_gettimeoffset() * 1997-09-10 Updated NTP code according to technical memorandum Jan '96 * "A Kernel Model for Precision Timekeeping" by Dave Mills * * Linux/CRIS specific code: * * Authors: Bjorn Wesen * Johan Adolfsson * */ #include <linux/errno.h> #include <linux/module.h> #include <linux/param.h> #include <linux/jiffies.h> #include <linux/bcd.h> #include <linux/timex.h> #include <linux/init.h> #include <linux/profile.h> #include <linux/sched/clock.h> #define D(x) #define TICK_SIZE tick extern unsigned long loops_per_jiffy; /* init/main.c */ unsigned long loops_per_usec; extern void cris_profile_sample(struct pt_regs* regs);
void cris_do_profile(struct pt_regs* regs) { #ifdef CONFIG_SYSTEM_PROFILER cris_profile_sample(regs); #endif #ifdef CONFIG_PROFILING profile_tick(CPU_PROFILING); #endif }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Mikael Starvik | 26 | 86.67% | 1 | 50.00% |
Jesper Nilsson | 4 | 13.33% | 1 | 50.00% |
Total | 30 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Jesper Nilsson | 26 | 100.00% | 2 | 100.00% |
Total | 26 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Andrew Morton | 22 | 100.00% | 1 | 100.00% |
Total | 22 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Mikael Starvik | 44 | 29.93% | 2 | 14.29% |
Andrew Morton | 40 | 27.21% | 2 | 14.29% |
Jesper Nilsson | 37 | 25.17% | 4 | 28.57% |
Linus Torvalds | 14 | 9.52% | 1 | 7.14% |
Rabin Vincent | 5 | 3.40% | 1 | 7.14% |
Arnaldo Carvalho de Melo | 3 | 2.04% | 1 | 7.14% |
Tim Schmielau | 2 | 1.36% | 1 | 7.14% |
Greg Kroah-Hartman | 1 | 0.68% | 1 | 7.14% |
Ingo Molnar | 1 | 0.68% | 1 | 7.14% |
Total | 147 | 100.00% | 14 | 100.00% |