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 */
59 * FIXME Not sure if the actual key is defined by Xilinx in the PVR
61 const struct family_string_key family_string_lookup[] = {
70 {"spartan3adsp", 0xc},
74 /* FIXME There is no key code defined for spartan2 */
79 {"UltraScale Virtex", 0x13},
80 {"UltraScale Kintex", 0x14},
81 {"UltraScale+ Zynq", 0x15},
82 {"UltraScale+ Virtex", 0x16},
83 {"UltraScale+ Kintex", 0x17},
88 struct cpuinfo cpuinfo;
89 static struct device_node *cpu;
91 void __init setup_cpuinfo(void)
93 cpu = of_get_cpu_node(0, NULL);
95 pr_err("You don't have cpu or are missing cpu reg property!!!\n");
97 pr_info("%s: initialising\n", __func__);
99 switch (cpu_has_pvr()) {
101 pr_warn("%s: No PVR support. Using static CPU info from FDT\n",
103 set_cpuinfo_static(&cpuinfo, cpu);
105 /* FIXME I found weird behavior with MB 7.00.a/b 7.10.a
106 * please do not use FULL PVR with MMU */
108 pr_info("%s: Using full CPU PVR support\n",
110 set_cpuinfo_static(&cpuinfo, cpu);
111 set_cpuinfo_pvr_full(&cpuinfo, cpu);
114 pr_warn("%s: Unsupported PVR setting\n", __func__);
115 set_cpuinfo_static(&cpuinfo, cpu);
118 if (cpuinfo.mmu_privins)
119 pr_warn("%s: Stream instructions enabled"
120 " - USERSPACE CAN LOCK THIS KERNEL!\n", __func__);
125 void __init setup_cpuinfo_clk(void)
129 clk = of_clk_get(cpu, 0);
131 pr_err("ERROR: CPU CCF input clock not found\n");
132 /* take timebase-frequency from DTS */
133 cpuinfo.cpu_clock_freq = fcpu(cpu, "timebase-frequency");
135 cpuinfo.cpu_clock_freq = clk_get_rate(clk);
138 if (!cpuinfo.cpu_clock_freq) {
139 pr_err("ERROR: CPU clock frequency not setup\n");