xref: /linux/drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c (revision ed807f0cbfed8d7877bc5a1879330e579f095afa)
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 (obj->adev->ip_versions[MP0_HWIP][0] != IP_VERSION(11, 0, 2) &&
205 	    obj->adev->ip_versions[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 (obj->adev->ip_versions[MP0_HWIP][0] != IP_VERSION(11, 0, 2) &&
615 	    obj->adev->ip_versions[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 = 0;
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 		goto out;
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 			goto out;
806 		}
807 	}
808 
809 	/* setup the obj */
810 	__amdgpu_ras_feature_enable(adev, head, enable);
811 out:
812 	if (head->block == AMDGPU_RAS_BLOCK__GFX)
813 		kfree(info);
814 	return ret;
815 }
816 
817 /* Only used in device probe stage and called only once. */
818 int amdgpu_ras_feature_enable_on_boot(struct amdgpu_device *adev,
819 		struct ras_common_if *head, bool enable)
820 {
821 	struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
822 	int ret;
823 
824 	if (!con)
825 		return -EINVAL;
826 
827 	if (con->flags & AMDGPU_RAS_FLAG_INIT_BY_VBIOS) {
828 		if (enable) {
829 			/* There is no harm to issue a ras TA cmd regardless of
830 			 * the currecnt ras state.
831 			 * If current state == target state, it will do nothing
832 			 * But sometimes it requests driver to reset and repost
833 			 * with error code -EAGAIN.
834 			 */
835 			ret = amdgpu_ras_feature_enable(adev, head, 1);
836 			/* With old ras TA, we might fail to enable ras.
837 			 * Log it and just setup the object.
838 			 * TODO need remove this WA in the future.
839 			 */
840 			if (ret == -EINVAL) {
841 				ret = __amdgpu_ras_feature_enable(adev, head, 1);
842 				if (!ret)
843 					dev_info(adev->dev,
844 						"RAS INFO: %s setup object\n",
845 						get_ras_block_str(head));
846 			}
847 		} else {
848 			/* setup the object then issue a ras TA disable cmd.*/
849 			ret = __amdgpu_ras_feature_enable(adev, head, 1);
850 			if (ret)
851 				return ret;
852 
853 			/* gfx block ras dsiable cmd must send to ras-ta */
854 			if (head->block == AMDGPU_RAS_BLOCK__GFX)
855 				con->features |= BIT(head->block);
856 
857 			ret = amdgpu_ras_feature_enable(adev, head, 0);
858 
859 			/* clean gfx block ras features flag */
860 			if (adev->ras_enabled && head->block == AMDGPU_RAS_BLOCK__GFX)
861 				con->features &= ~BIT(head->block);
862 		}
863 	} else
864 		ret = amdgpu_ras_feature_enable(adev, head, enable);
865 
866 	return ret;
867 }
868 
869 static int amdgpu_ras_disable_all_features(struct amdgpu_device *adev,
870 		bool bypass)
871 {
872 	struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
873 	struct ras_manager *obj, *tmp;
874 
875 	list_for_each_entry_safe(obj, tmp, &con->head, node) {
876 		/* bypass psp.
877 		 * aka just release the obj and corresponding flags
878 		 */
879 		if (bypass) {
880 			if (__amdgpu_ras_feature_enable(adev, &obj->head, 0))
881 				break;
882 		} else {
883 			if (amdgpu_ras_feature_enable(adev, &obj->head, 0))
884 				break;
885 		}
886 	}
887 
888 	return con->features;
889 }
890 
891 static int amdgpu_ras_enable_all_features(struct amdgpu_device *adev,
892 		bool bypass)
893 {
894 	struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
895 	int i;
896 	const enum amdgpu_ras_error_type default_ras_type = AMDGPU_RAS_ERROR__NONE;
897 
898 	for (i = 0; i < AMDGPU_RAS_BLOCK_COUNT; i++) {
899 		struct ras_common_if head = {
900 			.block = i,
901 			.type = default_ras_type,
902 			.sub_block_index = 0,
903 		};
904 
905 		if (i == AMDGPU_RAS_BLOCK__MCA)
906 			continue;
907 
908 		if (bypass) {
909 			/*
910 			 * bypass psp. vbios enable ras for us.
911 			 * so just create the obj
912 			 */
913 			if (__amdgpu_ras_feature_enable(adev, &head, 1))
914 				break;
915 		} else {
916 			if (amdgpu_ras_feature_enable(adev, &head, 1))
917 				break;
918 		}
919 	}
920 
921 	for (i = 0; i < AMDGPU_RAS_MCA_BLOCK_COUNT; i++) {
922 		struct ras_common_if head = {
923 			.block = AMDGPU_RAS_BLOCK__MCA,
924 			.type = default_ras_type,
925 			.sub_block_index = i,
926 		};
927 
928 		if (bypass) {
929 			/*
930 			 * bypass psp. vbios enable ras for us.
931 			 * so just create the obj
932 			 */
933 			if (__amdgpu_ras_feature_enable(adev, &head, 1))
934 				break;
935 		} else {
936 			if (amdgpu_ras_feature_enable(adev, &head, 1))
937 				break;
938 		}
939 	}
940 
941 	return con->features;
942 }
943 /* feature ctl end */
944 
945 static int amdgpu_ras_block_match_default(struct amdgpu_ras_block_object *block_obj,
946 		enum amdgpu_ras_block block)
947 {
948 	if (!block_obj)
949 		return -EINVAL;
950 
951 	if (block_obj->ras_comm.block == block)
952 		return 0;
953 
954 	return -EINVAL;
955 }
956 
957 static struct amdgpu_ras_block_object *amdgpu_ras_get_ras_block(struct amdgpu_device *adev,
958 					enum amdgpu_ras_block block, uint32_t sub_block_index)
959 {
960 	struct amdgpu_ras_block_list *node, *tmp;
961 	struct amdgpu_ras_block_object *obj;
962 
963 	if (block >= AMDGPU_RAS_BLOCK__LAST)
964 		return NULL;
965 
966 	list_for_each_entry_safe(node, tmp, &adev->ras_list, node) {
967 		if (!node->ras_obj) {
968 			dev_warn(adev->dev, "Warning: abnormal ras list node.\n");
969 			continue;
970 		}
971 
972 		obj = node->ras_obj;
973 		if (obj->ras_block_match) {
974 			if (obj->ras_block_match(obj, block, sub_block_index) == 0)
975 				return obj;
976 		} else {
977 			if (amdgpu_ras_block_match_default(obj, block) == 0)
978 				return obj;
979 		}
980 	}
981 
982 	return NULL;
983 }
984 
985 static void amdgpu_ras_get_ecc_info(struct amdgpu_device *adev, struct ras_err_data *err_data)
986 {
987 	struct amdgpu_ras *ras = amdgpu_ras_get_context(adev);
988 	int ret = 0;
989 
990 	/*
991 	 * choosing right query method according to
992 	 * whether smu support query error information
993 	 */
994 	ret = amdgpu_dpm_get_ecc_info(adev, (void *)&(ras->umc_ecc));
995 	if (ret == -EOPNOTSUPP) {
996 		if (adev->umc.ras && adev->umc.ras->ras_block.hw_ops &&
997 			adev->umc.ras->ras_block.hw_ops->query_ras_error_count)
998 			adev->umc.ras->ras_block.hw_ops->query_ras_error_count(adev, err_data);
999 
1000 		/* umc query_ras_error_address is also responsible for clearing
1001 		 * error status
1002 		 */
1003 		if (adev->umc.ras && adev->umc.ras->ras_block.hw_ops &&
1004 		    adev->umc.ras->ras_block.hw_ops->query_ras_error_address)
1005 			adev->umc.ras->ras_block.hw_ops->query_ras_error_address(adev, err_data);
1006 	} else if (!ret) {
1007 		if (adev->umc.ras &&
1008 			adev->umc.ras->ecc_info_query_ras_error_count)
1009 			adev->umc.ras->ecc_info_query_ras_error_count(adev, err_data);
1010 
1011 		if (adev->umc.ras &&
1012 			adev->umc.ras->ecc_info_query_ras_error_address)
1013 			adev->umc.ras->ecc_info_query_ras_error_address(adev, err_data);
1014 	}
1015 }
1016 
1017 /* query/inject/cure begin */
1018 int amdgpu_ras_query_error_status(struct amdgpu_device *adev,
1019 				  struct ras_query_if *info)
1020 {
1021 	struct amdgpu_ras_block_object *block_obj = NULL;
1022 	struct ras_manager *obj = amdgpu_ras_find_obj(adev, &info->head);
1023 	struct ras_err_data err_data = {0, 0, 0, NULL};
1024 
1025 	if (!obj)
1026 		return -EINVAL;
1027 
1028 	if (info->head.block == AMDGPU_RAS_BLOCK__UMC) {
1029 		amdgpu_ras_get_ecc_info(adev, &err_data);
1030 	} else {
1031 		block_obj = amdgpu_ras_get_ras_block(adev, info->head.block, 0);
1032 		if (!block_obj || !block_obj->hw_ops)   {
1033 			dev_dbg_once(adev->dev, "%s doesn't config RAS function\n",
1034 				     get_ras_block_str(&info->head));
1035 			return -EINVAL;
1036 		}
1037 
1038 		if (block_obj->hw_ops->query_ras_error_count)
1039 			block_obj->hw_ops->query_ras_error_count(adev, &err_data);
1040 
1041 		if ((info->head.block == AMDGPU_RAS_BLOCK__SDMA) ||
1042 		    (info->head.block == AMDGPU_RAS_BLOCK__GFX) ||
1043 		    (info->head.block == AMDGPU_RAS_BLOCK__MMHUB)) {
1044 				if (block_obj->hw_ops->query_ras_error_status)
1045 					block_obj->hw_ops->query_ras_error_status(adev);
1046 			}
1047 	}
1048 
1049 	obj->err_data.ue_count += err_data.ue_count;
1050 	obj->err_data.ce_count += err_data.ce_count;
1051 
1052 	info->ue_count = obj->err_data.ue_count;
1053 	info->ce_count = obj->err_data.ce_count;
1054 
1055 	if (err_data.ce_count) {
1056 		if (adev->smuio.funcs &&
1057 		    adev->smuio.funcs->get_socket_id &&
1058 		    adev->smuio.funcs->get_die_id) {
1059 			dev_info(adev->dev, "socket: %d, die: %d "
1060 					"%ld correctable hardware errors "
1061 					"detected in %s block, no user "
1062 					"action is needed.\n",
1063 					adev->smuio.funcs->get_socket_id(adev),
1064 					adev->smuio.funcs->get_die_id(adev),
1065 					obj->err_data.ce_count,
1066 					get_ras_block_str(&info->head));
1067 		} else {
1068 			dev_info(adev->dev, "%ld correctable hardware errors "
1069 					"detected in %s block, no user "
1070 					"action is needed.\n",
1071 					obj->err_data.ce_count,
1072 					get_ras_block_str(&info->head));
1073 		}
1074 	}
1075 	if (err_data.ue_count) {
1076 		if (adev->smuio.funcs &&
1077 		    adev->smuio.funcs->get_socket_id &&
1078 		    adev->smuio.funcs->get_die_id) {
1079 			dev_info(adev->dev, "socket: %d, die: %d "
1080 					"%ld uncorrectable hardware errors "
1081 					"detected in %s block\n",
1082 					adev->smuio.funcs->get_socket_id(adev),
1083 					adev->smuio.funcs->get_die_id(adev),
1084 					obj->err_data.ue_count,
1085 					get_ras_block_str(&info->head));
1086 		} else {
1087 			dev_info(adev->dev, "%ld uncorrectable hardware errors "
1088 					"detected in %s block\n",
1089 					obj->err_data.ue_count,
1090 					get_ras_block_str(&info->head));
1091 		}
1092 	}
1093 
1094 	return 0;
1095 }
1096 
1097 int amdgpu_ras_reset_error_status(struct amdgpu_device *adev,
1098 		enum amdgpu_ras_block block)
1099 {
1100 	struct amdgpu_ras_block_object *block_obj = amdgpu_ras_get_ras_block(adev, block, 0);
1101 
1102 	if (!amdgpu_ras_is_supported(adev, block))
1103 		return -EINVAL;
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 -EINVAL;
1109 	}
1110 
1111 	if (block_obj->hw_ops->reset_ras_error_count)
1112 		block_obj->hw_ops->reset_ras_error_count(adev);
1113 
1114 	if ((block == AMDGPU_RAS_BLOCK__GFX) ||
1115 	    (block == AMDGPU_RAS_BLOCK__MMHUB)) {
1116 		if (block_obj->hw_ops->reset_ras_error_status)
1117 			block_obj->hw_ops->reset_ras_error_status(adev);
1118 	}
1119 
1120 	return 0;
1121 }
1122 
1123 /* wrapper of psp_ras_trigger_error */
1124 int amdgpu_ras_error_inject(struct amdgpu_device *adev,
1125 		struct ras_inject_if *info)
1126 {
1127 	struct ras_manager *obj = amdgpu_ras_find_obj(adev, &info->head);
1128 	struct ta_ras_trigger_error_input block_info = {
1129 		.block_id =  amdgpu_ras_block_to_ta(info->head.block),
1130 		.inject_error_type = amdgpu_ras_error_to_ta(info->head.type),
1131 		.sub_block_index = info->head.sub_block_index,
1132 		.address = info->address,
1133 		.value = info->value,
1134 	};
1135 	int ret = -EINVAL;
1136 	struct amdgpu_ras_block_object *block_obj = amdgpu_ras_get_ras_block(adev,
1137 							info->head.block,
1138 							info->head.sub_block_index);
1139 
1140 	/* inject on guest isn't allowed, return success directly */
1141 	if (amdgpu_sriov_vf(adev))
1142 		return 0;
1143 
1144 	if (!obj)
1145 		return -EINVAL;
1146 
1147 	if (!block_obj || !block_obj->hw_ops)	{
1148 		dev_dbg_once(adev->dev, "%s doesn't config RAS function\n",
1149 			     get_ras_block_str(&info->head));
1150 		return -EINVAL;
1151 	}
1152 
1153 	/* Calculate XGMI relative offset */
1154 	if (adev->gmc.xgmi.num_physical_nodes > 1 &&
1155 	    info->head.block != AMDGPU_RAS_BLOCK__GFX) {
1156 		block_info.address =
1157 			amdgpu_xgmi_get_relative_phy_addr(adev,
1158 							  block_info.address);
1159 	}
1160 
1161 	if (block_obj->hw_ops->ras_error_inject) {
1162 		if (info->head.block == AMDGPU_RAS_BLOCK__GFX)
1163 			ret = block_obj->hw_ops->ras_error_inject(adev, info, info->instance_mask);
1164 		else /* Special ras_error_inject is defined (e.g: xgmi) */
1165 			ret = block_obj->hw_ops->ras_error_inject(adev, &block_info,
1166 						info->instance_mask);
1167 	} else {
1168 		/* default path */
1169 		ret = psp_ras_trigger_error(&adev->psp, &block_info, info->instance_mask);
1170 	}
1171 
1172 	if (ret)
1173 		dev_err(adev->dev, "ras inject %s failed %d\n",
1174 			get_ras_block_str(&info->head), ret);
1175 
1176 	return ret;
1177 }
1178 
1179 /**
1180  * amdgpu_ras_query_error_count_helper -- Get error counter for specific IP
1181  * @adev: pointer to AMD GPU device
1182  * @ce_count: pointer to an integer to be set to the count of correctible errors.
1183  * @ue_count: pointer to an integer to be set to the count of uncorrectible errors.
1184  * @query_info: pointer to ras_query_if
1185  *
1186  * Return 0 for query success or do nothing, otherwise return an error
1187  * on failures
1188  */
1189 static int amdgpu_ras_query_error_count_helper(struct amdgpu_device *adev,
1190 					       unsigned long *ce_count,
1191 					       unsigned long *ue_count,
1192 					       struct ras_query_if *query_info)
1193 {
1194 	int ret;
1195 
1196 	if (!query_info)
1197 		/* do nothing if query_info is not specified */
1198 		return 0;
1199 
1200 	ret = amdgpu_ras_query_error_status(adev, query_info);
1201 	if (ret)
1202 		return ret;
1203 
1204 	*ce_count += query_info->ce_count;
1205 	*ue_count += query_info->ue_count;
1206 
1207 	/* some hardware/IP supports read to clear
1208 	 * no need to explictly reset the err status after the query call */
1209 	if (adev->ip_versions[MP0_HWIP][0] != IP_VERSION(11, 0, 2) &&
1210 	    adev->ip_versions[MP0_HWIP][0] != IP_VERSION(11, 0, 4)) {
1211 		if (amdgpu_ras_reset_error_status(adev, query_info->head.block))
1212 			dev_warn(adev->dev,
1213 				 "Failed to reset error counter and error status\n");
1214 	}
1215 
1216 	return 0;
1217 }
1218 
1219 /**
1220  * amdgpu_ras_query_error_count -- Get error counts of all IPs or specific IP
1221  * @adev: pointer to AMD GPU device
1222  * @ce_count: pointer to an integer to be set to the count of correctible errors.
1223  * @ue_count: pointer to an integer to be set to the count of uncorrectible
1224  * errors.
1225  * @query_info: pointer to ras_query_if if the query request is only for
1226  * specific ip block; if info is NULL, then the qurey request is for
1227  * all the ip blocks that support query ras error counters/status
1228  *
1229  * If set, @ce_count or @ue_count, count and return the corresponding
1230  * error counts in those integer pointers. Return 0 if the device
1231  * supports RAS. Return -EOPNOTSUPP if the device doesn't support RAS.
1232  */
1233 int amdgpu_ras_query_error_count(struct amdgpu_device *adev,
1234 				 unsigned long *ce_count,
1235 				 unsigned long *ue_count,
1236 				 struct ras_query_if *query_info)
1237 {
1238 	struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1239 	struct ras_manager *obj;
1240 	unsigned long ce, ue;
1241 	int ret;
1242 
1243 	if (!adev->ras_enabled || !con)
1244 		return -EOPNOTSUPP;
1245 
1246 	/* Don't count since no reporting.
1247 	 */
1248 	if (!ce_count && !ue_count)
1249 		return 0;
1250 
1251 	ce = 0;
1252 	ue = 0;
1253 	if (!query_info) {
1254 		/* query all the ip blocks that support ras query interface */
1255 		list_for_each_entry(obj, &con->head, node) {
1256 			struct ras_query_if info = {
1257 				.head = obj->head,
1258 			};
1259 
1260 			ret = amdgpu_ras_query_error_count_helper(adev, &ce, &ue, &info);
1261 		}
1262 	} else {
1263 		/* query specific ip block */
1264 		ret = amdgpu_ras_query_error_count_helper(adev, &ce, &ue, query_info);
1265 	}
1266 
1267 	if (ret)
1268 		return ret;
1269 
1270 	if (ce_count)
1271 		*ce_count = ce;
1272 
1273 	if (ue_count)
1274 		*ue_count = ue;
1275 
1276 	return 0;
1277 }
1278 /* query/inject/cure end */
1279 
1280 
1281 /* sysfs begin */
1282 
1283 static int amdgpu_ras_badpages_read(struct amdgpu_device *adev,
1284 		struct ras_badpage **bps, unsigned int *count);
1285 
1286 static char *amdgpu_ras_badpage_flags_str(unsigned int flags)
1287 {
1288 	switch (flags) {
1289 	case AMDGPU_RAS_RETIRE_PAGE_RESERVED:
1290 		return "R";
1291 	case AMDGPU_RAS_RETIRE_PAGE_PENDING:
1292 		return "P";
1293 	case AMDGPU_RAS_RETIRE_PAGE_FAULT:
1294 	default:
1295 		return "F";
1296 	}
1297 }
1298 
1299 /**
1300  * DOC: AMDGPU RAS sysfs gpu_vram_bad_pages Interface
1301  *
1302  * It allows user to read the bad pages of vram on the gpu through
1303  * /sys/class/drm/card[0/1/2...]/device/ras/gpu_vram_bad_pages
1304  *
1305  * It outputs multiple lines, and each line stands for one gpu page.
1306  *
1307  * The format of one line is below,
1308  * gpu pfn : gpu page size : flags
1309  *
1310  * gpu pfn and gpu page size are printed in hex format.
1311  * flags can be one of below character,
1312  *
1313  * R: reserved, this gpu page is reserved and not able to use.
1314  *
1315  * P: pending for reserve, this gpu page is marked as bad, will be reserved
1316  * in next window of page_reserve.
1317  *
1318  * F: unable to reserve. this gpu page can't be reserved due to some reasons.
1319  *
1320  * Examples:
1321  *
1322  * .. code-block:: bash
1323  *
1324  *	0x00000001 : 0x00001000 : R
1325  *	0x00000002 : 0x00001000 : P
1326  *
1327  */
1328 
1329 static ssize_t amdgpu_ras_sysfs_badpages_read(struct file *f,
1330 		struct kobject *kobj, struct bin_attribute *attr,
1331 		char *buf, loff_t ppos, size_t count)
1332 {
1333 	struct amdgpu_ras *con =
1334 		container_of(attr, struct amdgpu_ras, badpages_attr);
1335 	struct amdgpu_device *adev = con->adev;
1336 	const unsigned int element_size =
1337 		sizeof("0xabcdabcd : 0x12345678 : R\n") - 1;
1338 	unsigned int start = div64_ul(ppos + element_size - 1, element_size);
1339 	unsigned int end = div64_ul(ppos + count - 1, element_size);
1340 	ssize_t s = 0;
1341 	struct ras_badpage *bps = NULL;
1342 	unsigned int bps_count = 0;
1343 
1344 	memset(buf, 0, count);
1345 
1346 	if (amdgpu_ras_badpages_read(adev, &bps, &bps_count))
1347 		return 0;
1348 
1349 	for (; start < end && start < bps_count; start++)
1350 		s += scnprintf(&buf[s], element_size + 1,
1351 				"0x%08x : 0x%08x : %1s\n",
1352 				bps[start].bp,
1353 				bps[start].size,
1354 				amdgpu_ras_badpage_flags_str(bps[start].flags));
1355 
1356 	kfree(bps);
1357 
1358 	return s;
1359 }
1360 
1361 static ssize_t amdgpu_ras_sysfs_features_read(struct device *dev,
1362 		struct device_attribute *attr, char *buf)
1363 {
1364 	struct amdgpu_ras *con =
1365 		container_of(attr, struct amdgpu_ras, features_attr);
1366 
1367 	return sysfs_emit(buf, "feature mask: 0x%x\n", con->features);
1368 }
1369 
1370 static void amdgpu_ras_sysfs_remove_bad_page_node(struct amdgpu_device *adev)
1371 {
1372 	struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1373 
1374 	sysfs_remove_file_from_group(&adev->dev->kobj,
1375 				&con->badpages_attr.attr,
1376 				RAS_FS_NAME);
1377 }
1378 
1379 static int amdgpu_ras_sysfs_remove_feature_node(struct amdgpu_device *adev)
1380 {
1381 	struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1382 	struct attribute *attrs[] = {
1383 		&con->features_attr.attr,
1384 		NULL
1385 	};
1386 	struct attribute_group group = {
1387 		.name = RAS_FS_NAME,
1388 		.attrs = attrs,
1389 	};
1390 
1391 	sysfs_remove_group(&adev->dev->kobj, &group);
1392 
1393 	return 0;
1394 }
1395 
1396 int amdgpu_ras_sysfs_create(struct amdgpu_device *adev,
1397 		struct ras_common_if *head)
1398 {
1399 	struct ras_manager *obj = amdgpu_ras_find_obj(adev, head);
1400 
1401 	if (!obj || obj->attr_inuse)
1402 		return -EINVAL;
1403 
1404 	get_obj(obj);
1405 
1406 	snprintf(obj->fs_data.sysfs_name, sizeof(obj->fs_data.sysfs_name),
1407 		"%s_err_count", head->name);
1408 
1409 	obj->sysfs_attr = (struct device_attribute){
1410 		.attr = {
1411 			.name = obj->fs_data.sysfs_name,
1412 			.mode = S_IRUGO,
1413 		},
1414 			.show = amdgpu_ras_sysfs_read,
1415 	};
1416 	sysfs_attr_init(&obj->sysfs_attr.attr);
1417 
1418 	if (sysfs_add_file_to_group(&adev->dev->kobj,
1419 				&obj->sysfs_attr.attr,
1420 				RAS_FS_NAME)) {
1421 		put_obj(obj);
1422 		return -EINVAL;
1423 	}
1424 
1425 	obj->attr_inuse = 1;
1426 
1427 	return 0;
1428 }
1429 
1430 int amdgpu_ras_sysfs_remove(struct amdgpu_device *adev,
1431 		struct ras_common_if *head)
1432 {
1433 	struct ras_manager *obj = amdgpu_ras_find_obj(adev, head);
1434 
1435 	if (!obj || !obj->attr_inuse)
1436 		return -EINVAL;
1437 
1438 	sysfs_remove_file_from_group(&adev->dev->kobj,
1439 				&obj->sysfs_attr.attr,
1440 				RAS_FS_NAME);
1441 	obj->attr_inuse = 0;
1442 	put_obj(obj);
1443 
1444 	return 0;
1445 }
1446 
1447 static int amdgpu_ras_sysfs_remove_all(struct amdgpu_device *adev)
1448 {
1449 	struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1450 	struct ras_manager *obj, *tmp;
1451 
1452 	list_for_each_entry_safe(obj, tmp, &con->head, node) {
1453 		amdgpu_ras_sysfs_remove(adev, &obj->head);
1454 	}
1455 
1456 	if (amdgpu_bad_page_threshold != 0)
1457 		amdgpu_ras_sysfs_remove_bad_page_node(adev);
1458 
1459 	amdgpu_ras_sysfs_remove_feature_node(adev);
1460 
1461 	return 0;
1462 }
1463 /* sysfs end */
1464 
1465 /**
1466  * DOC: AMDGPU RAS Reboot Behavior for Unrecoverable Errors
1467  *
1468  * Normally when there is an uncorrectable error, the driver will reset
1469  * the GPU to recover.  However, in the event of an unrecoverable error,
1470  * the driver provides an interface to reboot the system automatically
1471  * in that event.
1472  *
1473  * The following file in debugfs provides that interface:
1474  * /sys/kernel/debug/dri/[0/1/2...]/ras/auto_reboot
1475  *
1476  * Usage:
1477  *
1478  * .. code-block:: bash
1479  *
1480  *	echo true > .../ras/auto_reboot
1481  *
1482  */
1483 /* debugfs begin */
1484 static struct dentry *amdgpu_ras_debugfs_create_ctrl_node(struct amdgpu_device *adev)
1485 {
1486 	struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1487 	struct amdgpu_ras_eeprom_control *eeprom = &con->eeprom_control;
1488 	struct drm_minor  *minor = adev_to_drm(adev)->primary;
1489 	struct dentry     *dir;
1490 
1491 	dir = debugfs_create_dir(RAS_FS_NAME, minor->debugfs_root);
1492 	debugfs_create_file("ras_ctrl", S_IWUGO | S_IRUGO, dir, adev,
1493 			    &amdgpu_ras_debugfs_ctrl_ops);
1494 	debugfs_create_file("ras_eeprom_reset", S_IWUGO | S_IRUGO, dir, adev,
1495 			    &amdgpu_ras_debugfs_eeprom_ops);
1496 	debugfs_create_u32("bad_page_cnt_threshold", 0444, dir,
1497 			   &con->bad_page_cnt_threshold);
1498 	debugfs_create_u32("ras_num_recs", 0444, dir, &eeprom->ras_num_recs);
1499 	debugfs_create_x32("ras_hw_enabled", 0444, dir, &adev->ras_hw_enabled);
1500 	debugfs_create_x32("ras_enabled", 0444, dir, &adev->ras_enabled);
1501 	debugfs_create_file("ras_eeprom_size", S_IRUGO, dir, adev,
1502 			    &amdgpu_ras_debugfs_eeprom_size_ops);
1503 	con->de_ras_eeprom_table = debugfs_create_file("ras_eeprom_table",
1504 						       S_IRUGO, dir, adev,
1505 						       &amdgpu_ras_debugfs_eeprom_table_ops);
1506 	amdgpu_ras_debugfs_set_ret_size(&con->eeprom_control);
1507 
1508 	/*
1509 	 * After one uncorrectable error happens, usually GPU recovery will
1510 	 * be scheduled. But due to the known problem in GPU recovery failing
1511 	 * to bring GPU back, below interface provides one direct way to
1512 	 * user to reboot system automatically in such case within
1513 	 * ERREVENT_ATHUB_INTERRUPT generated. Normal GPU recovery routine
1514 	 * will never be called.
1515 	 */
1516 	debugfs_create_bool("auto_reboot", S_IWUGO | S_IRUGO, dir, &con->reboot);
1517 
1518 	/*
1519 	 * User could set this not to clean up hardware's error count register
1520 	 * of RAS IPs during ras recovery.
1521 	 */
1522 	debugfs_create_bool("disable_ras_err_cnt_harvest", 0644, dir,
1523 			    &con->disable_ras_err_cnt_harvest);
1524 	return dir;
1525 }
1526 
1527 static void amdgpu_ras_debugfs_create(struct amdgpu_device *adev,
1528 				      struct ras_fs_if *head,
1529 				      struct dentry *dir)
1530 {
1531 	struct ras_manager *obj = amdgpu_ras_find_obj(adev, &head->head);
1532 
1533 	if (!obj || !dir)
1534 		return;
1535 
1536 	get_obj(obj);
1537 
1538 	memcpy(obj->fs_data.debugfs_name,
1539 			head->debugfs_name,
1540 			sizeof(obj->fs_data.debugfs_name));
1541 
1542 	debugfs_create_file(obj->fs_data.debugfs_name, S_IWUGO | S_IRUGO, dir,
1543 			    obj, &amdgpu_ras_debugfs_ops);
1544 }
1545 
1546 void amdgpu_ras_debugfs_create_all(struct amdgpu_device *adev)
1547 {
1548 	struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1549 	struct dentry *dir;
1550 	struct ras_manager *obj;
1551 	struct ras_fs_if fs_info;
1552 
1553 	/*
1554 	 * it won't be called in resume path, no need to check
1555 	 * suspend and gpu reset status
1556 	 */
1557 	if (!IS_ENABLED(CONFIG_DEBUG_FS) || !con)
1558 		return;
1559 
1560 	dir = amdgpu_ras_debugfs_create_ctrl_node(adev);
1561 
1562 	list_for_each_entry(obj, &con->head, node) {
1563 		if (amdgpu_ras_is_supported(adev, obj->head.block) &&
1564 			(obj->attr_inuse == 1)) {
1565 			sprintf(fs_info.debugfs_name, "%s_err_inject",
1566 					get_ras_block_str(&obj->head));
1567 			fs_info.head = obj->head;
1568 			amdgpu_ras_debugfs_create(adev, &fs_info, dir);
1569 		}
1570 	}
1571 }
1572 
1573 /* debugfs end */
1574 
1575 /* ras fs */
1576 static BIN_ATTR(gpu_vram_bad_pages, S_IRUGO,
1577 		amdgpu_ras_sysfs_badpages_read, NULL, 0);
1578 static DEVICE_ATTR(features, S_IRUGO,
1579 		amdgpu_ras_sysfs_features_read, NULL);
1580 static int amdgpu_ras_fs_init(struct amdgpu_device *adev)
1581 {
1582 	struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1583 	struct attribute_group group = {
1584 		.name = RAS_FS_NAME,
1585 	};
1586 	struct attribute *attrs[] = {
1587 		&con->features_attr.attr,
1588 		NULL
1589 	};
1590 	struct bin_attribute *bin_attrs[] = {
1591 		NULL,
1592 		NULL,
1593 	};
1594 	int r;
1595 
1596 	/* add features entry */
1597 	con->features_attr = dev_attr_features;
1598 	group.attrs = attrs;
1599 	sysfs_attr_init(attrs[0]);
1600 
1601 	if (amdgpu_bad_page_threshold != 0) {
1602 		/* add bad_page_features entry */
1603 		bin_attr_gpu_vram_bad_pages.private = NULL;
1604 		con->badpages_attr = bin_attr_gpu_vram_bad_pages;
1605 		bin_attrs[0] = &con->badpages_attr;
1606 		group.bin_attrs = bin_attrs;
1607 		sysfs_bin_attr_init(bin_attrs[0]);
1608 	}
1609 
1610 	r = sysfs_create_group(&adev->dev->kobj, &group);
1611 	if (r)
1612 		dev_err(adev->dev, "Failed to create RAS sysfs group!");
1613 
1614 	return 0;
1615 }
1616 
1617 static int amdgpu_ras_fs_fini(struct amdgpu_device *adev)
1618 {
1619 	struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1620 	struct ras_manager *con_obj, *ip_obj, *tmp;
1621 
1622 	if (IS_ENABLED(CONFIG_DEBUG_FS)) {
1623 		list_for_each_entry_safe(con_obj, tmp, &con->head, node) {
1624 			ip_obj = amdgpu_ras_find_obj(adev, &con_obj->head);
1625 			if (ip_obj)
1626 				put_obj(ip_obj);
1627 		}
1628 	}
1629 
1630 	amdgpu_ras_sysfs_remove_all(adev);
1631 	return 0;
1632 }
1633 /* ras fs end */
1634 
1635 /* ih begin */
1636 
1637 /* For the hardware that cannot enable bif ring for both ras_controller_irq
1638  * and ras_err_evnet_athub_irq ih cookies, the driver has to poll status
1639  * register to check whether the interrupt is triggered or not, and properly
1640  * ack the interrupt if it is there
1641  */
1642 void amdgpu_ras_interrupt_fatal_error_handler(struct amdgpu_device *adev)
1643 {
1644 	/* Fatal error events are handled on host side */
1645 	if (amdgpu_sriov_vf(adev))
1646 		return;
1647 
1648 	if (adev->nbio.ras &&
1649 	    adev->nbio.ras->handle_ras_controller_intr_no_bifring)
1650 		adev->nbio.ras->handle_ras_controller_intr_no_bifring(adev);
1651 
1652 	if (adev->nbio.ras &&
1653 	    adev->nbio.ras->handle_ras_err_event_athub_intr_no_bifring)
1654 		adev->nbio.ras->handle_ras_err_event_athub_intr_no_bifring(adev);
1655 }
1656 
1657 static void amdgpu_ras_interrupt_poison_consumption_handler(struct ras_manager *obj,
1658 				struct amdgpu_iv_entry *entry)
1659 {
1660 	bool poison_stat = false;
1661 	struct amdgpu_device *adev = obj->adev;
1662 	struct amdgpu_ras_block_object *block_obj =
1663 		amdgpu_ras_get_ras_block(adev, obj->head.block, 0);
1664 
1665 	if (!block_obj)
1666 		return;
1667 
1668 	/* both query_poison_status and handle_poison_consumption are optional,
1669 	 * but at least one of them should be implemented if we need poison
1670 	 * consumption handler
1671 	 */
1672 	if (block_obj->hw_ops && block_obj->hw_ops->query_poison_status) {
1673 		poison_stat = block_obj->hw_ops->query_poison_status(adev);
1674 		if (!poison_stat) {
1675 			/* Not poison consumption interrupt, no need to handle it */
1676 			dev_info(adev->dev, "No RAS poison status in %s poison IH.\n",
1677 					block_obj->ras_comm.name);
1678 
1679 			return;
1680 		}
1681 	}
1682 
1683 	amdgpu_umc_poison_handler(adev, false);
1684 
1685 	if (block_obj->hw_ops && block_obj->hw_ops->handle_poison_consumption)
1686 		poison_stat = block_obj->hw_ops->handle_poison_consumption(adev);
1687 
1688 	/* gpu reset is fallback for failed and default cases */
1689 	if (poison_stat) {
1690 		dev_info(adev->dev, "GPU reset for %s RAS poison consumption is issued!\n",
1691 				block_obj->ras_comm.name);
1692 		amdgpu_ras_reset_gpu(adev);
1693 	} else {
1694 		amdgpu_gfx_poison_consumption_handler(adev, entry);
1695 	}
1696 }
1697 
1698 static void amdgpu_ras_interrupt_poison_creation_handler(struct ras_manager *obj,
1699 				struct amdgpu_iv_entry *entry)
1700 {
1701 	dev_info(obj->adev->dev,
1702 		"Poison is created, no user action is needed.\n");
1703 }
1704 
1705 static void amdgpu_ras_interrupt_umc_handler(struct ras_manager *obj,
1706 				struct amdgpu_iv_entry *entry)
1707 {
1708 	struct ras_ih_data *data = &obj->ih_data;
1709 	struct ras_err_data err_data = {0, 0, 0, NULL};
1710 	int ret;
1711 
1712 	if (!data->cb)
1713 		return;
1714 
1715 	/* Let IP handle its data, maybe we need get the output
1716 	 * from the callback to update the error type/count, etc
1717 	 */
1718 	ret = data->cb(obj->adev, &err_data, entry);
1719 	/* ue will trigger an interrupt, and in that case
1720 	 * we need do a reset to recovery the whole system.
1721 	 * But leave IP do that recovery, here we just dispatch
1722 	 * the error.
1723 	 */
1724 	if (ret == AMDGPU_RAS_SUCCESS) {
1725 		/* these counts could be left as 0 if
1726 		 * some blocks do not count error number
1727 		 */
1728 		obj->err_data.ue_count += err_data.ue_count;
1729 		obj->err_data.ce_count += err_data.ce_count;
1730 	}
1731 }
1732 
1733 static void amdgpu_ras_interrupt_handler(struct ras_manager *obj)
1734 {
1735 	struct ras_ih_data *data = &obj->ih_data;
1736 	struct amdgpu_iv_entry entry;
1737 
1738 	while (data->rptr != data->wptr) {
1739 		rmb();
1740 		memcpy(&entry, &data->ring[data->rptr],
1741 				data->element_size);
1742 
1743 		wmb();
1744 		data->rptr = (data->aligned_element_size +
1745 				data->rptr) % data->ring_size;
1746 
1747 		if (amdgpu_ras_is_poison_mode_supported(obj->adev)) {
1748 			if (obj->head.block == AMDGPU_RAS_BLOCK__UMC)
1749 				amdgpu_ras_interrupt_poison_creation_handler(obj, &entry);
1750 			else
1751 				amdgpu_ras_interrupt_poison_consumption_handler(obj, &entry);
1752 		} else {
1753 			if (obj->head.block == AMDGPU_RAS_BLOCK__UMC)
1754 				amdgpu_ras_interrupt_umc_handler(obj, &entry);
1755 			else
1756 				dev_warn(obj->adev->dev,
1757 					"No RAS interrupt handler for non-UMC block with poison disabled.\n");
1758 		}
1759 	}
1760 }
1761 
1762 static void amdgpu_ras_interrupt_process_handler(struct work_struct *work)
1763 {
1764 	struct ras_ih_data *data =
1765 		container_of(work, struct ras_ih_data, ih_work);
1766 	struct ras_manager *obj =
1767 		container_of(data, struct ras_manager, ih_data);
1768 
1769 	amdgpu_ras_interrupt_handler(obj);
1770 }
1771 
1772 int amdgpu_ras_interrupt_dispatch(struct amdgpu_device *adev,
1773 		struct ras_dispatch_if *info)
1774 {
1775 	struct ras_manager *obj = amdgpu_ras_find_obj(adev, &info->head);
1776 	struct ras_ih_data *data = &obj->ih_data;
1777 
1778 	if (!obj)
1779 		return -EINVAL;
1780 
1781 	if (data->inuse == 0)
1782 		return 0;
1783 
1784 	/* Might be overflow... */
1785 	memcpy(&data->ring[data->wptr], info->entry,
1786 			data->element_size);
1787 
1788 	wmb();
1789 	data->wptr = (data->aligned_element_size +
1790 			data->wptr) % data->ring_size;
1791 
1792 	schedule_work(&data->ih_work);
1793 
1794 	return 0;
1795 }
1796 
1797 int amdgpu_ras_interrupt_remove_handler(struct amdgpu_device *adev,
1798 		struct ras_common_if *head)
1799 {
1800 	struct ras_manager *obj = amdgpu_ras_find_obj(adev, head);
1801 	struct ras_ih_data *data;
1802 
1803 	if (!obj)
1804 		return -EINVAL;
1805 
1806 	data = &obj->ih_data;
1807 	if (data->inuse == 0)
1808 		return 0;
1809 
1810 	cancel_work_sync(&data->ih_work);
1811 
1812 	kfree(data->ring);
1813 	memset(data, 0, sizeof(*data));
1814 	put_obj(obj);
1815 
1816 	return 0;
1817 }
1818 
1819 int amdgpu_ras_interrupt_add_handler(struct amdgpu_device *adev,
1820 		struct ras_common_if *head)
1821 {
1822 	struct ras_manager *obj = amdgpu_ras_find_obj(adev, head);
1823 	struct ras_ih_data *data;
1824 	struct amdgpu_ras_block_object *ras_obj;
1825 
1826 	if (!obj) {
1827 		/* in case we registe the IH before enable ras feature */
1828 		obj = amdgpu_ras_create_obj(adev, head);
1829 		if (!obj)
1830 			return -EINVAL;
1831 	} else
1832 		get_obj(obj);
1833 
1834 	ras_obj = container_of(head, struct amdgpu_ras_block_object, ras_comm);
1835 
1836 	data = &obj->ih_data;
1837 	/* add the callback.etc */
1838 	*data = (struct ras_ih_data) {
1839 		.inuse = 0,
1840 		.cb = ras_obj->ras_cb,
1841 		.element_size = sizeof(struct amdgpu_iv_entry),
1842 		.rptr = 0,
1843 		.wptr = 0,
1844 	};
1845 
1846 	INIT_WORK(&data->ih_work, amdgpu_ras_interrupt_process_handler);
1847 
1848 	data->aligned_element_size = ALIGN(data->element_size, 8);
1849 	/* the ring can store 64 iv entries. */
1850 	data->ring_size = 64 * data->aligned_element_size;
1851 	data->ring = kmalloc(data->ring_size, GFP_KERNEL);
1852 	if (!data->ring) {
1853 		put_obj(obj);
1854 		return -ENOMEM;
1855 	}
1856 
1857 	/* IH is ready */
1858 	data->inuse = 1;
1859 
1860 	return 0;
1861 }
1862 
1863 static int amdgpu_ras_interrupt_remove_all(struct amdgpu_device *adev)
1864 {
1865 	struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1866 	struct ras_manager *obj, *tmp;
1867 
1868 	list_for_each_entry_safe(obj, tmp, &con->head, node) {
1869 		amdgpu_ras_interrupt_remove_handler(adev, &obj->head);
1870 	}
1871 
1872 	return 0;
1873 }
1874 /* ih end */
1875 
1876 /* traversal all IPs except NBIO to query error counter */
1877 static void amdgpu_ras_log_on_err_counter(struct amdgpu_device *adev)
1878 {
1879 	struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1880 	struct ras_manager *obj;
1881 
1882 	if (!adev->ras_enabled || !con)
1883 		return;
1884 
1885 	list_for_each_entry(obj, &con->head, node) {
1886 		struct ras_query_if info = {
1887 			.head = obj->head,
1888 		};
1889 
1890 		/*
1891 		 * PCIE_BIF IP has one different isr by ras controller
1892 		 * interrupt, the specific ras counter query will be
1893 		 * done in that isr. So skip such block from common
1894 		 * sync flood interrupt isr calling.
1895 		 */
1896 		if (info.head.block == AMDGPU_RAS_BLOCK__PCIE_BIF)
1897 			continue;
1898 
1899 		/*
1900 		 * this is a workaround for aldebaran, skip send msg to
1901 		 * smu to get ecc_info table due to smu handle get ecc
1902 		 * info table failed temporarily.
1903 		 * should be removed until smu fix handle ecc_info table.
1904 		 */
1905 		if ((info.head.block == AMDGPU_RAS_BLOCK__UMC) &&
1906 			(adev->ip_versions[MP1_HWIP][0] == IP_VERSION(13, 0, 2)))
1907 			continue;
1908 
1909 		amdgpu_ras_query_error_status(adev, &info);
1910 
1911 		if (adev->ip_versions[MP0_HWIP][0] != IP_VERSION(11, 0, 2) &&
1912 		    adev->ip_versions[MP0_HWIP][0] != IP_VERSION(11, 0, 4) &&
1913 		    adev->ip_versions[MP0_HWIP][0] != IP_VERSION(13, 0, 0)) {
1914 			if (amdgpu_ras_reset_error_status(adev, info.head.block))
1915 				dev_warn(adev->dev, "Failed to reset error counter and error status");
1916 		}
1917 	}
1918 }
1919 
1920 /* Parse RdRspStatus and WrRspStatus */
1921 static void amdgpu_ras_error_status_query(struct amdgpu_device *adev,
1922 					  struct ras_query_if *info)
1923 {
1924 	struct amdgpu_ras_block_object *block_obj;
1925 	/*
1926 	 * Only two block need to query read/write
1927 	 * RspStatus at current state
1928 	 */
1929 	if ((info->head.block != AMDGPU_RAS_BLOCK__GFX) &&
1930 		(info->head.block != AMDGPU_RAS_BLOCK__MMHUB))
1931 		return;
1932 
1933 	block_obj = amdgpu_ras_get_ras_block(adev,
1934 					info->head.block,
1935 					info->head.sub_block_index);
1936 
1937 	if (!block_obj || !block_obj->hw_ops) {
1938 		dev_dbg_once(adev->dev, "%s doesn't config RAS function\n",
1939 			     get_ras_block_str(&info->head));
1940 		return;
1941 	}
1942 
1943 	if (block_obj->hw_ops->query_ras_error_status)
1944 		block_obj->hw_ops->query_ras_error_status(adev);
1945 
1946 }
1947 
1948 static void amdgpu_ras_query_err_status(struct amdgpu_device *adev)
1949 {
1950 	struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1951 	struct ras_manager *obj;
1952 
1953 	if (!adev->ras_enabled || !con)
1954 		return;
1955 
1956 	list_for_each_entry(obj, &con->head, node) {
1957 		struct ras_query_if info = {
1958 			.head = obj->head,
1959 		};
1960 
1961 		amdgpu_ras_error_status_query(adev, &info);
1962 	}
1963 }
1964 
1965 /* recovery begin */
1966 
1967 /* return 0 on success.
1968  * caller need free bps.
1969  */
1970 static int amdgpu_ras_badpages_read(struct amdgpu_device *adev,
1971 		struct ras_badpage **bps, unsigned int *count)
1972 {
1973 	struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1974 	struct ras_err_handler_data *data;
1975 	int i = 0;
1976 	int ret = 0, status;
1977 
1978 	if (!con || !con->eh_data || !bps || !count)
1979 		return -EINVAL;
1980 
1981 	mutex_lock(&con->recovery_lock);
1982 	data = con->eh_data;
1983 	if (!data || data->count == 0) {
1984 		*bps = NULL;
1985 		ret = -EINVAL;
1986 		goto out;
1987 	}
1988 
1989 	*bps = kmalloc(sizeof(struct ras_badpage) * data->count, GFP_KERNEL);
1990 	if (!*bps) {
1991 		ret = -ENOMEM;
1992 		goto out;
1993 	}
1994 
1995 	for (; i < data->count; i++) {
1996 		(*bps)[i] = (struct ras_badpage){
1997 			.bp = data->bps[i].retired_page,
1998 			.size = AMDGPU_GPU_PAGE_SIZE,
1999 			.flags = AMDGPU_RAS_RETIRE_PAGE_RESERVED,
2000 		};
2001 		status = amdgpu_vram_mgr_query_page_status(&adev->mman.vram_mgr,
2002 				data->bps[i].retired_page);
2003 		if (status == -EBUSY)
2004 			(*bps)[i].flags = AMDGPU_RAS_RETIRE_PAGE_PENDING;
2005 		else if (status == -ENOENT)
2006 			(*bps)[i].flags = AMDGPU_RAS_RETIRE_PAGE_FAULT;
2007 	}
2008 
2009 	*count = data->count;
2010 out:
2011 	mutex_unlock(&con->recovery_lock);
2012 	return ret;
2013 }
2014 
2015 static void amdgpu_ras_do_recovery(struct work_struct *work)
2016 {
2017 	struct amdgpu_ras *ras =
2018 		container_of(work, struct amdgpu_ras, recovery_work);
2019 	struct amdgpu_device *remote_adev = NULL;
2020 	struct amdgpu_device *adev = ras->adev;
2021 	struct list_head device_list, *device_list_handle =  NULL;
2022 
2023 	if (!ras->disable_ras_err_cnt_harvest) {
2024 		struct amdgpu_hive_info *hive = amdgpu_get_xgmi_hive(adev);
2025 
2026 		/* Build list of devices to query RAS related errors */
2027 		if  (hive && adev->gmc.xgmi.num_physical_nodes > 1) {
2028 			device_list_handle = &hive->device_list;
2029 		} else {
2030 			INIT_LIST_HEAD(&device_list);
2031 			list_add_tail(&adev->gmc.xgmi.head, &device_list);
2032 			device_list_handle = &device_list;
2033 		}
2034 
2035 		list_for_each_entry(remote_adev,
2036 				device_list_handle, gmc.xgmi.head) {
2037 			amdgpu_ras_query_err_status(remote_adev);
2038 			amdgpu_ras_log_on_err_counter(remote_adev);
2039 		}
2040 
2041 		amdgpu_put_xgmi_hive(hive);
2042 	}
2043 
2044 	if (amdgpu_device_should_recover_gpu(ras->adev)) {
2045 		struct amdgpu_reset_context reset_context;
2046 		memset(&reset_context, 0, sizeof(reset_context));
2047 
2048 		reset_context.method = AMD_RESET_METHOD_NONE;
2049 		reset_context.reset_req_dev = adev;
2050 
2051 		/* Perform full reset in fatal error mode */
2052 		if (!amdgpu_ras_is_poison_mode_supported(ras->adev))
2053 			set_bit(AMDGPU_NEED_FULL_RESET, &reset_context.flags);
2054 		else {
2055 			clear_bit(AMDGPU_NEED_FULL_RESET, &reset_context.flags);
2056 
2057 			if (ras->gpu_reset_flags & AMDGPU_RAS_GPU_RESET_MODE2_RESET) {
2058 				ras->gpu_reset_flags &= ~AMDGPU_RAS_GPU_RESET_MODE2_RESET;
2059 				reset_context.method = AMD_RESET_METHOD_MODE2;
2060 			}
2061 
2062 			/* Fatal error occurs in poison mode, mode1 reset is used to
2063 			 * recover gpu.
2064 			 */
2065 			if (ras->gpu_reset_flags & AMDGPU_RAS_GPU_RESET_MODE1_RESET) {
2066 				ras->gpu_reset_flags &= ~AMDGPU_RAS_GPU_RESET_MODE1_RESET;
2067 				set_bit(AMDGPU_NEED_FULL_RESET, &reset_context.flags);
2068 
2069 				psp_fatal_error_recovery_quirk(&adev->psp);
2070 			}
2071 		}
2072 
2073 		amdgpu_device_gpu_recover(ras->adev, NULL, &reset_context);
2074 	}
2075 	atomic_set(&ras->in_recovery, 0);
2076 }
2077 
2078 /* alloc/realloc bps array */
2079 static int amdgpu_ras_realloc_eh_data_space(struct amdgpu_device *adev,
2080 		struct ras_err_handler_data *data, int pages)
2081 {
2082 	unsigned int old_space = data->count + data->space_left;
2083 	unsigned int new_space = old_space + pages;
2084 	unsigned int align_space = ALIGN(new_space, 512);
2085 	void *bps = kmalloc(align_space * sizeof(*data->bps), GFP_KERNEL);
2086 
2087 	if (!bps) {
2088 		return -ENOMEM;
2089 	}
2090 
2091 	if (data->bps) {
2092 		memcpy(bps, data->bps,
2093 				data->count * sizeof(*data->bps));
2094 		kfree(data->bps);
2095 	}
2096 
2097 	data->bps = bps;
2098 	data->space_left += align_space - old_space;
2099 	return 0;
2100 }
2101 
2102 /* it deal with vram only. */
2103 int amdgpu_ras_add_bad_pages(struct amdgpu_device *adev,
2104 		struct eeprom_table_record *bps, int pages)
2105 {
2106 	struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2107 	struct ras_err_handler_data *data;
2108 	int ret = 0;
2109 	uint32_t i;
2110 
2111 	if (!con || !con->eh_data || !bps || pages <= 0)
2112 		return 0;
2113 
2114 	mutex_lock(&con->recovery_lock);
2115 	data = con->eh_data;
2116 	if (!data)
2117 		goto out;
2118 
2119 	for (i = 0; i < pages; i++) {
2120 		if (amdgpu_ras_check_bad_page_unlock(con,
2121 			bps[i].retired_page << AMDGPU_GPU_PAGE_SHIFT))
2122 			continue;
2123 
2124 		if (!data->space_left &&
2125 			amdgpu_ras_realloc_eh_data_space(adev, data, 256)) {
2126 			ret = -ENOMEM;
2127 			goto out;
2128 		}
2129 
2130 		amdgpu_vram_mgr_reserve_range(&adev->mman.vram_mgr,
2131 			bps[i].retired_page << AMDGPU_GPU_PAGE_SHIFT,
2132 			AMDGPU_GPU_PAGE_SIZE);
2133 
2134 		memcpy(&data->bps[data->count], &bps[i], sizeof(*data->bps));
2135 		data->count++;
2136 		data->space_left--;
2137 	}
2138 out:
2139 	mutex_unlock(&con->recovery_lock);
2140 
2141 	return ret;
2142 }
2143 
2144 /*
2145  * write error record array to eeprom, the function should be
2146  * protected by recovery_lock
2147  * new_cnt: new added UE count, excluding reserved bad pages, can be NULL
2148  */
2149 int amdgpu_ras_save_bad_pages(struct amdgpu_device *adev,
2150 		unsigned long *new_cnt)
2151 {
2152 	struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2153 	struct ras_err_handler_data *data;
2154 	struct amdgpu_ras_eeprom_control *control;
2155 	int save_count;
2156 
2157 	if (!con || !con->eh_data) {
2158 		if (new_cnt)
2159 			*new_cnt = 0;
2160 
2161 		return 0;
2162 	}
2163 
2164 	mutex_lock(&con->recovery_lock);
2165 	control = &con->eeprom_control;
2166 	data = con->eh_data;
2167 	save_count = data->count - control->ras_num_recs;
2168 	mutex_unlock(&con->recovery_lock);
2169 
2170 	if (new_cnt)
2171 		*new_cnt = save_count / adev->umc.retire_unit;
2172 
2173 	/* only new entries are saved */
2174 	if (save_count > 0) {
2175 		if (amdgpu_ras_eeprom_append(control,
2176 					     &data->bps[control->ras_num_recs],
2177 					     save_count)) {
2178 			dev_err(adev->dev, "Failed to save EEPROM table data!");
2179 			return -EIO;
2180 		}
2181 
2182 		dev_info(adev->dev, "Saved %d pages to EEPROM table.\n", save_count);
2183 	}
2184 
2185 	return 0;
2186 }
2187 
2188 /*
2189  * read error record array in eeprom and reserve enough space for
2190  * storing new bad pages
2191  */
2192 static int amdgpu_ras_load_bad_pages(struct amdgpu_device *adev)
2193 {
2194 	struct amdgpu_ras_eeprom_control *control =
2195 		&adev->psp.ras_context.ras->eeprom_control;
2196 	struct eeprom_table_record *bps;
2197 	int ret;
2198 
2199 	/* no bad page record, skip eeprom access */
2200 	if (control->ras_num_recs == 0 || amdgpu_bad_page_threshold == 0)
2201 		return 0;
2202 
2203 	bps = kcalloc(control->ras_num_recs, sizeof(*bps), GFP_KERNEL);
2204 	if (!bps)
2205 		return -ENOMEM;
2206 
2207 	ret = amdgpu_ras_eeprom_read(control, bps, control->ras_num_recs);
2208 	if (ret)
2209 		dev_err(adev->dev, "Failed to load EEPROM table records!");
2210 	else
2211 		ret = amdgpu_ras_add_bad_pages(adev, bps, control->ras_num_recs);
2212 
2213 	kfree(bps);
2214 	return ret;
2215 }
2216 
2217 static bool amdgpu_ras_check_bad_page_unlock(struct amdgpu_ras *con,
2218 				uint64_t addr)
2219 {
2220 	struct ras_err_handler_data *data = con->eh_data;
2221 	int i;
2222 
2223 	addr >>= AMDGPU_GPU_PAGE_SHIFT;
2224 	for (i = 0; i < data->count; i++)
2225 		if (addr == data->bps[i].retired_page)
2226 			return true;
2227 
2228 	return false;
2229 }
2230 
2231 /*
2232  * check if an address belongs to bad page
2233  *
2234  * Note: this check is only for umc block
2235  */
2236 static bool amdgpu_ras_check_bad_page(struct amdgpu_device *adev,
2237 				uint64_t addr)
2238 {
2239 	struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2240 	bool ret = false;
2241 
2242 	if (!con || !con->eh_data)
2243 		return ret;
2244 
2245 	mutex_lock(&con->recovery_lock);
2246 	ret = amdgpu_ras_check_bad_page_unlock(con, addr);
2247 	mutex_unlock(&con->recovery_lock);
2248 	return ret;
2249 }
2250 
2251 static void amdgpu_ras_validate_threshold(struct amdgpu_device *adev,
2252 					  uint32_t max_count)
2253 {
2254 	struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2255 
2256 	/*
2257 	 * Justification of value bad_page_cnt_threshold in ras structure
2258 	 *
2259 	 * Generally, 0 <= amdgpu_bad_page_threshold <= max record length
2260 	 * in eeprom or amdgpu_bad_page_threshold == -2, introduce two
2261 	 * scenarios accordingly.
2262 	 *
2263 	 * Bad page retirement enablement:
2264 	 *    - If amdgpu_bad_page_threshold = -2,
2265 	 *      bad_page_cnt_threshold = typical value by formula.
2266 	 *
2267 	 *    - When the value from user is 0 < amdgpu_bad_page_threshold <
2268 	 *      max record length in eeprom, use it directly.
2269 	 *
2270 	 * Bad page retirement disablement:
2271 	 *    - If amdgpu_bad_page_threshold = 0, bad page retirement
2272 	 *      functionality is disabled, and bad_page_cnt_threshold will
2273 	 *      take no effect.
2274 	 */
2275 
2276 	if (amdgpu_bad_page_threshold < 0) {
2277 		u64 val = adev->gmc.mc_vram_size;
2278 
2279 		do_div(val, RAS_BAD_PAGE_COVER);
2280 		con->bad_page_cnt_threshold = min(lower_32_bits(val),
2281 						  max_count);
2282 	} else {
2283 		con->bad_page_cnt_threshold = min_t(int, max_count,
2284 						    amdgpu_bad_page_threshold);
2285 	}
2286 }
2287 
2288 int amdgpu_ras_recovery_init(struct amdgpu_device *adev)
2289 {
2290 	struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2291 	struct ras_err_handler_data **data;
2292 	u32  max_eeprom_records_count = 0;
2293 	bool exc_err_limit = false;
2294 	int ret;
2295 
2296 	if (!con || amdgpu_sriov_vf(adev))
2297 		return 0;
2298 
2299 	/* Allow access to RAS EEPROM via debugfs, when the ASIC
2300 	 * supports RAS and debugfs is enabled, but when
2301 	 * adev->ras_enabled is unset, i.e. when "ras_enable"
2302 	 * module parameter is set to 0.
2303 	 */
2304 	con->adev = adev;
2305 
2306 	if (!adev->ras_enabled)
2307 		return 0;
2308 
2309 	data = &con->eh_data;
2310 	*data = kmalloc(sizeof(**data), GFP_KERNEL | __GFP_ZERO);
2311 	if (!*data) {
2312 		ret = -ENOMEM;
2313 		goto out;
2314 	}
2315 
2316 	mutex_init(&con->recovery_lock);
2317 	INIT_WORK(&con->recovery_work, amdgpu_ras_do_recovery);
2318 	atomic_set(&con->in_recovery, 0);
2319 	con->eeprom_control.bad_channel_bitmap = 0;
2320 
2321 	max_eeprom_records_count = amdgpu_ras_eeprom_max_record_count(&con->eeprom_control);
2322 	amdgpu_ras_validate_threshold(adev, max_eeprom_records_count);
2323 
2324 	/* Todo: During test the SMU might fail to read the eeprom through I2C
2325 	 * when the GPU is pending on XGMI reset during probe time
2326 	 * (Mostly after second bus reset), skip it now
2327 	 */
2328 	if (adev->gmc.xgmi.pending_reset)
2329 		return 0;
2330 	ret = amdgpu_ras_eeprom_init(&con->eeprom_control, &exc_err_limit);
2331 	/*
2332 	 * This calling fails when exc_err_limit is true or
2333 	 * ret != 0.
2334 	 */
2335 	if (exc_err_limit || ret)
2336 		goto free;
2337 
2338 	if (con->eeprom_control.ras_num_recs) {
2339 		ret = amdgpu_ras_load_bad_pages(adev);
2340 		if (ret)
2341 			goto free;
2342 
2343 		amdgpu_dpm_send_hbm_bad_pages_num(adev, con->eeprom_control.ras_num_recs);
2344 
2345 		if (con->update_channel_flag == true) {
2346 			amdgpu_dpm_send_hbm_bad_channel_flag(adev, con->eeprom_control.bad_channel_bitmap);
2347 			con->update_channel_flag = false;
2348 		}
2349 	}
2350 
2351 #ifdef CONFIG_X86_MCE_AMD
2352 	if ((adev->asic_type == CHIP_ALDEBARAN) &&
2353 	    (adev->gmc.xgmi.connected_to_cpu))
2354 		amdgpu_register_bad_pages_mca_notifier(adev);
2355 #endif
2356 	return 0;
2357 
2358 free:
2359 	kfree((*data)->bps);
2360 	kfree(*data);
2361 	con->eh_data = NULL;
2362 out:
2363 	dev_warn(adev->dev, "Failed to initialize ras recovery! (%d)\n", ret);
2364 
2365 	/*
2366 	 * Except error threshold exceeding case, other failure cases in this
2367 	 * function would not fail amdgpu driver init.
2368 	 */
2369 	if (!exc_err_limit)
2370 		ret = 0;
2371 	else
2372 		ret = -EINVAL;
2373 
2374 	return ret;
2375 }
2376 
2377 static int amdgpu_ras_recovery_fini(struct amdgpu_device *adev)
2378 {
2379 	struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2380 	struct ras_err_handler_data *data = con->eh_data;
2381 
2382 	/* recovery_init failed to init it, fini is useless */
2383 	if (!data)
2384 		return 0;
2385 
2386 	cancel_work_sync(&con->recovery_work);
2387 
2388 	mutex_lock(&con->recovery_lock);
2389 	con->eh_data = NULL;
2390 	kfree(data->bps);
2391 	kfree(data);
2392 	mutex_unlock(&con->recovery_lock);
2393 
2394 	return 0;
2395 }
2396 /* recovery end */
2397 
2398 static bool amdgpu_ras_asic_supported(struct amdgpu_device *adev)
2399 {
2400 	if (amdgpu_sriov_vf(adev)) {
2401 		switch (adev->ip_versions[MP0_HWIP][0]) {
2402 		case IP_VERSION(13, 0, 2):
2403 		case IP_VERSION(13, 0, 6):
2404 			return true;
2405 		default:
2406 			return false;
2407 		}
2408 	}
2409 
2410 	if (adev->asic_type == CHIP_IP_DISCOVERY) {
2411 		switch (adev->ip_versions[MP0_HWIP][0]) {
2412 		case IP_VERSION(13, 0, 0):
2413 		case IP_VERSION(13, 0, 6):
2414 		case IP_VERSION(13, 0, 10):
2415 			return true;
2416 		default:
2417 			return false;
2418 		}
2419 	}
2420 
2421 	return adev->asic_type == CHIP_VEGA10 ||
2422 		adev->asic_type == CHIP_VEGA20 ||
2423 		adev->asic_type == CHIP_ARCTURUS ||
2424 		adev->asic_type == CHIP_ALDEBARAN ||
2425 		adev->asic_type == CHIP_SIENNA_CICHLID;
2426 }
2427 
2428 /*
2429  * this is workaround for vega20 workstation sku,
2430  * force enable gfx ras, ignore vbios gfx ras flag
2431  * due to GC EDC can not write
2432  */
2433 static void amdgpu_ras_get_quirks(struct amdgpu_device *adev)
2434 {
2435 	struct atom_context *ctx = adev->mode_info.atom_context;
2436 
2437 	if (!ctx)
2438 		return;
2439 
2440 	if (strnstr(ctx->vbios_pn, "D16406",
2441 		    sizeof(ctx->vbios_pn)) ||
2442 		strnstr(ctx->vbios_pn, "D36002",
2443 			sizeof(ctx->vbios_pn)))
2444 		adev->ras_hw_enabled |= (1 << AMDGPU_RAS_BLOCK__GFX);
2445 }
2446 
2447 /*
2448  * check hardware's ras ability which will be saved in hw_supported.
2449  * if hardware does not support ras, we can skip some ras initializtion and
2450  * forbid some ras operations from IP.
2451  * if software itself, say boot parameter, limit the ras ability. We still
2452  * need allow IP do some limited operations, like disable. In such case,
2453  * we have to initialize ras as normal. but need check if operation is
2454  * allowed or not in each function.
2455  */
2456 static void amdgpu_ras_check_supported(struct amdgpu_device *adev)
2457 {
2458 	adev->ras_hw_enabled = adev->ras_enabled = 0;
2459 
2460 	if (!amdgpu_ras_asic_supported(adev))
2461 		return;
2462 
2463 	if (!adev->gmc.xgmi.connected_to_cpu &&	!adev->gmc.is_app_apu) {
2464 		if (amdgpu_atomfirmware_mem_ecc_supported(adev)) {
2465 			dev_info(adev->dev, "MEM ECC is active.\n");
2466 			adev->ras_hw_enabled |= (1 << AMDGPU_RAS_BLOCK__UMC |
2467 						   1 << AMDGPU_RAS_BLOCK__DF);
2468 		} else {
2469 			dev_info(adev->dev, "MEM ECC is not presented.\n");
2470 		}
2471 
2472 		if (amdgpu_atomfirmware_sram_ecc_supported(adev)) {
2473 			dev_info(adev->dev, "SRAM ECC is active.\n");
2474 			if (!amdgpu_sriov_vf(adev))
2475 				adev->ras_hw_enabled |= ~(1 << AMDGPU_RAS_BLOCK__UMC |
2476 							    1 << AMDGPU_RAS_BLOCK__DF);
2477 			else
2478 				adev->ras_hw_enabled |= (1 << AMDGPU_RAS_BLOCK__PCIE_BIF |
2479 								1 << AMDGPU_RAS_BLOCK__SDMA |
2480 								1 << AMDGPU_RAS_BLOCK__GFX);
2481 
2482 			/* VCN/JPEG RAS can be supported on both bare metal and
2483 			 * SRIOV environment
2484 			 */
2485 			if (adev->ip_versions[VCN_HWIP][0] == IP_VERSION(2, 6, 0) ||
2486 			    adev->ip_versions[VCN_HWIP][0] == IP_VERSION(4, 0, 0))
2487 				adev->ras_hw_enabled |= (1 << AMDGPU_RAS_BLOCK__VCN |
2488 							1 << AMDGPU_RAS_BLOCK__JPEG);
2489 			else
2490 				adev->ras_hw_enabled &= ~(1 << AMDGPU_RAS_BLOCK__VCN |
2491 							1 << AMDGPU_RAS_BLOCK__JPEG);
2492 
2493 			/*
2494 			 * XGMI RAS is not supported if xgmi num physical nodes
2495 			 * is zero
2496 			 */
2497 			if (!adev->gmc.xgmi.num_physical_nodes)
2498 				adev->ras_hw_enabled &= ~(1 << AMDGPU_RAS_BLOCK__XGMI_WAFL);
2499 		} else {
2500 			dev_info(adev->dev, "SRAM ECC is not presented.\n");
2501 		}
2502 	} else {
2503 		/* driver only manages a few IP blocks RAS feature
2504 		 * when GPU is connected cpu through XGMI */
2505 		adev->ras_hw_enabled |= (1 << AMDGPU_RAS_BLOCK__GFX |
2506 					   1 << AMDGPU_RAS_BLOCK__SDMA |
2507 					   1 << AMDGPU_RAS_BLOCK__MMHUB);
2508 	}
2509 
2510 	amdgpu_ras_get_quirks(adev);
2511 
2512 	/* hw_supported needs to be aligned with RAS block mask. */
2513 	adev->ras_hw_enabled &= AMDGPU_RAS_BLOCK_MASK;
2514 
2515 
2516 	/*
2517 	 * Disable ras feature for aqua vanjaram
2518 	 * by default on apu platform.
2519 	 */
2520 	if (adev->ip_versions[MP0_HWIP][0] == IP_VERSION(13, 0, 6) &&
2521 	    adev->gmc.is_app_apu)
2522 		adev->ras_enabled = amdgpu_ras_enable != 1 ? 0 :
2523 			adev->ras_hw_enabled & amdgpu_ras_mask;
2524 	else
2525 		adev->ras_enabled = amdgpu_ras_enable == 0 ? 0 :
2526 			adev->ras_hw_enabled & amdgpu_ras_mask;
2527 }
2528 
2529 static void amdgpu_ras_counte_dw(struct work_struct *work)
2530 {
2531 	struct amdgpu_ras *con = container_of(work, struct amdgpu_ras,
2532 					      ras_counte_delay_work.work);
2533 	struct amdgpu_device *adev = con->adev;
2534 	struct drm_device *dev = adev_to_drm(adev);
2535 	unsigned long ce_count, ue_count;
2536 	int res;
2537 
2538 	res = pm_runtime_get_sync(dev->dev);
2539 	if (res < 0)
2540 		goto Out;
2541 
2542 	/* Cache new values.
2543 	 */
2544 	if (amdgpu_ras_query_error_count(adev, &ce_count, &ue_count, NULL) == 0) {
2545 		atomic_set(&con->ras_ce_count, ce_count);
2546 		atomic_set(&con->ras_ue_count, ue_count);
2547 	}
2548 
2549 	pm_runtime_mark_last_busy(dev->dev);
2550 Out:
2551 	pm_runtime_put_autosuspend(dev->dev);
2552 }
2553 
2554 static void amdgpu_ras_query_poison_mode(struct amdgpu_device *adev)
2555 {
2556 	struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2557 	bool df_poison, umc_poison;
2558 
2559 	/* poison setting is useless on SRIOV guest */
2560 	if (amdgpu_sriov_vf(adev) || !con)
2561 		return;
2562 
2563 	/* Init poison supported flag, the default value is false */
2564 	if (adev->gmc.xgmi.connected_to_cpu) {
2565 		/* enabled by default when GPU is connected to CPU */
2566 		con->poison_supported = true;
2567 	} else if (adev->df.funcs &&
2568 	    adev->df.funcs->query_ras_poison_mode &&
2569 	    adev->umc.ras &&
2570 	    adev->umc.ras->query_ras_poison_mode) {
2571 		df_poison =
2572 			adev->df.funcs->query_ras_poison_mode(adev);
2573 		umc_poison =
2574 			adev->umc.ras->query_ras_poison_mode(adev);
2575 
2576 		/* Only poison is set in both DF and UMC, we can support it */
2577 		if (df_poison && umc_poison)
2578 			con->poison_supported = true;
2579 		else if (df_poison != umc_poison)
2580 			dev_warn(adev->dev,
2581 				"Poison setting is inconsistent in DF/UMC(%d:%d)!\n",
2582 				df_poison, umc_poison);
2583 	}
2584 }
2585 
2586 int amdgpu_ras_init(struct amdgpu_device *adev)
2587 {
2588 	struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2589 	int r;
2590 
2591 	if (con)
2592 		return 0;
2593 
2594 	con = kmalloc(sizeof(struct amdgpu_ras) +
2595 			sizeof(struct ras_manager) * AMDGPU_RAS_BLOCK_COUNT +
2596 			sizeof(struct ras_manager) * AMDGPU_RAS_MCA_BLOCK_COUNT,
2597 			GFP_KERNEL|__GFP_ZERO);
2598 	if (!con)
2599 		return -ENOMEM;
2600 
2601 	con->adev = adev;
2602 	INIT_DELAYED_WORK(&con->ras_counte_delay_work, amdgpu_ras_counte_dw);
2603 	atomic_set(&con->ras_ce_count, 0);
2604 	atomic_set(&con->ras_ue_count, 0);
2605 
2606 	con->objs = (struct ras_manager *)(con + 1);
2607 
2608 	amdgpu_ras_set_context(adev, con);
2609 
2610 	amdgpu_ras_check_supported(adev);
2611 
2612 	if (!adev->ras_enabled || adev->asic_type == CHIP_VEGA10) {
2613 		/* set gfx block ras context feature for VEGA20 Gaming
2614 		 * send ras disable cmd to ras ta during ras late init.
2615 		 */
2616 		if (!adev->ras_enabled && adev->asic_type == CHIP_VEGA20) {
2617 			con->features |= BIT(AMDGPU_RAS_BLOCK__GFX);
2618 
2619 			return 0;
2620 		}
2621 
2622 		r = 0;
2623 		goto release_con;
2624 	}
2625 
2626 	con->update_channel_flag = false;
2627 	con->features = 0;
2628 	INIT_LIST_HEAD(&con->head);
2629 	/* Might need get this flag from vbios. */
2630 	con->flags = RAS_DEFAULT_FLAGS;
2631 
2632 	/* initialize nbio ras function ahead of any other
2633 	 * ras functions so hardware fatal error interrupt
2634 	 * can be enabled as early as possible */
2635 	switch (adev->ip_versions[NBIO_HWIP][0]) {
2636 	case IP_VERSION(7, 4, 0):
2637 	case IP_VERSION(7, 4, 1):
2638 	case IP_VERSION(7, 4, 4):
2639 		if (!adev->gmc.xgmi.connected_to_cpu)
2640 			adev->nbio.ras = &nbio_v7_4_ras;
2641 		break;
2642 	case IP_VERSION(4, 3, 0):
2643 		if (adev->ras_hw_enabled & (1 << AMDGPU_RAS_BLOCK__DF))
2644 			/* unlike other generation of nbio ras,
2645 			 * nbio v4_3 only support fatal error interrupt
2646 			 * to inform software that DF is freezed due to
2647 			 * system fatal error event. driver should not
2648 			 * enable nbio ras in such case. Instead,
2649 			 * check DF RAS */
2650 			adev->nbio.ras = &nbio_v4_3_ras;
2651 		break;
2652 	case IP_VERSION(7, 9, 0):
2653 		if (!adev->gmc.is_app_apu)
2654 			adev->nbio.ras = &nbio_v7_9_ras;
2655 		break;
2656 	default:
2657 		/* nbio ras is not available */
2658 		break;
2659 	}
2660 
2661 	/* nbio ras block needs to be enabled ahead of other ras blocks
2662 	 * to handle fatal error */
2663 	r = amdgpu_nbio_ras_sw_init(adev);
2664 	if (r)
2665 		return r;
2666 
2667 	if (adev->nbio.ras &&
2668 	    adev->nbio.ras->init_ras_controller_interrupt) {
2669 		r = adev->nbio.ras->init_ras_controller_interrupt(adev);
2670 		if (r)
2671 			goto release_con;
2672 	}
2673 
2674 	if (adev->nbio.ras &&
2675 	    adev->nbio.ras->init_ras_err_event_athub_interrupt) {
2676 		r = adev->nbio.ras->init_ras_err_event_athub_interrupt(adev);
2677 		if (r)
2678 			goto release_con;
2679 	}
2680 
2681 	amdgpu_ras_query_poison_mode(adev);
2682 
2683 	if (amdgpu_ras_fs_init(adev)) {
2684 		r = -EINVAL;
2685 		goto release_con;
2686 	}
2687 
2688 	dev_info(adev->dev, "RAS INFO: ras initialized successfully, "
2689 		 "hardware ability[%x] ras_mask[%x]\n",
2690 		 adev->ras_hw_enabled, adev->ras_enabled);
2691 
2692 	return 0;
2693 release_con:
2694 	amdgpu_ras_set_context(adev, NULL);
2695 	kfree(con);
2696 
2697 	return r;
2698 }
2699 
2700 int amdgpu_persistent_edc_harvesting_supported(struct amdgpu_device *adev)
2701 {
2702 	if (adev->gmc.xgmi.connected_to_cpu ||
2703 	    adev->gmc.is_app_apu)
2704 		return 1;
2705 	return 0;
2706 }
2707 
2708 static int amdgpu_persistent_edc_harvesting(struct amdgpu_device *adev,
2709 					struct ras_common_if *ras_block)
2710 {
2711 	struct ras_query_if info = {
2712 		.head = *ras_block,
2713 	};
2714 
2715 	if (!amdgpu_persistent_edc_harvesting_supported(adev))
2716 		return 0;
2717 
2718 	if (amdgpu_ras_query_error_status(adev, &info) != 0)
2719 		DRM_WARN("RAS init harvest failure");
2720 
2721 	if (amdgpu_ras_reset_error_status(adev, ras_block->block) != 0)
2722 		DRM_WARN("RAS init harvest reset failure");
2723 
2724 	return 0;
2725 }
2726 
2727 bool amdgpu_ras_is_poison_mode_supported(struct amdgpu_device *adev)
2728 {
2729        struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2730 
2731        if (!con)
2732                return false;
2733 
2734        return con->poison_supported;
2735 }
2736 
2737 /* helper function to handle common stuff in ip late init phase */
2738 int amdgpu_ras_block_late_init(struct amdgpu_device *adev,
2739 			 struct ras_common_if *ras_block)
2740 {
2741 	struct amdgpu_ras_block_object *ras_obj = NULL;
2742 	struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2743 	struct ras_query_if *query_info;
2744 	unsigned long ue_count, ce_count;
2745 	int r;
2746 
2747 	/* disable RAS feature per IP block if it is not supported */
2748 	if (!amdgpu_ras_is_supported(adev, ras_block->block)) {
2749 		amdgpu_ras_feature_enable_on_boot(adev, ras_block, 0);
2750 		return 0;
2751 	}
2752 
2753 	r = amdgpu_ras_feature_enable_on_boot(adev, ras_block, 1);
2754 	if (r) {
2755 		if (adev->in_suspend || amdgpu_in_reset(adev)) {
2756 			/* in resume phase, if fail to enable ras,
2757 			 * clean up all ras fs nodes, and disable ras */
2758 			goto cleanup;
2759 		} else
2760 			return r;
2761 	}
2762 
2763 	/* check for errors on warm reset edc persisant supported ASIC */
2764 	amdgpu_persistent_edc_harvesting(adev, ras_block);
2765 
2766 	/* in resume phase, no need to create ras fs node */
2767 	if (adev->in_suspend || amdgpu_in_reset(adev))
2768 		return 0;
2769 
2770 	ras_obj = container_of(ras_block, struct amdgpu_ras_block_object, ras_comm);
2771 	if (ras_obj->ras_cb || (ras_obj->hw_ops &&
2772 	    (ras_obj->hw_ops->query_poison_status ||
2773 	    ras_obj->hw_ops->handle_poison_consumption))) {
2774 		r = amdgpu_ras_interrupt_add_handler(adev, ras_block);
2775 		if (r)
2776 			goto cleanup;
2777 	}
2778 
2779 	if (ras_obj->hw_ops &&
2780 	    (ras_obj->hw_ops->query_ras_error_count ||
2781 	     ras_obj->hw_ops->query_ras_error_status)) {
2782 		r = amdgpu_ras_sysfs_create(adev, ras_block);
2783 		if (r)
2784 			goto interrupt;
2785 
2786 		/* Those are the cached values at init.
2787 		 */
2788 		query_info = kzalloc(sizeof(*query_info), GFP_KERNEL);
2789 		if (!query_info)
2790 			return -ENOMEM;
2791 		memcpy(&query_info->head, ras_block, sizeof(struct ras_common_if));
2792 
2793 		if (amdgpu_ras_query_error_count(adev, &ce_count, &ue_count, query_info) == 0) {
2794 			atomic_set(&con->ras_ce_count, ce_count);
2795 			atomic_set(&con->ras_ue_count, ue_count);
2796 		}
2797 
2798 		kfree(query_info);
2799 	}
2800 
2801 	return 0;
2802 
2803 interrupt:
2804 	if (ras_obj->ras_cb)
2805 		amdgpu_ras_interrupt_remove_handler(adev, ras_block);
2806 cleanup:
2807 	amdgpu_ras_feature_enable(adev, ras_block, 0);
2808 	return r;
2809 }
2810 
2811 static int amdgpu_ras_block_late_init_default(struct amdgpu_device *adev,
2812 			 struct ras_common_if *ras_block)
2813 {
2814 	return amdgpu_ras_block_late_init(adev, ras_block);
2815 }
2816 
2817 /* helper function to remove ras fs node and interrupt handler */
2818 void amdgpu_ras_block_late_fini(struct amdgpu_device *adev,
2819 			  struct ras_common_if *ras_block)
2820 {
2821 	struct amdgpu_ras_block_object *ras_obj;
2822 	if (!ras_block)
2823 		return;
2824 
2825 	amdgpu_ras_sysfs_remove(adev, ras_block);
2826 
2827 	ras_obj = container_of(ras_block, struct amdgpu_ras_block_object, ras_comm);
2828 	if (ras_obj->ras_cb)
2829 		amdgpu_ras_interrupt_remove_handler(adev, ras_block);
2830 }
2831 
2832 static void amdgpu_ras_block_late_fini_default(struct amdgpu_device *adev,
2833 			  struct ras_common_if *ras_block)
2834 {
2835 	return amdgpu_ras_block_late_fini(adev, ras_block);
2836 }
2837 
2838 /* do some init work after IP late init as dependence.
2839  * and it runs in resume/gpu reset/booting up cases.
2840  */
2841 void amdgpu_ras_resume(struct amdgpu_device *adev)
2842 {
2843 	struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2844 	struct ras_manager *obj, *tmp;
2845 
2846 	if (!adev->ras_enabled || !con) {
2847 		/* clean ras context for VEGA20 Gaming after send ras disable cmd */
2848 		amdgpu_release_ras_context(adev);
2849 
2850 		return;
2851 	}
2852 
2853 	if (con->flags & AMDGPU_RAS_FLAG_INIT_BY_VBIOS) {
2854 		/* Set up all other IPs which are not implemented. There is a
2855 		 * tricky thing that IP's actual ras error type should be
2856 		 * MULTI_UNCORRECTABLE, but as driver does not handle it, so
2857 		 * ERROR_NONE make sense anyway.
2858 		 */
2859 		amdgpu_ras_enable_all_features(adev, 1);
2860 
2861 		/* We enable ras on all hw_supported block, but as boot
2862 		 * parameter might disable some of them and one or more IP has
2863 		 * not implemented yet. So we disable them on behalf.
2864 		 */
2865 		list_for_each_entry_safe(obj, tmp, &con->head, node) {
2866 			if (!amdgpu_ras_is_supported(adev, obj->head.block)) {
2867 				amdgpu_ras_feature_enable(adev, &obj->head, 0);
2868 				/* there should be no any reference. */
2869 				WARN_ON(alive_obj(obj));
2870 			}
2871 		}
2872 	}
2873 }
2874 
2875 void amdgpu_ras_suspend(struct amdgpu_device *adev)
2876 {
2877 	struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2878 
2879 	if (!adev->ras_enabled || !con)
2880 		return;
2881 
2882 	amdgpu_ras_disable_all_features(adev, 0);
2883 	/* Make sure all ras objects are disabled. */
2884 	if (con->features)
2885 		amdgpu_ras_disable_all_features(adev, 1);
2886 }
2887 
2888 int amdgpu_ras_late_init(struct amdgpu_device *adev)
2889 {
2890 	struct amdgpu_ras_block_list *node, *tmp;
2891 	struct amdgpu_ras_block_object *obj;
2892 	int r;
2893 
2894 	/* Guest side doesn't need init ras feature */
2895 	if (amdgpu_sriov_vf(adev))
2896 		return 0;
2897 
2898 	list_for_each_entry_safe(node, tmp, &adev->ras_list, node) {
2899 		if (!node->ras_obj) {
2900 			dev_warn(adev->dev, "Warning: abnormal ras list node.\n");
2901 			continue;
2902 		}
2903 
2904 		obj = node->ras_obj;
2905 		if (obj->ras_late_init) {
2906 			r = obj->ras_late_init(adev, &obj->ras_comm);
2907 			if (r) {
2908 				dev_err(adev->dev, "%s failed to execute ras_late_init! ret:%d\n",
2909 					obj->ras_comm.name, r);
2910 				return r;
2911 			}
2912 		} else
2913 			amdgpu_ras_block_late_init_default(adev, &obj->ras_comm);
2914 	}
2915 
2916 	return 0;
2917 }
2918 
2919 /* do some fini work before IP fini as dependence */
2920 int amdgpu_ras_pre_fini(struct amdgpu_device *adev)
2921 {
2922 	struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2923 
2924 	if (!adev->ras_enabled || !con)
2925 		return 0;
2926 
2927 
2928 	/* Need disable ras on all IPs here before ip [hw/sw]fini */
2929 	if (con->features)
2930 		amdgpu_ras_disable_all_features(adev, 0);
2931 	amdgpu_ras_recovery_fini(adev);
2932 	return 0;
2933 }
2934 
2935 int amdgpu_ras_fini(struct amdgpu_device *adev)
2936 {
2937 	struct amdgpu_ras_block_list *ras_node, *tmp;
2938 	struct amdgpu_ras_block_object *obj = NULL;
2939 	struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2940 
2941 	if (!adev->ras_enabled || !con)
2942 		return 0;
2943 
2944 	list_for_each_entry_safe(ras_node, tmp, &adev->ras_list, node) {
2945 		if (ras_node->ras_obj) {
2946 			obj = ras_node->ras_obj;
2947 			if (amdgpu_ras_is_supported(adev, obj->ras_comm.block) &&
2948 			    obj->ras_fini)
2949 				obj->ras_fini(adev, &obj->ras_comm);
2950 			else
2951 				amdgpu_ras_block_late_fini_default(adev, &obj->ras_comm);
2952 		}
2953 
2954 		/* Clear ras blocks from ras_list and free ras block list node */
2955 		list_del(&ras_node->node);
2956 		kfree(ras_node);
2957 	}
2958 
2959 	amdgpu_ras_fs_fini(adev);
2960 	amdgpu_ras_interrupt_remove_all(adev);
2961 
2962 	WARN(con->features, "Feature mask is not cleared");
2963 
2964 	if (con->features)
2965 		amdgpu_ras_disable_all_features(adev, 1);
2966 
2967 	cancel_delayed_work_sync(&con->ras_counte_delay_work);
2968 
2969 	amdgpu_ras_set_context(adev, NULL);
2970 	kfree(con);
2971 
2972 	return 0;
2973 }
2974 
2975 void amdgpu_ras_global_ras_isr(struct amdgpu_device *adev)
2976 {
2977 	if (atomic_cmpxchg(&amdgpu_ras_in_intr, 0, 1) == 0) {
2978 		struct amdgpu_ras *ras = amdgpu_ras_get_context(adev);
2979 
2980 		dev_info(adev->dev, "uncorrectable hardware error"
2981 			"(ERREVENT_ATHUB_INTERRUPT) detected!\n");
2982 
2983 		ras->gpu_reset_flags |= AMDGPU_RAS_GPU_RESET_MODE1_RESET;
2984 		amdgpu_ras_reset_gpu(adev);
2985 	}
2986 }
2987 
2988 bool amdgpu_ras_need_emergency_restart(struct amdgpu_device *adev)
2989 {
2990 	if (adev->asic_type == CHIP_VEGA20 &&
2991 	    adev->pm.fw_version <= 0x283400) {
2992 		return !(amdgpu_asic_reset_method(adev) == AMD_RESET_METHOD_BACO) &&
2993 				amdgpu_ras_intr_triggered();
2994 	}
2995 
2996 	return false;
2997 }
2998 
2999 void amdgpu_release_ras_context(struct amdgpu_device *adev)
3000 {
3001 	struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
3002 
3003 	if (!con)
3004 		return;
3005 
3006 	if (!adev->ras_enabled && con->features & BIT(AMDGPU_RAS_BLOCK__GFX)) {
3007 		con->features &= ~BIT(AMDGPU_RAS_BLOCK__GFX);
3008 		amdgpu_ras_set_context(adev, NULL);
3009 		kfree(con);
3010 	}
3011 }
3012 
3013 #ifdef CONFIG_X86_MCE_AMD
3014 static struct amdgpu_device *find_adev(uint32_t node_id)
3015 {
3016 	int i;
3017 	struct amdgpu_device *adev = NULL;
3018 
3019 	for (i = 0; i < mce_adev_list.num_gpu; i++) {
3020 		adev = mce_adev_list.devs[i];
3021 
3022 		if (adev && adev->gmc.xgmi.connected_to_cpu &&
3023 		    adev->gmc.xgmi.physical_node_id == node_id)
3024 			break;
3025 		adev = NULL;
3026 	}
3027 
3028 	return adev;
3029 }
3030 
3031 #define GET_MCA_IPID_GPUID(m)	(((m) >> 44) & 0xF)
3032 #define GET_UMC_INST(m)		(((m) >> 21) & 0x7)
3033 #define GET_CHAN_INDEX(m)	((((m) >> 12) & 0x3) | (((m) >> 18) & 0x4))
3034 #define GPU_ID_OFFSET		8
3035 
3036 static int amdgpu_bad_page_notifier(struct notifier_block *nb,
3037 				    unsigned long val, void *data)
3038 {
3039 	struct mce *m = (struct mce *)data;
3040 	struct amdgpu_device *adev = NULL;
3041 	uint32_t gpu_id = 0;
3042 	uint32_t umc_inst = 0, ch_inst = 0;
3043 
3044 	/*
3045 	 * If the error was generated in UMC_V2, which belongs to GPU UMCs,
3046 	 * and error occurred in DramECC (Extended error code = 0) then only
3047 	 * process the error, else bail out.
3048 	 */
3049 	if (!m || !((smca_get_bank_type(m->extcpu, m->bank) == SMCA_UMC_V2) &&
3050 		    (XEC(m->status, 0x3f) == 0x0)))
3051 		return NOTIFY_DONE;
3052 
3053 	/*
3054 	 * If it is correctable error, return.
3055 	 */
3056 	if (mce_is_correctable(m))
3057 		return NOTIFY_OK;
3058 
3059 	/*
3060 	 * GPU Id is offset by GPU_ID_OFFSET in MCA_IPID_UMC register.
3061 	 */
3062 	gpu_id = GET_MCA_IPID_GPUID(m->ipid) - GPU_ID_OFFSET;
3063 
3064 	adev = find_adev(gpu_id);
3065 	if (!adev) {
3066 		DRM_WARN("%s: Unable to find adev for gpu_id: %d\n", __func__,
3067 								gpu_id);
3068 		return NOTIFY_DONE;
3069 	}
3070 
3071 	/*
3072 	 * If it is uncorrectable error, then find out UMC instance and
3073 	 * channel index.
3074 	 */
3075 	umc_inst = GET_UMC_INST(m->ipid);
3076 	ch_inst = GET_CHAN_INDEX(m->ipid);
3077 
3078 	dev_info(adev->dev, "Uncorrectable error detected in UMC inst: %d, chan_idx: %d",
3079 			     umc_inst, ch_inst);
3080 
3081 	if (!amdgpu_umc_page_retirement_mca(adev, m->addr, ch_inst, umc_inst))
3082 		return NOTIFY_OK;
3083 	else
3084 		return NOTIFY_DONE;
3085 }
3086 
3087 static struct notifier_block amdgpu_bad_page_nb = {
3088 	.notifier_call  = amdgpu_bad_page_notifier,
3089 	.priority       = MCE_PRIO_UC,
3090 };
3091 
3092 static void amdgpu_register_bad_pages_mca_notifier(struct amdgpu_device *adev)
3093 {
3094 	/*
3095 	 * Add the adev to the mce_adev_list.
3096 	 * During mode2 reset, amdgpu device is temporarily
3097 	 * removed from the mgpu_info list which can cause
3098 	 * page retirement to fail.
3099 	 * Use this list instead of mgpu_info to find the amdgpu
3100 	 * device on which the UMC error was reported.
3101 	 */
3102 	mce_adev_list.devs[mce_adev_list.num_gpu++] = adev;
3103 
3104 	/*
3105 	 * Register the x86 notifier only once
3106 	 * with MCE subsystem.
3107 	 */
3108 	if (notifier_registered == false) {
3109 		mce_register_decode_chain(&amdgpu_bad_page_nb);
3110 		notifier_registered = true;
3111 	}
3112 }
3113 #endif
3114 
3115 struct amdgpu_ras *amdgpu_ras_get_context(struct amdgpu_device *adev)
3116 {
3117 	if (!adev)
3118 		return NULL;
3119 
3120 	return adev->psp.ras_context.ras;
3121 }
3122 
3123 int amdgpu_ras_set_context(struct amdgpu_device *adev, struct amdgpu_ras *ras_con)
3124 {
3125 	if (!adev)
3126 		return -EINVAL;
3127 
3128 	adev->psp.ras_context.ras = ras_con;
3129 	return 0;
3130 }
3131 
3132 /* check if ras is supported on block, say, sdma, gfx */
3133 int amdgpu_ras_is_supported(struct amdgpu_device *adev,
3134 		unsigned int block)
3135 {
3136 	int ret = 0;
3137 	struct amdgpu_ras *ras = amdgpu_ras_get_context(adev);
3138 
3139 	if (block >= AMDGPU_RAS_BLOCK_COUNT)
3140 		return 0;
3141 
3142 	ret = ras && (adev->ras_enabled & (1 << block));
3143 
3144 	/* For the special asic with mem ecc enabled but sram ecc
3145 	 * not enabled, even if the ras block is not supported on
3146 	 * .ras_enabled, if the asic supports poison mode and the
3147 	 * ras block has ras configuration, it can be considered
3148 	 * that the ras block supports ras function.
3149 	 */
3150 	if (!ret &&
3151 	    (block == AMDGPU_RAS_BLOCK__GFX ||
3152 	     block == AMDGPU_RAS_BLOCK__SDMA ||
3153 	     block == AMDGPU_RAS_BLOCK__VCN ||
3154 	     block == AMDGPU_RAS_BLOCK__JPEG) &&
3155 	    amdgpu_ras_is_poison_mode_supported(adev) &&
3156 	    amdgpu_ras_get_ras_block(adev, block, 0))
3157 		ret = 1;
3158 
3159 	return ret;
3160 }
3161 
3162 int amdgpu_ras_reset_gpu(struct amdgpu_device *adev)
3163 {
3164 	struct amdgpu_ras *ras = amdgpu_ras_get_context(adev);
3165 
3166 	if (atomic_cmpxchg(&ras->in_recovery, 0, 1) == 0)
3167 		amdgpu_reset_domain_schedule(ras->adev->reset_domain, &ras->recovery_work);
3168 	return 0;
3169 }
3170 
3171 
3172 /* Register each ip ras block into amdgpu ras */
3173 int amdgpu_ras_register_ras_block(struct amdgpu_device *adev,
3174 		struct amdgpu_ras_block_object *ras_block_obj)
3175 {
3176 	struct amdgpu_ras_block_list *ras_node;
3177 	if (!adev || !ras_block_obj)
3178 		return -EINVAL;
3179 
3180 	ras_node = kzalloc(sizeof(*ras_node), GFP_KERNEL);
3181 	if (!ras_node)
3182 		return -ENOMEM;
3183 
3184 	INIT_LIST_HEAD(&ras_node->node);
3185 	ras_node->ras_obj = ras_block_obj;
3186 	list_add_tail(&ras_node->node, &adev->ras_list);
3187 
3188 	return 0;
3189 }
3190 
3191 void amdgpu_ras_get_error_type_name(uint32_t err_type, char *err_type_name)
3192 {
3193 	if (!err_type_name)
3194 		return;
3195 
3196 	switch (err_type) {
3197 	case AMDGPU_RAS_ERROR__SINGLE_CORRECTABLE:
3198 		sprintf(err_type_name, "correctable");
3199 		break;
3200 	case AMDGPU_RAS_ERROR__MULTI_UNCORRECTABLE:
3201 		sprintf(err_type_name, "uncorrectable");
3202 		break;
3203 	default:
3204 		sprintf(err_type_name, "unknown");
3205 		break;
3206 	}
3207 }
3208 
3209 bool amdgpu_ras_inst_get_memory_id_field(struct amdgpu_device *adev,
3210 					 const struct amdgpu_ras_err_status_reg_entry *reg_entry,
3211 					 uint32_t instance,
3212 					 uint32_t *memory_id)
3213 {
3214 	uint32_t err_status_lo_data, err_status_lo_offset;
3215 
3216 	if (!reg_entry)
3217 		return false;
3218 
3219 	err_status_lo_offset =
3220 		AMDGPU_RAS_REG_ENTRY_OFFSET(reg_entry->hwip, instance,
3221 					    reg_entry->seg_lo, reg_entry->reg_lo);
3222 	err_status_lo_data = RREG32(err_status_lo_offset);
3223 
3224 	if ((reg_entry->flags & AMDGPU_RAS_ERR_STATUS_VALID) &&
3225 	    !REG_GET_FIELD(err_status_lo_data, ERR_STATUS_LO, ERR_STATUS_VALID_FLAG))
3226 		return false;
3227 
3228 	*memory_id = REG_GET_FIELD(err_status_lo_data, ERR_STATUS_LO, MEMORY_ID);
3229 
3230 	return true;
3231 }
3232 
3233 bool amdgpu_ras_inst_get_err_cnt_field(struct amdgpu_device *adev,
3234 				       const struct amdgpu_ras_err_status_reg_entry *reg_entry,
3235 				       uint32_t instance,
3236 				       unsigned long *err_cnt)
3237 {
3238 	uint32_t err_status_hi_data, err_status_hi_offset;
3239 
3240 	if (!reg_entry)
3241 		return false;
3242 
3243 	err_status_hi_offset =
3244 		AMDGPU_RAS_REG_ENTRY_OFFSET(reg_entry->hwip, instance,
3245 					    reg_entry->seg_hi, reg_entry->reg_hi);
3246 	err_status_hi_data = RREG32(err_status_hi_offset);
3247 
3248 	if ((reg_entry->flags & AMDGPU_RAS_ERR_INFO_VALID) &&
3249 	    !REG_GET_FIELD(err_status_hi_data, ERR_STATUS_HI, ERR_INFO_VALID_FLAG))
3250 		/* keep the check here in case we need to refer to the result later */
3251 		dev_dbg(adev->dev, "Invalid err_info field\n");
3252 
3253 	/* read err count */
3254 	*err_cnt = REG_GET_FIELD(err_status_hi_data, ERR_STATUS, ERR_CNT);
3255 
3256 	return true;
3257 }
3258 
3259 void amdgpu_ras_inst_query_ras_error_count(struct amdgpu_device *adev,
3260 					   const struct amdgpu_ras_err_status_reg_entry *reg_list,
3261 					   uint32_t reg_list_size,
3262 					   const struct amdgpu_ras_memory_id_entry *mem_list,
3263 					   uint32_t mem_list_size,
3264 					   uint32_t instance,
3265 					   uint32_t err_type,
3266 					   unsigned long *err_count)
3267 {
3268 	uint32_t memory_id;
3269 	unsigned long err_cnt;
3270 	char err_type_name[16];
3271 	uint32_t i, j;
3272 
3273 	for (i = 0; i < reg_list_size; i++) {
3274 		/* query memory_id from err_status_lo */
3275 		if (!amdgpu_ras_inst_get_memory_id_field(adev, &reg_list[i],
3276 							 instance, &memory_id))
3277 			continue;
3278 
3279 		/* query err_cnt from err_status_hi */
3280 		if (!amdgpu_ras_inst_get_err_cnt_field(adev, &reg_list[i],
3281 						       instance, &err_cnt) ||
3282 		    !err_cnt)
3283 			continue;
3284 
3285 		*err_count += err_cnt;
3286 
3287 		/* log the errors */
3288 		amdgpu_ras_get_error_type_name(err_type, err_type_name);
3289 		if (!mem_list) {
3290 			/* memory_list is not supported */
3291 			dev_info(adev->dev,
3292 				 "%ld %s hardware errors detected in %s, instance: %d, memory_id: %d\n",
3293 				 err_cnt, err_type_name,
3294 				 reg_list[i].block_name,
3295 				 instance, memory_id);
3296 		} else {
3297 			for (j = 0; j < mem_list_size; j++) {
3298 				if (memory_id == mem_list[j].memory_id) {
3299 					dev_info(adev->dev,
3300 						 "%ld %s hardware errors detected in %s, instance: %d, memory block: %s\n",
3301 						 err_cnt, err_type_name,
3302 						 reg_list[i].block_name,
3303 						 instance, mem_list[j].name);
3304 					break;
3305 				}
3306 			}
3307 		}
3308 	}
3309 }
3310 
3311 void amdgpu_ras_inst_reset_ras_error_count(struct amdgpu_device *adev,
3312 					   const struct amdgpu_ras_err_status_reg_entry *reg_list,
3313 					   uint32_t reg_list_size,
3314 					   uint32_t instance)
3315 {
3316 	uint32_t err_status_lo_offset, err_status_hi_offset;
3317 	uint32_t i;
3318 
3319 	for (i = 0; i < reg_list_size; i++) {
3320 		err_status_lo_offset =
3321 			AMDGPU_RAS_REG_ENTRY_OFFSET(reg_list[i].hwip, instance,
3322 						    reg_list[i].seg_lo, reg_list[i].reg_lo);
3323 		err_status_hi_offset =
3324 			AMDGPU_RAS_REG_ENTRY_OFFSET(reg_list[i].hwip, instance,
3325 						    reg_list[i].seg_hi, reg_list[i].reg_hi);
3326 		WREG32(err_status_lo_offset, 0);
3327 		WREG32(err_status_hi_offset, 0);
3328 	}
3329 }
3330