2 * Copyright (C) 2007-2009 Michal Simek <monstr@monstr.eu>
3 * Copyright (C) 2007-2009 PetaLogix
4 * Copyright (C) 2007 John Williams <john.williams@petalogix.com>
6 * This file is subject to the terms and conditions of the GNU General Public
7 * License. See the file "COPYING" in the main directory of this archive
11 #include <linux/init.h>
12 #include <linux/slab.h>
13 #include <asm/cpuinfo.h>
16 const struct cpu_ver_key cpu_ver_lookup
[] = {
17 /* These key value are as per MBV field in PVR0 */
29 /* FIXME There is no keycode defined in MBV for these versions */
38 * FIXME Not sure if the actual key is defined by Xilinx in the PVR
40 const struct family_string_key family_string_lookup
[] = {
49 {"spartan3adsp", 0xc},
50 /* FIXME There is no key code defined for spartan2 */
55 struct cpuinfo cpuinfo
;
57 void __init
setup_cpuinfo(void)
59 struct device_node
*cpu
= NULL
;
61 cpu
= (struct device_node
*) of_find_node_by_type(NULL
, "cpu");
63 printk(KERN_ERR
"You don't have cpu!!!\n");
65 printk(KERN_INFO
"%s: initialising\n", __func__
);
67 switch (cpu_has_pvr()) {
70 "%s: No PVR support. Using static CPU info from FDT\n",
72 set_cpuinfo_static(&cpuinfo
, cpu
);
74 /* FIXME I found weird behavior with MB 7.00.a/b 7.10.a
75 * please do not use FULL PVR with MMU */
77 printk(KERN_INFO
"%s: Using full CPU PVR support\n",
79 set_cpuinfo_static(&cpuinfo
, cpu
);
80 set_cpuinfo_pvr_full(&cpuinfo
, cpu
);
83 printk(KERN_WARNING
"%s: Unsupported PVR setting\n", __func__
);
84 set_cpuinfo_static(&cpuinfo
, cpu
);