]> git.ipfire.org Git - thirdparty/u-boot.git/blame - arch/arm/mach-zynq/cpu.c
CONFIG_SPL_SYS_[DI]CACHE_OFF: add
[thirdparty/u-boot.git] / arch / arm / mach-zynq / cpu.c
CommitLineData
83d290c5 1// SPDX-License-Identifier: GPL-2.0+
38b343dd
MS
2/*
3 * Copyright (C) 2012 Michal Simek <monstr@monstr.eu>
4 * Copyright (C) 2012 Xilinx, Inc. All rights reserved.
38b343dd
MS
5 */
6#include <common.h>
4aba5fb8 7#include <zynqpl.h>
00ed3458 8#include <asm/io.h>
6c3e61de 9#include <asm/arch/clk.h>
00ed3458 10#include <asm/arch/hardware.h>
4aba5fb8
MS
11#include <asm/arch/ps7_init_gpl.h>
12#include <asm/arch/sys_proto.h>
38b343dd 13
96a2859e
SDPP
14#define ZYNQ_SILICON_VER_MASK 0xF0000000
15#define ZYNQ_SILICON_VER_SHIFT 28
16
4aba5fb8
MS
17#if (defined(CONFIG_FPGA) && !defined(CONFIG_SPL_BUILD)) || \
18 (defined(CONFIG_SPL_FPGA_SUPPORT) && defined(CONFIG_SPL_BUILD))
19xilinx_desc fpga = {
20 .family = xilinx_zynq,
21 .iface = devcfg,
22 .operations = &zynq_op,
23};
24#endif
25
26static const struct {
27 u8 idcode;
28#if defined(CONFIG_FPGA)
29 u32 fpga_size;
30#endif
31 char *devicename;
32} zynq_fpga_descs[] = {
33 ZYNQ_DESC(7Z007S),
34 ZYNQ_DESC(7Z010),
35 ZYNQ_DESC(7Z012S),
36 ZYNQ_DESC(7Z014S),
37 ZYNQ_DESC(7Z015),
38 ZYNQ_DESC(7Z020),
39 ZYNQ_DESC(7Z030),
40 ZYNQ_DESC(7Z035),
41 ZYNQ_DESC(7Z045),
42 ZYNQ_DESC(7Z100),
43 { /* Sentinel */ },
44};
45
262f08d6 46int arch_cpu_init(void)
00ed3458
MS
47{
48 zynq_slcr_unlock();
d7e269cf 49#ifndef CONFIG_SPL_BUILD
00ed3458
MS
50 /* Device config APB, unlock the PCAP */
51 writel(0x757BDF0D, &devcfg_base->unlock);
52 writel(0xFFFFFFFF, &devcfg_base->rom_shadow);
53
c1824ea2
MS
54#if (CONFIG_SYS_SDRAM_BASE == 0)
55 /* remap DDR to zero, FILTERSTART */
56 writel(0, &scu_base->filter_start);
57
00ed3458
MS
58 /* OCM_CFG, Mask out the ROM, map ram into upper addresses */
59 writel(0x1F, &slcr_base->ocm_cfg);
60 /* FPGA_RST_CTRL, clear resets on AXI fabric ports */
61 writel(0x0, &slcr_base->fpga_rst_ctrl);
00ed3458
MS
62 /* Set urgent bits with register */
63 writel(0x0, &slcr_base->ddr_urgent_sel);
64 /* Urgent write, ports S2/S3 */
65 writel(0xC, &slcr_base->ddr_urgent);
c1824ea2 66#endif
d7e269cf 67#endif
00ed3458 68 zynq_slcr_lock();
262f08d6
MS
69
70 return 0;
00ed3458 71}
38b343dd 72
96a2859e
SDPP
73unsigned int zynq_get_silicon_version(void)
74{
63a7578e
MY
75 return (readl(&devcfg_base->mctrl) & ZYNQ_SILICON_VER_MASK)
76 >> ZYNQ_SILICON_VER_SHIFT;
96a2859e
SDPP
77}
78
38b343dd
MS
79void reset_cpu(ulong addr)
80{
59c651f4 81 zynq_slcr_cpu_reset();
38b343dd
MS
82 while (1)
83 ;
84}
673ba27a 85
10015025 86#if !CONFIG_IS_ENABLED(SYS_DCACHE_OFF)
673ba27a
MS
87void enable_caches(void)
88{
89 /* Enable D-cache. I-cache is already enabled in start.S */
90 dcache_enable();
91}
92#endif
4aba5fb8
MS
93
94static int __maybe_unused cpu_desc_id(void)
95{
96 u32 idcode;
97 u8 i;
98
99 idcode = zynq_slcr_get_idcode();
100 for (i = 0; zynq_fpga_descs[i].idcode; i++) {
101 if (zynq_fpga_descs[i].idcode == idcode)
102 return i;
103 }
104
105 return -ENODEV;
106}
107
108#if defined(CONFIG_ARCH_EARLY_INIT_R)
109int arch_early_init_r(void)
110{
111#if (defined(CONFIG_FPGA) && !defined(CONFIG_SPL_BUILD)) || \
112 (defined(CONFIG_SPL_FPGA_SUPPORT) && defined(CONFIG_SPL_BUILD))
113 int cpu_id = cpu_desc_id();
114
115 if (cpu_id < 0)
116 return 0;
117
118 fpga.size = zynq_fpga_descs[cpu_id].fpga_size;
119 fpga.name = zynq_fpga_descs[cpu_id].devicename;
120 fpga_init();
121 fpga_add(fpga_xilinx, &fpga);
122#endif
123 return 0;
124}
125#endif
0b4b82ad
MS
126
127#ifdef CONFIG_DISPLAY_CPUINFO
128int print_cpuinfo(void)
129{
130 u32 version;
131 int cpu_id = cpu_desc_id();
132
133 if (cpu_id < 0)
134 return 0;
135
136 version = zynq_get_silicon_version() << 1;
137 if (version > (PCW_SILICON_VERSION_3 << 1))
138 version += 1;
139
140 printf("CPU: Zynq %s\n", zynq_fpga_descs[cpu_id].devicename);
141 printf("Silicon: v%d.%d\n", version >> 1, version & 1);
142 return 0;
143}
144#endif