CRIS v32: Move vcs_hook to machine specific directory.

These files are different for ETRAX FS and ARTPEC-3.
This commit is contained in:
Jesper Nilsson 2008-01-25 16:43:53 +01:00
parent 538380da1a
commit 09160d7cc3
2 changed files with 66 additions and 70 deletions

View file

@ -1,7 +1,8 @@
/* // $Id: vcs_hook.c,v 1.2 2003/08/12 12:01:06 starvik Exp $
* Call simulator hook. This is the part running in the //
* simulated program. // Call simulator hook. This is the part running in the
*/ // simulated program.
//
#include "vcs_hook.h" #include "vcs_hook.h"
#include <stdarg.h> #include <stdarg.h>
@ -13,14 +14,12 @@
#define HOOK_DATA(offset) ((unsigned*) HOOK_MEM_BASE_ADDR)[offset] #define HOOK_DATA(offset) ((unsigned*) HOOK_MEM_BASE_ADDR)[offset]
#define VHOOK_DATA(offset) ((volatile unsigned*) HOOK_MEM_BASE_ADDR)[offset] #define VHOOK_DATA(offset) ((volatile unsigned*) HOOK_MEM_BASE_ADDR)[offset]
#define HOOK_TRIG(funcid) \ #define HOOK_TRIG(funcid) do { *((unsigned *) HOOK_TRIG_ADDR) = funcid; } while(0)
do { \
*((unsigned *) HOOK_TRIG_ADDR) = funcid; \
} while (0)
#define HOOK_DATA_BYTE(offset) ((unsigned char*) HOOK_MEM_BASE_ADDR)[offset] #define HOOK_DATA_BYTE(offset) ((unsigned char*) HOOK_MEM_BASE_ADDR)[offset]
int hook_call(unsigned id, unsigned pcnt, ...)
{ // ------------------------------------------------------------------ hook_call
int hook_call( unsigned id, unsigned pcnt, ...) {
va_list ap; va_list ap;
unsigned i; unsigned i;
unsigned ret; unsigned ret;
@ -28,12 +27,12 @@ int hook_call(unsigned id, unsigned pcnt, ...)
PREEMPT_OFF_SAVE(); PREEMPT_OFF_SAVE();
#endif #endif
/* pass parameters */ // pass parameters
HOOK_DATA(0) = id; HOOK_DATA(0) = id;
/* Have to make hook_print_str a special case since we call with a /* Have to make hook_print_str a special case since we call with a
* parameter of byte type. Should perhaps be a separate parameter of byte type. Should perhaps be a separate
* hook_call. */ hook_call. */
if (id == hook_print_str) { if (id == hook_print_str) {
int i; int i;
@ -44,28 +43,27 @@ int hook_call(unsigned id, unsigned pcnt, ...)
va_start(ap, pcnt); va_start(ap, pcnt);
str = (char*)va_arg(ap,unsigned); str = (char*)va_arg(ap,unsigned);
for (i = 0; i != pcnt; i++) for (i=0; i!=pcnt; i++) {
HOOK_DATA_BYTE(8+i) = str[i]; HOOK_DATA_BYTE(8+i) = str[i];
}
HOOK_DATA_BYTE(8+i) = 0; /* null byte */ HOOK_DATA_BYTE(8+i) = 0; /* null byte */
} else { }
else {
va_start(ap, pcnt); va_start(ap, pcnt);
for (i = 1; i <= pcnt; i++) for( i = 1; i <= pcnt; i++ ) HOOK_DATA(i) = va_arg(ap,unsigned);
HOOK_DATA(i) = va_arg(ap, unsigned);
va_end(ap); va_end(ap);
} }
/* read from mem to make sure data has propagated to memory before // read from mem to make sure data has propagated to memory before trigging
* trigging */ *((volatile unsigned*) HOOK_MEM_BASE_ADDR);
ret = *((volatile unsigned *)HOOK_MEM_BASE_ADDR);
/* trigger hook */ // trigger hook
HOOK_TRIG(id); HOOK_TRIG(id);
/* wait for call to finish */ // wait for call to finish
while (VHOOK_DATA(0) > 0) ; while( VHOOK_DATA(0) > 0 ) {}
/* extract return value */ // extract return value
ret = VHOOK_DATA(1); ret = VHOOK_DATA(1);
@ -75,26 +73,24 @@ int hook_call(unsigned id, unsigned pcnt, ...)
return ret; return ret;
} }
unsigned hook_buf(unsigned i) unsigned
hook_buf(unsigned i)
{ {
return (HOOK_DATA(i)); return (HOOK_DATA(i));
} }
void print_str(const char *str) void print_str( const char *str ) {
{
int i; int i;
/* find null at end of string */ for (i=1; str[i]; i++); /* find null at end of string */
for (i = 1; str[i]; i++) ;
hook_call(hook_print_str, i, str); hook_call(hook_print_str, i, str);
} }
void CPU_KICK_DOG(void) // --------------------------------------------------------------- CPU_KICK_DOG
{ void CPU_KICK_DOG(void) {
(void) hook_call( hook_kick_dog, 0 ); (void) hook_call( hook_kick_dog, 0 );
} }
void CPU_WATCHDOG_TIMEOUT(unsigned t) // ------------------------------------------------------- CPU_WATCHDOG_TIMEOUT
{ void CPU_WATCHDOG_TIMEOUT( unsigned t ) {
(void) hook_call( hook_dog_timeout, 1, t ); (void) hook_call( hook_dog_timeout, 1, t );
} }

View file

@ -1,6 +1,6 @@
/* // $Id: vcs_hook.h,v 1.1 2003/08/12 12:01:06 starvik Exp $
* Call simulator hook functions //
*/ // Call simulator hook functions
#ifndef HOOK_H #ifndef HOOK_H
#define HOOK_H #define HOOK_H