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/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 */
58 * FIXME Not sure if the actual key is defined by Xilinx in the PVR
60 const struct family_string_key family_string_lookup[] = {
69 {"spartan3adsp", 0xc},
73 /* FIXME There is no key code defined for spartan2 */
78 {"UltraScale Virtex", 0x13},
79 {"UltraScale Kintex", 0x14},
80 {"UltraScale+ Zynq", 0x15},
81 {"UltraScale+ Virtex", 0x16},
82 {"UltraScale+ Kintex", 0x17},
87 struct cpuinfo cpuinfo;
88 static struct device_node *cpu;
90 void __init setup_cpuinfo(void)
92 cpu = (struct device_node *) of_find_node_by_type(NULL, "cpu");
94 pr_err("You don't have cpu!!!\n");
96 pr_info("%s: initialising\n", __func__);
98 switch (cpu_has_pvr()) {
100 pr_warn("%s: No PVR support. Using static CPU info from FDT\n",
102 set_cpuinfo_static(&cpuinfo, cpu);
104 /* FIXME I found weird behavior with MB 7.00.a/b 7.10.a
105 * please do not use FULL PVR with MMU */
107 pr_info("%s: Using full CPU PVR support\n",
109 set_cpuinfo_static(&cpuinfo, cpu);
110 set_cpuinfo_pvr_full(&cpuinfo, cpu);
113 pr_warn("%s: Unsupported PVR setting\n", __func__);
114 set_cpuinfo_static(&cpuinfo, cpu);
117 if (cpuinfo.mmu_privins)
118 pr_warn("%s: Stream instructions enabled"
119 " - USERSPACE CAN LOCK THIS KERNEL!\n", __func__);
122 void __init setup_cpuinfo_clk(void)
126 clk = of_clk_get(cpu, 0);
128 pr_err("ERROR: CPU CCF input clock not found\n");
129 /* take timebase-frequency from DTS */
130 cpuinfo.cpu_clock_freq = fcpu(cpu, "timebase-frequency");
132 cpuinfo.cpu_clock_freq = clk_get_rate(clk);
135 if (!cpuinfo.cpu_clock_freq) {
136 pr_err("ERROR: CPU clock frequency not setup\n");