restart.c 323 B

1234567891011121314151617
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * restart.c
  4. *
  5. * Copyright (C) 2001 MontaVista Software, Inc.
  6. */
  7. #include <asm/system_misc.h>
  8. #include "hardware.h"
  9. #include "iop3xx.h"
  10. void iop3xx_restart(enum reboot_mode mode, const char *cmd)
  11. {
  12. *IOP3XX_PCSR = 0x30;
  13. /* Jump into ROM at address 0 */
  14. soft_restart(0);
  15. }