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

Subversion Repositories or1k

[/] [or1k/] [tags/] [rel-0-3-0-rc3/] [or1ksim/] [pic/] [pic.c] - Diff between revs 1715 and 1748

Go to most recent revision | Show entire file | Details | Blame | View Log

Rev 1715 Rev 1748
Line 1... Line 1...
/* pic.c -- Simulation of OpenRISC 1000 programmable interrupt controller
/* pic.c -- Simulation of OpenRISC 1000 programmable interrupt controller
 
 
   Copyright (C) 1999 Damjan Lampret, lampret@opencores.org
   Copyright (C) 1999 Damjan Lampret, lampret@opencores.org
 
   Copyright (C) 2008 Embecosm Limited
 
 
 
   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
   This program is free software; you can redistribute it and/or modify it
it under the terms of the GNU General Public License as published by
   under the terms of the GNU General Public License as published by the Free
the Free Software Foundation; either version 2 of the License, or
   Software Foundation; either version 3 of the License, or (at your option)
(at your option) any later version.
   any later version.
 
 
This program 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 General Public License for more details.
 
 
 
You should have received a copy of the GNU General Public License
 
along with this program; if not, write to the Free Software
 
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
 
 
 
/* This is functional simulation of OpenRISC 1000 architectural
   This program is distributed in the hope that it will be useful, but WITHOUT
   programmable interrupt controller.
   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
*/
   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 
   more details.
 
 
#include <stdlib.h>
   You should have received a copy of the GNU General Public License along
#include <stdio.h>
   with this program.  If not, see <http://www.gnu.org/licenses/>. */
#include <string.h>
 
 
 
#include "config.h"
/* This program is commented throughout in a fashion suitable for processing
 
   with Doxygen. */
 
 
#ifdef HAVE_INTTYPES_H
 
#include <inttypes.h>
 
#endif
 
 
 
 
/* Autoconf and/or portability configuration */
 
#include "config.h"
#include "port.h"
#include "port.h"
 
 
 
/* System includes */
 
#include <stdlib.h>
 
#include <stdio.h>
 
 
 
/* Package includes */
#include "arch.h"
#include "arch.h"
#include "abstract.h"
#include "abstract.h"
#include "pic.h"
#include "pic.h"
#include "opcode/or32.h"
#include "opcode/or32.h"
#include "spr_defs.h"
#include "spr-defs.h"
#include "execute.h"
#include "execute.h"
#include "except.h"
#include "except.h"
#include "sprs.h"
#include "sprs.h"
#include "sim-config.h"
#include "sim-config.h"
#include "sched.h"
#include "sched.h"
Line 47... Line 48...
DEFAULT_DEBUG_CHANNEL(pic);
DEFAULT_DEBUG_CHANNEL(pic);
 
 
/* FIXME: This ugly hack will be removed once the bus architecture gets written
/* FIXME: This ugly hack will be removed once the bus architecture gets written
 */
 */
struct pic pic_state_int = { 1, 1 };
struct pic pic_state_int = { 1, 1 };
 
 
struct pic *pic_state = &pic_state_int;
struct pic *pic_state = &pic_state_int;
 
 
/* Reset. It initializes PIC registers. */
/* Reset. It initializes PIC registers. */
void pic_reset(void)
void
 
pic_reset (void)
{
{
  PRINTF("Resetting PIC.\n");
  PRINTF("Resetting PIC.\n");
  cpu_state.sprs[SPR_PICMR] = 0;
  cpu_state.sprs[SPR_PICMR] = 0;
  cpu_state.sprs[SPR_PICPR] = 0;
  cpu_state.sprs[SPR_PICPR] = 0;
  cpu_state.sprs[SPR_PICSR] = 0;
  cpu_state.sprs[SPR_PICSR] = 0;
}
}
 
 
/* Handles the reporting of an interrupt if it had to be delayed */
/* Handles the reporting of an interrupt if it had to be delayed */
static void pic_rep_int(void *dat)
static void
 
pic_rep_int (void *dat)
 
{
 
  if (cpu_state.sprs[SPR_PICSR])
{
{
  if(cpu_state.sprs[SPR_PICSR]) {
 
    TRACE("Delivering interrupt on cycle %lli\n", runtime.sim.cycles);
    TRACE("Delivering interrupt on cycle %lli\n", runtime.sim.cycles);
    except_handle(EXCEPT_INT, cpu_state.sprs[SPR_EEAR_BASE]);
    except_handle(EXCEPT_INT, cpu_state.sprs[SPR_EEAR_BASE]);
  }
  }
}
}
 
 
/* Called whenever interrupts get enabled */
/* Called whenever interrupts get enabled */
void pic_ints_en(void)
void
 
pic_ints_en (void)
{
{
  if((cpu_state.sprs[SPR_PICMR] & cpu_state.sprs[SPR_PICSR]))
  if((cpu_state.sprs[SPR_PICMR] & cpu_state.sprs[SPR_PICSR]))
    SCHED_ADD(pic_rep_int, NULL, 0);
    SCHED_ADD(pic_rep_int, NULL, 0);
}
}
 
 
/* Asserts interrupt to the PIC. */
/* Asserts interrupt to the PIC. */
/* WARNING: If this is called during a simulated instruction (ie. from a read/
/* WARNING: If this is called during a simulated instruction (ie. from a read/
 * write mem callback), the interrupt will be delivered after the instruction
 * write mem callback), the interrupt will be delivered after the instruction
 * has finished executeing */
 * has finished executeing */
void report_interrupt(int line)
void
 
