Back to home page

LXR

 
 

    


File indexing completed on 2025-05-11 08:23:52

0001 #include <rtems.h>
0002 #include <bsp.h>
0003 #include <bsp/bootcard.h>
0004 #include <rtems/bspIo.h>
0005 #include <libcpu/io.h>
0006 #include <stdint.h>
0007 
0008 void bsp_reset( rtems_fatal_source source, rtems_fatal_code code )
0009 {
0010   (void) source;
0011   (void) code;
0012 
0013   /* Mvme5500 board reset : 2004 S. Kate Feng <feng1@bnl.gov>  */
0014   out_8((volatile uint8_t*) (BSP_MV64x60_DEV1_BASE +2), 0x80);
0015   RTEMS_UNREACHABLE();
0016 }