drm/amd/display: remove redundant CONFIG_DRM_AMD_DC_DCN in gpio
[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{
1541 bool poison_stat = true, need_reset = true;
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
1547 if (!adev->gmc.xgmi.connected_to_cpu)
1548 amdgpu_umc_poison_handler(adev, &err_data, false);
1549
1550 /* both query_poison_status and handle_poison_consumption are optional */
1551 if (block_obj && block_obj->hw_ops) {
1552 if (block_obj->hw_ops->query_poison_status) {
1553 poison_stat = block_obj->hw_ops->query_poison_status(adev);
1554 if (!poison_stat)
1555 dev_info(adev->dev, "No RAS poison status in %s poison IH.\n",
1556 block_obj->ras_comm.name);
1557 }
1558
1559 if (poison_stat && block_obj->hw_ops->handle_poison_consumption) {
1560 poison_stat = block_obj->hw_ops->handle_poison_consumption(adev);
1561 need_reset = poison_stat;
1562 }
1563 }
1564
1565 /* gpu reset is fallback for all failed cases */
1566 if (need_reset)
1567 amdgpu_ras_reset_gpu(adev);
1568}
1569
50a7d025
TZ
1570static void amdgpu_ras_interrupt_poison_creation_handler(struct ras_manager *obj,
1571 struct amdgpu_iv_entry *entry)
1572{
1573 dev_info(obj->adev->dev,
1574 "Poison is created, no user action is needed.\n");
1575}
1576
1577static void amdgpu_ras_interrupt_umc_handler(struct ras_manager *obj,
1578 struct amdgpu_iv_entry *entry)
1579{
1580 struct ras_ih_data *data = &obj->ih_data;
1581 struct ras_err_data err_data = {0, 0, 0, NULL};
1582 int ret;
1583
1584 if (!data->cb)
1585 return;
1586
1587 /* Let IP handle its data, maybe we need get the output
1588 * from the callback to update the error type/count, etc
1589 */
1590 ret = data->cb(obj->adev, &err_data, entry);
1591 /* ue will trigger an interrupt, and in that case
1592 * we need do a reset to recovery the whole system.
1593 * But leave IP do that recovery, here we just dispatch
1594 * the error.
1595 */
1596 if (ret == AMDGPU_RAS_SUCCESS) {
1597 /* these counts could be left as 0 if
1598 * some blocks do not count error number
1599 */
1600 obj->err_data.ue_count += err_data.ue_count;
1601 obj->err_data.ce_count += err_data.ce_count;
1602 }
1603}
1604
c030f2e4 1605static void amdgpu_ras_interrupt_handler(struct ras_manager *obj)
1606{
1607 struct ras_ih_data *data = &obj->ih_data;
1608 struct amdgpu_iv_entry entry;
c030f2e4 1609
1610 while (data->rptr != data->wptr) {
1611 rmb();
1612 memcpy(&entry, &data->ring[data->rptr],
1613 data->element_size);
1614
1615 wmb();
1616 data->rptr = (data->aligned_element_size +
1617 data->rptr) % data->ring_size;
1618
50a7d025
TZ
1619 if (amdgpu_ras_is_poison_mode_supported(obj->adev)) {
1620 if (obj->head.block == AMDGPU_RAS_BLOCK__UMC)
1621 amdgpu_ras_interrupt_poison_creation_handler(obj, &entry);
66f87949
TZ
1622 else
1623 amdgpu_ras_interrupt_poison_consumption_handler(obj, &entry);
50a7d025
TZ
1624 } else {
1625 if (obj->head.block == AMDGPU_RAS_BLOCK__UMC)
1626 amdgpu_ras_interrupt_umc_handler(obj, &entry);
1627 else
1628 dev_warn(obj->adev->dev,
1629 "No RAS interrupt handler for non-UMC block with poison disabled.\n");
c030f2e4 1630 }
1631 }
1632}
1633
1634static void amdgpu_ras_interrupt_process_handler(struct work_struct *work)
1635{
1636 struct ras_ih_data *data =
1637 container_of(work, struct ras_ih_data, ih_work);
1638 struct ras_manager *obj =
1639 container_of(data, struct ras_manager, ih_data);
1640
1641 amdgpu_ras_interrupt_handler(obj);
1642}
1643
1644int amdgpu_ras_interrupt_dispatch(struct amdgpu_device *adev,
1645 struct ras_dispatch_if *info)
1646{
1647 struct ras_manager *obj = amdgpu_ras_find_obj(adev, &info->head);
1648 struct ras_ih_data *data = &obj->ih_data;
1649
1650 if (!obj)
1651 return -EINVAL;
1652
1653 if (data->inuse == 0)
1654 return 0;
1655
1656 /* Might be overflow... */
1657 memcpy(&data->ring[data->wptr], info->entry,
1658 data->element_size);
1659
1660 wmb();
1661 data->wptr = (data->aligned_element_size +
1662 data->wptr) % data->ring_size;
1663
1664 schedule_work(&data->ih_work);
1665
1666 return 0;
1667}
1668
1669int amdgpu_ras_interrupt_remove_handler(struct amdgpu_device *adev,
9252d33d 1670 struct ras_common_if *head)
c030f2e4 1671{
9252d33d 1672 struct ras_manager *obj = amdgpu_ras_find_obj(adev, head);
c030f2e4 1673 struct ras_ih_data *data;
1674
1675 if (!obj)
1676 return -EINVAL;
1677
1678 data = &obj->ih_data;
1679 if (data->inuse == 0)
1680 return 0;
1681
1682 cancel_work_sync(&data->ih_work);
1683
1684 kfree(data->ring);
1685 memset(data, 0, sizeof(*data));
1686 put_obj(obj);
1687
1688 return 0;
1689}
1690
1691int amdgpu_ras_interrupt_add_handler(struct amdgpu_device *adev,
9252d33d 1692 struct ras_common_if *head)
c030f2e4 1693{
9252d33d 1694 struct ras_manager *obj = amdgpu_ras_find_obj(adev, head);
c030f2e4 1695 struct ras_ih_data *data;
9252d33d 1696 struct amdgpu_ras_block_object *ras_obj;
c030f2e4 1697
1698 if (!obj) {
1699 /* in case we registe the IH before enable ras feature */
9252d33d 1700 obj = amdgpu_ras_create_obj(adev, head);
c030f2e4 1701 if (!obj)
1702 return -EINVAL;
1703 } else
1704 get_obj(obj);
1705
9252d33d 1706 ras_obj = container_of(head, struct amdgpu_ras_block_object, ras_comm);
1707
c030f2e4 1708 data = &obj->ih_data;
1709 /* add the callback.etc */
1710 *data = (struct ras_ih_data) {
1711 .inuse = 0,
9252d33d 1712 .cb = ras_obj->ras_cb,
c030f2e4 1713 .element_size = sizeof(struct amdgpu_iv_entry),
1714 .rptr = 0,
1715 .wptr = 0,
1716 };
1717
1718 INIT_WORK(&data->ih_work, amdgpu_ras_interrupt_process_handler);
1719
1720 data->aligned_element_size = ALIGN(data->element_size, 8);
1721 /* the ring can store 64 iv entries. */
1722 data->ring_size = 64 * data->aligned_element_size;
1723 data->ring = kmalloc(data->ring_size, GFP_KERNEL);
1724 if (!data->ring) {
1725 put_obj(obj);
1726 return -ENOMEM;
1727 }
1728
1729 /* IH is ready */
1730 data->inuse = 1;
1731
1732 return 0;
1733}
1734
1735static int amdgpu_ras_interrupt_remove_all(struct amdgpu_device *adev)
1736{
1737 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1738 struct ras_manager *obj, *tmp;
1739
1740 list_for_each_entry_safe(obj, tmp, &con->head, node) {
9252d33d 1741 amdgpu_ras_interrupt_remove_handler(adev, &obj->head);
c030f2e4 1742 }
1743
1744 return 0;
1745}
1746/* ih end */
1747
313c8fd3
GC
1748/* traversal all IPs except NBIO to query error counter */
1749static void amdgpu_ras_log_on_err_counter(struct amdgpu_device *adev)
1750{
1751 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1752 struct ras_manager *obj;
1753
8ab0d6f0 1754 if (!adev->ras_enabled || !con)
313c8fd3
GC
1755 return;
1756
1757 list_for_each_entry(obj, &con->head, node) {
1758 struct ras_query_if info = {
1759 .head = obj->head,
1760 };
1761
1762 /*
1763 * PCIE_BIF IP has one different isr by ras controller
1764 * interrupt, the specific ras counter query will be
1765 * done in that isr. So skip such block from common
1766 * sync flood interrupt isr calling.
1767 */
1768 if (info.head.block == AMDGPU_RAS_BLOCK__PCIE_BIF)
1769 continue;
1770
cf63b702
SY
1771 /*
1772 * this is a workaround for aldebaran, skip send msg to
1773 * smu to get ecc_info table due to smu handle get ecc
1774 * info table failed temporarily.
1775 * should be removed until smu fix handle ecc_info table.
1776 */
1777 if ((info.head.block == AMDGPU_RAS_BLOCK__UMC) &&
1778 (adev->ip_versions[MP1_HWIP][0] == IP_VERSION(13, 0, 2)))
1779 continue;
1780
761d86d3 1781 amdgpu_ras_query_error_status(adev, &info);
313c8fd3
GC
1782 }
1783}
1784
3f975d0f 1785/* Parse RdRspStatus and WrRspStatus */
cd92df93
LJ
1786static void amdgpu_ras_error_status_query(struct amdgpu_device *adev,
1787 struct ras_query_if *info)
3f975d0f 1788{
8eb53bb2 1789 struct amdgpu_ras_block_object *block_obj;
3f975d0f
SY
1790 /*
1791 * Only two block need to query read/write
1792 * RspStatus at current state
1793 */
5e67bba3 1794 if ((info->head.block != AMDGPU_RAS_BLOCK__GFX) &&
1795 (info->head.block != AMDGPU_RAS_BLOCK__MMHUB))
b6efdb02 1796 return;
1797
1798 block_obj = amdgpu_ras_get_ras_block(adev,
1799 info->head.block,
1800 info->head.sub_block_index);
5e67bba3 1801
5e67bba3 1802 if (!block_obj || !block_obj->hw_ops) {
afa37315
LT
1803 dev_dbg_once(adev->dev, "%s doesn't config RAS function\n",
1804 get_ras_block_str(&info->head));
b6efdb02 1805 return;
3f975d0f 1806 }
5e67bba3 1807
1808 if (block_obj->hw_ops->query_ras_error_status)
ab3b9de6 1809 block_obj->hw_ops->query_ras_error_status(adev);
5e67bba3 1810
3f975d0f
SY
1811}
1812
1813static void amdgpu_ras_query_err_status(struct amdgpu_device *adev)
1814{
1815 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1816 struct ras_manager *obj;
1817
8ab0d6f0 1818 if (!adev->ras_enabled || !con)
3f975d0f
SY
1819 return;
1820
1821 list_for_each_entry(obj, &con->head, node) {
1822 struct ras_query_if info = {
1823 .head = obj->head,
1824 };
1825
1826 amdgpu_ras_error_status_query(adev, &info);
1827 }
1828}
1829
c030f2e4 1830/* recovery begin */
466b1793 1831
1832/* return 0 on success.
1833 * caller need free bps.
1834 */
1835static int amdgpu_ras_badpages_read(struct amdgpu_device *adev,
1836 struct ras_badpage **bps, unsigned int *count)
1837{
1838 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1839 struct ras_err_handler_data *data;
1840 int i = 0;
732f2a30 1841 int ret = 0, status;
466b1793 1842
1843 if (!con || !con->eh_data || !bps || !count)
1844 return -EINVAL;
1845
1846 mutex_lock(&con->recovery_lock);
1847 data = con->eh_data;
1848 if (!data || data->count == 0) {
1849 *bps = NULL;
46cf2fec 1850 ret = -EINVAL;
466b1793 1851 goto out;
1852 }
1853
1854 *bps = kmalloc(sizeof(struct ras_badpage) * data->count, GFP_KERNEL);
1855 if (!*bps) {
1856 ret = -ENOMEM;
1857 goto out;
1858 }
1859
1860 for (; i < data->count; i++) {
1861 (*bps)[i] = (struct ras_badpage){
9dc23a63 1862 .bp = data->bps[i].retired_page,
466b1793 1863 .size = AMDGPU_GPU_PAGE_SIZE,
52dd95f2 1864 .flags = AMDGPU_RAS_RETIRE_PAGE_RESERVED,
466b1793 1865 };
ec6aae97 1866 status = amdgpu_vram_mgr_query_page_status(&adev->mman.vram_mgr,
676deb38 1867 data->bps[i].retired_page);
732f2a30 1868 if (status == -EBUSY)
52dd95f2 1869 (*bps)[i].flags = AMDGPU_RAS_RETIRE_PAGE_PENDING;
732f2a30 1870 else if (status == -ENOENT)
52dd95f2 1871 (*bps)[i].flags = AMDGPU_RAS_RETIRE_PAGE_FAULT;
466b1793 1872 }
1873
1874 *count = data->count;
1875out:
1876 mutex_unlock(&con->recovery_lock);
1877 return ret;
1878}
1879
c030f2e4 1880static void amdgpu_ras_do_recovery(struct work_struct *work)
1881{
1882 struct amdgpu_ras *ras =
1883 container_of(work, struct amdgpu_ras, recovery_work);
b3dbd6d3
JC
1884 struct amdgpu_device *remote_adev = NULL;
1885 struct amdgpu_device *adev = ras->adev;
1886 struct list_head device_list, *device_list_handle = NULL;
b3dbd6d3 1887
f75e94d8 1888 if (!ras->disable_ras_err_cnt_harvest) {
d95e8e97
DL
1889 struct amdgpu_hive_info *hive = amdgpu_get_xgmi_hive(adev);
1890
f75e94d8
GC
1891 /* Build list of devices to query RAS related errors */
1892 if (hive && adev->gmc.xgmi.num_physical_nodes > 1) {
1893 device_list_handle = &hive->device_list;
1894 } else {
1895 INIT_LIST_HEAD(&device_list);
1896 list_add_tail(&adev->gmc.xgmi.head, &device_list);
1897 device_list_handle = &device_list;
1898 }
c030f2e4 1899
f75e94d8 1900 list_for_each_entry(remote_adev,
3f975d0f
SY
1901 device_list_handle, gmc.xgmi.head) {
1902 amdgpu_ras_query_err_status(remote_adev);
f75e94d8 1903 amdgpu_ras_log_on_err_counter(remote_adev);
3f975d0f 1904 }
d95e8e97
DL
1905
1906 amdgpu_put_xgmi_hive(hive);
b3dbd6d3 1907 }
313c8fd3 1908
93af20f7 1909 if (amdgpu_device_should_recover_gpu(ras->adev))
2f530724 1910 amdgpu_device_gpu_recover(ras->adev, NULL);
c030f2e4 1911 atomic_set(&ras->in_recovery, 0);
1912}
1913
c030f2e4 1914/* alloc/realloc bps array */
1915static int amdgpu_ras_realloc_eh_data_space(struct amdgpu_device *adev,
1916 struct ras_err_handler_data *data, int pages)
1917{
1918 unsigned int old_space = data->count + data->space_left;
1919 unsigned int new_space = old_space + pages;
9dc23a63
TZ
1920 unsigned int align_space = ALIGN(new_space, 512);
1921 void *bps = kmalloc(align_space * sizeof(*data->bps), GFP_KERNEL);
9dc23a63 1922
676deb38 1923 if (!bps) {
c030f2e4 1924 return -ENOMEM;
9dc23a63 1925 }
c030f2e4 1926
1927 if (data->bps) {
9dc23a63 1928 memcpy(bps, data->bps,
c030f2e4 1929 data->count * sizeof(*data->bps));
1930 kfree(data->bps);
1931 }
1932
9dc23a63 1933 data->bps = bps;
c030f2e4 1934 data->space_left += align_space - old_space;
1935 return 0;
1936}
1937
1938/* it deal with vram only. */
1939int amdgpu_ras_add_bad_pages(struct amdgpu_device *adev,
9dc23a63 1940 struct eeprom_table_record *bps, int pages)
c030f2e4 1941{
1942 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
73aa8e1a 1943 struct ras_err_handler_data *data;
c030f2e4 1944 int ret = 0;
676deb38 1945 uint32_t i;
c030f2e4 1946
73aa8e1a 1947 if (!con || !con->eh_data || !bps || pages <= 0)
c030f2e4 1948 return 0;
1949
1950 mutex_lock(&con->recovery_lock);
73aa8e1a 1951 data = con->eh_data;
c030f2e4 1952 if (!data)
1953 goto out;
1954
676deb38
DL
1955 for (i = 0; i < pages; i++) {
1956 if (amdgpu_ras_check_bad_page_unlock(con,
1957 bps[i].retired_page << AMDGPU_GPU_PAGE_SHIFT))
1958 continue;
1959
1960 if (!data->space_left &&
1961 amdgpu_ras_realloc_eh_data_space(adev, data, 256)) {
c030f2e4 1962 ret = -ENOMEM;
1963 goto out;
1964 }
1965
ec6aae97 1966 amdgpu_vram_mgr_reserve_range(&adev->mman.vram_mgr,
676deb38
DL
1967 bps[i].retired_page << AMDGPU_GPU_PAGE_SHIFT,
1968 AMDGPU_GPU_PAGE_SIZE);
9dc23a63 1969
676deb38
DL
1970 memcpy(&data->bps[data->count], &bps[i], sizeof(*data->bps));
1971 data->count++;
1972 data->space_left--;
1973 }
c030f2e4 1974out:
1975 mutex_unlock(&con->recovery_lock);
1976
1977 return ret;
1978}
1979
78ad00c9
TZ
1980/*
1981 * write error record array to eeprom, the function should be
1982 * protected by recovery_lock
1983 */
22503d80 1984int amdgpu_ras_save_bad_pages(struct amdgpu_device *adev)
78ad00c9
TZ
1985{
1986 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1987 struct ras_err_handler_data *data;
8a3e801f 1988 struct amdgpu_ras_eeprom_control *control;
78ad00c9
TZ
1989 int save_count;
1990
1991 if (!con || !con->eh_data)
1992 return 0;
1993
d9a69fe5 1994 mutex_lock(&con->recovery_lock);
8a3e801f 1995 control = &con->eeprom_control;
78ad00c9 1996 data = con->eh_data;
0686627b 1997 save_count = data->count - control->ras_num_recs;
d9a69fe5 1998 mutex_unlock(&con->recovery_lock);
78ad00c9 1999 /* only new entries are saved */
b1628425 2000 if (save_count > 0) {
63d4c081
LT
2001 if (amdgpu_ras_eeprom_append(control,
2002 &data->bps[control->ras_num_recs],
2003 save_count)) {
6952e99c 2004 dev_err(adev->dev, "Failed to save EEPROM table data!");
78ad00c9
TZ
2005 return -EIO;
2006 }
2007
b1628425
GC
2008 dev_info(adev->dev, "Saved %d pages to EEPROM table.\n", save_count);
2009 }
2010
78ad00c9
TZ
2011 return 0;
2012}
2013
2014/*
2015 * read error record array in eeprom and reserve enough space for
2016 * storing new bad pages
2017 */
2018static int amdgpu_ras_load_bad_pages(struct amdgpu_device *adev)
2019{
2020 struct amdgpu_ras_eeprom_control *control =
6457205c 2021 &adev->psp.ras_context.ras->eeprom_control;
e4e6a589
LT
2022 struct eeprom_table_record *bps;
2023 int ret;
78ad00c9
TZ
2024
2025 /* no bad page record, skip eeprom access */
0686627b 2026 if (control->ras_num_recs == 0 || amdgpu_bad_page_threshold == 0)
e4e6a589 2027 return 0;
78ad00c9 2028
0686627b 2029 bps = kcalloc(control->ras_num_recs, sizeof(*bps), GFP_KERNEL);
78ad00c9
TZ
2030 if (!bps)
2031 return -ENOMEM;
2032
0686627b 2033 ret = amdgpu_ras_eeprom_read(control, bps, control->ras_num_recs);
e4e6a589 2034 if (ret)
6952e99c 2035 dev_err(adev->dev, "Failed to load EEPROM table records!");
e4e6a589 2036 else
0686627b 2037 ret = amdgpu_ras_add_bad_pages(adev, bps, control->ras_num_recs);
78ad00c9 2038
78ad00c9
TZ
2039 kfree(bps);
2040 return ret;
2041}
2042
676deb38
DL
2043static bool amdgpu_ras_check_bad_page_unlock(struct amdgpu_ras *con,
2044 uint64_t addr)
2045{
2046 struct ras_err_handler_data *data = con->eh_data;
2047 int i;
2048
2049 addr >>= AMDGPU_GPU_PAGE_SHIFT;
2050 for (i = 0; i < data->count; i++)
2051 if (addr == data->bps[i].retired_page)
2052 return true;
2053
2054 return false;
2055}
2056
6e4be987
TZ
2057/*
2058 * check if an address belongs to bad page
2059 *
2060 * Note: this check is only for umc block
2061 */
2062static bool amdgpu_ras_check_bad_page(struct amdgpu_device *adev,
2063 uint64_t addr)
2064{
2065 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
6e4be987
TZ
2066 bool ret = false;
2067
2068 if (!con || !con->eh_data)
2069 return ret;
2070
2071 mutex_lock(&con->recovery_lock);
676deb38 2072 ret = amdgpu_ras_check_bad_page_unlock(con, addr);
6e4be987
TZ
2073 mutex_unlock(&con->recovery_lock);
2074 return ret;
2075}
2076
e5c04edf 2077static void amdgpu_ras_validate_threshold(struct amdgpu_device *adev,
e4e6a589 2078 uint32_t max_count)
c84d4670 2079{
e5c04edf 2080 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
c84d4670
GC
2081
2082 /*
2083 * Justification of value bad_page_cnt_threshold in ras structure
2084 *
2085 * Generally, -1 <= amdgpu_bad_page_threshold <= max record length
2086 * in eeprom, and introduce two scenarios accordingly.
2087 *
2088 * Bad page retirement enablement:
2089 * - If amdgpu_bad_page_threshold = -1,
2090 * bad_page_cnt_threshold = typical value by formula.
2091 *
2092 * - When the value from user is 0 < amdgpu_bad_page_threshold <
2093 * max record length in eeprom, use it directly.
2094 *
2095 * Bad page retirement disablement:
2096 * - If amdgpu_bad_page_threshold = 0, bad page retirement
2097 * functionality is disabled, and bad_page_cnt_threshold will
2098 * take no effect.
2099 */
2100
e4e6a589
LT
2101 if (amdgpu_bad_page_threshold < 0) {
2102 u64 val = adev->gmc.mc_vram_size;
c84d4670 2103
e4e6a589 2104 do_div(val, RAS_BAD_PAGE_COVER);
e5c04edf 2105 con->bad_page_cnt_threshold = min(lower_32_bits(val),
e4e6a589 2106 max_count);
e5c04edf 2107 } else {
e4e6a589
LT
2108 con->bad_page_cnt_threshold = min_t(int, max_count,
2109 amdgpu_bad_page_threshold);
c84d4670
GC
2110 }
2111}
2112
1a6fc071 2113int amdgpu_ras_recovery_init(struct amdgpu_device *adev)
c030f2e4 2114{
2115 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
4d1337d2 2116 struct ras_err_handler_data **data;
e4e6a589 2117 u32 max_eeprom_records_count = 0;
b82e65a9 2118 bool exc_err_limit = false;
78ad00c9 2119 int ret;
c030f2e4 2120
1d9d2ca8
LT
2121 if (!con)
2122 return 0;
2123
2124 /* Allow access to RAS EEPROM via debugfs, when the ASIC
2125 * supports RAS and debugfs is enabled, but when
2126 * adev->ras_enabled is unset, i.e. when "ras_enable"
2127 * module parameter is set to 0.
2128 */
2129 con->adev = adev;
2130
2131 if (!adev->ras_enabled)
4d1337d2
AG
2132 return 0;
2133
1d9d2ca8 2134 data = &con->eh_data;
1a6fc071
TZ
2135 *data = kmalloc(sizeof(**data), GFP_KERNEL | __GFP_ZERO);
2136 if (!*data) {
2137 ret = -ENOMEM;
2138 goto out;
2139 }
c030f2e4 2140
2141 mutex_init(&con->recovery_lock);
2142 INIT_WORK(&con->recovery_work, amdgpu_ras_do_recovery);
2143 atomic_set(&con->in_recovery, 0);
69691c82 2144 con->eeprom_control.bad_channel_bitmap = 0;
c030f2e4 2145
e4e6a589
LT
2146 max_eeprom_records_count = amdgpu_ras_eeprom_max_record_count();
2147 amdgpu_ras_validate_threshold(adev, max_eeprom_records_count);
c84d4670 2148
e5086659 2149 /* Todo: During test the SMU might fail to read the eeprom through I2C
2150 * when the GPU is pending on XGMI reset during probe time
2151 * (Mostly after second bus reset), skip it now
2152 */
2153 if (adev->gmc.xgmi.pending_reset)
2154 return 0;
b82e65a9
GC
2155 ret = amdgpu_ras_eeprom_init(&con->eeprom_control, &exc_err_limit);
2156 /*
2157 * This calling fails when exc_err_limit is true or
2158 * ret != 0.
2159 */
2160 if (exc_err_limit || ret)
1a6fc071 2161 goto free;
78ad00c9 2162
0686627b 2163 if (con->eeprom_control.ras_num_recs) {
78ad00c9
TZ
2164 ret = amdgpu_ras_load_bad_pages(adev);
2165 if (ret)
1a6fc071 2166 goto free;
513befa6 2167
bc143d8b 2168 amdgpu_dpm_send_hbm_bad_pages_num(adev, con->eeprom_control.ras_num_recs);
69691c82
SY
2169
2170 if (con->update_channel_flag == true) {
2171 amdgpu_dpm_send_hbm_bad_channel_flag(adev, con->eeprom_control.bad_channel_bitmap);
2172 con->update_channel_flag = false;
2173 }
78ad00c9 2174 }
c030f2e4 2175
12b2cab7
MJ
2176#ifdef CONFIG_X86_MCE_AMD
2177 if ((adev->asic_type == CHIP_ALDEBARAN) &&
2178 (adev->gmc.xgmi.connected_to_cpu))
91a1a52d 2179 amdgpu_register_bad_pages_mca_notifier(adev);
12b2cab7 2180#endif
c030f2e4 2181 return 0;
1a6fc071 2182
1a6fc071 2183free:
1a6fc071 2184 kfree((*data)->bps);
1a6fc071 2185 kfree(*data);
1995b3a3 2186 con->eh_data = NULL;
1a6fc071 2187out:
cf696091 2188 dev_warn(adev->dev, "Failed to initialize ras recovery! (%d)\n", ret);
1a6fc071 2189
b82e65a9
GC
2190 /*
2191 * Except error threshold exceeding case, other failure cases in this
2192 * function would not fail amdgpu driver init.
2193 */
2194 if (!exc_err_limit)
2195 ret = 0;
2196 else
2197 ret = -EINVAL;
2198
1a6fc071 2199 return ret;
c030f2e4 2200}
2201
2202static int amdgpu_ras_recovery_fini(struct amdgpu_device *adev)
2203{
2204 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2205 struct ras_err_handler_data *data = con->eh_data;
2206
1a6fc071
TZ
2207 /* recovery_init failed to init it, fini is useless */
2208 if (!data)
2209 return 0;
2210
c030f2e4 2211 cancel_work_sync(&con->recovery_work);
c030f2e4 2212
2213 mutex_lock(&con->recovery_lock);
2214 con->eh_data = NULL;
2215 kfree(data->bps);
2216 kfree(data);
2217 mutex_unlock(&con->recovery_lock);
2218
2219 return 0;
2220}
2221/* recovery end */
2222
084e2640 2223static bool amdgpu_ras_asic_supported(struct amdgpu_device *adev)
5436ab94 2224{
084e2640
LT
2225 return adev->asic_type == CHIP_VEGA10 ||
2226 adev->asic_type == CHIP_VEGA20 ||
2227 adev->asic_type == CHIP_ARCTURUS ||
75f06251 2228 adev->asic_type == CHIP_ALDEBARAN ||
084e2640 2229 adev->asic_type == CHIP_SIENNA_CICHLID;
5436ab94
SY
2230}
2231
f50160cf
SY
2232/*
2233 * this is workaround for vega20 workstation sku,
2234 * force enable gfx ras, ignore vbios gfx ras flag
2235 * due to GC EDC can not write
2236 */
e509965e 2237static void amdgpu_ras_get_quirks(struct amdgpu_device *adev)
f50160cf
SY
2238{
2239 struct atom_context *ctx = adev->mode_info.atom_context;
2240
2241 if (!ctx)
2242 return;
2243
2244 if (strnstr(ctx->vbios_version, "D16406",
e11d5e0d
SY
2245 sizeof(ctx->vbios_version)) ||
2246 strnstr(ctx->vbios_version, "D36002",
2247 sizeof(ctx->vbios_version)))
8ab0d6f0 2248 adev->ras_hw_enabled |= (1 << AMDGPU_RAS_BLOCK__GFX);
f50160cf
SY
2249}
2250
5caf466a 2251/*
2252 * check hardware's ras ability which will be saved in hw_supported.
2253 * if hardware does not support ras, we can skip some ras initializtion and
2254 * forbid some ras operations from IP.
2255 * if software itself, say boot parameter, limit the ras ability. We still
2256 * need allow IP do some limited operations, like disable. In such case,
2257 * we have to initialize ras as normal. but need check if operation is
2258 * allowed or not in each function.
2259 */
e509965e 2260static void amdgpu_ras_check_supported(struct amdgpu_device *adev)
c030f2e4 2261{
8ab0d6f0 2262 adev->ras_hw_enabled = adev->ras_enabled = 0;
c030f2e4 2263
88474cca 2264 if (amdgpu_sriov_vf(adev) || !adev->is_atom_fw ||
084e2640 2265 !amdgpu_ras_asic_supported(adev))
5caf466a 2266 return;
b404ae82 2267
75f06251
HZ
2268 if (!adev->gmc.xgmi.connected_to_cpu) {
2269 if (amdgpu_atomfirmware_mem_ecc_supported(adev)) {
2270 dev_info(adev->dev, "MEM ECC is active.\n");
8ab0d6f0 2271 adev->ras_hw_enabled |= (1 << AMDGPU_RAS_BLOCK__UMC |
e509965e 2272 1 << AMDGPU_RAS_BLOCK__DF);
75f06251
HZ
2273 } else {
2274 dev_info(adev->dev, "MEM ECC is not presented.\n");
2275 }
88474cca 2276
75f06251
HZ
2277 if (amdgpu_atomfirmware_sram_ecc_supported(adev)) {
2278 dev_info(adev->dev, "SRAM ECC is active.\n");
8ab0d6f0 2279 adev->ras_hw_enabled |= ~(1 << AMDGPU_RAS_BLOCK__UMC |
e509965e 2280 1 << AMDGPU_RAS_BLOCK__DF);
a3d63c62
MZZ
2281
2282 if (adev->ip_versions[VCN_HWIP][0] == IP_VERSION(2, 6, 0))
2283 adev->ras_hw_enabled |= (1 << AMDGPU_RAS_BLOCK__VCN |
2284 1 << AMDGPU_RAS_BLOCK__JPEG);
2285 else
2286 adev->ras_hw_enabled &= ~(1 << AMDGPU_RAS_BLOCK__VCN |
2287 1 << AMDGPU_RAS_BLOCK__JPEG);
75f06251
HZ
2288 } else {
2289 dev_info(adev->dev, "SRAM ECC is not presented.\n");
2290 }
2291 } else {
2292 /* driver only manages a few IP blocks RAS feature
2293 * when GPU is connected cpu through XGMI */
8ab0d6f0 2294 adev->ras_hw_enabled |= (1 << AMDGPU_RAS_BLOCK__GFX |
e509965e
LT
2295 1 << AMDGPU_RAS_BLOCK__SDMA |
2296 1 << AMDGPU_RAS_BLOCK__MMHUB);
75f06251 2297 }
88474cca 2298
e509965e 2299 amdgpu_ras_get_quirks(adev);
f50160cf 2300
88474cca 2301 /* hw_supported needs to be aligned with RAS block mask. */
8ab0d6f0 2302 adev->ras_hw_enabled &= AMDGPU_RAS_BLOCK_MASK;
b404ae82 2303
8ab0d6f0
LT
2304 adev->ras_enabled = amdgpu_ras_enable == 0 ? 0 :
2305 adev->ras_hw_enabled & amdgpu_ras_mask;
c030f2e4 2306}
2307
05adfd80
LT
2308static void amdgpu_ras_counte_dw(struct work_struct *work)
2309{
2310 struct amdgpu_ras *con = container_of(work, struct amdgpu_ras,
2311 ras_counte_delay_work.work);
2312 struct amdgpu_device *adev = con->adev;
a3fbb0d8 2313 struct drm_device *dev = adev_to_drm(adev);
05adfd80
LT
2314 unsigned long ce_count, ue_count;
2315 int res;
2316
2317 res = pm_runtime_get_sync(dev->dev);
2318 if (res < 0)
2319 goto Out;
2320
2321 /* Cache new values.
2322 */
4d9f771e
LT
2323 if (amdgpu_ras_query_error_count(adev, &ce_count, &ue_count) == 0) {
2324 atomic_set(&con->ras_ce_count, ce_count);
2325 atomic_set(&con->ras_ue_count, ue_count);
2326 }
05adfd80
LT
2327
2328 pm_runtime_mark_last_busy(dev->dev);
2329Out:
2330 pm_runtime_put_autosuspend(dev->dev);
2331}
2332
c030f2e4 2333int amdgpu_ras_init(struct amdgpu_device *adev)
2334{
2335 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
4e644fff 2336 int r;
e4348849 2337 bool df_poison, umc_poison;
c030f2e4 2338
b404ae82 2339 if (con)
c030f2e4 2340 return 0;
2341
2342 con = kmalloc(sizeof(struct amdgpu_ras) +
640ae42e
JC
2343 sizeof(struct ras_manager) * AMDGPU_RAS_BLOCK_COUNT +
2344 sizeof(struct ras_manager) * AMDGPU_RAS_MCA_BLOCK_COUNT,
c030f2e4 2345 GFP_KERNEL|__GFP_ZERO);
2346 if (!con)
2347 return -ENOMEM;
2348
05adfd80
LT
2349 con->adev = adev;
2350 INIT_DELAYED_WORK(&con->ras_counte_delay_work, amdgpu_ras_counte_dw);
2351 atomic_set(&con->ras_ce_count, 0);
2352 atomic_set(&con->ras_ue_count, 0);
2353
c030f2e4 2354 con->objs = (struct ras_manager *)(con + 1);
2355
2356 amdgpu_ras_set_context(adev, con);
2357
e509965e
LT
2358 amdgpu_ras_check_supported(adev);
2359
7ddd9770 2360 if (!adev->ras_enabled || adev->asic_type == CHIP_VEGA10) {
970fd197
SY
2361 /* set gfx block ras context feature for VEGA20 Gaming
2362 * send ras disable cmd to ras ta during ras late init.
2363 */
8ab0d6f0 2364 if (!adev->ras_enabled && adev->asic_type == CHIP_VEGA20) {
970fd197
SY
2365 con->features |= BIT(AMDGPU_RAS_BLOCK__GFX);
2366
2367 return 0;
2368 }
2369
5e91160a 2370 r = 0;
5436ab94 2371 goto release_con;
fb2a3607
HZ
2372 }
2373
69691c82 2374 con->update_channel_flag = false;
c030f2e4 2375 con->features = 0;
2376 INIT_LIST_HEAD(&con->head);
108c6a63 2377 /* Might need get this flag from vbios. */
2378 con->flags = RAS_DEFAULT_FLAGS;
c030f2e4 2379
6e36f231
HZ
2380 /* initialize nbio ras function ahead of any other
2381 * ras functions so hardware fatal error interrupt
2382 * can be enabled as early as possible */
2383 switch (adev->asic_type) {
2384 case CHIP_VEGA20:
2385 case CHIP_ARCTURUS:
2386 case CHIP_ALDEBARAN:
2e54fe5d 2387 if (!adev->gmc.xgmi.connected_to_cpu) {
2388 adev->nbio.ras = &nbio_v7_4_ras;
2389 amdgpu_ras_register_ras_block(adev, &adev->nbio.ras->ras_block);
80ed77f9 2390 adev->nbio.ras_if = &adev->nbio.ras->ras_block.ras_comm;
2e54fe5d 2391 }
6e36f231
HZ
2392 break;
2393 default:
2394 /* nbio ras is not available */
2395 break;
2396 }
2397
2e54fe5d 2398 if (adev->nbio.ras &&
2399 adev->nbio.ras->init_ras_controller_interrupt) {
2400 r = adev->nbio.ras->init_ras_controller_interrupt(adev);
4e644fff 2401 if (r)
5436ab94 2402 goto release_con;
4e644fff
HZ
2403 }
2404
2e54fe5d 2405 if (adev->nbio.ras &&
2406 adev->nbio.ras->init_ras_err_event_athub_interrupt) {
2407 r = adev->nbio.ras->init_ras_err_event_athub_interrupt(adev);
4e644fff 2408 if (r)
5436ab94 2409 goto release_con;
4e644fff
HZ
2410 }
2411
e4348849 2412 /* Init poison supported flag, the default value is false */
655ff353
TZ
2413 if (adev->gmc.xgmi.connected_to_cpu) {
2414 /* enabled by default when GPU is connected to CPU */
2415 con->poison_supported = true;
2416 }
2417 else if (adev->df.funcs &&
e4348849 2418 adev->df.funcs->query_ras_poison_mode &&
efe17d5a 2419 adev->umc.ras &&
2420 adev->umc.ras->query_ras_poison_mode) {
e4348849
TZ
2421 df_poison =
2422 adev->df.funcs->query_ras_poison_mode(adev);
2423 umc_poison =
efe17d5a 2424 adev->umc.ras->query_ras_poison_mode(adev);
e4348849
TZ
2425 /* Only poison is set in both DF and UMC, we can support it */
2426 if (df_poison && umc_poison)
2427 con->poison_supported = true;
2428 else if (df_poison != umc_poison)
2429 dev_warn(adev->dev, "Poison setting is inconsistent in DF/UMC(%d:%d)!\n",
2430 df_poison, umc_poison);
2431 }
2432
5e91160a
GC
2433 if (amdgpu_ras_fs_init(adev)) {
2434 r = -EINVAL;
5436ab94 2435 goto release_con;
5e91160a 2436 }
c030f2e4 2437
6952e99c 2438 dev_info(adev->dev, "RAS INFO: ras initialized successfully, "
e509965e 2439 "hardware ability[%x] ras_mask[%x]\n",
8ab0d6f0 2440 adev->ras_hw_enabled, adev->ras_enabled);
e509965e 2441
c030f2e4 2442 return 0;
5436ab94 2443release_con:
c030f2e4 2444 amdgpu_ras_set_context(adev, NULL);
2445 kfree(con);
2446
5e91160a 2447 return r;
c030f2e4 2448}
2449
8f6368a9 2450int amdgpu_persistent_edc_harvesting_supported(struct amdgpu_device *adev)
134d16d5
JC
2451{
2452 if (adev->gmc.xgmi.connected_to_cpu)
2453 return 1;
2454 return 0;
2455}
2456
2457static int amdgpu_persistent_edc_harvesting(struct amdgpu_device *adev,
2458 struct ras_common_if *ras_block)
2459{
2460 struct ras_query_if info = {
2461 .head = *ras_block,
2462 };
2463
2464 if (!amdgpu_persistent_edc_harvesting_supported(adev))
2465 return 0;
2466
2467 if (amdgpu_ras_query_error_status(adev, &info) != 0)
2468 DRM_WARN("RAS init harvest failure");
2469
2470 if (amdgpu_ras_reset_error_status(adev, ras_block->block) != 0)
2471 DRM_WARN("RAS init harvest reset failure");
2472
2473 return 0;
2474}
2475
e4348849
TZ
2476bool amdgpu_ras_is_poison_mode_supported(struct amdgpu_device *adev)
2477{
2478 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2479
2480 if (!con)
2481 return false;
2482
2483 return con->poison_supported;
2484}
2485
b293e891 2486/* helper function to handle common stuff in ip late init phase */
563285c8 2487int amdgpu_ras_block_late_init(struct amdgpu_device *adev,
2488 struct ras_common_if *ras_block)
b293e891 2489{
29c9b6cd 2490 struct amdgpu_ras_block_object *ras_obj = NULL;
05adfd80
LT
2491 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2492 unsigned long ue_count, ce_count;
b293e891
HZ
2493 int r;
2494
2495 /* disable RAS feature per IP block if it is not supported */
2496 if (!amdgpu_ras_is_supported(adev, ras_block->block)) {
2497 amdgpu_ras_feature_enable_on_boot(adev, ras_block, 0);
2498 return 0;
2499 }
2500
2501 r = amdgpu_ras_feature_enable_on_boot(adev, ras_block, 1);
2502 if (r) {
9080a18f 2503 if (adev->in_suspend || amdgpu_in_reset(adev)) {
b293e891
HZ
2504 /* in resume phase, if fail to enable ras,
2505 * clean up all ras fs nodes, and disable ras */
2506 goto cleanup;
2507 } else
2508 return r;
2509 }
2510
134d16d5
JC
2511 /* check for errors on warm reset edc persisant supported ASIC */
2512 amdgpu_persistent_edc_harvesting(adev, ras_block);
2513
b293e891 2514 /* in resume phase, no need to create ras fs node */
53b3f8f4 2515 if (adev->in_suspend || amdgpu_in_reset(adev))
b293e891
HZ
2516 return 0;
2517
563285c8 2518 ras_obj = container_of(ras_block, struct amdgpu_ras_block_object, ras_comm);
2519 if (ras_obj->ras_cb) {
9252d33d 2520 r = amdgpu_ras_interrupt_add_handler(adev, ras_block);
b293e891 2521 if (r)
779596ce 2522 goto cleanup;
b293e891
HZ
2523 }
2524
9252d33d 2525 r = amdgpu_ras_sysfs_create(adev, ras_block);
b293e891 2526 if (r)
779596ce 2527 goto interrupt;
b293e891 2528
05adfd80
LT
2529 /* Those are the cached values at init.
2530 */
4d9f771e
LT
2531 if (amdgpu_ras_query_error_count(adev, &ce_count, &ue_count) == 0) {
2532 atomic_set(&con->ras_ce_count, ce_count);
2533 atomic_set(&con->ras_ue_count, ue_count);
2534 }
05adfd80 2535
b293e891 2536 return 0;
779596ce
TR
2537
2538interrupt:
563285c8 2539 if (ras_obj->ras_cb)
9252d33d 2540 amdgpu_ras_interrupt_remove_handler(adev, ras_block);
779596ce 2541cleanup:
b293e891
HZ
2542 amdgpu_ras_feature_enable(adev, ras_block, 0);
2543 return r;
2544}
2545
d41ff22a 2546static int amdgpu_ras_block_late_init_default(struct amdgpu_device *adev,
418abce2 2547 struct ras_common_if *ras_block)
2548{
2549 return amdgpu_ras_block_late_init(adev, ras_block);
2550}
2551
b293e891 2552/* helper function to remove ras fs node and interrupt handler */
bdb3489c 2553void amdgpu_ras_block_late_fini(struct amdgpu_device *adev,
2554 struct ras_common_if *ras_block)
2555{
563285c8 2556 struct amdgpu_ras_block_object *ras_obj;
bdb3489c 2557 if (!ras_block)
2558 return;
2559
563285c8 2560 amdgpu_ras_sysfs_remove(adev, ras_block);
bdb3489c 2561
563285c8 2562 ras_obj = container_of(ras_block, struct amdgpu_ras_block_object, ras_comm);
2563 if (ras_obj->ras_cb)
2564 amdgpu_ras_interrupt_remove_handler(adev, ras_block);
bdb3489c 2565}
2566
80e0c2cb 2567static void amdgpu_ras_block_late_fini_default(struct amdgpu_device *adev,
2568 struct ras_common_if *ras_block)
2569{
2570 return amdgpu_ras_block_late_fini(adev, ras_block);
2571}
2572
a564808e 2573/* do some init work after IP late init as dependence.
511fdbc3 2574 * and it runs in resume/gpu reset/booting up cases.
a564808e 2575 */
511fdbc3 2576void amdgpu_ras_resume(struct amdgpu_device *adev)
108c6a63 2577{
2578 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2579 struct ras_manager *obj, *tmp;
2580
8ab0d6f0 2581 if (!adev->ras_enabled || !con) {
970fd197
SY
2582 /* clean ras context for VEGA20 Gaming after send ras disable cmd */
2583 amdgpu_release_ras_context(adev);
2584
108c6a63 2585 return;
970fd197 2586 }
108c6a63 2587
108c6a63 2588 if (con->flags & AMDGPU_RAS_FLAG_INIT_BY_VBIOS) {
191051a1 2589 /* Set up all other IPs which are not implemented. There is a
2590 * tricky thing that IP's actual ras error type should be
2591 * MULTI_UNCORRECTABLE, but as driver does not handle it, so
2592 * ERROR_NONE make sense anyway.
2593 */
2594 amdgpu_ras_enable_all_features(adev, 1);
2595
2596 /* We enable ras on all hw_supported block, but as boot
2597 * parameter might disable some of them and one or more IP has
2598 * not implemented yet. So we disable them on behalf.
2599 */
108c6a63 2600 list_for_each_entry_safe(obj, tmp, &con->head, node) {
2601 if (!amdgpu_ras_is_supported(adev, obj->head.block)) {
2602 amdgpu_ras_feature_enable(adev, &obj->head, 0);
2603 /* there should be no any reference. */
2604 WARN_ON(alive_obj(obj));
2605 }
191051a1 2606 }
108c6a63 2607 }
2608}
2609
511fdbc3 2610void amdgpu_ras_suspend(struct amdgpu_device *adev)
2611{
2612 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2613
8ab0d6f0 2614 if (!adev->ras_enabled || !con)
511fdbc3 2615 return;
2616
2617 amdgpu_ras_disable_all_features(adev, 0);
2618 /* Make sure all ras objects are disabled. */
2619 if (con->features)
2620 amdgpu_ras_disable_all_features(adev, 1);
2621}
2622
867e24ca 2623int amdgpu_ras_late_init(struct amdgpu_device *adev)
2624{
2625 struct amdgpu_ras_block_list *node, *tmp;
2626 struct amdgpu_ras_block_object *obj;
2627 int r;
2628
2629 list_for_each_entry_safe(node, tmp, &adev->ras_list, node) {
2630 if (!node->ras_obj) {
2631 dev_warn(adev->dev, "Warning: abnormal ras list node.\n");
2632 continue;
2633 }
418abce2 2634
867e24ca 2635 obj = node->ras_obj;
2636 if (obj->ras_late_init) {
2637 r = obj->ras_late_init(adev, &obj->ras_comm);
2638 if (r) {
2639 dev_err(adev->dev, "%s failed to execute ras_late_init! ret:%d\n",
2640 obj->ras_comm.name, r);
2641 return r;
2642 }
418abce2 2643 } else
2644 amdgpu_ras_block_late_init_default(adev, &obj->ras_comm);
867e24ca 2645 }
2646
2647 return 0;
2648}
2649
c030f2e4 2650/* do some fini work before IP fini as dependence */
2651int amdgpu_ras_pre_fini(struct amdgpu_device *adev)
2652{
2653 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2654
8ab0d6f0 2655 if (!adev->ras_enabled || !con)
c030f2e4 2656 return 0;
2657
72c8c97b 2658
c030f2e4 2659 /* Need disable ras on all IPs here before ip [hw/sw]fini */
2660 amdgpu_ras_disable_all_features(adev, 0);
2661 amdgpu_ras_recovery_fini(adev);
2662 return 0;
2663}
2664
2665int amdgpu_ras_fini(struct amdgpu_device *adev)
2666{
d5e8ff5f 2667 struct amdgpu_ras_block_list *ras_node, *tmp;
1f211a82 2668 struct amdgpu_ras_block_object *obj = NULL;
c030f2e4 2669 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2670
8ab0d6f0 2671 if (!adev->ras_enabled || !con)
c030f2e4 2672 return 0;
2673
1f211a82 2674 list_for_each_entry_safe(ras_node, tmp, &adev->ras_list, node) {
2675 if (ras_node->ras_obj) {
2676 obj = ras_node->ras_obj;
2677 if (amdgpu_ras_is_supported(adev, obj->ras_comm.block) &&
2678 obj->ras_fini)
2679 obj->ras_fini(adev, &obj->ras_comm);
80e0c2cb 2680 else
2681 amdgpu_ras_block_late_fini_default(adev, &obj->ras_comm);
1f211a82 2682 }
2683
2684 /* Clear ras blocks from ras_list and free ras block list node */
2685 list_del(&ras_node->node);
2686 kfree(ras_node);
2687 }
2688
c030f2e4 2689 amdgpu_ras_fs_fini(adev);
2690 amdgpu_ras_interrupt_remove_all(adev);
2691
2692 WARN(con->features, "Feature mask is not cleared");
2693
2694 if (con->features)
2695 amdgpu_ras_disable_all_features(adev, 1);
2696
05adfd80
LT
2697 cancel_delayed_work_sync(&con->ras_counte_delay_work);
2698
c030f2e4 2699 amdgpu_ras_set_context(adev, NULL);
2700 kfree(con);
2701
2702 return 0;
2703}
7c6e68c7
AG
2704
2705void amdgpu_ras_global_ras_isr(struct amdgpu_device *adev)
2706{
e509965e 2707 amdgpu_ras_check_supported(adev);
8ab0d6f0 2708 if (!adev->ras_hw_enabled)
ed606f8a
AG
2709 return;
2710
7c6e68c7 2711 if (atomic_cmpxchg(&amdgpu_ras_in_intr, 0, 1) == 0) {
6952e99c
GC
2712 dev_info(adev->dev, "uncorrectable hardware error"
2713 "(ERREVENT_ATHUB_INTERRUPT) detected!\n");
d5ea093e 2714
61934624 2715 amdgpu_ras_reset_gpu(adev);
7c6e68c7
AG
2716 }
2717}
bb5c7235
WS
2718
2719bool amdgpu_ras_need_emergency_restart(struct amdgpu_device *adev)
2720{
2721 if (adev->asic_type == CHIP_VEGA20 &&
2722 adev->pm.fw_version <= 0x283400) {
2723 return !(amdgpu_asic_reset_method(adev) == AMD_RESET_METHOD_BACO) &&
2724 amdgpu_ras_intr_triggered();
2725 }
2726
2727 return false;
2728}
970fd197
SY
2729
2730void amdgpu_release_ras_context(struct amdgpu_device *adev)
2731{
2732 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2733
2734 if (!con)
2735 return;
2736
8ab0d6f0 2737 if (!adev->ras_enabled && con->features & BIT(AMDGPU_RAS_BLOCK__GFX)) {
970fd197
SY
2738 con->features &= ~BIT(AMDGPU_RAS_BLOCK__GFX);
2739 amdgpu_ras_set_context(adev, NULL);
2740 kfree(con);
2741 }
2742}
12b2cab7
MJ
2743
2744#ifdef CONFIG_X86_MCE_AMD
2745static struct amdgpu_device *find_adev(uint32_t node_id)
2746{
12b2cab7
MJ
2747 int i;
2748 struct amdgpu_device *adev = NULL;
2749
91a1a52d
MJ
2750 for (i = 0; i < mce_adev_list.num_gpu; i++) {
2751 adev = mce_adev_list.devs[i];
12b2cab7 2752
91a1a52d 2753 if (adev && adev->gmc.xgmi.connected_to_cpu &&
12b2cab7
MJ
2754 adev->gmc.xgmi.physical_node_id == node_id)
2755 break;
2756 adev = NULL;
2757 }
2758
12b2cab7
MJ
2759 return adev;
2760}
2761
2762#define GET_MCA_IPID_GPUID(m) (((m) >> 44) & 0xF)
2763#define GET_UMC_INST(m) (((m) >> 21) & 0x7)
2764#define GET_CHAN_INDEX(m) ((((m) >> 12) & 0x3) | (((m) >> 18) & 0x4))
2765#define GPU_ID_OFFSET 8
2766
2767static int amdgpu_bad_page_notifier(struct notifier_block *nb,
2768 unsigned long val, void *data)
2769{
2770 struct mce *m = (struct mce *)data;
2771 struct amdgpu_device *adev = NULL;
2772 uint32_t gpu_id = 0;
2773 uint32_t umc_inst = 0;
2774 uint32_t ch_inst, channel_index = 0;
2775 struct ras_err_data err_data = {0, 0, 0, NULL};
2776 struct eeprom_table_record err_rec;
2777 uint64_t retired_page;
2778
2779 /*
2780 * If the error was generated in UMC_V2, which belongs to GPU UMCs,
2781 * and error occurred in DramECC (Extended error code = 0) then only
2782 * process the error, else bail out.
2783 */
91f75eb4 2784 if (!m || !((smca_get_bank_type(m->extcpu, m->bank) == SMCA_UMC_V2) &&
12b2cab7
MJ
2785 (XEC(m->status, 0x3f) == 0x0)))
2786 return NOTIFY_DONE;
2787
2788 /*
2789 * If it is correctable error, return.
2790 */
2791 if (mce_is_correctable(m))
2792 return NOTIFY_OK;
2793
2794 /*
2795 * GPU Id is offset by GPU_ID_OFFSET in MCA_IPID_UMC register.
2796 */
2797 gpu_id = GET_MCA_IPID_GPUID(m->ipid) - GPU_ID_OFFSET;
2798
2799 adev = find_adev(gpu_id);
2800 if (!adev) {
2801 DRM_WARN("%s: Unable to find adev for gpu_id: %d\n", __func__,
2802 gpu_id);
2803 return NOTIFY_DONE;
2804 }
2805
2806 /*
2807 * If it is uncorrectable error, then find out UMC instance and
2808 * channel index.
2809 */
2810 umc_inst = GET_UMC_INST(m->ipid);
2811 ch_inst = GET_CHAN_INDEX(m->ipid);
2812
2813 dev_info(adev->dev, "Uncorrectable error detected in UMC inst: %d, chan_idx: %d",
2814 umc_inst, ch_inst);
2815
12b2cab7
MJ
2816 /*
2817 * Translate UMC channel address to Physical address
2818 */
2819 channel_index =
2820 adev->umc.channel_idx_tbl[umc_inst * adev->umc.channel_inst_num
2821 + ch_inst];
2822
2823 retired_page = ADDR_OF_8KB_BLOCK(m->addr) |
2824 ADDR_OF_256B_BLOCK(channel_index) |
2825 OFFSET_IN_256B_BLOCK(m->addr);
2826
400013b2 2827 memset(&err_rec, 0x0, sizeof(struct eeprom_table_record));
12b2cab7 2828 err_data.err_addr = &err_rec;
400013b2
TZ
2829 amdgpu_umc_fill_error_record(&err_data, m->addr,
2830 retired_page, channel_index, umc_inst);
12b2cab7
MJ
2831
2832 if (amdgpu_bad_page_threshold != 0) {
2833 amdgpu_ras_add_bad_pages(adev, err_data.err_addr,
2834 err_data.err_addr_cnt);
2835 amdgpu_ras_save_bad_pages(adev);
2836 }
2837
2838 return NOTIFY_OK;
2839}
2840
2841static struct notifier_block amdgpu_bad_page_nb = {
2842 .notifier_call = amdgpu_bad_page_notifier,
2843 .priority = MCE_PRIO_UC,
2844};
2845
91a1a52d 2846static void amdgpu_register_bad_pages_mca_notifier(struct amdgpu_device *adev)
12b2cab7 2847{
91a1a52d
MJ
2848 /*
2849 * Add the adev to the mce_adev_list.
2850 * During mode2 reset, amdgpu device is temporarily
2851 * removed from the mgpu_info list which can cause
2852 * page retirement to fail.
2853 * Use this list instead of mgpu_info to find the amdgpu
2854 * device on which the UMC error was reported.
2855 */
2856 mce_adev_list.devs[mce_adev_list.num_gpu++] = adev;
2857
12b2cab7
MJ
2858 /*
2859 * Register the x86 notifier only once
2860 * with MCE subsystem.
2861 */
2862 if (notifier_registered == false) {
2863 mce_register_decode_chain(&amdgpu_bad_page_nb);
2864 notifier_registered = true;
2865 }
2866}
2867#endif
7cab2124 2868
b6efdb02 2869struct amdgpu_ras *amdgpu_ras_get_context(struct amdgpu_device *adev)
7cab2124 2870{
2871 if (!adev)
2872 return NULL;
2873
2874 return adev->psp.ras_context.ras;
2875}
2876
b6efdb02 2877int amdgpu_ras_set_context(struct amdgpu_device *adev, struct amdgpu_ras *ras_con)
7cab2124 2878{
2879 if (!adev)
69f91d32 2880 return -EINVAL;
7cab2124 2881
2882 adev->psp.ras_context.ras = ras_con;
2883 return 0;
2884}
2885
2886/* check if ras is supported on block, say, sdma, gfx */
2887int amdgpu_ras_is_supported(struct amdgpu_device *adev,
2888 unsigned int block)
2889{
2890 struct amdgpu_ras *ras = amdgpu_ras_get_context(adev);
2891
2892 if (block >= AMDGPU_RAS_BLOCK_COUNT)
2893 return 0;
2894 return ras && (adev->ras_enabled & (1 << block));
2895}
2896
2897int amdgpu_ras_reset_gpu(struct amdgpu_device *adev)
2898{
2899 struct amdgpu_ras *ras = amdgpu_ras_get_context(adev);
2900
2901 if (atomic_cmpxchg(&ras->in_recovery, 0, 1) == 0)
2902 schedule_work(&ras->recovery_work);
2903 return 0;
2904}
2905
2906
6492e1b0 2907/* Register each ip ras block into amdgpu ras */
2908int amdgpu_ras_register_ras_block(struct amdgpu_device *adev,
b6efdb02 2909 struct amdgpu_ras_block_object *ras_block_obj)
6492e1b0 2910{
d5e8ff5f 2911 struct amdgpu_ras_block_list *ras_node;
6492e1b0 2912 if (!adev || !ras_block_obj)
2913 return -EINVAL;
2914
df01fe73 2915 if (!amdgpu_ras_asic_supported(adev))
2916 return 0;
2917
d5e8ff5f 2918 ras_node = kzalloc(sizeof(*ras_node), GFP_KERNEL);
2919 if (!ras_node)
2920 return -ENOMEM;
2921
2922 INIT_LIST_HEAD(&ras_node->node);
2923 ras_node->ras_obj = ras_block_obj;
2924 list_add_tail(&ras_node->node, &adev->ras_list);
6492e1b0 2925
2926 return 0;
2927}