aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc/platforms/85xx/p3041_ds.c
diff options
context:
space:
mode:
authorTimur Tabi <timur@freescale.com>2011-06-14 09:04:33 -0400
committerKumar Gala <galak@kernel.crashing.org>2011-06-27 09:36:19 -0400
commit14497d31e65cca73c9814a1ff373ae294aae616b (patch)
tree982eb296f2234f40c8ad8c027dbaf92a900af872 /arch/powerpc/platforms/85xx/p3041_ds.c
parent2d05c392b8403d4a1becc8babd4b44465a758b64 (diff)
powerpc/85xx: disable timebase synchronization under the hypervisor
The Freescale hypervisor does not allow guests to write to the timebase registers (virtualizing the timebase register was deemed too complicated), so don't try to synchronize the timebase registers when we're running under the hypervisor. This typically happens when kexec support is enabled. Signed-off-by: Timur Tabi <timur@freescale.com> Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/platforms/85xx/p3041_ds.c')
-rw-r--r--arch/powerpc/platforms/85xx/p3041_ds.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/arch/powerpc/platforms/85xx/p3041_ds.c b/arch/powerpc/platforms/85xx/p3041_ds.c
index 1fcd233a9167..96d99a374dcf 100644
--- a/arch/powerpc/platforms/85xx/p3041_ds.c
+++ b/arch/powerpc/platforms/85xx/p3041_ds.c
@@ -40,6 +40,9 @@
40static int __init p3041_ds_probe(void) 40static int __init p3041_ds_probe(void)
41{ 41{
42 unsigned long root = of_get_flat_dt_root(); 42 unsigned long root = of_get_flat_dt_root();
43#ifdef CONFIG_SMP
44 extern struct smp_ops_t smp_85xx_ops;
45#endif
43 46
44 if (of_flat_dt_is_compatible(root, "fsl,P3041DS")) 47 if (of_flat_dt_is_compatible(root, "fsl,P3041DS"))
45 return 1; 48 return 1;
@@ -51,6 +54,14 @@ static int __init p3041_ds_probe(void)
51 ppc_md.restart = fsl_hv_restart; 54 ppc_md.restart = fsl_hv_restart;
52 ppc_md.power_off = fsl_hv_halt; 55 ppc_md.power_off = fsl_hv_halt;
53 ppc_md.halt = fsl_hv_halt; 56 ppc_md.halt = fsl_hv_halt;
57#ifdef CONFIG_SMP
58 /*
59 * Disable the timebase sync operations because we can't write
60 * to the timebase registers under the hypervisor.
61 */
62 smp_85xx_ops.give_timebase = NULL;
63 smp_85xx_ops.take_timebase = NULL;
64#endif
54 return 1; 65 return 1;
55 } 66 }
56 67