2004-06-04 19:43:50 +02:00
|
|
|
/*
|
2005-06-05 11:16:00 +02:00
|
|
|
* Copyright (c) 2004-2005 The Regents of The University of Michigan
|
2004-06-04 19:43:50 +02:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are
|
|
|
|
* met: redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer;
|
|
|
|
* redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution;
|
|
|
|
* neither the name of the copyright holders nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived from
|
|
|
|
* this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
2006-06-01 01:26:56 +02:00
|
|
|
*
|
|
|
|
* Authors: Ali Saidi
|
|
|
|
* Andrew Schultz
|
2004-06-04 19:43:50 +02:00
|
|
|
*/
|
2004-01-22 02:14:10 +01:00
|
|
|
|
2005-06-05 07:22:21 +02:00
|
|
|
/** @file
|
2004-01-22 02:14:10 +01:00
|
|
|
* Tsunami PChip (pci)
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <deque>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include "base/trace.hh"
|
|
|
|
#include "dev/tsunami_pchip.hh"
|
|
|
|
#include "dev/tsunamireg.h"
|
|
|
|
#include "dev/tsunami.hh"
|
2006-04-11 19:42:47 +02:00
|
|
|
#include "mem/packet.hh"
|
2004-01-22 02:14:10 +01:00
|
|
|
#include "sim/builder.hh"
|
|
|
|
#include "sim/system.hh"
|
|
|
|
|
|
|
|
using namespace std;
|
Changes to untemplate StaticInst and StaticInstPtr, change the isa to a namespace instead of a class, an improvement to the architecture specific header file selection system, and fixed up a few include paths.
arch/alpha/alpha_linux_process.cc:
Added using directive for AlphaISA namespace
arch/alpha/alpha_memory.hh:
arch/alpha/isa/branch.isa:
cpu/pc_event.hh:
Added typedefs for Addr
arch/alpha/alpha_tru64_process.cc:
arch/alpha/arguments.cc:
Added using directive for AlphaISA
arch/alpha/ev5.hh:
Added an include of arch/alpha/isa_traits.hh, and a using directive for the AlphaISA namespace.
arch/alpha/faults.hh:
Added a typedef for the Addr type, and changed the formatting of the faults slightly.
arch/alpha/isa/main.isa:
Untemplatized StaticInst, added a using for namespace AlphaISA to show up in decoder.cc and the exec.ccs, relocated makeNop to decoder.hh
arch/alpha/isa/mem.isa:
Untemplatized StaticInst and StaticInstPtr
arch/alpha/isa/pal.isa:
cpu/base_dyn_inst.cc:
Untemplatized StaticInstPtr
arch/alpha/isa_traits.hh:
Changed variables to be externs instead of static since they are part of a namespace and not a class.
arch/alpha/stacktrace.cc:
Untemplatized StaticInstPtr, and added a using directive for AlphaISA.
arch/alpha/stacktrace.hh:
Added some typedefs for Addr and MachInst, and untemplatized StaticInstPtr
arch/alpha/vtophys.cc:
Added a using directive for AlphaISA
arch/alpha/vtophys.hh:
Added the AlphaISA namespace specifier where needed
arch/isa_parser.py:
Changed the placement of the definition of the decodeInst function to be outside the namespaceInst namespace.
base/loader/object_file.hh:
cpu/o3/bpred_unit.hh:
Added a typedef for Addr
base/loader/symtab.hh:
Added a typedef for Addr, and added a TheISA to Addr in another typedef
base/remote_gdb.cc:
Added a using namespace TheISA, and untemplatized StaticInstPtr
base/remote_gdb.hh:
Added typedefs for Addr and MachInst
cpu/base.cc:
Added TheISA specifier to some variables exported from the isa.
cpu/base.hh:
Added a typedef for Addr, and TheISA to some variables from the ISA
cpu/base_dyn_inst.hh:
Untemplatized StaticInstPtr, and added TheISA specifier to some variables from the ISA.
cpu/exec_context.hh:
Added some typedefs for types from the isa, and added TheISA specifier to some variables from the isa
cpu/exetrace.hh:
Added typedefs for some types from the ISA, and untemplatized StaticInstPtr
cpu/memtest/memtest.cc:
cpu/o3/btb.cc:
dev/baddev.cc:
dev/ide_ctrl.cc:
dev/ide_disk.cc:
dev/isa_fake.cc:
dev/ns_gige.cc:
dev/pciconfigall.cc:
dev/platform.cc:
dev/sinic.cc:
dev/uart8250.cc:
kern/freebsd/freebsd_system.cc:
kern/linux/linux_system.cc:
kern/system_events.cc:
kern/tru64/dump_mbuf.cc:
kern/tru64/tru64_events.cc:
sim/process.cc:
sim/pseudo_inst.cc:
sim/system.cc:
Added using namespace TheISA
cpu/memtest/memtest.hh:
cpu/trace/opt_cpu.hh:
cpu/trace/reader/itx_reader.hh:
dev/ide_disk.hh:
dev/pcidev.hh:
dev/platform.hh:
dev/tsunami.hh:
sim/system.hh:
sim/vptr.hh:
Added typedef for Addr
cpu/o3/2bit_local_pred.hh:
Changed the include to use arch/isa_traits.hh instead of arch/alpha/isa_traits.hh. Added typedef for Addr
cpu/o3/alpha_cpu.hh:
Added typedefs for Addr and IntReg
cpu/o3/alpha_cpu_impl.hh:
Added this-> to setNextPC to fix a problem since it didn't depend on template parameters any more. Removed "typename" where it was no longer needed.
cpu/o3/alpha_dyn_inst.hh:
Cleaned up some typedefs, and untemplatized StaticInst
cpu/o3/alpha_dyn_inst_impl.hh:
untemplatized StaticInstPtr
cpu/o3/alpha_impl.hh:
Fixed up a typedef of MachInst
cpu/o3/bpred_unit_impl.hh:
Added a using TheISA::MachInst to a function
cpu/o3/btb.hh:
Changed an include from arch/alpha/isa_traits.hh to arch/isa_traits.hh, and added a typedef for Addr
cpu/o3/commit.hh:
Removed a typedef of Impl::ISA as ISA, since TheISA takes care of this now.
cpu/o3/cpu.cc:
Cleaned up namespace issues
cpu/o3/cpu.hh:
Cleaned up namespace usage
cpu/o3/decode.hh:
Removed typedef of ISA, and changed it to TheISA
cpu/o3/fetch.hh:
Fized up typedefs, and changed ISA to TheISA
cpu/o3/free_list.hh:
Changed include of arch/alpha/isa_traits.hh to arch/isa_traits.hh
cpu/o3/iew.hh:
Removed typedef of ISA
cpu/o3/iew_impl.hh:
Added TheISA namespace specifier to MachInst
cpu/o3/ras.hh:
Changed include from arch/alpha/isa_traits.hh to arch/isa_traits.hh, and added a typedef for Addr.
cpu/o3/regfile.hh:
Changed ISA to TheISA, and added some typedefs for Addr, IntReg, FloatReg, and MiscRegFile
cpu/o3/rename.hh:
Changed ISA to TheISA, and added a typedef for RegIndex
cpu/o3/rename_map.hh:
Added an include for arch/isa_traits.hh, and a typedef for RegIndex
cpu/o3/rob.hh:
Added a typedef for RegIndex
cpu/o3/store_set.hh:
cpu/o3/tournament_pred.hh:
Changed an include of arch/alpha/isa_traits.hh to arch/isa_traits.hh, and added a typedef of Addr
cpu/ozone/cpu.hh:
Changed ISA into TheISA, and untemplatized StaticInst
cpu/pc_event.cc:
Added namespace specifier TheISA to Addr types
cpu/profile.hh:
kern/kernel_stats.hh:
Added typedef for Addr, and untemplatized StaticInstPtr
cpu/simple/cpu.cc:
Changed using directive from LittleEndianGuest to AlphaISA, which will contain both namespaces. Added TheISA where needed, and untemplatized StaticInst
cpu/simple/cpu.hh:
Added a typedef for MachInst, and untemplatized StaticInst
cpu/static_inst.cc:
Untemplatized StaticInst
cpu/static_inst.hh:
Untemplatized StaticInst by using the TheISA namespace
dev/alpha_console.cc:
Added using namespace AlphaISA
dev/simple_disk.hh:
Added typedef for Addr and fixed up some formatting
dev/sinicreg.hh:
Added TheISA namespace specifier where needed
dev/tsunami.cc:
dev/tsunami_io.cc:
dev/tsunami_pchip.cc:
Added using namespace TheISA. It might be better for it to be AlphaISA
dev/tsunami_cchip.cc:
Added typedef for TheISA. It might be better for it to be AlphaISA
kern/linux/aligned.hh:
sim/pseudo_inst.hh:
Added TheISA namespace specifier to Addr
kern/linux/linux_threadinfo.hh:
Added typedef for Addr, and TheISA namespace specifier to StackPointerReg
kern/tru64/mbuf.hh:
Added TheISA to Addr type in structs
sim/process.hh:
Added typedefs of Addr, RegFile, and MachInst
sim/syscall_emul.cc:
Added using namespace TheISA, and a cast of VMPageSize to the int type
sim/syscall_emul.hh:
Added typecast for Addr, and TheISA namespace specifier for where needed
--HG--
extra : convert_revision : 91d4f6ca33a73b21c1f1771d74bfdea3b80eff45
2006-02-19 08:34:37 +01:00
|
|
|
//Should this be AlphaISA?
|
|
|
|
using namespace TheISA;
|
2004-01-22 02:14:10 +01:00
|
|
|
|
2006-04-10 20:14:06 +02:00
|
|
|
TsunamiPChip::TsunamiPChip(Params *p)
|
2006-04-11 19:42:47 +02:00
|
|
|
: BasicPioDevice(p)
|
2004-01-22 02:14:10 +01:00
|
|
|
{
|
2006-04-10 20:14:06 +02:00
|
|
|
pioSize = 0xfff;
|
2004-02-10 06:19:43 +01:00
|
|
|
|
2004-02-22 02:29:38 +01:00
|
|
|
for (int i = 0; i < 4; i++) {
|
|
|
|
wsba[i] = 0;
|
|
|
|
wsm[i] = 0;
|
|
|
|
tba[i] = 0;
|
|
|
|
}
|
2004-01-22 02:14:10 +01:00
|
|
|
|
2004-06-03 23:48:05 +02:00
|
|
|
// initialize pchip control register
|
|
|
|
pctl = (ULL(0x1) << 20) | (ULL(0x1) << 32) | (ULL(0x2) << 36);
|
|
|
|
|
2004-01-28 03:36:46 +01:00
|
|
|
//Set back pointer in tsunami
|
2006-04-10 20:14:06 +02:00
|
|
|
p->tsunami->pchip = this;
|
2004-01-22 02:14:10 +01:00
|
|
|
}
|
|
|
|
|
2006-04-10 20:14:06 +02:00
|
|
|
Tick
|
2006-05-19 04:32:21 +02:00
|
|
|
TsunamiPChip::read(Packet *pkt)
|
2004-01-22 02:14:10 +01:00
|
|
|
{
|
2006-05-26 20:17:33 +02:00
|
|
|
assert(pkt->result == Packet::Unknown);
|
|
|
|
assert(pkt->getAddr() >= pioAddr && pkt->getAddr() < pioAddr + pioSize);
|
2006-04-10 20:14:06 +02:00
|
|
|
|
2006-05-19 04:32:21 +02:00
|
|
|
pkt->allocate();
|
2006-05-26 20:17:33 +02:00
|
|
|
Addr daddr = (pkt->getAddr() - pioAddr) >> 6;;
|
|
|
|
assert(pkt->getSize() == sizeof(uint64_t));
|
2006-04-10 20:14:06 +02:00
|
|
|
|
|
|
|
|
2006-05-26 20:17:33 +02:00
|
|
|
DPRINTF(Tsunami, "read va=%#x size=%d\n", pkt->getAddr(), pkt->getSize());
|
2006-04-10 20:14:06 +02:00
|
|
|
|
|
|
|
switch(daddr) {
|
|
|
|
case TSDEV_PC_WSBA0:
|
2006-05-19 04:32:21 +02:00
|
|
|
pkt->set(wsba[0]);
|
2006-04-10 20:14:06 +02:00
|
|
|
break;
|
|
|
|
case TSDEV_PC_WSBA1:
|
2006-05-19 04:32:21 +02:00
|
|
|
pkt->set(wsba[1]);
|
2006-04-10 20:14:06 +02:00
|
|
|
break;
|
|
|
|
case TSDEV_PC_WSBA2:
|
2006-05-19 04:32:21 +02:00
|
|
|
pkt->set(wsba[2]);
|
2006-04-10 20:14:06 +02:00
|
|
|
break;
|
|
|
|
case TSDEV_PC_WSBA3:
|
2006-05-19 04:32:21 +02:00
|
|
|
pkt->set(wsba[3]);
|
2006-04-10 20:14:06 +02:00
|
|
|
break;
|
|
|
|
case TSDEV_PC_WSM0:
|
2006-05-19 04:32:21 +02:00
|
|
|
pkt->set(wsm[0]);
|
2006-04-10 20:14:06 +02:00
|
|
|
break;
|
|
|
|
case TSDEV_PC_WSM1:
|
2006-05-19 04:32:21 +02:00
|
|
|
pkt->set(wsm[1]);
|
2006-04-10 20:14:06 +02:00
|
|
|
break;
|
|
|
|
case TSDEV_PC_WSM2:
|
2006-05-19 04:32:21 +02:00
|
|
|
pkt->set(wsm[2]);
|
2006-04-10 20:14:06 +02:00
|
|
|
break;
|
|
|
|
case TSDEV_PC_WSM3:
|
2006-05-19 04:32:21 +02:00
|
|
|
pkt->set(wsm[3]);
|
2006-04-10 20:14:06 +02:00
|
|
|
break;
|
|
|
|
case TSDEV_PC_TBA0:
|
2006-05-19 04:32:21 +02:00
|
|
|
pkt->set(tba[0]);
|
2006-04-10 20:14:06 +02:00
|
|
|
break;
|
|
|
|
case TSDEV_PC_TBA1:
|
2006-05-19 04:32:21 +02:00
|
|
|
pkt->set(tba[1]);
|
2006-04-10 20:14:06 +02:00
|
|
|
break;
|
|
|
|
case TSDEV_PC_TBA2:
|
2006-05-19 04:32:21 +02:00
|
|
|
pkt->set(tba[2]);
|
2006-04-10 20:14:06 +02:00
|
|
|
break;
|
2006-04-11 19:42:47 +02:00
|
|
|
case TSDEV_PC_TBA3:
|
2006-05-19 04:32:21 +02:00
|
|
|
pkt->set(tba[3]);
|
2006-04-10 20:14:06 +02:00
|
|
|
break;
|
|
|
|
case TSDEV_PC_PCTL:
|
2006-05-19 04:32:21 +02:00
|
|
|
pkt->set(pctl);
|
2006-04-10 20:14:06 +02:00
|
|
|
break;
|
|
|
|
case TSDEV_PC_PLAT:
|
|
|
|
panic("PC_PLAT not implemented\n");
|
|
|
|
case TSDEV_PC_RES:
|
|
|
|
panic("PC_RES not implemented\n");
|
|
|
|
case TSDEV_PC_PERROR:
|
2006-05-19 04:32:21 +02:00
|
|
|
pkt->set((uint64_t)0x00);
|
2006-04-10 20:14:06 +02:00
|
|
|
break;
|
|
|
|
case TSDEV_PC_PERRMASK:
|
2006-05-19 04:32:21 +02:00
|
|
|
pkt->set((uint64_t)0x00);
|
2006-04-10 20:14:06 +02:00
|
|
|
break;
|
|
|
|
case TSDEV_PC_PERRSET:
|
|
|
|
panic("PC_PERRSET not implemented\n");
|
|
|
|
case TSDEV_PC_TLBIV:
|
|
|
|
panic("PC_TLBIV not implemented\n");
|
|
|
|
case TSDEV_PC_TLBIA:
|
2006-05-19 04:32:21 +02:00
|
|
|
pkt->set((uint64_t)0x00); // shouldn't be readable, but linux
|
2006-04-10 20:14:06 +02:00
|
|
|
break;
|
|
|
|
case TSDEV_PC_PMONCTL:
|
|
|
|
panic("PC_PMONCTL not implemented\n");
|
|
|
|
case TSDEV_PC_PMONCNT:
|
|
|
|
panic("PC_PMONCTN not implemented\n");
|
2004-01-22 02:14:10 +01:00
|
|
|
default:
|
2006-04-10 20:14:06 +02:00
|
|
|
panic("Default in PChip Read reached reading 0x%x\n", daddr);
|
2004-01-22 02:14:10 +01:00
|
|
|
}
|
2006-05-26 20:17:33 +02:00
|
|
|
pkt->result = Packet::Success;
|
2006-04-10 20:14:06 +02:00
|
|
|
return pioDelay;
|
2004-01-22 02:14:10 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2006-04-11 19:42:47 +02:00
|
|
|
Tick
|
2006-05-19 04:32:21 +02:00
|
|
|
TsunamiPChip::write(Packet *pkt)
|
2004-01-22 02:14:10 +01:00
|
|
|
{
|
2006-05-26 20:17:33 +02:00
|
|
|
assert(pkt->result == Packet::Unknown);
|
|
|
|
assert(pkt->getAddr() >= pioAddr && pkt->getAddr() < pioAddr + pioSize);
|
|
|
|
Addr daddr = (pkt->getAddr() - pioAddr) >> 6;
|
2006-04-10 20:14:06 +02:00
|
|
|
|
2006-05-26 20:17:33 +02:00
|
|
|
assert(pkt->getSize() == sizeof(uint64_t));
|
2006-04-10 20:14:06 +02:00
|
|
|
|
2006-05-26 20:17:33 +02:00
|
|
|
DPRINTF(Tsunami, "write - va=%#x size=%d \n", pkt->getAddr(), pkt->getSize());
|
2006-04-10 20:14:06 +02:00
|
|
|
|
|
|
|
switch(daddr) {
|
|
|
|
case TSDEV_PC_WSBA0:
|
2006-05-19 04:32:21 +02:00
|
|
|
wsba[0] = pkt->get<uint64_t>();
|
2006-04-10 20:14:06 +02:00
|
|
|
break;
|
|
|
|
case TSDEV_PC_WSBA1:
|
2006-05-19 04:32:21 +02:00
|
|
|
wsba[1] = pkt->get<uint64_t>();
|
2006-04-10 20:14:06 +02:00
|
|
|
break;
|
|
|
|
case TSDEV_PC_WSBA2:
|
2006-05-19 04:32:21 +02:00
|
|
|
wsba[2] = pkt->get<uint64_t>();
|
2006-04-10 20:14:06 +02:00
|
|
|
break;
|
|
|
|
case TSDEV_PC_WSBA3:
|
2006-05-19 04:32:21 +02:00
|
|
|
wsba[3] = pkt->get<uint64_t>();
|
2006-04-10 20:14:06 +02:00
|
|
|
break;
|
|
|
|
case TSDEV_PC_WSM0:
|
2006-05-19 04:32:21 +02:00
|
|
|
wsm[0] = pkt->get<uint64_t>();
|
2006-04-10 20:14:06 +02:00
|
|
|
break;
|
|
|
|
case TSDEV_PC_WSM1:
|
2006-05-19 04:32:21 +02:00
|
|
|
wsm[1] = pkt->get<uint64_t>();
|
2006-04-10 20:14:06 +02:00
|
|
|
break;
|
|
|
|
case TSDEV_PC_WSM2:
|
2006-05-19 04:32:21 +02:00
|
|
|
wsm[2] = pkt->get<uint64_t>();
|
2006-04-10 20:14:06 +02:00
|
|
|
break;
|
|
|
|
case TSDEV_PC_WSM3:
|
2006-05-19 04:32:21 +02:00
|
|
|
wsm[3] = pkt->get<uint64_t>();
|
2006-04-10 20:14:06 +02:00
|
|
|
break;
|
|
|
|
case TSDEV_PC_TBA0:
|
2006-05-19 04:32:21 +02:00
|
|
|
tba[0] = pkt->get<uint64_t>();
|
2006-04-10 20:14:06 +02:00
|
|
|
break;
|
|
|
|
case TSDEV_PC_TBA1:
|
2006-05-19 04:32:21 +02:00
|
|
|
tba[1] = pkt->get<uint64_t>();
|
2006-04-10 20:14:06 +02:00
|
|
|
break;
|
|
|
|
case TSDEV_PC_TBA2:
|
2006-05-19 04:32:21 +02:00
|
|
|
tba[2] = pkt->get<uint64_t>();
|
2006-04-10 20:14:06 +02:00
|
|
|
break;
|
|
|
|
case TSDEV_PC_TBA3:
|
2006-05-19 04:32:21 +02:00
|
|
|
tba[3] = pkt->get<uint64_t>();
|
2006-04-10 20:14:06 +02:00
|
|
|
break;
|
|
|
|
case TSDEV_PC_PCTL:
|
2006-05-19 04:32:21 +02:00
|
|
|
pctl = pkt->get<uint64_t>();
|
2006-04-10 20:14:06 +02:00
|
|
|
break;
|
|
|
|
case TSDEV_PC_PLAT:
|
|
|
|
panic("PC_PLAT not implemented\n");
|
|
|
|
case TSDEV_PC_RES:
|
|
|
|
panic("PC_RES not implemented\n");
|
|
|
|
case TSDEV_PC_PERROR:
|
|
|
|
break;
|
|
|
|
case TSDEV_PC_PERRMASK:
|
|
|
|
panic("PC_PERRMASK not implemented\n");
|
|
|
|
case TSDEV_PC_PERRSET:
|
|
|
|
panic("PC_PERRSET not implemented\n");
|
|
|
|
case TSDEV_PC_TLBIV:
|
|
|
|
panic("PC_TLBIV not implemented\n");
|
|
|
|
case TSDEV_PC_TLBIA:
|
|
|
|
break; // value ignored, supposted to invalidate SG TLB
|
|
|
|
case TSDEV_PC_PMONCTL:
|
|
|
|
panic("PC_PMONCTL not implemented\n");
|
|
|
|
case TSDEV_PC_PMONCNT:
|
|
|
|
panic("PC_PMONCTN not implemented\n");
|
|
|
|
default:
|
2006-04-12 23:46:25 +02:00
|
|
|
panic("Default in PChip write reached reading 0x%x\n", daddr);
|
2006-04-10 20:14:06 +02:00
|
|
|
|
|
|
|
} // uint64_t
|
|
|
|
|
2006-05-26 20:17:33 +02:00
|
|
|
pkt->result = Packet::Success;
|
2006-04-10 20:14:06 +02:00
|
|
|
return pioDelay;
|
2004-01-22 02:14:10 +01:00
|
|
|
}
|
|
|
|
|
2004-05-06 21:21:07 +02:00
|
|
|
#define DMA_ADDR_MASK ULL(0x3ffffffff)
|
|
|
|
|
2004-02-22 02:29:38 +01:00
|
|
|
Addr
|
|
|
|
TsunamiPChip::translatePciToDma(Addr busAddr)
|
|
|
|
{
|
|
|
|
// compare the address to the window base registers
|
2004-05-06 21:21:07 +02:00
|
|
|
uint64_t tbaMask = 0;
|
|
|
|
uint64_t baMask = 0;
|
|
|
|
|
2004-02-22 02:29:38 +01:00
|
|
|
uint64_t windowMask = 0;
|
|
|
|
uint64_t windowBase = 0;
|
2004-05-06 21:21:07 +02:00
|
|
|
|
|
|
|
uint64_t pteEntry = 0;
|
|
|
|
|
|
|
|
Addr pteAddr;
|
2004-02-22 02:29:38 +01:00
|
|
|
Addr dmaAddr;
|
|
|
|
|
2004-06-03 23:48:05 +02:00
|
|
|
#if 0
|
|
|
|
DPRINTF(IdeDisk, "Translation for bus address: %#x\n", busAddr);
|
2004-02-22 02:29:38 +01:00
|
|
|
for (int i = 0; i < 4; i++) {
|
2004-06-03 23:48:05 +02:00
|
|
|
DPRINTF(IdeDisk, "(%d) base:%#x mask:%#x\n",
|
|
|
|
i, wsba[i], wsm[i]);
|
|
|
|
|
2004-02-22 02:29:38 +01:00
|
|
|
windowBase = wsba[i];
|
2004-06-03 23:48:05 +02:00
|
|
|
windowMask = ~wsm[i] & (ULL(0xfff) << 20);
|
2004-02-22 02:29:38 +01:00
|
|
|
|
|
|
|
if ((busAddr & windowMask) == (windowBase & windowMask)) {
|
2004-06-03 23:48:05 +02:00
|
|
|
DPRINTF(IdeDisk, "Would have matched %d (wb:%#x wm:%#x --> ba&wm:%#x wb&wm:%#x)\n",
|
|
|
|
i, windowBase, windowMask, (busAddr & windowMask),
|
|
|
|
(windowBase & windowMask));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2004-02-22 02:29:38 +01:00
|
|
|
|
2004-06-03 23:48:05 +02:00
|
|
|
for (int i = 0; i < 4; i++) {
|
|
|
|
|
|
|
|
windowBase = wsba[i];
|
|
|
|
windowMask = ~wsm[i] & (ULL(0xfff) << 20);
|
|
|
|
|
|
|
|
if ((busAddr & windowMask) == (windowBase & windowMask)) {
|
2004-02-22 02:29:38 +01:00
|
|
|
|
2004-05-06 21:21:07 +02:00
|
|
|
if (wsba[i] & 0x1) { // see if enabled
|
|
|
|
if (wsba[i] & 0x2) { // see if SG bit is set
|
|
|
|
/** @todo
|
|
|
|
This currently is faked by just doing a direct
|
|
|
|
read from memory, however, to be realistic, this
|
|
|
|
needs to actually do a bus transaction. The process
|
|
|
|
is explained in the tsunami documentation on page
|
|
|
|
10-12 and basically munges the address to look up a
|
|
|
|
PTE from a table in memory and then uses that mapping
|
|
|
|
to create an address for the SG page
|
|
|
|
*/
|
|
|
|
|
2004-06-03 23:48:05 +02:00
|
|
|
tbaMask = ~(((wsm[i] & (ULL(0xfff) << 20)) >> 10) | ULL(0x3ff));
|
|
|
|
baMask = (wsm[i] & (ULL(0xfff) << 20)) | (ULL(0x7f) << 13);
|
2004-05-06 21:21:07 +02:00
|
|
|
pteAddr = (tba[i] & tbaMask) | ((busAddr & baMask) >> 10);
|
|
|
|
|
2006-04-11 19:42:47 +02:00
|
|
|
pioPort->readBlob(pteAddr, (uint8_t*)&pteEntry, sizeof(uint64_t));
|
2004-05-06 21:21:07 +02:00
|
|
|
|
2004-06-03 23:48:05 +02:00
|
|
|
dmaAddr = ((pteEntry & ~ULL(0x1)) << 12) | (busAddr & ULL(0x1fff));
|
2004-05-06 21:21:07 +02:00
|
|
|
|
|
|
|
} else {
|
2004-06-03 23:48:05 +02:00
|
|
|
baMask = (wsm[i] & (ULL(0xfff) << 20)) | ULL(0xfffff);
|
2004-05-06 21:21:07 +02:00
|
|
|
tbaMask = ~baMask;
|
|
|
|
dmaAddr = (tba[i] & tbaMask) | (busAddr & baMask);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (dmaAddr & DMA_ADDR_MASK);
|
2004-02-22 02:29:38 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-06-03 23:48:05 +02:00
|
|
|
// if no match was found, then return the original address
|
|
|
|
return busAddr;
|
2004-02-22 02:29:38 +01:00
|
|
|
}
|
2006-07-06 20:41:01 +02:00
|
|
|
Addr
|
|
|
|
TsunamiPChip::calcConfigAddr(int bus, int dev, int func)
|
|
|
|
{
|
|
|
|
assert(func < 8);
|
|
|
|
assert(dev < 32);
|
|
|
|
assert(bus == 0);
|
|
|
|
|
|
|
|
return TsunamiPciBus0Config | (func << 8) | (dev << 11);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-02-22 02:29:38 +01:00
|
|
|
|
2004-01-22 02:14:10 +01:00
|
|
|
void
|
|
|
|
TsunamiPChip::serialize(std::ostream &os)
|
|
|
|
{
|
2004-06-03 23:48:05 +02:00
|
|
|
SERIALIZE_SCALAR(pctl);
|
2004-02-22 02:29:38 +01:00
|
|
|
SERIALIZE_ARRAY(wsba, 4);
|
|
|
|
SERIALIZE_ARRAY(wsm, 4);
|
|
|
|
SERIALIZE_ARRAY(tba, 4);
|
2004-01-22 02:14:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
TsunamiPChip::unserialize(Checkpoint *cp, const std::string §ion)
|
|
|
|
{
|
2004-06-03 23:48:05 +02:00
|
|
|
UNSERIALIZE_SCALAR(pctl);
|
2004-02-22 02:29:38 +01:00
|
|
|
UNSERIALIZE_ARRAY(wsba, 4);
|
|
|
|
UNSERIALIZE_ARRAY(wsm, 4);
|
|
|
|
UNSERIALIZE_ARRAY(tba, 4);
|
2004-01-22 02:14:10 +01:00
|
|
|
}
|
|
|
|
|
2004-06-10 19:30:58 +02:00
|
|
|
|
2004-01-22 02:14:10 +01:00
|
|
|
BEGIN_DECLARE_SIM_OBJECT_PARAMS(TsunamiPChip)
|
|
|
|
|
2006-04-10 20:14:06 +02:00
|
|
|
Param<Addr> pio_addr;
|
2004-07-13 04:58:22 +02:00
|
|
|
Param<Tick> pio_latency;
|
2006-04-10 20:14:06 +02:00
|
|
|
SimObjectParam<Platform *> platform;
|
|
|
|
SimObjectParam<System *> system;
|
|
|
|
SimObjectParam<Tsunami *> tsunami;
|
2004-01-22 02:14:10 +01:00
|
|
|
|
|
|
|
END_DECLARE_SIM_OBJECT_PARAMS(TsunamiPChip)
|
|
|
|
|
|
|
|
BEGIN_INIT_SIM_OBJECT_PARAMS(TsunamiPChip)
|
|
|
|
|
2006-04-10 20:14:06 +02:00
|
|
|
INIT_PARAM(pio_addr, "Device Address"),
|
|
|
|
INIT_PARAM(pio_latency, "Programmed IO latency"),
|
|
|
|
INIT_PARAM(platform, "platform"),
|
|
|
|
INIT_PARAM(system, "system object"),
|
|
|
|
INIT_PARAM(tsunami, "Tsunami")
|
2004-01-22 02:14:10 +01:00
|
|
|
|
|
|
|
END_INIT_SIM_OBJECT_PARAMS(TsunamiPChip)
|
|
|
|
|
|
|
|
CREATE_SIM_OBJECT(TsunamiPChip)
|
|
|
|
{
|
2006-04-10 20:14:06 +02:00
|
|
|
TsunamiPChip::Params *p = new TsunamiPChip::Params;
|
|
|
|
p->name = getInstanceName();
|
|
|
|
p->pio_addr = pio_addr;
|
|
|
|
p->pio_delay = pio_latency;
|
|
|
|
p->platform = platform;
|
|
|
|
p->system = system;
|
|
|
|
p->tsunami = tsunami;
|
|
|
|
return new TsunamiPChip(p);
|
2004-01-22 02:14:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
REGISTER_SIM_OBJECT("TsunamiPChip", TsunamiPChip)
|