xref: /linux/drivers/gpu/drm/amd/amdgpu/amdgpu_umc.c (revision 9a6b55ac)
1 /*
2  * Copyright 2019 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 "amdgpu_ras.h"
25 
26 int amdgpu_umc_ras_late_init(struct amdgpu_device *adev)
27 {
28 	int r;
29 	struct ras_fs_if fs_info = {
30 		.sysfs_name = "umc_err_count",
31 		.debugfs_name = "umc_err_inject",
32 	};
33 	struct ras_ih_if ih_info = {
34 		.cb = amdgpu_umc_process_ras_data_cb,
35 	};
36 
37 	if (!adev->umc.ras_if) {
38 		adev->umc.ras_if =
39 			kmalloc(sizeof(struct ras_common_if), GFP_KERNEL);
40 		if (!adev->umc.ras_if)
41 			return -ENOMEM;
42 		adev->umc.ras_if->block = AMDGPU_RAS_BLOCK__UMC;
43 		adev->umc.ras_if->type = AMDGPU_RAS_ERROR__MULTI_UNCORRECTABLE;
44 		adev->umc.ras_if->sub_block_index = 0;
45 		strcpy(adev->umc.ras_if->name, "umc");
46 	}
47 	ih_info.head = fs_info.head = *adev->umc.ras_if;
48 
49 	r = amdgpu_ras_late_init(adev, adev->umc.ras_if,
50 				 &fs_info, &ih_info);
51 	if (r)
52 		goto free;
53 
54 	if (amdgpu_ras_is_supported(adev, adev->umc.ras_if->block)) {
55 		r = amdgpu_irq_get(adev, &adev->gmc.ecc_irq, 0);
56 		if (r)
57 			goto late_fini;
58 	} else {
59 		r = 0;
60 		goto free;
61 	}
62 
63 	/* ras init of specific umc version */
64 	if (adev->umc.funcs && adev->umc.funcs->err_cnt_init)
65 		adev->umc.funcs->err_cnt_init(adev);
66 
67 	return 0;
68 
69 late_fini:
70 	amdgpu_ras_late_fini(adev, adev->umc.ras_if, &ih_info);
71 free:
72 	kfree(adev->umc.ras_if);
73 	adev->umc.ras_if = NULL;
74 	return r;
75 }
76 
77 void amdgpu_umc_ras_fini(struct amdgpu_device *adev)
78 {
79 	if (amdgpu_ras_is_supported(adev, AMDGPU_RAS_BLOCK__UMC) &&
80 			adev->umc.ras_if) {
81 		struct ras_common_if *ras_if = adev->umc.ras_if;
82 		struct ras_ih_if ih_info = {
83 			.head = *ras_if,
84 			.cb = amdgpu_umc_process_ras_data_cb,
85 		};
86 
87 		amdgpu_ras_late_fini(adev, ras_if, &ih_info);
88 		kfree(ras_if);
89 	}
90 }
91 
92 int amdgpu_umc_process_ras_data_cb(struct amdgpu_device *adev,
93 		void *ras_error_status,
94 		struct amdgpu_iv_entry *entry)
95 {
96 	struct ras_err_data *err_data = (struct ras_err_data *)ras_error_status;
97 
98 	/* When “Full RAS” is enabled, the per-IP interrupt sources should
99 	 * be disabled and the driver should only look for the aggregated
100 	 * interrupt via sync flood
101 	 */
102 	if (amdgpu_ras_is_supported(adev, AMDGPU_RAS_BLOCK__GFX))
103 		return AMDGPU_RAS_SUCCESS;
104 
105 	kgd2kfd_set_sram_ecc_flag(adev->kfd.dev);
106 	if (adev->umc.funcs &&
107 	    adev->umc.funcs->query_ras_error_count)
108 	    adev->umc.funcs->query_ras_error_count(adev, ras_error_status);
109 
110 	if (adev->umc.funcs &&
111 	    adev->umc.funcs->query_ras_error_address &&
112 	    adev->umc.max_ras_err_cnt_per_query) {
113 		err_data->err_addr =
114 			kcalloc(adev->umc.max_ras_err_cnt_per_query,
115 				sizeof(struct eeprom_table_record), GFP_KERNEL);
116 		/* still call query_ras_error_address to clear error status
117 		 * even NOMEM error is encountered
118 		 */
119 		if(!err_data->err_addr)
120 			DRM_WARN("Failed to alloc memory for umc error address record!\n");
121 
122 		/* umc query_ras_error_address is also responsible for clearing
123 		 * error status
124 		 */
125 		adev->umc.funcs->query_ras_error_address(adev, ras_error_status);
126 	}
127 
128 	/* only uncorrectable error needs gpu reset */
129 	if (err_data->ue_count) {
130 		if (err_data->err_addr_cnt &&
131 		    amdgpu_ras_add_bad_pages(adev, err_data->err_addr,
132 						err_data->err_addr_cnt))
133 			DRM_WARN("Failed to add ras bad page!\n");
134 
135 		amdgpu_ras_reset_gpu(adev, 0);
136 	}
137 
138 	kfree(err_data->err_addr);
139 	return AMDGPU_RAS_SUCCESS;
140 }
141 
142 int amdgpu_umc_process_ecc_irq(struct amdgpu_device *adev,
143 		struct amdgpu_irq_src *source,
144 		struct amdgpu_iv_entry *entry)
145 {
146 	struct ras_common_if *ras_if = adev->umc.ras_if;
147 	struct ras_dispatch_if ih_data = {
148 		.entry = entry,
149 	};
150 
151 	if (!ras_if)
152 		return 0;
153 
154 	ih_data.head = *ras_if;
155 
156 	amdgpu_ras_interrupt_dispatch(adev, &ih_data);
157 	return 0;
158 }
159