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/clk.h>
12 #include <linux/init.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 */
56 * FIXME Not sure if the actual key is defined by Xilinx in the PVR
58 const struct family_string_key family_string_lookup
[] = {
67 {"spartan3adsp", 0xc},
71 /* FIXME There is no key code defined for spartan2 */
76 {"UltraScale Virtex", 0x13},
77 {"UltraScale Kintex", 0x14},
81 struct cpuinfo cpuinfo
;
82 static struct device_node
*cpu
;
84 void __init
setup_cpuinfo(void)
86 cpu
= (struct device_node
*) of_find_node_by_type(NULL
, "cpu");
88 pr_err("You don't have cpu!!!\n");
90 pr_info("%s: initialising\n", __func__
);
92 switch (cpu_has_pvr()) {
94 pr_warn("%s: No PVR support. Using static CPU info from FDT\n",
96 set_cpuinfo_static(&cpuinfo
, cpu
);
98 /* FIXME I found weird behavior with MB 7.00.a/b 7.10.a
99 * please do not use FULL PVR with MMU */
101 pr_info("%s: Using full CPU PVR support\n",
103 set_cpuinfo_static(&cpuinfo
, cpu
);
104 set_cpuinfo_pvr_full(&cpuinfo
, cpu
);
107 pr_warn("%s: Unsupported PVR setting\n", __func__
);
108 set_cpuinfo_static(&cpuinfo
, cpu
);
111 if (cpuinfo
.mmu_privins
)
112 pr_warn("%s: Stream instructions enabled"
113 " - USERSPACE CAN LOCK THIS KERNEL!\n", __func__
);
116 void __init
setup_cpuinfo_clk(void)
120 clk
= of_clk_get(cpu
, 0);
122 pr_err("ERROR: CPU CCF input clock not found\n");
123 /* take timebase-frequency from DTS */
124 cpuinfo
.cpu_clock_freq
= fcpu(cpu
, "timebase-frequency");
126 cpuinfo
.cpu_clock_freq
= clk_get_rate(clk
);
129 if (!cpuinfo
.cpu_clock_freq
) {
130 pr_err("ERROR: CPU clock frequency not setup\n");