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