/* * Copyright (C) 2012-2015 - ARM Ltd * Author: Marc Zyngier <marc.zyngier@arm.com> * * 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 distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ #include <clocksource/arm_arch_timer.h> #include <linux/compiler.h> #include <linux/kvm_host.h> #include <asm/kvm_hyp.h>
void __hyp_text __kvm_timer_set_cntvoff(u32 cntvoff_low, u32 cntvoff_high) { u64 cntvoff = (u64)cntvoff_high << 32 | cntvoff_low; write_sysreg(cntvoff, cntvoff_el2); }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Christoffer Dall | 19 | 61.29% | 1 | 33.33% |
Marc Zyngier | 11 | 35.48% | 1 | 33.33% |
Jintack Lim | 1 | 3.23% | 1 | 33.33% |
Total | 31 | 100.00% | 3 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Christoffer Dall | 21 | 47.73% | 2 | 50.00% |
Marc Zyngier | 21 | 47.73% | 1 | 25.00% |
Jintack Lim | 2 | 4.55% | 1 | 25.00% |
Total | 44 | 100.00% | 4 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Marc Zyngier | 32 | 69.57% | 1 | 33.33% |
Christoffer Dall | 13 | 28.26% | 1 | 33.33% |
Jintack Lim | 1 | 2.17% | 1 | 33.33% |
Total | 46 | 100.00% | 3 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Marc Zyngier | 77 | 57.46% | 2 | 33.33% |
Christoffer Dall | 53 | 39.55% | 2 | 33.33% |
Jintack Lim | 4 | 2.99% | 2 | 33.33% |
Total | 134 | 100.00% | 6 | 100.00% |