blob: 3a4d5e5fde5260efdc1d4132c7901b1918806ae6 [file] [log] [blame]
Russell Kingbec92b12011-11-05 11:26:32 +00001/*
2 * restart.c
3 *
4 * Copyright (C) 2001 MontaVista Software, Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10#include <asm/hardware/iop3xx.h>
David Howells9f97da72012-03-28 18:30:01 +010011#include <asm/system_misc.h>
Russell Kingbec92b12011-11-05 11:26:32 +000012#include <mach/hardware.h>
13
Robin Holt7b6d8642013-07-08 16:01:40 -070014void iop3xx_restart(enum reboot_mode mode, const char *cmd)
Russell Kingbec92b12011-11-05 11:26:32 +000015{
16 *IOP3XX_PCSR = 0x30;
17
18 /* Jump into ROM at address 0 */
19 soft_restart(0);
20}