/* * arch/arm/mach-mvebu/dove.c * * Marvell Dove 88AP510 System On Chip FDT Board * * This file is licensed under the terms of the GNU General Public * License version 2. This program is licensed "as is" without any * warranty of any kind, whether express or implied. */ #include <linux/init.h> #include <linux/mbus.h> #include <linux/of.h> #include <linux/soc/dove/pmu.h> #include <asm/hardware/cache-tauros2.h> #include <asm/mach/arch.h> #include "common.h"
static void __init dove_init(void) { pr_info("Dove 88AP510 SoC\n"); #ifdef CONFIG_CACHE_TAUROS2 tauros2_init(0); #endif BUG_ON(mvebu_mbus_dt_init(false)); dove_init_pmu(); }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Arnd Bergmann | 26 | 74.29% | 1 | 20.00% |
Sebastian Hesselbarth | 3 | 8.57% | 2 | 40.00% |
Russell King | 3 | 8.57% | 1 | 20.00% |
Thomas Petazzoni | 3 | 8.57% | 1 | 20.00% |
Total | 35 | 100.00% | 5 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Arnd Bergmann | 74 | 78.72% | 1 | 16.67% |
Sebastian Hesselbarth | 10 | 10.64% | 2 | 33.33% |
Russell King | 6 | 6.38% | 1 | 16.67% |
Thomas Petazzoni | 4 | 4.26% | 2 | 33.33% |
Total | 94 | 100.00% | 6 | 100.00% |