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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gdb-6.8/] [sim/] [ppc/] [hw_vm.c] - Diff between revs 157 and 816

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 157 Rev 816
/*  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_VM_C_
#ifndef _HW_VM_C_
#define _HW_VM_C_
#define _HW_VM_C_
 
 
#include "device_table.h"
#include "device_table.h"
#include "cpu.h"
#include "cpu.h"
 
 
#include <signal.h>
#include <signal.h>
 
 
/* DEVICE
/* DEVICE
 
 
   vm - virtual memory device for user simulation modes
   vm - virtual memory device for user simulation modes
 
 
   DESCRIPTION
   DESCRIPTION
 
 
   In user mode, mapped text, data and stack addresses are managed by
   In user mode, mapped text, data and stack addresses are managed by
   the core.  Unmapped addresses are passed onto this device (because
   the core.  Unmapped addresses are passed onto this device (because
   it establishes its self as the fallback device) for processing.
   it establishes its self as the fallback device) for processing.
 
 
   During initialization, children of this device will request the
   During initialization, children of this device will request the
   mapping of the initial text and data segments.  Those requests are
   mapping of the initial text and data segments.  Those requests are
   passed onto the core device so that that may establish the initial
   passed onto the core device so that that may establish the initial
   memory regions.
   memory regions.
 
 
   Once the simulation has started (as noted above) any access to an
   Once the simulation has started (as noted above) any access to an
   unmapped address range will be passed down to this device as an IO
   unmapped address range will be passed down to this device as an IO
   access.  This device will then either attach additional memory to
   access.  This device will then either attach additional memory to
   the core device or signal the access as being invalid.
   the core device or signal the access as being invalid.
 
 
   The IOCTL function is used to notify this device of any changes to
   The IOCTL function is used to notify this device of any changes to
   the users `brk' point.
   the users `brk' point.
 
 
   PROPERTIES
   PROPERTIES
 
 
   stack-base = <number>
   stack-base = <number>
 
 
   Specifies the lower address of the stack segment in the users
   Specifies the lower address of the stack segment in the users
   virtual address space.  The initial stack page is defined by
   virtual address space.  The initial stack page is defined by
   stack-base + nr-bytes.
   stack-base + nr-bytes.
 
 
   nr-bytes = <number>
   nr-bytes = <number>
 
 
   Specifies the maximum size of the stack segment in the users
   Specifies the maximum size of the stack segment in the users
   address space.
   address space.
 
 
   */
   */
 
 
