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