1 /* 2 * Copyright 2018 Advanced Micro Devices, Inc. 3 * 4 * Permission is hereby granted, free of charge, to any person obtaining a 5 * copy of this software and associated documentation files (the "Software"), 6 * to deal in the Software without restriction, including without limitation 7 * the rights to use, copy, modify, merge, publish, distribute, sublicense, 8 * and/or sell copies of the Software, and to permit persons to whom the 9 * Software is furnished to do so, subject to the following conditions: 10 * 11 * The above copyright notice and this permission notice shall be included in 12 * all copies or substantial portions of the Software. 13 * 14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR 18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 20 * OTHER DEALINGS IN THE SOFTWARE. 21 * 22 * 23 */ 24 #include <linux/debugfs.h> 25 #include <linux/list.h> 26 #include <linux/module.h> 27 #include <linux/uaccess.h> 28 #include <linux/reboot.h> 29 #include <linux/syscalls.h> 30 31 #include "amdgpu.h" 32 #include "amdgpu_ras.h" 33 #include "amdgpu_atomfirmware.h" 34 #include "amdgpu_xgmi.h" 35 #include "ivsrcid/nbio/irqsrcs_nbif_7_4.h" 36 #include "atom.h" 37 38 static const char *RAS_FS_NAME = "ras"; 39 40 const char *ras_error_string[] = { 41 "none", 42 "parity", 43 "single_correctable", 44 "multi_uncorrectable", 45 "poison", 46 }; 47 48 const char *ras_block_string[] = { 49 "umc", 50 "sdma", 51 "gfx", 52 "mmhub", 53 "athub", 54 "pcie_bif", 55 "hdp", 56 "xgmi_wafl", 57 "df", 58 "smn", 59 "sem", 60 "mp0", 61 "mp1", 62 "fuse", 63 }; 64 65 #define ras_err_str(i) (ras_error_string[ffs(i)]) 66 #define ras_block_str(i) (ras_block_string[i]) 67 68 #define RAS_DEFAULT_FLAGS (AMDGPU_RAS_FLAG_INIT_BY_VBIOS) 69 70 /* inject address is 52 bits */ 71 #define RAS_UMC_INJECT_ADDR_LIMIT (0x1ULL << 52) 72 73 /* typical ECC bad page rate(1 bad page per 100MB VRAM) */ 74 #define RAS_BAD_PAGE_RATE (100 * 1024 * 1024ULL) 75 76 enum amdgpu_ras_retire_page_reservation { 77 AMDGPU_RAS_RETIRE_PAGE_RESERVED, 78 AMDGPU_RAS_RETIRE_PAGE_PENDING, 79 AMDGPU_RAS_RETIRE_PAGE_FAULT, 80 }; 81 82 atomic_t amdgpu_ras_in_intr = ATOMIC_INIT(0); 83 84 static bool amdgpu_ras_check_bad_page_unlock(struct amdgpu_ras *con, 85 uint64_t addr); 86 static bool amdgpu_ras_check_bad_page(struct amdgpu_device *adev, 87 uint64_t addr); 88 89 void amdgpu_ras_set_error_query_ready(struct amdgpu_device *adev, bool ready) 90 { 91 if (adev && amdgpu_ras_get_context(adev)) 92 amdgpu_ras_get_context(adev)->error_query_ready = ready; 93 } 94 95 static bool amdgpu_ras_get_error_query_ready(struct amdgpu_device *adev) 96 { 97 if (adev && amdgpu_ras_get_context(adev)) 98 return amdgpu_ras_get_context(adev)->error_query_ready; 99 100 return false; 101 } 102 103 static int amdgpu_reserve_page_direct(struct amdgpu_device *adev, uint64_t address) 104 { 105 struct ras_err_data err_data = {0, 0, 0, NULL}; 106 struct eeprom_table_record err_rec; 107 108 if ((address >= adev->gmc.mc_vram_size) || 109 (address >= RAS_UMC_INJECT_ADDR_LIMIT)) { 110 dev_warn(adev->dev, 111 "RAS WARN: input address 0x%llx is invalid.\n", 112 address); 113 return -EINVAL; 114 } 115 116 if (amdgpu_ras_check_bad_page(adev, address)) { 117 dev_warn(adev->dev, 118 "RAS WARN: 0x%llx has already been marked as bad page!\n", 119 address); 120 return 0; 121 } 122 123 memset(&err_rec, 0x0, sizeof(struct eeprom_table_record)); 124 125 err_rec.address = address; 126 err_rec.retired_page = address >> AMDGPU_GPU_PAGE_SHIFT; 127 err_rec.ts = (uint64_t)ktime_get_real_seconds(); 128 err_rec.err_type = AMDGPU_RAS_EEPROM_ERR_NON_RECOVERABLE; 129 130 err_data.err_addr = &err_rec; 131 err_data.err_addr_cnt = 1; 132 133 if (amdgpu_bad_page_threshold != 0) { 134 amdgpu_ras_add_bad_pages(adev, err_data.err_addr, 135 err_data.err_addr_cnt); 136 amdgpu_ras_save_bad_pages(adev); 137 } 138 139 dev_warn(adev->dev, "WARNING: THIS IS ONLY FOR TEST PURPOSES AND WILL CORRUPT RAS EEPROM\n"); 140 dev_warn(adev->dev, "Clear EEPROM:\n"); 141 dev_warn(adev->dev, " echo 1 > /sys/kernel/debug/dri/0/ras/ras_eeprom_reset\n"); 142 143 return 0; 144 } 145 146 static ssize_t amdgpu_ras_debugfs_read(struct file *f, char __user *buf, 147 size_t size, loff_t *pos) 148 { 149 struct ras_manager *obj = (struct ras_manager *)file_inode(f)->i_private; 150 struct ras_query_if info = { 151 .head = obj->head, 152 }; 153 ssize_t s; 154 char val[128]; 155 156 if (amdgpu_ras_query_error_status(obj->adev, &info)) 157 return -EINVAL; 158 159 s = snprintf(val, sizeof(val), "%s: %lu\n%s: %lu\n", 160 "ue", info.ue_count, 161 "ce", info.ce_count); 162 if (*pos >= s) 163 return 0; 164 165 s -= *pos; 166 s = min_t(u64, s, size); 167 168 169 if (copy_to_user(buf, &val[*pos], s)) 170 return -EINVAL; 171 172 *pos += s; 173 174 return s; 175 } 176 177 static const struct file_operations amdgpu_ras_debugfs_ops = { 178 .owner = THIS_MODULE, 179 .read = amdgpu_ras_debugfs_read, 180 .write = NULL, 181 .llseek = default_llseek 182 }; 183 184 static int amdgpu_ras_find_block_id_by_name(const char *name, int *block_id) 185 { 186 int i; 187 188 for (i = 0; i < ARRAY_SIZE(ras_block_string); i++) { 189 *block_id = i; 190 if (strcmp(name, ras_block_str(i)) == 0) 191 return 0; 192 } 193 return -EINVAL; 194 } 195 196 static int amdgpu_ras_debugfs_ctrl_parse_data(struct file *f, 197 const char __user *buf, size_t size, 198 loff_t *pos, struct ras_debug_if *data) 199 { 200 ssize_t s = min_t(u64, 64, size); 201 char str[65]; 202 char block_name[33]; 203 char err[9] = "ue"; 204 int op = -1; 205 int block_id; 206 uint32_t sub_block; 207 u64 address, value; 208 209 if (*pos) 210 return -EINVAL; 211 *pos = size; 212 213 memset(str, 0, sizeof(str)); 214 memset(data, 0, sizeof(*data)); 215 216 if (copy_from_user(str, buf, s)) 217 return -EINVAL; 218 219 if (sscanf(str, "disable %32s", block_name) == 1) 220 op = 0; 221 else if (sscanf(str, "enable %32s %8s", block_name, err) == 2) 222 op = 1; 223 else if (sscanf(str, "inject %32s %8s", block_name, err) == 2) 224 op = 2; 225 else if (strstr(str, "retire_page") != NULL) 226 op = 3; 227 else if (str[0] && str[1] && str[2] && str[3]) 228 /* ascii string, but commands are not matched. */ 229 return -EINVAL; 230 231 if (op != -1) { 232 if (op == 3) { 233 if (sscanf(str, "%*s 0x%llx", &address) != 1 && 234 sscanf(str, "%*s %llu", &address) != 1) 235 return -EINVAL; 236 237 data->op = op; 238 data->inject.address = address; 239 240 return 0; 241 } 242 243 if (amdgpu_ras_find_block_id_by_name(block_name, &block_id)) 244 return -EINVAL; 245 246 data->head.block = block_id; 247 /* only ue and ce errors are supported */ 248 if (!memcmp("ue", err, 2)) 249 data->head.type = AMDGPU_RAS_ERROR__MULTI_UNCORRECTABLE; 250 else if (!memcmp("ce", err, 2)) 251 data->head.type = AMDGPU_RAS_ERROR__SINGLE_CORRECTABLE; 252 else 253 return -EINVAL; 254 255 data->op = op; 256 257 if (op == 2) { 258 if (sscanf(str, "%*s %*s %*s 0x%x 0x%llx 0x%llx", 259 &sub_block, &address, &value) != 3 && 260 sscanf(str, "%*s %*s %*s %u %llu %llu", 261 &sub_block, &address, &value) != 3) 262 return -EINVAL; 263 data->head.sub_block_index = sub_block; 264 data->inject.address = address; 265 data->inject.value = value; 266 } 267 } else { 268 if (size < sizeof(*data)) 269 return -EINVAL; 270 271 if (copy_from_user(data, buf, sizeof(*data))) 272 return -EINVAL; 273 } 274 275 return 0; 276 } 277 278 /** 279 * DOC: AMDGPU RAS debugfs control interface 280 * 281 * The control interface accepts struct ras_debug_if which has two members. 282 * 283 * First member: ras_debug_if::head or ras_debug_if::inject. 284 * 285 * head is used to indicate which IP block will be under control. 286 * 287 * head has four members, they are block, type, sub_block_index, name. 288 * block: which IP will be under control. 289 * type: what kind of error will be enabled/disabled/injected. 290 * sub_block_index: some IPs have subcomponets. say, GFX, sDMA. 291 * name: the name of IP. 292 * 293 * inject has two more members than head, they are address, value. 294 * As their names indicate, inject operation will write the 295 * value to the address. 296 * 297 * The second member: struct ras_debug_if::op. 298 * It has three kinds of operations. 299 * 300 * - 0: disable RAS on the block. Take ::head as its data. 301 * - 1: enable RAS on the block. Take ::head as its data. 302 * - 2: inject errors on the block. Take ::inject as its data. 303 * 304 * How to use the interface? 305 * 306 * In a program 307 * 308 * Copy the struct ras_debug_if in your code and initialize it. 309 * Write the struct to the control interface. 310 * 311 * From shell 312 * 313 * .. code-block:: bash 314 * 315 * echo "disable <block>" > /sys/kernel/debug/dri/<N>/ras/ras_ctrl 316 * echo "enable <block> <error>" > /sys/kernel/debug/dri/<N>/ras/ras_ctrl 317 * echo "inject <block> <error> <sub-block> <address> <value> > /sys/kernel/debug/dri/<N>/ras/ras_ctrl 318 * 319 * Where N, is the card which you want to affect. 320 * 321 * "disable" requires only the block. 322 * "enable" requires the block and error type. 323 * "inject" requires the block, error type, address, and value. 324 * The block is one of: umc, sdma, gfx, etc. 325 * see ras_block_string[] for details 326 * The error type is one of: ue, ce, where, 327 * ue is multi-uncorrectable 328 * ce is single-correctable 329 * The sub-block is a the sub-block index, pass 0 if there is no sub-block. 330 * The address and value are hexadecimal numbers, leading 0x is optional. 331 * 332 * For instance, 333 * 334 * .. code-block:: bash 335 * 336 * echo inject umc ue 0x0 0x0 0x0 > /sys/kernel/debug/dri/0/ras/ras_ctrl 337 * echo inject umc ce 0 0 0 > /sys/kernel/debug/dri/0/ras/ras_ctrl 338 * echo disable umc > /sys/kernel/debug/dri/0/ras/ras_ctrl 339 * 340 * How to check the result of the operation? 341 * 342 * To check disable/enable, see "ras" features at, 343 * /sys/class/drm/card[0/1/2...]/device/ras/features 344 * 345 * To check inject, see the corresponding error count at, 346 * /sys/class/drm/card[0/1/2...]/device/ras/[gfx|sdma|umc|...]_err_count 347 * 348 * .. note:: 349 * Operations are only allowed on blocks which are supported. 350 * Check the "ras" mask at /sys/module/amdgpu/parameters/ras_mask 351 * to see which blocks support RAS on a particular asic. 352 * 353 */ 354 static ssize_t amdgpu_ras_debugfs_ctrl_write(struct file *f, const char __user *buf, 355 size_t size, loff_t *pos) 356 { 357 struct amdgpu_device *adev = (struct amdgpu_device *)file_inode(f)->i_private; 358 struct ras_debug_if data; 359 int ret = 0; 360 361 if (!amdgpu_ras_get_error_query_ready(adev)) { 362 dev_warn(adev->dev, "RAS WARN: error injection " 363 "currently inaccessible\n"); 364 return size; 365 } 366 367 ret = amdgpu_ras_debugfs_ctrl_parse_data(f, buf, size, pos, &data); 368 if (ret) 369 return -EINVAL; 370 371 if (data.op == 3) { 372 ret = amdgpu_reserve_page_direct(adev, data.inject.address); 373 if (!ret) 374 return size; 375 else 376 return ret; 377 } 378 379 if (!amdgpu_ras_is_supported(adev, data.head.block)) 380 return -EINVAL; 381 382 switch (data.op) { 383 case 0: 384 ret = amdgpu_ras_feature_enable(adev, &data.head, 0); 385 break; 386 case 1: 387 ret = amdgpu_ras_feature_enable(adev, &data.head, 1); 388 break; 389 case 2: 390 if ((data.inject.address >= adev->gmc.mc_vram_size) || 391 (data.inject.address >= RAS_UMC_INJECT_ADDR_LIMIT)) { 392 dev_warn(adev->dev, "RAS WARN: input address " 393 "0x%llx is invalid.", 394 data.inject.address); 395 ret = -EINVAL; 396 break; 397 } 398 399 /* umc ce/ue error injection for a bad page is not allowed */ 400 if ((data.head.block == AMDGPU_RAS_BLOCK__UMC) && 401 amdgpu_ras_check_bad_page(adev, data.inject.address)) { 402 dev_warn(adev->dev, "RAS WARN: 0x%llx has been marked " 403 "as bad before error injection!\n", 404 data.inject.address); 405 break; 406 } 407 408 /* data.inject.address is offset instead of absolute gpu address */ 409 ret = amdgpu_ras_error_inject(adev, &data.inject); 410 break; 411 default: 412 ret = -EINVAL; 413 break; 414 } 415 416 if (ret) 417 return -EINVAL; 418 419 return size; 420 } 421 422 /** 423 * DOC: AMDGPU RAS debugfs EEPROM table reset interface 424 * 425 * Some boards contain an EEPROM which is used to persistently store a list of 426 * bad pages which experiences ECC errors in vram. This interface provides 427 * a way to reset the EEPROM, e.g., after testing error injection. 428 * 429 * Usage: 430 * 431 * .. code-block:: bash 432 * 433 * echo 1 > ../ras/ras_eeprom_reset 434 * 435 * will reset EEPROM table to 0 entries. 436 * 437 */ 438 static ssize_t amdgpu_ras_debugfs_eeprom_write(struct file *f, const char __user *buf, 439 size_t size, loff_t *pos) 440 { 441 struct amdgpu_device *adev = 442 (struct amdgpu_device *)file_inode(f)->i_private; 443 int ret; 444 445 ret = amdgpu_ras_eeprom_reset_table( 446 &(amdgpu_ras_get_context(adev)->eeprom_control)); 447 448 if (ret == 1) { 449 amdgpu_ras_get_context(adev)->flags = RAS_DEFAULT_FLAGS; 450 return size; 451 } else { 452 return -EIO; 453 } 454 } 455 456 static const struct file_operations amdgpu_ras_debugfs_ctrl_ops = { 457 .owner = THIS_MODULE, 458 .read = NULL, 459 .write = amdgpu_ras_debugfs_ctrl_write, 460 .llseek = default_llseek 461 }; 462 463 static const struct file_operations amdgpu_ras_debugfs_eeprom_ops = { 464 .owner = THIS_MODULE, 465 .read = NULL, 466 .write = amdgpu_ras_debugfs_eeprom_write, 467 .llseek = default_llseek 468 }; 469 470 /** 471 * DOC: AMDGPU RAS sysfs Error Count Interface 472 * 473 * It allows the user to read the error count for each IP block on the gpu through 474 * /sys/class/drm/card[0/1/2...]/device/ras/[gfx/sdma/...]_err_count 475 * 476 * It outputs the multiple lines which report the uncorrected (ue) and corrected 477 * (ce) error counts. 478 * 479 * The format of one line is below, 480 * 481 * [ce|ue]: count 482 * 483 * Example: 484 * 485 * .. code-block:: bash 486 * 487 * ue: 0 488 * ce: 1 489 * 490 */ 491 static ssize_t amdgpu_ras_sysfs_read(struct device *dev, 492 struct device_attribute *attr, char *buf) 493 { 494 struct ras_manager *obj = container_of(attr, struct ras_manager, sysfs_attr); 495 struct ras_query_if info = { 496 .head = obj->head, 497 }; 498 499 if (!amdgpu_ras_get_error_query_ready(obj->adev)) 500 return sysfs_emit(buf, "Query currently inaccessible\n"); 501 502 if (amdgpu_ras_query_error_status(obj->adev, &info)) 503 return -EINVAL; 504 505 506 if (obj->adev->asic_type == CHIP_ALDEBARAN) { 507 if (amdgpu_ras_reset_error_status(obj->adev, info.head.block)) 508 DRM_WARN("Failed to reset error counter and error status"); 509 } 510 511 return sysfs_emit(buf, "%s: %lu\n%s: %lu\n", "ue", info.ue_count, 512 "ce", info.ce_count); 513 } 514 515 /* obj begin */ 516 517 #define get_obj(obj) do { (obj)->use++; } while (0) 518 #define alive_obj(obj) ((obj)->use) 519 520 static inline void put_obj(struct ras_manager *obj) 521 { 522 if (obj && (--obj->use == 0)) 523 list_del(&obj->node); 524 if (obj && (obj->use < 0)) 525 DRM_ERROR("RAS ERROR: Unbalance obj(%s) use\n", obj->head.name); 526 } 527 528 /* make one obj and return it. */ 529 static struct ras_manager *amdgpu_ras_create_obj(struct amdgpu_device *adev, 530 struct ras_common_if *head) 531 { 532 struct amdgpu_ras *con = amdgpu_ras_get_context(adev); 533 struct ras_manager *obj; 534 535 if (!adev->ras_enabled || !con) 536 return NULL; 537 538 if (head->block >= AMDGPU_RAS_BLOCK_COUNT) 539 return NULL; 540 541 obj = &con->objs[head->block]; 542 /* already exist. return obj? */ 543 if (alive_obj(obj)) 544 return NULL; 545 546 obj->head = *head; 547 obj->adev = adev; 548 list_add(&obj->node, &con->head); 549 get_obj(obj); 550 551 return obj; 552 } 553 554 /* return an obj equal to head, or the first when head is NULL */ 555 struct ras_manager *amdgpu_ras_find_obj(struct amdgpu_device *adev, 556 struct ras_common_if *head) 557 { 558 struct amdgpu_ras *con = amdgpu_ras_get_context(adev); 559 struct ras_manager *obj; 560 int i; 561 562 if (!adev->ras_enabled || !con) 563 return NULL; 564 565 if (head) { 566 if (head->block >= AMDGPU_RAS_BLOCK_COUNT) 567 return NULL; 568 569 obj = &con->objs[head->block]; 570 571 if (alive_obj(obj)) { 572 WARN_ON(head->block != obj->head.block); 573 return obj; 574 } 575 } else { 576 for (i = 0; i < AMDGPU_RAS_BLOCK_COUNT; i++) { 577 obj = &con->objs[i]; 578 if (alive_obj(obj)) { 579 WARN_ON(i != obj->head.block); 580 return obj; 581 } 582 } 583 } 584 585 return NULL; 586 } 587 /* obj end */ 588 589 /* feature ctl begin */ 590 static int amdgpu_ras_is_feature_allowed(struct amdgpu_device *adev, 591 struct ras_common_if *head) 592 { 593 return adev->ras_hw_enabled & BIT(head->block); 594 } 595 596 static int amdgpu_ras_is_feature_enabled(struct amdgpu_device *adev, 597 struct ras_common_if *head) 598 { 599 struct amdgpu_ras *con = amdgpu_ras_get_context(adev); 600 601 return con->features & BIT(head->block); 602 } 603 604 /* 605 * if obj is not created, then create one. 606 * set feature enable flag. 607 */ 608 static int __amdgpu_ras_feature_enable(struct amdgpu_device *adev, 609 struct ras_common_if *head, int enable) 610 { 611 struct amdgpu_ras *con = amdgpu_ras_get_context(adev); 612 struct ras_manager *obj = amdgpu_ras_find_obj(adev, head); 613 614 /* If hardware does not support ras, then do not create obj. 615 * But if hardware support ras, we can create the obj. 616 * Ras framework checks con->hw_supported to see if it need do 617 * corresponding initialization. 618 * IP checks con->support to see if it need disable ras. 619 */ 620 if (!amdgpu_ras_is_feature_allowed(adev, head)) 621 return 0; 622 if (!(!!enable ^ !!amdgpu_ras_is_feature_enabled(adev, head))) 623 return 0; 624 625 if (enable) { 626 if (!obj) { 627 obj = amdgpu_ras_create_obj(adev, head); 628 if (!obj) 629 return -EINVAL; 630 } else { 631 /* In case we create obj somewhere else */ 632 get_obj(obj); 633 } 634 con->features |= BIT(head->block); 635 } else { 636 if (obj && amdgpu_ras_is_feature_enabled(adev, head)) { 637 con->features &= ~BIT(head->block); 638 put_obj(obj); 639 } 640 } 641 642 return 0; 643 } 644 645 /* wrapper of psp_ras_enable_features */ 646 int amdgpu_ras_feature_enable(struct amdgpu_device *adev, 647 struct ras_common_if *head, bool enable) 648 { 649 struct amdgpu_ras *con = amdgpu_ras_get_context(adev); 650 union ta_ras_cmd_input *info; 651 int ret; 652 653 if (!con) 654 return -EINVAL; 655 656 info = kzalloc(sizeof(union ta_ras_cmd_input), GFP_KERNEL); 657 if (!info) 658 return -ENOMEM; 659 660 if (!enable) { 661 info->disable_features = (struct ta_ras_disable_features_input) { 662 .block_id = amdgpu_ras_block_to_ta(head->block), 663 .error_type = amdgpu_ras_error_to_ta(head->type), 664 }; 665 } else { 666 info->enable_features = (struct ta_ras_enable_features_input) { 667 .block_id = amdgpu_ras_block_to_ta(head->block), 668 .error_type = amdgpu_ras_error_to_ta(head->type), 669 }; 670 } 671 672 /* Do not enable if it is not allowed. */ 673 WARN_ON(enable && !amdgpu_ras_is_feature_allowed(adev, head)); 674 /* Are we alerady in that state we are going to set? */ 675 if (!(!!enable ^ !!amdgpu_ras_is_feature_enabled(adev, head))) { 676 ret = 0; 677 goto out; 678 } 679 680 if (!amdgpu_ras_intr_triggered()) { 681 ret = psp_ras_enable_features(&adev->psp, info, enable); 682 if (ret) { 683 dev_err(adev->dev, "ras %s %s failed %d\n", 684 enable ? "enable":"disable", 685 ras_block_str(head->block), 686 ret); 687 goto out; 688 } 689 } 690 691 /* setup the obj */ 692 __amdgpu_ras_feature_enable(adev, head, enable); 693 ret = 0; 694 out: 695 kfree(info); 696 return ret; 697 } 698 699 /* Only used in device probe stage and called only once. */ 700 int amdgpu_ras_feature_enable_on_boot(struct amdgpu_device *adev, 701 struct ras_common_if *head, bool enable) 702 { 703 struct amdgpu_ras *con = amdgpu_ras_get_context(adev); 704 int ret; 705 706 if (!con) 707 return -EINVAL; 708 709 if (con->flags & AMDGPU_RAS_FLAG_INIT_BY_VBIOS) { 710 if (enable) { 711 /* There is no harm to issue a ras TA cmd regardless of 712 * the currecnt ras state. 713 * If current state == target state, it will do nothing 714 * But sometimes it requests driver to reset and repost 715 * with error code -EAGAIN. 716 */ 717 ret = amdgpu_ras_feature_enable(adev, head, 1); 718 /* With old ras TA, we might fail to enable ras. 719 * Log it and just setup the object. 720 * TODO need remove this WA in the future. 721 */ 722 if (ret == -EINVAL) { 723 ret = __amdgpu_ras_feature_enable(adev, head, 1); 724 if (!ret) 725 dev_info(adev->dev, 726 "RAS INFO: %s setup object\n", 727 ras_block_str(head->block)); 728 } 729 } else { 730 /* setup the object then issue a ras TA disable cmd.*/ 731 ret = __amdgpu_ras_feature_enable(adev, head, 1); 732 if (ret) 733 return ret; 734 735 /* gfx block ras dsiable cmd must send to ras-ta */ 736 if (head->block == AMDGPU_RAS_BLOCK__GFX) 737 con->features |= BIT(head->block); 738 739 ret = amdgpu_ras_feature_enable(adev, head, 0); 740 741 /* clean gfx block ras features flag */ 742 if (adev->ras_enabled && head->block == AMDGPU_RAS_BLOCK__GFX) 743 con->features &= ~BIT(head->block); 744 } 745 } else 746 ret = amdgpu_ras_feature_enable(adev, head, enable); 747 748 return ret; 749 } 750 751 static int amdgpu_ras_disable_all_features(struct amdgpu_device *adev, 752 bool bypass) 753 { 754 struct amdgpu_ras *con = amdgpu_ras_get_context(adev); 755 struct ras_manager *obj, *tmp; 756 757 list_for_each_entry_safe(obj, tmp, &con->head, node) { 758 /* bypass psp. 759 * aka just release the obj and corresponding flags 760 */ 761 if (bypass) { 762 if (__amdgpu_ras_feature_enable(adev, &obj->head, 0)) 763 break; 764 } else { 765 if (amdgpu_ras_feature_enable(adev, &obj->head, 0)) 766 break; 767 } 768 } 769 770 return con->features; 771 } 772 773 static int amdgpu_ras_enable_all_features(struct amdgpu_device *adev, 774 bool bypass) 775 { 776 struct amdgpu_ras *con = amdgpu_ras_get_context(adev); 777 int ras_block_count = AMDGPU_RAS_BLOCK_COUNT; 778 int i; 779 const enum amdgpu_ras_error_type default_ras_type = 780 AMDGPU_RAS_ERROR__NONE; 781 782 for (i = 0; i < ras_block_count; i++) { 783 struct ras_common_if head = { 784 .block = i, 785 .type = default_ras_type, 786 .sub_block_index = 0, 787 }; 788 strcpy(head.name, ras_block_str(i)); 789 if (bypass) { 790 /* 791 * bypass psp. vbios enable ras for us. 792 * so just create the obj 793 */ 794 if (__amdgpu_ras_feature_enable(adev, &head, 1)) 795 break; 796 } else { 797 if (amdgpu_ras_feature_enable(adev, &head, 1)) 798 break; 799 } 800 } 801 802 return con->features; 803 } 804 /* feature ctl end */ 805 806 /* query/inject/cure begin */ 807 int amdgpu_ras_query_error_status(struct amdgpu_device *adev, 808 struct ras_query_if *info) 809 { 810 struct ras_manager *obj = amdgpu_ras_find_obj(adev, &info->head); 811 struct ras_err_data err_data = {0, 0, 0, NULL}; 812 int i; 813 814 if (!obj) 815 return -EINVAL; 816 817 switch (info->head.block) { 818 case AMDGPU_RAS_BLOCK__UMC: 819 if (adev->umc.ras_funcs && 820 adev->umc.ras_funcs->query_ras_error_count) 821 adev->umc.ras_funcs->query_ras_error_count(adev, &err_data); 822 /* umc query_ras_error_address is also responsible for clearing 823 * error status 824 */ 825 if (adev->umc.ras_funcs && 826 adev->umc.ras_funcs->query_ras_error_address) 827 adev->umc.ras_funcs->query_ras_error_address(adev, &err_data); 828 break; 829 case AMDGPU_RAS_BLOCK__SDMA: 830 if (adev->sdma.funcs->query_ras_error_count) { 831 for (i = 0; i < adev->sdma.num_instances; i++) 832 adev->sdma.funcs->query_ras_error_count(adev, i, 833 &err_data); 834 } 835 break; 836 case AMDGPU_RAS_BLOCK__GFX: 837 if (adev->gfx.ras_funcs && 838 adev->gfx.ras_funcs->query_ras_error_count) 839 adev->gfx.ras_funcs->query_ras_error_count(adev, &err_data); 840 841 if (adev->gfx.ras_funcs && 842 adev->gfx.ras_funcs->query_ras_error_status) 843 adev->gfx.ras_funcs->query_ras_error_status(adev); 844 break; 845 case AMDGPU_RAS_BLOCK__MMHUB: 846 if (adev->mmhub.ras_funcs && 847 adev->mmhub.ras_funcs->query_ras_error_count) 848 adev->mmhub.ras_funcs->query_ras_error_count(adev, &err_data); 849 850 if (adev->mmhub.ras_funcs && 851 adev->mmhub.ras_funcs->query_ras_error_status) 852 adev->mmhub.ras_funcs->query_ras_error_status(adev); 853 break; 854 case AMDGPU_RAS_BLOCK__PCIE_BIF: 855 if (adev->nbio.ras_funcs && 856 adev->nbio.ras_funcs->query_ras_error_count) 857 adev->nbio.ras_funcs->query_ras_error_count(adev, &err_data); 858 break; 859 case AMDGPU_RAS_BLOCK__XGMI_WAFL: 860 if (adev->gmc.xgmi.ras_funcs && 861 adev->gmc.xgmi.ras_funcs->query_ras_error_count) 862 adev->gmc.xgmi.ras_funcs->query_ras_error_count(adev, &err_data); 863 break; 864 case AMDGPU_RAS_BLOCK__HDP: 865 if (adev->hdp.ras_funcs && 866 adev->hdp.ras_funcs->query_ras_error_count) 867 adev->hdp.ras_funcs->query_ras_error_count(adev, &err_data); 868 break; 869 default: 870 break; 871 } 872 873 obj->err_data.ue_count += err_data.ue_count; 874 obj->err_data.ce_count += err_data.ce_count; 875 876 info->ue_count = obj->err_data.ue_count; 877 info->ce_count = obj->err_data.ce_count; 878 879 if (err_data.ce_count) { 880 if (adev->smuio.funcs && 881 adev->smuio.funcs->get_socket_id && 882 adev->smuio.funcs->get_die_id) { 883 dev_info(adev->dev, "socket: %d, die: %d " 884 "%ld correctable hardware errors " 885 "detected in %s block, no user " 886 "action is needed.\n", 887 adev->smuio.funcs->get_socket_id(adev), 888 adev->smuio.funcs->get_die_id(adev), 889 obj->err_data.ce_count, 890 ras_block_str(info->head.block)); 891 } else { 892 dev_info(adev->dev, "%ld correctable hardware errors " 893 "detected in %s block, no user " 894 "action is needed.\n", 895 obj->err_data.ce_count, 896 ras_block_str(info->head.block)); 897 } 898 } 899 if (err_data.ue_count) { 900 if (adev->smuio.funcs && 901 adev->smuio.funcs->get_socket_id && 902 adev->smuio.funcs->get_die_id) { 903 dev_info(adev->dev, "socket: %d, die: %d " 904 "%ld uncorrectable hardware errors " 905 "detected in %s block\n", 906 adev->smuio.funcs->get_socket_id(adev), 907 adev->smuio.funcs->get_die_id(adev), 908 obj->err_data.ue_count, 909 ras_block_str(info->head.block)); 910 } else { 911 dev_info(adev->dev, "%ld uncorrectable hardware errors " 912 "detected in %s block\n", 913 obj->err_data.ue_count, 914 ras_block_str(info->head.block)); 915 } 916 } 917 918 return 0; 919 } 920 921 int amdgpu_ras_reset_error_status(struct amdgpu_device *adev, 922 enum amdgpu_ras_block block) 923 { 924 if (!amdgpu_ras_is_supported(adev, block)) 925 return -EINVAL; 926 927 switch (block) { 928 case AMDGPU_RAS_BLOCK__GFX: 929 if (adev->gfx.ras_funcs && 930 adev->gfx.ras_funcs->reset_ras_error_count) 931 adev->gfx.ras_funcs->reset_ras_error_count(adev); 932 933 if (adev->gfx.ras_funcs && 934 adev->gfx.ras_funcs->reset_ras_error_status) 935 adev->gfx.ras_funcs->reset_ras_error_status(adev); 936 break; 937 case AMDGPU_RAS_BLOCK__MMHUB: 938 if (adev->mmhub.ras_funcs && 939 adev->mmhub.ras_funcs->reset_ras_error_count) 940 adev->mmhub.ras_funcs->reset_ras_error_count(adev); 941 break; 942 case AMDGPU_RAS_BLOCK__SDMA: 943 if (adev->sdma.funcs->reset_ras_error_count) 944 adev->sdma.funcs->reset_ras_error_count(adev); 945 break; 946 case AMDGPU_RAS_BLOCK__HDP: 947 if (adev->hdp.ras_funcs && 948 adev->hdp.ras_funcs->reset_ras_error_count) 949 adev->hdp.ras_funcs->reset_ras_error_count(adev); 950 break; 951 default: 952 break; 953 } 954 955 return 0; 956 } 957 958 /* Trigger XGMI/WAFL error */ 959 static int amdgpu_ras_error_inject_xgmi(struct amdgpu_device *adev, 960 struct ta_ras_trigger_error_input *block_info) 961 { 962 int ret; 963 964 if (amdgpu_dpm_set_df_cstate(adev, DF_CSTATE_DISALLOW)) 965 dev_warn(adev->dev, "Failed to disallow df cstate"); 966 967 if (amdgpu_dpm_allow_xgmi_power_down(adev, false)) 968 dev_warn(adev->dev, "Failed to disallow XGMI power down"); 969 970 ret = psp_ras_trigger_error(&adev->psp, block_info); 971 972 if (amdgpu_ras_intr_triggered()) 973 return ret; 974 975 if (amdgpu_dpm_allow_xgmi_power_down(adev, true)) 976 dev_warn(adev->dev, "Failed to allow XGMI power down"); 977 978 if (amdgpu_dpm_set_df_cstate(adev, DF_CSTATE_ALLOW)) 979 dev_warn(adev->dev, "Failed to allow df cstate"); 980 981 return ret; 982 } 983 984 /* wrapper of psp_ras_trigger_error */ 985 int amdgpu_ras_error_inject(struct amdgpu_device *adev, 986 struct ras_inject_if *info) 987 { 988 struct ras_manager *obj = amdgpu_ras_find_obj(adev, &info->head); 989 struct ta_ras_trigger_error_input block_info = { 990 .block_id = amdgpu_ras_block_to_ta(info->head.block), 991 .inject_error_type = amdgpu_ras_error_to_ta(info->head.type), 992 .sub_block_index = info->head.sub_block_index, 993 .address = info->address, 994 .value = info->value, 995 }; 996 int ret = 0; 997 998 if (!obj) 999 return -EINVAL; 1000 1001 /* Calculate XGMI relative offset */ 1002 if (adev->gmc.xgmi.num_physical_nodes > 1) { 1003 block_info.address = 1004 amdgpu_xgmi_get_relative_phy_addr(adev, 1005 block_info.address); 1006 } 1007 1008 switch (info->head.block) { 1009 case AMDGPU_RAS_BLOCK__GFX: 1010 if (adev->gfx.ras_funcs && 1011 adev->gfx.ras_funcs->ras_error_inject) 1012 ret = adev->gfx.ras_funcs->ras_error_inject(adev, info); 1013 else 1014 ret = -EINVAL; 1015 break; 1016 case AMDGPU_RAS_BLOCK__UMC: 1017 case AMDGPU_RAS_BLOCK__SDMA: 1018 case AMDGPU_RAS_BLOCK__MMHUB: 1019 case AMDGPU_RAS_BLOCK__PCIE_BIF: 1020 ret = psp_ras_trigger_error(&adev->psp, &block_info); 1021 break; 1022 case AMDGPU_RAS_BLOCK__XGMI_WAFL: 1023 ret = amdgpu_ras_error_inject_xgmi(adev, &block_info); 1024 break; 1025 default: 1026 dev_info(adev->dev, "%s error injection is not supported yet\n", 1027 ras_block_str(info->head.block)); 1028 ret = -EINVAL; 1029 } 1030 1031 if (ret) 1032 dev_err(adev->dev, "ras inject %s failed %d\n", 1033 ras_block_str(info->head.block), ret); 1034 1035 return ret; 1036 } 1037 1038 /* get the total error counts on all IPs */ 1039 unsigned long amdgpu_ras_query_error_count(struct amdgpu_device *adev, 1040 bool is_ce) 1041 { 1042 struct amdgpu_ras *con = amdgpu_ras_get_context(adev); 1043 struct ras_manager *obj; 1044 struct ras_err_data data = {0, 0}; 1045 1046 if (!adev->ras_enabled || !con) 1047 return 0; 1048 1049 list_for_each_entry(obj, &con->head, node) { 1050 struct ras_query_if info = { 1051 .head = obj->head, 1052 }; 1053 1054 if (amdgpu_ras_query_error_status(adev, &info)) 1055 return 0; 1056 1057 data.ce_count += info.ce_count; 1058 data.ue_count += info.ue_count; 1059 } 1060 1061 return is_ce ? data.ce_count : data.ue_count; 1062 } 1063 /* query/inject/cure end */ 1064 1065 1066 /* sysfs begin */ 1067 1068 static int amdgpu_ras_badpages_read(struct amdgpu_device *adev, 1069 struct ras_badpage **bps, unsigned int *count); 1070 1071 static char *amdgpu_ras_badpage_flags_str(unsigned int flags) 1072 { 1073 switch (flags) { 1074 case AMDGPU_RAS_RETIRE_PAGE_RESERVED: 1075 return "R"; 1076 case AMDGPU_RAS_RETIRE_PAGE_PENDING: 1077 return "P"; 1078 case AMDGPU_RAS_RETIRE_PAGE_FAULT: 1079 default: 1080 return "F"; 1081 } 1082 } 1083 1084 /** 1085 * DOC: AMDGPU RAS sysfs gpu_vram_bad_pages Interface 1086 * 1087 * It allows user to read the bad pages of vram on the gpu through 1088 * /sys/class/drm/card[0/1/2...]/device/ras/gpu_vram_bad_pages 1089 * 1090 * It outputs multiple lines, and each line stands for one gpu page. 1091 * 1092 * The format of one line is below, 1093 * gpu pfn : gpu page size : flags 1094 * 1095 * gpu pfn and gpu page size are printed in hex format. 1096 * flags can be one of below character, 1097 * 1098 * R: reserved, this gpu page is reserved and not able to use. 1099 * 1100 * P: pending for reserve, this gpu page is marked as bad, will be reserved 1101 * in next window of page_reserve. 1102 * 1103 * F: unable to reserve. this gpu page can't be reserved due to some reasons. 1104 * 1105 * Examples: 1106 * 1107 * .. code-block:: bash 1108 * 1109 * 0x00000001 : 0x00001000 : R 1110 * 0x00000002 : 0x00001000 : P 1111 * 1112 */ 1113 1114 static ssize_t amdgpu_ras_sysfs_badpages_read(struct file *f, 1115 struct kobject *kobj, struct bin_attribute *attr, 1116 char *buf, loff_t ppos, size_t count) 1117 { 1118 struct amdgpu_ras *con = 1119 container_of(attr, struct amdgpu_ras, badpages_attr); 1120 struct amdgpu_device *adev = con->adev; 1121 const unsigned int element_size = 1122 sizeof("0xabcdabcd : 0x12345678 : R\n") - 1; 1123 unsigned int start = div64_ul(ppos + element_size - 1, element_size); 1124 unsigned int end = div64_ul(ppos + count - 1, element_size); 1125 ssize_t s = 0; 1126 struct ras_badpage *bps = NULL; 1127 unsigned int bps_count = 0; 1128 1129 memset(buf, 0, count); 1130 1131 if (amdgpu_ras_badpages_read(adev, &bps, &bps_count)) 1132 return 0; 1133 1134 for (; start < end && start < bps_count; start++) 1135 s += scnprintf(&buf[s], element_size + 1, 1136 "0x%08x : 0x%08x : %1s\n", 1137 bps[start].bp, 1138 bps[start].size, 1139 amdgpu_ras_badpage_flags_str(bps[start].flags)); 1140 1141 kfree(bps); 1142 1143 return s; 1144 } 1145 1146 static ssize_t amdgpu_ras_sysfs_features_read(struct device *dev, 1147 struct device_attribute *attr, char *buf) 1148 { 1149 struct amdgpu_ras *con = 1150 container_of(attr, struct amdgpu_ras, features_attr); 1151 1152 return scnprintf(buf, PAGE_SIZE, "feature mask: 0x%x\n", con->features); 1153 } 1154 1155 static void amdgpu_ras_sysfs_remove_bad_page_node(struct amdgpu_device *adev) 1156 { 1157 struct amdgpu_ras *con = amdgpu_ras_get_context(adev); 1158 1159 sysfs_remove_file_from_group(&adev->dev->kobj, 1160 &con->badpages_attr.attr, 1161 RAS_FS_NAME); 1162 } 1163 1164 static int amdgpu_ras_sysfs_remove_feature_node(struct amdgpu_device *adev) 1165 { 1166 struct amdgpu_ras *con = amdgpu_ras_get_context(adev); 1167 struct attribute *attrs[] = { 1168 &con->features_attr.attr, 1169 NULL 1170 }; 1171 struct attribute_group group = { 1172 .name = RAS_FS_NAME, 1173 .attrs = attrs, 1174 }; 1175 1176 sysfs_remove_group(&adev->dev->kobj, &group); 1177 1178 return 0; 1179 } 1180 1181 int amdgpu_ras_sysfs_create(struct amdgpu_device *adev, 1182 struct ras_fs_if *head) 1183 { 1184 struct ras_manager *obj = amdgpu_ras_find_obj(adev, &head->head); 1185 1186 if (!obj || obj->attr_inuse) 1187 return -EINVAL; 1188 1189 get_obj(obj); 1190 1191 memcpy(obj->fs_data.sysfs_name, 1192 head->sysfs_name, 1193 sizeof(obj->fs_data.sysfs_name)); 1194 1195 obj->sysfs_attr = (struct device_attribute){ 1196 .attr = { 1197 .name = obj->fs_data.sysfs_name, 1198 .mode = S_IRUGO, 1199 }, 1200 .show = amdgpu_ras_sysfs_read, 1201 }; 1202 sysfs_attr_init(&obj->sysfs_attr.attr); 1203 1204 if (sysfs_add_file_to_group(&adev->dev->kobj, 1205 &obj->sysfs_attr.attr, 1206 RAS_FS_NAME)) { 1207 put_obj(obj); 1208 return -EINVAL; 1209 } 1210 1211 obj->attr_inuse = 1; 1212 1213 return 0; 1214 } 1215 1216 int amdgpu_ras_sysfs_remove(struct amdgpu_device *adev, 1217 struct ras_common_if *head) 1218 { 1219 struct ras_manager *obj = amdgpu_ras_find_obj(adev, head); 1220 1221 if (!obj || !obj->attr_inuse) 1222 return -EINVAL; 1223 1224 sysfs_remove_file_from_group(&adev->dev->kobj, 1225 &obj->sysfs_attr.attr, 1226 RAS_FS_NAME); 1227 obj->attr_inuse = 0; 1228 put_obj(obj); 1229 1230 return 0; 1231 } 1232 1233 static int amdgpu_ras_sysfs_remove_all(struct amdgpu_device *adev) 1234 { 1235 struct amdgpu_ras *con = amdgpu_ras_get_context(adev); 1236 struct ras_manager *obj, *tmp; 1237 1238 list_for_each_entry_safe(obj, tmp, &con->head, node) { 1239 amdgpu_ras_sysfs_remove(adev, &obj->head); 1240 } 1241 1242 if (amdgpu_bad_page_threshold != 0) 1243 amdgpu_ras_sysfs_remove_bad_page_node(adev); 1244 1245 amdgpu_ras_sysfs_remove_feature_node(adev); 1246 1247 return 0; 1248 } 1249 /* sysfs end */ 1250 1251 /** 1252 * DOC: AMDGPU RAS Reboot Behavior for Unrecoverable Errors 1253 * 1254 * Normally when there is an uncorrectable error, the driver will reset 1255 * the GPU to recover. However, in the event of an unrecoverable error, 1256 * the driver provides an interface to reboot the system automatically 1257 * in that event. 1258 * 1259 * The following file in debugfs provides that interface: 1260 * /sys/kernel/debug/dri/[0/1/2...]/ras/auto_reboot 1261 * 1262 * Usage: 1263 * 1264 * .. code-block:: bash 1265 * 1266 * echo true > .../ras/auto_reboot 1267 * 1268 */ 1269 /* debugfs begin */ 1270 static struct dentry *amdgpu_ras_debugfs_create_ctrl_node(struct amdgpu_device *adev) 1271 { 1272 struct amdgpu_ras *con = amdgpu_ras_get_context(adev); 1273 struct drm_minor *minor = adev_to_drm(adev)->primary; 1274 struct dentry *dir; 1275 1276 dir = debugfs_create_dir(RAS_FS_NAME, minor->debugfs_root); 1277 debugfs_create_file("ras_ctrl", S_IWUGO | S_IRUGO, dir, adev, 1278 &amdgpu_ras_debugfs_ctrl_ops); 1279 debugfs_create_file("ras_eeprom_reset", S_IWUGO | S_IRUGO, dir, adev, 1280 &amdgpu_ras_debugfs_eeprom_ops); 1281 debugfs_create_u32("bad_page_cnt_threshold", 0444, dir, 1282 &con->bad_page_cnt_threshold); 1283 debugfs_create_x32("ras_hw_enabled", 0444, dir, &adev->ras_hw_enabled); 1284 debugfs_create_x32("ras_enabled", 0444, dir, &adev->ras_enabled); 1285 1286 /* 1287 * After one uncorrectable error happens, usually GPU recovery will 1288 * be scheduled. But due to the known problem in GPU recovery failing 1289 * to bring GPU back, below interface provides one direct way to 1290 * user to reboot system automatically in such case within 1291 * ERREVENT_ATHUB_INTERRUPT generated. Normal GPU recovery routine 1292 * will never be called. 1293 */ 1294 debugfs_create_bool("auto_reboot", S_IWUGO | S_IRUGO, dir, &con->reboot); 1295 1296 /* 1297 * User could set this not to clean up hardware's error count register 1298 * of RAS IPs during ras recovery. 1299 */ 1300 debugfs_create_bool("disable_ras_err_cnt_harvest", 0644, dir, 1301 &con->disable_ras_err_cnt_harvest); 1302 return dir; 1303 } 1304 1305 static void amdgpu_ras_debugfs_create(struct amdgpu_device *adev, 1306 struct ras_fs_if *head, 1307 struct dentry *dir) 1308 { 1309 struct ras_manager *obj = amdgpu_ras_find_obj(adev, &head->head); 1310 1311 if (!obj || !dir) 1312 return; 1313 1314 get_obj(obj); 1315 1316 memcpy(obj->fs_data.debugfs_name, 1317 head->debugfs_name, 1318 sizeof(obj->fs_data.debugfs_name)); 1319 1320 debugfs_create_file(obj->fs_data.debugfs_name, S_IWUGO | S_IRUGO, dir, 1321 obj, &amdgpu_ras_debugfs_ops); 1322 } 1323 1324 void amdgpu_ras_debugfs_create_all(struct amdgpu_device *adev) 1325 { 1326 struct amdgpu_ras *con = amdgpu_ras_get_context(adev); 1327 struct dentry *dir; 1328 struct ras_manager *obj; 1329 struct ras_fs_if fs_info; 1330 1331 /* 1332 * it won't be called in resume path, no need to check 1333 * suspend and gpu reset status 1334 */ 1335 if (!IS_ENABLED(CONFIG_DEBUG_FS) || !con) 1336 return; 1337 1338 dir = amdgpu_ras_debugfs_create_ctrl_node(adev); 1339 1340 list_for_each_entry(obj, &con->head, node) { 1341 if (amdgpu_ras_is_supported(adev, obj->head.block) && 1342 (obj->attr_inuse == 1)) { 1343 sprintf(fs_info.debugfs_name, "%s_err_inject", 1344 ras_block_str(obj->head.block)); 1345 fs_info.head = obj->head; 1346 amdgpu_ras_debugfs_create(adev, &fs_info, dir); 1347 } 1348 } 1349 } 1350 1351 /* debugfs end */ 1352 1353 /* ras fs */ 1354 static BIN_ATTR(gpu_vram_bad_pages, S_IRUGO, 1355 amdgpu_ras_sysfs_badpages_read, NULL, 0); 1356 static DEVICE_ATTR(features, S_IRUGO, 1357 amdgpu_ras_sysfs_features_read, NULL); 1358 static int amdgpu_ras_fs_init(struct amdgpu_device *adev) 1359 { 1360 struct amdgpu_ras *con = amdgpu_ras_get_context(adev); 1361 struct attribute_group group = { 1362 .name = RAS_FS_NAME, 1363 }; 1364 struct attribute *attrs[] = { 1365 &con->features_attr.attr, 1366 NULL 1367 }; 1368 struct bin_attribute *bin_attrs[] = { 1369 NULL, 1370 NULL, 1371 }; 1372 int r; 1373 1374 /* add features entry */ 1375 con->features_attr = dev_attr_features; 1376 group.attrs = attrs; 1377 sysfs_attr_init(attrs[0]); 1378 1379 if (amdgpu_bad_page_threshold != 0) { 1380 /* add bad_page_features entry */ 1381 bin_attr_gpu_vram_bad_pages.private = NULL; 1382 con->badpages_attr = bin_attr_gpu_vram_bad_pages; 1383 bin_attrs[0] = &con->badpages_attr; 1384 group.bin_attrs = bin_attrs; 1385 sysfs_bin_attr_init(bin_attrs[0]); 1386 } 1387 1388 r = sysfs_create_group(&adev->dev->kobj, &group); 1389 if (r) 1390 dev_err(adev->dev, "Failed to create RAS sysfs group!"); 1391 1392 return 0; 1393 } 1394 1395 static int amdgpu_ras_fs_fini(struct amdgpu_device *adev) 1396 { 1397 struct amdgpu_ras *con = amdgpu_ras_get_context(adev); 1398 struct ras_manager *con_obj, *ip_obj, *tmp; 1399 1400 if (IS_ENABLED(CONFIG_DEBUG_FS)) { 1401 list_for_each_entry_safe(con_obj, tmp, &con->head, node) { 1402 ip_obj = amdgpu_ras_find_obj(adev, &con_obj->head); 1403 if (ip_obj) 1404 put_obj(ip_obj); 1405 } 1406 } 1407 1408 amdgpu_ras_sysfs_remove_all(adev); 1409 return 0; 1410 } 1411 /* ras fs end */ 1412 1413 /* ih begin */ 1414 static void amdgpu_ras_interrupt_handler(struct ras_manager *obj) 1415 { 1416 struct ras_ih_data *data = &obj->ih_data; 1417 struct amdgpu_iv_entry entry; 1418 int ret; 1419 struct ras_err_data err_data = {0, 0, 0, NULL}; 1420 1421 while (data->rptr != data->wptr) { 1422 rmb(); 1423 memcpy(&entry, &data->ring[data->rptr], 1424 data->element_size); 1425 1426 wmb(); 1427 data->rptr = (data->aligned_element_size + 1428 data->rptr) % data->ring_size; 1429 1430 /* Let IP handle its data, maybe we need get the output 1431 * from the callback to udpate the error type/count, etc 1432 */ 1433 if (data->cb) { 1434 ret = data->cb(obj->adev, &err_data, &entry); 1435 /* ue will trigger an interrupt, and in that case 1436 * we need do a reset to recovery the whole system. 1437 * But leave IP do that recovery, here we just dispatch 1438 * the error. 1439 */ 1440 if (ret == AMDGPU_RAS_SUCCESS) { 1441 /* these counts could be left as 0 if 1442 * some blocks do not count error number 1443 */ 1444 obj->err_data.ue_count += err_data.ue_count; 1445 obj->err_data.ce_count += err_data.ce_count; 1446 } 1447 } 1448 } 1449 } 1450 1451 static void amdgpu_ras_interrupt_process_handler(struct work_struct *work) 1452 { 1453 struct ras_ih_data *data = 1454 container_of(work, struct ras_ih_data, ih_work); 1455 struct ras_manager *obj = 1456 container_of(data, struct ras_manager, ih_data); 1457 1458 amdgpu_ras_interrupt_handler(obj); 1459 } 1460 1461 int amdgpu_ras_interrupt_dispatch(struct amdgpu_device *adev, 1462 struct ras_dispatch_if *info) 1463 { 1464 struct ras_manager *obj = amdgpu_ras_find_obj(adev, &info->head); 1465 struct ras_ih_data *data = &obj->ih_data; 1466 1467 if (!obj) 1468 return -EINVAL; 1469 1470 if (data->inuse == 0) 1471 return 0; 1472 1473 /* Might be overflow... */ 1474 memcpy(&data->ring[data->wptr], info->entry, 1475 data->element_size); 1476 1477 wmb(); 1478 data->wptr = (data->aligned_element_size + 1479 data->wptr) % data->ring_size; 1480 1481 schedule_work(&data->ih_work); 1482 1483 return 0; 1484 } 1485 1486 int amdgpu_ras_interrupt_remove_handler(struct amdgpu_device *adev, 1487 struct ras_ih_if *info) 1488 { 1489 struct ras_manager *obj = amdgpu_ras_find_obj(adev, &info->head); 1490 struct ras_ih_data *data; 1491 1492 if (!obj) 1493 return -EINVAL; 1494 1495 data = &obj->ih_data; 1496 if (data->inuse == 0) 1497 return 0; 1498 1499 cancel_work_sync(&data->ih_work); 1500 1501 kfree(data->ring); 1502 memset(data, 0, sizeof(*data)); 1503 put_obj(obj); 1504 1505 return 0; 1506 } 1507 1508 int amdgpu_ras_interrupt_add_handler(struct amdgpu_device *adev, 1509 struct ras_ih_if *info) 1510 { 1511 struct ras_manager *obj = amdgpu_ras_find_obj(adev, &info->head); 1512 struct ras_ih_data *data; 1513 1514 if (!obj) { 1515 /* in case we registe the IH before enable ras feature */ 1516 obj = amdgpu_ras_create_obj(adev, &info->head); 1517 if (!obj) 1518 return -EINVAL; 1519 } else 1520 get_obj(obj); 1521 1522 data = &obj->ih_data; 1523 /* add the callback.etc */ 1524 *data = (struct ras_ih_data) { 1525 .inuse = 0, 1526 .cb = info->cb, 1527 .element_size = sizeof(struct amdgpu_iv_entry), 1528 .rptr = 0, 1529 .wptr = 0, 1530 }; 1531 1532 INIT_WORK(&data->ih_work, amdgpu_ras_interrupt_process_handler); 1533 1534 data->aligned_element_size = ALIGN(data->element_size, 8); 1535 /* the ring can store 64 iv entries. */ 1536 data->ring_size = 64 * data->aligned_element_size; 1537 data->ring = kmalloc(data->ring_size, GFP_KERNEL); 1538 if (!data->ring) { 1539 put_obj(obj); 1540 return -ENOMEM; 1541 } 1542 1543 /* IH is ready */ 1544 data->inuse = 1; 1545 1546 return 0; 1547 } 1548 1549 static int amdgpu_ras_interrupt_remove_all(struct amdgpu_device *adev) 1550 { 1551 struct amdgpu_ras *con = amdgpu_ras_get_context(adev); 1552 struct ras_manager *obj, *tmp; 1553 1554 list_for_each_entry_safe(obj, tmp, &con->head, node) { 1555 struct ras_ih_if info = { 1556 .head = obj->head, 1557 }; 1558 amdgpu_ras_interrupt_remove_handler(adev, &info); 1559 } 1560 1561 return 0; 1562 } 1563 /* ih end */ 1564 1565 /* traversal all IPs except NBIO to query error counter */ 1566 static void amdgpu_ras_log_on_err_counter(struct amdgpu_device *adev) 1567 { 1568 struct amdgpu_ras *con = amdgpu_ras_get_context(adev); 1569 struct ras_manager *obj; 1570 1571 if (!adev->ras_enabled || !con) 1572 return; 1573 1574 list_for_each_entry(obj, &con->head, node) { 1575 struct ras_query_if info = { 1576 .head = obj->head, 1577 }; 1578 1579 /* 1580 * PCIE_BIF IP has one different isr by ras controller 1581 * interrupt, the specific ras counter query will be 1582 * done in that isr. So skip such block from common 1583 * sync flood interrupt isr calling. 1584 */ 1585 if (info.head.block == AMDGPU_RAS_BLOCK__PCIE_BIF) 1586 continue; 1587 1588 amdgpu_ras_query_error_status(adev, &info); 1589 } 1590 } 1591 1592 /* Parse RdRspStatus and WrRspStatus */ 1593 static void amdgpu_ras_error_status_query(struct amdgpu_device *adev, 1594 struct ras_query_if *info) 1595 { 1596 /* 1597 * Only two block need to query read/write 1598 * RspStatus at current state 1599 */ 1600 switch (info->head.block) { 1601 case AMDGPU_RAS_BLOCK__GFX: 1602 if (adev->gfx.ras_funcs && 1603 adev->gfx.ras_funcs->query_ras_error_status) 1604 adev->gfx.ras_funcs->query_ras_error_status(adev); 1605 break; 1606 case AMDGPU_RAS_BLOCK__MMHUB: 1607 if (adev->mmhub.ras_funcs && 1608 adev->mmhub.ras_funcs->query_ras_error_status) 1609 adev->mmhub.ras_funcs->query_ras_error_status(adev); 1610 break; 1611 default: 1612 break; 1613 } 1614 } 1615 1616 static void amdgpu_ras_query_err_status(struct amdgpu_device *adev) 1617 { 1618 struct amdgpu_ras *con = amdgpu_ras_get_context(adev); 1619 struct ras_manager *obj; 1620 1621 if (!adev->ras_enabled || !con) 1622 return; 1623 1624 list_for_each_entry(obj, &con->head, node) { 1625 struct ras_query_if info = { 1626 .head = obj->head, 1627 }; 1628 1629 amdgpu_ras_error_status_query(adev, &info); 1630 } 1631 } 1632 1633 /* recovery begin */ 1634 1635 /* return 0 on success. 1636 * caller need free bps. 1637 */ 1638 static int amdgpu_ras_badpages_read(struct amdgpu_device *adev, 1639 struct ras_badpage **bps, unsigned int *count) 1640 { 1641 struct amdgpu_ras *con = amdgpu_ras_get_context(adev); 1642 struct ras_err_handler_data *data; 1643 int i = 0; 1644 int ret = 0, status; 1645 1646 if (!con || !con->eh_data || !bps || !count) 1647 return -EINVAL; 1648 1649 mutex_lock(&con->recovery_lock); 1650 data = con->eh_data; 1651 if (!data || data->count == 0) { 1652 *bps = NULL; 1653 ret = -EINVAL; 1654 goto out; 1655 } 1656 1657 *bps = kmalloc(sizeof(struct ras_badpage) * data->count, GFP_KERNEL); 1658 if (!*bps) { 1659 ret = -ENOMEM; 1660 goto out; 1661 } 1662 1663 for (; i < data->count; i++) { 1664 (*bps)[i] = (struct ras_badpage){ 1665 .bp = data->bps[i].retired_page, 1666 .size = AMDGPU_GPU_PAGE_SIZE, 1667 .flags = AMDGPU_RAS_RETIRE_PAGE_RESERVED, 1668 }; 1669 status = amdgpu_vram_mgr_query_page_status( 1670 ttm_manager_type(&adev->mman.bdev, TTM_PL_VRAM), 1671 data->bps[i].retired_page); 1672 if (status == -EBUSY) 1673 (*bps)[i].flags = AMDGPU_RAS_RETIRE_PAGE_PENDING; 1674 else if (status == -ENOENT) 1675 (*bps)[i].flags = AMDGPU_RAS_RETIRE_PAGE_FAULT; 1676 } 1677 1678 *count = data->count; 1679 out: 1680 mutex_unlock(&con->recovery_lock); 1681 return ret; 1682 } 1683 1684 static void amdgpu_ras_do_recovery(struct work_struct *work) 1685 { 1686 struct amdgpu_ras *ras = 1687 container_of(work, struct amdgpu_ras, recovery_work); 1688 struct amdgpu_device *remote_adev = NULL; 1689 struct amdgpu_device *adev = ras->adev; 1690 struct list_head device_list, *device_list_handle = NULL; 1691 1692 if (!ras->disable_ras_err_cnt_harvest) { 1693 struct amdgpu_hive_info *hive = amdgpu_get_xgmi_hive(adev); 1694 1695 /* Build list of devices to query RAS related errors */ 1696 if (hive && adev->gmc.xgmi.num_physical_nodes > 1) { 1697 device_list_handle = &hive->device_list; 1698 } else { 1699 INIT_LIST_HEAD(&device_list); 1700 list_add_tail(&adev->gmc.xgmi.head, &device_list); 1701 device_list_handle = &device_list; 1702 } 1703 1704 list_for_each_entry(remote_adev, 1705 device_list_handle, gmc.xgmi.head) { 1706 amdgpu_ras_query_err_status(remote_adev); 1707 amdgpu_ras_log_on_err_counter(remote_adev); 1708 } 1709 1710 amdgpu_put_xgmi_hive(hive); 1711 } 1712 1713 if (amdgpu_device_should_recover_gpu(ras->adev)) 1714 amdgpu_device_gpu_recover(ras->adev, NULL); 1715 atomic_set(&ras->in_recovery, 0); 1716 } 1717 1718 /* alloc/realloc bps array */ 1719 static int amdgpu_ras_realloc_eh_data_space(struct amdgpu_device *adev, 1720 struct ras_err_handler_data *data, int pages) 1721 { 1722 unsigned int old_space = data->count + data->space_left; 1723 unsigned int new_space = old_space + pages; 1724 unsigned int align_space = ALIGN(new_space, 512); 1725 void *bps = kmalloc(align_space * sizeof(*data->bps), GFP_KERNEL); 1726 1727 if (!bps) { 1728 kfree(bps); 1729 return -ENOMEM; 1730 } 1731 1732 if (data->bps) { 1733 memcpy(bps, data->bps, 1734 data->count * sizeof(*data->bps)); 1735 kfree(data->bps); 1736 } 1737 1738 data->bps = bps; 1739 data->space_left += align_space - old_space; 1740 return 0; 1741 } 1742 1743 /* it deal with vram only. */ 1744 int amdgpu_ras_add_bad_pages(struct amdgpu_device *adev, 1745 struct eeprom_table_record *bps, int pages) 1746 { 1747 struct amdgpu_ras *con = amdgpu_ras_get_context(adev); 1748 struct ras_err_handler_data *data; 1749 int ret = 0; 1750 uint32_t i; 1751 1752 if (!con || !con->eh_data || !bps || pages <= 0) 1753 return 0; 1754 1755 mutex_lock(&con->recovery_lock); 1756 data = con->eh_data; 1757 if (!data) 1758 goto out; 1759 1760 for (i = 0; i < pages; i++) { 1761 if (amdgpu_ras_check_bad_page_unlock(con, 1762 bps[i].retired_page << AMDGPU_GPU_PAGE_SHIFT)) 1763 continue; 1764 1765 if (!data->space_left && 1766 amdgpu_ras_realloc_eh_data_space(adev, data, 256)) { 1767 ret = -ENOMEM; 1768 goto out; 1769 } 1770 1771 amdgpu_vram_mgr_reserve_range( 1772 ttm_manager_type(&adev->mman.bdev, TTM_PL_VRAM), 1773 bps[i].retired_page << AMDGPU_GPU_PAGE_SHIFT, 1774 AMDGPU_GPU_PAGE_SIZE); 1775 1776 memcpy(&data->bps[data->count], &bps[i], sizeof(*data->bps)); 1777 data->count++; 1778 data->space_left--; 1779 } 1780 out: 1781 mutex_unlock(&con->recovery_lock); 1782 1783 return ret; 1784 } 1785 1786 /* 1787 * write error record array to eeprom, the function should be 1788 * protected by recovery_lock 1789 */ 1790 int amdgpu_ras_save_bad_pages(struct amdgpu_device *adev) 1791 { 1792 struct amdgpu_ras *con = amdgpu_ras_get_context(adev); 1793 struct ras_err_handler_data *data; 1794 struct amdgpu_ras_eeprom_control *control; 1795 int save_count; 1796 1797 if (!con || !con->eh_data) 1798 return 0; 1799 1800 control = &con->eeprom_control; 1801 data = con->eh_data; 1802 save_count = data->count - control->num_recs; 1803 /* only new entries are saved */ 1804 if (save_count > 0) { 1805 if (amdgpu_ras_eeprom_process_recods(control, 1806 &data->bps[control->num_recs], 1807 true, 1808 save_count)) { 1809 dev_err(adev->dev, "Failed to save EEPROM table data!"); 1810 return -EIO; 1811 } 1812 1813 dev_info(adev->dev, "Saved %d pages to EEPROM table.\n", save_count); 1814 } 1815 1816 return 0; 1817 } 1818 1819 /* 1820 * read error record array in eeprom and reserve enough space for 1821 * storing new bad pages 1822 */ 1823 static int amdgpu_ras_load_bad_pages(struct amdgpu_device *adev) 1824 { 1825 struct amdgpu_ras_eeprom_control *control = 1826 &adev->psp.ras.ras->eeprom_control; 1827 struct eeprom_table_record *bps = NULL; 1828 int ret = 0; 1829 1830 /* no bad page record, skip eeprom access */ 1831 if (!control->num_recs || (amdgpu_bad_page_threshold == 0)) 1832 return ret; 1833 1834 bps = kcalloc(control->num_recs, sizeof(*bps), GFP_KERNEL); 1835 if (!bps) 1836 return -ENOMEM; 1837 1838 if (amdgpu_ras_eeprom_process_recods(control, bps, false, 1839 control->num_recs)) { 1840 dev_err(adev->dev, "Failed to load EEPROM table records!"); 1841 ret = -EIO; 1842 goto out; 1843 } 1844 1845 ret = amdgpu_ras_add_bad_pages(adev, bps, control->num_recs); 1846 1847 out: 1848 kfree(bps); 1849 return ret; 1850 } 1851 1852 static bool amdgpu_ras_check_bad_page_unlock(struct amdgpu_ras *con, 1853 uint64_t addr) 1854 { 1855 struct ras_err_handler_data *data = con->eh_data; 1856 int i; 1857 1858 addr >>= AMDGPU_GPU_PAGE_SHIFT; 1859 for (i = 0; i < data->count; i++) 1860 if (addr == data->bps[i].retired_page) 1861 return true; 1862 1863 return false; 1864 } 1865 1866 /* 1867 * check if an address belongs to bad page 1868 * 1869 * Note: this check is only for umc block 1870 */ 1871 static bool amdgpu_ras_check_bad_page(struct amdgpu_device *adev, 1872 uint64_t addr) 1873 { 1874 struct amdgpu_ras *con = amdgpu_ras_get_context(adev); 1875 bool ret = false; 1876 1877 if (!con || !con->eh_data) 1878 return ret; 1879 1880 mutex_lock(&con->recovery_lock); 1881 ret = amdgpu_ras_check_bad_page_unlock(con, addr); 1882 mutex_unlock(&con->recovery_lock); 1883 return ret; 1884 } 1885 1886 static void amdgpu_ras_validate_threshold(struct amdgpu_device *adev, 1887 uint32_t max_length) 1888 { 1889 struct amdgpu_ras *con = amdgpu_ras_get_context(adev); 1890 int tmp_threshold = amdgpu_bad_page_threshold; 1891 u64 val; 1892 1893 /* 1894 * Justification of value bad_page_cnt_threshold in ras structure 1895 * 1896 * Generally, -1 <= amdgpu_bad_page_threshold <= max record length 1897 * in eeprom, and introduce two scenarios accordingly. 1898 * 1899 * Bad page retirement enablement: 1900 * - If amdgpu_bad_page_threshold = -1, 1901 * bad_page_cnt_threshold = typical value by formula. 1902 * 1903 * - When the value from user is 0 < amdgpu_bad_page_threshold < 1904 * max record length in eeprom, use it directly. 1905 * 1906 * Bad page retirement disablement: 1907 * - If amdgpu_bad_page_threshold = 0, bad page retirement 1908 * functionality is disabled, and bad_page_cnt_threshold will 1909 * take no effect. 1910 */ 1911 1912 if (tmp_threshold < -1) 1913 tmp_threshold = -1; 1914 else if (tmp_threshold > max_length) 1915 tmp_threshold = max_length; 1916 1917 if (tmp_threshold == -1) { 1918 val = adev->gmc.mc_vram_size; 1919 do_div(val, RAS_BAD_PAGE_RATE); 1920 con->bad_page_cnt_threshold = min(lower_32_bits(val), 1921 max_length); 1922 } else { 1923 con->bad_page_cnt_threshold = tmp_threshold; 1924 } 1925 } 1926 1927 int amdgpu_ras_recovery_init(struct amdgpu_device *adev) 1928 { 1929 struct amdgpu_ras *con = amdgpu_ras_get_context(adev); 1930 struct ras_err_handler_data **data; 1931 uint32_t max_eeprom_records_len = 0; 1932 bool exc_err_limit = false; 1933 int ret; 1934 1935 if (adev->ras_enabled && con) 1936 data = &con->eh_data; 1937 else 1938 return 0; 1939 1940 *data = kmalloc(sizeof(**data), GFP_KERNEL | __GFP_ZERO); 1941 if (!*data) { 1942 ret = -ENOMEM; 1943 goto out; 1944 } 1945 1946 mutex_init(&con->recovery_lock); 1947 INIT_WORK(&con->recovery_work, amdgpu_ras_do_recovery); 1948 atomic_set(&con->in_recovery, 0); 1949 con->adev = adev; 1950 1951 max_eeprom_records_len = amdgpu_ras_eeprom_get_record_max_length(); 1952 amdgpu_ras_validate_threshold(adev, max_eeprom_records_len); 1953 1954 /* Todo: During test the SMU might fail to read the eeprom through I2C 1955 * when the GPU is pending on XGMI reset during probe time 1956 * (Mostly after second bus reset), skip it now 1957 */ 1958 if (adev->gmc.xgmi.pending_reset) 1959 return 0; 1960 ret = amdgpu_ras_eeprom_init(&con->eeprom_control, &exc_err_limit); 1961 /* 1962 * This calling fails when exc_err_limit is true or 1963 * ret != 0. 1964 */ 1965 if (exc_err_limit || ret) 1966 goto free; 1967 1968 if (con->eeprom_control.num_recs) { 1969 ret = amdgpu_ras_load_bad_pages(adev); 1970 if (ret) 1971 goto free; 1972 } 1973 1974 return 0; 1975 1976 free: 1977 kfree((*data)->bps); 1978 kfree(*data); 1979 con->eh_data = NULL; 1980 out: 1981 dev_warn(adev->dev, "Failed to initialize ras recovery!\n"); 1982 1983 /* 1984 * Except error threshold exceeding case, other failure cases in this 1985 * function would not fail amdgpu driver init. 1986 */ 1987 if (!exc_err_limit) 1988 ret = 0; 1989 else 1990 ret = -EINVAL; 1991 1992 return ret; 1993 } 1994 1995 static int amdgpu_ras_recovery_fini(struct amdgpu_device *adev) 1996 { 1997 struct amdgpu_ras *con = amdgpu_ras_get_context(adev); 1998 struct ras_err_handler_data *data = con->eh_data; 1999 2000 /* recovery_init failed to init it, fini is useless */ 2001 if (!data) 2002 return 0; 2003 2004 cancel_work_sync(&con->recovery_work); 2005 2006 mutex_lock(&con->recovery_lock); 2007 con->eh_data = NULL; 2008 kfree(data->bps); 2009 kfree(data); 2010 mutex_unlock(&con->recovery_lock); 2011 2012 return 0; 2013 } 2014 /* recovery end */ 2015 2016 /* return 0 if ras will reset gpu and repost.*/ 2017 int amdgpu_ras_request_reset_on_boot(struct amdgpu_device *adev, 2018 unsigned int block) 2019 { 2020 struct amdgpu_ras *ras = amdgpu_ras_get_context(adev); 2021 2022 if (!ras) 2023 return -EINVAL; 2024 2025 ras->flags |= AMDGPU_RAS_FLAG_INIT_NEED_RESET; 2026 return 0; 2027 } 2028 2029 static bool amdgpu_ras_asic_supported(struct amdgpu_device *adev) 2030 { 2031 return adev->asic_type == CHIP_VEGA10 || 2032 adev->asic_type == CHIP_VEGA20 || 2033 adev->asic_type == CHIP_ARCTURUS || 2034 adev->asic_type == CHIP_ALDEBARAN || 2035 adev->asic_type == CHIP_SIENNA_CICHLID; 2036 } 2037 2038 /* 2039 * this is workaround for vega20 workstation sku, 2040 * force enable gfx ras, ignore vbios gfx ras flag 2041 * due to GC EDC can not write 2042 */ 2043 static void amdgpu_ras_get_quirks(struct amdgpu_device *adev) 2044 { 2045 struct atom_context *ctx = adev->mode_info.atom_context; 2046 2047 if (!ctx) 2048 return; 2049 2050 if (strnstr(ctx->vbios_version, "D16406", 2051 sizeof(ctx->vbios_version))) 2052 adev->ras_hw_enabled |= (1 << AMDGPU_RAS_BLOCK__GFX); 2053 } 2054 2055 /* 2056 * check hardware's ras ability which will be saved in hw_supported. 2057 * if hardware does not support ras, we can skip some ras initializtion and 2058 * forbid some ras operations from IP. 2059 * if software itself, say boot parameter, limit the ras ability. We still 2060 * need allow IP do some limited operations, like disable. In such case, 2061 * we have to initialize ras as normal. but need check if operation is 2062 * allowed or not in each function. 2063 */ 2064 static void amdgpu_ras_check_supported(struct amdgpu_device *adev) 2065 { 2066 adev->ras_hw_enabled = adev->ras_enabled = 0; 2067 2068 if (amdgpu_sriov_vf(adev) || !adev->is_atom_fw || 2069 !amdgpu_ras_asic_supported(adev)) 2070 return; 2071 2072 if (!adev->gmc.xgmi.connected_to_cpu) { 2073 if (amdgpu_atomfirmware_mem_ecc_supported(adev)) { 2074 dev_info(adev->dev, "MEM ECC is active.\n"); 2075 adev->ras_hw_enabled |= (1 << AMDGPU_RAS_BLOCK__UMC | 2076 1 << AMDGPU_RAS_BLOCK__DF); 2077 } else { 2078 dev_info(adev->dev, "MEM ECC is not presented.\n"); 2079 } 2080 2081 if (amdgpu_atomfirmware_sram_ecc_supported(adev)) { 2082 dev_info(adev->dev, "SRAM ECC is active.\n"); 2083 adev->ras_hw_enabled |= ~(1 << AMDGPU_RAS_BLOCK__UMC | 2084 1 << AMDGPU_RAS_BLOCK__DF); 2085 } else { 2086 dev_info(adev->dev, "SRAM ECC is not presented.\n"); 2087 } 2088 } else { 2089 /* driver only manages a few IP blocks RAS feature 2090 * when GPU is connected cpu through XGMI */ 2091 adev->ras_hw_enabled |= (1 << AMDGPU_RAS_BLOCK__GFX | 2092 1 << AMDGPU_RAS_BLOCK__SDMA | 2093 1 << AMDGPU_RAS_BLOCK__MMHUB); 2094 } 2095 2096 amdgpu_ras_get_quirks(adev); 2097 2098 /* hw_supported needs to be aligned with RAS block mask. */ 2099 adev->ras_hw_enabled &= AMDGPU_RAS_BLOCK_MASK; 2100 2101 adev->ras_enabled = amdgpu_ras_enable == 0 ? 0 : 2102 adev->ras_hw_enabled & amdgpu_ras_mask; 2103 } 2104 2105 int amdgpu_ras_init(struct amdgpu_device *adev) 2106 { 2107 struct amdgpu_ras *con = amdgpu_ras_get_context(adev); 2108 int r; 2109 2110 if (con) 2111 return 0; 2112 2113 con = kmalloc(sizeof(struct amdgpu_ras) + 2114 sizeof(struct ras_manager) * AMDGPU_RAS_BLOCK_COUNT, 2115 GFP_KERNEL|__GFP_ZERO); 2116 if (!con) 2117 return -ENOMEM; 2118 2119 con->objs = (struct ras_manager *)(con + 1); 2120 2121 amdgpu_ras_set_context(adev, con); 2122 2123 amdgpu_ras_check_supported(adev); 2124 2125 if (!adev->ras_enabled || adev->asic_type == CHIP_VEGA10) { 2126 /* set gfx block ras context feature for VEGA20 Gaming 2127 * send ras disable cmd to ras ta during ras late init. 2128 */ 2129 if (!adev->ras_enabled && adev->asic_type == CHIP_VEGA20) { 2130 con->features |= BIT(AMDGPU_RAS_BLOCK__GFX); 2131 2132 return 0; 2133 } 2134 2135 r = 0; 2136 goto release_con; 2137 } 2138 2139 con->features = 0; 2140 INIT_LIST_HEAD(&con->head); 2141 /* Might need get this flag from vbios. */ 2142 con->flags = RAS_DEFAULT_FLAGS; 2143 2144 /* initialize nbio ras function ahead of any other 2145 * ras functions so hardware fatal error interrupt 2146 * can be enabled as early as possible */ 2147 switch (adev->asic_type) { 2148 case CHIP_VEGA20: 2149 case CHIP_ARCTURUS: 2150 case CHIP_ALDEBARAN: 2151 if (!adev->gmc.xgmi.connected_to_cpu) 2152 adev->nbio.ras_funcs = &nbio_v7_4_ras_funcs; 2153 break; 2154 default: 2155 /* nbio ras is not available */ 2156 break; 2157 } 2158 2159 if (adev->nbio.ras_funcs && 2160 adev->nbio.ras_funcs->init_ras_controller_interrupt) { 2161 r = adev->nbio.ras_funcs->init_ras_controller_interrupt(adev); 2162 if (r) 2163 goto release_con; 2164 } 2165 2166 if (adev->nbio.ras_funcs && 2167 adev->nbio.ras_funcs->init_ras_err_event_athub_interrupt) { 2168 r = adev->nbio.ras_funcs->init_ras_err_event_athub_interrupt(adev); 2169 if (r) 2170 goto release_con; 2171 } 2172 2173 if (amdgpu_ras_fs_init(adev)) { 2174 r = -EINVAL; 2175 goto release_con; 2176 } 2177 2178 dev_info(adev->dev, "RAS INFO: ras initialized successfully, " 2179 "hardware ability[%x] ras_mask[%x]\n", 2180 adev->ras_hw_enabled, adev->ras_enabled); 2181 2182 return 0; 2183 release_con: 2184 amdgpu_ras_set_context(adev, NULL); 2185 kfree(con); 2186 2187 return r; 2188 } 2189 2190 static int amdgpu_persistent_edc_harvesting_supported(struct amdgpu_device *adev) 2191 { 2192 if (adev->gmc.xgmi.connected_to_cpu) 2193 return 1; 2194 return 0; 2195 } 2196 2197 static int amdgpu_persistent_edc_harvesting(struct amdgpu_device *adev, 2198 struct ras_common_if *ras_block) 2199 { 2200 struct ras_query_if info = { 2201 .head = *ras_block, 2202 }; 2203 2204 if (!amdgpu_persistent_edc_harvesting_supported(adev)) 2205 return 0; 2206 2207 if (amdgpu_ras_query_error_status(adev, &info) != 0) 2208 DRM_WARN("RAS init harvest failure"); 2209 2210 if (amdgpu_ras_reset_error_status(adev, ras_block->block) != 0) 2211 DRM_WARN("RAS init harvest reset failure"); 2212 2213 return 0; 2214 } 2215 2216 /* helper function to handle common stuff in ip late init phase */ 2217 int amdgpu_ras_late_init(struct amdgpu_device *adev, 2218 struct ras_common_if *ras_block, 2219 struct ras_fs_if *fs_info, 2220 struct ras_ih_if *ih_info) 2221 { 2222 int r; 2223 2224 /* disable RAS feature per IP block if it is not supported */ 2225 if (!amdgpu_ras_is_supported(adev, ras_block->block)) { 2226 amdgpu_ras_feature_enable_on_boot(adev, ras_block, 0); 2227 return 0; 2228 } 2229 2230 r = amdgpu_ras_feature_enable_on_boot(adev, ras_block, 1); 2231 if (r) { 2232 if (r == -EAGAIN) { 2233 /* request gpu reset. will run again */ 2234 amdgpu_ras_request_reset_on_boot(adev, 2235 ras_block->block); 2236 return 0; 2237 } else if (adev->in_suspend || amdgpu_in_reset(adev)) { 2238 /* in resume phase, if fail to enable ras, 2239 * clean up all ras fs nodes, and disable ras */ 2240 goto cleanup; 2241 } else 2242 return r; 2243 } 2244 2245 /* check for errors on warm reset edc persisant supported ASIC */ 2246 amdgpu_persistent_edc_harvesting(adev, ras_block); 2247 2248 /* in resume phase, no need to create ras fs node */ 2249 if (adev->in_suspend || amdgpu_in_reset(adev)) 2250 return 0; 2251 2252 if (ih_info->cb) { 2253 r = amdgpu_ras_interrupt_add_handler(adev, ih_info); 2254 if (r) 2255 goto interrupt; 2256 } 2257 2258 r = amdgpu_ras_sysfs_create(adev, fs_info); 2259 if (r) 2260 goto sysfs; 2261 2262 return 0; 2263 cleanup: 2264 amdgpu_ras_sysfs_remove(adev, ras_block); 2265 sysfs: 2266 if (ih_info->cb) 2267 amdgpu_ras_interrupt_remove_handler(adev, ih_info); 2268 interrupt: 2269 amdgpu_ras_feature_enable(adev, ras_block, 0); 2270 return r; 2271 } 2272 2273 /* helper function to remove ras fs node and interrupt handler */ 2274 void amdgpu_ras_late_fini(struct amdgpu_device *adev, 2275 struct ras_common_if *ras_block, 2276 struct ras_ih_if *ih_info) 2277 { 2278 if (!ras_block || !ih_info) 2279 return; 2280 2281 amdgpu_ras_sysfs_remove(adev, ras_block); 2282 if (ih_info->cb) 2283 amdgpu_ras_interrupt_remove_handler(adev, ih_info); 2284 amdgpu_ras_feature_enable(adev, ras_block, 0); 2285 } 2286 2287 /* do some init work after IP late init as dependence. 2288 * and it runs in resume/gpu reset/booting up cases. 2289 */ 2290 void amdgpu_ras_resume(struct amdgpu_device *adev) 2291 { 2292 struct amdgpu_ras *con = amdgpu_ras_get_context(adev); 2293 struct ras_manager *obj, *tmp; 2294 2295 if (!adev->ras_enabled || !con) { 2296 /* clean ras context for VEGA20 Gaming after send ras disable cmd */ 2297 amdgpu_release_ras_context(adev); 2298 2299 return; 2300 } 2301 2302 if (con->flags & AMDGPU_RAS_FLAG_INIT_BY_VBIOS) { 2303 /* Set up all other IPs which are not implemented. There is a 2304 * tricky thing that IP's actual ras error type should be 2305 * MULTI_UNCORRECTABLE, but as driver does not handle it, so 2306 * ERROR_NONE make sense anyway. 2307 */ 2308 amdgpu_ras_enable_all_features(adev, 1); 2309 2310 /* We enable ras on all hw_supported block, but as boot 2311 * parameter might disable some of them and one or more IP has 2312 * not implemented yet. So we disable them on behalf. 2313 */ 2314 list_for_each_entry_safe(obj, tmp, &con->head, node) { 2315 if (!amdgpu_ras_is_supported(adev, obj->head.block)) { 2316 amdgpu_ras_feature_enable(adev, &obj->head, 0); 2317 /* there should be no any reference. */ 2318 WARN_ON(alive_obj(obj)); 2319 } 2320 } 2321 } 2322 2323 if (con->flags & AMDGPU_RAS_FLAG_INIT_NEED_RESET) { 2324 con->flags &= ~AMDGPU_RAS_FLAG_INIT_NEED_RESET; 2325 /* setup ras obj state as disabled. 2326 * for init_by_vbios case. 2327 * if we want to enable ras, just enable it in a normal way. 2328 * If we want do disable it, need setup ras obj as enabled, 2329 * then issue another TA disable cmd. 2330 * See feature_enable_on_boot 2331 */ 2332 amdgpu_ras_disable_all_features(adev, 1); 2333 amdgpu_ras_reset_gpu(adev); 2334 } 2335 } 2336 2337 void amdgpu_ras_suspend(struct amdgpu_device *adev) 2338 { 2339 struct amdgpu_ras *con = amdgpu_ras_get_context(adev); 2340 2341 if (!adev->ras_enabled || !con) 2342 return; 2343 2344 amdgpu_ras_disable_all_features(adev, 0); 2345 /* Make sure all ras objects are disabled. */ 2346 if (con->features) 2347 amdgpu_ras_disable_all_features(adev, 1); 2348 } 2349 2350 /* do some fini work before IP fini as dependence */ 2351 int amdgpu_ras_pre_fini(struct amdgpu_device *adev) 2352 { 2353 struct amdgpu_ras *con = amdgpu_ras_get_context(adev); 2354 2355 if (!adev->ras_enabled || !con) 2356 return 0; 2357 2358 /* Need disable ras on all IPs here before ip [hw/sw]fini */ 2359 amdgpu_ras_disable_all_features(adev, 0); 2360 amdgpu_ras_recovery_fini(adev); 2361 return 0; 2362 } 2363 2364 int amdgpu_ras_fini(struct amdgpu_device *adev) 2365 { 2366 struct amdgpu_ras *con = amdgpu_ras_get_context(adev); 2367 2368 if (!adev->ras_enabled || !con) 2369 return 0; 2370 2371 amdgpu_ras_fs_fini(adev); 2372 amdgpu_ras_interrupt_remove_all(adev); 2373 2374 WARN(con->features, "Feature mask is not cleared"); 2375 2376 if (con->features) 2377 amdgpu_ras_disable_all_features(adev, 1); 2378 2379 amdgpu_ras_set_context(adev, NULL); 2380 kfree(con); 2381 2382 return 0; 2383 } 2384 2385 void amdgpu_ras_global_ras_isr(struct amdgpu_device *adev) 2386 { 2387 amdgpu_ras_check_supported(adev); 2388 if (!adev->ras_hw_enabled) 2389 return; 2390 2391 if (atomic_cmpxchg(&amdgpu_ras_in_intr, 0, 1) == 0) { 2392 dev_info(adev->dev, "uncorrectable hardware error" 2393 "(ERREVENT_ATHUB_INTERRUPT) detected!\n"); 2394 2395 amdgpu_ras_reset_gpu(adev); 2396 } 2397 } 2398 2399 bool amdgpu_ras_need_emergency_restart(struct amdgpu_device *adev) 2400 { 2401 if (adev->asic_type == CHIP_VEGA20 && 2402 adev->pm.fw_version <= 0x283400) { 2403 return !(amdgpu_asic_reset_method(adev) == AMD_RESET_METHOD_BACO) && 2404 amdgpu_ras_intr_triggered(); 2405 } 2406 2407 return false; 2408 } 2409 2410 void amdgpu_release_ras_context(struct amdgpu_device *adev) 2411 { 2412 struct amdgpu_ras *con = amdgpu_ras_get_context(adev); 2413 2414 if (!con) 2415 return; 2416 2417 if (!adev->ras_enabled && con->features & BIT(AMDGPU_RAS_BLOCK__GFX)) { 2418 con->features &= ~BIT(AMDGPU_RAS_BLOCK__GFX); 2419 amdgpu_ras_set_context(adev, NULL); 2420 kfree(con); 2421 } 2422 } 2423