report_interrupt (int line)
{
{
  uint32_t lmask = 1 << line;
  uint32_t lmask = 1 << line;
 
 
  /* Disable doze and sleep mode */
  /* Disable doze and sleep mode */
  cpu_state.sprs[SPR_PMR] &= ~(SPR_PMR_DME | SPR_PMR_SME);
  cpu_state.sprs[SPR_PMR] &= ~(SPR_PMR_DME | SPR_PMR_SME);
 
 
  TRACE("Asserting interrupt %d (%s).\n", line,
  TRACE("Asserting interrupt %d (%s).\n", line,
        (cpu_state.sprs[SPR_PICMR] & lmask) ? "Unmasked" : "Masked");
        (cpu_state.sprs[SPR_PICMR] & lmask) ? "Unmasked" : "Masked");
 
 
  /* If PIC is disabled, don't set any register, just raise EXCEPT_INT */
  /* If PIC is disabled, don't set any register, just raise EXCEPT_INT */
  if(!pic_state->enabled) {
  if (!config.pic.enabled)
 
    {
    if(cpu_state.sprs[SPR_SR] & SPR_SR_IEE)
    if(cpu_state.sprs[SPR_SR] & SPR_SR_IEE)
      except_handle(EXCEPT_INT, cpu_state.sprs[SPR_EEAR_BASE]);
      except_handle(EXCEPT_INT, cpu_state.sprs[SPR_EEAR_BASE]);
    return;
    return;
  }
  }
 
 
  if(cpu_state.pic_lines & lmask) {
  if (cpu_state.pic_lines & lmask)
 
    {
    /* No edge occured, warn about performance penalty and exit */
    /* No edge occured, warn about performance penalty and exit */
    WARN("Int line %d did not change state\n", line);
    WARN("Int line %d did not change state\n", line);
    return;
    return;
  }
  }
 
 
Line 110... Line 119...
    if (cpu_state.sprs[SPR_SR] & SPR_SR_IEE)
    if (cpu_state.sprs[SPR_SR] & SPR_SR_IEE)
      SCHED_ADD(pic_rep_int, NULL, 0);
      SCHED_ADD(pic_rep_int, NULL, 0);
}
}
 
 
/* Clears an int on a pic line */
/* Clears an int on a pic line */
void clear_interrupt(int line)
void
 
clear_interrupt (int line)
{
{
  TRACE("Clearing interrupt %d\n", line);
  TRACE("Clearing interrupt %d\n", line);
  cpu_state.pic_lines &= ~(1 << line);
  cpu_state.pic_lines &= ~(1 << line);
 
 
  if(!pic_state->edge_trigger)
  if (!config.pic.edge_trigger)
    cpu_state.sprs[SPR_PICSR] &= ~(1 << line);
    cpu_state.sprs[SPR_PICSR] &= ~(1 << line);
}
}
 
 
/*----------------------------------------------------[ PIC configuration ]---*/
/*----------------------------------------------------[ PIC configuration ]---*/
static void pic_enabled(union param_val val, void *dat)
 
 
 
 
/*---------------------------------------------------------------------------*/
 
/*!Enable or disable the programmable interrupt controller
 
 
 
   Set the corresponding field in the UPR
 
 
 
   @param[in] val  The value to use
 
   @param[in] dat  The config data structure (not used here)                 */
 
/*---------------------------------------------------------------------------*/
 
static void
 
pic_enabled (union param_val  val,
 
             void            *dat)
 
{
 
  if (val.int_val)
{
{
  struct pic *pic = dat;
      cpu_state.sprs[SPR_UPR] |= SPR_UPR_PICP;
  pic->enabled = val.int_val;
 
}
}
 
  else
static void pic_edge_trigger(union param_val val, void *dat)
 
{
{
  struct pic *pic = dat;
      cpu_state.sprs[SPR_UPR] &= ~SPR_UPR_PICP;
  pic->edge_trigger = val.int_val;
 
}
}
 
 
static void *pic_start_sec(void)
  config.pic.enabled = val.int_val;
 
 
 
}       /* pic_enabled() */
 
 
 
 
 
/*---------------------------------------------------------------------------*/
 
/*!Enable or disable edge triggering of interrupts
 
 
 
   @param[in] val  The value to use
 
   @param[in] dat  The config data structure (not used here)                 */
 
/*---------------------------------------------------------------------------*/
 
static void
 
pic_edge_trigger (union param_val  val,
 
                  void            *dat)
{
{
  return pic_state;
  config.pic.edge_trigger = val.int_val;
}
 
 
}       /* pic_edge_trigger() */
 
 
 
 
void reg_pic_sec(void)
/*---------------------------------------------------------------------------*/
 
/*!Initialize a new interrupt controller configuration
 
 
 
   ALL parameters are set explicitly to default values in init_defconfig()   */
 
/*---------------------------------------------------------------------------*/
 
void
 
reg_pic_sec ()
{
{
  struct config_section *sec = reg_config_sec("pic", pic_start_sec, NULL);
  struct config_section *sec = reg_config_sec ("pic", NULL, NULL);
 
 
  reg_config_param(sec, "enabled", paramt_int, pic_enabled);
  reg_config_param(sec, "enabled", paramt_int, pic_enabled);
  reg_config_param(sec, "edge_trigger", paramt_int, pic_edge_trigger);
  reg_config_param(sec, "edge_trigger", paramt_int, pic_edge_trigger);
}
 
 
}       /* reg_pic_sec() */
 
 
 No newline at end of file
 No newline at end of file

powered by: WebSVN 2.1.0

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