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