OpenCores
URL https://opencores.org/ocsvn/aemb/aemb/trunk

Subversion Repositories aemb

[/] [aemb/] [trunk/] [sw/] [cc/] [aemb/] [msr.hh] - Rev 109

Go to most recent revision | Compare with Previous | Blame | View Log

/* $Id: msr.hh,v 1.2 2008-04-11 11:48:37 sybreon Exp $
** 
** AEMB2 HI-PERFORMANCE CPU 
** Copyright (C) 2004-2007 Shawn Tan Ser Ngiap <shawn.tan@aeste.net>
**  
** This file is part of AEMB.
**
** AEMB is free software: you can redistribute it and/or modify it
** under the terms of the GNU Lesser General Public License as
** published by the Free Software Foundation, either version 3 of the
** License, or (at your option) any later version.
**
** AEMB is distributed in the hope that it will be useful, but WITHOUT
** ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
** or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General
** Public License for more details.
**
** You should have received a copy of the GNU Lesser General Public
** License along with AEMB. If not, see <http://www.gnu.org/licenses/>.
*/

/**
   Basic MSR functions
   @file msr.hh  

   These functions provide read/write access to the Machine Status
   Register. It also contains the bit definitions of the register.
 */

#ifndef AEMB_MSR_HH
#define AEMB_MSR_HH

namespace aemb {

  const int MSR_BE  = 0x00000001; ///< Buslock Enable
  const int MSR_IE  = 0x00000002; ///< Interrupt Enable
  const int MSR_C   = 0x00000004; ///< Arithmetic Carry
  const int MSR_BIP = 0x00000008; ///< Break in Progress
    
  const int MSR_FSL = 0x00000010; ///< FSL Error
  const int MSR_ICE = 0x00000020; ///< Instruction Cache Enable
  const int MSR_DZ  = 0x00000040; ///< Division by Zero
  const int MSR_DCE = 0x00000080; ///< Data Cache Enable

  const int MSR_TXE = 0x00000100; ///< thread enable
  const int MSR_PHA = 0x00000200; ///< thread phase
  const int MSR_HTE = 0x00000400; ///< hardware thread capable

  /**
  Read the value of the MSR register
  @return register contents
  */
  
  inline int getMSR()
  {
    int rmsr;
    asm volatile ("mfs %0, rmsr":"=r"(rmsr));
    return rmsr;
  }
  
  /**
  Write a value to the MSR register
  @param rmsr value to write
  */
  
  inline void setMSR(int rmsr)
  {
    asm volatile ("mts rmsr, %0"::"r"(rmsr));
  }

  /**
  Enable global interrupts
  */
  inline void enableInterrupts()
  {
    int rmsr = getMSR();
    rmsr |= MSR_IE;
    setMSR(rmsr);
  }

  /**
  Disable global interrupts
  */
  inline void disableInterrupts()
  {
    int rmsr = getMSR();
    rmsr &= ~MSR_IE;
    setMSR(rmsr);
  }
  

};
#endif

/*
  $Log: not supported by cvs2svn $
  Revision 1.1  2008/04/09 19:48:37  sybreon
  Added new C++ files

*/

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

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