Kumar Gala | f852ce7 | 2007-11-29 00:15:30 -0600 | [diff] [blame] | 1 | /* |
Kumar Gala | a09b9b6 | 2010-12-30 12:09:53 -0600 | [diff] [blame] | 2 | * Copyright 2007-2011 Freescale Semiconductor, Inc. |
Kumar Gala | f852ce7 | 2007-11-29 00:15:30 -0600 | [diff] [blame] | 3 | * |
| 4 | * (C) Copyright 2000 |
| 5 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 6 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 7 | * SPDX-License-Identifier: GPL-2.0+ |
Kumar Gala | f852ce7 | 2007-11-29 00:15:30 -0600 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | #include <common.h> |
| 11 | #include <libfdt.h> |
| 12 | #include <fdt_support.h> |
Kumar Gala | 730b2fc | 2008-05-29 11:22:06 -0500 | [diff] [blame] | 13 | #include <asm/processor.h> |
Vivek Mahajan | cb0ff65 | 2009-09-22 12:48:27 +0530 | [diff] [blame] | 14 | #include <linux/ctype.h> |
Kumar Gala | 6aba33e | 2009-03-19 03:40:08 -0500 | [diff] [blame] | 15 | #include <asm/io.h> |
Kumar Gala | db977ab | 2009-09-10 03:02:13 -0500 | [diff] [blame] | 16 | #include <asm/fsl_portals.h> |
Dipen Dudhat | da1cd95 | 2009-09-02 11:25:08 +0530 | [diff] [blame] | 17 | #ifdef CONFIG_FSL_ESDHC |
| 18 | #include <fsl_esdhc.h> |
| 19 | #endif |
Timur Tabi | ffadc44 | 2011-05-03 13:35:11 -0500 | [diff] [blame] | 20 | #include "../../../../drivers/qe/qe.h" /* For struct qe_firmware */ |
Kumar Gala | f852ce7 | 2007-11-29 00:15:30 -0600 | [diff] [blame] | 21 | |
Trent Piepho | 58ec486 | 2008-12-03 15:16:38 -0800 | [diff] [blame] | 22 | DECLARE_GLOBAL_DATA_PTR; |
| 23 | |
Kumar Gala | 69018ce | 2008-01-17 08:25:45 -0600 | [diff] [blame] | 24 | extern void ft_qe_setup(void *blob); |
Poonam Aggrwal | f8027f6 | 2009-09-02 19:40:36 +0530 | [diff] [blame] | 25 | extern void ft_fixup_num_cores(void *blob); |
Kumar Gala | a09b9b6 | 2010-12-30 12:09:53 -0600 | [diff] [blame] | 26 | extern void ft_srio_setup(void *blob); |
Kim Phillips | 6b70ffb | 2008-06-16 15:55:53 -0500 | [diff] [blame] | 27 | |
Kumar Gala | ec2b74f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 28 | #ifdef CONFIG_MP |
| 29 | #include "mp.h" |
Kumar Gala | ec2b74f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 30 | |
| 31 | void ft_fixup_cpu(void *blob, u64 memory_limit) |
| 32 | { |
| 33 | int off; |
York Sun | ffd06e0 | 2012-10-08 07:44:30 +0000 | [diff] [blame] | 34 | phys_addr_t spin_tbl_addr = get_spin_phys_addr(); |
York Sun | eb53941 | 2012-10-08 07:44:25 +0000 | [diff] [blame] | 35 | u32 bootpg = determine_mp_bootpg(NULL); |
Kumar Gala | c840d26 | 2009-03-31 23:11:05 -0500 | [diff] [blame] | 36 | u32 id = get_my_id(); |
Aaron Sierra | 9d64c6b | 2010-09-30 12:22:16 -0500 | [diff] [blame] | 37 | const char *enable_method; |
Kumar Gala | ec2b74f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 38 | |
| 39 | off = fdt_node_offset_by_prop_value(blob, -1, "device_type", "cpu", 4); |
| 40 | while (off != -FDT_ERR_NOTFOUND) { |
| 41 | u32 *reg = (u32 *)fdt_getprop(blob, off, "reg", 0); |
| 42 | |
| 43 | if (reg) { |
York Sun | 709389b | 2012-08-17 08:20:26 +0000 | [diff] [blame] | 44 | u32 phys_cpu_id = thread_to_core(*reg); |
| 45 | u64 val = phys_cpu_id * SIZE_BOOT_ENTRY + spin_tbl_addr; |
| 46 | val = cpu_to_fdt64(val); |
Kumar Gala | ec2b74f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 47 | if (*reg == id) { |
Matthew McClintock | b80d305 | 2010-08-19 13:57:48 -0500 | [diff] [blame] | 48 | fdt_setprop_string(blob, off, "status", |
| 49 | "okay"); |
Kumar Gala | ec2b74f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 50 | } else { |
Kumar Gala | ec2b74f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 51 | fdt_setprop_string(blob, off, "status", |
| 52 | "disabled"); |
Kumar Gala | ec2b74f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 53 | } |
Aaron Sierra | 9d64c6b | 2010-09-30 12:22:16 -0500 | [diff] [blame] | 54 | |
| 55 | if (hold_cores_in_reset(0)) { |
| 56 | #ifdef CONFIG_FSL_CORENET |
| 57 | /* Cores held in reset, use BRR to release */ |
| 58 | enable_method = "fsl,brr-holdoff"; |
| 59 | #else |
| 60 | /* Cores held in reset, use EEBPCR to release */ |
| 61 | enable_method = "fsl,eebpcr-holdoff"; |
| 62 | #endif |
| 63 | } else { |
| 64 | /* Cores out of reset and in a spin-loop */ |
| 65 | enable_method = "spin-table"; |
| 66 | |
| 67 | fdt_setprop(blob, off, "cpu-release-addr", |
| 68 | &val, sizeof(val)); |
| 69 | } |
| 70 | |
Matthew McClintock | b80d305 | 2010-08-19 13:57:48 -0500 | [diff] [blame] | 71 | fdt_setprop_string(blob, off, "enable-method", |
Aaron Sierra | 9d64c6b | 2010-09-30 12:22:16 -0500 | [diff] [blame] | 72 | enable_method); |
Kumar Gala | ec2b74f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 73 | } else { |
| 74 | printf ("cpu NULL\n"); |
| 75 | } |
| 76 | off = fdt_node_offset_by_prop_value(blob, off, |
| 77 | "device_type", "cpu", 4); |
| 78 | } |
| 79 | |
| 80 | /* Reserve the boot page so OSes dont use it */ |
| 81 | if ((u64)bootpg < memory_limit) { |
| 82 | off = fdt_add_mem_rsv(blob, bootpg, (u64)4096); |
| 83 | if (off < 0) |
York Sun | ffd06e0 | 2012-10-08 07:44:30 +0000 | [diff] [blame] | 84 | printf("Failed to reserve memory for bootpg: %s\n", |
| 85 | fdt_strerror(off)); |
| 86 | } |
York Sun | 2d9f26b | 2012-12-14 06:21:58 +0000 | [diff] [blame] | 87 | |
| 88 | #ifndef CONFIG_MPC8xxx_DISABLE_BPTR |
| 89 | /* |
| 90 | * Reserve the default boot page so OSes dont use it. |
| 91 | * The default boot page is always mapped to bootpg above using |
| 92 | * boot page translation. |
| 93 | */ |
| 94 | if (0xfffff000ull < memory_limit) { |
| 95 | off = fdt_add_mem_rsv(blob, 0xfffff000ull, (u64)4096); |
| 96 | if (off < 0) { |
| 97 | printf("Failed to reserve memory for 0xfffff000: %s\n", |
| 98 | fdt_strerror(off)); |
| 99 | } |
| 100 | } |
| 101 | #endif |
| 102 | |
York Sun | ffd06e0 | 2012-10-08 07:44:30 +0000 | [diff] [blame] | 103 | /* Reserve spin table page */ |
| 104 | if (spin_tbl_addr < memory_limit) { |
| 105 | off = fdt_add_mem_rsv(blob, |
| 106 | (spin_tbl_addr & ~0xffful), 4096); |
| 107 | if (off < 0) |
| 108 | printf("Failed to reserve memory for spin table: %s\n", |
| 109 | fdt_strerror(off)); |
Kumar Gala | ec2b74f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 110 | } |
| 111 | } |
| 112 | #endif |
Kumar Gala | 69018ce | 2008-01-17 08:25:45 -0600 | [diff] [blame] | 113 | |
Kumar Gala | 6aba33e | 2009-03-19 03:40:08 -0500 | [diff] [blame] | 114 | #ifdef CONFIG_SYS_FSL_CPC |
| 115 | static inline void ft_fixup_l3cache(void *blob, int off) |
| 116 | { |
| 117 | u32 line_size, num_ways, size, num_sets; |
| 118 | cpc_corenet_t *cpc = (void *)CONFIG_SYS_FSL_CPC_ADDR; |
| 119 | u32 cfg0 = in_be32(&cpc->cpccfg0); |
| 120 | |
| 121 | size = CPC_CFG0_SZ_K(cfg0) * 1024 * CONFIG_SYS_NUM_CPC; |
| 122 | num_ways = CPC_CFG0_NUM_WAYS(cfg0); |
| 123 | line_size = CPC_CFG0_LINE_SZ(cfg0); |
| 124 | num_sets = size / (line_size * num_ways); |
| 125 | |
| 126 | fdt_setprop(blob, off, "cache-unified", NULL, 0); |
| 127 | fdt_setprop_cell(blob, off, "cache-block-size", line_size); |
| 128 | fdt_setprop_cell(blob, off, "cache-size", size); |
| 129 | fdt_setprop_cell(blob, off, "cache-sets", num_sets); |
| 130 | fdt_setprop_cell(blob, off, "cache-level", 3); |
| 131 | #ifdef CONFIG_SYS_CACHE_STASHING |
| 132 | fdt_setprop_cell(blob, off, "cache-stash-id", 1); |
| 133 | #endif |
| 134 | } |
| 135 | #else |
Kumar Gala | 1b3e404 | 2009-03-19 09:16:10 -0500 | [diff] [blame] | 136 | #define ft_fixup_l3cache(x, y) |
Kumar Gala | 6aba33e | 2009-03-19 03:40:08 -0500 | [diff] [blame] | 137 | #endif |
Kumar Gala | 1b3e404 | 2009-03-19 09:16:10 -0500 | [diff] [blame] | 138 | |
| 139 | #if defined(CONFIG_L2_CACHE) |
Kumar Gala | 730b2fc | 2008-05-29 11:22:06 -0500 | [diff] [blame] | 140 | /* return size in kilobytes */ |
| 141 | static inline u32 l2cache_size(void) |
| 142 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 143 | volatile ccsr_l2cache_t *l2cache = (void *)CONFIG_SYS_MPC85xx_L2_ADDR; |
Kumar Gala | 730b2fc | 2008-05-29 11:22:06 -0500 | [diff] [blame] | 144 | volatile u32 l2siz_field = (l2cache->l2ctl >> 28) & 0x3; |
| 145 | u32 ver = SVR_SOC_VER(get_svr()); |
| 146 | |
| 147 | switch (l2siz_field) { |
| 148 | case 0x0: |
| 149 | break; |
| 150 | case 0x1: |
| 151 | if (ver == SVR_8540 || ver == SVR_8560 || |
York Sun | 48f6a5c | 2012-07-06 17:10:33 -0500 | [diff] [blame] | 152 | ver == SVR_8541 || ver == SVR_8555) |
Kumar Gala | 730b2fc | 2008-05-29 11:22:06 -0500 | [diff] [blame] | 153 | return 128; |
| 154 | else |
| 155 | return 256; |
| 156 | break; |
| 157 | case 0x2: |
| 158 | if (ver == SVR_8540 || ver == SVR_8560 || |
York Sun | 48f6a5c | 2012-07-06 17:10:33 -0500 | [diff] [blame] | 159 | ver == SVR_8541 || ver == SVR_8555) |
Kumar Gala | 730b2fc | 2008-05-29 11:22:06 -0500 | [diff] [blame] | 160 | return 256; |
| 161 | else |
| 162 | return 512; |
| 163 | break; |
| 164 | case 0x3: |
| 165 | return 1024; |
| 166 | break; |
| 167 | } |
| 168 | |
| 169 | return 0; |
| 170 | } |
| 171 | |
| 172 | static inline void ft_fixup_l2cache(void *blob) |
| 173 | { |
| 174 | int len, off; |
| 175 | u32 *ph; |
| 176 | struct cpu_type *cpu = identify_cpu(SVR_SOC_VER(get_svr())); |
Kumar Gala | 730b2fc | 2008-05-29 11:22:06 -0500 | [diff] [blame] | 177 | |
| 178 | const u32 line_size = 32; |
| 179 | const u32 num_ways = 8; |
| 180 | const u32 size = l2cache_size() * 1024; |
| 181 | const u32 num_sets = size / (line_size * num_ways); |
| 182 | |
| 183 | off = fdt_node_offset_by_prop_value(blob, -1, "device_type", "cpu", 4); |
| 184 | if (off < 0) { |
| 185 | debug("no cpu node fount\n"); |
| 186 | return; |
| 187 | } |
| 188 | |
| 189 | ph = (u32 *)fdt_getprop(blob, off, "next-level-cache", 0); |
| 190 | |
| 191 | if (ph == NULL) { |
| 192 | debug("no next-level-cache property\n"); |
| 193 | return ; |
| 194 | } |
| 195 | |
| 196 | off = fdt_node_offset_by_phandle(blob, *ph); |
| 197 | if (off < 0) { |
| 198 | printf("%s: %s\n", __func__, fdt_strerror(off)); |
| 199 | return ; |
| 200 | } |
| 201 | |
| 202 | if (cpu) { |
Timur Tabi | ee4756d | 2011-04-29 18:08:44 -0500 | [diff] [blame] | 203 | char buf[40]; |
Vivek Mahajan | cb0ff65 | 2009-09-22 12:48:27 +0530 | [diff] [blame] | 204 | |
Timur Tabi | ee4756d | 2011-04-29 18:08:44 -0500 | [diff] [blame] | 205 | if (isdigit(cpu->name[0])) { |
| 206 | /* MPCxxxx, where xxxx == 4-digit number */ |
| 207 | len = sprintf(buf, "fsl,mpc%s-l2-cache-controller", |
| 208 | cpu->name) + 1; |
| 209 | } else { |
| 210 | /* Pxxxx or Txxxx, where xxxx == 4-digit number */ |
| 211 | len = sprintf(buf, "fsl,%c%s-l2-cache-controller", |
| 212 | tolower(cpu->name[0]), cpu->name + 1) + 1; |
| 213 | } |
| 214 | |
| 215 | /* |
| 216 | * append "cache" after the NULL character that the previous |
| 217 | * sprintf wrote. This is how a device tree stores multiple |
| 218 | * strings in a property. |
| 219 | */ |
| 220 | len += sprintf(buf + len, "cache") + 1; |
| 221 | |
| 222 | fdt_setprop(blob, off, "compatible", buf, len); |
Kumar Gala | 730b2fc | 2008-05-29 11:22:06 -0500 | [diff] [blame] | 223 | } |
| 224 | fdt_setprop(blob, off, "cache-unified", NULL, 0); |
| 225 | fdt_setprop_cell(blob, off, "cache-block-size", line_size); |
Kumar Gala | 730b2fc | 2008-05-29 11:22:06 -0500 | [diff] [blame] | 226 | fdt_setprop_cell(blob, off, "cache-size", size); |
| 227 | fdt_setprop_cell(blob, off, "cache-sets", num_sets); |
| 228 | fdt_setprop_cell(blob, off, "cache-level", 2); |
Kumar Gala | 1b3e404 | 2009-03-19 09:16:10 -0500 | [diff] [blame] | 229 | |
| 230 | /* we dont bother w/L3 since no platform of this type has one */ |
| 231 | } |
York Sun | 6d2b9da | 2012-10-08 07:44:08 +0000 | [diff] [blame] | 232 | #elif defined(CONFIG_BACKSIDE_L2_CACHE) || \ |
| 233 | defined(CONFIG_SYS_FSL_QORIQ_CHASSIS2) |
Kumar Gala | 1b3e404 | 2009-03-19 09:16:10 -0500 | [diff] [blame] | 234 | static inline void ft_fixup_l2cache(void *blob) |
| 235 | { |
| 236 | int off, l2_off, l3_off = -1; |
| 237 | u32 *ph; |
York Sun | 6d2b9da | 2012-10-08 07:44:08 +0000 | [diff] [blame] | 238 | #ifdef CONFIG_BACKSIDE_L2_CACHE |
Kumar Gala | 1b3e404 | 2009-03-19 09:16:10 -0500 | [diff] [blame] | 239 | u32 l2cfg0 = mfspr(SPRN_L2CFG0); |
York Sun | 6d2b9da | 2012-10-08 07:44:08 +0000 | [diff] [blame] | 240 | #else |
| 241 | struct ccsr_cluster_l2 *l2cache = |
| 242 | (struct ccsr_cluster_l2 __iomem *)(CONFIG_SYS_FSL_CLUSTER_1_L2); |
| 243 | u32 l2cfg0 = in_be32(&l2cache->l2cfg0); |
| 244 | #endif |
Kumar Gala | 1b3e404 | 2009-03-19 09:16:10 -0500 | [diff] [blame] | 245 | u32 size, line_size, num_ways, num_sets; |
Kumar Gala | acf3f8d | 2011-07-21 00:20:21 -0500 | [diff] [blame] | 246 | int has_l2 = 1; |
| 247 | |
| 248 | /* P2040/P2040E has no L2, so dont set any L2 props */ |
York Sun | 48f6a5c | 2012-07-06 17:10:33 -0500 | [diff] [blame] | 249 | if (SVR_SOC_VER(get_svr()) == SVR_P2040) |
Kumar Gala | acf3f8d | 2011-07-21 00:20:21 -0500 | [diff] [blame] | 250 | has_l2 = 0; |
Kumar Gala | 1b3e404 | 2009-03-19 09:16:10 -0500 | [diff] [blame] | 251 | |
| 252 | size = (l2cfg0 & 0x3fff) * 64 * 1024; |
| 253 | num_ways = ((l2cfg0 >> 14) & 0x1f) + 1; |
| 254 | line_size = (((l2cfg0 >> 23) & 0x3) + 1) * 32; |
| 255 | num_sets = size / (line_size * num_ways); |
| 256 | |
| 257 | off = fdt_node_offset_by_prop_value(blob, -1, "device_type", "cpu", 4); |
| 258 | |
| 259 | while (off != -FDT_ERR_NOTFOUND) { |
| 260 | ph = (u32 *)fdt_getprop(blob, off, "next-level-cache", 0); |
| 261 | |
| 262 | if (ph == NULL) { |
| 263 | debug("no next-level-cache property\n"); |
| 264 | goto next; |
| 265 | } |
| 266 | |
| 267 | l2_off = fdt_node_offset_by_phandle(blob, *ph); |
| 268 | if (l2_off < 0) { |
| 269 | printf("%s: %s\n", __func__, fdt_strerror(off)); |
| 270 | goto next; |
| 271 | } |
| 272 | |
Kumar Gala | acf3f8d | 2011-07-21 00:20:21 -0500 | [diff] [blame] | 273 | if (has_l2) { |
Kumar Gala | 82fd1f8 | 2009-03-19 02:53:01 -0500 | [diff] [blame] | 274 | #ifdef CONFIG_SYS_CACHE_STASHING |
Kumar Gala | 82fd1f8 | 2009-03-19 02:53:01 -0500 | [diff] [blame] | 275 | u32 *reg = (u32 *)fdt_getprop(blob, off, "reg", 0); |
Prabhakar Kushwaha | e982746 | 2013-08-29 13:10:38 +0530 | [diff] [blame] | 276 | #if defined(CONFIG_SYS_FSL_QORIQ_CHASSIS2) && defined(CONFIG_E6500) |
York Sun | 6d2b9da | 2012-10-08 07:44:08 +0000 | [diff] [blame] | 277 | /* Only initialize every eighth thread */ |
| 278 | if (reg && !((*reg) % 8)) |
| 279 | #else |
Kumar Gala | 82fd1f8 | 2009-03-19 02:53:01 -0500 | [diff] [blame] | 280 | if (reg) |
York Sun | 6d2b9da | 2012-10-08 07:44:08 +0000 | [diff] [blame] | 281 | #endif |
Kumar Gala | 82fd1f8 | 2009-03-19 02:53:01 -0500 | [diff] [blame] | 282 | fdt_setprop_cell(blob, l2_off, "cache-stash-id", |
| 283 | (*reg * 2) + 32 + 1); |
Kumar Gala | 82fd1f8 | 2009-03-19 02:53:01 -0500 | [diff] [blame] | 284 | #endif |
| 285 | |
Kumar Gala | acf3f8d | 2011-07-21 00:20:21 -0500 | [diff] [blame] | 286 | fdt_setprop(blob, l2_off, "cache-unified", NULL, 0); |
| 287 | fdt_setprop_cell(blob, l2_off, "cache-block-size", |
| 288 | line_size); |
| 289 | fdt_setprop_cell(blob, l2_off, "cache-size", size); |
| 290 | fdt_setprop_cell(blob, l2_off, "cache-sets", num_sets); |
| 291 | fdt_setprop_cell(blob, l2_off, "cache-level", 2); |
| 292 | fdt_setprop(blob, l2_off, "compatible", "cache", 6); |
| 293 | } |
Kumar Gala | 1b3e404 | 2009-03-19 09:16:10 -0500 | [diff] [blame] | 294 | |
| 295 | if (l3_off < 0) { |
| 296 | ph = (u32 *)fdt_getprop(blob, l2_off, "next-level-cache", 0); |
| 297 | |
| 298 | if (ph == NULL) { |
| 299 | debug("no next-level-cache property\n"); |
| 300 | goto next; |
| 301 | } |
| 302 | l3_off = *ph; |
| 303 | } |
| 304 | next: |
| 305 | off = fdt_node_offset_by_prop_value(blob, off, |
| 306 | "device_type", "cpu", 4); |
| 307 | } |
| 308 | if (l3_off > 0) { |
| 309 | l3_off = fdt_node_offset_by_phandle(blob, l3_off); |
| 310 | if (l3_off < 0) { |
| 311 | printf("%s: %s\n", __func__, fdt_strerror(off)); |
| 312 | return ; |
| 313 | } |
| 314 | ft_fixup_l3cache(blob, l3_off); |
| 315 | } |
Kumar Gala | 730b2fc | 2008-05-29 11:22:06 -0500 | [diff] [blame] | 316 | } |
| 317 | #else |
| 318 | #define ft_fixup_l2cache(x) |
| 319 | #endif |
| 320 | |
| 321 | static inline void ft_fixup_cache(void *blob) |
| 322 | { |
| 323 | int off; |
| 324 | |
| 325 | off = fdt_node_offset_by_prop_value(blob, -1, "device_type", "cpu", 4); |
| 326 | |
| 327 | while (off != -FDT_ERR_NOTFOUND) { |
| 328 | u32 l1cfg0 = mfspr(SPRN_L1CFG0); |
| 329 | u32 l1cfg1 = mfspr(SPRN_L1CFG1); |
| 330 | u32 isize, iline_size, inum_sets, inum_ways; |
| 331 | u32 dsize, dline_size, dnum_sets, dnum_ways; |
| 332 | |
| 333 | /* d-side config */ |
| 334 | dsize = (l1cfg0 & 0x7ff) * 1024; |
| 335 | dnum_ways = ((l1cfg0 >> 11) & 0xff) + 1; |
| 336 | dline_size = (((l1cfg0 >> 23) & 0x3) + 1) * 32; |
| 337 | dnum_sets = dsize / (dline_size * dnum_ways); |
| 338 | |
| 339 | fdt_setprop_cell(blob, off, "d-cache-block-size", dline_size); |
Kumar Gala | 730b2fc | 2008-05-29 11:22:06 -0500 | [diff] [blame] | 340 | fdt_setprop_cell(blob, off, "d-cache-size", dsize); |
| 341 | fdt_setprop_cell(blob, off, "d-cache-sets", dnum_sets); |
| 342 | |
Kumar Gala | 82fd1f8 | 2009-03-19 02:53:01 -0500 | [diff] [blame] | 343 | #ifdef CONFIG_SYS_CACHE_STASHING |
| 344 | { |
| 345 | u32 *reg = (u32 *)fdt_getprop(blob, off, "reg", 0); |
| 346 | if (reg) |
| 347 | fdt_setprop_cell(blob, off, "cache-stash-id", |
| 348 | (*reg * 2) + 32 + 0); |
| 349 | } |
| 350 | #endif |
| 351 | |
Kumar Gala | 730b2fc | 2008-05-29 11:22:06 -0500 | [diff] [blame] | 352 | /* i-side config */ |
| 353 | isize = (l1cfg1 & 0x7ff) * 1024; |
| 354 | inum_ways = ((l1cfg1 >> 11) & 0xff) + 1; |
| 355 | iline_size = (((l1cfg1 >> 23) & 0x3) + 1) * 32; |
| 356 | inum_sets = isize / (iline_size * inum_ways); |
| 357 | |
| 358 | fdt_setprop_cell(blob, off, "i-cache-block-size", iline_size); |
Kumar Gala | 730b2fc | 2008-05-29 11:22:06 -0500 | [diff] [blame] | 359 | fdt_setprop_cell(blob, off, "i-cache-size", isize); |
| 360 | fdt_setprop_cell(blob, off, "i-cache-sets", inum_sets); |
| 361 | |
| 362 | off = fdt_node_offset_by_prop_value(blob, off, |
| 363 | "device_type", "cpu", 4); |
| 364 | } |
| 365 | |
| 366 | ft_fixup_l2cache(blob); |
| 367 | } |
| 368 | |
| 369 | |
Andy Fleming | 0e17f02 | 2008-10-07 08:09:50 -0500 | [diff] [blame] | 370 | void fdt_add_enet_stashing(void *fdt) |
| 371 | { |
| 372 | do_fixup_by_compat(fdt, "gianfar", "bd-stash", NULL, 0, 1); |
| 373 | |
| 374 | do_fixup_by_compat_u32(fdt, "gianfar", "rx-stash-len", 96, 1); |
| 375 | |
| 376 | do_fixup_by_compat_u32(fdt, "gianfar", "rx-stash-idx", 0, 1); |
Pankaj Chauhan | eea9a12 | 2011-01-25 14:44:57 +0530 | [diff] [blame] | 377 | do_fixup_by_compat(fdt, "fsl,etsec2", "bd-stash", NULL, 0, 1); |
| 378 | do_fixup_by_compat_u32(fdt, "fsl,etsec2", "rx-stash-len", 96, 1); |
| 379 | do_fixup_by_compat_u32(fdt, "fsl,etsec2", "rx-stash-idx", 0, 1); |
Andy Fleming | 0e17f02 | 2008-10-07 08:09:50 -0500 | [diff] [blame] | 380 | } |
| 381 | |
Kumar Gala | bcad21f | 2009-03-19 02:46:28 -0500 | [diff] [blame] | 382 | #if defined(CONFIG_SYS_DPAA_FMAN) || defined(CONFIG_SYS_DPAA_PME) |
Kumar Gala | e2d0f25 | 2011-07-31 12:55:39 -0500 | [diff] [blame] | 383 | #ifdef CONFIG_SYS_DPAA_FMAN |
Kumar Gala | 1b942f7 | 2010-07-10 06:38:16 -0500 | [diff] [blame] | 384 | static void ft_fixup_clks(void *blob, const char *compat, u32 offset, |
| 385 | unsigned long freq) |
Kumar Gala | bcad21f | 2009-03-19 02:46:28 -0500 | [diff] [blame] | 386 | { |
Kumar Gala | 1b942f7 | 2010-07-10 06:38:16 -0500 | [diff] [blame] | 387 | phys_addr_t phys = offset + CONFIG_SYS_CCSRBAR_PHYS; |
| 388 | int off = fdt_node_offset_by_compat_reg(blob, compat, phys); |
Kumar Gala | bcad21f | 2009-03-19 02:46:28 -0500 | [diff] [blame] | 389 | |
| 390 | if (off >= 0) { |
| 391 | off = fdt_setprop_cell(blob, off, "clock-frequency", freq); |
| 392 | if (off > 0) |
| 393 | printf("WARNING enable to set clock-frequency " |
Kumar Gala | 1b942f7 | 2010-07-10 06:38:16 -0500 | [diff] [blame] | 394 | "for %s: %s\n", compat, fdt_strerror(off)); |
Kumar Gala | bcad21f | 2009-03-19 02:46:28 -0500 | [diff] [blame] | 395 | } |
| 396 | } |
Kumar Gala | e2d0f25 | 2011-07-31 12:55:39 -0500 | [diff] [blame] | 397 | #endif |
Kumar Gala | bcad21f | 2009-03-19 02:46:28 -0500 | [diff] [blame] | 398 | |
| 399 | static void ft_fixup_dpaa_clks(void *blob) |
| 400 | { |
| 401 | sys_info_t sysinfo; |
| 402 | |
| 403 | get_sys_info(&sysinfo); |
Kumar Gala | e2d0f25 | 2011-07-31 12:55:39 -0500 | [diff] [blame] | 404 | #ifdef CONFIG_SYS_DPAA_FMAN |
Kumar Gala | 1b942f7 | 2010-07-10 06:38:16 -0500 | [diff] [blame] | 405 | ft_fixup_clks(blob, "fsl,fman", CONFIG_SYS_FSL_FM1_OFFSET, |
Prabhakar Kushwaha | 997399f | 2013-08-16 14:52:26 +0530 | [diff] [blame] | 406 | sysinfo.freq_fman[0]); |
Kumar Gala | bcad21f | 2009-03-19 02:46:28 -0500 | [diff] [blame] | 407 | |
| 408 | #if (CONFIG_SYS_NUM_FMAN == 2) |
Kumar Gala | 1b942f7 | 2010-07-10 06:38:16 -0500 | [diff] [blame] | 409 | ft_fixup_clks(blob, "fsl,fman", CONFIG_SYS_FSL_FM2_OFFSET, |
Prabhakar Kushwaha | 997399f | 2013-08-16 14:52:26 +0530 | [diff] [blame] | 410 | sysinfo.freq_fman[1]); |
Kumar Gala | bcad21f | 2009-03-19 02:46:28 -0500 | [diff] [blame] | 411 | #endif |
Kumar Gala | e2d0f25 | 2011-07-31 12:55:39 -0500 | [diff] [blame] | 412 | #endif |
Kumar Gala | bcad21f | 2009-03-19 02:46:28 -0500 | [diff] [blame] | 413 | |
Haiying Wang | 990e1a8 | 2012-10-11 07:13:39 +0000 | [diff] [blame] | 414 | #ifdef CONFIG_SYS_DPAA_QBMAN |
| 415 | do_fixup_by_compat_u32(blob, "fsl,qman", |
Prabhakar Kushwaha | 997399f | 2013-08-16 14:52:26 +0530 | [diff] [blame] | 416 | "clock-frequency", sysinfo.freq_qman, 1); |
Haiying Wang | 990e1a8 | 2012-10-11 07:13:39 +0000 | [diff] [blame] | 417 | #endif |
| 418 | |
Kumar Gala | bcad21f | 2009-03-19 02:46:28 -0500 | [diff] [blame] | 419 | #ifdef CONFIG_SYS_DPAA_PME |
Kumar Gala | 1b942f7 | 2010-07-10 06:38:16 -0500 | [diff] [blame] | 420 | do_fixup_by_compat_u32(blob, "fsl,pme", |
Prabhakar Kushwaha | 997399f | 2013-08-16 14:52:26 +0530 | [diff] [blame] | 421 | "clock-frequency", sysinfo.freq_pme, 1); |
Kumar Gala | bcad21f | 2009-03-19 02:46:28 -0500 | [diff] [blame] | 422 | #endif |
| 423 | } |
| 424 | #else |
| 425 | #define ft_fixup_dpaa_clks(x) |
| 426 | #endif |
| 427 | |
Liu Yu | 46df64f | 2010-01-15 14:58:40 +0800 | [diff] [blame] | 428 | #ifdef CONFIG_QE |
| 429 | static void ft_fixup_qe_snum(void *blob) |
| 430 | { |
| 431 | unsigned int svr; |
| 432 | |
| 433 | svr = mfspr(SPRN_SVR); |
York Sun | 48f6a5c | 2012-07-06 17:10:33 -0500 | [diff] [blame] | 434 | if (SVR_SOC_VER(svr) == SVR_8569) { |
Liu Yu | 46df64f | 2010-01-15 14:58:40 +0800 | [diff] [blame] | 435 | if(IS_SVR_REV(svr, 1, 0)) |
| 436 | do_fixup_by_compat_u32(blob, "fsl,qe", |
| 437 | "fsl,qe-num-snums", 46, 1); |
| 438 | else |
| 439 | do_fixup_by_compat_u32(blob, "fsl,qe", |
| 440 | "fsl,qe-num-snums", 76, 1); |
| 441 | } |
| 442 | } |
| 443 | #endif |
| 444 | |
Timur Tabi | ffadc44 | 2011-05-03 13:35:11 -0500 | [diff] [blame] | 445 | /** |
| 446 | * fdt_fixup_fman_firmware -- insert the Fman firmware into the device tree |
| 447 | * |
| 448 | * The binding for an Fman firmware node is documented in |
| 449 | * Documentation/powerpc/dts-bindings/fsl/dpaa/fman.txt. This node contains |
| 450 | * the actual Fman firmware binary data. The operating system is expected to |
| 451 | * be able to parse the binary data to determine any attributes it needs. |
| 452 | */ |
| 453 | #ifdef CONFIG_SYS_DPAA_FMAN |
| 454 | void fdt_fixup_fman_firmware(void *blob) |
| 455 | { |
| 456 | int rc, fmnode, fwnode = -1; |
| 457 | uint32_t phandle; |
| 458 | struct qe_firmware *fmanfw; |
| 459 | const struct qe_header *hdr; |
| 460 | unsigned int length; |
| 461 | uint32_t crc; |
| 462 | const char *p; |
| 463 | |
| 464 | /* The first Fman we find will contain the actual firmware. */ |
| 465 | fmnode = fdt_node_offset_by_compatible(blob, -1, "fsl,fman"); |
| 466 | if (fmnode < 0) |
| 467 | /* Exit silently if there are no Fman devices */ |
| 468 | return; |
| 469 | |
| 470 | /* If we already have a firmware node, then also exit silently. */ |
| 471 | if (fdt_node_offset_by_compatible(blob, -1, "fsl,fman-firmware") > 0) |
| 472 | return; |
| 473 | |
| 474 | /* If the environment variable is not set, then exit silently */ |
| 475 | p = getenv("fman_ucode"); |
| 476 | if (!p) |
| 477 | return; |
| 478 | |
Николай Пузанов | e6394e9 | 2013-06-19 11:48:44 +0400 | [diff] [blame] | 479 | fmanfw = (struct qe_firmware *) simple_strtoul(p, NULL, 16); |
Timur Tabi | ffadc44 | 2011-05-03 13:35:11 -0500 | [diff] [blame] | 480 | if (!fmanfw) |
| 481 | return; |
| 482 | |
| 483 | hdr = &fmanfw->header; |
| 484 | length = be32_to_cpu(hdr->length); |
| 485 | |
| 486 | /* Verify the firmware. */ |
| 487 | if ((hdr->magic[0] != 'Q') || (hdr->magic[1] != 'E') || |
| 488 | (hdr->magic[2] != 'F')) { |
| 489 | printf("Data at %p is not an Fman firmware\n", fmanfw); |
| 490 | return; |
| 491 | } |
| 492 | |
Timur Tabi | f2717b4 | 2011-11-22 09:21:25 -0600 | [diff] [blame] | 493 | if (length > CONFIG_SYS_QE_FMAN_FW_LENGTH) { |
Timur Tabi | ffadc44 | 2011-05-03 13:35:11 -0500 | [diff] [blame] | 494 | printf("Fman firmware at %p is too large (size=%u)\n", |
| 495 | fmanfw, length); |
| 496 | return; |
| 497 | } |
| 498 | |
| 499 | length -= sizeof(u32); /* Subtract the size of the CRC */ |
| 500 | crc = be32_to_cpu(*(u32 *)((void *)fmanfw + length)); |
| 501 | if (crc != crc32_no_comp(0, (void *)fmanfw, length)) { |
| 502 | printf("Fman firmware at %p has invalid CRC\n", fmanfw); |
| 503 | return; |
| 504 | } |
| 505 | |
| 506 | /* Increase the size of the fdt to make room for the node. */ |
| 507 | rc = fdt_increase_size(blob, fmanfw->header.length); |
| 508 | if (rc < 0) { |
| 509 | printf("Unable to make room for Fman firmware: %s\n", |
| 510 | fdt_strerror(rc)); |
| 511 | return; |
| 512 | } |
| 513 | |
| 514 | /* Create the firmware node. */ |
| 515 | fwnode = fdt_add_subnode(blob, fmnode, "fman-firmware"); |
| 516 | if (fwnode < 0) { |
| 517 | char s[64]; |
| 518 | fdt_get_path(blob, fmnode, s, sizeof(s)); |
| 519 | printf("Could not add firmware node to %s: %s\n", s, |
| 520 | fdt_strerror(fwnode)); |
| 521 | return; |
| 522 | } |
| 523 | rc = fdt_setprop_string(blob, fwnode, "compatible", "fsl,fman-firmware"); |
| 524 | if (rc < 0) { |
| 525 | char s[64]; |
| 526 | fdt_get_path(blob, fwnode, s, sizeof(s)); |
| 527 | printf("Could not add compatible property to node %s: %s\n", s, |
| 528 | fdt_strerror(rc)); |
| 529 | return; |
| 530 | } |
Timur Tabi | a2c1229 | 2011-09-20 18:24:36 -0500 | [diff] [blame] | 531 | phandle = fdt_create_phandle(blob, fwnode); |
| 532 | if (!phandle) { |
Timur Tabi | ffadc44 | 2011-05-03 13:35:11 -0500 | [diff] [blame] | 533 | char s[64]; |
| 534 | fdt_get_path(blob, fwnode, s, sizeof(s)); |
| 535 | printf("Could not add phandle property to node %s: %s\n", s, |
| 536 | fdt_strerror(rc)); |
| 537 | return; |
| 538 | } |
| 539 | rc = fdt_setprop(blob, fwnode, "fsl,firmware", fmanfw, fmanfw->header.length); |
| 540 | if (rc < 0) { |
| 541 | char s[64]; |
| 542 | fdt_get_path(blob, fwnode, s, sizeof(s)); |
| 543 | printf("Could not add firmware property to node %s: %s\n", s, |
| 544 | fdt_strerror(rc)); |
| 545 | return; |
| 546 | } |
| 547 | |
| 548 | /* Find all other Fman nodes and point them to the firmware node. */ |
| 549 | while ((fmnode = fdt_node_offset_by_compatible(blob, fmnode, "fsl,fman")) > 0) { |
| 550 | rc = fdt_setprop_cell(blob, fmnode, "fsl,firmware-phandle", phandle); |
| 551 | if (rc < 0) { |
| 552 | char s[64]; |
| 553 | fdt_get_path(blob, fmnode, s, sizeof(s)); |
| 554 | printf("Could not add pointer property to node %s: %s\n", |
| 555 | s, fdt_strerror(rc)); |
| 556 | return; |
| 557 | } |
| 558 | } |
| 559 | } |
| 560 | #else |
| 561 | #define fdt_fixup_fman_firmware(x) |
| 562 | #endif |
| 563 | |
Timur Tabi | 055ce08 | 2012-08-14 06:47:27 +0000 | [diff] [blame] | 564 | #if defined(CONFIG_PPC_P4080) |
Shengzhou Liu | f81f19f | 2011-10-14 16:26:06 +0800 | [diff] [blame] | 565 | static void fdt_fixup_usb(void *fdt) |
| 566 | { |
| 567 | ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR); |
| 568 | u32 rcwsr11 = in_be32(&gur->rcwsr[11]); |
| 569 | int off; |
| 570 | |
| 571 | off = fdt_node_offset_by_compatible(fdt, -1, "fsl,mpc85xx-usb2-mph"); |
| 572 | if ((rcwsr11 & FSL_CORENET_RCWSR11_EC1) != |
| 573 | FSL_CORENET_RCWSR11_EC1_FM1_USB1) |
| 574 | fdt_status_disabled(fdt, off); |
| 575 | |
| 576 | off = fdt_node_offset_by_compatible(fdt, -1, "fsl,mpc85xx-usb2-dr"); |
| 577 | if ((rcwsr11 & FSL_CORENET_RCWSR11_EC2) != |
| 578 | FSL_CORENET_RCWSR11_EC2_USB2) |
| 579 | fdt_status_disabled(fdt, off); |
| 580 | } |
| 581 | #else |
| 582 | #define fdt_fixup_usb(x) |
| 583 | #endif |
| 584 | |
Kumar Gala | f852ce7 | 2007-11-29 00:15:30 -0600 | [diff] [blame] | 585 | void ft_cpu_setup(void *blob, bd_t *bd) |
| 586 | { |
Haiying Wang | 2fc7eb0 | 2009-01-15 11:58:35 -0500 | [diff] [blame] | 587 | int off; |
| 588 | int val; |
Laurentiu TUDOR | 51abee6 | 2013-10-23 15:20:45 +0300 | [diff] [blame] | 589 | int len; |
Haiying Wang | 2fc7eb0 | 2009-01-15 11:58:35 -0500 | [diff] [blame] | 590 | sys_info_t sysinfo; |
| 591 | |
Kim Phillips | 6b70ffb | 2008-06-16 15:55:53 -0500 | [diff] [blame] | 592 | /* delete crypto node if not on an E-processor */ |
| 593 | if (!IS_E_PROCESSOR(get_svr())) |
| 594 | fdt_fixup_crypto_node(blob, 0); |
Vakul Garg | 5e95e2d | 2013-01-23 22:52:31 +0000 | [diff] [blame] | 595 | #if CONFIG_SYS_FSL_SEC_COMPAT >= 4 |
| 596 | else { |
| 597 | ccsr_sec_t __iomem *sec; |
| 598 | |
| 599 | sec = (void __iomem *)CONFIG_SYS_FSL_SEC_ADDR; |
| 600 | fdt_fixup_crypto_node(blob, in_be32(&sec->secvid_ms)); |
| 601 | } |
| 602 | #endif |
Kim Phillips | 6b70ffb | 2008-06-16 15:55:53 -0500 | [diff] [blame] | 603 | |
Kumar Gala | ba37aa0 | 2008-08-19 15:41:18 -0500 | [diff] [blame] | 604 | fdt_fixup_ethernet(blob); |
Andy Fleming | 0e17f02 | 2008-10-07 08:09:50 -0500 | [diff] [blame] | 605 | |
| 606 | fdt_add_enet_stashing(blob); |
Kumar Gala | f852ce7 | 2007-11-29 00:15:30 -0600 | [diff] [blame] | 607 | |
York Sun | cb93071 | 2013-06-25 11:37:41 -0700 | [diff] [blame] | 608 | #ifndef CONFIG_FSL_TBCLK_EXTRA_DIV |
| 609 | #define CONFIG_FSL_TBCLK_EXTRA_DIV 1 |
| 610 | #endif |
Kumar Gala | f852ce7 | 2007-11-29 00:15:30 -0600 | [diff] [blame] | 611 | do_fixup_by_prop_u32(blob, "device_type", "cpu", 4, |
York Sun | cb93071 | 2013-06-25 11:37:41 -0700 | [diff] [blame] | 612 | "timebase-frequency", get_tbclk() / CONFIG_FSL_TBCLK_EXTRA_DIV, |
| 613 | 1); |
Kumar Gala | f852ce7 | 2007-11-29 00:15:30 -0600 | [diff] [blame] | 614 | do_fixup_by_prop_u32(blob, "device_type", "cpu", 4, |
| 615 | "bus-frequency", bd->bi_busfreq, 1); |
Haiying Wang | 2fc7eb0 | 2009-01-15 11:58:35 -0500 | [diff] [blame] | 616 | get_sys_info(&sysinfo); |
| 617 | off = fdt_node_offset_by_prop_value(blob, -1, "device_type", "cpu", 4); |
| 618 | while (off != -FDT_ERR_NOTFOUND) { |
Laurentiu TUDOR | 51abee6 | 2013-10-23 15:20:45 +0300 | [diff] [blame] | 619 | u32 *reg = (u32 *)fdt_getprop(blob, off, "reg", &len); |
| 620 | val = cpu_to_fdt32(sysinfo.freq_processor[(*reg) / (len / 4)]); |
Haiying Wang | 2fc7eb0 | 2009-01-15 11:58:35 -0500 | [diff] [blame] | 621 | fdt_setprop(blob, off, "clock-frequency", &val, 4); |
| 622 | off = fdt_node_offset_by_prop_value(blob, off, "device_type", |
| 623 | "cpu", 4); |
| 624 | } |
Kumar Gala | f852ce7 | 2007-11-29 00:15:30 -0600 | [diff] [blame] | 625 | do_fixup_by_prop_u32(blob, "device_type", "soc", 4, |
| 626 | "bus-frequency", bd->bi_busfreq, 1); |
Trent Piepho | 58ec486 | 2008-12-03 15:16:38 -0800 | [diff] [blame] | 627 | |
| 628 | do_fixup_by_compat_u32(blob, "fsl,pq3-localbus", |
Simon Glass | 67ac13b | 2012-12-13 20:48:48 +0000 | [diff] [blame] | 629 | "bus-frequency", gd->arch.lbc_clk, 1); |
Trent Piepho | 58ec486 | 2008-12-03 15:16:38 -0800 | [diff] [blame] | 630 | do_fixup_by_compat_u32(blob, "fsl,elbc", |
Simon Glass | 67ac13b | 2012-12-13 20:48:48 +0000 | [diff] [blame] | 631 | "bus-frequency", gd->arch.lbc_clk, 1); |
Kumar Gala | f852ce7 | 2007-11-29 00:15:30 -0600 | [diff] [blame] | 632 | #ifdef CONFIG_QE |
Kumar Gala | 69018ce | 2008-01-17 08:25:45 -0600 | [diff] [blame] | 633 | ft_qe_setup(blob); |
Liu Yu | 46df64f | 2010-01-15 14:58:40 +0800 | [diff] [blame] | 634 | ft_fixup_qe_snum(blob); |
Kumar Gala | f852ce7 | 2007-11-29 00:15:30 -0600 | [diff] [blame] | 635 | #endif |
| 636 | |
Timur Tabi | ffadc44 | 2011-05-03 13:35:11 -0500 | [diff] [blame] | 637 | fdt_fixup_fman_firmware(blob); |
| 638 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 639 | #ifdef CONFIG_SYS_NS16550 |
Kumar Gala | f852ce7 | 2007-11-29 00:15:30 -0600 | [diff] [blame] | 640 | do_fixup_by_compat_u32(blob, "ns16550", |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 641 | "clock-frequency", CONFIG_SYS_NS16550_CLK, 1); |
Kumar Gala | f852ce7 | 2007-11-29 00:15:30 -0600 | [diff] [blame] | 642 | #endif |
| 643 | |
| 644 | #ifdef CONFIG_CPM2 |
| 645 | do_fixup_by_compat_u32(blob, "fsl,cpm2-scc-uart", |
| 646 | "current-speed", bd->bi_baudrate, 1); |
| 647 | |
| 648 | do_fixup_by_compat_u32(blob, "fsl,cpm2-brg", |
| 649 | "clock-frequency", bd->bi_brgfreq, 1); |
| 650 | #endif |
| 651 | |
Kumar Gala | 85f8cda | 2010-07-10 06:55:41 -0500 | [diff] [blame] | 652 | #ifdef CONFIG_FSL_CORENET |
| 653 | do_fixup_by_compat_u32(blob, "fsl,qoriq-clockgen-1.0", |
| 654 | "clock-frequency", CONFIG_SYS_CLK_FREQ, 1); |
Andy Fleming | 7dd09b5 | 2013-06-17 15:10:28 -0500 | [diff] [blame] | 655 | do_fixup_by_compat_u32(blob, "fsl,qoriq-clockgen-2.0", |
Tang Yuantian | 7b700d2 | 2013-02-28 23:24:34 +0000 | [diff] [blame] | 656 | "clock-frequency", CONFIG_SYS_CLK_FREQ, 1); |
Dongsheng.wang@freescale.com | f5c2623 | 2013-01-30 18:51:52 +0000 | [diff] [blame] | 657 | do_fixup_by_compat_u32(blob, "fsl,mpic", |
| 658 | "clock-frequency", get_bus_freq(0)/2, 1); |
| 659 | #else |
| 660 | do_fixup_by_compat_u32(blob, "fsl,mpic", |
| 661 | "clock-frequency", get_bus_freq(0), 1); |
Kumar Gala | 85f8cda | 2010-07-10 06:55:41 -0500 | [diff] [blame] | 662 | #endif |
| 663 | |
Kumar Gala | f852ce7 | 2007-11-29 00:15:30 -0600 | [diff] [blame] | 664 | fdt_fixup_memory(blob, (u64)bd->bi_memstart, (u64)bd->bi_memsize); |
Kumar Gala | ec2b74f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 665 | |
| 666 | #ifdef CONFIG_MP |
| 667 | ft_fixup_cpu(blob, (u64)bd->bi_memstart + (u64)bd->bi_memsize); |
Poonam Aggrwal | f8027f6 | 2009-09-02 19:40:36 +0530 | [diff] [blame] | 668 | ft_fixup_num_cores(blob); |
Kumar Gala | 8f3a7fa | 2010-06-09 22:33:53 -0500 | [diff] [blame] | 669 | #endif |
Kumar Gala | 730b2fc | 2008-05-29 11:22:06 -0500 | [diff] [blame] | 670 | |
| 671 | ft_fixup_cache(blob); |
Dipen Dudhat | da1cd95 | 2009-09-02 11:25:08 +0530 | [diff] [blame] | 672 | |
| 673 | #if defined(CONFIG_FSL_ESDHC) |
| 674 | fdt_fixup_esdhc(blob, bd); |
| 675 | #endif |
Kumar Gala | bcad21f | 2009-03-19 02:46:28 -0500 | [diff] [blame] | 676 | |
| 677 | ft_fixup_dpaa_clks(blob); |
Kumar Gala | db977ab | 2009-09-10 03:02:13 -0500 | [diff] [blame] | 678 | |
| 679 | #if defined(CONFIG_SYS_BMAN_MEM_PHYS) |
| 680 | fdt_portal(blob, "fsl,bman-portal", "bman-portals", |
| 681 | (u64)CONFIG_SYS_BMAN_MEM_PHYS, |
| 682 | CONFIG_SYS_BMAN_MEM_SIZE); |
Haiying Wang | 2a0ffb8 | 2011-03-01 09:30:07 -0500 | [diff] [blame] | 683 | fdt_fixup_bportals(blob); |
Kumar Gala | db977ab | 2009-09-10 03:02:13 -0500 | [diff] [blame] | 684 | #endif |
| 685 | |
| 686 | #if defined(CONFIG_SYS_QMAN_MEM_PHYS) |
| 687 | fdt_portal(blob, "fsl,qman-portal", "qman-portals", |
| 688 | (u64)CONFIG_SYS_QMAN_MEM_PHYS, |
| 689 | CONFIG_SYS_QMAN_MEM_SIZE); |
| 690 | |
| 691 | fdt_fixup_qportals(blob); |
| 692 | #endif |
Kumar Gala | a09b9b6 | 2010-12-30 12:09:53 -0600 | [diff] [blame] | 693 | |
| 694 | #ifdef CONFIG_SYS_SRIO |
| 695 | ft_srio_setup(blob); |
| 696 | #endif |
bhaskar upadhaya | f5feb5a | 2011-02-02 14:44:28 +0000 | [diff] [blame] | 697 | |
| 698 | /* |
| 699 | * system-clock = CCB clock/2 |
| 700 | * Here gd->bus_clk = CCB clock |
| 701 | * We are using the system clock as 1588 Timer reference |
| 702 | * clock source select |
| 703 | */ |
| 704 | do_fixup_by_compat_u32(blob, "fsl,gianfar-ptp-timer", |
| 705 | "timer-frequency", gd->bus_clk/2, 1); |
Bhaskar Upadhaya | 65bb8b0 | 2011-03-04 20:27:58 +0530 | [diff] [blame] | 706 | |
Jia Hongtao | 33c8753 | 2011-11-15 15:04:11 +0800 | [diff] [blame] | 707 | /* |
| 708 | * clock-freq should change to clock-frequency and |
| 709 | * flexcan-v1.0 should change to p1010-flexcan respectively |
| 710 | * in the future. |
| 711 | */ |
Bhaskar Upadhaya | 65bb8b0 | 2011-03-04 20:27:58 +0530 | [diff] [blame] | 712 | do_fixup_by_compat_u32(blob, "fsl,flexcan-v1.0", |
Jia Hongtao | 33c8753 | 2011-11-15 15:04:11 +0800 | [diff] [blame] | 713 | "clock_freq", gd->bus_clk/2, 1); |
| 714 | |
| 715 | do_fixup_by_compat_u32(blob, "fsl,flexcan-v1.0", |
| 716 | "clock-frequency", gd->bus_clk/2, 1); |
| 717 | |
| 718 | do_fixup_by_compat_u32(blob, "fsl,p1010-flexcan", |
| 719 | "clock-frequency", gd->bus_clk/2, 1); |
Shengzhou Liu | f81f19f | 2011-10-14 16:26:06 +0800 | [diff] [blame] | 720 | |
| 721 | fdt_fixup_usb(blob); |
Kumar Gala | f852ce7 | 2007-11-29 00:15:30 -0600 | [diff] [blame] | 722 | } |
Timur Tabi | 90f89f0 | 2011-05-03 13:24:08 -0500 | [diff] [blame] | 723 | |
| 724 | /* |
| 725 | * For some CCSR devices, we only have the virtual address, not the physical |
| 726 | * address. This is because we map CCSR as a whole, so we typically don't need |
| 727 | * a macro for the physical address of any device within CCSR. In this case, |
| 728 | * we calculate the physical address of that device using it's the difference |
| 729 | * between the virtual address of the device and the virtual address of the |
| 730 | * beginning of CCSR. |
| 731 | */ |
| 732 | #define CCSR_VIRT_TO_PHYS(x) \ |
| 733 | (CONFIG_SYS_CCSRBAR_PHYS + ((x) - CONFIG_SYS_CCSRBAR)) |
| 734 | |
Timur Tabi | cc15df5 | 2011-11-16 13:28:34 -0600 | [diff] [blame] | 735 | static void msg(const char *name, uint64_t uaddr, uint64_t daddr) |
| 736 | { |
| 737 | printf("Warning: U-Boot configured %s at address %llx,\n" |
| 738 | "but the device tree has it at %llx\n", name, uaddr, daddr); |
| 739 | } |
| 740 | |
Timur Tabi | 90f89f0 | 2011-05-03 13:24:08 -0500 | [diff] [blame] | 741 | /* |
| 742 | * Verify the device tree |
| 743 | * |
| 744 | * This function compares several CONFIG_xxx macros that contain physical |
| 745 | * addresses with the corresponding nodes in the device tree, to see if |
| 746 | * the physical addresses are all correct. For example, if |
| 747 | * CONFIG_SYS_NS16550_COM1 is defined, then it contains the virtual address |
| 748 | * of the first UART. We convert this to a physical address and compare |
| 749 | * that with the physical address of the first ns16550-compatible node |
| 750 | * in the device tree. If they don't match, then we display a warning. |
| 751 | * |
| 752 | * Returns 1 on success, 0 on failure |
| 753 | */ |
| 754 | int ft_verify_fdt(void *fdt) |
| 755 | { |
Timur Tabi | cc15df5 | 2011-11-16 13:28:34 -0600 | [diff] [blame] | 756 | uint64_t addr = 0; |
Timur Tabi | 90f89f0 | 2011-05-03 13:24:08 -0500 | [diff] [blame] | 757 | int aliases; |
| 758 | int off; |
| 759 | |
| 760 | /* First check the CCSR base address */ |
| 761 | off = fdt_node_offset_by_prop_value(fdt, -1, "device_type", "soc", 4); |
| 762 | if (off > 0) |
Timur Tabi | cc15df5 | 2011-11-16 13:28:34 -0600 | [diff] [blame] | 763 | addr = fdt_get_base_address(fdt, off); |
Timur Tabi | 90f89f0 | 2011-05-03 13:24:08 -0500 | [diff] [blame] | 764 | |
Timur Tabi | cc15df5 | 2011-11-16 13:28:34 -0600 | [diff] [blame] | 765 | if (!addr) { |
Timur Tabi | 90f89f0 | 2011-05-03 13:24:08 -0500 | [diff] [blame] | 766 | printf("Warning: could not determine base CCSR address in " |
| 767 | "device tree\n"); |
| 768 | /* No point in checking anything else */ |
| 769 | return 0; |
| 770 | } |
| 771 | |
Timur Tabi | cc15df5 | 2011-11-16 13:28:34 -0600 | [diff] [blame] | 772 | if (addr != CONFIG_SYS_CCSRBAR_PHYS) { |
| 773 | msg("CCSR", CONFIG_SYS_CCSRBAR_PHYS, addr); |
Timur Tabi | 90f89f0 | 2011-05-03 13:24:08 -0500 | [diff] [blame] | 774 | /* No point in checking anything else */ |
| 775 | return 0; |
| 776 | } |
| 777 | |
| 778 | /* |
Timur Tabi | cc15df5 | 2011-11-16 13:28:34 -0600 | [diff] [blame] | 779 | * Check some nodes via aliases. We assume that U-Boot and the device |
| 780 | * tree enumerate the devices equally. E.g. the first serial port in |
| 781 | * U-Boot is the same as "serial0" in the device tree. |
Timur Tabi | 90f89f0 | 2011-05-03 13:24:08 -0500 | [diff] [blame] | 782 | */ |
| 783 | aliases = fdt_path_offset(fdt, "/aliases"); |
| 784 | if (aliases > 0) { |
| 785 | #ifdef CONFIG_SYS_NS16550_COM1 |
| 786 | if (!fdt_verify_alias_address(fdt, aliases, "serial0", |
| 787 | CCSR_VIRT_TO_PHYS(CONFIG_SYS_NS16550_COM1))) |
| 788 | return 0; |
| 789 | #endif |
| 790 | |
| 791 | #ifdef CONFIG_SYS_NS16550_COM2 |
| 792 | if (!fdt_verify_alias_address(fdt, aliases, "serial1", |
| 793 | CCSR_VIRT_TO_PHYS(CONFIG_SYS_NS16550_COM2))) |
| 794 | return 0; |
| 795 | #endif |
| 796 | } |
| 797 | |
Timur Tabi | cc15df5 | 2011-11-16 13:28:34 -0600 | [diff] [blame] | 798 | /* |
| 799 | * The localbus node is typically a root node, even though the lbc |
| 800 | * controller is part of CCSR. If we were to put the lbc node under |
| 801 | * the SOC node, then the 'ranges' property in the lbc node would |
| 802 | * translate through the 'ranges' property of the parent SOC node, and |
| 803 | * we don't want that. Since it's a separate node, it's possible for |
| 804 | * the 'reg' property to be wrong, so check it here. For now, we |
| 805 | * only check for "fsl,elbc" nodes. |
| 806 | */ |
| 807 | #ifdef CONFIG_SYS_LBC_ADDR |
| 808 | off = fdt_node_offset_by_compatible(fdt, -1, "fsl,elbc"); |
| 809 | if (off > 0) { |
Kim Phillips | 8aa5ec6 | 2013-01-16 14:00:11 +0000 | [diff] [blame] | 810 | const fdt32_t *reg = fdt_getprop(fdt, off, "reg", NULL); |
Timur Tabi | cc15df5 | 2011-11-16 13:28:34 -0600 | [diff] [blame] | 811 | if (reg) { |
| 812 | uint64_t uaddr = CCSR_VIRT_TO_PHYS(CONFIG_SYS_LBC_ADDR); |
| 813 | |
| 814 | addr = fdt_translate_address(fdt, off, reg); |
| 815 | if (uaddr != addr) { |
| 816 | msg("the localbus", uaddr, addr); |
| 817 | return 0; |
| 818 | } |
| 819 | } |
| 820 | } |
| 821 | #endif |
| 822 | |
Timur Tabi | 90f89f0 | 2011-05-03 13:24:08 -0500 | [diff] [blame] | 823 | return 1; |
| 824 | } |