2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2004-10-10 21:27:30 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2004, Psyent Corporation <www.psyent.com>
|
|
|
|
* Scott McNutt <smcnutt@psyent.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2019-12-28 17:45:07 +00:00
|
|
|
#include <hang.h>
|
|
|
|
#include <asm/ptrace.h>
|
2004-10-10 21:27:30 +00:00
|
|
|
|
|
|
|
void trap_handler (struct pt_regs *regs)
|
|
|
|
{
|
|
|
|
/* Just issue warning */
|
|
|
|
printf ("\n\n*** WARNING: unimplemented trap @ %08x\n\n",
|
|
|
|
regs->reg[29] - 4);
|
|
|
|
}
|
|
|
|
|
|
|
|
void soft_emulation (struct pt_regs *regs)
|
|
|
|
{
|
|
|
|
/* TODO: Software emulation of mul/div etc. Until this is
|
|
|
|
* implemented, generate warning and hang.
|
|
|
|
*/
|
|
|
|
printf ("\n\n*** ERROR: unimplemented instruction @ %08x\n",
|
|
|
|
regs->reg[29] - 4);
|
2019-12-28 17:45:07 +00:00
|
|
|
hang();
|
2004-10-10 21:27:30 +00:00
|
|
|
}
|