typedef struct _hw_vm_device {
typedef struct _hw_vm_device {
  /* area of memory valid for stack addresses */
  /* area of memory valid for stack addresses */
  unsigned_word stack_base; /* min possible stack value */
  unsigned_word stack_base; /* min possible stack value */
  unsigned_word stack_bound;
  unsigned_word stack_bound;
  unsigned_word stack_lower_limit;
  unsigned_word stack_lower_limit;
  /* area of memory valid for heap addresses */
  /* area of memory valid for heap addresses */
  unsigned_word heap_base;
  unsigned_word heap_base;
  unsigned_word heap_bound;
  unsigned_word heap_bound;
  unsigned_word heap_upper_limit;
  unsigned_word heap_upper_limit;
} hw_vm_device;
} hw_vm_device;
 
 
 
 
static void
static void
hw_vm_init_address_callback(device *me)
hw_vm_init_address_callback(device *me)
{
{
  hw_vm_device *vm = (hw_vm_device*)device_data(me);
  hw_vm_device *vm = (hw_vm_device*)device_data(me);
 
 
  /* revert the stack/heap variables to their defaults */
  /* revert the stack/heap variables to their defaults */
  vm->stack_base = device_find_integer_property(me, "stack-base");
  vm->stack_base = device_find_integer_property(me, "stack-base");
  vm->stack_bound = (vm->stack_base
  vm->stack_bound = (vm->stack_base
                     + device_find_integer_property(me, "nr-bytes"));
                     + device_find_integer_property(me, "nr-bytes"));
  vm->stack_lower_limit = vm->stack_bound;
  vm->stack_lower_limit = vm->stack_bound;
  vm->heap_base = 0;
  vm->heap_base = 0;
  vm->heap_bound = 0;
  vm->heap_bound = 0;
  vm->heap_upper_limit = 0;
  vm->heap_upper_limit = 0;
 
 
  /* establish this device as the default memory handler */
  /* establish this device as the default memory handler */
  device_attach_address(device_parent(me),
  device_attach_address(device_parent(me),
                        attach_callback + 1,
                        attach_callback + 1,
                        0 /*address space - ignore*/,
                        0 /*address space - ignore*/,
                        0 /*addr - ignore*/,
                        0 /*addr - ignore*/,
                        (((unsigned)0)-1) /*nr_bytes - ignore*/,
                        (((unsigned)0)-1) /*nr_bytes - ignore*/,
                        access_read_write /*access*/,
                        access_read_write /*access*/,
                        me);
                        me);
}
}
 
 
 
 
static void
static void
hw_vm_attach_address(device *me,
hw_vm_attach_address(device *me,
                     attach_type attach,
                     attach_type attach,
                     int space,
                     int space,
                     unsigned_word addr,
                     unsigned_word addr,
                     unsigned nr_bytes,
                     unsigned nr_bytes,
                     access_type access,
                     access_type access,
                     device *client) /*callback/default*/
                     device *client) /*callback/default*/
{
{
  hw_vm_device *vm = (hw_vm_device*)device_data(me);
  hw_vm_device *vm = (hw_vm_device*)device_data(me);
  /* update end of bss if necessary */
  /* update end of bss if necessary */
  if (vm->heap_base < addr + nr_bytes) {
  if (vm->heap_base < addr + nr_bytes) {
    vm->heap_base = addr + nr_bytes;
    vm->heap_base = addr + nr_bytes;
    vm->heap_bound = addr + nr_bytes;
    vm->heap_bound = addr + nr_bytes;
    vm->heap_upper_limit = addr + nr_bytes;
    vm->heap_upper_limit = addr + nr_bytes;
  }
  }
  device_attach_address(device_parent(me),
  device_attach_address(device_parent(me),
                        attach_raw_memory,
                        attach_raw_memory,
                        0 /*address space*/,
                        0 /*address space*/,
                        addr,
                        addr,
                        nr_bytes,
                        nr_bytes,
                        access,
                        access,
                        me);
                        me);
}
}
 
 
 
 
static unsigned
static unsigned
hw_vm_add_space(device *me,
hw_vm_add_space(device *me,
                unsigned_word addr,
                unsigned_word addr,
                unsigned nr_bytes,
                unsigned nr_bytes,
                cpu *processor,
                cpu *processor,
                unsigned_word cia)
                unsigned_word cia)
{
{
  hw_vm_device *vm = (hw_vm_device*)device_data(me);
  hw_vm_device *vm = (hw_vm_device*)device_data(me);
  unsigned_word block_addr;
  unsigned_word block_addr;
  unsigned block_nr_bytes;
  unsigned block_nr_bytes;
 
 
  /* an address in the stack area, allocate just down to the addressed
  /* an address in the stack area, allocate just down to the addressed
     page */
     page */
  if (addr >= vm->stack_base && addr < vm->stack_lower_limit) {
  if (addr >= vm->stack_base && addr < vm->stack_lower_limit) {
    block_addr = FLOOR_PAGE(addr);
    block_addr = FLOOR_PAGE(addr);
    block_nr_bytes = vm->stack_lower_limit - block_addr;
    block_nr_bytes = vm->stack_lower_limit - block_addr;
    vm->stack_lower_limit = block_addr;
    vm->stack_lower_limit = block_addr;
  }
  }
  /* an address in the heap area, allocate all of the required heap */
  /* an address in the heap area, allocate all of the required heap */
  else if (addr >= vm->heap_upper_limit && addr < vm->heap_bound) {
  else if (addr >= vm->heap_upper_limit && addr < vm->heap_bound) {
    block_addr = vm->heap_upper_limit;
    block_addr = vm->heap_upper_limit;
    block_nr_bytes = vm->heap_bound - vm->heap_upper_limit;
    block_nr_bytes = vm->heap_bound - vm->heap_upper_limit;
    vm->heap_upper_limit = vm->heap_bound;
    vm->heap_upper_limit = vm->heap_bound;
  }
  }
  /* oops - an invalid address - abort the cpu */
  /* oops - an invalid address - abort the cpu */
  else if (processor != NULL) {
  else if (processor != NULL) {
    cpu_halt(processor, cia, was_signalled, SIGSEGV);
    cpu_halt(processor, cia, was_signalled, SIGSEGV);
    return 0;
    return 0;
  }
  }
  /* 2*oops - an invalid address and no processor */
  /* 2*oops - an invalid address and no processor */
  else {
  else {
    return 0;
    return 0;
  }
  }
 
 
  /* got the parameters, allocate the space */
  /* got the parameters, allocate the space */
  device_attach_address(device_parent(me),
  device_attach_address(device_parent(me),
                        attach_raw_memory,
                        attach_raw_memory,
                        0 /*address space*/,
                        0 /*address space*/,
                        block_addr,
                        block_addr,
                        block_nr_bytes,
                        block_nr_bytes,
                        access_read_write,
                        access_read_write,
                        me);
                        me);
  return block_nr_bytes;
  return block_nr_bytes;
}
}
 
 
 
 
static unsigned
static unsigned
hw_vm_io_read_buffer_callback(device *me,
hw_vm_io_read_buffer_callback(device *me,
                           void *dest,
                           void *dest,
                           int space,
                           int space,
                           unsigned_word addr,
                           unsigned_word addr,
                           unsigned nr_bytes,
                           unsigned nr_bytes,
                           cpu *processor,
                           cpu *processor,
                           unsigned_word cia)
                           unsigned_word cia)
{
{
  if (hw_vm_add_space(me, addr, nr_bytes, processor, cia) >= nr_bytes) {
  if (hw_vm_add_space(me, addr, nr_bytes, processor, cia) >= nr_bytes) {
    memset(dest, 0, nr_bytes); /* always initialized to zero */
    memset(dest, 0, nr_bytes); /* always initialized to zero */
    return nr_bytes;
    return nr_bytes;
  }
  }
  else
  else
    return 0;
    return 0;
}
}
 
 
 
 
static unsigned
static unsigned
hw_vm_io_write_buffer_callback(device *me,
hw_vm_io_write_buffer_callback(device *me,
                            const void *source,
                            const void *source,
                            int space,
                            int space,
                            unsigned_word addr,
                            unsigned_word addr,
                            unsigned nr_bytes,
                            unsigned nr_bytes,
                            cpu *processor,
                            cpu *processor,
                            unsigned_word cia)
                            unsigned_word cia)
{
{
  if (hw_vm_add_space(me, addr, nr_bytes, processor, cia) >= nr_bytes) {
  if (hw_vm_add_space(me, addr, nr_bytes, processor, cia) >= nr_bytes) {
    return device_dma_write_buffer(device_parent(me), source,
    return device_dma_write_buffer(device_parent(me), source,
                                   space, addr,
                                   space, addr,
                                   nr_bytes,
                                   nr_bytes,
                                   0/*violate_read_only*/);
                                   0/*violate_read_only*/);
  }
  }
  else
  else
    return 0;
    return 0;
}
}
 
 
 
 
static int
static int
hw_vm_ioctl(device *me,
hw_vm_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)
{
{
  /* While the caller is notified that the heap has grown by the
  /* While the caller is notified that the heap has grown by the
     requested amount, the heap is actually extended out to a page
     requested amount, the heap is actually extended out to a page
     boundary. */
     boundary. */
  hw_vm_device *vm = (hw_vm_device*)device_data(me);
  hw_vm_device *vm = (hw_vm_device*)device_data(me);
  switch (request) {
  switch (request) {
  case device_ioctl_break:
  case device_ioctl_break:
    {
    {
      unsigned_word requested_break = va_arg(ap, unsigned_word);
      unsigned_word requested_break = va_arg(ap, unsigned_word);
      unsigned_word new_break = ALIGN_8(requested_break);
      unsigned_word new_break = ALIGN_8(requested_break);
      unsigned_word old_break = vm->heap_bound;
      unsigned_word old_break = vm->heap_bound;
      signed_word delta = new_break - old_break;
      signed_word delta = new_break - old_break;
      if (delta > 0)
      if (delta > 0)
        vm->heap_bound = ALIGN_PAGE(new_break);
        vm->heap_bound = ALIGN_PAGE(new_break);
      break;
      break;
    }
    }
  default:
  default:
    device_error(me, "Unsupported ioctl request");
    device_error(me, "Unsupported ioctl request");
    break;
    break;
  }
  }
  return 0;
  return 0;
 
 
}
}
 
 
 
 
static device_callbacks const hw_vm_callbacks = {
static device_callbacks const hw_vm_callbacks = {
  { hw_vm_init_address_callback, },
  { hw_vm_init_address_callback, },
  { hw_vm_attach_address,
  { hw_vm_attach_address,
    passthrough_device_address_detach, },
    passthrough_device_address_detach, },
  { hw_vm_io_read_buffer_callback,
  { hw_vm_io_read_buffer_callback,
    hw_vm_io_write_buffer_callback, },
    hw_vm_io_write_buffer_callback, },
  { NULL, passthrough_device_dma_write_buffer, },
  { NULL, passthrough_device_dma_write_buffer, },
  { NULL, }, /* interrupt */
  { NULL, }, /* interrupt */
  { generic_device_unit_decode,
  { generic_device_unit_decode,
    generic_device_unit_encode, },
    generic_device_unit_encode, },
  NULL, /* instance */
  NULL, /* instance */
  hw_vm_ioctl,
  hw_vm_ioctl,
};
};
 
 
 
 
static void *
static void *
hw_vm_create(const char *name,
hw_vm_create(const char *name,
             const device_unit *address,
             const device_unit *address,
             const char *args)
             const char *args)
{
{
  hw_vm_device *vm = ZALLOC(hw_vm_device);
  hw_vm_device *vm = ZALLOC(hw_vm_device);
  return vm;
  return vm;
}
}
 
 
const device_descriptor hw_vm_device_descriptor[] = {
const device_descriptor hw_vm_device_descriptor[] = {
  { "vm", hw_vm_create, &hw_vm_callbacks },
  { "vm", hw_vm_create, &hw_vm_callbacks },
  { NULL },
  { NULL },
};
};
 
 
#endif /* _HW_VM_C_ */
#endif /* _HW_VM_C_ */
 
 

powered by: WebSVN 2.1.0

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