2 * misc setup functions for MPC83xx
4 * Maintainer: Kumar Gala <galak@kernel.crashing.org>
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2 of the License, or (at your
9 * option) any later version.
12 #include <linux/stddef.h>
13 #include <linux/kernel.h>
16 #include <asm/hw_irq.h>
17 #include <sysdev/fsl_soc.h>
21 static __be32 __iomem
*restart_reg_base
;
23 static int __init
mpc83xx_restart_init(void)
25 /* map reset restart_reg_baseister space */
26 restart_reg_base
= ioremap(get_immrbase() + 0x900, 0xff);
31 arch_initcall(mpc83xx_restart_init
);
33 void mpc83xx_restart(char *cmd
)
35 #define RST_OFFSET 0x00000900
36 #define RST_PROT_REG 0x00000018
37 #define RST_CTRL_REG 0x0000001c
41 if (restart_reg_base
) {
42 /* enable software reset "RSTE" */
43 out_be32(restart_reg_base
+ (RST_PROT_REG
>> 2), 0x52535445);
45 /* set software hard reset */
46 out_be32(restart_reg_base
+ (RST_CTRL_REG
>> 2), 0x2);
48 printk (KERN_EMERG
"Error: Restart registers not mapped, spinning!\n");
54 long __init
mpc83xx_time_init(void)
56 #define SPCR_OFFSET 0x00000110
57 #define SPCR_TBEN 0x00400000
58 __be32 __iomem
*spcr
= ioremap(get_immrbase() + SPCR_OFFSET
, 4);
62 out_be32(spcr
, tmp
| SPCR_TBEN
);