drm/amdgpu: guard ras debugfs creation/removal based on CONFIG_DEBUG_FS
[linux-block.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
31 #include "amdgpu.h"
32 #include "amdgpu_ras.h"
33 #include "amdgpu_atomfirmware.h"
34 #include "amdgpu_xgmi.h"
35 #include "ivsrcid/nbio/irqsrcs_nbif_7_4.h"
36
37 static const char *RAS_FS_NAME = "ras";
38
39 const char *ras_error_string[] = {
40         "none",
41         "parity",
42         "single_correctable",
43         "multi_uncorrectable",
44         "poison",
45 };
46
47 const char *ras_block_string[] = {
48         "umc",
49         "sdma",
50         "gfx",
51         "mmhub",
52         "athub",
53         "pcie_bif",
54         "hdp",
55         "xgmi_wafl",
56         "df",
57         "smn",
58         "sem",
59         "mp0",
60         "mp1",
61         "fuse",
62 };
63
64 #define ras_err_str(i) (ras_error_string[ffs(i)])
65 #define ras_block_str(i) (ras_block_string[i])
66
67 #define RAS_DEFAULT_FLAGS (AMDGPU_RAS_FLAG_INIT_BY_VBIOS)
68
69 /* inject address is 52 bits */
70 #define RAS_UMC_INJECT_ADDR_LIMIT       (0x1ULL << 52)
71
72 /* typical ECC bad page rate(1 bad page per 100MB VRAM) */
73 #define RAS_BAD_PAGE_RATE               (100 * 1024 * 1024ULL)
74
75 enum amdgpu_ras_retire_page_reservation {
76         AMDGPU_RAS_RETIRE_PAGE_RESERVED,
77         AMDGPU_RAS_RETIRE_PAGE_PENDING,
78         AMDGPU_RAS_RETIRE_PAGE_FAULT,
79 };
80
81 atomic_t amdgpu_ras_in_intr = ATOMIC_INIT(0);
82
83 static bool amdgpu_ras_check_bad_page(struct amdgpu_device *adev,
84                                 uint64_t addr);
85
86 void amdgpu_ras_set_error_query_ready(struct amdgpu_device *adev, bool ready)
87 {
88         if (adev && amdgpu_ras_get_context(adev))
89                 amdgpu_ras_get_context(adev)->error_query_ready = ready;
90 }
91
92 static bool amdgpu_ras_get_error_query_ready(struct amdgpu_device *adev)
93 {
94         if (adev && amdgpu_ras_get_context(adev))
95                 return amdgpu_ras_get_context(adev)->error_query_ready;
96
97         return false;
98 }
99
100 static ssize_t amdgpu_ras_debugfs_read(struct file *f, char __user *buf,
101                                         size_t size, loff_t *pos)
102 {
103         struct ras_manager *obj = (struct ras_manager *)file_inode(f)->i_private;
104         struct ras_query_if info = {
105                 .head = obj->head,
106         };
107         ssize_t s;
108         char val[128];
109
110         if (amdgpu_ras_error_query(obj->adev, &info))
111                 return -EINVAL;
112
113         s = snprintf(val, sizeof(val), "%s: %lu\n%s: %lu\n",
114                         "ue", info.ue_count,
115                         "ce", info.ce_count);
116         if (*pos >= s)
117                 return 0;
118
119         s -= *pos;
120         s = min_t(u64, s, size);
121
122
123         if (copy_to_user(buf, &val[*pos], s))
124                 return -EINVAL;
125
126         *pos += s;
127
128         return s;
129 }
130
131 static const struct file_operations amdgpu_ras_debugfs_ops = {
132         .owner = THIS_MODULE,
133         .read = amdgpu_ras_debugfs_read,
134         .write = NULL,
135         .llseek = default_llseek
136 };
137
138 static int amdgpu_ras_find_block_id_by_name(const char *name, int *block_id)
139 {
140         int i;
141
142         for (i = 0; i < ARRAY_SIZE(ras_block_string); i++) {
143                 *block_id = i;
144                 if (strcmp(name, ras_block_str(i)) == 0)
145                         return 0;
146         }
147         return -EINVAL;
148 }
149
150 static int amdgpu_ras_debugfs_ctrl_parse_data(struct file *f,
151                 const char __user *buf, size_t size,
152                 loff_t *pos, struct ras_debug_if *data)
153 {
154         ssize_t s = min_t(u64, 64, size);
155         char str[65];
156         char block_name[33];
157         char err[9] = "ue";
158         int op = -1;
159         int block_id;
160         uint32_t sub_block;
161         u64 address, value;
162
163         if (*pos)
164                 return -EINVAL;
165         *pos = size;
166
167         memset(str, 0, sizeof(str));
168         memset(data, 0, sizeof(*data));
169
170         if (copy_from_user(str, buf, s))
171                 return -EINVAL;
172
173         if (sscanf(str, "disable %32s", block_name) == 1)
174                 op = 0;
175         else if (sscanf(str, "enable %32s %8s", block_name, err) == 2)
176                 op = 1;
177         else if (sscanf(str, "inject %32s %8s", block_name, err) == 2)
178                 op = 2;
179         else if (str[0] && str[1] && str[2] && str[3])
180                 /* ascii string, but commands are not matched. */
181                 return -EINVAL;
182
183         if (op != -1) {
184                 if (amdgpu_ras_find_block_id_by_name(block_name, &block_id))
185                         return -EINVAL;
186
187                 data->head.block = block_id;
188                 /* only ue and ce errors are supported */
189                 if (!memcmp("ue", err, 2))
190                         data->head.type = AMDGPU_RAS_ERROR__MULTI_UNCORRECTABLE;
191                 else if (!memcmp("ce", err, 2))
192                         data->head.type = AMDGPU_RAS_ERROR__SINGLE_CORRECTABLE;
193                 else
194                         return -EINVAL;
195
196                 data->op = op;
197
198                 if (op == 2) {
199                         if (sscanf(str, "%*s %*s %*s %u %llu %llu",
200                                                 &sub_block, &address, &value) != 3)
201                                 if (sscanf(str, "%*s %*s %*s 0x%x 0x%llx 0x%llx",
202                                                         &sub_block, &address, &value) != 3)
203                                         return -EINVAL;
204                         data->head.sub_block_index = sub_block;
205                         data->inject.address = address;
206                         data->inject.value = value;
207                 }
208         } else {
209                 if (size < sizeof(*data))
210                         return -EINVAL;
211
212                 if (copy_from_user(data, buf, sizeof(*data)))
213                         return -EINVAL;
214         }
215
216         return 0;
217 }
218
219 /**
220  * DOC: AMDGPU RAS debugfs control interface
221  *
222  * It accepts struct ras_debug_if who has two members.
223  *
224  * First member: ras_debug_if::head or ras_debug_if::inject.
225  *
226  * head is used to indicate which IP block will be under control.
227  *
228  * head has four members, they are block, type, sub_block_index, name.
229  * block: which IP will be under control.
230  * type: what kind of error will be enabled/disabled/injected.
231  * sub_block_index: some IPs have subcomponets. say, GFX, sDMA.
232  * name: the name of IP.
233  *
234  * inject has two more members than head, they are address, value.
235  * As their names indicate, inject operation will write the
236  * value to the address.
237  *
238  * The second member: struct ras_debug_if::op.
239  * It has three kinds of operations.
240  *
241  * - 0: disable RAS on the block. Take ::head as its data.
242  * - 1: enable RAS on the block. Take ::head as its data.
243  * - 2: inject errors on the block. Take ::inject as its data.
244  *
245  * How to use the interface?
246  *
247  * Programs
248  *
249  * Copy the struct ras_debug_if in your codes and initialize it.
250  * Write the struct to the control node.
251  *
252  * Shells
253  *
254  * .. code-block:: bash
255  *
256  *      echo op block [error [sub_block address value]] > .../ras/ras_ctrl
257  *
258  * Parameters:
259  *
260  * op: disable, enable, inject
261  *      disable: only block is needed
262  *      enable: block and error are needed
263  *      inject: error, address, value are needed
264  * block: umc, sdma, gfx, .........
265  *      see ras_block_string[] for details
266  * error: ue, ce
267  *      ue: multi_uncorrectable
268  *      ce: single_correctable
269  * sub_block:
270  *      sub block index, pass 0 if there is no sub block
271  *
272  * here are some examples for bash commands:
273  *
274  * .. code-block:: bash
275  *
276  *      echo inject umc ue 0x0 0x0 0x0 > /sys/kernel/debug/dri/0/ras/ras_ctrl
277  *      echo inject umc ce 0 0 0 > /sys/kernel/debug/dri/0/ras/ras_ctrl
278  *      echo disable umc > /sys/kernel/debug/dri/0/ras/ras_ctrl
279  *
280  * How to check the result?
281  *
282  * For disable/enable, please check ras features at
283  * /sys/class/drm/card[0/1/2...]/device/ras/features
284  *
285  * For inject, please check corresponding err count at
286  * /sys/class/drm/card[0/1/2...]/device/ras/[gfx/sdma/...]_err_count
287  *
288  * .. note::
289  *      Operations are only allowed on blocks which are supported.
290  *      Please check ras mask at /sys/module/amdgpu/parameters/ras_mask
291  *      to see which blocks support RAS on a particular asic.
292  *
293  */
294 static ssize_t amdgpu_ras_debugfs_ctrl_write(struct file *f, const char __user *buf,
295                 size_t size, loff_t *pos)
296 {
297         struct amdgpu_device *adev = (struct amdgpu_device *)file_inode(f)->i_private;
298         struct ras_debug_if data;
299         int ret = 0;
300
301         if (!amdgpu_ras_get_error_query_ready(adev)) {
302                 dev_warn(adev->dev, "RAS WARN: error injection "
303                                 "currently inaccessible\n");
304                 return size;
305         }
306
307         ret = amdgpu_ras_debugfs_ctrl_parse_data(f, buf, size, pos, &data);
308         if (ret)
309                 return -EINVAL;
310
311         if (!amdgpu_ras_is_supported(adev, data.head.block))
312                 return -EINVAL;
313
314         switch (data.op) {
315         case 0:
316                 ret = amdgpu_ras_feature_enable(adev, &data.head, 0);
317                 break;
318         case 1:
319                 ret = amdgpu_ras_feature_enable(adev, &data.head, 1);
320                 break;
321         case 2:
322                 if ((data.inject.address >= adev->gmc.mc_vram_size) ||
323                     (data.inject.address >= RAS_UMC_INJECT_ADDR_LIMIT)) {
324                         dev_warn(adev->dev, "RAS WARN: input address "
325                                         "0x%llx is invalid.",
326                                         data.inject.address);
327                         ret = -EINVAL;
328                         break;
329                 }
330
331                 /* umc ce/ue error injection for a bad page is not allowed */
332                 if ((data.head.block == AMDGPU_RAS_BLOCK__UMC) &&
333                     amdgpu_ras_check_bad_page(adev, data.inject.address)) {
334                         dev_warn(adev->dev, "RAS WARN: 0x%llx has been marked "
335                                         "as bad before error injection!\n",
336                                         data.inject.address);
337                         break;
338                 }
339
340                 /* data.inject.address is offset instead of absolute gpu address */
341                 ret = amdgpu_ras_error_inject(adev, &data.inject);
342                 break;
343         default:
344                 ret = -EINVAL;
345                 break;
346         }
347
348         if (ret)
349                 return -EINVAL;
350
351         return size;
352 }
353
354 /**
355  * DOC: AMDGPU RAS debugfs EEPROM table reset interface
356  *
357  * Some boards contain an EEPROM which is used to persistently store a list of
358  * bad pages which experiences ECC errors in vram.  This interface provides
359  * a way to reset the EEPROM, e.g., after testing error injection.
360  *
361  * Usage:
362  *
363  * .. code-block:: bash
364  *
365  *      echo 1 > ../ras/ras_eeprom_reset
366  *
367  * will reset EEPROM table to 0 entries.
368  *
369  */
370 static ssize_t amdgpu_ras_debugfs_eeprom_write(struct file *f, const char __user *buf,
371                 size_t size, loff_t *pos)
372 {
373         struct amdgpu_device *adev =
374                 (struct amdgpu_device *)file_inode(f)->i_private;
375         int ret;
376
377         ret = amdgpu_ras_eeprom_reset_table(
378                         &(amdgpu_ras_get_context(adev)->eeprom_control));
379
380         if (ret == 1) {
381                 amdgpu_ras_get_context(adev)->flags = RAS_DEFAULT_FLAGS;
382                 return size;
383         } else {
384                 return -EIO;
385         }
386 }
387
388 static const struct file_operations amdgpu_ras_debugfs_ctrl_ops = {
389         .owner = THIS_MODULE,
390         .read = NULL,
391         .write = amdgpu_ras_debugfs_ctrl_write,
392         .llseek = default_llseek
393 };
394
395 static const struct file_operations amdgpu_ras_debugfs_eeprom_ops = {
396         .owner = THIS_MODULE,
397         .read = NULL,
398         .write = amdgpu_ras_debugfs_eeprom_write,
399         .llseek = default_llseek
400 };
401
402 /**
403  * DOC: AMDGPU RAS sysfs Error Count Interface
404  *
405  * It allows the user to read the error count for each IP block on the gpu through
406  * /sys/class/drm/card[0/1/2...]/device/ras/[gfx/sdma/...]_err_count
407  *
408  * It outputs the multiple lines which report the uncorrected (ue) and corrected
409  * (ce) error counts.
410  *
411  * The format of one line is below,
412  *
413  * [ce|ue]: count
414  *
415  * Example:
416  *
417  * .. code-block:: bash
418  *
419  *      ue: 0
420  *      ce: 1
421  *
422  */
423 static ssize_t amdgpu_ras_sysfs_read(struct device *dev,
424                 struct device_attribute *attr, char *buf)
425 {
426         struct ras_manager *obj = container_of(attr, struct ras_manager, sysfs_attr);
427         struct ras_query_if info = {
428                 .head = obj->head,
429         };
430
431         if (!amdgpu_ras_get_error_query_ready(obj->adev))
432                 return snprintf(buf, PAGE_SIZE,
433                                 "Query currently inaccessible\n");
434
435         if (amdgpu_ras_error_query(obj->adev, &info))
436                 return -EINVAL;
437
438         return snprintf(buf, PAGE_SIZE, "%s: %lu\n%s: %lu\n",
439                         "ue", info.ue_count,
440                         "ce", info.ce_count);
441 }
442
443 /* obj begin */
444
445 #define get_obj(obj) do { (obj)->use++; } while (0)
446 #define alive_obj(obj) ((obj)->use)
447
448 static inline void put_obj(struct ras_manager *obj)
449 {
450         if (obj && --obj->use == 0)
451                 list_del(&obj->node);
452         if (obj && obj->use < 0) {
453                  DRM_ERROR("RAS ERROR: Unbalance obj(%s) use\n", obj->head.name);
454         }
455 }
456
457 /* make one obj and return it. */
458 static struct ras_manager *amdgpu_ras_create_obj(struct amdgpu_device *adev,
459                 struct ras_common_if *head)
460 {
461         struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
462         struct ras_manager *obj;
463
464         if (!con)
465                 return NULL;
466
467         if (head->block >= AMDGPU_RAS_BLOCK_COUNT)
468                 return NULL;
469
470         obj = &con->objs[head->block];
471         /* already exist. return obj? */
472         if (alive_obj(obj))
473                 return NULL;
474
475         obj->head = *head;
476         obj->adev = adev;
477         list_add(&obj->node, &con->head);
478         get_obj(obj);
479
480         return obj;
481 }
482
483 /* return an obj equal to head, or the first when head is NULL */
484 struct ras_manager *amdgpu_ras_find_obj(struct amdgpu_device *adev,
485                 struct ras_common_if *head)
486 {
487         struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
488         struct ras_manager *obj;
489         int i;
490
491         if (!con)
492                 return NULL;
493
494         if (head) {
495                 if (head->block >= AMDGPU_RAS_BLOCK_COUNT)
496                         return NULL;
497
498                 obj = &con->objs[head->block];
499
500                 if (alive_obj(obj)) {
501                         WARN_ON(head->block != obj->head.block);
502                         return obj;
503                 }
504         } else {
505                 for (i = 0; i < AMDGPU_RAS_BLOCK_COUNT; i++) {
506                         obj = &con->objs[i];
507                         if (alive_obj(obj)) {
508                                 WARN_ON(i != obj->head.block);
509                                 return obj;
510                         }
511                 }
512         }
513
514         return NULL;
515 }
516 /* obj end */
517
518 static void amdgpu_ras_parse_status_code(struct amdgpu_device *adev,
519                                   const char*           invoke_type,
520                                   const char*           block_name,
521                                   enum ta_ras_status    ret)
522 {
523         switch (ret) {
524         case TA_RAS_STATUS__SUCCESS:
525                 return;
526         case TA_RAS_STATUS__ERROR_RAS_NOT_AVAILABLE:
527                 dev_warn(adev->dev,
528                         "RAS WARN: %s %s currently unavailable\n",
529                         invoke_type,
530                         block_name);
531                 break;
532         default:
533                 dev_err(adev->dev,
534                         "RAS ERROR: %s %s error failed ret 0x%X\n",
535                         invoke_type,
536                         block_name,
537                         ret);
538         }
539 }
540
541 /* feature ctl begin */
542 static int amdgpu_ras_is_feature_allowed(struct amdgpu_device *adev,
543                 struct ras_common_if *head)
544 {
545         struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
546
547         return con->hw_supported & BIT(head->block);
548 }
549
550 static int amdgpu_ras_is_feature_enabled(struct amdgpu_device *adev,
551                 struct ras_common_if *head)
552 {
553         struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
554
555         return con->features & BIT(head->block);
556 }
557
558 /*
559  * if obj is not created, then create one.
560  * set feature enable flag.
561  */
562 static int __amdgpu_ras_feature_enable(struct amdgpu_device *adev,
563                 struct ras_common_if *head, int enable)
564 {
565         struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
566         struct ras_manager *obj = amdgpu_ras_find_obj(adev, head);
567
568         /* If hardware does not support ras, then do not create obj.
569          * But if hardware support ras, we can create the obj.
570          * Ras framework checks con->hw_supported to see if it need do
571          * corresponding initialization.
572          * IP checks con->support to see if it need disable ras.
573          */
574         if (!amdgpu_ras_is_feature_allowed(adev, head))
575                 return 0;
576         if (!(!!enable ^ !!amdgpu_ras_is_feature_enabled(adev, head)))
577                 return 0;
578
579         if (enable) {
580                 if (!obj) {
581                         obj = amdgpu_ras_create_obj(adev, head);
582                         if (!obj)
583                                 return -EINVAL;
584                 } else {
585                         /* In case we create obj somewhere else */
586                         get_obj(obj);
587                 }
588                 con->features |= BIT(head->block);
589         } else {
590                 if (obj && amdgpu_ras_is_feature_enabled(adev, head)) {
591                         con->features &= ~BIT(head->block);
592                         put_obj(obj);
593                 }
594         }
595
596         return 0;
597 }
598
599 /* wrapper of psp_ras_enable_features */
600 int amdgpu_ras_feature_enable(struct amdgpu_device *adev,
601                 struct ras_common_if *head, bool enable)
602 {
603         struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
604         union ta_ras_cmd_input *info;
605         int ret;
606
607         if (!con)
608                 return -EINVAL;
609
610         info = kzalloc(sizeof(union ta_ras_cmd_input), GFP_KERNEL);
611         if (!info)
612                 return -ENOMEM;
613
614         if (!enable) {
615                 info->disable_features = (struct ta_ras_disable_features_input) {
616                         .block_id =  amdgpu_ras_block_to_ta(head->block),
617                         .error_type = amdgpu_ras_error_to_ta(head->type),
618                 };
619         } else {
620                 info->enable_features = (struct ta_ras_enable_features_input) {
621                         .block_id =  amdgpu_ras_block_to_ta(head->block),
622                         .error_type = amdgpu_ras_error_to_ta(head->type),
623                 };
624         }
625
626         /* Do not enable if it is not allowed. */
627         WARN_ON(enable && !amdgpu_ras_is_feature_allowed(adev, head));
628         /* Are we alerady in that state we are going to set? */
629         if (!(!!enable ^ !!amdgpu_ras_is_feature_enabled(adev, head))) {
630                 ret = 0;
631                 goto out;
632         }
633
634         if (!amdgpu_ras_intr_triggered()) {
635                 ret = psp_ras_enable_features(&adev->psp, info, enable);
636                 if (ret) {
637                         amdgpu_ras_parse_status_code(adev,
638                                                      enable ? "enable":"disable",
639                                                      ras_block_str(head->block),
640                                                     (enum ta_ras_status)ret);
641                         if (ret == TA_RAS_STATUS__RESET_NEEDED)
642                                 ret = -EAGAIN;
643                         else
644                                 ret = -EINVAL;
645
646                         goto out;
647                 }
648         }
649
650         /* setup the obj */
651         __amdgpu_ras_feature_enable(adev, head, enable);
652         ret = 0;
653 out:
654         kfree(info);
655         return ret;
656 }
657
658 /* Only used in device probe stage and called only once. */
659 int amdgpu_ras_feature_enable_on_boot(struct amdgpu_device *adev,
660                 struct ras_common_if *head, bool enable)
661 {
662         struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
663         int ret;
664
665         if (!con)
666                 return -EINVAL;
667
668         if (con->flags & AMDGPU_RAS_FLAG_INIT_BY_VBIOS) {
669                 if (enable) {
670                         /* There is no harm to issue a ras TA cmd regardless of
671                          * the currecnt ras state.
672                          * If current state == target state, it will do nothing
673                          * But sometimes it requests driver to reset and repost
674                          * with error code -EAGAIN.
675                          */
676                         ret = amdgpu_ras_feature_enable(adev, head, 1);
677                         /* With old ras TA, we might fail to enable ras.
678                          * Log it and just setup the object.
679                          * TODO need remove this WA in the future.
680                          */
681                         if (ret == -EINVAL) {
682                                 ret = __amdgpu_ras_feature_enable(adev, head, 1);
683                                 if (!ret)
684                                         dev_info(adev->dev,
685                                                 "RAS INFO: %s setup object\n",
686                                                 ras_block_str(head->block));
687                         }
688                 } else {
689                         /* setup the object then issue a ras TA disable cmd.*/
690                         ret = __amdgpu_ras_feature_enable(adev, head, 1);
691                         if (ret)
692                                 return ret;
693
694                         ret = amdgpu_ras_feature_enable(adev, head, 0);
695                 }
696         } else
697                 ret = amdgpu_ras_feature_enable(adev, head, enable);
698
699         return ret;
700 }
701
702 static int amdgpu_ras_disable_all_features(struct amdgpu_device *adev,
703                 bool bypass)
704 {
705         struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
706         struct ras_manager *obj, *tmp;
707
708         list_for_each_entry_safe(obj, tmp, &con->head, node) {
709                 /* bypass psp.
710                  * aka just release the obj and corresponding flags
711                  */
712                 if (bypass) {
713                         if (__amdgpu_ras_feature_enable(adev, &obj->head, 0))
714                                 break;
715                 } else {
716                         if (amdgpu_ras_feature_enable(adev, &obj->head, 0))
717                                 break;
718                 }
719         }
720
721         return con->features;
722 }
723
724 static int amdgpu_ras_enable_all_features(struct amdgpu_device *adev,
725                 bool bypass)
726 {
727         struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
728         int ras_block_count = AMDGPU_RAS_BLOCK_COUNT;
729         int i;
730         const enum amdgpu_ras_error_type default_ras_type =
731                 AMDGPU_RAS_ERROR__NONE;
732
733         for (i = 0; i < ras_block_count; i++) {
734                 struct ras_common_if head = {
735                         .block = i,
736                         .type = default_ras_type,
737                         .sub_block_index = 0,
738                 };
739                 strcpy(head.name, ras_block_str(i));
740                 if (bypass) {
741                         /*
742                          * bypass psp. vbios enable ras for us.
743                          * so just create the obj
744                          */
745                         if (__amdgpu_ras_feature_enable(adev, &head, 1))
746                                 break;
747                 } else {
748                         if (amdgpu_ras_feature_enable(adev, &head, 1))
749                                 break;
750                 }
751         }
752
753         return con->features;
754 }
755 /* feature ctl end */
756
757 /* query/inject/cure begin */
758 int amdgpu_ras_error_query(struct amdgpu_device *adev,
759                 struct ras_query_if *info)
760 {
761         struct ras_manager *obj = amdgpu_ras_find_obj(adev, &info->head);
762         struct ras_err_data err_data = {0, 0, 0, NULL};
763         int i;
764
765         if (!obj)
766                 return -EINVAL;
767
768         switch (info->head.block) {
769         case AMDGPU_RAS_BLOCK__UMC:
770                 if (adev->umc.funcs->query_ras_error_count)
771                         adev->umc.funcs->query_ras_error_count(adev, &err_data);
772                 /* umc query_ras_error_address is also responsible for clearing
773                  * error status
774                  */
775                 if (adev->umc.funcs->query_ras_error_address)
776                         adev->umc.funcs->query_ras_error_address(adev, &err_data);
777                 break;
778         case AMDGPU_RAS_BLOCK__SDMA:
779                 if (adev->sdma.funcs->query_ras_error_count) {
780                         for (i = 0; i < adev->sdma.num_instances; i++)
781                                 adev->sdma.funcs->query_ras_error_count(adev, i,
782                                                                         &err_data);
783                 }
784                 break;
785         case AMDGPU_RAS_BLOCK__GFX:
786                 if (adev->gfx.funcs->query_ras_error_count)
787                         adev->gfx.funcs->query_ras_error_count(adev, &err_data);
788                 break;
789         case AMDGPU_RAS_BLOCK__MMHUB:
790                 if (adev->mmhub.funcs->query_ras_error_count)
791                         adev->mmhub.funcs->query_ras_error_count(adev, &err_data);
792                 break;
793         case AMDGPU_RAS_BLOCK__PCIE_BIF:
794                 if (adev->nbio.funcs->query_ras_error_count)
795                         adev->nbio.funcs->query_ras_error_count(adev, &err_data);
796                 break;
797         case AMDGPU_RAS_BLOCK__XGMI_WAFL:
798                 amdgpu_xgmi_query_ras_error_count(adev, &err_data);
799                 break;
800         default:
801                 break;
802         }
803
804         obj->err_data.ue_count += err_data.ue_count;
805         obj->err_data.ce_count += err_data.ce_count;
806
807         info->ue_count = obj->err_data.ue_count;
808         info->ce_count = obj->err_data.ce_count;
809
810         if (err_data.ce_count) {
811                 dev_info(adev->dev, "%ld correctable hardware errors "
812                                         "detected in %s block, no user "
813                                         "action is needed.\n",
814                                         obj->err_data.ce_count,
815                                         ras_block_str(info->head.block));
816         }
817         if (err_data.ue_count) {
818                 dev_info(adev->dev, "%ld uncorrectable hardware errors "
819                                         "detected in %s block\n",
820                                         obj->err_data.ue_count,
821                                         ras_block_str(info->head.block));
822         }
823
824         return 0;
825 }
826
827 /* Trigger XGMI/WAFL error */
828 static int amdgpu_ras_error_inject_xgmi(struct amdgpu_device *adev,
829                                  struct ta_ras_trigger_error_input *block_info)
830 {
831         int ret;
832
833         if (amdgpu_dpm_set_df_cstate(adev, DF_CSTATE_DISALLOW))
834                 dev_warn(adev->dev, "Failed to disallow df cstate");
835
836         if (amdgpu_dpm_allow_xgmi_power_down(adev, false))
837                 dev_warn(adev->dev, "Failed to disallow XGMI power down");
838
839         ret = psp_ras_trigger_error(&adev->psp, block_info);
840
841         if (amdgpu_ras_intr_triggered())
842                 return ret;
843
844         if (amdgpu_dpm_allow_xgmi_power_down(adev, true))
845                 dev_warn(adev->dev, "Failed to allow XGMI power down");
846
847         if (amdgpu_dpm_set_df_cstate(adev, DF_CSTATE_DISALLOW))
848                 dev_warn(adev->dev, "Failed to allow df cstate");
849
850         return ret;
851 }
852
853 /* wrapper of psp_ras_trigger_error */
854 int amdgpu_ras_error_inject(struct amdgpu_device *adev,
855                 struct ras_inject_if *info)
856 {
857         struct ras_manager *obj = amdgpu_ras_find_obj(adev, &info->head);
858         struct ta_ras_trigger_error_input block_info = {
859                 .block_id =  amdgpu_ras_block_to_ta(info->head.block),
860                 .inject_error_type = amdgpu_ras_error_to_ta(info->head.type),
861                 .sub_block_index = info->head.sub_block_index,
862                 .address = info->address,
863                 .value = info->value,
864         };
865         int ret = 0;
866
867         if (!obj)
868                 return -EINVAL;
869
870         /* Calculate XGMI relative offset */
871         if (adev->gmc.xgmi.num_physical_nodes > 1) {
872                 block_info.address =
873                         amdgpu_xgmi_get_relative_phy_addr(adev,
874                                                           block_info.address);
875         }
876
877         switch (info->head.block) {
878         case AMDGPU_RAS_BLOCK__GFX:
879                 if (adev->gfx.funcs->ras_error_inject)
880                         ret = adev->gfx.funcs->ras_error_inject(adev, info);
881                 else
882                         ret = -EINVAL;
883                 break;
884         case AMDGPU_RAS_BLOCK__UMC:
885         case AMDGPU_RAS_BLOCK__MMHUB:
886         case AMDGPU_RAS_BLOCK__PCIE_BIF:
887                 ret = psp_ras_trigger_error(&adev->psp, &block_info);
888                 break;
889         case AMDGPU_RAS_BLOCK__XGMI_WAFL:
890                 ret = amdgpu_ras_error_inject_xgmi(adev, &block_info);
891                 break;
892         default:
893                 dev_info(adev->dev, "%s error injection is not supported yet\n",
894                          ras_block_str(info->head.block));
895                 ret = -EINVAL;
896         }
897
898         amdgpu_ras_parse_status_code(adev,
899                                      "inject",
900                                      ras_block_str(info->head.block),
901                                      (enum ta_ras_status)ret);
902
903         return ret;
904 }
905
906 int amdgpu_ras_error_cure(struct amdgpu_device *adev,
907                 struct ras_cure_if *info)
908 {
909         /* psp fw has no cure interface for now. */
910         return 0;
911 }
912
913 /* get the total error counts on all IPs */
914 unsigned long amdgpu_ras_query_error_count(struct amdgpu_device *adev,
915                 bool is_ce)
916 {
917         struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
918         struct ras_manager *obj;
919         struct ras_err_data data = {0, 0};
920
921         if (!con)
922                 return 0;
923
924         list_for_each_entry(obj, &con->head, node) {
925                 struct ras_query_if info = {
926                         .head = obj->head,
927                 };
928
929                 if (amdgpu_ras_error_query(adev, &info))
930                         return 0;
931
932                 data.ce_count += info.ce_count;
933                 data.ue_count += info.ue_count;
934         }
935
936         return is_ce ? data.ce_count : data.ue_count;
937 }
938 /* query/inject/cure end */
939
940
941 /* sysfs begin */
942
943 static int amdgpu_ras_badpages_read(struct amdgpu_device *adev,
944                 struct ras_badpage **bps, unsigned int *count);
945
946 static char *amdgpu_ras_badpage_flags_str(unsigned int flags)
947 {
948         switch (flags) {
949         case AMDGPU_RAS_RETIRE_PAGE_RESERVED:
950                 return "R";
951         case AMDGPU_RAS_RETIRE_PAGE_PENDING:
952                 return "P";
953         case AMDGPU_RAS_RETIRE_PAGE_FAULT:
954         default:
955                 return "F";
956         };
957 }
958
959 /**
960  * DOC: AMDGPU RAS sysfs gpu_vram_bad_pages Interface
961  *
962  * It allows user to read the bad pages of vram on the gpu through
963  * /sys/class/drm/card[0/1/2...]/device/ras/gpu_vram_bad_pages
964  *
965  * It outputs multiple lines, and each line stands for one gpu page.
966  *
967  * The format of one line is below,
968  * gpu pfn : gpu page size : flags
969  *
970  * gpu pfn and gpu page size are printed in hex format.
971  * flags can be one of below character,
972  *
973  * R: reserved, this gpu page is reserved and not able to use.
974  *
975  * P: pending for reserve, this gpu page is marked as bad, will be reserved
976  * in next window of page_reserve.
977  *
978  * F: unable to reserve. this gpu page can't be reserved due to some reasons.
979  *
980  * Examples:
981  *
982  * .. code-block:: bash
983  *
984  *      0x00000001 : 0x00001000 : R
985  *      0x00000002 : 0x00001000 : P
986  *
987  */
988
989 static ssize_t amdgpu_ras_sysfs_badpages_read(struct file *f,
990                 struct kobject *kobj, struct bin_attribute *attr,
991                 char *buf, loff_t ppos, size_t count)
992 {
993         struct amdgpu_ras *con =
994                 container_of(attr, struct amdgpu_ras, badpages_attr);
995         struct amdgpu_device *adev = con->adev;
996         const unsigned int element_size =
997                 sizeof("0xabcdabcd : 0x12345678 : R\n") - 1;
998         unsigned int start = div64_ul(ppos + element_size - 1, element_size);
999         unsigned int end = div64_ul(ppos + count - 1, element_size);
1000         ssize_t s = 0;
1001         struct ras_badpage *bps = NULL;
1002         unsigned int bps_count = 0;
1003
1004         memset(buf, 0, count);
1005
1006         if (amdgpu_ras_badpages_read(adev, &bps, &bps_count))
1007                 return 0;
1008
1009         for (; start < end && start < bps_count; start++)
1010                 s += scnprintf(&buf[s], element_size + 1,
1011                                 "0x%08x : 0x%08x : %1s\n",
1012                                 bps[start].bp,
1013                                 bps[start].size,
1014                                 amdgpu_ras_badpage_flags_str(bps[start].flags));
1015
1016         kfree(bps);
1017
1018         return s;
1019 }
1020
1021 static ssize_t amdgpu_ras_sysfs_features_read(struct device *dev,
1022                 struct device_attribute *attr, char *buf)
1023 {
1024         struct amdgpu_ras *con =
1025                 container_of(attr, struct amdgpu_ras, features_attr);
1026
1027         return scnprintf(buf, PAGE_SIZE, "feature mask: 0x%x\n", con->features);
1028 }
1029
1030 static void amdgpu_ras_sysfs_add_bad_page_node(struct amdgpu_device *adev)
1031 {
1032         struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1033         struct attribute_group group;
1034         struct bin_attribute *bin_attrs[] = {
1035                 &con->badpages_attr,
1036                 NULL,
1037         };
1038
1039         con->badpages_attr = (struct bin_attribute) {
1040                 .attr = {
1041                         .name = "gpu_vram_bad_pages",
1042                         .mode = S_IRUGO,
1043                 },
1044                 .size = 0,
1045                 .private = NULL,
1046                 .read = amdgpu_ras_sysfs_badpages_read,
1047         };
1048
1049         group.name = RAS_FS_NAME;
1050         group.bin_attrs = bin_attrs;
1051
1052         sysfs_bin_attr_init(bin_attrs[0]);
1053
1054         sysfs_update_group(&adev->dev->kobj, &group);
1055 }
1056
1057 static int amdgpu_ras_sysfs_create_feature_node(struct amdgpu_device *adev)
1058 {
1059         struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1060         struct attribute *attrs[] = {
1061                 &con->features_attr.attr,
1062                 NULL
1063         };
1064         struct attribute_group group = {
1065                 .name = RAS_FS_NAME,
1066                 .attrs = attrs,
1067         };
1068
1069         con->features_attr = (struct device_attribute) {
1070                 .attr = {
1071                         .name = "features",
1072                         .mode = S_IRUGO,
1073                 },
1074                         .show = amdgpu_ras_sysfs_features_read,
1075         };
1076
1077         sysfs_attr_init(attrs[0]);
1078
1079         return sysfs_create_group(&adev->dev->kobj, &group);
1080 }
1081
1082 static void amdgpu_ras_sysfs_remove_bad_page_node(struct amdgpu_device *adev)
1083 {
1084         struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1085
1086         sysfs_remove_file_from_group(&adev->dev->kobj,
1087                                 &con->badpages_attr.attr,
1088                                 RAS_FS_NAME);
1089 }
1090
1091 static int amdgpu_ras_sysfs_remove_feature_node(struct amdgpu_device *adev)
1092 {
1093         struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1094         struct attribute *attrs[] = {
1095                 &con->features_attr.attr,
1096                 NULL
1097         };
1098         struct attribute_group group = {
1099                 .name = RAS_FS_NAME,
1100                 .attrs = attrs,
1101         };
1102
1103         sysfs_remove_group(&adev->dev->kobj, &group);
1104
1105         return 0;
1106 }
1107
1108 int amdgpu_ras_sysfs_create(struct amdgpu_device *adev,
1109                 struct ras_fs_if *head)
1110 {
1111         struct ras_manager *obj = amdgpu_ras_find_obj(adev, &head->head);
1112
1113         if (!obj || obj->attr_inuse)
1114                 return -EINVAL;
1115
1116         get_obj(obj);
1117
1118         memcpy(obj->fs_data.sysfs_name,
1119                         head->sysfs_name,
1120                         sizeof(obj->fs_data.sysfs_name));
1121
1122         obj->sysfs_attr = (struct device_attribute){
1123                 .attr = {
1124                         .name = obj->fs_data.sysfs_name,
1125                         .mode = S_IRUGO,
1126                 },
1127                         .show = amdgpu_ras_sysfs_read,
1128         };
1129         sysfs_attr_init(&obj->sysfs_attr.attr);
1130
1131         if (sysfs_add_file_to_group(&adev->dev->kobj,
1132                                 &obj->sysfs_attr.attr,
1133                                 RAS_FS_NAME)) {
1134                 put_obj(obj);
1135                 return -EINVAL;
1136         }
1137
1138         obj->attr_inuse = 1;
1139
1140         return 0;
1141 }
1142
1143 int amdgpu_ras_sysfs_remove(struct amdgpu_device *adev,
1144                 struct ras_common_if *head)
1145 {
1146         struct ras_manager *obj = amdgpu_ras_find_obj(adev, head);
1147
1148         if (!obj || !obj->attr_inuse)
1149                 return -EINVAL;
1150
1151         sysfs_remove_file_from_group(&adev->dev->kobj,
1152                                 &obj->sysfs_attr.attr,
1153                                 RAS_FS_NAME);
1154         obj->attr_inuse = 0;
1155         put_obj(obj);
1156
1157         return 0;
1158 }
1159
1160 static int amdgpu_ras_sysfs_remove_all(struct amdgpu_device *adev)
1161 {
1162         struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1163         struct ras_manager *obj, *tmp;
1164
1165         list_for_each_entry_safe(obj, tmp, &con->head, node) {
1166                 amdgpu_ras_sysfs_remove(adev, &obj->head);
1167         }
1168
1169         if (amdgpu_bad_page_threshold != 0)
1170                 amdgpu_ras_sysfs_remove_bad_page_node(adev);
1171
1172         amdgpu_ras_sysfs_remove_feature_node(adev);
1173
1174         return 0;
1175 }
1176 /* sysfs end */
1177
1178 /**
1179  * DOC: AMDGPU RAS Reboot Behavior for Unrecoverable Errors
1180  *
1181  * Normally when there is an uncorrectable error, the driver will reset
1182  * the GPU to recover.  However, in the event of an unrecoverable error,
1183  * the driver provides an interface to reboot the system automatically
1184  * in that event.
1185  *
1186  * The following file in debugfs provides that interface:
1187  * /sys/kernel/debug/dri/[0/1/2...]/ras/auto_reboot
1188  *
1189  * Usage:
1190  *
1191  * .. code-block:: bash
1192  *
1193  *      echo true > .../ras/auto_reboot
1194  *
1195  */
1196 /* debugfs begin */
1197 static void amdgpu_ras_debugfs_create_ctrl_node(struct amdgpu_device *adev)
1198 {
1199         struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1200         struct drm_minor *minor = adev->ddev->primary;
1201
1202         con->dir = debugfs_create_dir(RAS_FS_NAME, minor->debugfs_root);
1203         debugfs_create_file("ras_ctrl", S_IWUGO | S_IRUGO, con->dir,
1204                                 adev, &amdgpu_ras_debugfs_ctrl_ops);
1205         debugfs_create_file("ras_eeprom_reset", S_IWUGO | S_IRUGO, con->dir,
1206                                 adev, &amdgpu_ras_debugfs_eeprom_ops);
1207
1208         /*
1209          * After one uncorrectable error happens, usually GPU recovery will
1210          * be scheduled. But due to the known problem in GPU recovery failing
1211          * to bring GPU back, below interface provides one direct way to
1212          * user to reboot system automatically in such case within
1213          * ERREVENT_ATHUB_INTERRUPT generated. Normal GPU recovery routine
1214          * will never be called.
1215          */
1216         debugfs_create_bool("auto_reboot", S_IWUGO | S_IRUGO, con->dir,
1217                                 &con->reboot);
1218
1219         /*
1220          * User could set this not to clean up hardware's error count register
1221          * of RAS IPs during ras recovery.
1222          */
1223         debugfs_create_bool("disable_ras_err_cnt_harvest", 0644,
1224                         con->dir, &con->disable_ras_err_cnt_harvest);
1225 }
1226
1227 void amdgpu_ras_debugfs_create(struct amdgpu_device *adev,
1228                 struct ras_fs_if *head)
1229 {
1230         struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1231         struct ras_manager *obj = amdgpu_ras_find_obj(adev, &head->head);
1232
1233         if (!obj || obj->ent)
1234                 return;
1235
1236         get_obj(obj);
1237
1238         memcpy(obj->fs_data.debugfs_name,
1239                         head->debugfs_name,
1240                         sizeof(obj->fs_data.debugfs_name));
1241
1242         obj->ent = debugfs_create_file(obj->fs_data.debugfs_name,
1243                                        S_IWUGO | S_IRUGO, con->dir, obj,
1244                                        &amdgpu_ras_debugfs_ops);
1245 }
1246
1247 void amdgpu_ras_debugfs_create_all(struct amdgpu_device *adev)
1248 {
1249 #if defined(CONFIG_DEBUG_FS)
1250         struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1251         struct ras_manager *obj;
1252         struct ras_fs_if fs_info;
1253
1254         /*
1255          * it won't be called in resume path, no need to check
1256          * suspend and gpu reset status
1257          */
1258         if (!con)
1259                 return;
1260
1261         amdgpu_ras_debugfs_create_ctrl_node(adev);
1262
1263         list_for_each_entry(obj, &con->head, node) {
1264                 if (amdgpu_ras_is_supported(adev, obj->head.block) &&
1265                         (obj->attr_inuse == 1)) {
1266                         sprintf(fs_info.debugfs_name, "%s_err_inject",
1267                                         ras_block_str(obj->head.block));
1268                         fs_info.head = obj->head;
1269                         amdgpu_ras_debugfs_create(adev, &fs_info);
1270                 }
1271         }
1272 #endif
1273 }
1274
1275 void amdgpu_ras_debugfs_remove(struct amdgpu_device *adev,
1276                 struct ras_common_if *head)
1277 {
1278         struct ras_manager *obj = amdgpu_ras_find_obj(adev, head);
1279
1280         if (!obj || !obj->ent)
1281                 return;
1282
1283         obj->ent = NULL;
1284         put_obj(obj);
1285 }
1286
1287 static void amdgpu_ras_debugfs_remove_all(struct amdgpu_device *adev)
1288 {
1289 #if defined(CONFIG_DEBUG_FS)
1290         struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1291         struct ras_manager *obj, *tmp;
1292
1293         list_for_each_entry_safe(obj, tmp, &con->head, node) {
1294                 amdgpu_ras_debugfs_remove(adev, &obj->head);
1295         }
1296
1297         con->dir = NULL;
1298 #endif
1299 }
1300 /* debugfs end */
1301
1302 /* ras fs */
1303
1304 static int amdgpu_ras_fs_init(struct amdgpu_device *adev)
1305 {
1306         amdgpu_ras_sysfs_create_feature_node(adev);
1307
1308         if (amdgpu_bad_page_threshold != 0)
1309                 amdgpu_ras_sysfs_add_bad_page_node(adev);
1310
1311         return 0;
1312 }
1313
1314 static int amdgpu_ras_fs_fini(struct amdgpu_device *adev)
1315 {
1316         amdgpu_ras_debugfs_remove_all(adev);
1317         amdgpu_ras_sysfs_remove_all(adev);
1318         return 0;
1319 }
1320 /* ras fs end */
1321
1322 /* ih begin */
1323 static void amdgpu_ras_interrupt_handler(struct ras_manager *obj)
1324 {
1325         struct ras_ih_data *data = &obj->ih_data;
1326         struct amdgpu_iv_entry entry;
1327         int ret;
1328         struct ras_err_data err_data = {0, 0, 0, NULL};
1329
1330         while (data->rptr != data->wptr) {
1331                 rmb();
1332                 memcpy(&entry, &data->ring[data->rptr],
1333                                 data->element_size);
1334
1335                 wmb();
1336                 data->rptr = (data->aligned_element_size +
1337                                 data->rptr) % data->ring_size;
1338
1339                 /* Let IP handle its data, maybe we need get the output
1340                  * from the callback to udpate the error type/count, etc
1341                  */
1342                 if (data->cb) {
1343                         ret = data->cb(obj->adev, &err_data, &entry);
1344                         /* ue will trigger an interrupt, and in that case
1345                          * we need do a reset to recovery the whole system.
1346                          * But leave IP do that recovery, here we just dispatch
1347                          * the error.
1348                          */
1349                         if (ret == AMDGPU_RAS_SUCCESS) {
1350                                 /* these counts could be left as 0 if
1351                                  * some blocks do not count error number
1352                                  */
1353                                 obj->err_data.ue_count += err_data.ue_count;
1354                                 obj->err_data.ce_count += err_data.ce_count;
1355                         }
1356                 }
1357         }
1358 }
1359
1360 static void amdgpu_ras_interrupt_process_handler(struct work_struct *work)
1361 {
1362         struct ras_ih_data *data =
1363                 container_of(work, struct ras_ih_data, ih_work);
1364         struct ras_manager *obj =
1365                 container_of(data, struct ras_manager, ih_data);
1366
1367         amdgpu_ras_interrupt_handler(obj);
1368 }
1369
1370 int amdgpu_ras_interrupt_dispatch(struct amdgpu_device *adev,
1371                 struct ras_dispatch_if *info)
1372 {
1373         struct ras_manager *obj = amdgpu_ras_find_obj(adev, &info->head);
1374         struct ras_ih_data *data = &obj->ih_data;
1375
1376         if (!obj)
1377                 return -EINVAL;
1378
1379         if (data->inuse == 0)
1380                 return 0;
1381
1382         /* Might be overflow... */
1383         memcpy(&data->ring[data->wptr], info->entry,
1384                         data->element_size);
1385
1386         wmb();
1387         data->wptr = (data->aligned_element_size +
1388                         data->wptr) % data->ring_size;
1389
1390         schedule_work(&data->ih_work);
1391
1392         return 0;
1393 }
1394
1395 int amdgpu_ras_interrupt_remove_handler(struct amdgpu_device *adev,
1396                 struct ras_ih_if *info)
1397 {
1398         struct ras_manager *obj = amdgpu_ras_find_obj(adev, &info->head);
1399         struct ras_ih_data *data;
1400
1401         if (!obj)
1402                 return -EINVAL;
1403
1404         data = &obj->ih_data;
1405         if (data->inuse == 0)
1406                 return 0;
1407
1408         cancel_work_sync(&data->ih_work);
1409
1410         kfree(data->ring);
1411         memset(data, 0, sizeof(*data));
1412         put_obj(obj);
1413
1414         return 0;
1415 }
1416
1417 int amdgpu_ras_interrupt_add_handler(struct amdgpu_device *adev,
1418                 struct ras_ih_if *info)
1419 {
1420         struct ras_manager *obj = amdgpu_ras_find_obj(adev, &info->head);
1421         struct ras_ih_data *data;
1422
1423         if (!obj) {
1424                 /* in case we registe the IH before enable ras feature */
1425                 obj = amdgpu_ras_create_obj(adev, &info->head);
1426                 if (!obj)
1427                         return -EINVAL;
1428         } else
1429                 get_obj(obj);
1430
1431         data = &obj->ih_data;
1432         /* add the callback.etc */
1433         *data = (struct ras_ih_data) {
1434                 .inuse = 0,
1435                 .cb = info->cb,
1436                 .element_size = sizeof(struct amdgpu_iv_entry),
1437                 .rptr = 0,
1438                 .wptr = 0,
1439         };
1440
1441         INIT_WORK(&data->ih_work, amdgpu_ras_interrupt_process_handler);
1442
1443         data->aligned_element_size = ALIGN(data->element_size, 8);
1444         /* the ring can store 64 iv entries. */
1445         data->ring_size = 64 * data->aligned_element_size;
1446         data->ring = kmalloc(data->ring_size, GFP_KERNEL);
1447         if (!data->ring) {
1448                 put_obj(obj);
1449                 return -ENOMEM;
1450         }
1451
1452         /* IH is ready */
1453         data->inuse = 1;
1454
1455         return 0;
1456 }
1457
1458 static int amdgpu_ras_interrupt_remove_all(struct amdgpu_device *adev)
1459 {
1460         struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1461         struct ras_manager *obj, *tmp;
1462
1463         list_for_each_entry_safe(obj, tmp, &con->head, node) {
1464                 struct ras_ih_if info = {
1465                         .head = obj->head,
1466                 };
1467                 amdgpu_ras_interrupt_remove_handler(adev, &info);
1468         }
1469
1470         return 0;
1471 }
1472 /* ih end */
1473
1474 /* traversal all IPs except NBIO to query error counter */
1475 static void amdgpu_ras_log_on_err_counter(struct amdgpu_device *adev)
1476 {
1477         struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1478         struct ras_manager *obj;
1479
1480         if (!con)
1481                 return;
1482
1483         list_for_each_entry(obj, &con->head, node) {
1484                 struct ras_query_if info = {
1485                         .head = obj->head,
1486                 };
1487
1488                 /*
1489                  * PCIE_BIF IP has one different isr by ras controller
1490                  * interrupt, the specific ras counter query will be
1491                  * done in that isr. So skip such block from common
1492                  * sync flood interrupt isr calling.
1493                  */
1494                 if (info.head.block == AMDGPU_RAS_BLOCK__PCIE_BIF)
1495                         continue;
1496
1497                 amdgpu_ras_error_query(adev, &info);
1498         }
1499 }
1500
1501 /* recovery begin */
1502
1503 /* return 0 on success.
1504  * caller need free bps.
1505  */
1506 static int amdgpu_ras_badpages_read(struct amdgpu_device *adev,
1507                 struct ras_badpage **bps, unsigned int *count)
1508 {
1509         struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1510         struct ras_err_handler_data *data;
1511         int i = 0;
1512         int ret = 0;
1513
1514         if (!con || !con->eh_data || !bps || !count)
1515                 return -EINVAL;
1516
1517         mutex_lock(&con->recovery_lock);
1518         data = con->eh_data;
1519         if (!data || data->count == 0) {
1520                 *bps = NULL;
1521                 ret = -EINVAL;
1522                 goto out;
1523         }
1524
1525         *bps = kmalloc(sizeof(struct ras_badpage) * data->count, GFP_KERNEL);
1526         if (!*bps) {
1527                 ret = -ENOMEM;
1528                 goto out;
1529         }
1530
1531         for (; i < data->count; i++) {
1532                 (*bps)[i] = (struct ras_badpage){
1533                         .bp = data->bps[i].retired_page,
1534                         .size = AMDGPU_GPU_PAGE_SIZE,
1535                         .flags = AMDGPU_RAS_RETIRE_PAGE_RESERVED,
1536                 };
1537
1538                 if (data->last_reserved <= i)
1539                         (*bps)[i].flags = AMDGPU_RAS_RETIRE_PAGE_PENDING;
1540                 else if (data->bps_bo[i] == NULL)
1541                         (*bps)[i].flags = AMDGPU_RAS_RETIRE_PAGE_FAULT;
1542         }
1543
1544         *count = data->count;
1545 out:
1546         mutex_unlock(&con->recovery_lock);
1547         return ret;
1548 }
1549
1550 static void amdgpu_ras_do_recovery(struct work_struct *work)
1551 {
1552         struct amdgpu_ras *ras =
1553                 container_of(work, struct amdgpu_ras, recovery_work);
1554         struct amdgpu_device *remote_adev = NULL;
1555         struct amdgpu_device *adev = ras->adev;
1556         struct list_head device_list, *device_list_handle =  NULL;
1557         struct amdgpu_hive_info *hive = amdgpu_get_xgmi_hive(adev, false);
1558
1559         if (!ras->disable_ras_err_cnt_harvest) {
1560                 /* Build list of devices to query RAS related errors */
1561                 if  (hive && adev->gmc.xgmi.num_physical_nodes > 1) {
1562                         device_list_handle = &hive->device_list;
1563                 } else {
1564                         INIT_LIST_HEAD(&device_list);
1565                         list_add_tail(&adev->gmc.xgmi.head, &device_list);
1566                         device_list_handle = &device_list;
1567                 }
1568
1569                 list_for_each_entry(remote_adev,
1570                                 device_list_handle, gmc.xgmi.head)
1571                         amdgpu_ras_log_on_err_counter(remote_adev);
1572         }
1573
1574         if (amdgpu_device_should_recover_gpu(ras->adev))
1575                 amdgpu_device_gpu_recover(ras->adev, NULL);
1576         atomic_set(&ras->in_recovery, 0);
1577 }
1578
1579 /* alloc/realloc bps array */
1580 static int amdgpu_ras_realloc_eh_data_space(struct amdgpu_device *adev,
1581                 struct ras_err_handler_data *data, int pages)
1582 {
1583         unsigned int old_space = data->count + data->space_left;
1584         unsigned int new_space = old_space + pages;
1585         unsigned int align_space = ALIGN(new_space, 512);
1586         void *bps = kmalloc(align_space * sizeof(*data->bps), GFP_KERNEL);
1587         struct amdgpu_bo **bps_bo =
1588                         kmalloc(align_space * sizeof(*data->bps_bo), GFP_KERNEL);
1589
1590         if (!bps || !bps_bo) {
1591                 kfree(bps);
1592                 kfree(bps_bo);
1593                 return -ENOMEM;
1594         }
1595
1596         if (data->bps) {
1597                 memcpy(bps, data->bps,
1598                                 data->count * sizeof(*data->bps));
1599                 kfree(data->bps);
1600         }
1601         if (data->bps_bo) {
1602                 memcpy(bps_bo, data->bps_bo,
1603                                 data->count * sizeof(*data->bps_bo));
1604                 kfree(data->bps_bo);
1605         }
1606
1607         data->bps = bps;
1608         data->bps_bo = bps_bo;
1609         data->space_left += align_space - old_space;
1610         return 0;
1611 }
1612
1613 /* it deal with vram only. */
1614 int amdgpu_ras_add_bad_pages(struct amdgpu_device *adev,
1615                 struct eeprom_table_record *bps, int pages)
1616 {
1617         struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1618         struct ras_err_handler_data *data;
1619         int ret = 0;
1620
1621         if (!con || !con->eh_data || !bps || pages <= 0)
1622                 return 0;
1623
1624         mutex_lock(&con->recovery_lock);
1625         data = con->eh_data;
1626         if (!data)
1627                 goto out;
1628
1629         if (data->space_left <= pages)
1630                 if (amdgpu_ras_realloc_eh_data_space(adev, data, pages)) {
1631                         ret = -ENOMEM;
1632                         goto out;
1633                 }
1634
1635         memcpy(&data->bps[data->count], bps, pages * sizeof(*data->bps));
1636         data->count += pages;
1637         data->space_left -= pages;
1638
1639 out:
1640         mutex_unlock(&con->recovery_lock);
1641
1642         return ret;
1643 }
1644
1645 /*
1646  * write error record array to eeprom, the function should be
1647  * protected by recovery_lock
1648  */
1649 static int amdgpu_ras_save_bad_pages(struct amdgpu_device *adev)
1650 {
1651         struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1652         struct ras_err_handler_data *data;
1653         struct amdgpu_ras_eeprom_control *control;
1654         int save_count;
1655
1656         if (!con || !con->eh_data)
1657                 return 0;
1658
1659         control = &con->eeprom_control;
1660         data = con->eh_data;
1661         save_count = data->count - control->num_recs;
1662         /* only new entries are saved */
1663         if (save_count > 0) {
1664                 if (amdgpu_ras_eeprom_process_recods(control,
1665                                                         &data->bps[control->num_recs],
1666                                                         true,
1667                                                         save_count)) {
1668                         dev_err(adev->dev, "Failed to save EEPROM table data!");
1669                         return -EIO;
1670                 }
1671
1672                 dev_info(adev->dev, "Saved %d pages to EEPROM table.\n", save_count);
1673         }
1674
1675         return 0;
1676 }
1677
1678 /*
1679  * read error record array in eeprom and reserve enough space for
1680  * storing new bad pages
1681  */
1682 static int amdgpu_ras_load_bad_pages(struct amdgpu_device *adev)
1683 {
1684         struct amdgpu_ras_eeprom_control *control =
1685                                         &adev->psp.ras.ras->eeprom_control;
1686         struct eeprom_table_record *bps = NULL;
1687         int ret = 0;
1688
1689         /* no bad page record, skip eeprom access */
1690         if (!control->num_recs || (amdgpu_bad_page_threshold == 0))
1691                 return ret;
1692
1693         bps = kcalloc(control->num_recs, sizeof(*bps), GFP_KERNEL);
1694         if (!bps)
1695                 return -ENOMEM;
1696
1697         if (amdgpu_ras_eeprom_process_recods(control, bps, false,
1698                 control->num_recs)) {
1699                 dev_err(adev->dev, "Failed to load EEPROM table records!");
1700                 ret = -EIO;
1701                 goto out;
1702         }
1703
1704         ret = amdgpu_ras_add_bad_pages(adev, bps, control->num_recs);
1705
1706 out:
1707         kfree(bps);
1708         return ret;
1709 }
1710
1711 /*
1712  * check if an address belongs to bad page
1713  *
1714  * Note: this check is only for umc block
1715  */
1716 static bool amdgpu_ras_check_bad_page(struct amdgpu_device *adev,
1717                                 uint64_t addr)
1718 {
1719         struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1720         struct ras_err_handler_data *data;
1721         int i;
1722         bool ret = false;
1723
1724         if (!con || !con->eh_data)
1725                 return ret;
1726
1727         mutex_lock(&con->recovery_lock);
1728         data = con->eh_data;
1729         if (!data)
1730                 goto out;
1731
1732         addr >>= AMDGPU_GPU_PAGE_SHIFT;
1733         for (i = 0; i < data->count; i++)
1734                 if (addr == data->bps[i].retired_page) {
1735                         ret = true;
1736                         goto out;
1737                 }
1738
1739 out:
1740         mutex_unlock(&con->recovery_lock);
1741         return ret;
1742 }
1743
1744 static void amdgpu_ras_validate_threshold(struct amdgpu_device *adev,
1745                                         uint32_t max_length)
1746 {
1747         struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1748         int tmp_threshold = amdgpu_bad_page_threshold;
1749         u64 val;
1750
1751         /*
1752          * Justification of value bad_page_cnt_threshold in ras structure
1753          *
1754          * Generally, -1 <= amdgpu_bad_page_threshold <= max record length
1755          * in eeprom, and introduce two scenarios accordingly.
1756          *
1757          * Bad page retirement enablement:
1758          *    - If amdgpu_bad_page_threshold = -1,
1759          *      bad_page_cnt_threshold = typical value by formula.
1760          *
1761          *    - When the value from user is 0 < amdgpu_bad_page_threshold <
1762          *      max record length in eeprom, use it directly.
1763          *
1764          * Bad page retirement disablement:
1765          *    - If amdgpu_bad_page_threshold = 0, bad page retirement
1766          *      functionality is disabled, and bad_page_cnt_threshold will
1767          *      take no effect.
1768          */
1769
1770         if (tmp_threshold < -1)
1771                 tmp_threshold = -1;
1772         else if (tmp_threshold > max_length)
1773                 tmp_threshold = max_length;
1774
1775         if (tmp_threshold == -1) {
1776                 val = adev->gmc.mc_vram_size;
1777                 do_div(val, RAS_BAD_PAGE_RATE);
1778                 con->bad_page_cnt_threshold = min(lower_32_bits(val),
1779                                                 max_length);
1780         } else {
1781                 con->bad_page_cnt_threshold = tmp_threshold;
1782         }
1783 }
1784
1785 /* called in gpu recovery/init */
1786 int amdgpu_ras_reserve_bad_pages(struct amdgpu_device *adev)
1787 {
1788         struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1789         struct ras_err_handler_data *data;
1790         uint64_t bp;
1791         struct amdgpu_bo *bo = NULL;
1792         int i, ret = 0;
1793
1794         /* Not reserve bad page when amdgpu_bad_page_threshold == 0. */
1795         if (!con || !con->eh_data || (amdgpu_bad_page_threshold == 0))
1796                 return 0;
1797
1798         mutex_lock(&con->recovery_lock);
1799         data = con->eh_data;
1800         if (!data)
1801                 goto out;
1802         /* reserve vram at driver post stage. */
1803         for (i = data->last_reserved; i < data->count; i++) {
1804                 bp = data->bps[i].retired_page;
1805
1806                 /* There are two cases of reserve error should be ignored:
1807                  * 1) a ras bad page has been allocated (used by someone);
1808                  * 2) a ras bad page has been reserved (duplicate error injection
1809                  *    for one page);
1810                  */
1811                 if (amdgpu_bo_create_kernel_at(adev, bp << AMDGPU_GPU_PAGE_SHIFT,
1812                                                AMDGPU_GPU_PAGE_SIZE,
1813                                                AMDGPU_GEM_DOMAIN_VRAM,
1814                                                &bo, NULL))
1815                         dev_warn(adev->dev, "RAS WARN: reserve vram for "
1816                                         "retired page %llx fail\n", bp);
1817
1818                 data->bps_bo[i] = bo;
1819                 data->last_reserved = i + 1;
1820                 bo = NULL;
1821         }
1822
1823         /* continue to save bad pages to eeprom even reesrve_vram fails */
1824         ret = amdgpu_ras_save_bad_pages(adev);
1825 out:
1826         mutex_unlock(&con->recovery_lock);
1827         return ret;
1828 }
1829
1830 /* called when driver unload */
1831 static int amdgpu_ras_release_bad_pages(struct amdgpu_device *adev)
1832 {
1833         struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1834         struct ras_err_handler_data *data;
1835         struct amdgpu_bo *bo;
1836         int i;
1837
1838         if (!con || !con->eh_data)
1839                 return 0;
1840
1841         mutex_lock(&con->recovery_lock);
1842         data = con->eh_data;
1843         if (!data)
1844                 goto out;
1845
1846         for (i = data->last_reserved - 1; i >= 0; i--) {
1847                 bo = data->bps_bo[i];
1848
1849                 amdgpu_bo_free_kernel(&bo, NULL, NULL);
1850
1851                 data->bps_bo[i] = bo;
1852                 data->last_reserved = i;
1853         }
1854 out:
1855         mutex_unlock(&con->recovery_lock);
1856         return 0;
1857 }
1858
1859 int amdgpu_ras_recovery_init(struct amdgpu_device *adev)
1860 {
1861         struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1862         struct ras_err_handler_data **data;
1863         uint32_t max_eeprom_records_len = 0;
1864         bool exc_err_limit = false;
1865         int ret;
1866
1867         if (con)
1868                 data = &con->eh_data;
1869         else
1870                 return 0;
1871
1872         *data = kmalloc(sizeof(**data), GFP_KERNEL | __GFP_ZERO);
1873         if (!*data) {
1874                 ret = -ENOMEM;
1875                 goto out;
1876         }
1877
1878         mutex_init(&con->recovery_lock);
1879         INIT_WORK(&con->recovery_work, amdgpu_ras_do_recovery);
1880         atomic_set(&con->in_recovery, 0);
1881         con->adev = adev;
1882
1883         max_eeprom_records_len = amdgpu_ras_eeprom_get_record_max_length();
1884         amdgpu_ras_validate_threshold(adev, max_eeprom_records_len);
1885
1886         ret = amdgpu_ras_eeprom_init(&con->eeprom_control, &exc_err_limit);
1887         /*
1888          * This calling fails when exc_err_limit is true or
1889          * ret != 0.
1890          */
1891         if (exc_err_limit || ret)
1892                 goto free;
1893
1894         if (con->eeprom_control.num_recs) {
1895                 ret = amdgpu_ras_load_bad_pages(adev);
1896                 if (ret)
1897                         goto free;
1898                 ret = amdgpu_ras_reserve_bad_pages(adev);
1899                 if (ret)
1900                         goto release;
1901         }
1902
1903         return 0;
1904
1905 release:
1906         amdgpu_ras_release_bad_pages(adev);
1907 free:
1908         kfree((*data)->bps);
1909         kfree((*data)->bps_bo);
1910         kfree(*data);
1911         con->eh_data = NULL;
1912 out:
1913         dev_warn(adev->dev, "Failed to initialize ras recovery!\n");
1914
1915         /*
1916          * Except error threshold exceeding case, other failure cases in this
1917          * function would not fail amdgpu driver init.
1918          */
1919         if (!exc_err_limit)
1920                 ret = 0;
1921         else
1922                 ret = -EINVAL;
1923
1924         return ret;
1925 }
1926
1927 static int amdgpu_ras_recovery_fini(struct amdgpu_device *adev)
1928 {
1929         struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1930         struct ras_err_handler_data *data = con->eh_data;
1931
1932         /* recovery_init failed to init it, fini is useless */
1933         if (!data)
1934                 return 0;
1935
1936         cancel_work_sync(&con->recovery_work);
1937         amdgpu_ras_release_bad_pages(adev);
1938
1939         mutex_lock(&con->recovery_lock);
1940         con->eh_data = NULL;
1941         kfree(data->bps);
1942         kfree(data->bps_bo);
1943         kfree(data);
1944         mutex_unlock(&con->recovery_lock);
1945
1946         return 0;
1947 }
1948 /* recovery end */
1949
1950 /* return 0 if ras will reset gpu and repost.*/
1951 int amdgpu_ras_request_reset_on_boot(struct amdgpu_device *adev,
1952                 unsigned int block)
1953 {
1954         struct amdgpu_ras *ras = amdgpu_ras_get_context(adev);
1955
1956         if (!ras)
1957                 return -EINVAL;
1958
1959         ras->flags |= AMDGPU_RAS_FLAG_INIT_NEED_RESET;
1960         return 0;
1961 }
1962
1963 /*
1964  * check hardware's ras ability which will be saved in hw_supported.
1965  * if hardware does not support ras, we can skip some ras initializtion and
1966  * forbid some ras operations from IP.
1967  * if software itself, say boot parameter, limit the ras ability. We still
1968  * need allow IP do some limited operations, like disable. In such case,
1969  * we have to initialize ras as normal. but need check if operation is
1970  * allowed or not in each function.
1971  */
1972 static void amdgpu_ras_check_supported(struct amdgpu_device *adev,
1973                 uint32_t *hw_supported, uint32_t *supported)
1974 {
1975         *hw_supported = 0;
1976         *supported = 0;
1977
1978         if (amdgpu_sriov_vf(adev) || !adev->is_atom_fw ||
1979             (adev->asic_type != CHIP_VEGA20   &&
1980              adev->asic_type != CHIP_ARCTURUS &&
1981              adev->asic_type != CHIP_SIENNA_CICHLID))
1982                 return;
1983
1984         if (amdgpu_atomfirmware_mem_ecc_supported(adev)) {
1985                 dev_info(adev->dev, "HBM ECC is active.\n");
1986                 *hw_supported |= (1 << AMDGPU_RAS_BLOCK__UMC |
1987                                 1 << AMDGPU_RAS_BLOCK__DF);
1988         } else
1989                 dev_info(adev->dev, "HBM ECC is not presented.\n");
1990
1991         if (amdgpu_atomfirmware_sram_ecc_supported(adev)) {
1992                 dev_info(adev->dev, "SRAM ECC is active.\n");
1993                 *hw_supported |= ~(1 << AMDGPU_RAS_BLOCK__UMC |
1994                                 1 << AMDGPU_RAS_BLOCK__DF);
1995         } else
1996                 dev_info(adev->dev, "SRAM ECC is not presented.\n");
1997
1998         /* hw_supported needs to be aligned with RAS block mask. */
1999         *hw_supported &= AMDGPU_RAS_BLOCK_MASK;
2000
2001         *supported = amdgpu_ras_enable == 0 ?
2002                         0 : *hw_supported & amdgpu_ras_mask;
2003 }
2004
2005 int amdgpu_ras_init(struct amdgpu_device *adev)
2006 {
2007         struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2008         int r;
2009
2010         if (con)
2011                 return 0;
2012
2013         con = kmalloc(sizeof(struct amdgpu_ras) +
2014                         sizeof(struct ras_manager) * AMDGPU_RAS_BLOCK_COUNT,
2015                         GFP_KERNEL|__GFP_ZERO);
2016         if (!con)
2017                 return -ENOMEM;
2018
2019         con->objs = (struct ras_manager *)(con + 1);
2020
2021         amdgpu_ras_set_context(adev, con);
2022
2023         amdgpu_ras_check_supported(adev, &con->hw_supported,
2024                         &con->supported);
2025         if (!con->hw_supported) {
2026                 r = 0;
2027                 goto err_out;
2028         }
2029
2030         con->features = 0;
2031         INIT_LIST_HEAD(&con->head);
2032         /* Might need get this flag from vbios. */
2033         con->flags = RAS_DEFAULT_FLAGS;
2034
2035         if (adev->nbio.funcs->init_ras_controller_interrupt) {
2036                 r = adev->nbio.funcs->init_ras_controller_interrupt(adev);
2037                 if (r)
2038                         goto err_out;
2039         }
2040
2041         if (adev->nbio.funcs->init_ras_err_event_athub_interrupt) {
2042                 r = adev->nbio.funcs->init_ras_err_event_athub_interrupt(adev);
2043                 if (r)
2044                         goto err_out;
2045         }
2046
2047         if (amdgpu_ras_fs_init(adev)) {
2048                 r = -EINVAL;
2049                 goto err_out;
2050         }
2051
2052         dev_info(adev->dev, "RAS INFO: ras initialized successfully, "
2053                         "hardware ability[%x] ras_mask[%x]\n",
2054                         con->hw_supported, con->supported);
2055         return 0;
2056 err_out:
2057         amdgpu_ras_set_context(adev, NULL);
2058         kfree(con);
2059
2060         return r;
2061 }
2062
2063 /* helper function to handle common stuff in ip late init phase */
2064 int amdgpu_ras_late_init(struct amdgpu_device *adev,
2065                          struct ras_common_if *ras_block,
2066                          struct ras_fs_if *fs_info,
2067                          struct ras_ih_if *ih_info)
2068 {
2069         int r;
2070
2071         /* disable RAS feature per IP block if it is not supported */
2072         if (!amdgpu_ras_is_supported(adev, ras_block->block)) {
2073                 amdgpu_ras_feature_enable_on_boot(adev, ras_block, 0);
2074                 return 0;
2075         }
2076
2077         r = amdgpu_ras_feature_enable_on_boot(adev, ras_block, 1);
2078         if (r) {
2079                 if (r == -EAGAIN) {
2080                         /* request gpu reset. will run again */
2081                         amdgpu_ras_request_reset_on_boot(adev,
2082                                         ras_block->block);
2083                         return 0;
2084                 } else if (adev->in_suspend || adev->in_gpu_reset) {
2085                         /* in resume phase, if fail to enable ras,
2086                          * clean up all ras fs nodes, and disable ras */
2087                         goto cleanup;
2088                 } else
2089                         return r;
2090         }
2091
2092         /* in resume phase, no need to create ras fs node */
2093         if (adev->in_suspend || adev->in_gpu_reset)
2094                 return 0;
2095
2096         if (ih_info->cb) {
2097                 r = amdgpu_ras_interrupt_add_handler(adev, ih_info);
2098                 if (r)
2099                         goto interrupt;
2100         }
2101
2102         r = amdgpu_ras_sysfs_create(adev, fs_info);
2103         if (r)
2104                 goto sysfs;
2105
2106         return 0;
2107 cleanup:
2108         amdgpu_ras_sysfs_remove(adev, ras_block);
2109 sysfs:
2110         if (ih_info->cb)
2111                 amdgpu_ras_interrupt_remove_handler(adev, ih_info);
2112 interrupt:
2113         amdgpu_ras_feature_enable(adev, ras_block, 0);
2114         return r;
2115 }
2116
2117 /* helper function to remove ras fs node and interrupt handler */
2118 void amdgpu_ras_late_fini(struct amdgpu_device *adev,
2119                           struct ras_common_if *ras_block,
2120                           struct ras_ih_if *ih_info)
2121 {
2122         if (!ras_block || !ih_info)
2123                 return;
2124
2125         amdgpu_ras_sysfs_remove(adev, ras_block);
2126         if (ih_info->cb)
2127                 amdgpu_ras_interrupt_remove_handler(adev, ih_info);
2128         amdgpu_ras_feature_enable(adev, ras_block, 0);
2129 }
2130
2131 /* do some init work after IP late init as dependence.
2132  * and it runs in resume/gpu reset/booting up cases.
2133  */
2134 void amdgpu_ras_resume(struct amdgpu_device *adev)
2135 {
2136         struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2137         struct ras_manager *obj, *tmp;
2138
2139         if (!con)
2140                 return;
2141
2142         if (con->flags & AMDGPU_RAS_FLAG_INIT_BY_VBIOS) {
2143                 /* Set up all other IPs which are not implemented. There is a
2144                  * tricky thing that IP's actual ras error type should be
2145                  * MULTI_UNCORRECTABLE, but as driver does not handle it, so
2146                  * ERROR_NONE make sense anyway.
2147                  */
2148                 amdgpu_ras_enable_all_features(adev, 1);
2149
2150                 /* We enable ras on all hw_supported block, but as boot
2151                  * parameter might disable some of them and one or more IP has
2152                  * not implemented yet. So we disable them on behalf.
2153                  */
2154                 list_for_each_entry_safe(obj, tmp, &con->head, node) {
2155                         if (!amdgpu_ras_is_supported(adev, obj->head.block)) {
2156                                 amdgpu_ras_feature_enable(adev, &obj->head, 0);
2157                                 /* there should be no any reference. */
2158                                 WARN_ON(alive_obj(obj));
2159                         }
2160                 }
2161         }
2162
2163         if (con->flags & AMDGPU_RAS_FLAG_INIT_NEED_RESET) {
2164                 con->flags &= ~AMDGPU_RAS_FLAG_INIT_NEED_RESET;
2165                 /* setup ras obj state as disabled.
2166                  * for init_by_vbios case.
2167                  * if we want to enable ras, just enable it in a normal way.
2168                  * If we want do disable it, need setup ras obj as enabled,
2169                  * then issue another TA disable cmd.
2170                  * See feature_enable_on_boot
2171                  */
2172                 amdgpu_ras_disable_all_features(adev, 1);
2173                 amdgpu_ras_reset_gpu(adev);
2174         }
2175 }
2176
2177 void amdgpu_ras_suspend(struct amdgpu_device *adev)
2178 {
2179         struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2180
2181         if (!con)
2182                 return;
2183
2184         amdgpu_ras_disable_all_features(adev, 0);
2185         /* Make sure all ras objects are disabled. */
2186         if (con->features)
2187                 amdgpu_ras_disable_all_features(adev, 1);
2188 }
2189
2190 /* do some fini work before IP fini as dependence */
2191 int amdgpu_ras_pre_fini(struct amdgpu_device *adev)
2192 {
2193         struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2194
2195         if (!con)
2196                 return 0;
2197
2198         /* Need disable ras on all IPs here before ip [hw/sw]fini */
2199         amdgpu_ras_disable_all_features(adev, 0);
2200         amdgpu_ras_recovery_fini(adev);
2201         return 0;
2202 }
2203
2204 int amdgpu_ras_fini(struct amdgpu_device *adev)
2205 {
2206         struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2207
2208         if (!con)
2209                 return 0;
2210
2211         amdgpu_ras_fs_fini(adev);
2212         amdgpu_ras_interrupt_remove_all(adev);
2213
2214         WARN(con->features, "Feature mask is not cleared");
2215
2216         if (con->features)
2217                 amdgpu_ras_disable_all_features(adev, 1);
2218
2219         amdgpu_ras_set_context(adev, NULL);
2220         kfree(con);
2221
2222         return 0;
2223 }
2224
2225 void amdgpu_ras_global_ras_isr(struct amdgpu_device *adev)
2226 {
2227         uint32_t hw_supported, supported;
2228
2229         amdgpu_ras_check_supported(adev, &hw_supported, &supported);
2230         if (!hw_supported)
2231                 return;
2232
2233         if (atomic_cmpxchg(&amdgpu_ras_in_intr, 0, 1) == 0) {
2234                 dev_info(adev->dev, "uncorrectable hardware error"
2235                         "(ERREVENT_ATHUB_INTERRUPT) detected!\n");
2236
2237                 amdgpu_ras_reset_gpu(adev);
2238         }
2239 }
2240
2241 bool amdgpu_ras_need_emergency_restart(struct amdgpu_device *adev)
2242 {
2243         if (adev->asic_type == CHIP_VEGA20 &&
2244             adev->pm.fw_version <= 0x283400) {
2245                 return !(amdgpu_asic_reset_method(adev) == AMD_RESET_METHOD_BACO) &&
2246                                 amdgpu_ras_intr_triggered();
2247         }
2248
2249         return false;
2250 }
2251
2252 bool amdgpu_ras_check_err_threshold(struct amdgpu_device *adev)
2253 {
2254         struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2255         bool exc_err_limit = false;
2256
2257         if (con && (amdgpu_bad_page_threshold != 0))
2258                 amdgpu_ras_eeprom_check_err_threshold(&con->eeprom_control,
2259                                                 &exc_err_limit);
2260
2261         /*
2262          * We are only interested in variable exc_err_limit,
2263          * as it says if GPU is in bad state or not.
2264          */
2265         return exc_err_limit;
2266 }