/* * OpenRISC Linux * * Linux architectural port borrowing liberally from similar works of * others. All original copyrights apply as per the original source * declaration. * * Modifications for the OpenRISC architecture: * Copyright (C) 2010-2011 Jonas Bonn <jonas@southpole.se> * * 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 * * Precise Delay Loops */ #include <linux/kernel.h> #include <linux/export.h> #include <linux/init.h> #include <asm/param.h> #include <asm/delay.h> #include <asm/timex.h> #include <asm/processor.h>
int read_current_timer(unsigned long *timer_value) { *timer_value = mfspr(SPR_TTCR); return 0; }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Jonas Bonn | 21 | 100.00% | 1 | 100.00% |
Total | 21 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Jonas Bonn | 23 | 79.31% | 1 | 50.00% |
Will Deacon | 6 | 20.69% | 1 | 50.00% |
Total | 29 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Jonas Bonn | 30 | 85.71% | 1 | 50.00% |
Will Deacon | 5 | 14.29% | 1 | 50.00% |
Total | 35 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Jonas Bonn | 17 | 100.00% | 1 | 100.00% |
Total | 17 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Jonas Bonn | 17 | 100.00% | 1 | 100.00% |
Total | 17 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Jonas Bonn | 146 | 90.68% | 1 | 25.00% |
Will Deacon | 11 | 6.83% | 2 | 50.00% |
Stafford Horne | 4 | 2.48% | 1 | 25.00% |
Total | 161 | 100.00% | 4 | 100.00% |