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