[PATCH] Fix e500 v2 core reboot bug
Kumar Gala
galak at kernel.crashing.org
Thu Mar 8 05:34:53 EST 2007
On Mar 7, 2007, at 12:22 PM, Jon Loeliger wrote:
> From: Roy Zang <tie-fei.zang at freescale.com>
>
> For e500 v2 core, a new reset control register is added.
>
> Signed-off-by: Roy Zang <tie-fei.zang at freescale.com>
> Acked-by: Jon Loeliger <jdl at freescale.com>
Nack. See comments below.
- k
> ---
> arch/powerpc/platforms/85xx/misc.c | 10 ++++++++++
> 1 files changed, 10 insertions(+), 0 deletions(-)
>
> diff --git a/arch/powerpc/platforms/85xx/misc.c b/arch/powerpc/
> platforms/85xx/misc.c
> index 3e62fcb..9fcbf56 100644
> --- a/arch/powerpc/platforms/85xx/misc.c
> +++ b/arch/powerpc/platforms/85xx/misc.c
> @@ -13,11 +13,21 @@
> #include <linux/irq.h>
> #include <linux/module.h>
> #include <asm/irq.h>
> +#include <asm/io.h>
> +#include <sysdev/fsl_soc.h>
>
> extern void abort(void);
>
> void mpc85xx_restart(char *cmd)
> {
> + unsigned int pvr;
> +
> + pvr = mfspr(SPRN_PVR);
> + if ((pvr >> 16) & 0x1){
Testing the PVR isn't proper.. you are using a system feature that
has nothing to do with the core revision.
Maybe add an attribute in the soc node for this?
> + u32 __iomem *rstcr;
> + rstcr = ioremap(get_immrbase() + 0xE00B0, 0x100);
You can't do the ioremap here, this my get called from interrupt
context.. See 83xx/misc.c for a slightly better example. The
unprotected arch_initcall is still an issue on 83xx.
> + *rstcr = 0x2; /* HRESET_REQ */
we should be using out_be32()
> + }
> local_irq_disable();
> abort();
> }
More information about the Linuxppc-dev
mailing list