/* * ARM64 CPU idle arch support * * Copyright (C) 2014 ARM Ltd. * Author: Lorenzo Pieralisi <lorenzo.pieralisi@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. */ #include <linux/acpi.h> #include <linux/cpuidle.h> #include <linux/cpu_pm.h> #include <linux/of.h> #include <linux/of_device.h> #include <asm/cpuidle.h> #include <asm/cpu_ops.h>
int arm_cpuidle_init(unsigned int cpu) { int ret = -EOPNOTSUPP; if (cpu_ops[cpu] && cpu_ops[cpu]->cpu_suspend && cpu_ops[cpu]->cpu_init_idle) ret = cpu_ops[cpu]->cpu_init_idle(cpu); return ret; }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Lorenzo Pieralisi | 43 | 84.31% | 1 | 33.33% |
JiSheng Zhang | 7 | 13.73% | 1 | 33.33% |
Daniel Lezcano | 1 | 1.96% | 1 | 33.33% |
Total | 51 | 100.00% | 3 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Lorenzo Pieralisi | 21 | 84.00% | 1 | 50.00% |
Sudeep Holla | 4 | 16.00% | 1 | 50.00% |
Total | 25 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Sudeep Holla | 15 | 100.00% | 1 | 100.00% |
Total | 15 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Sudeep Holla | 20 | 100.00% | 1 | 100.00% |
Total | 20 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Lorenzo Pieralisi | 77 | 54.23% | 2 | 28.57% |
Sudeep Holla | 56 | 39.44% | 2 | 28.57% |
JiSheng Zhang | 7 | 4.93% | 1 | 14.29% |
Daniel Lezcano | 1 | 0.70% | 1 | 14.29% |
Geert Uytterhoeven | 1 | 0.70% | 1 | 14.29% |
Total | 142 | 100.00% | 7 | 100.00% |