OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [tags/] [or1ksim/] [or1ksim-0.4.0rc1/] [testsuite/] [test-code-or1k/] [upcalls/] [upcall-basic.c] - Diff between revs 93 and 105

Only display areas with differences | Details | Blame | View Log

Rev 93 Rev 105
/* upcall-basic.c. Test of Or1ksim basic handling of upcalls
/* upcall-basic.c. Test of Or1ksim basic handling of upcalls
 
 
   Copyright (C) 2010 Embecosm Limited
   Copyright (C) 2010 Embecosm Limited
 
 
   Contributors various OpenCores participants
   Contributors various OpenCores participants
   Contributor Jeremy Bennett <jeremy.bennett@embecosm.com>
   Contributor Jeremy Bennett <jeremy.bennett@embecosm.com>
 
 
   This file is part of OpenRISC 1000 Architectural Simulator.
   This file is part of OpenRISC 1000 Architectural Simulator.
 
 
   This program is free software; you can redistribute it and/or modify it
   This program is free software; you can redistribute it and/or modify it
   under the terms of the GNU General Public License as published by the Free
   under the terms of the GNU General Public License as published by the Free
   Software Foundation; either version 3 of the License, or (at your option)
   Software Foundation; either version 3 of the License, or (at your option)
   any later version.
   any later version.
 
 
   This program is distributed in the hope that it will be useful, but WITHOUT
   This program is distributed in the hope that it will be useful, but WITHOUT
   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
   more details.
   more details.
 
 
   You should have received a copy of the GNU General Public License along
   You should have received a copy of the GNU General Public License along
   with this program.  If not, see <http:  www.gnu.org/licenses/>.  */
   with this program.  If not, see <http:  www.gnu.org/licenses/>.  */
 
 
/* ----------------------------------------------------------------------------
/* ----------------------------------------------------------------------------
   This code is commented throughout for use with Doxygen.
   This code is commented throughout for use with Doxygen.
   --------------------------------------------------------------------------*/
   --------------------------------------------------------------------------*/
 
 
#include "support.h"
#include "support.h"
#include "spr-defs.h"
#include "spr-defs.h"
#include "board.h"
#include "board.h"
 
 
 
 
/*!Alignment exception handler defined here. */
/*!Alignment exception handler defined here. */
unsigned long excpt_align;
unsigned long excpt_align;
 
 
 
 
/* --------------------------------------------------------------------------*/
/* --------------------------------------------------------------------------*/
/*!Write a memory mapped byte register
/*!Write a memory mapped byte register
 
 
   @param[in] addr   Memory mapped address
   @param[in] addr   Memory mapped address
   @param[in] value  Value to set                                            */
   @param[in] value  Value to set                                            */
/* --------------------------------------------------------------------------*/
/* --------------------------------------------------------------------------*/
static void
static void
setreg8 (unsigned long int  addr,
setreg8 (unsigned long int  addr,
         unsigned char      value)
         unsigned char      value)
{
{
  *((volatile unsigned char *) addr) = value;
  *((volatile unsigned char *) addr) = value;
  printf ("Wrote byte at 0x%08lx = 0x%02x.\n", addr, value);
  printf ("Wrote byte at 0x%08lx = 0x%02x.\n", addr, value);
 
 
}       /* setreg8 () */
}       /* setreg8 () */
 
 
 
 
/* --------------------------------------------------------------------------*/
/* --------------------------------------------------------------------------*/
/*!Write a memory mapped half word register
/*!Write a memory mapped half word register
 
 
   @param[in] addr   Memory mapped address
   @param[in] addr   Memory mapped address
   @param[in] value  Value to set                                            */
   @param[in] value  Value to set                                            */
