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

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [tags/] [gdb/] [gdb-6.8/] [gdb-6.8.openrisc-2.1/] [sim/] [ppc/] [hw_trace.c] - Diff between revs 24 and 33

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

Rev 24 Rev 33
/*  This file is part of the program psim.
/*  This file is part of the program psim.
 
 
    Copyright (C) 1994-1996, Andrew Cagney <cagney@highland.com.au>
    Copyright (C) 1994-1996, Andrew Cagney <cagney@highland.com.au>
 
 
    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 2 of the License, or
    the Free Software Foundation; either version 2 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, write to the Free Software
    along with this program; if not, write to the Free Software
    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
 
    */
    */
 
 
 
 
#ifndef _HW_TRACE_C_
#ifndef _HW_TRACE_C_
#define _HW_TRACE_C_
#define _HW_TRACE_C_
 
 
#include "device_table.h"
#include "device_table.h"
#include <stdarg.h>
#include <stdarg.h>
 
 
/* DEVICE
/* DEVICE
 
 
   trace - the properties of this dummy device specify trace options
   trace - the properties of this dummy device specify trace options
 
 
   DESCRIPTION
   DESCRIPTION
 
 
   The properties of this device are used, during initialization, to
   The properties of this device are used, during initialization, to
   specify the value various simulation trace options.  The
   specify the value various simulation trace options.  The
   initialization can occure implicitly (during device tree init) or
   initialization can occure implicitly (during device tree init) or
   explicitly using this devices ioctl method.
   explicitly using this devices ioctl method.
 
 
   The actual options and their default values (for a given target)
   The actual options and their default values (for a given target)
   are defined in the file debug.
   are defined in the file debug.
 
 
   This device is normally a child of the /openprom node.
   This device is normally a child of the /openprom node.
 
 
   EXAMPLE
   EXAMPLE
 
 
   The trace option dump-device-tree can be enabled by specifying the
   The trace option dump-device-tree can be enabled by specifying the
   option:
   option:
 
 
   |    -o '/openprom/trace/dump-device-tree 0x1'
   |    -o '/openprom/trace/dump-device-tree 0x1'
 
 
   Alternativly the shorthand version:
   Alternativly the shorthand version:
 
 
   |    -t dump-device-tree
   |    -t dump-device-tree
 
 
   can be used. */
   can be used. */
 
 
 
 
/* Hook to allow the initialization of the trace options at any time */
/* Hook to allow the initialization of the trace options at any time */
 
 
static int
static int
hw_trace_ioctl(device *me,
hw_trace_ioctl(device *me,
               cpu *processor,
               cpu *processor,
               unsigned_word cia,
               unsigned_word cia,
               device_ioctl_request request,
               device_ioctl_request request,
               va_list ap)
               va_list ap)
{
{
  switch (request) {
  switch (request) {
  case device_ioctl_set_trace:
  case device_ioctl_set_trace:
    {
    {
      const device_property *prop = device_find_property(me, NULL);
      const device_property *prop = device_find_property(me, NULL);
      while (prop != NULL) {
      while (prop != NULL) {
        const char *name = prop->name;
        const char *name = prop->name;
        unsigned32 value = device_find_integer_property(me, name);
        unsigned32 value = device_find_integer_property(me, name);
        trace_option(name, value);
        trace_option(name, value);
        prop = device_next_property(prop);
        prop = device_next_property(prop);
      }
      }
    }
    }
    break;
    break;
  default:
  default:
    device_error(me, "insupported ioctl request");
    device_error(me, "insupported ioctl request");
    break;
    break;
  }
  }
  return 0;
  return 0;
}
}
 
 
 
 
static device_callbacks const hw_trace_callbacks = {
static device_callbacks const hw_trace_callbacks = {
  { NULL, }, /* init */
  { NULL, }, /* init */
  { NULL, }, /* address */
  { NULL, }, /* address */
  { NULL, }, /* IO */
  { NULL, }, /* IO */
  { NULL, }, /* DMA */
  { NULL, }, /* DMA */
  { NULL, }, /* interrupt */
  { NULL, }, /* interrupt */
  { NULL, }, /* unit */
  { NULL, }, /* unit */
  NULL, /* instance-create */
  NULL, /* instance-create */
  hw_trace_ioctl,
  hw_trace_ioctl,
};
};
 
 
const device_descriptor hw_trace_device_descriptor[] = {
const device_descriptor hw_trace_device_descriptor[] = {
  { "trace", NULL, &hw_trace_callbacks },
  { "trace", NULL, &hw_trace_callbacks },
  { NULL },
  { NULL },
};
};
 
 
#endif /* _HW_TRACE_C_ */
#endif /* _HW_TRACE_C_ */
 
 

powered by: WebSVN 2.1.0

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