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 */
54 * FIXME Not sure if the actual key is defined by Xilinx in the PVR
56 const struct family_string_key family_string_lookup
[] = {
65 {"spartan3adsp", 0xc},
69 /* FIXME There is no key code defined for spartan2 */
74 {"UltraScale Virtex", 0x13},
75 {"UltraScale Kintex", 0x14},
79 struct cpuinfo cpuinfo
;
80 static struct device_node
*cpu
;
82 void __init
setup_cpuinfo(void)
84 cpu
= (struct device_node
*) of_find_node_by_type(NULL
, "cpu");
86 pr_err("You don't have cpu!!!\n");
88 pr_info("%s: initialising\n", __func__
);
90 switch (cpu_has_pvr()) {
92 pr_warn("%s: No PVR support. Using static CPU info from FDT\n",
94 set_cpuinfo_static(&cpuinfo
, cpu
);
96 /* FIXME I found weird behavior with MB 7.00.a/b 7.10.a
97 * please do not use FULL PVR with MMU */
99 pr_info("%s: Using full CPU PVR support\n",
101 set_cpuinfo_static(&cpuinfo
, cpu
);
102 set_cpuinfo_pvr_full(&cpuinfo
, cpu
);
105 pr_warn("%s: Unsupported PVR setting\n", __func__
);
106 set_cpuinfo_static(&cpuinfo
, cpu
);
109 if (cpuinfo
.mmu_privins
)
110 pr_warn("%s: Stream instructions enabled"
111 " - USERSPACE CAN LOCK THIS KERNEL!\n", __func__
);
114 void __init
setup_cpuinfo_clk(void)
118 clk
= of_clk_get(cpu
, 0);
120 pr_err("ERROR: CPU CCF input clock not found\n");
121 /* take timebase-frequency from DTS */
122 cpuinfo
.cpu_clock_freq
= fcpu(cpu
, "timebase-frequency");
124 cpuinfo
.cpu_clock_freq
= clk_get_rate(clk
);
127 if (!cpuinfo
.cpu_clock_freq
) {
128 pr_err("ERROR: CPU clock frequency not setup\n");