blob: 351e1e121f1b987b5ba66aafa675c39cc47baaee [file] [log] [blame]
yuezonghe824eb0c2024-06-27 02:32:26 -07001#include <mach/iomap.h>
2#include <linux/delay.h>
3#include <linux/io.h>
4
5
6void zx297510_restart(char core , const char *time)
7
8{
9
10
11 /* reset */
12 void __iomem *reset_reg;
13
14 reset_reg = ZX29_TOP_VA;
15
16 mdelay (600); /* wait 600 ms */
17
18 writel(0x1<<31,reset_reg);
19}