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

Subversion Repositories w11

[/] [w11/] [tags/] [w11a_V0.6/] [tools/] [src/] [librw11/] [Rw11Cpu.cpp] - Diff between revs 19 and 20

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

Rev 19 Rev 20
Line 1... Line 1...
// $Id: Rw11Cpu.cpp 504 2013-04-13 15:37:24Z mueller $
// $Id: Rw11Cpu.cpp 506 2013-04-14 21:54:03Z mueller $
//
//
// Copyright 2013- by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
// Copyright 2013- by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
//
//
// This program is free software; you may redistribute and/or modify it under
// This program is free software; you may redistribute and/or modify it under
// the terms of the GNU General Public License as published by the Free
// the terms of the GNU General Public License as published by the Free
Line 11... Line 11...
// or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
// or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
// for complete details.
// for complete details.
// 
// 
// Revision History: 
// Revision History: 
// Date         Rev Version  Comment
// Date         Rev Version  Comment
 
// 2013-04-14   506   1.0.1  add AddLalh(),AddRMem(),AddWMem()
// 2013-04-12   504   1.0    Initial version
// 2013-04-12   504   1.0    Initial version
// 2013-01-27   478   0.1    First draft
// 2013-01-27   478   0.1    First draft
// ---------------------------------------------------------------------------
// ---------------------------------------------------------------------------
 
 
/*!
/*!
  \file
  \file
  \version $Id: Rw11Cpu.cpp 504 2013-04-13 15:37:24Z mueller $
  \version $Id: Rw11Cpu.cpp 506 2013-04-14 21:54:03Z mueller $
  \brief   Implemenation of Rw11Cpu.
  \brief   Implemenation of Rw11Cpu.
*/
*/
#include <stdlib.h>
#include <stdlib.h>
#include <fcntl.h>
#include <fcntl.h>
#include <errno.h>
#include <errno.h>
Line 92... Line 93...
const uint16_t  Rw11Cpu::kCp_cpurust_vecfet;
const uint16_t  Rw11Cpu::kCp_cpurust_vecfet;
const uint16_t  Rw11Cpu::kCp_cpurust_recrsv;
const uint16_t  Rw11Cpu::kCp_cpurust_recrsv;
const uint16_t  Rw11Cpu::kCp_cpurust_sfail;
const uint16_t  Rw11Cpu::kCp_cpurust_sfail;
const uint16_t  Rw11Cpu::kCp_cpurust_vfail;
const uint16_t  Rw11Cpu::kCp_cpurust_vfail;
 
 
 
const uint16_t  Rw11Cpu::kCp_ah_m_addr;
 
const uint16_t  Rw11Cpu::kCp_ah_m_22bit;
 
const uint16_t  Rw11Cpu::kCp_ah_m_ubmap;
 
 
//------------------------------------------+-----------------------------------
//------------------------------------------+-----------------------------------
//! Constructor
//! Constructor
 
 
Rw11Cpu::Rw11Cpu(const std::string& type)
Rw11Cpu::Rw11Cpu(const std::string& type)
  : fpW11(0),
  : fpW11(0),
Line 260... Line 265...
}
}
 
 
//------------------------------------------+-----------------------------------
//------------------------------------------+-----------------------------------
//! FIXME_docs
//! FIXME_docs
 
 
 
int Rw11Cpu::AddLalh(RlinkCommandList& clist, uint32_t addr, uint16_t mode)
 
{
 
  uint16_t al = uint16_t(addr);
 
  uint16_t ah = uint16_t(addr>>16) & kCp_ah_m_addr;
 
  ah |= mode & (kCp_ah_m_22bit|kCp_ah_m_ubmap);
 
  int ind = clist.AddWreg(fBase+kCp_addr_al, al);
 
  clist.AddWreg(fBase+kCp_addr_ah, ah);
 
  return ind;
 
}
 
 
 
//------------------------------------------+-----------------------------------
 
//! FIXME_docs
 
 
 
int Rw11Cpu::AddRMem(RlinkCommandList& clist, uint32_t addr,
 
                     uint16_t* buf, size_t size, uint16_t mode)
 
{
 
  int ind = AddLalh(clist, addr, mode);
 
  while (size > 0) {
 
    size_t bsize = (size>256) ? 256 : size;
 
    clist.AddRblk(fBase+kCp_addr_memi, buf, bsize);
 
    buf  += bsize;
 
    size -= bsize;
 
  }
 
  return ind;
 
}
 
 
 
//------------------------------------------+-----------------------------------
 
//! FIXME_docs
 
 
 
int Rw11Cpu::AddWMem(RlinkCommandList& clist, uint32_t addr,
 
                     const uint16_t* buf, size_t size, uint16_t mode)
 
{
 
  int ind = AddLalh(clist, addr, mode);
 
  while (size > 0) {
 
    size_t bsize = (size>256) ? 256 : size;
 
    clist.AddWblk(fBase+kCp_addr_memi, buf, bsize);
 
    buf  += bsize;
 
    size -= bsize;
 
  }
 
  return ind;
 
}
 
 
 
//------------------------------------------+-----------------------------------
 
//! FIXME_docs
 
 
bool Rw11Cpu::MemRead(uint16_t addr, std::vector<uint16_t>& data,
bool Rw11Cpu::MemRead(uint16_t addr, std::vector<uint16_t>& data,
                      size_t nword, RerrMsg& emsg)
                      size_t nword, RerrMsg& emsg)
{
{
  data.resize(nword);
  data.resize(nword);
  size_t ndone = 0;
  size_t ndone = 0;

powered by: WebSVN 2.1.0

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