Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Kumar Gala | 81a21e9 | 2007-11-29 00:15:30 -0600 | [diff] [blame] | 2 | /* |
Kumar Gala | 8975d7a | 2010-12-30 12:09:53 -0600 | [diff] [blame] | 3 | * Copyright 2007-2011 Freescale Semiconductor, Inc. |
Kumar Gala | 81a21e9 | 2007-11-29 00:15:30 -0600 | [diff] [blame] | 4 | * |
| 5 | * (C) Copyright 2000 |
| 6 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
Kumar Gala | 81a21e9 | 2007-11-29 00:15:30 -0600 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #include <common.h> |
Simon Glass | 85d6531 | 2019-12-28 10:44:58 -0700 | [diff] [blame] | 10 | #include <clock_legacy.h> |
Simon Glass | db22961 | 2019-08-01 09:46:42 -0600 | [diff] [blame] | 11 | #include <env.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 12 | #include <log.h> |
Simon Glass | a9dc068 | 2019-12-28 10:44:59 -0700 | [diff] [blame] | 13 | #include <time.h> |
Simon Glass | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 14 | #include <asm/global_data.h> |
Masahiro Yamada | 75f82d0 | 2018-03-05 01:20:11 +0900 | [diff] [blame] | 15 | #include <linux/libfdt.h> |
Kumar Gala | 81a21e9 | 2007-11-29 00:15:30 -0600 | [diff] [blame] | 16 | #include <fdt_support.h> |
Kumar Gala | ec68f93 | 2008-05-29 11:22:06 -0500 | [diff] [blame] | 17 | #include <asm/processor.h> |
Vivek Mahajan | 780e42b | 2009-09-22 12:48:27 +0530 | [diff] [blame] | 18 | #include <linux/ctype.h> |
Kumar Gala | 76eef3e | 2009-03-19 03:40:08 -0500 | [diff] [blame] | 19 | #include <asm/io.h> |
Zhao Qiang | 81136a1 | 2015-08-28 10:31:50 +0800 | [diff] [blame] | 20 | #include <asm/fsl_fdt.h> |
Kumar Gala | 38449a4 | 2009-09-10 03:02:13 -0500 | [diff] [blame] | 21 | #include <asm/fsl_portals.h> |
Ahmed Mansour | aa270b4 | 2017-12-15 16:01:00 -0500 | [diff] [blame] | 22 | #include <fsl_qbman.h> |
Sandeep Singh | 4fb16a1 | 2014-06-05 18:49:57 +0530 | [diff] [blame] | 23 | #include <hwconfig.h> |
Dipen Dudhat | 9387773 | 2009-09-02 11:25:08 +0530 | [diff] [blame] | 24 | #ifdef CONFIG_FSL_ESDHC |
| 25 | #include <fsl_esdhc.h> |
| 26 | #endif |
Qianyu Gong | 8868a64 | 2016-02-18 13:02:00 +0800 | [diff] [blame] | 27 | #ifdef CONFIG_SYS_DPAA_FMAN |
| 28 | #include <fsl_fman.h> |
| 29 | #endif |
Kumar Gala | 81a21e9 | 2007-11-29 00:15:30 -0600 | [diff] [blame] | 30 | |
Trent Piepho | bc424c9 | 2008-12-03 15:16:38 -0800 | [diff] [blame] | 31 | DECLARE_GLOBAL_DATA_PTR; |
| 32 | |
Kumar Gala | 1f16448 | 2008-01-17 08:25:45 -0600 | [diff] [blame] | 33 | extern void ft_qe_setup(void *blob); |
Poonam Aggrwal | 4ca72ae | 2009-09-02 19:40:36 +0530 | [diff] [blame] | 34 | extern void ft_fixup_num_cores(void *blob); |
Kumar Gala | 8975d7a | 2010-12-30 12:09:53 -0600 | [diff] [blame] | 35 | extern void ft_srio_setup(void *blob); |
Kim Phillips | 868e346 | 2008-06-16 15:55:53 -0500 | [diff] [blame] | 36 | |
Kumar Gala | 36d6b3f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 37 | #ifdef CONFIG_MP |
| 38 | #include "mp.h" |
Kumar Gala | 36d6b3f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 39 | |
| 40 | void ft_fixup_cpu(void *blob, u64 memory_limit) |
| 41 | { |
| 42 | int off; |
York Sun | 2394a0f | 2012-10-08 07:44:30 +0000 | [diff] [blame] | 43 | phys_addr_t spin_tbl_addr = get_spin_phys_addr(); |
York Sun | a28496f | 2012-10-08 07:44:25 +0000 | [diff] [blame] | 44 | u32 bootpg = determine_mp_bootpg(NULL); |
Kumar Gala | e1064b3 | 2009-03-31 23:11:05 -0500 | [diff] [blame] | 45 | u32 id = get_my_id(); |
Aaron Sierra | ec8863b | 2010-09-30 12:22:16 -0500 | [diff] [blame] | 46 | const char *enable_method; |
Sandeep Singh | 4fb16a1 | 2014-06-05 18:49:57 +0530 | [diff] [blame] | 47 | #if defined(T1040_TDM_QUIRK_CCSR_BASE) |
| 48 | int ret; |
| 49 | int tdm_hwconfig_enabled = 0; |
| 50 | char buffer[HWCONFIG_BUFFER_SIZE] = {0}; |
| 51 | #endif |
Kumar Gala | 36d6b3f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 52 | |
| 53 | off = fdt_node_offset_by_prop_value(blob, -1, "device_type", "cpu", 4); |
| 54 | while (off != -FDT_ERR_NOTFOUND) { |
| 55 | u32 *reg = (u32 *)fdt_getprop(blob, off, "reg", 0); |
| 56 | |
| 57 | if (reg) { |
York Sun | 2adf2ce | 2012-08-17 08:20:26 +0000 | [diff] [blame] | 58 | u32 phys_cpu_id = thread_to_core(*reg); |
| 59 | u64 val = phys_cpu_id * SIZE_BOOT_ENTRY + spin_tbl_addr; |
| 60 | val = cpu_to_fdt64(val); |
Kumar Gala | 36d6b3f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 61 | if (*reg == id) { |
Matthew McClintock | 51a1193 | 2010-08-19 13:57:48 -0500 | [diff] [blame] | 62 | fdt_setprop_string(blob, off, "status", |
| 63 | "okay"); |
Kumar Gala | 36d6b3f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 64 | } else { |
Kumar Gala | 36d6b3f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 65 | fdt_setprop_string(blob, off, "status", |
| 66 | "disabled"); |
Kumar Gala | 36d6b3f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 67 | } |
Aaron Sierra | ec8863b | 2010-09-30 12:22:16 -0500 | [diff] [blame] | 68 | |
| 69 | if (hold_cores_in_reset(0)) { |
| 70 | #ifdef CONFIG_FSL_CORENET |
| 71 | /* Cores held in reset, use BRR to release */ |
| 72 | enable_method = "fsl,brr-holdoff"; |
| 73 | #else |
| 74 | /* Cores held in reset, use EEBPCR to release */ |
| 75 | enable_method = "fsl,eebpcr-holdoff"; |
| 76 | #endif |
| 77 | } else { |
| 78 | /* Cores out of reset and in a spin-loop */ |
| 79 | enable_method = "spin-table"; |
| 80 | |
| 81 | fdt_setprop(blob, off, "cpu-release-addr", |
| 82 | &val, sizeof(val)); |
| 83 | } |
| 84 | |
Matthew McClintock | 51a1193 | 2010-08-19 13:57:48 -0500 | [diff] [blame] | 85 | fdt_setprop_string(blob, off, "enable-method", |
Aaron Sierra | ec8863b | 2010-09-30 12:22:16 -0500 | [diff] [blame] | 86 | enable_method); |
Kumar Gala | 36d6b3f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 87 | } else { |
| 88 | printf ("cpu NULL\n"); |
| 89 | } |
| 90 | off = fdt_node_offset_by_prop_value(blob, off, |
| 91 | "device_type", "cpu", 4); |
| 92 | } |
| 93 | |
Sandeep Singh | 4fb16a1 | 2014-06-05 18:49:57 +0530 | [diff] [blame] | 94 | #if defined(T1040_TDM_QUIRK_CCSR_BASE) |
| 95 | #define CONFIG_MEM_HOLE_16M 0x1000000 |
| 96 | /* |
| 97 | * Extract hwconfig from environment. |
| 98 | * Search for tdm entry in hwconfig. |
| 99 | */ |
Simon Glass | 64b723f | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 100 | ret = env_get_f("hwconfig", buffer, sizeof(buffer)); |
Sandeep Singh | 4fb16a1 | 2014-06-05 18:49:57 +0530 | [diff] [blame] | 101 | if (ret > 0) |
| 102 | tdm_hwconfig_enabled = hwconfig_f("tdm", buffer); |
| 103 | |
| 104 | /* Reserve the memory hole created by TDM LAW, so OSes dont use it */ |
| 105 | if (tdm_hwconfig_enabled) { |
| 106 | off = fdt_add_mem_rsv(blob, T1040_TDM_QUIRK_CCSR_BASE, |
| 107 | CONFIG_MEM_HOLE_16M); |
| 108 | if (off < 0) |
| 109 | printf("Failed to reserve memory for tdm: %s\n", |
| 110 | fdt_strerror(off)); |
| 111 | } |
| 112 | #endif |
| 113 | |
Kumar Gala | 36d6b3f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 114 | /* Reserve the boot page so OSes dont use it */ |
| 115 | if ((u64)bootpg < memory_limit) { |
| 116 | off = fdt_add_mem_rsv(blob, bootpg, (u64)4096); |
| 117 | if (off < 0) |
York Sun | 2394a0f | 2012-10-08 07:44:30 +0000 | [diff] [blame] | 118 | printf("Failed to reserve memory for bootpg: %s\n", |
| 119 | fdt_strerror(off)); |
| 120 | } |
York Sun | 33d57c3 | 2012-12-14 06:21:58 +0000 | [diff] [blame] | 121 | |
| 122 | #ifndef CONFIG_MPC8xxx_DISABLE_BPTR |
| 123 | /* |
| 124 | * Reserve the default boot page so OSes dont use it. |
| 125 | * The default boot page is always mapped to bootpg above using |
| 126 | * boot page translation. |
| 127 | */ |
| 128 | if (0xfffff000ull < memory_limit) { |
| 129 | off = fdt_add_mem_rsv(blob, 0xfffff000ull, (u64)4096); |
| 130 | if (off < 0) { |
| 131 | printf("Failed to reserve memory for 0xfffff000: %s\n", |
| 132 | fdt_strerror(off)); |
| 133 | } |
| 134 | } |
| 135 | #endif |
| 136 | |
York Sun | 2394a0f | 2012-10-08 07:44:30 +0000 | [diff] [blame] | 137 | /* Reserve spin table page */ |
| 138 | if (spin_tbl_addr < memory_limit) { |
| 139 | off = fdt_add_mem_rsv(blob, |
| 140 | (spin_tbl_addr & ~0xffful), 4096); |
| 141 | if (off < 0) |
| 142 | printf("Failed to reserve memory for spin table: %s\n", |
| 143 | fdt_strerror(off)); |
Kumar Gala | 36d6b3f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 144 | } |
Tang Yuantian | 25ccd5d | 2014-07-23 17:27:53 +0800 | [diff] [blame] | 145 | #ifdef CONFIG_DEEP_SLEEP |
| 146 | #ifdef CONFIG_SPL_MMC_BOOT |
| 147 | off = fdt_add_mem_rsv(blob, CONFIG_SYS_MMC_U_BOOT_START, |
| 148 | CONFIG_SYS_MMC_U_BOOT_SIZE); |
| 149 | if (off < 0) |
| 150 | printf("Failed to reserve memory for SD deep sleep: %s\n", |
| 151 | fdt_strerror(off)); |
| 152 | #elif defined(CONFIG_SPL_SPI_BOOT) |
| 153 | off = fdt_add_mem_rsv(blob, CONFIG_SYS_SPI_FLASH_U_BOOT_START, |
| 154 | CONFIG_SYS_SPI_FLASH_U_BOOT_SIZE); |
| 155 | if (off < 0) |
| 156 | printf("Failed to reserve memory for SPI deep sleep: %s\n", |
| 157 | fdt_strerror(off)); |
| 158 | #endif |
| 159 | #endif |
Kumar Gala | 36d6b3f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 160 | } |
| 161 | #endif |
Kumar Gala | 1f16448 | 2008-01-17 08:25:45 -0600 | [diff] [blame] | 162 | |
Kumar Gala | 76eef3e | 2009-03-19 03:40:08 -0500 | [diff] [blame] | 163 | #ifdef CONFIG_SYS_FSL_CPC |
| 164 | static inline void ft_fixup_l3cache(void *blob, int off) |
| 165 | { |
| 166 | u32 line_size, num_ways, size, num_sets; |
| 167 | cpc_corenet_t *cpc = (void *)CONFIG_SYS_FSL_CPC_ADDR; |
| 168 | u32 cfg0 = in_be32(&cpc->cpccfg0); |
| 169 | |
| 170 | size = CPC_CFG0_SZ_K(cfg0) * 1024 * CONFIG_SYS_NUM_CPC; |
| 171 | num_ways = CPC_CFG0_NUM_WAYS(cfg0); |
| 172 | line_size = CPC_CFG0_LINE_SZ(cfg0); |
| 173 | num_sets = size / (line_size * num_ways); |
| 174 | |
| 175 | fdt_setprop(blob, off, "cache-unified", NULL, 0); |
| 176 | fdt_setprop_cell(blob, off, "cache-block-size", line_size); |
| 177 | fdt_setprop_cell(blob, off, "cache-size", size); |
| 178 | fdt_setprop_cell(blob, off, "cache-sets", num_sets); |
| 179 | fdt_setprop_cell(blob, off, "cache-level", 3); |
| 180 | #ifdef CONFIG_SYS_CACHE_STASHING |
| 181 | fdt_setprop_cell(blob, off, "cache-stash-id", 1); |
| 182 | #endif |
| 183 | } |
| 184 | #else |
Kumar Gala | e56f2c5 | 2009-03-19 09:16:10 -0500 | [diff] [blame] | 185 | #define ft_fixup_l3cache(x, y) |
Kumar Gala | 76eef3e | 2009-03-19 03:40:08 -0500 | [diff] [blame] | 186 | #endif |
Kumar Gala | e56f2c5 | 2009-03-19 09:16:10 -0500 | [diff] [blame] | 187 | |
Chris Packham | e0546d1 | 2016-12-02 21:22:30 +1300 | [diff] [blame] | 188 | #if defined(CONFIG_L2_CACHE) || \ |
| 189 | defined(CONFIG_BACKSIDE_L2_CACHE) || \ |
| 190 | defined(CONFIG_SYS_FSL_QORIQ_CHASSIS2) |
| 191 | static inline void ft_fixup_l2cache_compatible(void *blob, int off) |
| 192 | { |
| 193 | int len; |
| 194 | struct cpu_type *cpu = identify_cpu(SVR_SOC_VER(get_svr())); |
| 195 | |
| 196 | if (cpu) { |
| 197 | char buf[40]; |
| 198 | |
| 199 | if (isdigit(cpu->name[0])) { |
| 200 | /* MPCxxxx, where xxxx == 4-digit number */ |
| 201 | len = sprintf(buf, "fsl,mpc%s-l2-cache-controller", |
| 202 | cpu->name) + 1; |
| 203 | } else { |
| 204 | /* Pxxxx or Txxxx, where xxxx == 4-digit number */ |
| 205 | len = sprintf(buf, "fsl,%c%s-l2-cache-controller", |
| 206 | tolower(cpu->name[0]), cpu->name + 1) + 1; |
| 207 | } |
| 208 | |
| 209 | /* |
| 210 | * append "cache" after the NULL character that the previous |
| 211 | * sprintf wrote. This is how a device tree stores multiple |
| 212 | * strings in a property. |
| 213 | */ |
| 214 | len += sprintf(buf + len, "cache") + 1; |
| 215 | |
| 216 | fdt_setprop(blob, off, "compatible", buf, len); |
| 217 | } |
| 218 | } |
| 219 | #endif |
| 220 | |
Kumar Gala | e56f2c5 | 2009-03-19 09:16:10 -0500 | [diff] [blame] | 221 | #if defined(CONFIG_L2_CACHE) |
Kumar Gala | ec68f93 | 2008-05-29 11:22:06 -0500 | [diff] [blame] | 222 | /* return size in kilobytes */ |
| 223 | static inline u32 l2cache_size(void) |
| 224 | { |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 225 | volatile ccsr_l2cache_t *l2cache = (void *)CONFIG_SYS_MPC85xx_L2_ADDR; |
Kumar Gala | ec68f93 | 2008-05-29 11:22:06 -0500 | [diff] [blame] | 226 | volatile u32 l2siz_field = (l2cache->l2ctl >> 28) & 0x3; |
| 227 | u32 ver = SVR_SOC_VER(get_svr()); |
| 228 | |
| 229 | switch (l2siz_field) { |
| 230 | case 0x0: |
| 231 | break; |
| 232 | case 0x1: |
| 233 | if (ver == SVR_8540 || ver == SVR_8560 || |
York Sun | 8cb6548 | 2012-07-06 17:10:33 -0500 | [diff] [blame] | 234 | ver == SVR_8541 || ver == SVR_8555) |
Kumar Gala | ec68f93 | 2008-05-29 11:22:06 -0500 | [diff] [blame] | 235 | return 128; |
| 236 | else |
| 237 | return 256; |
| 238 | break; |
| 239 | case 0x2: |
| 240 | if (ver == SVR_8540 || ver == SVR_8560 || |
York Sun | 8cb6548 | 2012-07-06 17:10:33 -0500 | [diff] [blame] | 241 | ver == SVR_8541 || ver == SVR_8555) |
Kumar Gala | ec68f93 | 2008-05-29 11:22:06 -0500 | [diff] [blame] | 242 | return 256; |
| 243 | else |
| 244 | return 512; |
| 245 | break; |
| 246 | case 0x3: |
| 247 | return 1024; |
| 248 | break; |
| 249 | } |
| 250 | |
| 251 | return 0; |
| 252 | } |
| 253 | |
| 254 | static inline void ft_fixup_l2cache(void *blob) |
| 255 | { |
Chris Packham | e0546d1 | 2016-12-02 21:22:30 +1300 | [diff] [blame] | 256 | int off; |
Kumar Gala | ec68f93 | 2008-05-29 11:22:06 -0500 | [diff] [blame] | 257 | u32 *ph; |
Kumar Gala | ec68f93 | 2008-05-29 11:22:06 -0500 | [diff] [blame] | 258 | |
| 259 | const u32 line_size = 32; |
| 260 | const u32 num_ways = 8; |
| 261 | const u32 size = l2cache_size() * 1024; |
| 262 | const u32 num_sets = size / (line_size * num_ways); |
| 263 | |
| 264 | off = fdt_node_offset_by_prop_value(blob, -1, "device_type", "cpu", 4); |
| 265 | if (off < 0) { |
| 266 | debug("no cpu node fount\n"); |
| 267 | return; |
| 268 | } |
| 269 | |
| 270 | ph = (u32 *)fdt_getprop(blob, off, "next-level-cache", 0); |
| 271 | |
| 272 | if (ph == NULL) { |
| 273 | debug("no next-level-cache property\n"); |
| 274 | return ; |
| 275 | } |
| 276 | |
| 277 | off = fdt_node_offset_by_phandle(blob, *ph); |
| 278 | if (off < 0) { |
| 279 | printf("%s: %s\n", __func__, fdt_strerror(off)); |
| 280 | return ; |
| 281 | } |
| 282 | |
Chris Packham | e0546d1 | 2016-12-02 21:22:30 +1300 | [diff] [blame] | 283 | ft_fixup_l2cache_compatible(blob, off); |
Kumar Gala | ec68f93 | 2008-05-29 11:22:06 -0500 | [diff] [blame] | 284 | fdt_setprop(blob, off, "cache-unified", NULL, 0); |
| 285 | fdt_setprop_cell(blob, off, "cache-block-size", line_size); |
Kumar Gala | ec68f93 | 2008-05-29 11:22:06 -0500 | [diff] [blame] | 286 | fdt_setprop_cell(blob, off, "cache-size", size); |
| 287 | fdt_setprop_cell(blob, off, "cache-sets", num_sets); |
| 288 | fdt_setprop_cell(blob, off, "cache-level", 2); |
Kumar Gala | e56f2c5 | 2009-03-19 09:16:10 -0500 | [diff] [blame] | 289 | |
| 290 | /* we dont bother w/L3 since no platform of this type has one */ |
| 291 | } |
York Sun | c3d87b1 | 2012-10-08 07:44:08 +0000 | [diff] [blame] | 292 | #elif defined(CONFIG_BACKSIDE_L2_CACHE) || \ |
| 293 | defined(CONFIG_SYS_FSL_QORIQ_CHASSIS2) |
Kumar Gala | e56f2c5 | 2009-03-19 09:16:10 -0500 | [diff] [blame] | 294 | static inline void ft_fixup_l2cache(void *blob) |
| 295 | { |
| 296 | int off, l2_off, l3_off = -1; |
| 297 | u32 *ph; |
York Sun | c3d87b1 | 2012-10-08 07:44:08 +0000 | [diff] [blame] | 298 | #ifdef CONFIG_BACKSIDE_L2_CACHE |
Kumar Gala | e56f2c5 | 2009-03-19 09:16:10 -0500 | [diff] [blame] | 299 | u32 l2cfg0 = mfspr(SPRN_L2CFG0); |
York Sun | c3d87b1 | 2012-10-08 07:44:08 +0000 | [diff] [blame] | 300 | #else |
| 301 | struct ccsr_cluster_l2 *l2cache = |
| 302 | (struct ccsr_cluster_l2 __iomem *)(CONFIG_SYS_FSL_CLUSTER_1_L2); |
| 303 | u32 l2cfg0 = in_be32(&l2cache->l2cfg0); |
| 304 | #endif |
Kumar Gala | e56f2c5 | 2009-03-19 09:16:10 -0500 | [diff] [blame] | 305 | u32 size, line_size, num_ways, num_sets; |
Kumar Gala | e08c6d8 | 2011-07-21 00:20:21 -0500 | [diff] [blame] | 306 | int has_l2 = 1; |
| 307 | |
| 308 | /* P2040/P2040E has no L2, so dont set any L2 props */ |
York Sun | 8cb6548 | 2012-07-06 17:10:33 -0500 | [diff] [blame] | 309 | if (SVR_SOC_VER(get_svr()) == SVR_P2040) |
Kumar Gala | e08c6d8 | 2011-07-21 00:20:21 -0500 | [diff] [blame] | 310 | has_l2 = 0; |
Kumar Gala | e56f2c5 | 2009-03-19 09:16:10 -0500 | [diff] [blame] | 311 | |
| 312 | size = (l2cfg0 & 0x3fff) * 64 * 1024; |
| 313 | num_ways = ((l2cfg0 >> 14) & 0x1f) + 1; |
| 314 | line_size = (((l2cfg0 >> 23) & 0x3) + 1) * 32; |
| 315 | num_sets = size / (line_size * num_ways); |
| 316 | |
| 317 | off = fdt_node_offset_by_prop_value(blob, -1, "device_type", "cpu", 4); |
| 318 | |
| 319 | while (off != -FDT_ERR_NOTFOUND) { |
| 320 | ph = (u32 *)fdt_getprop(blob, off, "next-level-cache", 0); |
| 321 | |
| 322 | if (ph == NULL) { |
| 323 | debug("no next-level-cache property\n"); |
| 324 | goto next; |
| 325 | } |
| 326 | |
| 327 | l2_off = fdt_node_offset_by_phandle(blob, *ph); |
| 328 | if (l2_off < 0) { |
| 329 | printf("%s: %s\n", __func__, fdt_strerror(off)); |
| 330 | goto next; |
| 331 | } |
| 332 | |
Kumar Gala | e08c6d8 | 2011-07-21 00:20:21 -0500 | [diff] [blame] | 333 | if (has_l2) { |
Kumar Gala | 8d2817c | 2009-03-19 02:53:01 -0500 | [diff] [blame] | 334 | #ifdef CONFIG_SYS_CACHE_STASHING |
Kumar Gala | 8d2817c | 2009-03-19 02:53:01 -0500 | [diff] [blame] | 335 | u32 *reg = (u32 *)fdt_getprop(blob, off, "reg", 0); |
Prabhakar Kushwaha | cc3c5b6 | 2013-08-29 13:10:38 +0530 | [diff] [blame] | 336 | #if defined(CONFIG_SYS_FSL_QORIQ_CHASSIS2) && defined(CONFIG_E6500) |
York Sun | c3d87b1 | 2012-10-08 07:44:08 +0000 | [diff] [blame] | 337 | /* Only initialize every eighth thread */ |
Scott Wood | a77398e | 2014-03-26 20:30:56 -0500 | [diff] [blame] | 338 | if (reg && !((*reg) % 8)) { |
| 339 | fdt_setprop_cell(blob, l2_off, "cache-stash-id", |
| 340 | (*reg / 4) + 32 + 1); |
| 341 | } |
York Sun | c3d87b1 | 2012-10-08 07:44:08 +0000 | [diff] [blame] | 342 | #else |
Scott Wood | a77398e | 2014-03-26 20:30:56 -0500 | [diff] [blame] | 343 | if (reg) { |
Kumar Gala | 8d2817c | 2009-03-19 02:53:01 -0500 | [diff] [blame] | 344 | fdt_setprop_cell(blob, l2_off, "cache-stash-id", |
Scott Wood | a77398e | 2014-03-26 20:30:56 -0500 | [diff] [blame] | 345 | (*reg * 2) + 32 + 1); |
| 346 | } |
| 347 | #endif |
Kumar Gala | 8d2817c | 2009-03-19 02:53:01 -0500 | [diff] [blame] | 348 | #endif |
| 349 | |
Kumar Gala | e08c6d8 | 2011-07-21 00:20:21 -0500 | [diff] [blame] | 350 | fdt_setprop(blob, l2_off, "cache-unified", NULL, 0); |
| 351 | fdt_setprop_cell(blob, l2_off, "cache-block-size", |
| 352 | line_size); |
| 353 | fdt_setprop_cell(blob, l2_off, "cache-size", size); |
| 354 | fdt_setprop_cell(blob, l2_off, "cache-sets", num_sets); |
| 355 | fdt_setprop_cell(blob, l2_off, "cache-level", 2); |
Chris Packham | e0546d1 | 2016-12-02 21:22:30 +1300 | [diff] [blame] | 356 | ft_fixup_l2cache_compatible(blob, l2_off); |
Kumar Gala | e08c6d8 | 2011-07-21 00:20:21 -0500 | [diff] [blame] | 357 | } |
Kumar Gala | e56f2c5 | 2009-03-19 09:16:10 -0500 | [diff] [blame] | 358 | |
| 359 | if (l3_off < 0) { |
| 360 | ph = (u32 *)fdt_getprop(blob, l2_off, "next-level-cache", 0); |
| 361 | |
| 362 | if (ph == NULL) { |
| 363 | debug("no next-level-cache property\n"); |
| 364 | goto next; |
| 365 | } |
| 366 | l3_off = *ph; |
| 367 | } |
| 368 | next: |
| 369 | off = fdt_node_offset_by_prop_value(blob, off, |
| 370 | "device_type", "cpu", 4); |
| 371 | } |
| 372 | if (l3_off > 0) { |
| 373 | l3_off = fdt_node_offset_by_phandle(blob, l3_off); |
| 374 | if (l3_off < 0) { |
| 375 | printf("%s: %s\n", __func__, fdt_strerror(off)); |
| 376 | return ; |
| 377 | } |
| 378 | ft_fixup_l3cache(blob, l3_off); |
| 379 | } |
Kumar Gala | ec68f93 | 2008-05-29 11:22:06 -0500 | [diff] [blame] | 380 | } |
| 381 | #else |
| 382 | #define ft_fixup_l2cache(x) |
| 383 | #endif |
| 384 | |
| 385 | static inline void ft_fixup_cache(void *blob) |
| 386 | { |
| 387 | int off; |
| 388 | |
| 389 | off = fdt_node_offset_by_prop_value(blob, -1, "device_type", "cpu", 4); |
| 390 | |
| 391 | while (off != -FDT_ERR_NOTFOUND) { |
| 392 | u32 l1cfg0 = mfspr(SPRN_L1CFG0); |
| 393 | u32 l1cfg1 = mfspr(SPRN_L1CFG1); |
| 394 | u32 isize, iline_size, inum_sets, inum_ways; |
| 395 | u32 dsize, dline_size, dnum_sets, dnum_ways; |
| 396 | |
| 397 | /* d-side config */ |
| 398 | dsize = (l1cfg0 & 0x7ff) * 1024; |
| 399 | dnum_ways = ((l1cfg0 >> 11) & 0xff) + 1; |
| 400 | dline_size = (((l1cfg0 >> 23) & 0x3) + 1) * 32; |
| 401 | dnum_sets = dsize / (dline_size * dnum_ways); |
| 402 | |
| 403 | fdt_setprop_cell(blob, off, "d-cache-block-size", dline_size); |
Kumar Gala | ec68f93 | 2008-05-29 11:22:06 -0500 | [diff] [blame] | 404 | fdt_setprop_cell(blob, off, "d-cache-size", dsize); |
| 405 | fdt_setprop_cell(blob, off, "d-cache-sets", dnum_sets); |
| 406 | |
Kumar Gala | 8d2817c | 2009-03-19 02:53:01 -0500 | [diff] [blame] | 407 | #ifdef CONFIG_SYS_CACHE_STASHING |
| 408 | { |
| 409 | u32 *reg = (u32 *)fdt_getprop(blob, off, "reg", 0); |
| 410 | if (reg) |
| 411 | fdt_setprop_cell(blob, off, "cache-stash-id", |
| 412 | (*reg * 2) + 32 + 0); |
| 413 | } |
| 414 | #endif |
| 415 | |
Kumar Gala | ec68f93 | 2008-05-29 11:22:06 -0500 | [diff] [blame] | 416 | /* i-side config */ |
| 417 | isize = (l1cfg1 & 0x7ff) * 1024; |
| 418 | inum_ways = ((l1cfg1 >> 11) & 0xff) + 1; |
| 419 | iline_size = (((l1cfg1 >> 23) & 0x3) + 1) * 32; |
| 420 | inum_sets = isize / (iline_size * inum_ways); |
| 421 | |
| 422 | fdt_setprop_cell(blob, off, "i-cache-block-size", iline_size); |
Kumar Gala | ec68f93 | 2008-05-29 11:22:06 -0500 | [diff] [blame] | 423 | fdt_setprop_cell(blob, off, "i-cache-size", isize); |
| 424 | fdt_setprop_cell(blob, off, "i-cache-sets", inum_sets); |
| 425 | |
| 426 | off = fdt_node_offset_by_prop_value(blob, off, |
| 427 | "device_type", "cpu", 4); |
| 428 | } |
| 429 | |
| 430 | ft_fixup_l2cache(blob); |
| 431 | } |
| 432 | |
| 433 | |
Andy Fleming | e336605 | 2008-10-07 08:09:50 -0500 | [diff] [blame] | 434 | void fdt_add_enet_stashing(void *fdt) |
| 435 | { |
| 436 | do_fixup_by_compat(fdt, "gianfar", "bd-stash", NULL, 0, 1); |
| 437 | |
| 438 | do_fixup_by_compat_u32(fdt, "gianfar", "rx-stash-len", 96, 1); |
| 439 | |
| 440 | do_fixup_by_compat_u32(fdt, "gianfar", "rx-stash-idx", 0, 1); |
Pankaj Chauhan | d829fb6 | 2011-01-25 14:44:57 +0530 | [diff] [blame] | 441 | do_fixup_by_compat(fdt, "fsl,etsec2", "bd-stash", NULL, 0, 1); |
| 442 | do_fixup_by_compat_u32(fdt, "fsl,etsec2", "rx-stash-len", 96, 1); |
| 443 | do_fixup_by_compat_u32(fdt, "fsl,etsec2", "rx-stash-idx", 0, 1); |
Andy Fleming | e336605 | 2008-10-07 08:09:50 -0500 | [diff] [blame] | 444 | } |
| 445 | |
Kumar Gala | b915e0d | 2009-03-19 02:46:28 -0500 | [diff] [blame] | 446 | #if defined(CONFIG_SYS_DPAA_FMAN) || defined(CONFIG_SYS_DPAA_PME) |
Kumar Gala | 302a65c | 2011-07-31 12:55:39 -0500 | [diff] [blame] | 447 | #ifdef CONFIG_SYS_DPAA_FMAN |
Kumar Gala | 3f35bb5 | 2010-07-10 06:38:16 -0500 | [diff] [blame] | 448 | static void ft_fixup_clks(void *blob, const char *compat, u32 offset, |
| 449 | unsigned long freq) |
Kumar Gala | b915e0d | 2009-03-19 02:46:28 -0500 | [diff] [blame] | 450 | { |
Kumar Gala | 3f35bb5 | 2010-07-10 06:38:16 -0500 | [diff] [blame] | 451 | phys_addr_t phys = offset + CONFIG_SYS_CCSRBAR_PHYS; |
| 452 | int off = fdt_node_offset_by_compat_reg(blob, compat, phys); |
Kumar Gala | b915e0d | 2009-03-19 02:46:28 -0500 | [diff] [blame] | 453 | |
| 454 | if (off >= 0) { |
| 455 | off = fdt_setprop_cell(blob, off, "clock-frequency", freq); |
| 456 | if (off > 0) |
| 457 | printf("WARNING enable to set clock-frequency " |
Kumar Gala | 3f35bb5 | 2010-07-10 06:38:16 -0500 | [diff] [blame] | 458 | "for %s: %s\n", compat, fdt_strerror(off)); |
Kumar Gala | b915e0d | 2009-03-19 02:46:28 -0500 | [diff] [blame] | 459 | } |
| 460 | } |
Kumar Gala | 302a65c | 2011-07-31 12:55:39 -0500 | [diff] [blame] | 461 | #endif |
Kumar Gala | b915e0d | 2009-03-19 02:46:28 -0500 | [diff] [blame] | 462 | |
| 463 | static void ft_fixup_dpaa_clks(void *blob) |
| 464 | { |
| 465 | sys_info_t sysinfo; |
| 466 | |
| 467 | get_sys_info(&sysinfo); |
Kumar Gala | 302a65c | 2011-07-31 12:55:39 -0500 | [diff] [blame] | 468 | #ifdef CONFIG_SYS_DPAA_FMAN |
Kumar Gala | 3f35bb5 | 2010-07-10 06:38:16 -0500 | [diff] [blame] | 469 | ft_fixup_clks(blob, "fsl,fman", CONFIG_SYS_FSL_FM1_OFFSET, |
Prabhakar Kushwaha | d169808 | 2013-08-16 14:52:26 +0530 | [diff] [blame] | 470 | sysinfo.freq_fman[0]); |
Kumar Gala | b915e0d | 2009-03-19 02:46:28 -0500 | [diff] [blame] | 471 | |
| 472 | #if (CONFIG_SYS_NUM_FMAN == 2) |
Kumar Gala | 3f35bb5 | 2010-07-10 06:38:16 -0500 | [diff] [blame] | 473 | ft_fixup_clks(blob, "fsl,fman", CONFIG_SYS_FSL_FM2_OFFSET, |
Prabhakar Kushwaha | d169808 | 2013-08-16 14:52:26 +0530 | [diff] [blame] | 474 | sysinfo.freq_fman[1]); |
Kumar Gala | b915e0d | 2009-03-19 02:46:28 -0500 | [diff] [blame] | 475 | #endif |
Kumar Gala | 302a65c | 2011-07-31 12:55:39 -0500 | [diff] [blame] | 476 | #endif |
Kumar Gala | b915e0d | 2009-03-19 02:46:28 -0500 | [diff] [blame] | 477 | |
Haiying Wang | 09d0aa9 | 2012-10-11 07:13:39 +0000 | [diff] [blame] | 478 | #ifdef CONFIG_SYS_DPAA_QBMAN |
| 479 | do_fixup_by_compat_u32(blob, "fsl,qman", |
Prabhakar Kushwaha | d169808 | 2013-08-16 14:52:26 +0530 | [diff] [blame] | 480 | "clock-frequency", sysinfo.freq_qman, 1); |
Haiying Wang | 09d0aa9 | 2012-10-11 07:13:39 +0000 | [diff] [blame] | 481 | #endif |
| 482 | |
Kumar Gala | b915e0d | 2009-03-19 02:46:28 -0500 | [diff] [blame] | 483 | #ifdef CONFIG_SYS_DPAA_PME |
Kumar Gala | 3f35bb5 | 2010-07-10 06:38:16 -0500 | [diff] [blame] | 484 | do_fixup_by_compat_u32(blob, "fsl,pme", |
Prabhakar Kushwaha | d169808 | 2013-08-16 14:52:26 +0530 | [diff] [blame] | 485 | "clock-frequency", sysinfo.freq_pme, 1); |
Kumar Gala | b915e0d | 2009-03-19 02:46:28 -0500 | [diff] [blame] | 486 | #endif |
| 487 | } |
| 488 | #else |
| 489 | #define ft_fixup_dpaa_clks(x) |
| 490 | #endif |
| 491 | |
Liu Yu | d555da1 | 2010-01-15 14:58:40 +0800 | [diff] [blame] | 492 | #ifdef CONFIG_QE |
| 493 | static void ft_fixup_qe_snum(void *blob) |
| 494 | { |
| 495 | unsigned int svr; |
| 496 | |
| 497 | svr = mfspr(SPRN_SVR); |
York Sun | 8cb6548 | 2012-07-06 17:10:33 -0500 | [diff] [blame] | 498 | if (SVR_SOC_VER(svr) == SVR_8569) { |
Liu Yu | d555da1 | 2010-01-15 14:58:40 +0800 | [diff] [blame] | 499 | if(IS_SVR_REV(svr, 1, 0)) |
| 500 | do_fixup_by_compat_u32(blob, "fsl,qe", |
| 501 | "fsl,qe-num-snums", 46, 1); |
| 502 | else |
| 503 | do_fixup_by_compat_u32(blob, "fsl,qe", |
| 504 | "fsl,qe-num-snums", 76, 1); |
| 505 | } |
| 506 | } |
| 507 | #endif |
| 508 | |
York Sun | 84be8a9 | 2016-11-18 11:24:40 -0800 | [diff] [blame] | 509 | #if defined(CONFIG_ARCH_P4080) |
Shengzhou Liu | 320c2d2 | 2011-10-14 16:26:06 +0800 | [diff] [blame] | 510 | static void fdt_fixup_usb(void *fdt) |
| 511 | { |
| 512 | ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR); |
| 513 | u32 rcwsr11 = in_be32(&gur->rcwsr[11]); |
| 514 | int off; |
| 515 | |
| 516 | off = fdt_node_offset_by_compatible(fdt, -1, "fsl,mpc85xx-usb2-mph"); |
| 517 | if ((rcwsr11 & FSL_CORENET_RCWSR11_EC1) != |
| 518 | FSL_CORENET_RCWSR11_EC1_FM1_USB1) |
| 519 | fdt_status_disabled(fdt, off); |
| 520 | |
| 521 | off = fdt_node_offset_by_compatible(fdt, -1, "fsl,mpc85xx-usb2-dr"); |
| 522 | if ((rcwsr11 & FSL_CORENET_RCWSR11_EC2) != |
| 523 | FSL_CORENET_RCWSR11_EC2_USB2) |
| 524 | fdt_status_disabled(fdt, off); |
| 525 | } |
| 526 | #else |
| 527 | #define fdt_fixup_usb(x) |
| 528 | #endif |
| 529 | |
Tom Rini | a7ffa3d | 2021-05-23 10:58:05 -0400 | [diff] [blame] | 530 | #if defined(CONFIG_ARCH_T2080) || defined(CONFIG_ARCH_T4240) |
Shengzhou Liu | 55d9f82 | 2014-05-19 15:08:14 +0800 | [diff] [blame] | 531 | void fdt_fixup_dma3(void *blob) |
| 532 | { |
| 533 | /* the 3rd DMA is not functional if SRIO2 is chosen */ |
| 534 | int nodeoff; |
| 535 | ccsr_gur_t __iomem *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR); |
| 536 | |
| 537 | #define CONFIG_SYS_ELO3_DMA3 (0xffe000000 + 0x102300) |
York Sun | e20c685 | 2016-11-21 12:54:19 -0800 | [diff] [blame] | 538 | #if defined(CONFIG_ARCH_T2080) |
Shengzhou Liu | 55d9f82 | 2014-05-19 15:08:14 +0800 | [diff] [blame] | 539 | u32 srds_prtcl_s2 = in_be32(&gur->rcwsr[4]) & |
| 540 | FSL_CORENET2_RCWSR4_SRDS2_PRTCL; |
| 541 | srds_prtcl_s2 >>= FSL_CORENET2_RCWSR4_SRDS2_PRTCL_SHIFT; |
| 542 | |
| 543 | switch (srds_prtcl_s2) { |
| 544 | case 0x29: |
| 545 | case 0x2d: |
| 546 | case 0x2e: |
Tom Rini | a7ffa3d | 2021-05-23 10:58:05 -0400 | [diff] [blame] | 547 | #elif defined(CONFIG_ARCH_T4240) |
Shengzhou Liu | 55d9f82 | 2014-05-19 15:08:14 +0800 | [diff] [blame] | 548 | u32 srds_prtcl_s4 = in_be32(&gur->rcwsr[4]) & |
| 549 | FSL_CORENET2_RCWSR4_SRDS4_PRTCL; |
| 550 | srds_prtcl_s4 >>= FSL_CORENET2_RCWSR4_SRDS4_PRTCL_SHIFT; |
| 551 | |
| 552 | switch (srds_prtcl_s4) { |
| 553 | case 6: |
| 554 | case 8: |
| 555 | case 14: |
| 556 | case 16: |
| 557 | #endif |
| 558 | nodeoff = fdt_node_offset_by_compat_reg(blob, "fsl,elo3-dma", |
| 559 | CONFIG_SYS_ELO3_DMA3); |
| 560 | if (nodeoff > 0) |
| 561 | fdt_status_disabled(blob, nodeoff); |
| 562 | else |
| 563 | printf("WARNING: unable to disable dma3\n"); |
| 564 | break; |
| 565 | default: |
| 566 | break; |
| 567 | } |
| 568 | } |
| 569 | #else |
| 570 | #define fdt_fixup_dma3(x) |
| 571 | #endif |
| 572 | |
York Sun | a5b5d88 | 2016-11-18 13:11:12 -0800 | [diff] [blame] | 573 | #if defined(CONFIG_ARCH_T1040) |
Codrin Ciubotariu | 568623a | 2014-03-28 18:57:29 +0200 | [diff] [blame] | 574 | static void fdt_fixup_l2_switch(void *blob) |
| 575 | { |
| 576 | uchar l2swaddr[6]; |
| 577 | int node; |
| 578 | |
| 579 | /* The l2switch node from device-tree has |
| 580 | * compatible string "vitesse-9953" */ |
| 581 | node = fdt_node_offset_by_compatible(blob, -1, "vitesse-9953"); |
| 582 | if (node == -FDT_ERR_NOTFOUND) |
| 583 | /* no l2switch node has been found */ |
| 584 | return; |
| 585 | |
| 586 | /* Get MAC address for the l2switch from "l2switchaddr"*/ |
Simon Glass | 399a9ce | 2017-08-03 12:22:14 -0600 | [diff] [blame] | 587 | if (!eth_env_get_enetaddr("l2switchaddr", l2swaddr)) { |
Codrin Ciubotariu | 568623a | 2014-03-28 18:57:29 +0200 | [diff] [blame] | 588 | printf("Warning: MAC address for l2switch not found\n"); |
| 589 | memset(l2swaddr, 0, sizeof(l2swaddr)); |
| 590 | } |
| 591 | |
| 592 | /* Add MAC address to l2switch node */ |
| 593 | fdt_setprop(blob, node, "local-mac-address", l2swaddr, |
| 594 | sizeof(l2swaddr)); |
| 595 | } |
| 596 | #else |
| 597 | #define fdt_fixup_l2_switch(x) |
| 598 | #endif |
| 599 | |
Masahiro Yamada | f7ed78b | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 600 | void ft_cpu_setup(void *blob, struct bd_info *bd) |
Kumar Gala | 81a21e9 | 2007-11-29 00:15:30 -0600 | [diff] [blame] | 601 | { |
Haiying Wang | bb8aea7 | 2009-01-15 11:58:35 -0500 | [diff] [blame] | 602 | int off; |
| 603 | int val; |
Laurentiu TUDOR | 1e573e9 | 2013-10-23 15:20:45 +0300 | [diff] [blame] | 604 | int len; |
Haiying Wang | bb8aea7 | 2009-01-15 11:58:35 -0500 | [diff] [blame] | 605 | sys_info_t sysinfo; |
| 606 | |
Kim Phillips | 868e346 | 2008-06-16 15:55:53 -0500 | [diff] [blame] | 607 | /* delete crypto node if not on an E-processor */ |
| 608 | if (!IS_E_PROCESSOR(get_svr())) |
| 609 | fdt_fixup_crypto_node(blob, 0); |
Vakul Garg | 90a7f9f | 2013-01-23 22:52:31 +0000 | [diff] [blame] | 610 | #if CONFIG_SYS_FSL_SEC_COMPAT >= 4 |
| 611 | else { |
| 612 | ccsr_sec_t __iomem *sec; |
| 613 | |
| 614 | sec = (void __iomem *)CONFIG_SYS_FSL_SEC_ADDR; |
Ruchika Gupta | bb7143b | 2014-09-09 11:50:31 +0530 | [diff] [blame] | 615 | fdt_fixup_crypto_node(blob, sec_in32(&sec->secvid_ms)); |
Vakul Garg | 90a7f9f | 2013-01-23 22:52:31 +0000 | [diff] [blame] | 616 | } |
| 617 | #endif |
Kim Phillips | 868e346 | 2008-06-16 15:55:53 -0500 | [diff] [blame] | 618 | |
Andy Fleming | e336605 | 2008-10-07 08:09:50 -0500 | [diff] [blame] | 619 | fdt_add_enet_stashing(blob); |
Kumar Gala | 81a21e9 | 2007-11-29 00:15:30 -0600 | [diff] [blame] | 620 | |
York Sun | 972cc40 | 2013-06-25 11:37:41 -0700 | [diff] [blame] | 621 | #ifndef CONFIG_FSL_TBCLK_EXTRA_DIV |
| 622 | #define CONFIG_FSL_TBCLK_EXTRA_DIV 1 |
| 623 | #endif |
Kumar Gala | 81a21e9 | 2007-11-29 00:15:30 -0600 | [diff] [blame] | 624 | do_fixup_by_prop_u32(blob, "device_type", "cpu", 4, |
York Sun | 972cc40 | 2013-06-25 11:37:41 -0700 | [diff] [blame] | 625 | "timebase-frequency", get_tbclk() / CONFIG_FSL_TBCLK_EXTRA_DIV, |
| 626 | 1); |
Kumar Gala | 81a21e9 | 2007-11-29 00:15:30 -0600 | [diff] [blame] | 627 | do_fixup_by_prop_u32(blob, "device_type", "cpu", 4, |
| 628 | "bus-frequency", bd->bi_busfreq, 1); |
Haiying Wang | bb8aea7 | 2009-01-15 11:58:35 -0500 | [diff] [blame] | 629 | get_sys_info(&sysinfo); |
| 630 | off = fdt_node_offset_by_prop_value(blob, -1, "device_type", "cpu", 4); |
| 631 | while (off != -FDT_ERR_NOTFOUND) { |
Laurentiu TUDOR | 1e573e9 | 2013-10-23 15:20:45 +0300 | [diff] [blame] | 632 | u32 *reg = (u32 *)fdt_getprop(blob, off, "reg", &len); |
| 633 | val = cpu_to_fdt32(sysinfo.freq_processor[(*reg) / (len / 4)]); |
Haiying Wang | bb8aea7 | 2009-01-15 11:58:35 -0500 | [diff] [blame] | 634 | fdt_setprop(blob, off, "clock-frequency", &val, 4); |
| 635 | off = fdt_node_offset_by_prop_value(blob, off, "device_type", |
| 636 | "cpu", 4); |
| 637 | } |
Kumar Gala | 81a21e9 | 2007-11-29 00:15:30 -0600 | [diff] [blame] | 638 | do_fixup_by_prop_u32(blob, "device_type", "soc", 4, |
| 639 | "bus-frequency", bd->bi_busfreq, 1); |
Trent Piepho | bc424c9 | 2008-12-03 15:16:38 -0800 | [diff] [blame] | 640 | |
Kumar Gala | 81a21e9 | 2007-11-29 00:15:30 -0600 | [diff] [blame] | 641 | #ifdef CONFIG_QE |
Kumar Gala | 1f16448 | 2008-01-17 08:25:45 -0600 | [diff] [blame] | 642 | ft_qe_setup(blob); |
Liu Yu | d555da1 | 2010-01-15 14:58:40 +0800 | [diff] [blame] | 643 | ft_fixup_qe_snum(blob); |
Kumar Gala | 81a21e9 | 2007-11-29 00:15:30 -0600 | [diff] [blame] | 644 | #endif |
| 645 | |
Qianyu Gong | 8868a64 | 2016-02-18 13:02:00 +0800 | [diff] [blame] | 646 | #ifdef CONFIG_SYS_DPAA_FMAN |
Timur Tabi | bb76366 | 2011-05-03 13:35:11 -0500 | [diff] [blame] | 647 | fdt_fixup_fman_firmware(blob); |
Qianyu Gong | 8868a64 | 2016-02-18 13:02:00 +0800 | [diff] [blame] | 648 | #endif |
Timur Tabi | bb76366 | 2011-05-03 13:35:11 -0500 | [diff] [blame] | 649 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 650 | #ifdef CONFIG_SYS_NS16550 |
Kumar Gala | 81a21e9 | 2007-11-29 00:15:30 -0600 | [diff] [blame] | 651 | do_fixup_by_compat_u32(blob, "ns16550", |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 652 | "clock-frequency", CONFIG_SYS_NS16550_CLK, 1); |
Kumar Gala | 81a21e9 | 2007-11-29 00:15:30 -0600 | [diff] [blame] | 653 | #endif |
| 654 | |
Kumar Gala | b7177d7 | 2010-07-10 06:55:41 -0500 | [diff] [blame] | 655 | #ifdef CONFIG_FSL_CORENET |
| 656 | do_fixup_by_compat_u32(blob, "fsl,qoriq-clockgen-1.0", |
Tom Rini | 8c70baa | 2021-12-14 13:36:40 -0500 | [diff] [blame] | 657 | "clock-frequency", get_board_sys_clk(), 1); |
Andy Fleming | 7bd4b72 | 2013-06-17 15:10:28 -0500 | [diff] [blame] | 658 | do_fixup_by_compat_u32(blob, "fsl,qoriq-clockgen-2.0", |
Tom Rini | 8c70baa | 2021-12-14 13:36:40 -0500 | [diff] [blame] | 659 | "clock-frequency", get_board_sys_clk(), 1); |
Dongsheng.wang@freescale.com | 109a8d3 | 2013-01-30 18:51:52 +0000 | [diff] [blame] | 660 | do_fixup_by_compat_u32(blob, "fsl,mpic", |
| 661 | "clock-frequency", get_bus_freq(0)/2, 1); |
| 662 | #else |
| 663 | do_fixup_by_compat_u32(blob, "fsl,mpic", |
| 664 | "clock-frequency", get_bus_freq(0), 1); |
Kumar Gala | b7177d7 | 2010-07-10 06:55:41 -0500 | [diff] [blame] | 665 | #endif |
| 666 | |
Stefan Roese | a13a2aa | 2020-08-12 13:16:36 +0200 | [diff] [blame] | 667 | fdt_fixup_memory(blob, (u64)gd->ram_base, (u64)gd->ram_size); |
Kumar Gala | 36d6b3f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 668 | |
| 669 | #ifdef CONFIG_MP |
Stefan Roese | a13a2aa | 2020-08-12 13:16:36 +0200 | [diff] [blame] | 670 | ft_fixup_cpu(blob, (u64)gd->ram_base + (u64)gd->ram_size); |
Poonam Aggrwal | 4ca72ae | 2009-09-02 19:40:36 +0530 | [diff] [blame] | 671 | ft_fixup_num_cores(blob); |
Kumar Gala | 819a479 | 2010-06-09 22:33:53 -0500 | [diff] [blame] | 672 | #endif |
Kumar Gala | ec68f93 | 2008-05-29 11:22:06 -0500 | [diff] [blame] | 673 | |
| 674 | ft_fixup_cache(blob); |
Dipen Dudhat | 9387773 | 2009-09-02 11:25:08 +0530 | [diff] [blame] | 675 | |
| 676 | #if defined(CONFIG_FSL_ESDHC) |
| 677 | fdt_fixup_esdhc(blob, bd); |
| 678 | #endif |
Kumar Gala | b915e0d | 2009-03-19 02:46:28 -0500 | [diff] [blame] | 679 | |
| 680 | ft_fixup_dpaa_clks(blob); |
Kumar Gala | 38449a4 | 2009-09-10 03:02:13 -0500 | [diff] [blame] | 681 | |
| 682 | #if defined(CONFIG_SYS_BMAN_MEM_PHYS) |
| 683 | fdt_portal(blob, "fsl,bman-portal", "bman-portals", |
| 684 | (u64)CONFIG_SYS_BMAN_MEM_PHYS, |
| 685 | CONFIG_SYS_BMAN_MEM_SIZE); |
Haiying Wang | d38d4b2 | 2011-03-01 09:30:07 -0500 | [diff] [blame] | 686 | fdt_fixup_bportals(blob); |
Kumar Gala | 38449a4 | 2009-09-10 03:02:13 -0500 | [diff] [blame] | 687 | #endif |
| 688 | |
| 689 | #if defined(CONFIG_SYS_QMAN_MEM_PHYS) |
| 690 | fdt_portal(blob, "fsl,qman-portal", "qman-portals", |
| 691 | (u64)CONFIG_SYS_QMAN_MEM_PHYS, |
| 692 | CONFIG_SYS_QMAN_MEM_SIZE); |
| 693 | |
| 694 | fdt_fixup_qportals(blob); |
| 695 | #endif |
Kumar Gala | 8975d7a | 2010-12-30 12:09:53 -0600 | [diff] [blame] | 696 | |
| 697 | #ifdef CONFIG_SYS_SRIO |
| 698 | ft_srio_setup(blob); |
| 699 | #endif |
bhaskar upadhaya | 2c7ab3e | 2011-02-02 14:44:28 +0000 | [diff] [blame] | 700 | |
| 701 | /* |
| 702 | * system-clock = CCB clock/2 |
| 703 | * Here gd->bus_clk = CCB clock |
| 704 | * We are using the system clock as 1588 Timer reference |
| 705 | * clock source select |
| 706 | */ |
| 707 | do_fixup_by_compat_u32(blob, "fsl,gianfar-ptp-timer", |
| 708 | "timer-frequency", gd->bus_clk/2, 1); |
Bhaskar Upadhaya | b89130d | 2011-03-04 20:27:58 +0530 | [diff] [blame] | 709 | |
Jia Hongtao | f37569d | 2011-11-15 15:04:11 +0800 | [diff] [blame] | 710 | /* |
| 711 | * clock-freq should change to clock-frequency and |
| 712 | * flexcan-v1.0 should change to p1010-flexcan respectively |
| 713 | * in the future. |
| 714 | */ |
| 715 | do_fixup_by_compat_u32(blob, "fsl,flexcan-v1.0", |
| 716 | "clock_freq", gd->bus_clk/2, 1); |
| 717 | |
Bhaskar Upadhaya | b89130d | 2011-03-04 20:27:58 +0530 | [diff] [blame] | 718 | do_fixup_by_compat_u32(blob, "fsl,flexcan-v1.0", |
Jia Hongtao | f37569d | 2011-11-15 15:04:11 +0800 | [diff] [blame] | 719 | "clock-frequency", gd->bus_clk/2, 1); |
| 720 | |
| 721 | do_fixup_by_compat_u32(blob, "fsl,p1010-flexcan", |
| 722 | "clock-frequency", gd->bus_clk/2, 1); |
Shengzhou Liu | 320c2d2 | 2011-10-14 16:26:06 +0800 | [diff] [blame] | 723 | |
| 724 | fdt_fixup_usb(blob); |
Codrin Ciubotariu | 568623a | 2014-03-28 18:57:29 +0200 | [diff] [blame] | 725 | |
| 726 | fdt_fixup_l2_switch(blob); |
Shengzhou Liu | 55d9f82 | 2014-05-19 15:08:14 +0800 | [diff] [blame] | 727 | |
| 728 | fdt_fixup_dma3(blob); |
Kumar Gala | 81a21e9 | 2007-11-29 00:15:30 -0600 | [diff] [blame] | 729 | } |
Timur Tabi | 89e4870 | 2011-05-03 13:24:08 -0500 | [diff] [blame] | 730 | |
| 731 | /* |
| 732 | * For some CCSR devices, we only have the virtual address, not the physical |
| 733 | * address. This is because we map CCSR as a whole, so we typically don't need |
| 734 | * a macro for the physical address of any device within CCSR. In this case, |
| 735 | * we calculate the physical address of that device using it's the difference |
| 736 | * between the virtual address of the device and the virtual address of the |
| 737 | * beginning of CCSR. |
| 738 | */ |
| 739 | #define CCSR_VIRT_TO_PHYS(x) \ |
| 740 | (CONFIG_SYS_CCSRBAR_PHYS + ((x) - CONFIG_SYS_CCSRBAR)) |
| 741 | |
Timur Tabi | 186d7a5 | 2011-11-16 13:28:34 -0600 | [diff] [blame] | 742 | static void msg(const char *name, uint64_t uaddr, uint64_t daddr) |
| 743 | { |
| 744 | printf("Warning: U-Boot configured %s at address %llx,\n" |
| 745 | "but the device tree has it at %llx\n", name, uaddr, daddr); |
| 746 | } |
| 747 | |
Timur Tabi | 89e4870 | 2011-05-03 13:24:08 -0500 | [diff] [blame] | 748 | /* |
| 749 | * Verify the device tree |
| 750 | * |
| 751 | * This function compares several CONFIG_xxx macros that contain physical |
| 752 | * addresses with the corresponding nodes in the device tree, to see if |
| 753 | * the physical addresses are all correct. For example, if |
| 754 | * CONFIG_SYS_NS16550_COM1 is defined, then it contains the virtual address |
| 755 | * of the first UART. We convert this to a physical address and compare |
| 756 | * that with the physical address of the first ns16550-compatible node |
| 757 | * in the device tree. If they don't match, then we display a warning. |
| 758 | * |
| 759 | * Returns 1 on success, 0 on failure |
| 760 | */ |
| 761 | int ft_verify_fdt(void *fdt) |
| 762 | { |
Timur Tabi | 186d7a5 | 2011-11-16 13:28:34 -0600 | [diff] [blame] | 763 | uint64_t addr = 0; |
Timur Tabi | 89e4870 | 2011-05-03 13:24:08 -0500 | [diff] [blame] | 764 | int aliases; |
| 765 | int off; |
| 766 | |
| 767 | /* First check the CCSR base address */ |
| 768 | off = fdt_node_offset_by_prop_value(fdt, -1, "device_type", "soc", 4); |
Tom Rini | 0fb3606 | 2017-08-03 09:33:07 -0400 | [diff] [blame] | 769 | if (off > 0) { |
| 770 | int size; |
| 771 | u32 naddr; |
| 772 | const fdt32_t *prop; |
| 773 | |
| 774 | naddr = fdt_address_cells(fdt, off); |
| 775 | prop = fdt_getprop(fdt, off, "ranges", &size); |
| 776 | addr = fdt_translate_address(fdt, off, prop + naddr); |
| 777 | } |
Timur Tabi | 89e4870 | 2011-05-03 13:24:08 -0500 | [diff] [blame] | 778 | |
Timur Tabi | 186d7a5 | 2011-11-16 13:28:34 -0600 | [diff] [blame] | 779 | if (!addr) { |
Timur Tabi | 89e4870 | 2011-05-03 13:24:08 -0500 | [diff] [blame] | 780 | printf("Warning: could not determine base CCSR address in " |
| 781 | "device tree\n"); |
| 782 | /* No point in checking anything else */ |
| 783 | return 0; |
| 784 | } |
| 785 | |
Timur Tabi | 186d7a5 | 2011-11-16 13:28:34 -0600 | [diff] [blame] | 786 | if (addr != CONFIG_SYS_CCSRBAR_PHYS) { |
| 787 | msg("CCSR", CONFIG_SYS_CCSRBAR_PHYS, addr); |
Timur Tabi | 89e4870 | 2011-05-03 13:24:08 -0500 | [diff] [blame] | 788 | /* No point in checking anything else */ |
| 789 | return 0; |
| 790 | } |
| 791 | |
| 792 | /* |
Timur Tabi | 186d7a5 | 2011-11-16 13:28:34 -0600 | [diff] [blame] | 793 | * Check some nodes via aliases. We assume that U-Boot and the device |
| 794 | * tree enumerate the devices equally. E.g. the first serial port in |
| 795 | * U-Boot is the same as "serial0" in the device tree. |
Timur Tabi | 89e4870 | 2011-05-03 13:24:08 -0500 | [diff] [blame] | 796 | */ |
| 797 | aliases = fdt_path_offset(fdt, "/aliases"); |
| 798 | if (aliases > 0) { |
| 799 | #ifdef CONFIG_SYS_NS16550_COM1 |
| 800 | if (!fdt_verify_alias_address(fdt, aliases, "serial0", |
| 801 | CCSR_VIRT_TO_PHYS(CONFIG_SYS_NS16550_COM1))) |
| 802 | return 0; |
| 803 | #endif |
| 804 | |
| 805 | #ifdef CONFIG_SYS_NS16550_COM2 |
| 806 | if (!fdt_verify_alias_address(fdt, aliases, "serial1", |
| 807 | CCSR_VIRT_TO_PHYS(CONFIG_SYS_NS16550_COM2))) |
| 808 | return 0; |
| 809 | #endif |
| 810 | } |
Timur Tabi | 186d7a5 | 2011-11-16 13:28:34 -0600 | [diff] [blame] | 811 | |
| 812 | /* |
| 813 | * The localbus node is typically a root node, even though the lbc |
| 814 | * controller is part of CCSR. If we were to put the lbc node under |
| 815 | * the SOC node, then the 'ranges' property in the lbc node would |
| 816 | * translate through the 'ranges' property of the parent SOC node, and |
| 817 | * we don't want that. Since it's a separate node, it's possible for |
| 818 | * the 'reg' property to be wrong, so check it here. For now, we |
| 819 | * only check for "fsl,elbc" nodes. |
| 820 | */ |
| 821 | #ifdef CONFIG_SYS_LBC_ADDR |
| 822 | off = fdt_node_offset_by_compatible(fdt, -1, "fsl,elbc"); |
| 823 | if (off > 0) { |
Kim Phillips | 6542c07 | 2013-01-16 14:00:11 +0000 | [diff] [blame] | 824 | const fdt32_t *reg = fdt_getprop(fdt, off, "reg", NULL); |
Timur Tabi | 186d7a5 | 2011-11-16 13:28:34 -0600 | [diff] [blame] | 825 | if (reg) { |
| 826 | uint64_t uaddr = CCSR_VIRT_TO_PHYS(CONFIG_SYS_LBC_ADDR); |
| 827 | |
| 828 | addr = fdt_translate_address(fdt, off, reg); |
| 829 | if (uaddr != addr) { |
| 830 | msg("the localbus", uaddr, addr); |
| 831 | return 0; |
| 832 | } |
| 833 | } |
| 834 | } |
| 835 | #endif |
Timur Tabi | 89e4870 | 2011-05-03 13:24:08 -0500 | [diff] [blame] | 836 | |
| 837 | return 1; |
| 838 | } |
Zhao Qiang | 81136a1 | 2015-08-28 10:31:50 +0800 | [diff] [blame] | 839 | |
| 840 | void fdt_del_diu(void *blob) |
| 841 | { |
| 842 | int nodeoff = 0; |
| 843 | |
| 844 | while ((nodeoff = fdt_node_offset_by_compatible(blob, 0, |
| 845 | "fsl,diu")) >= 0) { |
| 846 | fdt_del_node(blob, nodeoff); |
| 847 | } |
| 848 | } |