gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
hsa_device.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2015-2018 Advanced Micro Devices, Inc.
3  * All rights reserved.
4  *
5  * For use for simulation and test purposes only
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions are met:
9  *
10  * 1. Redistributions of source code must retain the above copyright notice,
11  * this list of conditions and the following disclaimer.
12  *
13  * 2. Redistributions in binary form must reproduce the above copyright notice,
14  * this list of conditions and the following disclaimer in the documentation
15  * and/or other materials provided with the distribution.
16  *
17  * 3. Neither the name of the copyright holder nor the names of its
18  * contributors may be used to endorse or promote products derived from this
19  * software without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
25  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31  * POSSIBILITY OF SUCH DAMAGE.
32  */
33 
34 #include "dev/hsa/hsa_device.hh"
35 
36 #include "base/chunk_generator.hh"
37 #include "sim/process.hh"
38 
41 {
42  return *hsaPP;
43 }
44 
45 void
46 HSADevice::dmaReadVirt(Addr host_addr, unsigned size,
47  DmaCallback *cb, void *data, Tick delay)
48 {
49  dmaVirt(&DmaDevice::dmaRead, host_addr, size, cb, data, delay);
50 }
51 
52 void
53 HSADevice::dmaWriteVirt(Addr host_addr, unsigned size,
54  DmaCallback *cb, void *data, Tick delay)
55 {
56  dmaVirt(&DmaDevice::dmaWrite, host_addr, size, cb, data, delay);
57 }
58 
59 void
60 HSADevice::dmaVirt(DmaFnPtr dmaFn, Addr addr, unsigned size,
61  DmaCallback *cb, void *data, Tick delay)
62 {
63  if (size == 0) {
64  if (cb)
65  schedule(cb->getChunkEvent(), curTick() + delay);
66  return;
67  }
68 
69  // move the buffer data pointer with the chunks
70  uint8_t *loc_data = (uint8_t*)data;
71 
72  for (ChunkGenerator gen(addr, size, PAGE_SIZE); !gen.done(); gen.next()) {
73  Addr phys;
74 
75  // translate pages into their corresponding frames
76  translateOrDie(gen.addr(), phys);
77 
78  Event *event = cb ? cb->getChunkEvent() : nullptr;
79 
80  (this->*dmaFn)(phys, gen.size(), event, loc_data, delay);
81 
82  loc_data += gen.size();
83  }
84 }
85 
91 void
93 {
99  auto process = sys->threads[0]->getProcessPtr();
100 
101  if (!process->pTable->translate(vaddr, paddr)) {
102  fatal("failed translation: vaddr 0x%x\n", vaddr);
103  }
104 }
HSADevice::hsaPP
HSAPacketProcessor * hsaPP
Definition: hsa_device.hh:116
fatal
#define fatal(...)
This implements a cprintf based fatal() function.
Definition: logging.hh:183
data
const char data[]
Definition: circlebuf.test.cc:47
HSADevice::dmaWriteVirt
void dmaWriteVirt(Addr host_addr, unsigned size, DmaCallback *cb, void *data, Tick delay=0)
Definition: hsa_device.cc:53
Tick
uint64_t Tick
Tick count type.
Definition: types.hh:59
HSADevice::dmaReadVirt
void dmaReadVirt(Addr host_addr, unsigned size, DmaCallback *cb, void *data, Tick delay=0)
Definition: hsa_device.cc:46
PioDevice::sys
System * sys
Definition: io_device.hh:102
DmaDevice::dmaRead
void dmaRead(Addr addr, int size, Event *event, uint8_t *data, uint32_t sid, uint32_t ssid, Tick delay=0)
Definition: dma_device.hh:225
EventManager::schedule
void schedule(Event &event, Tick when)
Definition: eventq.hh:1016
DmaDevice::dmaWrite
void dmaWrite(Addr addr, int size, Event *event, uint8_t *data, uint32_t sid, uint32_t ssid, Tick delay=0)
Definition: dma_device.hh:211
HSAPacketProcessor
Definition: hsa_packet_processor.hh:212
Event
Definition: eventq.hh:248
PAGE_SIZE
#define PAGE_SIZE
Definition: base.cc:60
MipsISA::vaddr
vaddr
Definition: pra_constants.hh:275
MipsISA::event
Bitfield< 10, 5 > event
Definition: pra_constants.hh:297
HSADevice::translateOrDie
void translateOrDie(Addr vaddr, Addr &paddr)
HSADevices will perform DMA operations on VAs, and because page faults are not currently supported fo...
Definition: hsa_device.cc:92
process.hh
DmaCallback::getChunkEvent
Event * getChunkEvent()
Request a chunk event.
Definition: dma_device.hh:310
Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:148
ChunkGenerator::done
bool done() const
Are we done? That is, did the last call to next() advance past the end of the region?
Definition: chunk_generator.hh:138
X86ISA::addr
Bitfield< 3 > addr
Definition: types.hh:80
System::threads
Threads threads
Definition: system.hh:304
HSADevice::hsaPacketProc
HSAPacketProcessor & hsaPacketProc()
Definition: hsa_device.cc:40
DmaCallback
DMA callback class.
Definition: dma_device.hh:257
chunk_generator.hh
HSADevice::dmaVirt
void dmaVirt(DmaFnPtr, Addr host_addr, unsigned size, DmaCallback *cb, void *data, Tick delay=0)
Definition: hsa_device.cc:60
ChunkGenerator
This class takes an arbitrary memory region (address/length pair) and generates a series of appropria...
Definition: chunk_generator.hh:56
curTick
Tick curTick()
The universal simulation clock.
Definition: cur_tick.hh:43
hsa_device.hh

Generated on Tue Mar 23 2021 19:41:26 for gem5 by doxygen 1.8.17