3 * Copyright (C) 2007-2009 PetaLogix
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 <asm/cpuinfo.h>
15 const struct cpu_ver_key cpu_ver_lookup[] = {
16 /* These key value are as per MBV field in PVR0 */
40 * FIXME Not sure if the actual key is defined by Xilinx in the PVR
42 const struct family_string_key family_string_lookup[] = {
51 {"spartan3adsp", 0xc},
54 /* FIXME There is no key code defined for spartan2 */
59 struct cpuinfo cpuinfo;
61 void __init setup_cpuinfo(void)
63 struct device_node *cpu = NULL;
65 cpu = (struct device_node *) of_find_node_by_type(NULL, "cpu");
67 printk(KERN_ERR "You don't have cpu!!!\n");
69 printk(KERN_INFO "%s: initialising\n", __func__);
71 switch (cpu_has_pvr()) {
74 "%s: No PVR support. Using static CPU info from FDT\n",
76 set_cpuinfo_static(&cpuinfo, cpu);
78 /* FIXME I found weird behavior with MB 7.00.a/b 7.10.a
79 * please do not use FULL PVR with MMU */
81 printk(KERN_INFO "%s: Using full CPU PVR support\n",
83 set_cpuinfo_static(&cpuinfo, cpu);
84 set_cpuinfo_pvr_full(&cpuinfo, cpu);
87 printk(KERN_WARNING "%s: Unsupported PVR setting\n", __func__);
88 set_cpuinfo_static(&cpuinfo, cpu);