/* --------------------------------------------------------------------------*/
/* --------------------------------------------------------------------------*/
static void
static void
setreg16 (unsigned long int   addr,
setreg16 (unsigned long int   addr,
          unsigned short int  value)
          unsigned short int  value)
{
{
  *((volatile unsigned short int *) addr) = value;
  *((volatile unsigned short int *) addr) = value;
  printf ("Wrote half word at 0x%08lx = 0x%04x.\n", addr, value);
  printf ("Wrote half word at 0x%08lx = 0x%04x.\n", addr, value);
 
 
}       /* setreg16 () */
}       /* setreg16 () */
 
 
 
 
/* --------------------------------------------------------------------------*/
/* --------------------------------------------------------------------------*/
/*!Write a memory mapped full word register
/*!Write a memory mapped full word register
 
 
   @param[in] addr   Memory mapped address
   @param[in] addr   Memory mapped address
   @param[in] value  Value to set                                            */
   @param[in] value  Value to set                                            */
/* --------------------------------------------------------------------------*/
/* --------------------------------------------------------------------------*/
static void
static void
setreg32 (unsigned long int  addr,
setreg32 (unsigned long int  addr,
          unsigned long int  value)
          unsigned long int  value)
{
{
  *((volatile unsigned long int *) addr) = value;
  *((volatile unsigned long int *) addr) = value;
  printf ("Wrote full word at 0x%08lx = 0x%08lx.\n", addr, value);
  printf ("Wrote full word at 0x%08lx = 0x%08lx.\n", addr, value);
 
 
}       /* setreg32 () */
}       /* setreg32 () */
 
 
 
 
/* --------------------------------------------------------------------------*/
/* --------------------------------------------------------------------------*/
/*!Read a memory mapped byte register
/*!Read a memory mapped byte register
 
 
   @param[in] addr   Memory mapped address
   @param[in] addr   Memory mapped address
 
 
   @return  Value read                                                       */
   @return  Value read                                                       */
/* --------------------------------------------------------------------------*/
/* --------------------------------------------------------------------------*/
unsigned char
unsigned char
getreg8 (unsigned long int  addr)
getreg8 (unsigned long int  addr)
{
{
  unsigned char  res = *((volatile unsigned char *) addr);
  unsigned char  res = *((volatile unsigned char *) addr);
  printf ("Read byte at 0x%08lx = 0x%02x.\n", addr, res);
  printf ("Read byte at 0x%08lx = 0x%02x.\n", addr, res);
  return  res;
  return  res;
 
 
}       /* getreg8 () */
}       /* getreg8 () */
 
 
 
 
/* --------------------------------------------------------------------------*/
/* --------------------------------------------------------------------------*/
/*!Read a memory mapped half word register
/*!Read a memory mapped half word register
 
 
   @param[in] addr   Memory mapped address
   @param[in] addr   Memory mapped address
 
 
   @return  Value read                                                       */
   @return  Value read                                                       */
/* --------------------------------------------------------------------------*/
/* --------------------------------------------------------------------------*/
unsigned short int
unsigned short int
getreg16 (unsigned long int  addr)
getreg16 (unsigned long int  addr)
{
{
  unsigned short int  res = *((volatile unsigned short int *) addr);
  unsigned short int  res = *((volatile unsigned short int *) addr);
  printf ("Read half word at 0x%08lx = 0x%04x.\n", addr, res);
  printf ("Read half word at 0x%08lx = 0x%04x.\n", addr, res);
  return  res;
  return  res;
 
 
}       /* getreg16 () */
}       /* getreg16 () */
 
 
 
 
/* --------------------------------------------------------------------------*/
/* --------------------------------------------------------------------------*/
/*!Read a memory mapped full word register
/*!Read a memory mapped full word register
 
 
   @param[in] addr   Memory mapped address
   @param[in] addr   Memory mapped address
 
 
   @return  Value read                                                       */
   @return  Value read                                                       */
/* --------------------------------------------------------------------------*/
/* --------------------------------------------------------------------------*/
unsigned long int
unsigned long int
getreg32 (unsigned long int  addr)
getreg32 (unsigned long int  addr)
{
{
  unsigned long int  res = *((volatile unsigned long int *) addr);
  unsigned long int  res = *((volatile unsigned long int *) addr);
  printf ("Read full word at 0x%08lx = 0x%08lx.\n", addr, res);
  printf ("Read full word at 0x%08lx = 0x%08lx.\n", addr, res);
  return  res;
  return  res;
 
 
}       /* getreg32 () */
}       /* getreg32 () */
 
 
 
 
/* --------------------------------------------------------------------------*/
/* --------------------------------------------------------------------------*/
/*! Exception handler for misalignment.
/*! Exception handler for misalignment.
 
 
  Notes what has happened.                                                   */
  Notes what has happened.                                                   */
