gem5  v21.0.1.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
hsa_driver.hh
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 
48 #ifndef __DEV_HSA_HSA_DRIVER_HH__
49 #define __DEV_HSA_HSA_DRIVER_HH__
50 
51 #include <unordered_map>
52 
53 #include "base/types.hh"
54 #include "cpu/thread_context.hh"
55 #include "sim/emul_driver.hh"
56 
57 struct HSADriverParams;
58 class HSADevice;
59 class PortProxy;
60 
61 class HSADriver : public EmulatedDriver
62 {
63  public:
64  HSADriver(const HSADriverParams &p);
65 
66  int open(ThreadContext *tc, int mode, int flags);
67  Addr mmap(ThreadContext *tc, Addr start, uint64_t length,
68  int prot, int tgt_flags, int tgt_fd, off_t offset);
69  virtual void signalWakeupEvent(uint32_t event_id);
70  class DriverWakeupEvent : public Event
71  {
72  public:
73  DriverWakeupEvent(HSADriver *hsa_driver, ThreadContext *thrd_cntxt)
74  : driver(hsa_driver), tc(thrd_cntxt) {}
75  void process() override;
76  const char *description() const override;
77  void scheduleWakeup(Tick wakeup_delay);
78  private:
81  };
83  public:
85  mailBoxPtr(0), tc(nullptr), threadWaiting(false), setEvent(false)
86  {}
87  // Mail box pointer for this address. Current implementation does not
88  // use this mailBoxPtr to notify events but directly calls
89  // signalWakeupEvent from dispatcher (GPU) to notify event. So,
90  // currently this mailBoxPtr is not used. But a future implementation
91  // may communicate to the driver using mailBoxPtr.
93  // Thread context waiting on this event. We do not support multiple
94  // threads waiting on an event currently.
96  // threadWaiting = true, if some thread context is waiting on this
97  // event. A thread context waiting on this event is put to sleep.
99  // setEvent = true, if this event is triggered but when this event
100  // triggered, no thread context was waiting on it. In the future, some
101  // thread context will try to wait on this event but since event has
102  // already happened, we will not allow that thread context to go to
103  // sleep. The above mentioned scenario can happen when the waiting
104  // thread and wakeup thread race on this event and the wakeup thread
105  // beat the waiting thread at the driver.
106  bool setEvent;
107  };
108  typedef class EventTableEntry ETEntry;
109 
110  protected:
112  uint32_t eventSlotIndex;
113  // Event table that keeps track of events. It is indexed with event ID.
114  std::unordered_map<uint32_t, ETEntry> ETable;
115 
116  // TCEvents map keeps track of the events that can wakeup this thread. When
117  // multiple events can wake up this thread, this data structure helps to
118  // reset all events when one of those events wake up this thread. The
119  // signal events that can wake up this thread are stored in signalEvents
120  // whereas the timer wakeup event is stored in timerEvent.
121  class EventList {
122  public:
123  EventList() : driver(nullptr), timerEvent(nullptr, nullptr) {}
124  EventList(HSADriver *hsa_driver, ThreadContext *thrd_cntxt)
125  : driver(hsa_driver), timerEvent(hsa_driver, thrd_cntxt)
126  { }
127  void clearEvents() {
128  assert(driver);
129  for (auto event : signalEvents) {
130  assert(event < driver->eventSlotIndex);
131  panic_if(driver->ETable[event].tc->status() == \
133  "Thread should not be suspended\n");
134  driver->ETable[event].tc = nullptr;
135  driver->ETable[event].threadWaiting = false;
136  }
137  signalEvents.clear();
138  if (timerEvent.scheduled()) {
140  }
141  }
144  // The set of events that can wake up the same thread.
145  std::set<uint32_t> signalEvents;
146  };
147  std::unordered_map<ThreadContext *, EventList> TCEvents;
148 
153  uint32_t queueId;
154 
155  void allocateQueue(ThreadContext *tc, Addr ioc_buf);
156 };
157 
158 #endif // __DEV_HSA_HSA_DRIVER_HH__
Event::scheduled
bool scheduled() const
Determine if the current event is scheduled.
Definition: eventq.hh:462
HSADriver::EventList::signalEvents
std::set< uint32_t > signalEvents
Definition: hsa_driver.hh:145
HSADriver::DriverWakeupEvent::process
void process() override
Definition: hsa_driver.cc:184
Tick
uint64_t Tick
Tick count type.
Definition: types.hh:59
HSADriver::DriverWakeupEvent::scheduleWakeup
void scheduleWakeup(Tick wakeup_delay)
Definition: hsa_driver.cc:150
HSADriver::EventTableEntry
Definition: hsa_driver.hh:82
EventManager::deschedule
void deschedule(Event &event)
Definition: eventq.hh:1025
HSADriver::EventTableEntry::tc
ThreadContext * tc
Definition: hsa_driver.hh:95
HSADriver::HSADriver
HSADriver(const HSADriverParams &p)
Definition: hsa_driver.cc:47
HSADriver::DriverWakeupEvent::driver
HSADriver * driver
Definition: hsa_driver.hh:79
HSADriver::TCEvents
std::unordered_map< ThreadContext *, EventList > TCEvents
Definition: hsa_driver.hh:147
HSADriver::EventTableEntry::EventTableEntry
EventTableEntry()
Definition: hsa_driver.hh:84
EmulatedDriver
EmulatedDriver is an abstract base class for fake SE-mode device drivers.
Definition: emul_driver.hh:52
ThreadContext
ThreadContext is the external interface to all thread state for anything outside of the CPU.
Definition: thread_context.hh:88
HSADriver::EventTableEntry::mailBoxPtr
Addr mailBoxPtr
Definition: hsa_driver.hh:92
Event
Definition: eventq.hh:248
HSADriver::queueId
uint32_t queueId
Definition: hsa_driver.hh:153
HSADriver::DriverWakeupEvent::tc
ThreadContext * tc
Definition: hsa_driver.hh:80
MipsISA::event
Bitfield< 10, 5 > event
Definition: pra_constants.hh:297
ArmISA::mode
Bitfield< 4, 0 > mode
Definition: miscregs_types.hh:70
HSADriver::DriverWakeupEvent::description
const char * description() const override
Return a C string describing the event.
Definition: hsa_driver.cc:144
X86ISA::prot
Bitfield< 7 > prot
Definition: misc.hh:582
HSADriver::EventTableEntry::threadWaiting
bool threadWaiting
Definition: hsa_driver.hh:98
Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:148
HSADriver::EventList::EventList
EventList()
Definition: hsa_driver.hh:123
panic_if
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
Definition: logging.hh:197
ThreadContext::Suspended
@ Suspended
Temporarily inactive.
Definition: thread_context.hh:107
PortProxy
This object is a proxy for a port or other object which implements the functional response protocol,...
Definition: port_proxy.hh:80
HSADriver::eventSlotIndex
uint32_t eventSlotIndex
Definition: hsa_driver.hh:112
types.hh
HSADriver::EventList::driver
HSADriver * driver
Definition: hsa_driver.hh:142
HSADriver::EventList::EventList
EventList(HSADriver *hsa_driver, ThreadContext *thrd_cntxt)
Definition: hsa_driver.hh:124
emul_driver.hh
HSADriver::ETEntry
class EventTableEntry ETEntry
Definition: hsa_driver.hh:108
HSADriver::signalWakeupEvent
virtual void signalWakeupEvent(uint32_t event_id)
Definition: hsa_driver.cc:157
HSADriver::DriverWakeupEvent::DriverWakeupEvent
DriverWakeupEvent(HSADriver *hsa_driver, ThreadContext *thrd_cntxt)
Definition: hsa_driver.hh:73
HSADriver::EventList::clearEvents
void clearEvents()
Definition: hsa_driver.hh:127
HSADriver
Definition: hsa_driver.hh:61
MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:323
HSADriver::ETable
std::unordered_map< uint32_t, ETEntry > ETable
Definition: hsa_driver.hh:114
HSADriver::device
HSADevice * device
HSA agent (device) that is controled by this driver.
Definition: hsa_driver.hh:152
HSADriver::EventTableEntry::setEvent
bool setEvent
Definition: hsa_driver.hh:106
HSADriver::eventPage
Addr eventPage
Definition: hsa_driver.hh:111
HSADriver::allocateQueue
void allocateQueue(ThreadContext *tc, Addr ioc_buf)
Forward relevant parameters to packet processor; queueID is used to link doorbell.
Definition: hsa_driver.cc:128
HSADriver::DriverWakeupEvent
Definition: hsa_driver.hh:70
HSADevice
Definition: hsa_device.hh:43
HSADriver::EventList::timerEvent
DriverWakeupEvent timerEvent
Definition: hsa_driver.hh:143
thread_context.hh
HSADriver::mmap
Addr mmap(ThreadContext *tc, Addr start, uint64_t length, int prot, int tgt_flags, int tgt_fd, off_t offset)
Currently, mmap() will simply setup a mapping for the associated device's packet processor's doorbell...
Definition: hsa_driver.cc:70
HSADriver::EventList
Definition: hsa_driver.hh:121
HSADriver::open
int open(ThreadContext *tc, int mode, int flags)
Create an FD entry for the KFD inside of the owning process.
Definition: hsa_driver.cc:56
ArmISA::offset
Bitfield< 23, 0 > offset
Definition: types.hh:153

Generated on Tue Jun 22 2021 15:28:28 for gem5 by doxygen 1.8.17