]> git.karo-electronics.de Git - karo-tx-uboot.git/commitdiff
mpx85xx/fdt: Add cpu-release-addr for all cores
authorMatthew McClintock <msm@freescale.com>
Thu, 19 Aug 2010 18:57:48 +0000 (13:57 -0500)
committerKumar Gala <galak@kernel.crashing.org>
Fri, 20 Aug 2010 02:20:10 +0000 (21:20 -0500)
We currently do not add a cpu-release-addr for core 0, this is needed
when we want to reset core 0 and later restart it from Linux

Signed-off-by: Matthew McClintock <msm@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
arch/powerpc/cpu/mpc85xx/fdt.c

index 8e7b827ffb9e1ed11c8a9bb343688378234d4f00..45403641cfa03eca0a805e9482eda5137a1d9df2 100644 (file)
@@ -54,18 +54,19 @@ void ft_fixup_cpu(void *blob, u64 memory_limit)
                u32 *reg = (u32 *)fdt_getprop(blob, off, "reg", 0);
 
                if (reg) {
+                       u64 val = *reg * SIZE_BOOT_ENTRY + spin_tbl_addr;
+                       val = cpu_to_fdt32(val);
                        if (*reg == id) {
-                               fdt_setprop_string(blob, off, "status", "okay");
+                               fdt_setprop_string(blob, off, "status",
+                                                               "okay");
                        } else {
-                               u64 val = *reg * SIZE_BOOT_ENTRY + spin_tbl_addr;
-                               val = cpu_to_fdt32(val);
                                fdt_setprop_string(blob, off, "status",
                                                                "disabled");
-                               fdt_setprop_string(blob, off, "enable-method",
-                                                               "spin-table");
-                               fdt_setprop(blob, off, "cpu-release-addr",
-                                               &val, sizeof(val));
                        }
+                       fdt_setprop_string(blob, off, "enable-method",
+                                                       "spin-table");
+                       fdt_setprop(blob, off, "cpu-release-addr",
+                                       &val, sizeof(val));
                } else {
                        printf ("cpu NULL\n");
                }