/* --------------------------------------------------------------------------*/
/* --------------------------------------------------------------------------*/
void align_handler (void)
void align_handler (void)
{
{
  printf ("Misaligned access.\n");
  printf ("Misaligned access.\n");
 
 
}       /* align_handler () */
}       /* align_handler () */
 
 
 
 
/* --------------------------------------------------------------------------*/
/* --------------------------------------------------------------------------*/
/*!Main program to read and write memory mapped registers
/*!Main program to read and write memory mapped registers
 
 
   All these calls should be correctly aligned, but we set an handler, just in
   All these calls should be correctly aligned, but we set an handler, just in
   case.
   case.
 
 
   @return  The return code from the program (always zero).                  */
   @return  The return code from the program (always zero).                  */
/* --------------------------------------------------------------------------*/
/* --------------------------------------------------------------------------*/
int
int
main ()
main ()
{
{
  /* Set the exception handler */
  /* Set the exception handler */
  printf ("Setting alignment exception handler.\n");
  printf ("Setting alignment exception handler.\n");
  excpt_align = (unsigned long)align_handler;
  excpt_align = (unsigned long)align_handler;
 
 
  /* Write some registers */
  /* Write some registers */
  printf ("Writing registers.\n");
  printf ("Writing registers.\n");
 
 
  /* Byte aligned */
  /* Byte aligned */
  setreg8 (GENERIC_BASE,     0xde);
  setreg8 (GENERIC_BASE,     0xde);
  setreg8 (GENERIC_BASE + 1, 0xad);
  setreg8 (GENERIC_BASE + 1, 0xad);
  setreg8 (GENERIC_BASE + 2, 0xbe);
  setreg8 (GENERIC_BASE + 2, 0xbe);
  setreg8 (GENERIC_BASE + 3, 0xef);
  setreg8 (GENERIC_BASE + 3, 0xef);
 
 
  /* Half word aligned */
  /* Half word aligned */
  setreg16 (GENERIC_BASE + 4, 0xbaad);
  setreg16 (GENERIC_BASE + 4, 0xbaad);
  setreg16 (GENERIC_BASE + 6, 0xf00d);
  setreg16 (GENERIC_BASE + 6, 0xf00d);
 
 
  /* Full word aligned */
  /* Full word aligned */
  setreg32 (GENERIC_BASE + 8, 0xcafebabe);
  setreg32 (GENERIC_BASE + 8, 0xcafebabe);
 
 
  /* Read some registers, but mix up which size from where. */
  /* Read some registers, but mix up which size from where. */
  printf ("Reading registers.\n");
  printf ("Reading registers.\n");
 
 
  /* Full word aligned */
  /* Full word aligned */
  (void)getreg32 (GENERIC_BASE + 0);
  (void)getreg32 (GENERIC_BASE + 0);
 
 
  /* Byte aligned */
  /* Byte aligned */
  (void)getreg8 (GENERIC_BASE + 4);
  (void)getreg8 (GENERIC_BASE + 4);
  (void)getreg8 (GENERIC_BASE + 5);
  (void)getreg8 (GENERIC_BASE + 5);
  (void)getreg8 (GENERIC_BASE + 6);
  (void)getreg8 (GENERIC_BASE + 6);
  (void)getreg8 (GENERIC_BASE + 7);
  (void)getreg8 (GENERIC_BASE + 7);
 
 
  /* Half word aligned */
  /* Half word aligned */
  (void)getreg16 (GENERIC_BASE +  8);
  (void)getreg16 (GENERIC_BASE +  8);
  (void)getreg16 (GENERIC_BASE + 10);
  (void)getreg16 (GENERIC_BASE + 10);
 
 
  /* All done */
  /* All done */
  printf ("All done.\n");
  printf ("All done.\n");
  report (0xdeaddead);
  report (0xdeaddead);
  return 0;
  return 0;
 
 
}       /* main () */
}       /* main () */
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.