]> git.karo-electronics.de Git - karo-tx-uboot.git/blob - arch/arm/mach-mvebu/cpu.c
arm: mvebu: Disable L2 cache before enabling d-cache
[karo-tx-uboot.git] / arch / arm / mach-mvebu / cpu.c
1 /*
2  * Copyright (C) 2014-2015 Stefan Roese <sr@denx.de>
3  *
4  * SPDX-License-Identifier:     GPL-2.0+
5  */
6
7 #include <common.h>
8 #include <netdev.h>
9 #include <asm/io.h>
10 #include <asm/pl310.h>
11 #include <asm/arch/cpu.h>
12 #include <asm/arch/soc.h>
13
14 #define DDR_BASE_CS_OFF(n)      (0x0000 + ((n) << 3))
15 #define DDR_SIZE_CS_OFF(n)      (0x0004 + ((n) << 3))
16
17 static struct mbus_win windows[] = {
18         /* PCIE MEM address space */
19         { DEFADR_PCI_MEM, 256 << 20, CPU_TARGET_PCIE13, CPU_ATTR_PCIE_MEM },
20
21         /* PCIE IO address space */
22         { DEFADR_PCI_IO, 64 << 10, CPU_TARGET_PCIE13, CPU_ATTR_PCIE_IO },
23
24         /* SPI */
25         { DEFADR_SPIF, 8 << 20, CPU_TARGET_DEVICEBUS_BOOTROM_SPI,
26           CPU_ATTR_SPIFLASH },
27
28         /* NOR */
29         { DEFADR_BOOTROM, 8 << 20, CPU_TARGET_DEVICEBUS_BOOTROM_SPI,
30           CPU_ATTR_BOOTROM },
31 };
32
33 void reset_cpu(unsigned long ignored)
34 {
35         struct mvebu_system_registers *reg =
36                 (struct mvebu_system_registers *)MVEBU_SYSTEM_REG_BASE;
37
38         writel(readl(&reg->rstoutn_mask) | 1, &reg->rstoutn_mask);
39         writel(readl(&reg->sys_soft_rst) | 1, &reg->sys_soft_rst);
40         while (1)
41                 ;
42 }
43
44 int mvebu_soc_family(void)
45 {
46         u16 devid = (readl(MVEBU_REG_PCIE_DEVID) >> 16) & 0xffff;
47
48         if (devid == SOC_MV78460_ID)
49                 return MVEBU_SOC_AXP;
50
51         if (devid == SOC_88F6810_ID || devid == SOC_88F6820_ID ||
52             devid == SOC_88F6828_ID)
53                 return MVEBU_SOC_A38X;
54
55         return MVEBU_SOC_UNKNOWN;
56 }
57
58 #if defined(CONFIG_DISPLAY_CPUINFO)
59 int print_cpuinfo(void)
60 {
61         u16 devid = (readl(MVEBU_REG_PCIE_DEVID) >> 16) & 0xffff;
62         u8 revid = readl(MVEBU_REG_PCIE_REVID) & 0xff;
63
64         puts("SoC:   ");
65
66         switch (devid) {
67         case SOC_MV78460_ID:
68                 puts("MV78460-");
69                 break;
70         case SOC_88F6810_ID:
71                 puts("MV88F6810-");
72                 break;
73         case SOC_88F6820_ID:
74                 puts("MV88F6820-");
75                 break;
76         case SOC_88F6828_ID:
77                 puts("MV88F6828-");
78                 break;
79         default:
80                 puts("Unknown-");
81                 break;
82         }
83
84         if (mvebu_soc_family() == MVEBU_SOC_AXP) {
85                 switch (revid) {
86                 case 1:
87                         puts("A0\n");
88                         break;
89                 case 2:
90                         puts("B0\n");
91                         break;
92                 default:
93                         printf("?? (%x)\n", revid);
94                         break;
95                 }
96         }
97
98         if (mvebu_soc_family() == MVEBU_SOC_A38X) {
99                 switch (revid) {
100                 case MV_88F68XX_Z1_ID:
101                         puts("Z1\n");
102                         break;
103                 case MV_88F68XX_A0_ID:
104                         puts("A0\n");
105                         break;
106                 default:
107                         printf("?? (%x)\n", revid);
108                         break;
109                 }
110         }
111
112         return 0;
113 }
114 #endif /* CONFIG_DISPLAY_CPUINFO */
115
116 /*
117  * This function initialize Controller DRAM Fastpath windows.
118  * It takes the CS size information from the 0x1500 scratch registers
119  * and sets the correct windows sizes and base addresses accordingly.
120  *
121  * These values are set in the scratch registers by the Marvell
122  * DDR3 training code, which is executed by the BootROM before the
123  * main payload (U-Boot) is executed. This training code is currently
124  * only available in the Marvell U-Boot version. It needs to be
125  * ported to mainline U-Boot SPL at some point.
126  */
127 static void update_sdram_window_sizes(void)
128 {
129         u64 base = 0;
130         u32 size, temp;
131         int i;
132
133         for (i = 0; i < SDRAM_MAX_CS; i++) {
134                 size = readl((MVEBU_SDRAM_SCRATCH + (i * 8))) & SDRAM_ADDR_MASK;
135                 if (size != 0) {
136                         size |= ~(SDRAM_ADDR_MASK);
137
138                         /* Set Base Address */
139                         temp = (base & 0xFF000000ll) | ((base >> 32) & 0xF);
140                         writel(temp, MVEBU_SDRAM_BASE + DDR_BASE_CS_OFF(i));
141
142                         /*
143                          * Check if out of max window size and resize
144                          * the window
145                          */
146                         temp = (readl(MVEBU_SDRAM_BASE + DDR_SIZE_CS_OFF(i)) &
147                                 ~(SDRAM_ADDR_MASK)) | 1;
148                         temp |= (size & SDRAM_ADDR_MASK);
149                         writel(temp, MVEBU_SDRAM_BASE + DDR_SIZE_CS_OFF(i));
150
151                         base += ((u64)size + 1);
152                 } else {
153                         /*
154                          * Disable window if not used, otherwise this
155                          * leads to overlapping enabled windows with
156                          * pretty strange results
157                          */
158                         clrbits_le32(MVEBU_SDRAM_BASE + DDR_SIZE_CS_OFF(i), 1);
159                 }
160         }
161 }
162
163 #ifdef CONFIG_ARCH_CPU_INIT
164 int arch_cpu_init(void)
165 {
166         /* Linux expects the internal registers to be at 0xf1000000 */
167         writel(SOC_REGS_PHY_BASE, INTREG_BASE_ADDR_REG);
168
169         /*
170          * We need to call mvebu_mbus_probe() before calling
171          * update_sdram_window_sizes() as it disables all previously
172          * configured mbus windows and then configures them as
173          * required for U-Boot. Calling update_sdram_window_sizes()
174          * without this configuration will not work, as the internal
175          * registers can't be accessed reliably because of potenial
176          * double mapping.
177          * After updating the SDRAM access windows we need to call
178          * mvebu_mbus_probe() again, as this now correctly configures
179          * the SDRAM areas that are later used by the MVEBU drivers
180          * (e.g. USB, NETA).
181          */
182
183         /*
184          * First disable all windows
185          */
186         mvebu_mbus_probe(NULL, 0);
187
188         if (mvebu_soc_family() == MVEBU_SOC_AXP) {
189                 /*
190                  * Now the SDRAM access windows can be reconfigured using
191                  * the information in the SDRAM scratch pad registers
192                  */
193                 update_sdram_window_sizes();
194         }
195
196         /*
197          * Finally the mbus windows can be configured with the
198          * updated SDRAM sizes
199          */
200         mvebu_mbus_probe(windows, ARRAY_SIZE(windows));
201
202         return 0;
203 }
204 #endif /* CONFIG_ARCH_CPU_INIT */
205
206 /*
207  * SOC specific misc init
208  */
209 #if defined(CONFIG_ARCH_MISC_INIT)
210 int arch_misc_init(void)
211 {
212         /* Nothing yet, perhaps we need something here later */
213         return 0;
214 }
215 #endif /* CONFIG_ARCH_MISC_INIT */
216
217 #ifdef CONFIG_MVNETA
218 int cpu_eth_init(bd_t *bis)
219 {
220         u32 enet_base[] = { MVEBU_EGIGA0_BASE, MVEBU_EGIGA1_BASE,
221                             MVEBU_EGIGA2_BASE, MVEBU_EGIGA3_BASE };
222         u8 phy_addr[] = CONFIG_PHY_ADDR;
223         int i;
224
225         /*
226          * Only Armada XP supports all 4 ethernet interfaces. A38x has
227          * slightly different base addresses for its 2-3 interfaces.
228          */
229         if (mvebu_soc_family() != MVEBU_SOC_AXP) {
230                 enet_base[1] = MVEBU_EGIGA2_BASE;
231                 enet_base[2] = MVEBU_EGIGA3_BASE;
232         }
233
234         for (i = 0; i < ARRAY_SIZE(phy_addr); i++)
235                 mvneta_initialize(bis, enet_base[i], i, phy_addr[i]);
236
237         return 0;
238 }
239 #endif
240
241 #ifndef CONFIG_SYS_DCACHE_OFF
242 void enable_caches(void)
243 {
244         struct pl310_regs *const pl310 =
245                 (struct pl310_regs *)CONFIG_SYS_PL310_BASE;
246
247         /* First disable L2 cache - may still be enable from BootROM */
248         if (mvebu_soc_family() == MVEBU_SOC_A38X)
249                 clrbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN);
250
251         /* Avoid problem with e.g. neta ethernet driver */
252         invalidate_dcache_all();
253
254         /* Enable D-cache. I-cache is already enabled in start.S */
255         dcache_enable();
256 }
257 #endif