/* * 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/module.h> #include <linux/init.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 | jonas bonn | 21 | 100.00% | 1 | 100.00% |
Total | 21 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp | |
jonas bonn | jonas bonn | 23 | 79.31% | 1 | 50.00% |
will deacon | will deacon | 6 | 20.69% | 1 | 50.00% |
Total | 29 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp | |
jonas bonn | jonas bonn | 30 | 85.71% | 1 | 50.00% |
will deacon | will deacon | 5 | 14.29% | 1 | 50.00% |
Total | 35 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp | |
jonas bonn | jonas bonn | 17 | 100.00% | 1 | 100.00% |
Total | 17 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp | |
jonas bonn | jonas bonn | 17 | 100.00% | 1 | 100.00% |
Total | 17 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp | |
jonas bonn | jonas bonn | 147 | 93.04% | 1 | 33.33% |
will deacon | will deacon | 11 | 6.96% | 2 | 66.67% |
Total | 158 | 100.00% | 3 | 100.00% |