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

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [tags/] [gnu-src/] [gdb-6.8/] [pre-binutils-2.20.1-sync/] [sim/] [m32r/] [devices.c] - Diff between revs 157 and 223

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

Rev 157 Rev 223
/* m32r device support
/* m32r device support
   Copyright (C) 1997, 1998, 2007, 2008 Free Software Foundation, Inc.
   Copyright (C) 1997, 1998, 2007, 2008 Free Software Foundation, Inc.
   Contributed by Cygnus Solutions.
   Contributed by Cygnus Solutions.
 
 
This file is part of GDB, the GNU debugger.
This file is part of GDB, the GNU debugger.
 
 
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 under the terms of the GNU General Public License as published by
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
(at your option) any later version.
 
 
This program is distributed in the hope that it will be useful,
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.
GNU General Public License for more details.
 
 
You should have received a copy of the GNU General Public License
You should have received a copy of the GNU General Public License
along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
 
 
#include "sim-main.h"
#include "sim-main.h"
 
 
#ifdef HAVE_DV_SOCKSER
#ifdef HAVE_DV_SOCKSER
#include "dv-sockser.h"
#include "dv-sockser.h"
#endif
#endif
 
 
/* Handling the MSPR register is done by creating a device in the core
/* Handling the MSPR register is done by creating a device in the core
   mapping that winds up here.  */
   mapping that winds up here.  */
 
 
device m32r_devices;
device m32r_devices;
 
 
int
int
device_io_read_buffer (device *me, void *source, int space,
device_io_read_buffer (device *me, void *source, int space,
                       address_word addr, unsigned nr_bytes,
                       address_word addr, unsigned nr_bytes,
                       SIM_DESC sd, SIM_CPU *cpu, sim_cia cia)
                       SIM_DESC sd, SIM_CPU *cpu, sim_cia cia)
{
{
  if (STATE_ENVIRONMENT (sd) != OPERATING_ENVIRONMENT)
  if (STATE_ENVIRONMENT (sd) != OPERATING_ENVIRONMENT)
    return nr_bytes;
    return nr_bytes;
 
 
#ifdef HAVE_DV_SOCKSER
#ifdef HAVE_DV_SOCKSER
  if (addr == UART_INCHAR_ADDR)
  if (addr == UART_INCHAR_ADDR)
    {
    {
      int c = dv_sockser_read (sd);
      int c = dv_sockser_read (sd);
      if (c == -1)
      if (c == -1)
        return 0;
        return 0;
      *(char *) source = c;
      *(char *) source = c;
      return 1;
      return 1;
    }
    }
  if (addr == UART_STATUS_ADDR)
  if (addr == UART_STATUS_ADDR)
    {
    {
      int status = dv_sockser_status (sd);
      int status = dv_sockser_status (sd);
      unsigned char *p = source;
      unsigned char *p = source;
      p[0] = 0;
      p[0] = 0;
      p[1] = (((status & DV_SOCKSER_INPUT_EMPTY)
      p[1] = (((status & DV_SOCKSER_INPUT_EMPTY)
#ifdef UART_INPUT_READY0
#ifdef UART_INPUT_READY0
               ? UART_INPUT_READY : 0)
               ? UART_INPUT_READY : 0)
#else
#else
               ? 0 : UART_INPUT_READY)
               ? 0 : UART_INPUT_READY)
#endif
#endif
              + ((status & DV_SOCKSER_OUTPUT_EMPTY) ? UART_OUTPUT_READY : 0));
              + ((status & DV_SOCKSER_OUTPUT_EMPTY) ? UART_OUTPUT_READY : 0));
      return 2;
      return 2;
    }
    }
#endif
#endif
 
 
  return nr_bytes;
  return nr_bytes;
}
}
 
 
int
int
device_io_write_buffer (device *me, const void *source, int space,
device_io_write_buffer (device *me, const void *source, int space,
                        address_word addr, unsigned nr_bytes,
                        address_word addr, unsigned nr_bytes,
                        SIM_DESC sd, SIM_CPU *cpu, sim_cia cia)
                        SIM_DESC sd, SIM_CPU *cpu, sim_cia cia)
{
{
#if WITH_SCACHE
#if WITH_SCACHE
  /* MSPR support is deprecated but is kept in for upward compatibility
  /* MSPR support is deprecated but is kept in for upward compatibility
     with existing overlay support.  */
     with existing overlay support.  */
  if (addr == MSPR_ADDR)
  if (addr == MSPR_ADDR)
    {
    {
      if ((*(const char *) source & MSPR_PURGE) != 0)
      if ((*(const char *) source & MSPR_PURGE) != 0)
        scache_flush (sd);
        scache_flush (sd);
      return nr_bytes;
      return nr_bytes;
    }
    }
  if (addr == MCCR_ADDR)
  if (addr == MCCR_ADDR)
    {
    {
      if ((*(const char *) source & MCCR_CP) != 0)
      if ((*(const char *) source & MCCR_CP) != 0)
        scache_flush (sd);
        scache_flush (sd);
      return nr_bytes;
      return nr_bytes;
    }
    }
#endif
#endif
 
 
  if (STATE_ENVIRONMENT (sd) != OPERATING_ENVIRONMENT)
  if (STATE_ENVIRONMENT (sd) != OPERATING_ENVIRONMENT)
    return nr_bytes;
    return nr_bytes;
 
 
#ifdef HAVE_DV_SOCKSER
#ifdef HAVE_DV_SOCKSER
  if (addr == UART_OUTCHAR_ADDR)
  if (addr == UART_OUTCHAR_ADDR)
    {
    {
      int rc = dv_sockser_write (sd, *(char *) source);
      int rc = dv_sockser_write (sd, *(char *) source);
      return rc == 1;
      return rc == 1;
    }
    }
#endif
#endif
 
 
  return nr_bytes;
  return nr_bytes;
}
}
 
 
void
void
device_error (device *me, char *message, ...)
device_error (device *me, char *message, ...)
{
{
}
}
 
 

powered by: WebSVN 2.1.0

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