/* * Copyright (C) 2002 ARM Ltd. * All Rights Reserved * Copyright (c) 2010, 2012-2013, NVIDIA Corporation. All rights reserved. * * 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/clk/tegra.h> #include <linux/kernel.h> #include <linux/smp.h> #include <soc/tegra/common.h> #include <soc/tegra/fuse.h> #include <asm/smp_plat.h> #include "common.h" #include "sleep.h" static void (*tegra_hotplug_shutdown)(void);
int tegra_cpu_kill(unsigned cpu) { cpu = cpu_logical_map(cpu); /* Clock gate the CPU */ tegra_wait_cpu_in_reset(cpu); tegra_disable_cpu_clock(cpu); return 1; }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Joseph Lo | 16 | 55.17% | 2 | 50.00% |
Colin Cross | 9 | 31.03% | 1 | 25.00% |
Russell King | 4 | 13.79% | 1 | 25.00% |
Total | 29 | 100.00% | 4 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Joseph Lo | 22 | 57.89% | 3 | 60.00% |
Thierry Reding | 15 | 39.47% | 1 | 20.00% |
Colin Cross | 1 | 2.63% | 1 | 20.00% |
Total | 38 | 100.00% | 5 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Joseph Lo | 43 | 44.79% | 4 | 57.14% |
Hiroshi Doyu | 28 | 29.17% | 1 | 14.29% |
Thierry Reding | 25 | 26.04% | 2 | 28.57% |
Total | 96 | 100.00% | 7 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Joseph Lo | 89 | 43.63% | 6 | 42.86% |
Thierry Reding | 56 | 27.45% | 4 | 28.57% |
Hiroshi Doyu | 31 | 15.20% | 1 | 7.14% |
Colin Cross | 23 | 11.27% | 1 | 7.14% |
Russell King | 4 | 1.96% | 1 | 7.14% |
Prashant Gaikwad | 1 | 0.49% | 1 | 7.14% |
Total | 204 | 100.00% | 14 | 100.00% |