gem5  v21.2.1.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
hw_scheduler.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2016-2017 Advanced Micro Devices, Inc.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are met:
7  *
8  * 1. Redistributions of source code must retain the above copyright notice,
9  * this list of conditions and the following disclaimer.
10  *
11  * 2. Redistributions in binary form must reproduce the above copyright notice,
12  * this list of conditions and the following disclaimer in the documentation
13  * and/or other materials provided with the distribution.
14  *
15  * 3. Neither the name of the copyright holder nor the names of its
16  * contributors may be used to endorse or promote products derived from this
17  * software without specific prior written permission.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
23  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29  * POSSIBILITY OF SUCH DAMAGE.
30  */
31 
32 #include "dev/hsa/hw_scheduler.hh"
33 
34 #include "base/compiler.hh"
35 #include "base/trace.hh"
36 #include "debug/HSAPacketProcessor.hh"
37 #include "sim/cur_tick.hh"
38 
39 #define HWSCHDLR_EVENT_DESCRIPTION_GENERATOR(XEVENT) \
40  const char* \
41  HWScheduler::XEVENT::description() const \
42  { \
43  return #XEVENT; \
44  }
45 
46 namespace gem5
47 {
48 
49 HWSCHDLR_EVENT_DESCRIPTION_GENERATOR(SchedulerWakeupEvent)
50 
51 void
53 {
54  hwSchdlr->wakeup();
55 }
56 
57 void
59 {
60  // The scheduler unmaps an idle queue from the
61  // registered qList and maps a new queue
62  // to the registered list from the active list.
63  // For this implementation, an idle queue means
64  // a queue that does not have any outstanding dispatch
65  // at the time of this scheduler's wakeup
66 
68  schedWakeup();
69 }
70 
71 void
73 {
74  // If atleast there is one queue that is not registered
75  // then wakeup again
76  if (!schedWakeupEvent.scheduled() &&
77  regdListMap.size() < activeList.size()) {
80  "Scheduling wakeup at %lu\n", (curTick() + wakeupDelay));
81  }
82 }
83 
84 void
85 HWScheduler::registerNewQueue(uint64_t hostReadIndexPointer,
86  uint64_t basePointer,
87  uint64_t queue_id,
88  uint32_t size, int doorbellSize,
89  GfxVersion gfxVersion)
90 {
91  assert(queue_id < MAX_ACTIVE_QUEUES);
92  // Map queue ID to doorbell.
93  // We are only using offset to pio base address as doorbell
94  // We use the same mapping function used by hsa runtime to do this mapping
95  Addr db_offset = queue_id * doorbellSize;
96  if (dbMap.find(db_offset) != dbMap.end()) {
97  panic("Creating an already existing queue (queueID %d)", queue_id);
98  }
99 
100  // Populate doorbell map
101  dbMap[db_offset] = queue_id;
102 
103  if (queue_id >= MAX_ACTIVE_QUEUES) {
104  panic("Attempting to create a queue (queueID %d)" \
105  " beyond PIO range", queue_id);
106  }
107 
108  HSAQueueDescriptor* q_desc =
109  new HSAQueueDescriptor(basePointer, db_offset,
110  hostReadIndexPointer, size, gfxVersion);
111  AQLRingBuffer* aql_buf =
113  QCntxt q_cntxt(q_desc, aql_buf);
114  activeList[dbMap[db_offset]] = q_cntxt;
115 
116  // Check if this newly created queue can be directly mapped
117  // to registered queue list
118  [[maybe_unused]] bool register_q =
119  mapQIfSlotAvlbl(queue_id, aql_buf, q_desc);
120  schedWakeup();
122  "%s: offset = %p, qID = %d, is_regd = %s, AL size %d\n",
123  __FUNCTION__, db_offset, queue_id,
124  (register_q) ? "true" : "false", dbMap.size());
125 }
126 
127 bool
129 {
131  "Trying to find empty HW queue, @ %s\n", __FUNCTION__);
132  if (regdListMap.size() < hsaPP->numHWQueues) {
133  for (int emptyQId = 0; emptyQId < hsaPP->numHWQueues; emptyQId++) {
134  HSAQueueDescriptor* qDesc =
136  // If qDesc is empty, we find an empty HW queue
137  if (qDesc == NULL) {
138  return true;
139  }
140  nextRLId = (nextRLId + 1) % hsaPP->numHWQueues;
141  }
142  // We should be able to find an empty slot in registered list
143  // So, we should not reach here
144  panic("Cannot find empty queue\n");
145  }
146  return false;
147 }
148 
149 bool
151  HSAQueueDescriptor* q_desc)
152 {
154  "Trying to map new queue, @ %s\n", __FUNCTION__);
155  if (!findEmptyHWQ()) {
156  return false;
157  }
158  addQCntxt(q_id, aql_buf, q_desc);
160  updateRRVars(q_id, nextRLId);
161  return true;
162 }
163 
164 void
166 {
167  // There maybe AQL packets in the mapped queue waiting
168  // to be fetched. Invoke the logic to fetch AQL packets
170  // Schedule the newly mapped queue
171  if (hsaPP->regdQList[nextRLId]->dispPending())
173 }
174 
175 void
176 HWScheduler::addQCntxt(uint32_t al_idx, AQLRingBuffer* aql_buf,
177  HSAQueueDescriptor* q_desc)
178 {
179  assert(hsaPP->getRegdListEntry(nextRLId)->qCntxt.qDesc == NULL);
180  assert(hsaPP->getRegdListEntry(nextRLId)->qCntxt.aqlBuf == NULL);
181  // Move the context
184  // Add the mapping to registered list map
185  regdListMap[al_idx] = nextRLId;
186  DPRINTF(HSAPacketProcessor, "Mapped HSA queue %d to hw queue %d: @ %s\n",
187  al_idx, nextRLId, __FUNCTION__);
188 }
189 
190 bool
192 {
194  "Trying to map next queue, @ %s", __FUNCTION__);
195  // Identify the next queue, if there is nothing to
196  // map, return false
197  if (!findNextActiveALQ()) {
198  return false;
199  }
200  HSAQueueDescriptor* q_desc = activeList[nextALId].qDesc;
201  AQLRingBuffer* aql_buf = activeList[nextALId].aqlBuf;
202  // If there is empty slot available, use that slot
203  if(mapQIfSlotAvlbl(nextALId, aql_buf, q_desc)) {
204  return true;
205  }
206  // There is no empty slot to map this queue. So, we need to
207  // unmap a queue from registered list and find a slot.
208  // If nothing can be unmapped now, return false
209  if (!unmapQFromRQ()) {
210  return false;
211  }
212  // One queue is unmapped from registered list and that queueID
213  // is stored in nextRLId. We will map this queue to that unmapped slot
214  addQCntxt(nextALId, aql_buf, q_desc);
217  return true;
218 }
219 
220 void
221 HWScheduler::updateRRVars(uint32_t al_idx, uint32_t rl_idx)
222 {
223  nextALId = (al_idx + 1) % MAX_ACTIVE_QUEUES;
224  nextRLId = (rl_idx + 1) % hsaPP->numHWQueues;
225 }
226 
227 bool
229 {
230  // Identify the next idle queue, if there is no
231  // idle queue, we cannot unmap
232  if (!findNextIdleRLQ()) {
233  return false;
234  }
235  removeQCntxt();
236  return true;
237 }
238 
239 void
241 {
242  // The nextRLId gives the registered queue that is to be unmapped.
243  // We can find the corresponding queue_id from the doorbellPointer
244  Addr db_offset =
248  // Here, we are unmappping a queue wihtout waiting for the outstanding
249  // dependency signal reads to complete. We will discard any outstanding
250  // reads and will reset the signal values here.
253  uint32_t al_idx = dbMap[db_offset];
254  assert(regdListMap[al_idx] == nextRLId);
255  // Unmap from regdListMap.
256  regdListMap.erase(al_idx);
257 }
258 
259 bool
261 {
262  for (int activeQId = 0; activeQId < MAX_ACTIVE_QUEUES; activeQId++) {
263  uint32_t al_id = (nextALId + activeQId) % MAX_ACTIVE_QUEUES;
264  auto aqlmap_iter = activeList.find(al_id);
265  if (aqlmap_iter != activeList.end()) {
266  // If this queue is already mapped
267  if (regdListMap.find(al_id) != regdListMap.end()) {
268  continue;
269  } else {
271  "Next Active ALQ %d (current %d), max ALQ %d\n",
272  al_id, nextALId, MAX_ACTIVE_QUEUES);
273  nextALId = al_id;
274  return true;
275  }
276  }
277  }
278  return false;
279 }
280 
281 bool
283 {
284  for (int regdQId = 0; regdQId < hsaPP->numHWQueues; regdQId++) {
285  uint32_t rl_idx = (nextRLId + regdQId) % hsaPP->numHWQueues;
286  if (isRLQIdle(rl_idx)) {
287  nextRLId = rl_idx;
288  return true;
289  }
290  }
291  return false;
292 }
293 
294 // This function could be moved to packet processor
295 bool
296 HWScheduler::isRLQIdle(uint32_t rl_idx)
297 {
299  "@ %s, analyzing hw queue %d\n", __FUNCTION__, rl_idx);
301 
302  // If there a pending DMA to this registered queue
303  // then the queue is not idle
304  if (qDesc->dmaInProgress) {
305  return false;
306  }
307 
308  // Since packet completion stage happens only after kernel completion
309  // we need to keep the queue mapped till all the outstanding kernels
310  // from that queue are finished
311  if (hsaPP->inFlightPkts(rl_idx)) {
312  return false;
313  }
314 
315  return true;
316 }
317 
318 void
319 HWScheduler::write(Addr db_addr, uint64_t doorbell_reg)
320 {
321  auto dbmap_iter = dbMap.find(db_addr);
322  if (dbmap_iter == dbMap.end()) {
323  panic("Writing to a non-existing queue (db_offset %x)", db_addr);
324  }
325  uint32_t al_idx = dbMap[db_addr];
326  // Modify the write pointer
327  activeList[al_idx].qDesc->writeIndex = doorbell_reg;
328  // If this queue is mapped, then start DMA to fetch the
329  // AQL packet
330  if (regdListMap.find(al_idx) != regdListMap.end()) {
332  }
333 }
334 
335 void
336 HWScheduler::unregisterQueue(uint64_t queue_id, int doorbellSize)
337 {
338  Addr db_offset = queue_id * doorbellSize;
339  auto dbmap_iter = dbMap.find(db_offset);
340  if (dbmap_iter == dbMap.end()) {
341  panic("Destroying a non-existing queue (db_offset %x)",
342  db_offset);
343  }
344  uint32_t al_idx = dbMap[db_offset];
345  assert(dbMap[db_offset] == dbmap_iter->second);
346  if (!activeList[al_idx].qDesc->isEmpty()) {
347  // According to HSA runtime specification says, deleting
348  // a queue before it is fully processed can lead to undefined
349  // behavior and it is the application's responsibility to
350  // avoid this situation.
351  // Even completion signal is not a sufficient indication for a
352  // fully processed queue; for example completion signal may be
353  // asserted when a read pointer update is in progress
354  warn("Destroying a non-empty queue");
355  }
356  delete activeList[al_idx].qDesc;
357  delete activeList[al_idx].aqlBuf;
358  activeList.erase(al_idx);
359  // Unmap doorbell from doorbell map
360  dbMap.erase(db_offset);
361  if (regdListMap.find(al_idx) != regdListMap.end()) {
362  uint32_t rl_idx = regdListMap[al_idx];
363  hsaPP->getRegdListEntry(rl_idx)->qCntxt.aqlBuf = NULL;
364  hsaPP->getRegdListEntry(rl_idx)->qCntxt.qDesc = NULL;
367  assert(!hsaPP->getRegdListEntry(rl_idx)->aqlProcessEvent.scheduled());
368  regdListMap.erase(al_idx);
369  // A registered queue is released, let us try to map
370  // a queue to that slot
371  contextSwitchQ();
372  }
373  schedWakeup();
374 }
375 
376 } // namespace gem5
gem5::HWScheduler::SchedulerWakeupEvent::process
virtual void process()
Definition: hw_scheduler.cc:52
gem5::HWScheduler::nextRLId
uint32_t nextRLId
Definition: hw_scheduler.hh:107
gem5::curTick
Tick curTick()
The universal simulation clock.
Definition: cur_tick.hh:46
gem5::HWScheduler::removeQCntxt
void removeQCntxt()
Definition: hw_scheduler.cc:240
gem5::HSAPacketProcessor::schedAQLProcessing
void schedAQLProcessing(uint32_t rl_idx)
Definition: hsa_packet_processor.cc:255
warn
#define warn(...)
Definition: logging.hh:246
gem5::HSAPacketProcessor::RQLEntry::qCntxt
QCntxt qCntxt
Definition: hsa_packet_processor.hh:303
gem5::HSAPacketProcessor::SignalState::resetSigVals
void resetSigVals()
Definition: hsa_packet_processor.hh:277
gem5::HWScheduler::dbMap
std::map< Addr, uint32_t > dbMap
Definition: hw_scheduler.hh:94
gem5::HWScheduler::findEmptyHWQ
bool findEmptyHWQ()
Definition: hw_scheduler.cc:128
gem5::HWScheduler::wakeup
void wakeup()
Definition: hw_scheduler.cc:58
gem5::HWScheduler::unmapQFromRQ
bool unmapQFromRQ()
Definition: hw_scheduler.cc:228
gem5::HWScheduler::findNextActiveALQ
bool findNextActiveALQ()
Definition: hw_scheduler.cc:260
cur_tick.hh
gem5::HSAPacketProcessor::inFlightPkts
uint64_t inFlightPkts(uint32_t queId)
Definition: hsa_packet_processor.hh:334
gem5::EventManager::schedule
void schedule(Event &event, Tick when)
Definition: eventq.hh:1019
gem5::HSAPacketProcessor::SignalState::discardRead
bool discardRead
Definition: hsa_packet_processor.hh:273
hw_scheduler.hh
gem5::HSAPacketProcessor::getCommandsFromHost
void getCommandsFromHost(int pid, uint32_t rl_idx)
Definition: hsa_packet_processor.cc:478
gem5::HWScheduler::isRLQIdle
bool isRLQIdle(uint32_t rl_idx)
Definition: hw_scheduler.cc:296
gem5::HWScheduler::contextSwitchQ
bool contextSwitchQ()
Definition: hw_scheduler.cc:191
HWSCHDLR_EVENT_DESCRIPTION_GENERATOR
#define HWSCHDLR_EVENT_DESCRIPTION_GENERATOR(XEVENT)
Definition: hw_scheduler.cc:39
gem5::HSAQueueDescriptor::dmaInProgress
bool dmaInProgress
Definition: hsa_packet_processor.hh:86
gem5::HWScheduler::schedWakeup
void schedWakeup()
Definition: hw_scheduler.cc:72
gem5::Named::name
virtual std::string name() const
Definition: named.hh:47
gem5::HSAPacketProcessor
Definition: hsa_packet_processor.hh:249
DPRINTF
#define DPRINTF(x,...)
Definition: trace.hh:186
gem5::HSAPacketProcessor::getRegdListEntry
class RQLEntry * getRegdListEntry(uint32_t queId)
Definition: hsa_packet_processor.hh:328
gem5::QCntxt
Definition: hsa_packet_processor.hh:237
gem5::HSAPacketProcessor::RQLEntry::depSignalRdState
SignalState depSignalRdState
Definition: hsa_packet_processor.hh:306
NUM_DMA_BUFS
#define NUM_DMA_BUFS
Definition: hsa_packet_processor.hh:50
gem5::HSAQueueDescriptor
Definition: hsa_packet_processor.hh:76
compiler.hh
gem5::HSAPacketProcessor::numHWQueues
int numHWQueues
Definition: hsa_packet_processor.hh:340
gem5::HWScheduler::unregisterQueue
void unregisterQueue(uint64_t queue_id, int doorbellSize)
Definition: hw_scheduler.cc:336
gem5::HWScheduler::mapQIfSlotAvlbl
bool mapQIfSlotAvlbl(uint32_t al_idx, AQLRingBuffer *aql_buf, HSAQueueDescriptor *q_desc)
Definition: hw_scheduler.cc:150
gem5::HSAQueueDescriptor::doorbellPointer
uint64_t doorbellPointer
Definition: hsa_packet_processor.hh:80
gem5::Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:147
gem5::HWScheduler::findNextIdleRLQ
bool findNextIdleRLQ()
Definition: hw_scheduler.cc:282
gem5::HWScheduler::activeList
std::map< uint32_t, QCntxt > activeList
Definition: hw_scheduler.hh:91
gem5::HWScheduler::registerNewQueue
void registerNewQueue(uint64_t hostReadIndexPointer, uint64_t basePointer, uint64_t queue_id, uint32_t size, int doorbellSize, GfxVersion gfxVersion)
Definition: hw_scheduler.cc:85
gem5::HWScheduler::addQCntxt
void addQCntxt(uint32_t al_idx, AQLRingBuffer *aql_buf, HSAQueueDescriptor *q_desc)
Definition: hw_scheduler.cc:176
gem5::QCntxt::aqlBuf
AQLRingBuffer * aqlBuf
Definition: hsa_packet_processor.hh:240
gem5::HSAPacketProcessor::regdQList
std::vector< class RQLEntry * > regdQList
Definition: hsa_packet_processor.hh:316
gem5::HWScheduler::nextALId
uint32_t nextALId
Definition: hw_scheduler.hh:106
gem5::HWScheduler::hsaPP
HSAPacketProcessor * hsaPP
Definition: hw_scheduler.hh:99
gem5::HWScheduler::scheduleAndWakeupMappedQ
void scheduleAndWakeupMappedQ()
Definition: hw_scheduler.cc:165
gem5::AQLRingBuffer
Internal ring buffer which is used to prefetch/store copies of the in-memory HSA ring buffer.
Definition: hsa_packet_processor.hh:154
gem5::HWScheduler::wakeupDelay
const Tick wakeupDelay
Definition: hw_scheduler.hh:108
gem5::HWScheduler::updateRRVars
void updateRRVars(uint32_t al_idx, uint32_t rl_idx)
Definition: hw_scheduler.cc:221
gem5::QCntxt::qDesc
HSAQueueDescriptor * qDesc
Definition: hsa_packet_processor.hh:239
gem5::HWScheduler::SchedulerWakeupEvent::hwSchdlr
HWScheduler * hwSchdlr
Definition: hw_scheduler.hh:69
gem5::HWScheduler::schedWakeupEvent
SchedulerWakeupEvent schedWakeupEvent
Definition: hw_scheduler.hh:109
trace.hh
gem5::HWScheduler::write
void write(Addr db_addr, uint64_t doorbell_reg)
Definition: hw_scheduler.cc:319
gem5
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Definition: tlb.cc:60
gem5::HWScheduler::regdListMap
std::map< uint32_t, uint32_t > regdListMap
Definition: hw_scheduler.hh:98
gem5::Event::scheduled
bool scheduled() const
Determine if the current event is scheduled.
Definition: eventq.hh:465
panic
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:178
MAX_ACTIVE_QUEUES
#define MAX_ACTIVE_QUEUES
Definition: hw_scheduler.hh:45
gem5::HSAPacketProcessor::RQLEntry::aqlProcessEvent
QueueProcessEvent aqlProcessEvent
Definition: hsa_packet_processor.hh:307

Generated on Tue Feb 8 2022 11:47:07 for gem5 by doxygen 1.8.17