/* * arch/sh/kernel/cpu/sh2/probe.c * * CPU Subtype Probing for SH-2. * * Copyright (C) 2002 Paul Mundt * * This file is subject to the terms and conditions of the GNU General Public * License. See the file "COPYING" in the main directory of this archive * for more details. */ #include <linux/init.h> #include <linux/of_fdt.h> #include <linux/smp.h> #include <linux/io.h> #include <asm/processor.h> #include <asm/cache.h> #if defined(CONFIG_CPU_J2) extern u32 __iomem *j2_ccr_base;
static int __init scan_cache(unsigned long node, const char *uname, int depth, void *data) { if (!of_flat_dt_is_compatible(node, "jcore,cache")) return 0; j2_ccr_base = (u32 __iomem *)of_flat_dt_translate_address(node); return 1; }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Rich Felker | 51 | 100.00% | 1 | 100.00% |
Total | 51 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Rich Felker | 120 | 55.56% | 3 | 33.33% |
Yoshinori Sato | 52 | 24.07% | 1 | 11.11% |
Paul Mundt | 44 | 20.37% | 5 | 55.56% |
Total | 216 | 100.00% | 9 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Rich Felker | 194 | 64.67% | 3 | 33.33% |
Paul Mundt | 54 | 18.00% | 5 | 55.56% |
Yoshinori Sato | 52 | 17.33% | 1 | 11.11% |
Total | 300 | 100.00% | 9 | 100.00% |