drm/amdgpu/pm: smu_v13_0_4: delete duplicate condition
[linux-2.6-block.git] / drivers / gpu / drm / amd / amdgpu / amdgpu_ras.c
CommitLineData
c030f2e4 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>
f867723b 27#include <linux/uaccess.h>
7c6e68c7
AG
28#include <linux/reboot.h>
29#include <linux/syscalls.h>
05adfd80 30#include <linux/pm_runtime.h>
f867723b 31
c030f2e4 32#include "amdgpu.h"
33#include "amdgpu_ras.h"
b404ae82 34#include "amdgpu_atomfirmware.h"
19744f5f 35#include "amdgpu_xgmi.h"
4e644fff 36#include "ivsrcid/nbio/irqsrcs_nbif_7_4.h"
f50160cf 37#include "atom.h"
12b2cab7
MJ
38#ifdef CONFIG_X86_MCE_AMD
39#include <asm/mce.h>
c030f2e4 40
12b2cab7
MJ
41static bool notifier_registered;
42#endif
eb0c3cd4
GC
43static const char *RAS_FS_NAME = "ras";
44
c030f2e4 45const char *ras_error_string[] = {
46 "none",
47 "parity",
48 "single_correctable",
49 "multi_uncorrectable",
50 "poison",
51};
52
53const char *ras_block_string[] = {
54 "umc",
55 "sdma",
56 "gfx",
57 "mmhub",
58 "athub",
59 "pcie_bif",
60 "hdp",
61 "xgmi_wafl",
62 "df",
63 "smn",
64 "sem",
65 "mp0",
66 "mp1",
67 "fuse",
640ae42e 68 "mca",
a3d63c62
MZZ
69 "vcn",
70 "jpeg",
c030f2e4 71};
72
640ae42e
JC
73const char *ras_mca_block_string[] = {
74 "mca_mp0",
75 "mca_mp1",
76 "mca_mpio",
77 "mca_iohc",
78};
79
d5e8ff5f 80struct amdgpu_ras_block_list {
81 /* ras block link */
82 struct list_head node;
83
84 struct amdgpu_ras_block_object *ras_obj;
85};
86
640ae42e
JC
87const char *get_ras_block_str(struct ras_common_if *ras_block)
88{
89 if (!ras_block)
90 return "NULL";
91
92 if (ras_block->block >= AMDGPU_RAS_BLOCK_COUNT)
93 return "OUT OF RANGE";
94
95 if (ras_block->block == AMDGPU_RAS_BLOCK__MCA)
96 return ras_mca_block_string[ras_block->sub_block_index];
97
98 return ras_block_string[ras_block->block];
99}
100
954ea6aa 101#define ras_block_str(_BLOCK_) \
102 (((_BLOCK_) < ARRAY_SIZE(ras_block_string)) ? ras_block_string[_BLOCK_] : "Out Of Range")
8b0fb0e9 103
c030f2e4 104#define ras_err_str(i) (ras_error_string[ffs(i)])
c030f2e4 105
108c6a63 106#define RAS_DEFAULT_FLAGS (AMDGPU_RAS_FLAG_INIT_BY_VBIOS)
107
7cdc2ee3
TZ
108/* inject address is 52 bits */
109#define RAS_UMC_INJECT_ADDR_LIMIT (0x1ULL << 52)
110
e4e6a589
LT
111/* typical ECC bad page rate is 1 bad page per 100MB VRAM */
112#define RAS_BAD_PAGE_COVER (100 * 1024 * 1024ULL)
c84d4670 113
52dd95f2
GC
114enum amdgpu_ras_retire_page_reservation {
115 AMDGPU_RAS_RETIRE_PAGE_RESERVED,
116 AMDGPU_RAS_RETIRE_PAGE_PENDING,
117 AMDGPU_RAS_RETIRE_PAGE_FAULT,
118};
7c6e68c7
AG
119
120atomic_t amdgpu_ras_in_intr = ATOMIC_INIT(0);
121
676deb38
DL
122static bool amdgpu_ras_check_bad_page_unlock(struct amdgpu_ras *con,
123 uint64_t addr);
6e4be987
TZ
124static bool amdgpu_ras_check_bad_page(struct amdgpu_device *adev,
125 uint64_t addr);
12b2cab7 126#ifdef CONFIG_X86_MCE_AMD
91a1a52d
MJ
127static void amdgpu_register_bad_pages_mca_notifier(struct amdgpu_device *adev);
128struct mce_notifier_adev_list {
129 struct amdgpu_device *devs[MAX_GPU_INSTANCE];
130 int num_gpu;
131};
132static struct mce_notifier_adev_list mce_adev_list;
12b2cab7 133#endif
6e4be987 134
61380faa
JC
135void amdgpu_ras_set_error_query_ready(struct amdgpu_device *adev, bool ready)
136{
a9d82d2f 137 if (adev && amdgpu_ras_get_context(adev))
61380faa
JC
138 amdgpu_ras_get_context(adev)->error_query_ready = ready;
139}
140
f3167919 141static bool amdgpu_ras_get_error_query_ready(struct amdgpu_device *adev)
61380faa 142{
a9d82d2f 143 if (adev && amdgpu_ras_get_context(adev))
61380faa
JC
144 return amdgpu_ras_get_context(adev)->error_query_ready;
145
146 return false;
147}
148
cbb8f989
JC
149static int amdgpu_reserve_page_direct(struct amdgpu_device *adev, uint64_t address)
150{
151 struct ras_err_data err_data = {0, 0, 0, NULL};
152 struct eeprom_table_record err_rec;
153
154 if ((address >= adev->gmc.mc_vram_size) ||
155 (address >= RAS_UMC_INJECT_ADDR_LIMIT)) {
156 dev_warn(adev->dev,
157 "RAS WARN: input address 0x%llx is invalid.\n",
158 address);
159 return -EINVAL;
160 }
161
162 if (amdgpu_ras_check_bad_page(adev, address)) {
163 dev_warn(adev->dev,
80b0cd0f 164 "RAS WARN: 0x%llx has already been marked as bad page!\n",
cbb8f989
JC
165 address);
166 return 0;
167 }
168
169 memset(&err_rec, 0x0, sizeof(struct eeprom_table_record));
cbb8f989 170 err_data.err_addr = &err_rec;
400013b2
TZ
171 amdgpu_umc_fill_error_record(&err_data, address,
172 (address >> AMDGPU_GPU_PAGE_SHIFT), 0, 0);
cbb8f989
JC
173
174 if (amdgpu_bad_page_threshold != 0) {
175 amdgpu_ras_add_bad_pages(adev, err_data.err_addr,
176 err_data.err_addr_cnt);
177 amdgpu_ras_save_bad_pages(adev);
178 }
179
180 dev_warn(adev->dev, "WARNING: THIS IS ONLY FOR TEST PURPOSES AND WILL CORRUPT RAS EEPROM\n");
181 dev_warn(adev->dev, "Clear EEPROM:\n");
182 dev_warn(adev->dev, " echo 1 > /sys/kernel/debug/dri/0/ras/ras_eeprom_reset\n");
183
184 return 0;
185}
186
c030f2e4 187static ssize_t amdgpu_ras_debugfs_read(struct file *f, char __user *buf,
188 size_t size, loff_t *pos)
189{
190 struct ras_manager *obj = (struct ras_manager *)file_inode(f)->i_private;
191 struct ras_query_if info = {
192 .head = obj->head,
193 };
194 ssize_t s;
195 char val[128];
196
761d86d3 197 if (amdgpu_ras_query_error_status(obj->adev, &info))
c030f2e4 198 return -EINVAL;
199
200 s = snprintf(val, sizeof(val), "%s: %lu\n%s: %lu\n",
201 "ue", info.ue_count,
202 "ce", info.ce_count);
203 if (*pos >= s)
204 return 0;
205
206 s -= *pos;
207 s = min_t(u64, s, size);
208
209
210 if (copy_to_user(buf, &val[*pos], s))
211 return -EINVAL;
212
213 *pos += s;
214
215 return s;
216}
217
c030f2e4 218static const struct file_operations amdgpu_ras_debugfs_ops = {
219 .owner = THIS_MODULE,
220 .read = amdgpu_ras_debugfs_read,
190211ab 221 .write = NULL,
c030f2e4 222 .llseek = default_llseek
223};
224
96ebb307 225static int amdgpu_ras_find_block_id_by_name(const char *name, int *block_id)
226{
227 int i;
228
229 for (i = 0; i < ARRAY_SIZE(ras_block_string); i++) {
230 *block_id = i;
640ae42e 231 if (strcmp(name, ras_block_string[i]) == 0)
96ebb307 232 return 0;
233 }
234 return -EINVAL;
235}
236
237static int amdgpu_ras_debugfs_ctrl_parse_data(struct file *f,
238 const char __user *buf, size_t size,
239 loff_t *pos, struct ras_debug_if *data)
240{
241 ssize_t s = min_t(u64, 64, size);
242 char str[65];
243 char block_name[33];
244 char err[9] = "ue";
245 int op = -1;
246 int block_id;
44494f96 247 uint32_t sub_block;
96ebb307 248 u64 address, value;
249
250 if (*pos)
251 return -EINVAL;
252 *pos = size;
253
254 memset(str, 0, sizeof(str));
255 memset(data, 0, sizeof(*data));
256
257 if (copy_from_user(str, buf, s))
258 return -EINVAL;
259
260 if (sscanf(str, "disable %32s", block_name) == 1)
261 op = 0;
262 else if (sscanf(str, "enable %32s %8s", block_name, err) == 2)
263 op = 1;
264 else if (sscanf(str, "inject %32s %8s", block_name, err) == 2)
265 op = 2;
6df23f4c 266 else if (strstr(str, "retire_page") != NULL)
cbb8f989 267 op = 3;
b076296b 268 else if (str[0] && str[1] && str[2] && str[3])
96ebb307 269 /* ascii string, but commands are not matched. */
270 return -EINVAL;
271
272 if (op != -1) {
cbb8f989 273 if (op == 3) {
546aa546
LT
274 if (sscanf(str, "%*s 0x%llx", &address) != 1 &&
275 sscanf(str, "%*s %llu", &address) != 1)
6cb7a1d4 276 return -EINVAL;
cbb8f989
JC
277
278 data->op = op;
279 data->inject.address = address;
280
281 return 0;
282 }
283
96ebb307 284 if (amdgpu_ras_find_block_id_by_name(block_name, &block_id))
285 return -EINVAL;
286
287 data->head.block = block_id;
e1063493
TZ
288 /* only ue and ce errors are supported */
289 if (!memcmp("ue", err, 2))
290 data->head.type = AMDGPU_RAS_ERROR__MULTI_UNCORRECTABLE;
291 else if (!memcmp("ce", err, 2))
292 data->head.type = AMDGPU_RAS_ERROR__SINGLE_CORRECTABLE;
293 else
294 return -EINVAL;
295
96ebb307 296 data->op = op;
297
298 if (op == 2) {
546aa546
LT
299 if (sscanf(str, "%*s %*s %*s 0x%x 0x%llx 0x%llx",
300 &sub_block, &address, &value) != 3 &&
301 sscanf(str, "%*s %*s %*s %u %llu %llu",
6cb7a1d4
LT
302 &sub_block, &address, &value) != 3)
303 return -EINVAL;
44494f96 304 data->head.sub_block_index = sub_block;
96ebb307 305 data->inject.address = address;
306 data->inject.value = value;
307 }
308 } else {
73aa8e1a 309 if (size < sizeof(*data))
96ebb307 310 return -EINVAL;
311
312 if (copy_from_user(data, buf, sizeof(*data)))
313 return -EINVAL;
314 }
315
316 return 0;
317}
7c6e68c7 318
74abc221
TSD
319/**
320 * DOC: AMDGPU RAS debugfs control interface
36ea1bd2 321 *
737c375b 322 * The control interface accepts struct ras_debug_if which has two members.
36ea1bd2 323 *
324 * First member: ras_debug_if::head or ras_debug_if::inject.
96ebb307 325 *
326 * head is used to indicate which IP block will be under control.
36ea1bd2 327 *
328 * head has four members, they are block, type, sub_block_index, name.
329 * block: which IP will be under control.
330 * type: what kind of error will be enabled/disabled/injected.
331 * sub_block_index: some IPs have subcomponets. say, GFX, sDMA.
332 * name: the name of IP.
333 *
334 * inject has two more members than head, they are address, value.
335 * As their names indicate, inject operation will write the
336 * value to the address.
337 *
ef177d11 338 * The second member: struct ras_debug_if::op.
c688a06b 339 * It has three kinds of operations.
879e723d
AZ
340 *
341 * - 0: disable RAS on the block. Take ::head as its data.
342 * - 1: enable RAS on the block. Take ::head as its data.
343 * - 2: inject errors on the block. Take ::inject as its data.
36ea1bd2 344 *
96ebb307 345 * How to use the interface?
ef177d11 346 *
737c375b 347 * In a program
ef177d11 348 *
737c375b
LT
349 * Copy the struct ras_debug_if in your code and initialize it.
350 * Write the struct to the control interface.
ef177d11 351 *
737c375b 352 * From shell
96ebb307 353 *
879e723d
AZ
354 * .. code-block:: bash
355 *
737c375b
LT
356 * echo "disable <block>" > /sys/kernel/debug/dri/<N>/ras/ras_ctrl
357 * echo "enable <block> <error>" > /sys/kernel/debug/dri/<N>/ras/ras_ctrl
358 * echo "inject <block> <error> <sub-block> <address> <value> > /sys/kernel/debug/dri/<N>/ras/ras_ctrl
879e723d 359 *
737c375b 360 * Where N, is the card which you want to affect.
ef177d11 361 *
737c375b
LT
362 * "disable" requires only the block.
363 * "enable" requires the block and error type.
364 * "inject" requires the block, error type, address, and value.
c666bbf0 365 *
737c375b 366 * The block is one of: umc, sdma, gfx, etc.
879e723d 367 * see ras_block_string[] for details
c666bbf0 368 *
737c375b
LT
369 * The error type is one of: ue, ce, where,
370 * ue is multi-uncorrectable
371 * ce is single-correctable
c666bbf0 372 *
737c375b
LT
373 * The sub-block is a the sub-block index, pass 0 if there is no sub-block.
374 * The address and value are hexadecimal numbers, leading 0x is optional.
879e723d 375 *
737c375b 376 * For instance,
879e723d
AZ
377 *
378 * .. code-block:: bash
96ebb307 379 *
44494f96
TZ
380 * echo inject umc ue 0x0 0x0 0x0 > /sys/kernel/debug/dri/0/ras/ras_ctrl
381 * echo inject umc ce 0 0 0 > /sys/kernel/debug/dri/0/ras/ras_ctrl
96ebb307 382 * echo disable umc > /sys/kernel/debug/dri/0/ras/ras_ctrl
383 *
737c375b 384 * How to check the result of the operation?
36ea1bd2 385 *
737c375b 386 * To check disable/enable, see "ras" features at,
36ea1bd2 387 * /sys/class/drm/card[0/1/2...]/device/ras/features
388 *
737c375b
LT
389 * To check inject, see the corresponding error count at,
390 * /sys/class/drm/card[0/1/2...]/device/ras/[gfx|sdma|umc|...]_err_count
36ea1bd2 391 *
879e723d 392 * .. note::
ef177d11 393 * Operations are only allowed on blocks which are supported.
737c375b 394 * Check the "ras" mask at /sys/module/amdgpu/parameters/ras_mask
ef177d11
AD
395 * to see which blocks support RAS on a particular asic.
396 *
36ea1bd2 397 */
cf696091
LT
398static ssize_t amdgpu_ras_debugfs_ctrl_write(struct file *f,
399 const char __user *buf,
400 size_t size, loff_t *pos)
36ea1bd2 401{
402 struct amdgpu_device *adev = (struct amdgpu_device *)file_inode(f)->i_private;
403 struct ras_debug_if data;
404 int ret = 0;
405
61380faa 406 if (!amdgpu_ras_get_error_query_ready(adev)) {
6952e99c
GC
407 dev_warn(adev->dev, "RAS WARN: error injection "
408 "currently inaccessible\n");
43c4d576
JC
409 return size;
410 }
411
96ebb307 412 ret = amdgpu_ras_debugfs_ctrl_parse_data(f, buf, size, pos, &data);
413 if (ret)
cf696091 414 return ret;
36ea1bd2 415
80b0cd0f 416 if (data.op == 3) {
cbb8f989 417 ret = amdgpu_reserve_page_direct(adev, data.inject.address);
80b0cd0f 418 if (!ret)
cbb8f989
JC
419 return size;
420 else
421 return ret;
422 }
423
36ea1bd2 424 if (!amdgpu_ras_is_supported(adev, data.head.block))
425 return -EINVAL;
426
427 switch (data.op) {
428 case 0:
429 ret = amdgpu_ras_feature_enable(adev, &data.head, 0);
430 break;
431 case 1:
432 ret = amdgpu_ras_feature_enable(adev, &data.head, 1);
433 break;
434 case 2:
7cdc2ee3
TZ
435 if ((data.inject.address >= adev->gmc.mc_vram_size) ||
436 (data.inject.address >= RAS_UMC_INJECT_ADDR_LIMIT)) {
b0d4783a
GC
437 dev_warn(adev->dev, "RAS WARN: input address "
438 "0x%llx is invalid.",
439 data.inject.address);
7cdc2ee3
TZ
440 ret = -EINVAL;
441 break;
442 }
443
6e4be987
TZ
444 /* umc ce/ue error injection for a bad page is not allowed */
445 if ((data.head.block == AMDGPU_RAS_BLOCK__UMC) &&
446 amdgpu_ras_check_bad_page(adev, data.inject.address)) {
c65b0805
LT
447 dev_warn(adev->dev, "RAS WARN: inject: 0x%llx has "
448 "already been marked as bad!\n",
449 data.inject.address);
6e4be987
TZ
450 break;
451 }
452
7cdc2ee3 453 /* data.inject.address is offset instead of absolute gpu address */
36ea1bd2 454 ret = amdgpu_ras_error_inject(adev, &data.inject);
455 break;
96ebb307 456 default:
457 ret = -EINVAL;
458 break;
374bf7bd 459 }
36ea1bd2 460
461 if (ret)
79c04621 462 return ret;
36ea1bd2 463
464 return size;
465}
466
084fe13b
AG
467/**
468 * DOC: AMDGPU RAS debugfs EEPROM table reset interface
469 *
f77c7109 470 * Some boards contain an EEPROM which is used to persistently store a list of
ef177d11 471 * bad pages which experiences ECC errors in vram. This interface provides
f77c7109
AD
472 * a way to reset the EEPROM, e.g., after testing error injection.
473 *
474 * Usage:
475 *
476 * .. code-block:: bash
477 *
478 * echo 1 > ../ras/ras_eeprom_reset
479 *
480 * will reset EEPROM table to 0 entries.
481 *
084fe13b 482 */
cf696091
LT
483static ssize_t amdgpu_ras_debugfs_eeprom_write(struct file *f,
484 const char __user *buf,
485 size_t size, loff_t *pos)
084fe13b 486{
bf0b91b7
GC
487 struct amdgpu_device *adev =
488 (struct amdgpu_device *)file_inode(f)->i_private;
084fe13b
AG
489 int ret;
490
bf0b91b7 491 ret = amdgpu_ras_eeprom_reset_table(
cf696091 492 &(amdgpu_ras_get_context(adev)->eeprom_control));
084fe13b 493
63d4c081 494 if (!ret) {
cf696091
LT
495 /* Something was written to EEPROM.
496 */
bf0b91b7
GC
497 amdgpu_ras_get_context(adev)->flags = RAS_DEFAULT_FLAGS;
498 return size;
499 } else {
cf696091 500 return ret;
bf0b91b7 501 }
084fe13b
AG
502}
503
36ea1bd2 504static const struct file_operations amdgpu_ras_debugfs_ctrl_ops = {
505 .owner = THIS_MODULE,
506 .read = NULL,
507 .write = amdgpu_ras_debugfs_ctrl_write,
508 .llseek = default_llseek
509};
510
084fe13b
AG
511static const struct file_operations amdgpu_ras_debugfs_eeprom_ops = {
512 .owner = THIS_MODULE,
513 .read = NULL,
514 .write = amdgpu_ras_debugfs_eeprom_write,
515 .llseek = default_llseek
516};
517
f77c7109
AD
518/**
519 * DOC: AMDGPU RAS sysfs Error Count Interface
520 *
ef177d11 521 * It allows the user to read the error count for each IP block on the gpu through
f77c7109
AD
522 * /sys/class/drm/card[0/1/2...]/device/ras/[gfx/sdma/...]_err_count
523 *
524 * It outputs the multiple lines which report the uncorrected (ue) and corrected
525 * (ce) error counts.
526 *
527 * The format of one line is below,
528 *
529 * [ce|ue]: count
530 *
531 * Example:
532 *
533 * .. code-block:: bash
534 *
535 * ue: 0
536 * ce: 1
537 *
538 */
c030f2e4 539static ssize_t amdgpu_ras_sysfs_read(struct device *dev,
540 struct device_attribute *attr, char *buf)
541{
542 struct ras_manager *obj = container_of(attr, struct ras_manager, sysfs_attr);
543 struct ras_query_if info = {
544 .head = obj->head,
545 };
546
61380faa 547 if (!amdgpu_ras_get_error_query_ready(obj->adev))
36000c7a 548 return sysfs_emit(buf, "Query currently inaccessible\n");
43c4d576 549
761d86d3 550 if (amdgpu_ras_query_error_status(obj->adev, &info))
c030f2e4 551 return -EINVAL;
552
1f0d8e37
MJ
553 if (obj->adev->asic_type == CHIP_ALDEBARAN) {
554 if (amdgpu_ras_reset_error_status(obj->adev, info.head.block))
555 DRM_WARN("Failed to reset error counter and error status");
556 }
557
36000c7a
TT
558 return sysfs_emit(buf, "%s: %lu\n%s: %lu\n", "ue", info.ue_count,
559 "ce", info.ce_count);
c030f2e4 560}
561
562/* obj begin */
563
564#define get_obj(obj) do { (obj)->use++; } while (0)
565#define alive_obj(obj) ((obj)->use)
566
567static inline void put_obj(struct ras_manager *obj)
568{
f0872686 569 if (obj && (--obj->use == 0))
c030f2e4 570 list_del(&obj->node);
f0872686 571 if (obj && (obj->use < 0))
640ae42e 572 DRM_ERROR("RAS ERROR: Unbalance obj(%s) use\n", get_ras_block_str(&obj->head));
c030f2e4 573}
574
575/* make one obj and return it. */
576static struct ras_manager *amdgpu_ras_create_obj(struct amdgpu_device *adev,
577 struct ras_common_if *head)
578{
579 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
580 struct ras_manager *obj;
581
8ab0d6f0 582 if (!adev->ras_enabled || !con)
c030f2e4 583 return NULL;
584
585 if (head->block >= AMDGPU_RAS_BLOCK_COUNT)
586 return NULL;
587
640ae42e
JC
588 if (head->block == AMDGPU_RAS_BLOCK__MCA) {
589 if (head->sub_block_index >= AMDGPU_RAS_MCA_BLOCK__LAST)
590 return NULL;
591
592 obj = &con->objs[AMDGPU_RAS_BLOCK__LAST + head->sub_block_index];
593 } else
594 obj = &con->objs[head->block];
595
c030f2e4 596 /* already exist. return obj? */
597 if (alive_obj(obj))
598 return NULL;
599
600 obj->head = *head;
601 obj->adev = adev;
602 list_add(&obj->node, &con->head);
603 get_obj(obj);
604
605 return obj;
606}
607
608/* return an obj equal to head, or the first when head is NULL */
f2a79be1 609struct ras_manager *amdgpu_ras_find_obj(struct amdgpu_device *adev,
c030f2e4 610 struct ras_common_if *head)
611{
612 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
613 struct ras_manager *obj;
614 int i;
615
8ab0d6f0 616 if (!adev->ras_enabled || !con)
c030f2e4 617 return NULL;
618
619 if (head) {
620 if (head->block >= AMDGPU_RAS_BLOCK_COUNT)
621 return NULL;
622
640ae42e
JC
623 if (head->block == AMDGPU_RAS_BLOCK__MCA) {
624 if (head->sub_block_index >= AMDGPU_RAS_MCA_BLOCK__LAST)
625 return NULL;
626
627 obj = &con->objs[AMDGPU_RAS_BLOCK__LAST + head->sub_block_index];
628 } else
629 obj = &con->objs[head->block];
c030f2e4 630
640ae42e 631 if (alive_obj(obj))
c030f2e4 632 return obj;
c030f2e4 633 } else {
640ae42e 634 for (i = 0; i < AMDGPU_RAS_BLOCK_COUNT + AMDGPU_RAS_MCA_BLOCK_COUNT; i++) {
c030f2e4 635 obj = &con->objs[i];
640ae42e 636 if (alive_obj(obj))
c030f2e4 637 return obj;
c030f2e4 638 }
639 }
640
641 return NULL;
642}
643/* obj end */
644
645/* feature ctl begin */
646static int amdgpu_ras_is_feature_allowed(struct amdgpu_device *adev,
e509965e 647 struct ras_common_if *head)
c030f2e4 648{
8ab0d6f0 649 return adev->ras_hw_enabled & BIT(head->block);
c030f2e4 650}
651
652static int amdgpu_ras_is_feature_enabled(struct amdgpu_device *adev,
653 struct ras_common_if *head)
654{
655 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
656
657 return con->features & BIT(head->block);
658}
659
660/*
661 * if obj is not created, then create one.
662 * set feature enable flag.
663 */
664static int __amdgpu_ras_feature_enable(struct amdgpu_device *adev,
665 struct ras_common_if *head, int enable)
666{
667 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
668 struct ras_manager *obj = amdgpu_ras_find_obj(adev, head);
669
5caf466a 670 /* If hardware does not support ras, then do not create obj.
671 * But if hardware support ras, we can create the obj.
672 * Ras framework checks con->hw_supported to see if it need do
673 * corresponding initialization.
674 * IP checks con->support to see if it need disable ras.
675 */
c030f2e4 676 if (!amdgpu_ras_is_feature_allowed(adev, head))
677 return 0;
c030f2e4 678
679 if (enable) {
680 if (!obj) {
681 obj = amdgpu_ras_create_obj(adev, head);
682 if (!obj)
683 return -EINVAL;
684 } else {
685 /* In case we create obj somewhere else */
686 get_obj(obj);
687 }
688 con->features |= BIT(head->block);
689 } else {
690 if (obj && amdgpu_ras_is_feature_enabled(adev, head)) {
19d0dfda 691 con->features &= ~BIT(head->block);
c030f2e4 692 put_obj(obj);
693 }
694 }
695
696 return 0;
697}
698
699/* wrapper of psp_ras_enable_features */
700int amdgpu_ras_feature_enable(struct amdgpu_device *adev,
701 struct ras_common_if *head, bool enable)
702{
703 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
7fcffecf 704 union ta_ras_cmd_input *info;
c030f2e4 705 int ret;
706
707 if (!con)
708 return -EINVAL;
709
f3729f7b 710 info = kzalloc(sizeof(union ta_ras_cmd_input), GFP_KERNEL);
7fcffecf
AB
711 if (!info)
712 return -ENOMEM;
713
c030f2e4 714 if (!enable) {
7fcffecf 715 info->disable_features = (struct ta_ras_disable_features_input) {
828cfa29 716 .block_id = amdgpu_ras_block_to_ta(head->block),
717 .error_type = amdgpu_ras_error_to_ta(head->type),
c030f2e4 718 };
719 } else {
7fcffecf 720 info->enable_features = (struct ta_ras_enable_features_input) {
828cfa29 721 .block_id = amdgpu_ras_block_to_ta(head->block),
722 .error_type = amdgpu_ras_error_to_ta(head->type),
c030f2e4 723 };
724 }
725
726 /* Do not enable if it is not allowed. */
727 WARN_ON(enable && !amdgpu_ras_is_feature_allowed(adev, head));
c030f2e4 728
bff77e86 729 if (!amdgpu_ras_intr_triggered()) {
7fcffecf 730 ret = psp_ras_enable_features(&adev->psp, info, enable);
bff77e86 731 if (ret) {
e4348849 732 dev_err(adev->dev, "ras %s %s failed poison:%d ret:%d\n",
011907fd 733 enable ? "enable":"disable",
640ae42e 734 get_ras_block_str(head),
e4348849 735 amdgpu_ras_is_poison_mode_supported(adev), ret);
7fcffecf 736 goto out;
bff77e86 737 }
c030f2e4 738 }
739
740 /* setup the obj */
741 __amdgpu_ras_feature_enable(adev, head, enable);
7fcffecf
AB
742 ret = 0;
743out:
744 kfree(info);
745 return ret;
c030f2e4 746}
747
77de502b 748/* Only used in device probe stage and called only once. */
749int amdgpu_ras_feature_enable_on_boot(struct amdgpu_device *adev,
750 struct ras_common_if *head, bool enable)
751{
752 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
753 int ret;
754
755 if (!con)
756 return -EINVAL;
757
758 if (con->flags & AMDGPU_RAS_FLAG_INIT_BY_VBIOS) {
7af23ebe 759 if (enable) {
760 /* There is no harm to issue a ras TA cmd regardless of
761 * the currecnt ras state.
762 * If current state == target state, it will do nothing
763 * But sometimes it requests driver to reset and repost
764 * with error code -EAGAIN.
765 */
766 ret = amdgpu_ras_feature_enable(adev, head, 1);
767 /* With old ras TA, we might fail to enable ras.
768 * Log it and just setup the object.
769 * TODO need remove this WA in the future.
770 */
771 if (ret == -EINVAL) {
772 ret = __amdgpu_ras_feature_enable(adev, head, 1);
773 if (!ret)
6952e99c
GC
774 dev_info(adev->dev,
775 "RAS INFO: %s setup object\n",
640ae42e 776 get_ras_block_str(head));
7af23ebe 777 }
778 } else {
779 /* setup the object then issue a ras TA disable cmd.*/
780 ret = __amdgpu_ras_feature_enable(adev, head, 1);
781 if (ret)
782 return ret;
77de502b 783
970fd197
SY
784 /* gfx block ras dsiable cmd must send to ras-ta */
785 if (head->block == AMDGPU_RAS_BLOCK__GFX)
786 con->features |= BIT(head->block);
787
77de502b 788 ret = amdgpu_ras_feature_enable(adev, head, 0);
19d0dfda
SY
789
790 /* clean gfx block ras features flag */
8ab0d6f0 791 if (adev->ras_enabled && head->block == AMDGPU_RAS_BLOCK__GFX)
19d0dfda 792 con->features &= ~BIT(head->block);
7af23ebe 793 }
77de502b 794 } else
795 ret = amdgpu_ras_feature_enable(adev, head, enable);
796
797 return ret;
798}
799
c030f2e4 800static int amdgpu_ras_disable_all_features(struct amdgpu_device *adev,
801 bool bypass)
802{
803 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
804 struct ras_manager *obj, *tmp;
805
806 list_for_each_entry_safe(obj, tmp, &con->head, node) {
807 /* bypass psp.
808 * aka just release the obj and corresponding flags
809 */
810 if (bypass) {
811 if (__amdgpu_ras_feature_enable(adev, &obj->head, 0))
812 break;
813 } else {
814 if (amdgpu_ras_feature_enable(adev, &obj->head, 0))
815 break;
816 }
289d513b 817 }
c030f2e4 818
819 return con->features;
820}
821
822static int amdgpu_ras_enable_all_features(struct amdgpu_device *adev,
823 bool bypass)
824{
825 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
c030f2e4 826 int i;
640ae42e 827 const enum amdgpu_ras_error_type default_ras_type = AMDGPU_RAS_ERROR__NONE;
c030f2e4 828
640ae42e 829 for (i = 0; i < AMDGPU_RAS_BLOCK_COUNT; i++) {
c030f2e4 830 struct ras_common_if head = {
831 .block = i,
191051a1 832 .type = default_ras_type,
c030f2e4 833 .sub_block_index = 0,
834 };
640ae42e
JC
835
836 if (i == AMDGPU_RAS_BLOCK__MCA)
837 continue;
838
839 if (bypass) {
840 /*
841 * bypass psp. vbios enable ras for us.
842 * so just create the obj
843 */
844 if (__amdgpu_ras_feature_enable(adev, &head, 1))
845 break;
846 } else {
847 if (amdgpu_ras_feature_enable(adev, &head, 1))
848 break;
849 }
850 }
851
852 for (i = 0; i < AMDGPU_RAS_MCA_BLOCK_COUNT; i++) {
853 struct ras_common_if head = {
854 .block = AMDGPU_RAS_BLOCK__MCA,
855 .type = default_ras_type,
856 .sub_block_index = i,
857 };
858
c030f2e4 859 if (bypass) {
860 /*
861 * bypass psp. vbios enable ras for us.
862 * so just create the obj
863 */
864 if (__amdgpu_ras_feature_enable(adev, &head, 1))
865 break;
866 } else {
867 if (amdgpu_ras_feature_enable(adev, &head, 1))
868 break;
869 }
289d513b 870 }
c030f2e4 871
872 return con->features;
873}
874/* feature ctl end */
875
e3d833f4 876static int amdgpu_ras_block_match_default(struct amdgpu_ras_block_object *block_obj,
877 enum amdgpu_ras_block block)
6492e1b0 878{
b6efdb02 879 if (!block_obj)
6492e1b0 880 return -EINVAL;
881
bdb3489c 882 if (block_obj->ras_comm.block == block)
6492e1b0 883 return 0;
640ae42e 884
6492e1b0 885 return -EINVAL;
886}
887
b6efdb02 888static struct amdgpu_ras_block_object *amdgpu_ras_get_ras_block(struct amdgpu_device *adev,
6492e1b0 889 enum amdgpu_ras_block block, uint32_t sub_block_index)
640ae42e 890{
d5e8ff5f 891 struct amdgpu_ras_block_list *node, *tmp;
892 struct amdgpu_ras_block_object *obj;
6492e1b0 893
894 if (block >= AMDGPU_RAS_BLOCK__LAST)
895 return NULL;
896
897 if (!amdgpu_ras_is_supported(adev, block))
898 return NULL;
899
d5e8ff5f 900 list_for_each_entry_safe(node, tmp, &adev->ras_list, node) {
901 if (!node->ras_obj) {
902 dev_warn(adev->dev, "Warning: abnormal ras list node.\n");
903 continue;
904 }
905
906 obj = node->ras_obj;
6492e1b0 907 if (obj->ras_block_match) {
908 if (obj->ras_block_match(obj, block, sub_block_index) == 0)
909 return obj;
910 } else {
911 if (amdgpu_ras_block_match_default(obj, block) == 0)
912 return obj;
913 }
640ae42e 914 }
6492e1b0 915
916 return NULL;
640ae42e
JC
917}
918
fdcb279d
SY
919static void amdgpu_ras_get_ecc_info(struct amdgpu_device *adev, struct ras_err_data *err_data)
920{
921 struct amdgpu_ras *ras = amdgpu_ras_get_context(adev);
922 int ret = 0;
923
924 /*
925 * choosing right query method according to
926 * whether smu support query error information
927 */
bc143d8b 928 ret = amdgpu_dpm_get_ecc_info(adev, (void *)&(ras->umc_ecc));
fdcb279d 929 if (ret == -EOPNOTSUPP) {
efe17d5a 930 if (adev->umc.ras && adev->umc.ras->ras_block.hw_ops &&
931 adev->umc.ras->ras_block.hw_ops->query_ras_error_count)
932 adev->umc.ras->ras_block.hw_ops->query_ras_error_count(adev, err_data);
fdcb279d
SY
933
934 /* umc query_ras_error_address is also responsible for clearing
935 * error status
936 */
efe17d5a 937 if (adev->umc.ras && adev->umc.ras->ras_block.hw_ops &&
938 adev->umc.ras->ras_block.hw_ops->query_ras_error_address)
939 adev->umc.ras->ras_block.hw_ops->query_ras_error_address(adev, err_data);
fdcb279d 940 } else if (!ret) {
efe17d5a 941 if (adev->umc.ras &&
942 adev->umc.ras->ecc_info_query_ras_error_count)
943 adev->umc.ras->ecc_info_query_ras_error_count(adev, err_data);
fdcb279d 944
efe17d5a 945 if (adev->umc.ras &&
946 adev->umc.ras->ecc_info_query_ras_error_address)
947 adev->umc.ras->ecc_info_query_ras_error_address(adev, err_data);
fdcb279d
SY
948 }
949}
950
c030f2e4 951/* query/inject/cure begin */
761d86d3 952int amdgpu_ras_query_error_status(struct amdgpu_device *adev,
4d9f771e 953 struct ras_query_if *info)
c030f2e4 954{
b6efdb02 955 struct amdgpu_ras_block_object *block_obj = NULL;
c030f2e4 956 struct ras_manager *obj = amdgpu_ras_find_obj(adev, &info->head);
6f102dba 957 struct ras_err_data err_data = {0, 0, 0, NULL};
c030f2e4 958
959 if (!obj)
960 return -EINVAL;
c030f2e4 961
7389a5b8 962 if (info->head.block == AMDGPU_RAS_BLOCK__UMC) {
fdcb279d 963 amdgpu_ras_get_ecc_info(adev, &err_data);
7389a5b8 964 } else {
965 block_obj = amdgpu_ras_get_ras_block(adev, info->head.block, 0);
8b0fb0e9 966 if (!block_obj || !block_obj->hw_ops) {
afa37315
LT
967 dev_dbg_once(adev->dev, "%s doesn't config RAS function\n",
968 get_ras_block_str(&info->head));
8b0fb0e9 969 return -EINVAL;
3e81ee9a 970 }
761d86d3 971
6c245386 972 if (block_obj->hw_ops->query_ras_error_count)
973 block_obj->hw_ops->query_ras_error_count(adev, &err_data);
7389a5b8 974
975 if ((info->head.block == AMDGPU_RAS_BLOCK__SDMA) ||
976 (info->head.block == AMDGPU_RAS_BLOCK__GFX) ||
977 (info->head.block == AMDGPU_RAS_BLOCK__MMHUB)) {
978 if (block_obj->hw_ops->query_ras_error_status)
979 block_obj->hw_ops->query_ras_error_status(adev);
980 }
939e2258 981 }
05a58345
TZ
982
983 obj->err_data.ue_count += err_data.ue_count;
984 obj->err_data.ce_count += err_data.ce_count;
985
c030f2e4 986 info->ue_count = obj->err_data.ue_count;
987 info->ce_count = obj->err_data.ce_count;
988
7c6e68c7 989 if (err_data.ce_count) {
a30f1286
HZ
990 if (adev->smuio.funcs &&
991 adev->smuio.funcs->get_socket_id &&
992 adev->smuio.funcs->get_die_id) {
993 dev_info(adev->dev, "socket: %d, die: %d "
994 "%ld correctable hardware errors "
6952e99c
GC
995 "detected in %s block, no user "
996 "action is needed.\n",
a30f1286
HZ
997 adev->smuio.funcs->get_socket_id(adev),
998 adev->smuio.funcs->get_die_id(adev),
6952e99c 999 obj->err_data.ce_count,
640ae42e 1000 get_ras_block_str(&info->head));
a30f1286
HZ
1001 } else {
1002 dev_info(adev->dev, "%ld correctable hardware errors "
6952e99c
GC
1003 "detected in %s block, no user "
1004 "action is needed.\n",
1005 obj->err_data.ce_count,
640ae42e 1006 get_ras_block_str(&info->head));
a30f1286 1007 }
7c6e68c7
AG
1008 }
1009 if (err_data.ue_count) {
a30f1286
HZ
1010 if (adev->smuio.funcs &&
1011 adev->smuio.funcs->get_socket_id &&
1012 adev->smuio.funcs->get_die_id) {
1013 dev_info(adev->dev, "socket: %d, die: %d "
1014 "%ld uncorrectable hardware errors "
6952e99c 1015 "detected in %s block\n",
a30f1286
HZ
1016 adev->smuio.funcs->get_socket_id(adev),
1017 adev->smuio.funcs->get_die_id(adev),
6952e99c 1018 obj->err_data.ue_count,
640ae42e 1019 get_ras_block_str(&info->head));
a30f1286
HZ
1020 } else {
1021 dev_info(adev->dev, "%ld uncorrectable hardware errors "
6952e99c
GC
1022 "detected in %s block\n",
1023 obj->err_data.ue_count,
640ae42e 1024 get_ras_block_str(&info->head));
a30f1286 1025 }
7c6e68c7 1026 }
05a58345 1027
eb601e61
JC
1028 if (!amdgpu_persistent_edc_harvesting_supported(adev))
1029 amdgpu_ras_reset_error_status(adev, info->head.block);
1030
c030f2e4 1031 return 0;
1032}
1033
761d86d3
DL
1034int amdgpu_ras_reset_error_status(struct amdgpu_device *adev,
1035 enum amdgpu_ras_block block)
1036{
b6efdb02 1037 struct amdgpu_ras_block_object *block_obj = amdgpu_ras_get_ras_block(adev, block, 0);
8b0fb0e9 1038
761d86d3
DL
1039 if (!amdgpu_ras_is_supported(adev, block))
1040 return -EINVAL;
1041
7389a5b8 1042 if (!block_obj || !block_obj->hw_ops) {
afa37315
LT
1043 dev_dbg_once(adev->dev, "%s doesn't config RAS function\n",
1044 ras_block_str(block));
7389a5b8 1045 return -EINVAL;
761d86d3
DL
1046 }
1047
7389a5b8 1048 if (block_obj->hw_ops->reset_ras_error_count)
1049 block_obj->hw_ops->reset_ras_error_count(adev);
5c23e9e0 1050
7389a5b8 1051 if ((block == AMDGPU_RAS_BLOCK__GFX) ||
1052 (block == AMDGPU_RAS_BLOCK__MMHUB)) {
8b0fb0e9 1053 if (block_obj->hw_ops->reset_ras_error_status)
1054 block_obj->hw_ops->reset_ras_error_status(adev);
761d86d3 1055 }
5c23e9e0 1056
761d86d3 1057 return 0;
5c23e9e0
JC
1058}
1059
c030f2e4 1060/* wrapper of psp_ras_trigger_error */
1061int amdgpu_ras_error_inject(struct amdgpu_device *adev,
1062 struct ras_inject_if *info)
1063{
1064 struct ras_manager *obj = amdgpu_ras_find_obj(adev, &info->head);
1065 struct ta_ras_trigger_error_input block_info = {
828cfa29 1066 .block_id = amdgpu_ras_block_to_ta(info->head.block),
1067 .inject_error_type = amdgpu_ras_error_to_ta(info->head.type),
c030f2e4 1068 .sub_block_index = info->head.sub_block_index,
1069 .address = info->address,
1070 .value = info->value,
1071 };
ab3b9de6
YL
1072 int ret = -EINVAL;
1073 struct amdgpu_ras_block_object *block_obj = amdgpu_ras_get_ras_block(adev,
1074 info->head.block,
1075 info->head.sub_block_index);
c030f2e4 1076
1077 if (!obj)
1078 return -EINVAL;
1079
22d4ba53 1080 if (!block_obj || !block_obj->hw_ops) {
afa37315
LT
1081 dev_dbg_once(adev->dev, "%s doesn't config RAS function\n",
1082 get_ras_block_str(&info->head));
22d4ba53 1083 return -EINVAL;
1084 }
1085
a6c44d25
JC
1086 /* Calculate XGMI relative offset */
1087 if (adev->gmc.xgmi.num_physical_nodes > 1) {
19744f5f
HZ
1088 block_info.address =
1089 amdgpu_xgmi_get_relative_phy_addr(adev,
1090 block_info.address);
a6c44d25
JC
1091 }
1092
22d4ba53 1093 if (info->head.block == AMDGPU_RAS_BLOCK__GFX) {
8b0fb0e9 1094 if (block_obj->hw_ops->ras_error_inject)
1095 ret = block_obj->hw_ops->ras_error_inject(adev, info);
22d4ba53 1096 } else {
1097 /* If defined special ras_error_inject(e.g: xgmi), implement special ras_error_inject */
1098 if (block_obj->hw_ops->ras_error_inject)
1099 ret = block_obj->hw_ops->ras_error_inject(adev, &block_info);
1100 else /*If not defined .ras_error_inject, use default ras_error_inject*/
1101 ret = psp_ras_trigger_error(&adev->psp, &block_info);
a5dd40ca
HZ
1102 }
1103
011907fd
DL
1104 if (ret)
1105 dev_err(adev->dev, "ras inject %s failed %d\n",
640ae42e 1106 get_ras_block_str(&info->head), ret);
c030f2e4 1107
1108 return ret;
1109}
1110
4d9f771e
LT
1111/**
1112 * amdgpu_ras_query_error_count -- Get error counts of all IPs
bbe04dec
IB
1113 * @adev: pointer to AMD GPU device
1114 * @ce_count: pointer to an integer to be set to the count of correctible errors.
1115 * @ue_count: pointer to an integer to be set to the count of uncorrectible
4d9f771e
LT
1116 * errors.
1117 *
1118 * If set, @ce_count or @ue_count, count and return the corresponding
1119 * error counts in those integer pointers. Return 0 if the device
1120 * supports RAS. Return -EOPNOTSUPP if the device doesn't support RAS.
1121 */
1122int amdgpu_ras_query_error_count(struct amdgpu_device *adev,
1123 unsigned long *ce_count,
1124 unsigned long *ue_count)
c030f2e4 1125{
1126 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1127 struct ras_manager *obj;
a46751fb 1128 unsigned long ce, ue;
c030f2e4 1129
8ab0d6f0 1130 if (!adev->ras_enabled || !con)
4d9f771e
LT
1131 return -EOPNOTSUPP;
1132
1133 /* Don't count since no reporting.
1134 */
1135 if (!ce_count && !ue_count)
1136 return 0;
c030f2e4 1137
a46751fb
LT
1138 ce = 0;
1139 ue = 0;
c030f2e4 1140 list_for_each_entry(obj, &con->head, node) {
1141 struct ras_query_if info = {
1142 .head = obj->head,
1143 };
4d9f771e 1144 int res;
c030f2e4 1145
4d9f771e
LT
1146 res = amdgpu_ras_query_error_status(adev, &info);
1147 if (res)
1148 return res;
c030f2e4 1149
a46751fb
LT
1150 ce += info.ce_count;
1151 ue += info.ue_count;
c030f2e4 1152 }
1153
a46751fb
LT
1154 if (ce_count)
1155 *ce_count = ce;
1156
1157 if (ue_count)
1158 *ue_count = ue;
4d9f771e
LT
1159
1160 return 0;
c030f2e4 1161}
1162/* query/inject/cure end */
1163
1164
1165/* sysfs begin */
1166
466b1793 1167static int amdgpu_ras_badpages_read(struct amdgpu_device *adev,
1168 struct ras_badpage **bps, unsigned int *count);
1169
1170static char *amdgpu_ras_badpage_flags_str(unsigned int flags)
1171{
1172 switch (flags) {
52dd95f2 1173 case AMDGPU_RAS_RETIRE_PAGE_RESERVED:
466b1793 1174 return "R";
52dd95f2 1175 case AMDGPU_RAS_RETIRE_PAGE_PENDING:
466b1793 1176 return "P";
52dd95f2 1177 case AMDGPU_RAS_RETIRE_PAGE_FAULT:
466b1793 1178 default:
1179 return "F";
aec576f9 1180 }
466b1793 1181}
1182
f77c7109
AD
1183/**
1184 * DOC: AMDGPU RAS sysfs gpu_vram_bad_pages Interface
466b1793 1185 *
1186 * It allows user to read the bad pages of vram on the gpu through
1187 * /sys/class/drm/card[0/1/2...]/device/ras/gpu_vram_bad_pages
1188 *
1189 * It outputs multiple lines, and each line stands for one gpu page.
1190 *
1191 * The format of one line is below,
1192 * gpu pfn : gpu page size : flags
1193 *
1194 * gpu pfn and gpu page size are printed in hex format.
1195 * flags can be one of below character,
f77c7109 1196 *
466b1793 1197 * R: reserved, this gpu page is reserved and not able to use.
f77c7109 1198 *
466b1793 1199 * P: pending for reserve, this gpu page is marked as bad, will be reserved
f77c7109
AD
1200 * in next window of page_reserve.
1201 *
466b1793 1202 * F: unable to reserve. this gpu page can't be reserved due to some reasons.
1203 *
f77c7109
AD
1204 * Examples:
1205 *
1206 * .. code-block:: bash
1207 *
1208 * 0x00000001 : 0x00001000 : R
1209 * 0x00000002 : 0x00001000 : P
1210 *
466b1793 1211 */
1212
1213static ssize_t amdgpu_ras_sysfs_badpages_read(struct file *f,
1214 struct kobject *kobj, struct bin_attribute *attr,
1215 char *buf, loff_t ppos, size_t count)
1216{
1217 struct amdgpu_ras *con =
1218 container_of(attr, struct amdgpu_ras, badpages_attr);
1219 struct amdgpu_device *adev = con->adev;
1220 const unsigned int element_size =
1221 sizeof("0xabcdabcd : 0x12345678 : R\n") - 1;
d6ee400e
SA
1222 unsigned int start = div64_ul(ppos + element_size - 1, element_size);
1223 unsigned int end = div64_ul(ppos + count - 1, element_size);
466b1793 1224 ssize_t s = 0;
1225 struct ras_badpage *bps = NULL;
1226 unsigned int bps_count = 0;
1227
1228 memset(buf, 0, count);
1229
1230 if (amdgpu_ras_badpages_read(adev, &bps, &bps_count))
1231 return 0;
1232
1233 for (; start < end && start < bps_count; start++)
1234 s += scnprintf(&buf[s], element_size + 1,
1235 "0x%08x : 0x%08x : %1s\n",
1236 bps[start].bp,
1237 bps[start].size,
1238 amdgpu_ras_badpage_flags_str(bps[start].flags));
1239
1240 kfree(bps);
1241
1242 return s;
1243}
1244
c030f2e4 1245static ssize_t amdgpu_ras_sysfs_features_read(struct device *dev,
1246 struct device_attribute *attr, char *buf)
1247{
1248 struct amdgpu_ras *con =
1249 container_of(attr, struct amdgpu_ras, features_attr);
c030f2e4 1250
5212a3bd 1251 return scnprintf(buf, PAGE_SIZE, "feature mask: 0x%x\n", con->features);
c030f2e4 1252}
1253
f848159b
GC
1254static void amdgpu_ras_sysfs_remove_bad_page_node(struct amdgpu_device *adev)
1255{
1256 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1257
1258 sysfs_remove_file_from_group(&adev->dev->kobj,
1259 &con->badpages_attr.attr,
1260 RAS_FS_NAME);
1261}
1262
c030f2e4 1263static int amdgpu_ras_sysfs_remove_feature_node(struct amdgpu_device *adev)
1264{
1265 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1266 struct attribute *attrs[] = {
1267 &con->features_attr.attr,
1268 NULL
1269 };
1270 struct attribute_group group = {
eb0c3cd4 1271 .name = RAS_FS_NAME,
c030f2e4 1272 .attrs = attrs,
1273 };
1274
1275 sysfs_remove_group(&adev->dev->kobj, &group);
1276
1277 return 0;
1278}
1279
1280int amdgpu_ras_sysfs_create(struct amdgpu_device *adev,
9252d33d 1281 struct ras_common_if *head)
c030f2e4 1282{
9252d33d 1283 struct ras_manager *obj = amdgpu_ras_find_obj(adev, head);
c030f2e4 1284
1285 if (!obj || obj->attr_inuse)
1286 return -EINVAL;
1287
1288 get_obj(obj);
1289
9252d33d 1290 snprintf(obj->fs_data.sysfs_name, sizeof(obj->fs_data.sysfs_name),
1291 "%s_err_count", head->name);
c030f2e4 1292
1293 obj->sysfs_attr = (struct device_attribute){
1294 .attr = {
1295 .name = obj->fs_data.sysfs_name,
1296 .mode = S_IRUGO,
1297 },
1298 .show = amdgpu_ras_sysfs_read,
1299 };
163def43 1300 sysfs_attr_init(&obj->sysfs_attr.attr);
c030f2e4 1301
1302 if (sysfs_add_file_to_group(&adev->dev->kobj,
1303 &obj->sysfs_attr.attr,
eb0c3cd4 1304 RAS_FS_NAME)) {
c030f2e4 1305 put_obj(obj);
1306 return -EINVAL;
1307 }
1308
1309 obj->attr_inuse = 1;
1310
1311 return 0;
1312}
1313
1314int amdgpu_ras_sysfs_remove(struct amdgpu_device *adev,
1315 struct ras_common_if *head)
1316{
1317 struct ras_manager *obj = amdgpu_ras_find_obj(adev, head);
1318
1319 if (!obj || !obj->attr_inuse)
1320 return -EINVAL;
1321
1322 sysfs_remove_file_from_group(&adev->dev->kobj,
1323 &obj->sysfs_attr.attr,
eb0c3cd4 1324 RAS_FS_NAME);
c030f2e4 1325 obj->attr_inuse = 0;
1326 put_obj(obj);
1327
1328 return 0;
1329}
1330
1331static int amdgpu_ras_sysfs_remove_all(struct amdgpu_device *adev)
1332{
1333 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1334 struct ras_manager *obj, *tmp;
1335
1336 list_for_each_entry_safe(obj, tmp, &con->head, node) {
1337 amdgpu_ras_sysfs_remove(adev, &obj->head);
1338 }
1339
f848159b
GC
1340 if (amdgpu_bad_page_threshold != 0)
1341 amdgpu_ras_sysfs_remove_bad_page_node(adev);
1342
c030f2e4 1343 amdgpu_ras_sysfs_remove_feature_node(adev);
1344
1345 return 0;
1346}
1347/* sysfs end */
1348
ef177d11
AD
1349/**
1350 * DOC: AMDGPU RAS Reboot Behavior for Unrecoverable Errors
1351 *
1352 * Normally when there is an uncorrectable error, the driver will reset
1353 * the GPU to recover. However, in the event of an unrecoverable error,
1354 * the driver provides an interface to reboot the system automatically
1355 * in that event.
1356 *
1357 * The following file in debugfs provides that interface:
1358 * /sys/kernel/debug/dri/[0/1/2...]/ras/auto_reboot
1359 *
1360 * Usage:
1361 *
1362 * .. code-block:: bash
1363 *
1364 * echo true > .../ras/auto_reboot
1365 *
1366 */
c030f2e4 1367/* debugfs begin */
ea1b8c9b 1368static struct dentry *amdgpu_ras_debugfs_create_ctrl_node(struct amdgpu_device *adev)
36ea1bd2 1369{
1370 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
ef0d7d20
LT
1371 struct drm_minor *minor = adev_to_drm(adev)->primary;
1372 struct dentry *dir;
36ea1bd2 1373
88293c03
ND
1374 dir = debugfs_create_dir(RAS_FS_NAME, minor->debugfs_root);
1375 debugfs_create_file("ras_ctrl", S_IWUGO | S_IRUGO, dir, adev,
1376 &amdgpu_ras_debugfs_ctrl_ops);
1377 debugfs_create_file("ras_eeprom_reset", S_IWUGO | S_IRUGO, dir, adev,
1378 &amdgpu_ras_debugfs_eeprom_ops);
7fb64071
LT
1379 debugfs_create_u32("bad_page_cnt_threshold", 0444, dir,
1380 &con->bad_page_cnt_threshold);
ef0d7d20
LT
1381 debugfs_create_x32("ras_hw_enabled", 0444, dir, &adev->ras_hw_enabled);
1382 debugfs_create_x32("ras_enabled", 0444, dir, &adev->ras_enabled);
c65b0805
LT
1383 debugfs_create_file("ras_eeprom_size", S_IRUGO, dir, adev,
1384 &amdgpu_ras_debugfs_eeprom_size_ops);
1385 con->de_ras_eeprom_table = debugfs_create_file("ras_eeprom_table",
1386 S_IRUGO, dir, adev,
1387 &amdgpu_ras_debugfs_eeprom_table_ops);
1388 amdgpu_ras_debugfs_set_ret_size(&con->eeprom_control);
c688a06b
GC
1389
1390 /*
1391 * After one uncorrectable error happens, usually GPU recovery will
1392 * be scheduled. But due to the known problem in GPU recovery failing
1393 * to bring GPU back, below interface provides one direct way to
1394 * user to reboot system automatically in such case within
1395 * ERREVENT_ATHUB_INTERRUPT generated. Normal GPU recovery routine
1396 * will never be called.
1397 */
88293c03 1398 debugfs_create_bool("auto_reboot", S_IWUGO | S_IRUGO, dir, &con->reboot);
66459e1d
GC
1399
1400 /*
1401 * User could set this not to clean up hardware's error count register
1402 * of RAS IPs during ras recovery.
1403 */
88293c03
ND
1404 debugfs_create_bool("disable_ras_err_cnt_harvest", 0644, dir,
1405 &con->disable_ras_err_cnt_harvest);
1406 return dir;
36ea1bd2 1407}
1408
cedf7884 1409static void amdgpu_ras_debugfs_create(struct amdgpu_device *adev,
88293c03
ND
1410 struct ras_fs_if *head,
1411 struct dentry *dir)
c030f2e4 1412{
c030f2e4 1413 struct ras_manager *obj = amdgpu_ras_find_obj(adev, &head->head);
c030f2e4 1414
88293c03 1415 if (!obj || !dir)
450f30ea 1416 return;
c030f2e4 1417
1418 get_obj(obj);
1419
1420 memcpy(obj->fs_data.debugfs_name,
1421 head->debugfs_name,
1422 sizeof(obj->fs_data.debugfs_name));
1423
88293c03
ND
1424 debugfs_create_file(obj->fs_data.debugfs_name, S_IWUGO | S_IRUGO, dir,
1425 obj, &amdgpu_ras_debugfs_ops);
c030f2e4 1426}
1427
f9317014
TZ
1428void amdgpu_ras_debugfs_create_all(struct amdgpu_device *adev)
1429{
1430 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
88293c03 1431 struct dentry *dir;
c1509f3f 1432 struct ras_manager *obj;
f9317014
TZ
1433 struct ras_fs_if fs_info;
1434
1435 /*
1436 * it won't be called in resume path, no need to check
1437 * suspend and gpu reset status
1438 */
cedf7884 1439 if (!IS_ENABLED(CONFIG_DEBUG_FS) || !con)
f9317014
TZ
1440 return;
1441
88293c03 1442 dir = amdgpu_ras_debugfs_create_ctrl_node(adev);
f9317014 1443
c1509f3f 1444 list_for_each_entry(obj, &con->head, node) {
f9317014
TZ
1445 if (amdgpu_ras_is_supported(adev, obj->head.block) &&
1446 (obj->attr_inuse == 1)) {
1447 sprintf(fs_info.debugfs_name, "%s_err_inject",
640ae42e 1448 get_ras_block_str(&obj->head));
f9317014 1449 fs_info.head = obj->head;
88293c03 1450 amdgpu_ras_debugfs_create(adev, &fs_info, dir);
f9317014
TZ
1451 }
1452 }
1453}
1454
c030f2e4 1455/* debugfs end */
1456
1457/* ras fs */
c3d4d45d
GC
1458static BIN_ATTR(gpu_vram_bad_pages, S_IRUGO,
1459 amdgpu_ras_sysfs_badpages_read, NULL, 0);
1460static DEVICE_ATTR(features, S_IRUGO,
1461 amdgpu_ras_sysfs_features_read, NULL);
c030f2e4 1462static int amdgpu_ras_fs_init(struct amdgpu_device *adev)
1463{
c3d4d45d
GC
1464 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1465 struct attribute_group group = {
1466 .name = RAS_FS_NAME,
1467 };
1468 struct attribute *attrs[] = {
1469 &con->features_attr.attr,
1470 NULL
1471 };
1472 struct bin_attribute *bin_attrs[] = {
1473 NULL,
1474 NULL,
1475 };
a069a9eb 1476 int r;
c030f2e4 1477
c3d4d45d
GC
1478 /* add features entry */
1479 con->features_attr = dev_attr_features;
1480 group.attrs = attrs;
1481 sysfs_attr_init(attrs[0]);
1482
1483 if (amdgpu_bad_page_threshold != 0) {
1484 /* add bad_page_features entry */
1485 bin_attr_gpu_vram_bad_pages.private = NULL;
1486 con->badpages_attr = bin_attr_gpu_vram_bad_pages;
1487 bin_attrs[0] = &con->badpages_attr;
1488 group.bin_attrs = bin_attrs;
1489 sysfs_bin_attr_init(bin_attrs[0]);
1490 }
1491
a069a9eb
AD
1492 r = sysfs_create_group(&adev->dev->kobj, &group);
1493 if (r)
1494 dev_err(adev->dev, "Failed to create RAS sysfs group!");
f848159b 1495
c030f2e4 1496 return 0;
1497}
1498
1499static int amdgpu_ras_fs_fini(struct amdgpu_device *adev)
1500{
88293c03
ND
1501 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1502 struct ras_manager *con_obj, *ip_obj, *tmp;
1503
1504 if (IS_ENABLED(CONFIG_DEBUG_FS)) {
1505 list_for_each_entry_safe(con_obj, tmp, &con->head, node) {
1506 ip_obj = amdgpu_ras_find_obj(adev, &con_obj->head);
1507 if (ip_obj)
1508 put_obj(ip_obj);
1509 }
1510 }
1511
c030f2e4 1512 amdgpu_ras_sysfs_remove_all(adev);
1513 return 0;
1514}
1515/* ras fs end */
1516
1517/* ih begin */
b3c76814
TZ
1518
1519/* For the hardware that cannot enable bif ring for both ras_controller_irq
1520 * and ras_err_evnet_athub_irq ih cookies, the driver has to poll status
1521 * register to check whether the interrupt is triggered or not, and properly
1522 * ack the interrupt if it is there
1523 */
1524void amdgpu_ras_interrupt_fatal_error_handler(struct amdgpu_device *adev)
1525{
1526 if (!amdgpu_ras_is_supported(adev, AMDGPU_RAS_BLOCK__PCIE_BIF))
1527 return;
1528
1529 if (adev->nbio.ras &&
1530 adev->nbio.ras->handle_ras_controller_intr_no_bifring)
1531 adev->nbio.ras->handle_ras_controller_intr_no_bifring(adev);
1532
1533 if (adev->nbio.ras &&
1534 adev->nbio.ras->handle_ras_err_event_athub_intr_no_bifring)
1535 adev->nbio.ras->handle_ras_err_event_athub_intr_no_bifring(adev);
1536}
1537
66f87949
TZ
1538static void amdgpu_ras_interrupt_poison_consumption_handler(struct ras_manager *obj,
1539 struct amdgpu_iv_entry *entry)
1540{
b63ac5d3 1541 bool poison_stat = false;
66f87949
TZ
1542 struct amdgpu_device *adev = obj->adev;
1543 struct ras_err_data err_data = {0, 0, 0, NULL};
1544 struct amdgpu_ras_block_object *block_obj =
1545 amdgpu_ras_get_ras_block(adev, obj->head.block, 0);
1546
b63ac5d3
TZ
1547 if (!block_obj || !block_obj->hw_ops)
1548 return;
66f87949 1549
b63ac5d3
TZ
1550 /* both query_poison_status and handle_poison_consumption are optional,
1551 * but at least one of them should be implemented if we need poison
1552 * consumption handler
1553 */
1554 if (block_obj->hw_ops->query_poison_status) {
1555 poison_stat = block_obj->hw_ops->query_poison_status(adev);
1556 if (!poison_stat) {
1557 /* Not poison consumption interrupt, no need to handle it */
1558 dev_info(adev->dev, "No RAS poison status in %s poison IH.\n",
1559 block_obj->ras_comm.name);
1560
1561 return;
66f87949
TZ
1562 }
1563 }
1564
b63ac5d3
TZ
1565 if (!adev->gmc.xgmi.connected_to_cpu)
1566 amdgpu_umc_poison_handler(adev, &err_data, false);
1567
1568 if (block_obj->hw_ops->handle_poison_consumption)
1569 poison_stat = block_obj->hw_ops->handle_poison_consumption(adev);
1570
1571 /* gpu reset is fallback for failed and default cases */
1572 if (poison_stat) {
1573 dev_info(adev->dev, "GPU reset for %s RAS poison consumption is issued!\n",
1574 block_obj->ras_comm.name);
66f87949 1575 amdgpu_ras_reset_gpu(adev);
b63ac5d3 1576 }
66f87949
TZ
1577}
1578
50a7d025
TZ
1579static void amdgpu_ras_interrupt_poison_creation_handler(struct ras_manager *obj,
1580 struct amdgpu_iv_entry *entry)
1581{
1582 dev_info(obj->adev->dev,
1583 "Poison is created, no user action is needed.\n");
1584}
1585
1586static void amdgpu_ras_interrupt_umc_handler(struct ras_manager *obj,
1587 struct amdgpu_iv_entry *entry)
1588{
1589 struct ras_ih_data *data = &obj->ih_data;
1590 struct ras_err_data err_data = {0, 0, 0, NULL};
1591 int ret;
1592
1593 if (!data->cb)
1594 return;
1595
1596 /* Let IP handle its data, maybe we need get the output
1597 * from the callback to update the error type/count, etc
1598 */
1599 ret = data->cb(obj->adev, &err_data, entry);
1600 /* ue will trigger an interrupt, and in that case
1601 * we need do a reset to recovery the whole system.
1602 * But leave IP do that recovery, here we just dispatch
1603 * the error.
1604 */
1605 if (ret == AMDGPU_RAS_SUCCESS) {
1606 /* these counts could be left as 0 if
1607 * some blocks do not count error number
1608 */
1609 obj->err_data.ue_count += err_data.ue_count;
1610 obj->err_data.ce_count += err_data.ce_count;
1611 }
1612}
1613
c030f2e4 1614static void amdgpu_ras_interrupt_handler(struct ras_manager *obj)
1615{
1616 struct ras_ih_data *data = &obj->ih_data;
1617 struct amdgpu_iv_entry entry;
c030f2e4 1618
1619 while (data->rptr != data->wptr) {
1620 rmb();
1621 memcpy(&entry, &data->ring[data->rptr],
1622 data->element_size);
1623
1624 wmb();
1625 data->rptr = (data->aligned_element_size +
1626 data->rptr) % data->ring_size;
1627
50a7d025
TZ
1628 if (amdgpu_ras_is_poison_mode_supported(obj->adev)) {
1629 if (obj->head.block == AMDGPU_RAS_BLOCK__UMC)
1630 amdgpu_ras_interrupt_poison_creation_handler(obj, &entry);
66f87949
TZ
1631 else
1632 amdgpu_ras_interrupt_poison_consumption_handler(obj, &entry);
50a7d025
TZ
1633 } else {
1634 if (obj->head.block == AMDGPU_RAS_BLOCK__UMC)
1635 amdgpu_ras_interrupt_umc_handler(obj, &entry);
1636 else
1637 dev_warn(obj->adev->dev,
1638 "No RAS interrupt handler for non-UMC block with poison disabled.\n");
c030f2e4 1639 }
1640 }
1641}
1642
1643static void amdgpu_ras_interrupt_process_handler(struct work_struct *work)
1644{
1645 struct ras_ih_data *data =
1646 container_of(work, struct ras_ih_data, ih_work);
1647 struct ras_manager *obj =
1648 container_of(data, struct ras_manager, ih_data);
1649
1650 amdgpu_ras_interrupt_handler(obj);
1651}
1652
1653int amdgpu_ras_interrupt_dispatch(struct amdgpu_device *adev,
1654 struct ras_dispatch_if *info)
1655{
1656 struct ras_manager *obj = amdgpu_ras_find_obj(adev, &info->head);
1657 struct ras_ih_data *data = &obj->ih_data;
1658
1659 if (!obj)
1660 return -EINVAL;
1661
1662 if (data->inuse == 0)
1663 return 0;
1664
1665 /* Might be overflow... */
1666 memcpy(&data->ring[data->wptr], info->entry,
1667 data->element_size);
1668
1669 wmb();
1670 data->wptr = (data->aligned_element_size +
1671 data->wptr) % data->ring_size;
1672
1673 schedule_work(&data->ih_work);
1674
1675 return 0;
1676}
1677
1678int amdgpu_ras_interrupt_remove_handler(struct amdgpu_device *adev,
9252d33d 1679 struct ras_common_if *head)
c030f2e4 1680{
9252d33d 1681 struct ras_manager *obj = amdgpu_ras_find_obj(adev, head);
c030f2e4 1682 struct ras_ih_data *data;
1683
1684 if (!obj)
1685 return -EINVAL;
1686
1687 data = &obj->ih_data;
1688 if (data->inuse == 0)
1689 return 0;
1690
1691 cancel_work_sync(&data->ih_work);
1692
1693 kfree(data->ring);
1694 memset(data, 0, sizeof(*data));
1695 put_obj(obj);
1696
1697 return 0;
1698}
1699
1700int amdgpu_ras_interrupt_add_handler(struct amdgpu_device *adev,
9252d33d 1701 struct ras_common_if *head)
c030f2e4 1702{
9252d33d 1703 struct ras_manager *obj = amdgpu_ras_find_obj(adev, head);
c030f2e4 1704 struct ras_ih_data *data;
9252d33d 1705 struct amdgpu_ras_block_object *ras_obj;
c030f2e4 1706
1707 if (!obj) {
1708 /* in case we registe the IH before enable ras feature */
9252d33d 1709 obj = amdgpu_ras_create_obj(adev, head);
c030f2e4 1710 if (!obj)
1711 return -EINVAL;
1712 } else
1713 get_obj(obj);
1714
9252d33d 1715 ras_obj = container_of(head, struct amdgpu_ras_block_object, ras_comm);
1716
c030f2e4 1717 data = &obj->ih_data;
1718 /* add the callback.etc */
1719 *data = (struct ras_ih_data) {
1720 .inuse = 0,
9252d33d 1721 .cb = ras_obj->ras_cb,
c030f2e4 1722 .element_size = sizeof(struct amdgpu_iv_entry),
1723 .rptr = 0,
1724 .wptr = 0,
1725 };
1726
1727 INIT_WORK(&data->ih_work, amdgpu_ras_interrupt_process_handler);
1728
1729 data->aligned_element_size = ALIGN(data->element_size, 8);
1730 /* the ring can store 64 iv entries. */
1731 data->ring_size = 64 * data->aligned_element_size;
1732 data->ring = kmalloc(data->ring_size, GFP_KERNEL);
1733 if (!data->ring) {
1734 put_obj(obj);
1735 return -ENOMEM;
1736 }
1737
1738 /* IH is ready */
1739 data->inuse = 1;
1740
1741 return 0;
1742}
1743
1744static int amdgpu_ras_interrupt_remove_all(struct amdgpu_device *adev)
1745{
1746 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1747 struct ras_manager *obj, *tmp;
1748
1749 list_for_each_entry_safe(obj, tmp, &con->head, node) {
9252d33d 1750 amdgpu_ras_interrupt_remove_handler(adev, &obj->head);
c030f2e4 1751 }
1752
1753 return 0;
1754}
1755/* ih end */
1756
313c8fd3
GC
1757/* traversal all IPs except NBIO to query error counter */
1758static void amdgpu_ras_log_on_err_counter(struct amdgpu_device *adev)
1759{
1760 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1761 struct ras_manager *obj;
1762
8ab0d6f0 1763 if (!adev->ras_enabled || !con)
313c8fd3
GC
1764 return;
1765
1766 list_for_each_entry(obj, &con->head, node) {
1767 struct ras_query_if info = {
1768 .head = obj->head,
1769 };
1770
1771 /*
1772 * PCIE_BIF IP has one different isr by ras controller
1773 * interrupt, the specific ras counter query will be
1774 * done in that isr. So skip such block from common
1775 * sync flood interrupt isr calling.
1776 */
1777 if (info.head.block == AMDGPU_RAS_BLOCK__PCIE_BIF)
1778 continue;
1779
cf63b702
SY
1780 /*
1781 * this is a workaround for aldebaran, skip send msg to
1782 * smu to get ecc_info table due to smu handle get ecc
1783 * info table failed temporarily.
1784 * should be removed until smu fix handle ecc_info table.
1785 */
1786 if ((info.head.block == AMDGPU_RAS_BLOCK__UMC) &&
1787 (adev->ip_versions[MP1_HWIP][0] == IP_VERSION(13, 0, 2)))
1788 continue;
1789
761d86d3 1790 amdgpu_ras_query_error_status(adev, &info);
313c8fd3
GC
1791 }
1792}
1793
3f975d0f 1794/* Parse RdRspStatus and WrRspStatus */
cd92df93
LJ
1795static void amdgpu_ras_error_status_query(struct amdgpu_device *adev,
1796 struct ras_query_if *info)
3f975d0f 1797{
8eb53bb2 1798 struct amdgpu_ras_block_object *block_obj;
3f975d0f
SY
1799 /*
1800 * Only two block need to query read/write
1801 * RspStatus at current state
1802 */
5e67bba3 1803 if ((info->head.block != AMDGPU_RAS_BLOCK__GFX) &&
1804 (info->head.block != AMDGPU_RAS_BLOCK__MMHUB))
b6efdb02 1805 return;
1806
1807 block_obj = amdgpu_ras_get_ras_block(adev,
1808 info->head.block,
1809 info->head.sub_block_index);
5e67bba3 1810
5e67bba3 1811 if (!block_obj || !block_obj->hw_ops) {
afa37315
LT
1812 dev_dbg_once(adev->dev, "%s doesn't config RAS function\n",
1813 get_ras_block_str(&info->head));
b6efdb02 1814 return;
3f975d0f 1815 }
5e67bba3 1816
1817 if (block_obj->hw_ops->query_ras_error_status)
ab3b9de6 1818 block_obj->hw_ops->query_ras_error_status(adev);
5e67bba3 1819
3f975d0f
SY
1820}
1821
1822static void amdgpu_ras_query_err_status(struct amdgpu_device *adev)
1823{
1824 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1825 struct ras_manager *obj;
1826
8ab0d6f0 1827 if (!adev->ras_enabled || !con)
3f975d0f
SY
1828 return;
1829
1830 list_for_each_entry(obj, &con->head, node) {
1831 struct ras_query_if info = {
1832 .head = obj->head,
1833 };
1834
1835 amdgpu_ras_error_status_query(adev, &info);
1836 }
1837}
1838
c030f2e4 1839/* recovery begin */
466b1793 1840
1841/* return 0 on success.
1842 * caller need free bps.
1843 */
1844static int amdgpu_ras_badpages_read(struct amdgpu_device *adev,
1845 struct ras_badpage **bps, unsigned int *count)
1846{
1847 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1848 struct ras_err_handler_data *data;
1849 int i = 0;
732f2a30 1850 int ret = 0, status;
466b1793 1851
1852 if (!con || !con->eh_data || !bps || !count)
1853 return -EINVAL;
1854
1855 mutex_lock(&con->recovery_lock);
1856 data = con->eh_data;
1857 if (!data || data->count == 0) {
1858 *bps = NULL;
46cf2fec 1859 ret = -EINVAL;
466b1793 1860 goto out;
1861 }
1862
1863 *bps = kmalloc(sizeof(struct ras_badpage) * data->count, GFP_KERNEL);
1864 if (!*bps) {
1865 ret = -ENOMEM;
1866 goto out;
1867 }
1868
1869 for (; i < data->count; i++) {
1870 (*bps)[i] = (struct ras_badpage){
9dc23a63 1871 .bp = data->bps[i].retired_page,
466b1793 1872 .size = AMDGPU_GPU_PAGE_SIZE,
52dd95f2 1873 .flags = AMDGPU_RAS_RETIRE_PAGE_RESERVED,
466b1793 1874 };
ec6aae97 1875 status = amdgpu_vram_mgr_query_page_status(&adev->mman.vram_mgr,
676deb38 1876 data->bps[i].retired_page);
732f2a30 1877 if (status == -EBUSY)
52dd95f2 1878 (*bps)[i].flags = AMDGPU_RAS_RETIRE_PAGE_PENDING;
732f2a30 1879 else if (status == -ENOENT)
52dd95f2 1880 (*bps)[i].flags = AMDGPU_RAS_RETIRE_PAGE_FAULT;
466b1793 1881 }
1882
1883 *count = data->count;
1884out:
1885 mutex_unlock(&con->recovery_lock);
1886 return ret;
1887}
1888
c030f2e4 1889static void amdgpu_ras_do_recovery(struct work_struct *work)
1890{
1891 struct amdgpu_ras *ras =
1892 container_of(work, struct amdgpu_ras, recovery_work);
b3dbd6d3
JC
1893 struct amdgpu_device *remote_adev = NULL;
1894 struct amdgpu_device *adev = ras->adev;
1895 struct list_head device_list, *device_list_handle = NULL;
b3dbd6d3 1896
f75e94d8 1897 if (!ras->disable_ras_err_cnt_harvest) {
d95e8e97
DL
1898 struct amdgpu_hive_info *hive = amdgpu_get_xgmi_hive(adev);
1899
f75e94d8
GC
1900 /* Build list of devices to query RAS related errors */
1901 if (hive && adev->gmc.xgmi.num_physical_nodes > 1) {
1902 device_list_handle = &hive->device_list;
1903 } else {
1904 INIT_LIST_HEAD(&device_list);
1905 list_add_tail(&adev->gmc.xgmi.head, &device_list);
1906 device_list_handle = &device_list;
1907 }
c030f2e4 1908
f75e94d8 1909 list_for_each_entry(remote_adev,
3f975d0f
SY
1910 device_list_handle, gmc.xgmi.head) {
1911 amdgpu_ras_query_err_status(remote_adev);
f75e94d8 1912 amdgpu_ras_log_on_err_counter(remote_adev);
3f975d0f 1913 }
d95e8e97
DL
1914
1915 amdgpu_put_xgmi_hive(hive);
b3dbd6d3 1916 }
313c8fd3 1917
93af20f7 1918 if (amdgpu_device_should_recover_gpu(ras->adev))
2f530724 1919 amdgpu_device_gpu_recover(ras->adev, NULL);
c030f2e4 1920 atomic_set(&ras->in_recovery, 0);
1921}
1922
c030f2e4 1923/* alloc/realloc bps array */
1924static int amdgpu_ras_realloc_eh_data_space(struct amdgpu_device *adev,
1925 struct ras_err_handler_data *data, int pages)
1926{
1927 unsigned int old_space = data->count + data->space_left;
1928 unsigned int new_space = old_space + pages;
9dc23a63
TZ
1929 unsigned int align_space = ALIGN(new_space, 512);
1930 void *bps = kmalloc(align_space * sizeof(*data->bps), GFP_KERNEL);
9dc23a63 1931
676deb38 1932 if (!bps) {
c030f2e4 1933 return -ENOMEM;
9dc23a63 1934 }
c030f2e4 1935
1936 if (data->bps) {
9dc23a63 1937 memcpy(bps, data->bps,
c030f2e4 1938 data->count * sizeof(*data->bps));
1939 kfree(data->bps);
1940 }
1941
9dc23a63 1942 data->bps = bps;
c030f2e4 1943 data->space_left += align_space - old_space;
1944 return 0;
1945}
1946
1947/* it deal with vram only. */
1948int amdgpu_ras_add_bad_pages(struct amdgpu_device *adev,
9dc23a63 1949 struct eeprom_table_record *bps, int pages)
c030f2e4 1950{
1951 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
73aa8e1a 1952 struct ras_err_handler_data *data;
c030f2e4 1953 int ret = 0;
676deb38 1954 uint32_t i;
c030f2e4 1955
73aa8e1a 1956 if (!con || !con->eh_data || !bps || pages <= 0)
c030f2e4 1957 return 0;
1958
1959 mutex_lock(&con->recovery_lock);
73aa8e1a 1960 data = con->eh_data;
c030f2e4 1961 if (!data)
1962 goto out;
1963
676deb38
DL
1964 for (i = 0; i < pages; i++) {
1965 if (amdgpu_ras_check_bad_page_unlock(con,
1966 bps[i].retired_page << AMDGPU_GPU_PAGE_SHIFT))
1967 continue;
1968
1969 if (!data->space_left &&
1970 amdgpu_ras_realloc_eh_data_space(adev, data, 256)) {
c030f2e4 1971 ret = -ENOMEM;
1972 goto out;
1973 }
1974
ec6aae97 1975 amdgpu_vram_mgr_reserve_range(&adev->mman.vram_mgr,
676deb38
DL
1976 bps[i].retired_page << AMDGPU_GPU_PAGE_SHIFT,
1977 AMDGPU_GPU_PAGE_SIZE);
9dc23a63 1978
676deb38
DL
1979 memcpy(&data->bps[data->count], &bps[i], sizeof(*data->bps));
1980 data->count++;
1981 data->space_left--;
1982 }
c030f2e4 1983out:
1984 mutex_unlock(&con->recovery_lock);
1985
1986 return ret;
1987}
1988
78ad00c9
TZ
1989/*
1990 * write error record array to eeprom, the function should be
1991 * protected by recovery_lock
1992 */
22503d80 1993int amdgpu_ras_save_bad_pages(struct amdgpu_device *adev)
78ad00c9
TZ
1994{
1995 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1996 struct ras_err_handler_data *data;
8a3e801f 1997 struct amdgpu_ras_eeprom_control *control;
78ad00c9
TZ
1998 int save_count;
1999
2000 if (!con || !con->eh_data)
2001 return 0;
2002
d9a69fe5 2003 mutex_lock(&con->recovery_lock);
8a3e801f 2004 control = &con->eeprom_control;
78ad00c9 2005 data = con->eh_data;
0686627b 2006 save_count = data->count - control->ras_num_recs;
d9a69fe5 2007 mutex_unlock(&con->recovery_lock);
78ad00c9 2008 /* only new entries are saved */
b1628425 2009 if (save_count > 0) {
63d4c081
LT
2010 if (amdgpu_ras_eeprom_append(control,
2011 &data->bps[control->ras_num_recs],
2012 save_count)) {
6952e99c 2013 dev_err(adev->dev, "Failed to save EEPROM table data!");
78ad00c9
TZ
2014 return -EIO;
2015 }
2016
b1628425
GC
2017 dev_info(adev->dev, "Saved %d pages to EEPROM table.\n", save_count);
2018 }
2019
78ad00c9
TZ
2020 return 0;
2021}
2022
2023/*
2024 * read error record array in eeprom and reserve enough space for
2025 * storing new bad pages
2026 */
2027static int amdgpu_ras_load_bad_pages(struct amdgpu_device *adev)
2028{
2029 struct amdgpu_ras_eeprom_control *control =
6457205c 2030 &adev->psp.ras_context.ras->eeprom_control;
e4e6a589
LT
2031 struct eeprom_table_record *bps;
2032 int ret;
78ad00c9
TZ
2033
2034 /* no bad page record, skip eeprom access */
0686627b 2035 if (control->ras_num_recs == 0 || amdgpu_bad_page_threshold == 0)
e4e6a589 2036 return 0;
78ad00c9 2037
0686627b 2038 bps = kcalloc(control->ras_num_recs, sizeof(*bps), GFP_KERNEL);
78ad00c9
TZ
2039 if (!bps)
2040 return -ENOMEM;
2041
0686627b 2042 ret = amdgpu_ras_eeprom_read(control, bps, control->ras_num_recs);
e4e6a589 2043 if (ret)
6952e99c 2044 dev_err(adev->dev, "Failed to load EEPROM table records!");
e4e6a589 2045 else
0686627b 2046 ret = amdgpu_ras_add_bad_pages(adev, bps, control->ras_num_recs);
78ad00c9 2047
78ad00c9
TZ
2048 kfree(bps);
2049 return ret;
2050}
2051
676deb38
DL
2052static bool amdgpu_ras_check_bad_page_unlock(struct amdgpu_ras *con,
2053 uint64_t addr)
2054{
2055 struct ras_err_handler_data *data = con->eh_data;
2056 int i;
2057
2058 addr >>= AMDGPU_GPU_PAGE_SHIFT;
2059 for (i = 0; i < data->count; i++)
2060 if (addr == data->bps[i].retired_page)
2061 return true;
2062
2063 return false;
2064}
2065
6e4be987
TZ
2066/*
2067 * check if an address belongs to bad page
2068 *
2069 * Note: this check is only for umc block
2070 */
2071static bool amdgpu_ras_check_bad_page(struct amdgpu_device *adev,
2072 uint64_t addr)
2073{
2074 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
6e4be987
TZ
2075 bool ret = false;
2076
2077 if (!con || !con->eh_data)
2078 return ret;
2079
2080 mutex_lock(&con->recovery_lock);
676deb38 2081 ret = amdgpu_ras_check_bad_page_unlock(con, addr);
6e4be987
TZ
2082 mutex_unlock(&con->recovery_lock);
2083 return ret;
2084}
2085
e5c04edf 2086static void amdgpu_ras_validate_threshold(struct amdgpu_device *adev,
e4e6a589 2087 uint32_t max_count)
c84d4670 2088{
e5c04edf 2089 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
c84d4670
GC
2090
2091 /*
2092 * Justification of value bad_page_cnt_threshold in ras structure
2093 *
2094 * Generally, -1 <= amdgpu_bad_page_threshold <= max record length
2095 * in eeprom, and introduce two scenarios accordingly.
2096 *
2097 * Bad page retirement enablement:
2098 * - If amdgpu_bad_page_threshold = -1,
2099 * bad_page_cnt_threshold = typical value by formula.
2100 *
2101 * - When the value from user is 0 < amdgpu_bad_page_threshold <
2102 * max record length in eeprom, use it directly.
2103 *
2104 * Bad page retirement disablement:
2105 * - If amdgpu_bad_page_threshold = 0, bad page retirement
2106 * functionality is disabled, and bad_page_cnt_threshold will
2107 * take no effect.
2108 */
2109
e4e6a589
LT
2110 if (amdgpu_bad_page_threshold < 0) {
2111 u64 val = adev->gmc.mc_vram_size;
c84d4670 2112
e4e6a589 2113 do_div(val, RAS_BAD_PAGE_COVER);
e5c04edf 2114 con->bad_page_cnt_threshold = min(lower_32_bits(val),
e4e6a589 2115 max_count);
e5c04edf 2116 } else {
e4e6a589
LT
2117 con->bad_page_cnt_threshold = min_t(int, max_count,
2118 amdgpu_bad_page_threshold);
c84d4670
GC
2119 }
2120}
2121
1a6fc071 2122int amdgpu_ras_recovery_init(struct amdgpu_device *adev)
c030f2e4 2123{
2124 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
4d1337d2 2125 struct ras_err_handler_data **data;
e4e6a589 2126 u32 max_eeprom_records_count = 0;
b82e65a9 2127 bool exc_err_limit = false;
78ad00c9 2128 int ret;
c030f2e4 2129
1d9d2ca8
LT
2130 if (!con)
2131 return 0;
2132
2133 /* Allow access to RAS EEPROM via debugfs, when the ASIC
2134 * supports RAS and debugfs is enabled, but when
2135 * adev->ras_enabled is unset, i.e. when "ras_enable"
2136 * module parameter is set to 0.
2137 */
2138 con->adev = adev;
2139
2140 if (!adev->ras_enabled)
4d1337d2
AG
2141 return 0;
2142
1d9d2ca8 2143 data = &con->eh_data;
1a6fc071
TZ
2144 *data = kmalloc(sizeof(**data), GFP_KERNEL | __GFP_ZERO);
2145 if (!*data) {
2146 ret = -ENOMEM;
2147 goto out;
2148 }
c030f2e4 2149
2150 mutex_init(&con->recovery_lock);
2151 INIT_WORK(&con->recovery_work, amdgpu_ras_do_recovery);
2152 atomic_set(&con->in_recovery, 0);
69691c82 2153 con->eeprom_control.bad_channel_bitmap = 0;
c030f2e4 2154
e4e6a589
LT
2155 max_eeprom_records_count = amdgpu_ras_eeprom_max_record_count();
2156 amdgpu_ras_validate_threshold(adev, max_eeprom_records_count);
c84d4670 2157
e5086659 2158 /* Todo: During test the SMU might fail to read the eeprom through I2C
2159 * when the GPU is pending on XGMI reset during probe time
2160 * (Mostly after second bus reset), skip it now
2161 */
2162 if (adev->gmc.xgmi.pending_reset)
2163 return 0;
b82e65a9
GC
2164 ret = amdgpu_ras_eeprom_init(&con->eeprom_control, &exc_err_limit);
2165 /*
2166 * This calling fails when exc_err_limit is true or
2167 * ret != 0.
2168 */
2169 if (exc_err_limit || ret)
1a6fc071 2170 goto free;
78ad00c9 2171
0686627b 2172 if (con->eeprom_control.ras_num_recs) {
78ad00c9
TZ
2173 ret = amdgpu_ras_load_bad_pages(adev);
2174 if (ret)
1a6fc071 2175 goto free;
513befa6 2176
bc143d8b 2177 amdgpu_dpm_send_hbm_bad_pages_num(adev, con->eeprom_control.ras_num_recs);
69691c82
SY
2178
2179 if (con->update_channel_flag == true) {
2180 amdgpu_dpm_send_hbm_bad_channel_flag(adev, con->eeprom_control.bad_channel_bitmap);
2181 con->update_channel_flag = false;
2182 }
78ad00c9 2183 }
c030f2e4 2184
12b2cab7
MJ
2185#ifdef CONFIG_X86_MCE_AMD
2186 if ((adev->asic_type == CHIP_ALDEBARAN) &&
2187 (adev->gmc.xgmi.connected_to_cpu))
91a1a52d 2188 amdgpu_register_bad_pages_mca_notifier(adev);
12b2cab7 2189#endif
c030f2e4 2190 return 0;
1a6fc071 2191
1a6fc071 2192free:
1a6fc071 2193 kfree((*data)->bps);
1a6fc071 2194 kfree(*data);
1995b3a3 2195 con->eh_data = NULL;
1a6fc071 2196out:
cf696091 2197 dev_warn(adev->dev, "Failed to initialize ras recovery! (%d)\n", ret);
1a6fc071 2198
b82e65a9
GC
2199 /*
2200 * Except error threshold exceeding case, other failure cases in this
2201 * function would not fail amdgpu driver init.
2202 */
2203 if (!exc_err_limit)
2204 ret = 0;
2205 else
2206 ret = -EINVAL;
2207
1a6fc071 2208 return ret;
c030f2e4 2209}
2210
2211static int amdgpu_ras_recovery_fini(struct amdgpu_device *adev)
2212{
2213 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2214 struct ras_err_handler_data *data = con->eh_data;
2215
1a6fc071
TZ
2216 /* recovery_init failed to init it, fini is useless */
2217 if (!data)
2218 return 0;
2219
c030f2e4 2220 cancel_work_sync(&con->recovery_work);
c030f2e4 2221
2222 mutex_lock(&con->recovery_lock);
2223 con->eh_data = NULL;
2224 kfree(data->bps);
2225 kfree(data);
2226 mutex_unlock(&con->recovery_lock);
2227
2228 return 0;
2229}
2230/* recovery end */
2231
084e2640 2232static bool amdgpu_ras_asic_supported(struct amdgpu_device *adev)
5436ab94 2233{
084e2640
LT
2234 return adev->asic_type == CHIP_VEGA10 ||
2235 adev->asic_type == CHIP_VEGA20 ||
2236 adev->asic_type == CHIP_ARCTURUS ||
75f06251 2237 adev->asic_type == CHIP_ALDEBARAN ||
084e2640 2238 adev->asic_type == CHIP_SIENNA_CICHLID;
5436ab94
SY
2239}
2240
f50160cf
SY
2241/*
2242 * this is workaround for vega20 workstation sku,
2243 * force enable gfx ras, ignore vbios gfx ras flag
2244 * due to GC EDC can not write
2245 */
e509965e 2246static void amdgpu_ras_get_quirks(struct amdgpu_device *adev)
f50160cf
SY
2247{
2248 struct atom_context *ctx = adev->mode_info.atom_context;
2249
2250 if (!ctx)
2251 return;
2252
2253 if (strnstr(ctx->vbios_version, "D16406",
e11d5e0d
SY
2254 sizeof(ctx->vbios_version)) ||
2255 strnstr(ctx->vbios_version, "D36002",
2256 sizeof(ctx->vbios_version)))
8ab0d6f0 2257 adev->ras_hw_enabled |= (1 << AMDGPU_RAS_BLOCK__GFX);
f50160cf
SY
2258}
2259
5caf466a 2260/*
2261 * check hardware's ras ability which will be saved in hw_supported.
2262 * if hardware does not support ras, we can skip some ras initializtion and
2263 * forbid some ras operations from IP.
2264 * if software itself, say boot parameter, limit the ras ability. We still
2265 * need allow IP do some limited operations, like disable. In such case,
2266 * we have to initialize ras as normal. but need check if operation is
2267 * allowed or not in each function.
2268 */
e509965e 2269static void amdgpu_ras_check_supported(struct amdgpu_device *adev)
c030f2e4 2270{
8ab0d6f0 2271 adev->ras_hw_enabled = adev->ras_enabled = 0;
c030f2e4 2272
88474cca 2273 if (amdgpu_sriov_vf(adev) || !adev->is_atom_fw ||
084e2640 2274 !amdgpu_ras_asic_supported(adev))
5caf466a 2275 return;
b404ae82 2276
75f06251
HZ
2277 if (!adev->gmc.xgmi.connected_to_cpu) {
2278 if (amdgpu_atomfirmware_mem_ecc_supported(adev)) {
2279 dev_info(adev->dev, "MEM ECC is active.\n");
8ab0d6f0 2280 adev->ras_hw_enabled |= (1 << AMDGPU_RAS_BLOCK__UMC |
e509965e 2281 1 << AMDGPU_RAS_BLOCK__DF);
75f06251
HZ
2282 } else {
2283 dev_info(adev->dev, "MEM ECC is not presented.\n");
2284 }
88474cca 2285
75f06251
HZ
2286 if (amdgpu_atomfirmware_sram_ecc_supported(adev)) {
2287 dev_info(adev->dev, "SRAM ECC is active.\n");
8ab0d6f0 2288 adev->ras_hw_enabled |= ~(1 << AMDGPU_RAS_BLOCK__UMC |
e509965e 2289 1 << AMDGPU_RAS_BLOCK__DF);
a3d63c62
MZZ
2290
2291 if (adev->ip_versions[VCN_HWIP][0] == IP_VERSION(2, 6, 0))
2292 adev->ras_hw_enabled |= (1 << AMDGPU_RAS_BLOCK__VCN |
2293 1 << AMDGPU_RAS_BLOCK__JPEG);
2294 else
2295 adev->ras_hw_enabled &= ~(1 << AMDGPU_RAS_BLOCK__VCN |
2296 1 << AMDGPU_RAS_BLOCK__JPEG);
75f06251
HZ
2297 } else {
2298 dev_info(adev->dev, "SRAM ECC is not presented.\n");
2299 }
2300 } else {
2301 /* driver only manages a few IP blocks RAS feature
2302 * when GPU is connected cpu through XGMI */
8ab0d6f0 2303 adev->ras_hw_enabled |= (1 << AMDGPU_RAS_BLOCK__GFX |
e509965e
LT
2304 1 << AMDGPU_RAS_BLOCK__SDMA |
2305 1 << AMDGPU_RAS_BLOCK__MMHUB);
75f06251 2306 }
88474cca 2307
e509965e 2308 amdgpu_ras_get_quirks(adev);
f50160cf 2309
88474cca 2310 /* hw_supported needs to be aligned with RAS block mask. */
8ab0d6f0 2311 adev->ras_hw_enabled &= AMDGPU_RAS_BLOCK_MASK;
b404ae82 2312
8ab0d6f0
LT
2313 adev->ras_enabled = amdgpu_ras_enable == 0 ? 0 :
2314 adev->ras_hw_enabled & amdgpu_ras_mask;
c030f2e4 2315}
2316
05adfd80
LT
2317static void amdgpu_ras_counte_dw(struct work_struct *work)
2318{
2319 struct amdgpu_ras *con = container_of(work, struct amdgpu_ras,
2320 ras_counte_delay_work.work);
2321 struct amdgpu_device *adev = con->adev;
a3fbb0d8 2322 struct drm_device *dev = adev_to_drm(adev);
05adfd80
LT
2323 unsigned long ce_count, ue_count;
2324 int res;
2325
2326 res = pm_runtime_get_sync(dev->dev);
2327 if (res < 0)
2328 goto Out;
2329
2330 /* Cache new values.
2331 */
4d9f771e
LT
2332 if (amdgpu_ras_query_error_count(adev, &ce_count, &ue_count) == 0) {
2333 atomic_set(&con->ras_ce_count, ce_count);
2334 atomic_set(&con->ras_ue_count, ue_count);
2335 }
05adfd80
LT
2336
2337 pm_runtime_mark_last_busy(dev->dev);
2338Out:
2339 pm_runtime_put_autosuspend(dev->dev);
2340}
2341
c030f2e4 2342int amdgpu_ras_init(struct amdgpu_device *adev)
2343{
2344 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
4e644fff 2345 int r;
e4348849 2346 bool df_poison, umc_poison;
c030f2e4 2347
b404ae82 2348 if (con)
c030f2e4 2349 return 0;
2350
2351 con = kmalloc(sizeof(struct amdgpu_ras) +
640ae42e
JC
2352 sizeof(struct ras_manager) * AMDGPU_RAS_BLOCK_COUNT +
2353 sizeof(struct ras_manager) * AMDGPU_RAS_MCA_BLOCK_COUNT,
c030f2e4 2354 GFP_KERNEL|__GFP_ZERO);
2355 if (!con)
2356 return -ENOMEM;
2357
05adfd80
LT
2358 con->adev = adev;
2359 INIT_DELAYED_WORK(&con->ras_counte_delay_work, amdgpu_ras_counte_dw);
2360 atomic_set(&con->ras_ce_count, 0);
2361 atomic_set(&con->ras_ue_count, 0);
2362
c030f2e4 2363 con->objs = (struct ras_manager *)(con + 1);
2364
2365 amdgpu_ras_set_context(adev, con);
2366
e509965e
LT
2367 amdgpu_ras_check_supported(adev);
2368
7ddd9770 2369 if (!adev->ras_enabled || adev->asic_type == CHIP_VEGA10) {
970fd197
SY
2370 /* set gfx block ras context feature for VEGA20 Gaming
2371 * send ras disable cmd to ras ta during ras late init.
2372 */
8ab0d6f0 2373 if (!adev->ras_enabled && adev->asic_type == CHIP_VEGA20) {
970fd197
SY
2374 con->features |= BIT(AMDGPU_RAS_BLOCK__GFX);
2375
2376 return 0;
2377 }
2378
5e91160a 2379 r = 0;
5436ab94 2380 goto release_con;
fb2a3607
HZ
2381 }
2382
69691c82 2383 con->update_channel_flag = false;
c030f2e4 2384 con->features = 0;
2385 INIT_LIST_HEAD(&con->head);
108c6a63 2386 /* Might need get this flag from vbios. */
2387 con->flags = RAS_DEFAULT_FLAGS;
c030f2e4 2388
6e36f231
HZ
2389 /* initialize nbio ras function ahead of any other
2390 * ras functions so hardware fatal error interrupt
2391 * can be enabled as early as possible */
2392 switch (adev->asic_type) {
2393 case CHIP_VEGA20:
2394 case CHIP_ARCTURUS:
2395 case CHIP_ALDEBARAN:
2e54fe5d 2396 if (!adev->gmc.xgmi.connected_to_cpu) {
2397 adev->nbio.ras = &nbio_v7_4_ras;
2398 amdgpu_ras_register_ras_block(adev, &adev->nbio.ras->ras_block);
80ed77f9 2399 adev->nbio.ras_if = &adev->nbio.ras->ras_block.ras_comm;
2e54fe5d 2400 }
6e36f231
HZ
2401 break;
2402 default:
2403 /* nbio ras is not available */
2404 break;
2405 }
2406
2e54fe5d 2407 if (adev->nbio.ras &&
2408 adev->nbio.ras->init_ras_controller_interrupt) {
2409 r = adev->nbio.ras->init_ras_controller_interrupt(adev);
4e644fff 2410 if (r)
5436ab94 2411 goto release_con;
4e644fff
HZ
2412 }
2413
2e54fe5d 2414 if (adev->nbio.ras &&
2415 adev->nbio.ras->init_ras_err_event_athub_interrupt) {
2416 r = adev->nbio.ras->init_ras_err_event_athub_interrupt(adev);
4e644fff 2417 if (r)
5436ab94 2418 goto release_con;
4e644fff
HZ
2419 }
2420
e4348849 2421 /* Init poison supported flag, the default value is false */
655ff353
TZ
2422 if (adev->gmc.xgmi.connected_to_cpu) {
2423 /* enabled by default when GPU is connected to CPU */
2424 con->poison_supported = true;
2425 }
2426 else if (adev->df.funcs &&
e4348849 2427 adev->df.funcs->query_ras_poison_mode &&
efe17d5a 2428 adev->umc.ras &&
2429 adev->umc.ras->query_ras_poison_mode) {
e4348849
TZ
2430 df_poison =
2431 adev->df.funcs->query_ras_poison_mode(adev);
2432 umc_poison =
efe17d5a 2433 adev->umc.ras->query_ras_poison_mode(adev);
e4348849
TZ
2434 /* Only poison is set in both DF and UMC, we can support it */
2435 if (df_poison && umc_poison)
2436 con->poison_supported = true;
2437 else if (df_poison != umc_poison)
2438 dev_warn(adev->dev, "Poison setting is inconsistent in DF/UMC(%d:%d)!\n",
2439 df_poison, umc_poison);
2440 }
2441
5e91160a
GC
2442 if (amdgpu_ras_fs_init(adev)) {
2443 r = -EINVAL;
5436ab94 2444 goto release_con;
5e91160a 2445 }
c030f2e4 2446
6952e99c 2447 dev_info(adev->dev, "RAS INFO: ras initialized successfully, "
e509965e 2448 "hardware ability[%x] ras_mask[%x]\n",
8ab0d6f0 2449 adev->ras_hw_enabled, adev->ras_enabled);
e509965e 2450
c030f2e4 2451 return 0;
5436ab94 2452release_con:
c030f2e4 2453 amdgpu_ras_set_context(adev, NULL);
2454 kfree(con);
2455
5e91160a 2456 return r;
c030f2e4 2457}
2458
8f6368a9 2459int amdgpu_persistent_edc_harvesting_supported(struct amdgpu_device *adev)
134d16d5
JC
2460{
2461 if (adev->gmc.xgmi.connected_to_cpu)
2462 return 1;
2463 return 0;
2464}
2465
2466static int amdgpu_persistent_edc_harvesting(struct amdgpu_device *adev,
2467 struct ras_common_if *ras_block)
2468{
2469 struct ras_query_if info = {
2470 .head = *ras_block,
2471 };
2472
2473 if (!amdgpu_persistent_edc_harvesting_supported(adev))
2474 return 0;
2475
2476 if (amdgpu_ras_query_error_status(adev, &info) != 0)
2477 DRM_WARN("RAS init harvest failure");
2478
2479 if (amdgpu_ras_reset_error_status(adev, ras_block->block) != 0)
2480 DRM_WARN("RAS init harvest reset failure");
2481
2482 return 0;
2483}
2484
e4348849
TZ
2485bool amdgpu_ras_is_poison_mode_supported(struct amdgpu_device *adev)
2486{
2487 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2488
2489 if (!con)
2490 return false;
2491
2492 return con->poison_supported;
2493}
2494
b293e891 2495/* helper function to handle common stuff in ip late init phase */
563285c8 2496int amdgpu_ras_block_late_init(struct amdgpu_device *adev,
2497 struct ras_common_if *ras_block)
b293e891 2498{
29c9b6cd 2499 struct amdgpu_ras_block_object *ras_obj = NULL;
05adfd80
LT
2500 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2501 unsigned long ue_count, ce_count;
b293e891
HZ
2502 int r;
2503
2504 /* disable RAS feature per IP block if it is not supported */
2505 if (!amdgpu_ras_is_supported(adev, ras_block->block)) {
2506 amdgpu_ras_feature_enable_on_boot(adev, ras_block, 0);
2507 return 0;
2508 }
2509
2510 r = amdgpu_ras_feature_enable_on_boot(adev, ras_block, 1);
2511 if (r) {
9080a18f 2512 if (adev->in_suspend || amdgpu_in_reset(adev)) {
b293e891
HZ
2513 /* in resume phase, if fail to enable ras,
2514 * clean up all ras fs nodes, and disable ras */
2515 goto cleanup;
2516 } else
2517 return r;
2518 }
2519
134d16d5
JC
2520 /* check for errors on warm reset edc persisant supported ASIC */
2521 amdgpu_persistent_edc_harvesting(adev, ras_block);
2522
b293e891 2523 /* in resume phase, no need to create ras fs node */
53b3f8f4 2524 if (adev->in_suspend || amdgpu_in_reset(adev))
b293e891
HZ
2525 return 0;
2526
563285c8 2527 ras_obj = container_of(ras_block, struct amdgpu_ras_block_object, ras_comm);
36780606
TZ
2528 if (ras_obj->ras_cb || (ras_obj->hw_ops &&
2529 (ras_obj->hw_ops->query_poison_status ||
2530 ras_obj->hw_ops->handle_poison_consumption))) {
9252d33d 2531 r = amdgpu_ras_interrupt_add_handler(adev, ras_block);
b293e891 2532 if (r)
779596ce 2533 goto cleanup;
b293e891
HZ
2534 }
2535
9252d33d 2536 r = amdgpu_ras_sysfs_create(adev, ras_block);
b293e891 2537 if (r)
779596ce 2538 goto interrupt;
b293e891 2539
05adfd80
LT
2540 /* Those are the cached values at init.
2541 */
4d9f771e
LT
2542 if (amdgpu_ras_query_error_count(adev, &ce_count, &ue_count) == 0) {
2543 atomic_set(&con->ras_ce_count, ce_count);
2544 atomic_set(&con->ras_ue_count, ue_count);
2545 }
05adfd80 2546
b293e891 2547 return 0;
779596ce
TR
2548
2549interrupt:
563285c8 2550 if (ras_obj->ras_cb)
9252d33d 2551 amdgpu_ras_interrupt_remove_handler(adev, ras_block);
779596ce 2552cleanup:
b293e891
HZ
2553 amdgpu_ras_feature_enable(adev, ras_block, 0);
2554 return r;
2555}
2556
d41ff22a 2557static int amdgpu_ras_block_late_init_default(struct amdgpu_device *adev,
418abce2 2558 struct ras_common_if *ras_block)
2559{
2560 return amdgpu_ras_block_late_init(adev, ras_block);
2561}
2562
b293e891 2563/* helper function to remove ras fs node and interrupt handler */
bdb3489c 2564void amdgpu_ras_block_late_fini(struct amdgpu_device *adev,
2565 struct ras_common_if *ras_block)
2566{
563285c8 2567 struct amdgpu_ras_block_object *ras_obj;
bdb3489c 2568 if (!ras_block)
2569 return;
2570
563285c8 2571 amdgpu_ras_sysfs_remove(adev, ras_block);
bdb3489c 2572
563285c8 2573 ras_obj = container_of(ras_block, struct amdgpu_ras_block_object, ras_comm);
2574 if (ras_obj->ras_cb)
2575 amdgpu_ras_interrupt_remove_handler(adev, ras_block);
bdb3489c 2576}
2577
80e0c2cb 2578static void amdgpu_ras_block_late_fini_default(struct amdgpu_device *adev,
2579 struct ras_common_if *ras_block)
2580{
2581 return amdgpu_ras_block_late_fini(adev, ras_block);
2582}
2583
a564808e 2584/* do some init work after IP late init as dependence.
511fdbc3 2585 * and it runs in resume/gpu reset/booting up cases.
a564808e 2586 */
511fdbc3 2587void amdgpu_ras_resume(struct amdgpu_device *adev)
108c6a63 2588{
2589 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2590 struct ras_manager *obj, *tmp;
2591
8ab0d6f0 2592 if (!adev->ras_enabled || !con) {
970fd197
SY
2593 /* clean ras context for VEGA20 Gaming after send ras disable cmd */
2594 amdgpu_release_ras_context(adev);
2595
108c6a63 2596 return;
970fd197 2597 }
108c6a63 2598
108c6a63 2599 if (con->flags & AMDGPU_RAS_FLAG_INIT_BY_VBIOS) {
191051a1 2600 /* Set up all other IPs which are not implemented. There is a
2601 * tricky thing that IP's actual ras error type should be
2602 * MULTI_UNCORRECTABLE, but as driver does not handle it, so
2603 * ERROR_NONE make sense anyway.
2604 */
2605 amdgpu_ras_enable_all_features(adev, 1);
2606
2607 /* We enable ras on all hw_supported block, but as boot
2608 * parameter might disable some of them and one or more IP has
2609 * not implemented yet. So we disable them on behalf.
2610 */
108c6a63 2611 list_for_each_entry_safe(obj, tmp, &con->head, node) {
2612 if (!amdgpu_ras_is_supported(adev, obj->head.block)) {
2613 amdgpu_ras_feature_enable(adev, &obj->head, 0);
2614 /* there should be no any reference. */
2615 WARN_ON(alive_obj(obj));
2616 }
191051a1 2617 }
108c6a63 2618 }
2619}
2620
511fdbc3 2621void amdgpu_ras_suspend(struct amdgpu_device *adev)
2622{
2623 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2624
8ab0d6f0 2625 if (!adev->ras_enabled || !con)
511fdbc3 2626 return;
2627
2628 amdgpu_ras_disable_all_features(adev, 0);
2629 /* Make sure all ras objects are disabled. */
2630 if (con->features)
2631 amdgpu_ras_disable_all_features(adev, 1);
2632}
2633
867e24ca 2634int amdgpu_ras_late_init(struct amdgpu_device *adev)
2635{
2636 struct amdgpu_ras_block_list *node, *tmp;
2637 struct amdgpu_ras_block_object *obj;
2638 int r;
2639
2640 list_for_each_entry_safe(node, tmp, &adev->ras_list, node) {
2641 if (!node->ras_obj) {
2642 dev_warn(adev->dev, "Warning: abnormal ras list node.\n");
2643 continue;
2644 }
418abce2 2645
867e24ca 2646 obj = node->ras_obj;
2647 if (obj->ras_late_init) {
2648 r = obj->ras_late_init(adev, &obj->ras_comm);
2649 if (r) {
2650 dev_err(adev->dev, "%s failed to execute ras_late_init! ret:%d\n",
2651 obj->ras_comm.name, r);
2652 return r;
2653 }
418abce2 2654 } else
2655 amdgpu_ras_block_late_init_default(adev, &obj->ras_comm);
867e24ca 2656 }
2657
2658 return 0;
2659}
2660
c030f2e4 2661/* do some fini work before IP fini as dependence */
2662int amdgpu_ras_pre_fini(struct amdgpu_device *adev)
2663{
2664 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2665
8ab0d6f0 2666 if (!adev->ras_enabled || !con)
c030f2e4 2667 return 0;
2668
72c8c97b 2669
c030f2e4 2670 /* Need disable ras on all IPs here before ip [hw/sw]fini */
2671 amdgpu_ras_disable_all_features(adev, 0);
2672 amdgpu_ras_recovery_fini(adev);
2673 return 0;
2674}
2675
2676int amdgpu_ras_fini(struct amdgpu_device *adev)
2677{
d5e8ff5f 2678 struct amdgpu_ras_block_list *ras_node, *tmp;
1f211a82 2679 struct amdgpu_ras_block_object *obj = NULL;
c030f2e4 2680 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2681
8ab0d6f0 2682 if (!adev->ras_enabled || !con)
c030f2e4 2683 return 0;
2684
1f211a82 2685 list_for_each_entry_safe(ras_node, tmp, &adev->ras_list, node) {
2686 if (ras_node->ras_obj) {
2687 obj = ras_node->ras_obj;
2688 if (amdgpu_ras_is_supported(adev, obj->ras_comm.block) &&
2689 obj->ras_fini)
2690 obj->ras_fini(adev, &obj->ras_comm);
80e0c2cb 2691 else
2692 amdgpu_ras_block_late_fini_default(adev, &obj->ras_comm);
1f211a82 2693 }
2694
2695 /* Clear ras blocks from ras_list and free ras block list node */
2696 list_del(&ras_node->node);
2697 kfree(ras_node);
2698 }
2699
c030f2e4 2700 amdgpu_ras_fs_fini(adev);
2701 amdgpu_ras_interrupt_remove_all(adev);
2702
2703 WARN(con->features, "Feature mask is not cleared");
2704
2705 if (con->features)
2706 amdgpu_ras_disable_all_features(adev, 1);
2707
05adfd80
LT
2708 cancel_delayed_work_sync(&con->ras_counte_delay_work);
2709
c030f2e4 2710 amdgpu_ras_set_context(adev, NULL);
2711 kfree(con);
2712
2713 return 0;
2714}
7c6e68c7
AG
2715
2716void amdgpu_ras_global_ras_isr(struct amdgpu_device *adev)
2717{
e509965e 2718 amdgpu_ras_check_supported(adev);
8ab0d6f0 2719 if (!adev->ras_hw_enabled)
ed606f8a
AG
2720 return;
2721
7c6e68c7 2722 if (atomic_cmpxchg(&amdgpu_ras_in_intr, 0, 1) == 0) {
6952e99c
GC
2723 dev_info(adev->dev, "uncorrectable hardware error"
2724 "(ERREVENT_ATHUB_INTERRUPT) detected!\n");
d5ea093e 2725
61934624 2726 amdgpu_ras_reset_gpu(adev);
7c6e68c7
AG
2727 }
2728}
bb5c7235
WS
2729
2730bool amdgpu_ras_need_emergency_restart(struct amdgpu_device *adev)
2731{
2732 if (adev->asic_type == CHIP_VEGA20 &&
2733 adev->pm.fw_version <= 0x283400) {
2734 return !(amdgpu_asic_reset_method(adev) == AMD_RESET_METHOD_BACO) &&
2735 amdgpu_ras_intr_triggered();
2736 }
2737
2738 return false;
2739}
970fd197
SY
2740
2741void amdgpu_release_ras_context(struct amdgpu_device *adev)
2742{
2743 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2744
2745 if (!con)
2746 return;
2747
8ab0d6f0 2748 if (!adev->ras_enabled && con->features & BIT(AMDGPU_RAS_BLOCK__GFX)) {
970fd197
SY
2749 con->features &= ~BIT(AMDGPU_RAS_BLOCK__GFX);
2750 amdgpu_ras_set_context(adev, NULL);
2751 kfree(con);
2752 }
2753}
12b2cab7
MJ
2754
2755#ifdef CONFIG_X86_MCE_AMD
2756static struct amdgpu_device *find_adev(uint32_t node_id)
2757{
12b2cab7
MJ
2758 int i;
2759 struct amdgpu_device *adev = NULL;
2760
91a1a52d
MJ
2761 for (i = 0; i < mce_adev_list.num_gpu; i++) {
2762 adev = mce_adev_list.devs[i];
12b2cab7 2763
91a1a52d 2764 if (adev && adev->gmc.xgmi.connected_to_cpu &&
12b2cab7
MJ
2765 adev->gmc.xgmi.physical_node_id == node_id)
2766 break;
2767 adev = NULL;
2768 }
2769
12b2cab7
MJ
2770 return adev;
2771}
2772
2773#define GET_MCA_IPID_GPUID(m) (((m) >> 44) & 0xF)
2774#define GET_UMC_INST(m) (((m) >> 21) & 0x7)
2775#define GET_CHAN_INDEX(m) ((((m) >> 12) & 0x3) | (((m) >> 18) & 0x4))
2776#define GPU_ID_OFFSET 8
2777
2778static int amdgpu_bad_page_notifier(struct notifier_block *nb,
2779 unsigned long val, void *data)
2780{
2781 struct mce *m = (struct mce *)data;
2782 struct amdgpu_device *adev = NULL;
2783 uint32_t gpu_id = 0;
2784 uint32_t umc_inst = 0;
2785 uint32_t ch_inst, channel_index = 0;
2786 struct ras_err_data err_data = {0, 0, 0, NULL};
2787 struct eeprom_table_record err_rec;
2788 uint64_t retired_page;
2789
2790 /*
2791 * If the error was generated in UMC_V2, which belongs to GPU UMCs,
2792 * and error occurred in DramECC (Extended error code = 0) then only
2793 * process the error, else bail out.
2794 */
91f75eb4 2795 if (!m || !((smca_get_bank_type(m->extcpu, m->bank) == SMCA_UMC_V2) &&
12b2cab7
MJ
2796 (XEC(m->status, 0x3f) == 0x0)))
2797 return NOTIFY_DONE;
2798
2799 /*
2800 * If it is correctable error, return.
2801 */
2802 if (mce_is_correctable(m))
2803 return NOTIFY_OK;
2804
2805 /*
2806 * GPU Id is offset by GPU_ID_OFFSET in MCA_IPID_UMC register.
2807 */
2808 gpu_id = GET_MCA_IPID_GPUID(m->ipid) - GPU_ID_OFFSET;
2809
2810 adev = find_adev(gpu_id);
2811 if (!adev) {
2812 DRM_WARN("%s: Unable to find adev for gpu_id: %d\n", __func__,
2813 gpu_id);
2814 return NOTIFY_DONE;
2815 }
2816
2817 /*
2818 * If it is uncorrectable error, then find out UMC instance and
2819 * channel index.
2820 */
2821 umc_inst = GET_UMC_INST(m->ipid);
2822 ch_inst = GET_CHAN_INDEX(m->ipid);
2823
2824 dev_info(adev->dev, "Uncorrectable error detected in UMC inst: %d, chan_idx: %d",
2825 umc_inst, ch_inst);
2826
12b2cab7
MJ
2827 /*
2828 * Translate UMC channel address to Physical address
2829 */
2830 channel_index =
2831 adev->umc.channel_idx_tbl[umc_inst * adev->umc.channel_inst_num
2832 + ch_inst];
2833
2834 retired_page = ADDR_OF_8KB_BLOCK(m->addr) |
2835 ADDR_OF_256B_BLOCK(channel_index) |
2836 OFFSET_IN_256B_BLOCK(m->addr);
2837
400013b2 2838 memset(&err_rec, 0x0, sizeof(struct eeprom_table_record));
12b2cab7 2839 err_data.err_addr = &err_rec;
400013b2
TZ
2840 amdgpu_umc_fill_error_record(&err_data, m->addr,
2841 retired_page, channel_index, umc_inst);
12b2cab7
MJ
2842
2843 if (amdgpu_bad_page_threshold != 0) {
2844 amdgpu_ras_add_bad_pages(adev, err_data.err_addr,
2845 err_data.err_addr_cnt);
2846 amdgpu_ras_save_bad_pages(adev);
2847 }
2848
2849 return NOTIFY_OK;
2850}
2851
2852static struct notifier_block amdgpu_bad_page_nb = {
2853 .notifier_call = amdgpu_bad_page_notifier,
2854 .priority = MCE_PRIO_UC,
2855};
2856
91a1a52d 2857static void amdgpu_register_bad_pages_mca_notifier(struct amdgpu_device *adev)
12b2cab7 2858{
91a1a52d
MJ
2859 /*
2860 * Add the adev to the mce_adev_list.
2861 * During mode2 reset, amdgpu device is temporarily
2862 * removed from the mgpu_info list which can cause
2863 * page retirement to fail.
2864 * Use this list instead of mgpu_info to find the amdgpu
2865 * device on which the UMC error was reported.
2866 */
2867 mce_adev_list.devs[mce_adev_list.num_gpu++] = adev;
2868
12b2cab7
MJ
2869 /*
2870 * Register the x86 notifier only once
2871 * with MCE subsystem.
2872 */
2873 if (notifier_registered == false) {
2874 mce_register_decode_chain(&amdgpu_bad_page_nb);
2875 notifier_registered = true;
2876 }
2877}
2878#endif
7cab2124 2879
b6efdb02 2880struct amdgpu_ras *amdgpu_ras_get_context(struct amdgpu_device *adev)
7cab2124 2881{
2882 if (!adev)
2883 return NULL;
2884
2885 return adev->psp.ras_context.ras;
2886}
2887
b6efdb02 2888int amdgpu_ras_set_context(struct amdgpu_device *adev, struct amdgpu_ras *ras_con)
7cab2124 2889{
2890 if (!adev)
69f91d32 2891 return -EINVAL;
7cab2124 2892
2893 adev->psp.ras_context.ras = ras_con;
2894 return 0;
2895}
2896
2897/* check if ras is supported on block, say, sdma, gfx */
2898int amdgpu_ras_is_supported(struct amdgpu_device *adev,
2899 unsigned int block)
2900{
2901 struct amdgpu_ras *ras = amdgpu_ras_get_context(adev);
2902
2903 if (block >= AMDGPU_RAS_BLOCK_COUNT)
2904 return 0;
2905 return ras && (adev->ras_enabled & (1 << block));
2906}
2907
2908int amdgpu_ras_reset_gpu(struct amdgpu_device *adev)
2909{
2910 struct amdgpu_ras *ras = amdgpu_ras_get_context(adev);
2911
2912 if (atomic_cmpxchg(&ras->in_recovery, 0, 1) == 0)
2913 schedule_work(&ras->recovery_work);
2914 return 0;
2915}
2916
2917
6492e1b0 2918/* Register each ip ras block into amdgpu ras */
2919int amdgpu_ras_register_ras_block(struct amdgpu_device *adev,
b6efdb02 2920 struct amdgpu_ras_block_object *ras_block_obj)
6492e1b0 2921{
d5e8ff5f 2922 struct amdgpu_ras_block_list *ras_node;
6492e1b0 2923 if (!adev || !ras_block_obj)
2924 return -EINVAL;
2925
df01fe73 2926 if (!amdgpu_ras_asic_supported(adev))
2927 return 0;
2928
d5e8ff5f 2929 ras_node = kzalloc(sizeof(*ras_node), GFP_KERNEL);
2930 if (!ras_node)
2931 return -ENOMEM;
2932
2933 INIT_LIST_HEAD(&ras_node->node);
2934 ras_node->ras_obj = ras_block_obj;
2935 list_add_tail(&ras_node->node, &adev->ras_list);
6492e1b0 2936
2937 return 0;
2938}