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

Subversion Repositories aemb

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

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

/* $Id: msr.hh,v 1.4 2008-04-11 15:53:03 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_HTE = 0x10000000; ///< Hardware Threads Enable
  const int MSR_HTP = 0x20000000; ///< Hardware Thread Phase
  const int MSR_HTX = 0x40000000; ///< Hardware Threads Extension

  /**
  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() { setMSR(getMSR() | MSR_IE); }

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

  /** Enable data caches */
  inline void enableDataCache() { setMSR(getMSR() | MSR_DCE); }

  /** Disable data caches */  
  inline void disableDataCache()  { setMSR(getMSR() & ~MSR_DCE); }

  /** Enable inst caches */
  inline void enableInstCache() { setMSR(getMSR() | MSR_ICE); }

  /** Disable inst caches */  
  inline void disableInstCache()  { setMSR(getMSR() & ~MSR_ICE); }

};
#endif

/*
  $Log: not supported by cvs2svn $
  Revision 1.3  2008/04/11 12:24:12  sybreon
  added cache controls

  Revision 1.2  2008/04/11 11:48:37  sybreon
  added interrupt controls (may need to be factorised out)

  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.