/* * 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 | 105 | 52.24% | 2 | 25.00% |
Yoshinori Sato | 52 | 25.87% | 1 | 12.50% |
Paul Mundt | 44 | 21.89% | 5 | 62.50% |
Total | 201 | 100.00% | 8 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Rich Felker | 179 | 62.81% | 2 | 25.00% |
Paul Mundt | 54 | 18.95% | 5 | 62.50% |
Yoshinori Sato | 52 | 18.25% | 1 | 12.50% |
Total | 285 | 100.00% | 8 | 100.00% |