1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438
|
/*******************************************************************************
Copyright (c) 2015-2019 NVIDIA Corporation
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to
deal in the Software without restriction, including without limitation the
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
sell copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
*******************************************************************************/
#include "uvm_tracker.h"
#include "uvm_push.h"
#include "uvm_channel.h"
#include "uvm_kvmalloc.h"
#include "uvm_gpu.h"
#include "uvm_global.h"
#include "uvm_common.h"
#include "uvm_linux.h"
static bool tracker_is_using_static_entries(uvm_tracker_t *tracker)
{
return tracker->max_size == ARRAY_SIZE(tracker->static_entries);
}
static void free_entries(uvm_tracker_t *tracker)
{
if (tracker_is_using_static_entries(tracker))
return;
uvm_kvfree(tracker->dynamic_entries);
}
uvm_tracker_entry_t *uvm_tracker_get_entries(uvm_tracker_t *tracker)
{
if (tracker_is_using_static_entries(tracker)) {
return tracker->static_entries;
}
else {
UVM_ASSERT(tracker->dynamic_entries != NULL);
return tracker->dynamic_entries;
}
}
static uvm_tracker_entry_t *get_new_entry(uvm_tracker_t *tracker)
{
NV_STATUS status = uvm_tracker_reserve(tracker, 1);
if (status != NV_OK)
return NULL;
UVM_ASSERT(tracker->size < tracker->max_size);
return &uvm_tracker_get_entries(tracker)[tracker->size++];
}
NV_STATUS uvm_tracker_init_from(uvm_tracker_t *dst, uvm_tracker_t *src)
{
NV_STATUS status;
uvm_tracker_init(dst);
status = uvm_tracker_overwrite(dst, src);
if (status != NV_OK) {
uvm_tracker_deinit(dst);
uvm_tracker_init(dst);
}
return status;
}
void uvm_tracker_deinit(uvm_tracker_t *tracker)
{
free_entries(tracker);
memset(tracker, 0, sizeof(*tracker));
}
NV_STATUS uvm_tracker_overwrite(uvm_tracker_t *dst, uvm_tracker_t *src)
{
NV_STATUS status;
uvm_tracker_clear(dst);
status = uvm_tracker_reserve(dst, src->size);
if (status != NV_OK)
return status;
dst->size = src->size;
memcpy(uvm_tracker_get_entries(dst),
uvm_tracker_get_entries(src),
src->size * sizeof(*uvm_tracker_get_entries(dst)));
return NV_OK;
}
NV_STATUS uvm_tracker_reserve(uvm_tracker_t *tracker, NvU32 min_free_entries)
{
if (tracker->size + min_free_entries > tracker->max_size) {
// Special case the first resize to jump from 1 all the way to 8.
// This is based on a guess that if a tracker needs more than 1
// entry it likely needs much more.
// TODO: Bug 1764961: Verify that guess.
NvU32 new_max_size = max((NvU32)8, (NvU32)roundup_pow_of_two(tracker->size + min_free_entries));
uvm_tracker_entry_t *new_entries;
if (tracker_is_using_static_entries(tracker)) {
new_entries = uvm_kvmalloc(sizeof(*new_entries) * new_max_size);
if (new_entries)
memcpy(new_entries, tracker->static_entries, sizeof(*new_entries) * tracker->size);
} else {
new_entries = uvm_kvrealloc(tracker->dynamic_entries, sizeof(*new_entries) * new_max_size);
}
if (!new_entries)
return NV_ERR_NO_MEMORY;
tracker->dynamic_entries = new_entries;
tracker->max_size = new_max_size;
}
UVM_ASSERT(tracker->size + min_free_entries <= tracker->max_size);
return NV_OK;
}
NV_STATUS uvm_tracker_add_push(uvm_tracker_t *tracker, uvm_push_t *push)
{
uvm_tracker_entry_t entry;
uvm_push_get_tracker_entry(push, &entry);
return uvm_tracker_add_entry(tracker, &entry);
}
NV_STATUS uvm_tracker_add_entry(uvm_tracker_t *tracker, uvm_tracker_entry_t *new_entry)
{
uvm_tracker_entry_t *tracker_entry;
for_each_tracker_entry(tracker_entry, tracker) {
if (tracker_entry->channel == new_entry->channel) {
tracker_entry->value = max(tracker_entry->value, new_entry->value);
return NV_OK;
}
}
tracker_entry = get_new_entry(tracker);
if (tracker_entry == NULL)
return NV_ERR_NO_MEMORY;
*tracker_entry = *new_entry;
return NV_OK;
}
void uvm_tracker_overwrite_with_entry(uvm_tracker_t *tracker, uvm_tracker_entry_t *entry)
{
NV_STATUS status;
uvm_tracker_clear(tracker);
// An empty tracker always has space for at least one entry so this cannot
// fail.
status = uvm_tracker_add_entry(tracker, entry);
UVM_ASSERT(status == NV_OK);
}
void uvm_tracker_overwrite_with_push(uvm_tracker_t *tracker, uvm_push_t *push)
{
uvm_tracker_entry_t entry;
uvm_push_get_tracker_entry(push, &entry);
uvm_tracker_overwrite_with_entry(tracker, &entry);
}
static NV_STATUS reserve_for_entries_from_tracker(uvm_tracker_t *dst, uvm_tracker_t *src)
{
NvU32 needed_free_entries = 0;
uvm_tracker_entry_t *src_entry, *dst_entry;
for_each_tracker_entry(src_entry, src) {
bool found = false;
for_each_tracker_entry(dst_entry, dst) {
if (dst_entry->channel == src_entry->channel) {
found = true;
break;
}
}
if (!found)
needed_free_entries++;
}
return uvm_tracker_reserve(dst, needed_free_entries);
}
NV_STATUS uvm_tracker_add_tracker(uvm_tracker_t *dst, uvm_tracker_t *src)
{
NV_STATUS status;
uvm_tracker_entry_t *src_entry;
if (src == dst)
return NV_OK;
status = uvm_tracker_reserve(dst, src->size);
if (status == NV_ERR_NO_MEMORY) {
uvm_tracker_remove_completed(dst);
uvm_tracker_remove_completed(src);
status = reserve_for_entries_from_tracker(dst, src);
}
if (status != NV_OK) {
return status;
}
for_each_tracker_entry(src_entry, src) {
status = uvm_tracker_add_entry(dst, src_entry);
UVM_ASSERT_MSG(status == NV_OK, "Expected success with reserved memory but got error %d\n", status);
}
return NV_OK;
}
NV_STATUS uvm_tracker_overwrite_safe(uvm_tracker_t *dst, uvm_tracker_t *src)
{
NV_STATUS status = uvm_tracker_overwrite(dst, src);
if (status == NV_ERR_NO_MEMORY) {
UVM_DBG_PRINT_RL("Failed to overwrite tracker, waiting\n");
status = uvm_tracker_wait(src);
}
return status;
}
NV_STATUS uvm_tracker_add_push_safe(uvm_tracker_t *tracker, uvm_push_t *push)
{
NV_STATUS status = uvm_tracker_add_push(tracker, push);
if (status == NV_ERR_NO_MEMORY) {
UVM_DBG_PRINT_RL("Failed to add push to tracker, waiting\n");
status = uvm_push_wait(push);
}
return status;
}
NV_STATUS uvm_tracker_add_entry_safe(uvm_tracker_t *tracker, uvm_tracker_entry_t *new_entry)
{
NV_STATUS status = uvm_tracker_add_entry(tracker, new_entry);
if (status == NV_ERR_NO_MEMORY) {
UVM_DBG_PRINT_RL("Failed to add entry to tracker, waiting\n");
status = uvm_tracker_wait_for_entry(new_entry);
}
return status;
}
NV_STATUS uvm_tracker_add_tracker_safe(uvm_tracker_t *dst, uvm_tracker_t *src)
{
NV_STATUS status = uvm_tracker_add_tracker(dst, src);
if (status == NV_ERR_NO_MEMORY) {
UVM_DBG_PRINT_RL("Failed to add tracker to tracker, waiting\n");
status = uvm_tracker_wait(src);
}
return status;
}
bool uvm_tracker_is_entry_completed(uvm_tracker_entry_t *tracker_entry)
{
if (!tracker_entry->channel)
return true;
return uvm_channel_is_value_completed(tracker_entry->channel, tracker_entry->value);
}
static void uvm_tracker_entry_print_pending_pushes(uvm_tracker_entry_t *entry)
{
uvm_channel_t *channel = entry->channel;
uvm_gpu_t *gpu = uvm_channel_get_gpu(channel);
UVM_DBG_PRINT("Tracker entry for value %llu (sema VA 0x%llx) channel %s GPU %s\n",
entry->value,
uvm_channel_tracking_semaphore_get_gpu_va(channel),
channel->name,
uvm_gpu_name(gpu));
uvm_channel_print_pending_pushes(channel);
}
static void uvm_tracker_print_pending_pushes(uvm_tracker_t *tracker)
{
uvm_tracker_entry_t *entry;
for_each_tracker_entry(entry, tracker)
uvm_tracker_entry_print_pending_pushes(entry);
}
static NV_STATUS wait_for_entry_with_spin(uvm_tracker_entry_t *tracker_entry, uvm_spin_loop_t *spin)
{
NV_STATUS status = NV_OK;
while (!uvm_tracker_is_entry_completed(tracker_entry) && status == NV_OK) {
if (UVM_SPIN_LOOP(spin) == NV_ERR_TIMEOUT_RETRY)
uvm_tracker_entry_print_pending_pushes(tracker_entry);
status = uvm_channel_check_errors(tracker_entry->channel);
if (status == NV_OK)
status = uvm_global_get_status();
}
if (status != NV_OK) {
UVM_ASSERT(status == uvm_global_get_status());
tracker_entry->channel = NULL;
tracker_entry->value = 0;
}
return status;
}
NV_STATUS uvm_tracker_wait_for_entry(uvm_tracker_entry_t *tracker_entry)
{
uvm_spin_loop_t spin;
uvm_spin_loop_init(&spin);
return wait_for_entry_with_spin(tracker_entry, &spin);
}
NV_STATUS uvm_tracker_wait(uvm_tracker_t *tracker)
{
NV_STATUS status = NV_OK;
uvm_spin_loop_t spin;
uvm_spin_loop_init(&spin);
while (!uvm_tracker_is_completed(tracker) && status == NV_OK) {
if (UVM_SPIN_LOOP(&spin) == NV_ERR_TIMEOUT_RETRY)
uvm_tracker_print_pending_pushes(tracker);
status = uvm_tracker_check_errors(tracker);
}
if (status != NV_OK) {
UVM_ASSERT(status == uvm_global_get_status());
// Just clear the tracker without printing anything extra. If one of the
// entries from this tracker caused a channel error,
// uvm_tracker_check_errors() would have already printed it. And if we
// hit a global error for some other reason, we don't want to spam the
// log with all other pending entries.
//
// See the comment for uvm_tracker_wait() on why the entries are cleared.
uvm_tracker_clear(tracker);
}
return status;
}
NV_STATUS uvm_tracker_wait_for_other_gpus(uvm_tracker_t *tracker, uvm_gpu_t *gpu)
{
NV_STATUS status = NV_OK;
uvm_tracker_entry_t *entry;
uvm_spin_loop_t spin;
uvm_spin_loop_init(&spin);
for_each_tracker_entry(entry, tracker) {
if (uvm_tracker_entry_gpu(entry) == gpu)
continue;
status = wait_for_entry_with_spin(entry, &spin);
if (status != NV_OK)
break;
}
if (status == NV_OK) {
uvm_tracker_remove_completed(tracker);
}
else {
UVM_ASSERT(status == uvm_global_get_status());
uvm_tracker_clear(tracker);
}
return status;
}
NV_STATUS uvm_tracker_check_errors(uvm_tracker_t *tracker)
{
uvm_tracker_entry_t *tracker_entry;
NV_STATUS status = uvm_global_get_status();
if (status != NV_OK)
return status;
for_each_tracker_entry(tracker_entry, tracker) {
status = uvm_channel_check_errors(tracker_entry->channel);
if (status != NV_OK)
return status;
}
return NV_OK;
}
NV_STATUS uvm_tracker_query(uvm_tracker_t *tracker)
{
NV_STATUS status;
bool completed = uvm_tracker_is_completed(tracker);
status = uvm_tracker_check_errors(tracker);
if (status != NV_OK)
return status;
return completed ? NV_OK : NV_WARN_MORE_PROCESSING_REQUIRED;
}
void uvm_tracker_remove_completed(uvm_tracker_t *tracker)
{
NvU32 i = 0;
uvm_tracker_entry_t *entries = uvm_tracker_get_entries(tracker);
// Keep removing completed entries until we run out of entries
while (i < tracker->size) {
if (uvm_tracker_is_entry_completed(&entries[i])) {
--tracker->size;
if (i != tracker->size)
entries[i] = entries[tracker->size];
}
else {
++i;
}
}
}
bool uvm_tracker_is_completed(uvm_tracker_t *tracker)
{
uvm_tracker_remove_completed(tracker);
return tracker->size == 0;
}
uvm_gpu_t *uvm_tracker_entry_gpu(uvm_tracker_entry_t *entry)
{
return uvm_channel_get_gpu(entry->channel);
}
|