2 * Copyright 2018 Advanced Micro Devices, Inc.
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:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
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.
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>
33 #include "amdgpu_ras.h"
34 #include "amdgpu_atomfirmware.h"
35 #include "amdgpu_xgmi.h"
36 #include "ivsrcid/nbio/irqsrcs_nbif_7_4.h"
38 #ifdef CONFIG_X86_MCE_AMD
41 static bool notifier_registered;
43 static const char *RAS_FS_NAME = "ras";
45 const char *ras_error_string[] = {
49 "multi_uncorrectable",
53 const char *ras_block_string[] = {
73 const char *ras_mca_block_string[] = {
80 struct amdgpu_ras_block_list {
82 struct list_head node;
84 struct amdgpu_ras_block_object *ras_obj;
87 const char *get_ras_block_str(struct ras_common_if *ras_block)
92 if (ras_block->block >= AMDGPU_RAS_BLOCK_COUNT)
93 return "OUT OF RANGE";
95 if (ras_block->block == AMDGPU_RAS_BLOCK__MCA)
96 return ras_mca_block_string[ras_block->sub_block_index];
98 return ras_block_string[ras_block->block];
101 #define ras_block_str(_BLOCK_) \
102 (((_BLOCK_) < ARRAY_SIZE(ras_block_string)) ? ras_block_string[_BLOCK_] : "Out Of Range")
104 #define ras_err_str(i) (ras_error_string[ffs(i)])
106 #define RAS_DEFAULT_FLAGS (AMDGPU_RAS_FLAG_INIT_BY_VBIOS)
108 /* inject address is 52 bits */
109 #define RAS_UMC_INJECT_ADDR_LIMIT (0x1ULL << 52)
111 /* typical ECC bad page rate is 1 bad page per 100MB VRAM */
112 #define RAS_BAD_PAGE_COVER (100 * 1024 * 1024ULL)
114 enum amdgpu_ras_retire_page_reservation {
115 AMDGPU_RAS_RETIRE_PAGE_RESERVED,
116 AMDGPU_RAS_RETIRE_PAGE_PENDING,
117 AMDGPU_RAS_RETIRE_PAGE_FAULT,
120 atomic_t amdgpu_ras_in_intr = ATOMIC_INIT(0);
122 static bool amdgpu_ras_check_bad_page_unlock(struct amdgpu_ras *con,
124 static bool amdgpu_ras_check_bad_page(struct amdgpu_device *adev,
126 #ifdef CONFIG_X86_MCE_AMD
127 static void amdgpu_register_bad_pages_mca_notifier(struct amdgpu_device *adev);
128 struct mce_notifier_adev_list {
129 struct amdgpu_device *devs[MAX_GPU_INSTANCE];
132 static struct mce_notifier_adev_list mce_adev_list;
135 void amdgpu_ras_set_error_query_ready(struct amdgpu_device *adev, bool ready)
137 if (adev && amdgpu_ras_get_context(adev))
138 amdgpu_ras_get_context(adev)->error_query_ready = ready;
141 static bool amdgpu_ras_get_error_query_ready(struct amdgpu_device *adev)
143 if (adev && amdgpu_ras_get_context(adev))
144 return amdgpu_ras_get_context(adev)->error_query_ready;
149 static int amdgpu_reserve_page_direct(struct amdgpu_device *adev, uint64_t address)
151 struct ras_err_data err_data = {0, 0, 0, NULL};
152 struct eeprom_table_record err_rec;
154 if ((address >= adev->gmc.mc_vram_size) ||
155 (address >= RAS_UMC_INJECT_ADDR_LIMIT)) {
157 "RAS WARN: input address 0x%llx is invalid.\n",
162 if (amdgpu_ras_check_bad_page(adev, address)) {
164 "RAS WARN: 0x%llx has already been marked as bad page!\n",
169 memset(&err_rec, 0x0, sizeof(struct eeprom_table_record));
170 err_data.err_addr = &err_rec;
171 amdgpu_umc_fill_error_record(&err_data, address,
172 (address >> AMDGPU_GPU_PAGE_SHIFT), 0, 0);
174 if (amdgpu_bad_page_threshold != 0) {
175 amdgpu_ras_add_bad_pages(adev, err_data.err_addr,
176 err_data.err_addr_cnt);
177 amdgpu_ras_save_bad_pages(adev);
180 dev_warn(adev->dev, "WARNING: THIS IS ONLY FOR TEST PURPOSES AND WILL CORRUPT RAS EEPROM\n");
181 dev_warn(adev->dev, "Clear EEPROM:\n");
182 dev_warn(adev->dev, " echo 1 > /sys/kernel/debug/dri/0/ras/ras_eeprom_reset\n");
187 static ssize_t amdgpu_ras_debugfs_read(struct file *f, char __user *buf,
188 size_t size, loff_t *pos)
190 struct ras_manager *obj = (struct ras_manager *)file_inode(f)->i_private;
191 struct ras_query_if info = {
197 if (amdgpu_ras_query_error_status(obj->adev, &info))
200 s = snprintf(val, sizeof(val), "%s: %lu\n%s: %lu\n",
202 "ce", info.ce_count);
207 s = min_t(u64, s, size);
210 if (copy_to_user(buf, &val[*pos], s))
218 static const struct file_operations amdgpu_ras_debugfs_ops = {
219 .owner = THIS_MODULE,
220 .read = amdgpu_ras_debugfs_read,
222 .llseek = default_llseek
225 static int amdgpu_ras_find_block_id_by_name(const char *name, int *block_id)
229 for (i = 0; i < ARRAY_SIZE(ras_block_string); i++) {
231 if (strcmp(name, ras_block_string[i]) == 0)
237 static int amdgpu_ras_debugfs_ctrl_parse_data(struct file *f,
238 const char __user *buf, size_t size,
239 loff_t *pos, struct ras_debug_if *data)
241 ssize_t s = min_t(u64, 64, size);
254 memset(str, 0, sizeof(str));
255 memset(data, 0, sizeof(*data));
257 if (copy_from_user(str, buf, s))
260 if (sscanf(str, "disable %32s", block_name) == 1)
262 else if (sscanf(str, "enable %32s %8s", block_name, err) == 2)
264 else if (sscanf(str, "inject %32s %8s", block_name, err) == 2)
266 else if (strstr(str, "retire_page") != NULL)
268 else if (str[0] && str[1] && str[2] && str[3])
269 /* ascii string, but commands are not matched. */
274 if (sscanf(str, "%*s 0x%llx", &address) != 1 &&
275 sscanf(str, "%*s %llu", &address) != 1)
279 data->inject.address = address;
284 if (amdgpu_ras_find_block_id_by_name(block_name, &block_id))
287 data->head.block = block_id;
288 /* only ue and ce errors are supported */
289 if (!memcmp("ue", err, 2))
290 data->head.type = AMDGPU_RAS_ERROR__MULTI_UNCORRECTABLE;
291 else if (!memcmp("ce", err, 2))
292 data->head.type = AMDGPU_RAS_ERROR__SINGLE_CORRECTABLE;
299 if (sscanf(str, "%*s %*s %*s 0x%x 0x%llx 0x%llx",
300 &sub_block, &address, &value) != 3 &&
301 sscanf(str, "%*s %*s %*s %u %llu %llu",
302 &sub_block, &address, &value) != 3)
304 data->head.sub_block_index = sub_block;
305 data->inject.address = address;
306 data->inject.value = value;
309 if (size < sizeof(*data))
312 if (copy_from_user(data, buf, sizeof(*data)))
320 * DOC: AMDGPU RAS debugfs control interface
322 * The control interface accepts struct ras_debug_if which has two members.
324 * First member: ras_debug_if::head or ras_debug_if::inject.
326 * head is used to indicate which IP block will be under control.
328 * head has four members, they are block, type, sub_block_index, name.
329 * block: which IP will be under control.
330 * type: what kind of error will be enabled/disabled/injected.
331 * sub_block_index: some IPs have subcomponets. say, GFX, sDMA.
332 * name: the name of IP.
334 * inject has two more members than head, they are address, value.
335 * As their names indicate, inject operation will write the
336 * value to the address.
338 * The second member: struct ras_debug_if::op.
339 * It has three kinds of operations.
341 * - 0: disable RAS on the block. Take ::head as its data.
342 * - 1: enable RAS on the block. Take ::head as its data.
343 * - 2: inject errors on the block. Take ::inject as its data.
345 * How to use the interface?
349 * Copy the struct ras_debug_if in your code and initialize it.
350 * Write the struct to the control interface.
354 * .. code-block:: bash
356 * echo "disable <block>" > /sys/kernel/debug/dri/<N>/ras/ras_ctrl
357 * echo "enable <block> <error>" > /sys/kernel/debug/dri/<N>/ras/ras_ctrl
358 * echo "inject <block> <error> <sub-block> <address> <value> > /sys/kernel/debug/dri/<N>/ras/ras_ctrl
360 * Where N, is the card which you want to affect.
362 * "disable" requires only the block.
363 * "enable" requires the block and error type.
364 * "inject" requires the block, error type, address, and value.
366 * The block is one of: umc, sdma, gfx, etc.
367 * see ras_block_string[] for details
369 * The error type is one of: ue, ce, where,
370 * ue is multi-uncorrectable
371 * ce is single-correctable
373 * The sub-block is a the sub-block index, pass 0 if there is no sub-block.
374 * The address and value are hexadecimal numbers, leading 0x is optional.
378 * .. code-block:: bash
380 * echo inject umc ue 0x0 0x0 0x0 > /sys/kernel/debug/dri/0/ras/ras_ctrl
381 * echo inject umc ce 0 0 0 > /sys/kernel/debug/dri/0/ras/ras_ctrl
382 * echo disable umc > /sys/kernel/debug/dri/0/ras/ras_ctrl
384 * How to check the result of the operation?
386 * To check disable/enable, see "ras" features at,
387 * /sys/class/drm/card[0/1/2...]/device/ras/features
389 * To check inject, see the corresponding error count at,
390 * /sys/class/drm/card[0/1/2...]/device/ras/[gfx|sdma|umc|...]_err_count
393 * Operations are only allowed on blocks which are supported.
394 * Check the "ras" mask at /sys/module/amdgpu/parameters/ras_mask
395 * to see which blocks support RAS on a particular asic.
398 static ssize_t amdgpu_ras_debugfs_ctrl_write(struct file *f,
399 const char __user *buf,
400 size_t size, loff_t *pos)
402 struct amdgpu_device *adev = (struct amdgpu_device *)file_inode(f)->i_private;
403 struct ras_debug_if data;
406 if (!amdgpu_ras_get_error_query_ready(adev)) {
407 dev_warn(adev->dev, "RAS WARN: error injection "
408 "currently inaccessible\n");
412 ret = amdgpu_ras_debugfs_ctrl_parse_data(f, buf, size, pos, &data);
417 ret = amdgpu_reserve_page_direct(adev, data.inject.address);
424 if (!amdgpu_ras_is_supported(adev, data.head.block))
429 ret = amdgpu_ras_feature_enable(adev, &data.head, 0);
432 ret = amdgpu_ras_feature_enable(adev, &data.head, 1);
435 if ((data.inject.address >= adev->gmc.mc_vram_size) ||
436 (data.inject.address >= RAS_UMC_INJECT_ADDR_LIMIT)) {
437 dev_warn(adev->dev, "RAS WARN: input address "
438 "0x%llx is invalid.",
439 data.inject.address);
444 /* umc ce/ue error injection for a bad page is not allowed */
445 if ((data.head.block == AMDGPU_RAS_BLOCK__UMC) &&
446 amdgpu_ras_check_bad_page(adev, data.inject.address)) {
447 dev_warn(adev->dev, "RAS WARN: inject: 0x%llx has "
448 "already been marked as bad!\n",
449 data.inject.address);
453 /* data.inject.address is offset instead of absolute gpu address */
454 ret = amdgpu_ras_error_inject(adev, &data.inject);
468 * DOC: AMDGPU RAS debugfs EEPROM table reset interface
470 * Some boards contain an EEPROM which is used to persistently store a list of
471 * bad pages which experiences ECC errors in vram. This interface provides
472 * a way to reset the EEPROM, e.g., after testing error injection.
476 * .. code-block:: bash
478 * echo 1 > ../ras/ras_eeprom_reset
480 * will reset EEPROM table to 0 entries.
483 static ssize_t amdgpu_ras_debugfs_eeprom_write(struct file *f,
484 const char __user *buf,
485 size_t size, loff_t *pos)
487 struct amdgpu_device *adev =
488 (struct amdgpu_device *)file_inode(f)->i_private;
491 ret = amdgpu_ras_eeprom_reset_table(
492 &(amdgpu_ras_get_context(adev)->eeprom_control));
495 /* Something was written to EEPROM.
497 amdgpu_ras_get_context(adev)->flags = RAS_DEFAULT_FLAGS;
504 static const struct file_operations amdgpu_ras_debugfs_ctrl_ops = {
505 .owner = THIS_MODULE,
507 .write = amdgpu_ras_debugfs_ctrl_write,
508 .llseek = default_llseek
511 static const struct file_operations amdgpu_ras_debugfs_eeprom_ops = {
512 .owner = THIS_MODULE,
514 .write = amdgpu_ras_debugfs_eeprom_write,
515 .llseek = default_llseek
519 * DOC: AMDGPU RAS sysfs Error Count Interface
521 * It allows the user to read the error count for each IP block on the gpu through
522 * /sys/class/drm/card[0/1/2...]/device/ras/[gfx/sdma/...]_err_count
524 * It outputs the multiple lines which report the uncorrected (ue) and corrected
527 * The format of one line is below,
533 * .. code-block:: bash
539 static ssize_t amdgpu_ras_sysfs_read(struct device *dev,
540 struct device_attribute *attr, char *buf)
542 struct ras_manager *obj = container_of(attr, struct ras_manager, sysfs_attr);
543 struct ras_query_if info = {
547 if (!amdgpu_ras_get_error_query_ready(obj->adev))
548 return sysfs_emit(buf, "Query currently inaccessible\n");
550 if (amdgpu_ras_query_error_status(obj->adev, &info))
553 if (obj->adev->asic_type == CHIP_ALDEBARAN) {
554 if (amdgpu_ras_reset_error_status(obj->adev, info.head.block))
555 DRM_WARN("Failed to reset error counter and error status");
558 return sysfs_emit(buf, "%s: %lu\n%s: %lu\n", "ue", info.ue_count,
559 "ce", info.ce_count);
564 #define get_obj(obj) do { (obj)->use++; } while (0)
565 #define alive_obj(obj) ((obj)->use)
567 static inline void put_obj(struct ras_manager *obj)
569 if (obj && (--obj->use == 0))
570 list_del(&obj->node);
571 if (obj && (obj->use < 0))
572 DRM_ERROR("RAS ERROR: Unbalance obj(%s) use\n", get_ras_block_str(&obj->head));
575 /* make one obj and return it. */
576 static struct ras_manager *amdgpu_ras_create_obj(struct amdgpu_device *adev,
577 struct ras_common_if *head)
579 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
580 struct ras_manager *obj;
582 if (!adev->ras_enabled || !con)
585 if (head->block >= AMDGPU_RAS_BLOCK_COUNT)
588 if (head->block == AMDGPU_RAS_BLOCK__MCA) {
589 if (head->sub_block_index >= AMDGPU_RAS_MCA_BLOCK__LAST)
592 obj = &con->objs[AMDGPU_RAS_BLOCK__LAST + head->sub_block_index];
594 obj = &con->objs[head->block];
596 /* already exist. return obj? */
602 list_add(&obj->node, &con->head);
608 /* return an obj equal to head, or the first when head is NULL */
609 struct ras_manager *amdgpu_ras_find_obj(struct amdgpu_device *adev,
610 struct ras_common_if *head)
612 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
613 struct ras_manager *obj;
616 if (!adev->ras_enabled || !con)
620 if (head->block >= AMDGPU_RAS_BLOCK_COUNT)
623 if (head->block == AMDGPU_RAS_BLOCK__MCA) {
624 if (head->sub_block_index >= AMDGPU_RAS_MCA_BLOCK__LAST)
627 obj = &con->objs[AMDGPU_RAS_BLOCK__LAST + head->sub_block_index];
629 obj = &con->objs[head->block];
634 for (i = 0; i < AMDGPU_RAS_BLOCK_COUNT + AMDGPU_RAS_MCA_BLOCK_COUNT; i++) {
645 /* feature ctl begin */
646 static int amdgpu_ras_is_feature_allowed(struct amdgpu_device *adev,
647 struct ras_common_if *head)
649 return adev->ras_hw_enabled & BIT(head->block);
652 static int amdgpu_ras_is_feature_enabled(struct amdgpu_device *adev,
653 struct ras_common_if *head)
655 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
657 return con->features & BIT(head->block);
661 * if obj is not created, then create one.
662 * set feature enable flag.
664 static int __amdgpu_ras_feature_enable(struct amdgpu_device *adev,
665 struct ras_common_if *head, int enable)
667 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
668 struct ras_manager *obj = amdgpu_ras_find_obj(adev, head);
670 /* If hardware does not support ras, then do not create obj.
671 * But if hardware support ras, we can create the obj.
672 * Ras framework checks con->hw_supported to see if it need do
673 * corresponding initialization.
674 * IP checks con->support to see if it need disable ras.
676 if (!amdgpu_ras_is_feature_allowed(adev, head))
681 obj = amdgpu_ras_create_obj(adev, head);
685 /* In case we create obj somewhere else */
688 con->features |= BIT(head->block);
690 if (obj && amdgpu_ras_is_feature_enabled(adev, head)) {
691 con->features &= ~BIT(head->block);
699 /* wrapper of psp_ras_enable_features */
700 int amdgpu_ras_feature_enable(struct amdgpu_device *adev,
701 struct ras_common_if *head, bool enable)
703 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
704 union ta_ras_cmd_input *info;
710 info = kzalloc(sizeof(union ta_ras_cmd_input), GFP_KERNEL);
715 info->disable_features = (struct ta_ras_disable_features_input) {
716 .block_id = amdgpu_ras_block_to_ta(head->block),
717 .error_type = amdgpu_ras_error_to_ta(head->type),
720 info->enable_features = (struct ta_ras_enable_features_input) {
721 .block_id = amdgpu_ras_block_to_ta(head->block),
722 .error_type = amdgpu_ras_error_to_ta(head->type),
726 /* Do not enable if it is not allowed. */
727 WARN_ON(enable && !amdgpu_ras_is_feature_allowed(adev, head));
729 if (!amdgpu_ras_intr_triggered()) {
730 ret = psp_ras_enable_features(&adev->psp, info, enable);
732 dev_err(adev->dev, "ras %s %s failed poison:%d ret:%d\n",
733 enable ? "enable":"disable",
734 get_ras_block_str(head),
735 amdgpu_ras_is_poison_mode_supported(adev), ret);
741 __amdgpu_ras_feature_enable(adev, head, enable);
748 /* Only used in device probe stage and called only once. */
749 int amdgpu_ras_feature_enable_on_boot(struct amdgpu_device *adev,
750 struct ras_common_if *head, bool enable)
752 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
758 if (con->flags & AMDGPU_RAS_FLAG_INIT_BY_VBIOS) {
760 /* There is no harm to issue a ras TA cmd regardless of
761 * the currecnt ras state.
762 * If current state == target state, it will do nothing
763 * But sometimes it requests driver to reset and repost
764 * with error code -EAGAIN.
766 ret = amdgpu_ras_feature_enable(adev, head, 1);
767 /* With old ras TA, we might fail to enable ras.
768 * Log it and just setup the object.
769 * TODO need remove this WA in the future.
771 if (ret == -EINVAL) {
772 ret = __amdgpu_ras_feature_enable(adev, head, 1);
775 "RAS INFO: %s setup object\n",
776 get_ras_block_str(head));
779 /* setup the object then issue a ras TA disable cmd.*/
780 ret = __amdgpu_ras_feature_enable(adev, head, 1);
784 /* gfx block ras dsiable cmd must send to ras-ta */
785 if (head->block == AMDGPU_RAS_BLOCK__GFX)
786 con->features |= BIT(head->block);
788 ret = amdgpu_ras_feature_enable(adev, head, 0);
790 /* clean gfx block ras features flag */
791 if (adev->ras_enabled && head->block == AMDGPU_RAS_BLOCK__GFX)
792 con->features &= ~BIT(head->block);
795 ret = amdgpu_ras_feature_enable(adev, head, enable);
800 static int amdgpu_ras_disable_all_features(struct amdgpu_device *adev,
803 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
804 struct ras_manager *obj, *tmp;
806 list_for_each_entry_safe(obj, tmp, &con->head, node) {
808 * aka just release the obj and corresponding flags
811 if (__amdgpu_ras_feature_enable(adev, &obj->head, 0))
814 if (amdgpu_ras_feature_enable(adev, &obj->head, 0))
819 return con->features;
822 static int amdgpu_ras_enable_all_features(struct amdgpu_device *adev,
825 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
827 const enum amdgpu_ras_error_type default_ras_type = AMDGPU_RAS_ERROR__NONE;
829 for (i = 0; i < AMDGPU_RAS_BLOCK_COUNT; i++) {
830 struct ras_common_if head = {
832 .type = default_ras_type,
833 .sub_block_index = 0,
836 if (i == AMDGPU_RAS_BLOCK__MCA)
841 * bypass psp. vbios enable ras for us.
842 * so just create the obj
844 if (__amdgpu_ras_feature_enable(adev, &head, 1))
847 if (amdgpu_ras_feature_enable(adev, &head, 1))
852 for (i = 0; i < AMDGPU_RAS_MCA_BLOCK_COUNT; i++) {
853 struct ras_common_if head = {
854 .block = AMDGPU_RAS_BLOCK__MCA,
855 .type = default_ras_type,
856 .sub_block_index = i,
861 * bypass psp. vbios enable ras for us.
862 * so just create the obj
864 if (__amdgpu_ras_feature_enable(adev, &head, 1))
867 if (amdgpu_ras_feature_enable(adev, &head, 1))
872 return con->features;
874 /* feature ctl end */
876 static int amdgpu_ras_block_match_default(struct amdgpu_ras_block_object *block_obj,
877 enum amdgpu_ras_block block)
882 if (block_obj->ras_comm.block == block)
888 static struct amdgpu_ras_block_object *amdgpu_ras_get_ras_block(struct amdgpu_device *adev,
889 enum amdgpu_ras_block block, uint32_t sub_block_index)
891 struct amdgpu_ras_block_list *node, *tmp;
892 struct amdgpu_ras_block_object *obj;
894 if (block >= AMDGPU_RAS_BLOCK__LAST)
897 if (!amdgpu_ras_is_supported(adev, block))
900 list_for_each_entry_safe(node, tmp, &adev->ras_list, node) {
901 if (!node->ras_obj) {
902 dev_warn(adev->dev, "Warning: abnormal ras list node.\n");
907 if (obj->ras_block_match) {
908 if (obj->ras_block_match(obj, block, sub_block_index) == 0)
911 if (amdgpu_ras_block_match_default(obj, block) == 0)
919 static void amdgpu_ras_get_ecc_info(struct amdgpu_device *adev, struct ras_err_data *err_data)
921 struct amdgpu_ras *ras = amdgpu_ras_get_context(adev);
925 * choosing right query method according to
926 * whether smu support query error information
928 ret = amdgpu_dpm_get_ecc_info(adev, (void *)&(ras->umc_ecc));
929 if (ret == -EOPNOTSUPP) {
930 if (adev->umc.ras && adev->umc.ras->ras_block.hw_ops &&
931 adev->umc.ras->ras_block.hw_ops->query_ras_error_count)
932 adev->umc.ras->ras_block.hw_ops->query_ras_error_count(adev, err_data);
934 /* umc query_ras_error_address is also responsible for clearing
937 if (adev->umc.ras && adev->umc.ras->ras_block.hw_ops &&
938 adev->umc.ras->ras_block.hw_ops->query_ras_error_address)
939 adev->umc.ras->ras_block.hw_ops->query_ras_error_address(adev, err_data);
942 adev->umc.ras->ecc_info_query_ras_error_count)
943 adev->umc.ras->ecc_info_query_ras_error_count(adev, err_data);
946 adev->umc.ras->ecc_info_query_ras_error_address)
947 adev->umc.ras->ecc_info_query_ras_error_address(adev, err_data);
951 /* query/inject/cure begin */
952 int amdgpu_ras_query_error_status(struct amdgpu_device *adev,
953 struct ras_query_if *info)
955 struct amdgpu_ras_block_object *block_obj = NULL;
956 struct ras_manager *obj = amdgpu_ras_find_obj(adev, &info->head);
957 struct ras_err_data err_data = {0, 0, 0, NULL};
962 if (info->head.block == AMDGPU_RAS_BLOCK__UMC) {
963 amdgpu_ras_get_ecc_info(adev, &err_data);
965 block_obj = amdgpu_ras_get_ras_block(adev, info->head.block, 0);
966 if (!block_obj || !block_obj->hw_ops) {
967 dev_dbg_once(adev->dev, "%s doesn't config RAS function\n",
968 get_ras_block_str(&info->head));
972 if (block_obj->hw_ops->query_ras_error_count)
973 block_obj->hw_ops->query_ras_error_count(adev, &err_data);
975 if ((info->head.block == AMDGPU_RAS_BLOCK__SDMA) ||
976 (info->head.block == AMDGPU_RAS_BLOCK__GFX) ||
977 (info->head.block == AMDGPU_RAS_BLOCK__MMHUB)) {
978 if (block_obj->hw_ops->query_ras_error_status)
979 block_obj->hw_ops->query_ras_error_status(adev);
983 obj->err_data.ue_count += err_data.ue_count;
984 obj->err_data.ce_count += err_data.ce_count;
986 info->ue_count = obj->err_data.ue_count;
987 info->ce_count = obj->err_data.ce_count;
989 if (err_data.ce_count) {
990 if (adev->smuio.funcs &&
991 adev->smuio.funcs->get_socket_id &&
992 adev->smuio.funcs->get_die_id) {
993 dev_info(adev->dev, "socket: %d, die: %d "
994 "%ld correctable hardware errors "
995 "detected in %s block, no user "
996 "action is needed.\n",
997 adev->smuio.funcs->get_socket_id(adev),
998 adev->smuio.funcs->get_die_id(adev),
999 obj->err_data.ce_count,
1000 get_ras_block_str(&info->head));
1002 dev_info(adev->dev, "%ld correctable hardware errors "
1003 "detected in %s block, no user "
1004 "action is needed.\n",
1005 obj->err_data.ce_count,
1006 get_ras_block_str(&info->head));
1009 if (err_data.ue_count) {
1010 if (adev->smuio.funcs &&
1011 adev->smuio.funcs->get_socket_id &&
1012 adev->smuio.funcs->get_die_id) {
1013 dev_info(adev->dev, "socket: %d, die: %d "
1014 "%ld uncorrectable hardware errors "
1015 "detected in %s block\n",
1016 adev->smuio.funcs->get_socket_id(adev),
1017 adev->smuio.funcs->get_die_id(adev),
1018 obj->err_data.ue_count,
1019 get_ras_block_str(&info->head));
1021 dev_info(adev->dev, "%ld uncorrectable hardware errors "
1022 "detected in %s block\n",
1023 obj->err_data.ue_count,
1024 get_ras_block_str(&info->head));
1028 if (!amdgpu_persistent_edc_harvesting_supported(adev))
1029 amdgpu_ras_reset_error_status(adev, info->head.block);
1034 int amdgpu_ras_reset_error_status(struct amdgpu_device *adev,
1035 enum amdgpu_ras_block block)
1037 struct amdgpu_ras_block_object *block_obj = amdgpu_ras_get_ras_block(adev, block, 0);
1039 if (!amdgpu_ras_is_supported(adev, block))
1042 if (!block_obj || !block_obj->hw_ops) {
1043 dev_dbg_once(adev->dev, "%s doesn't config RAS function\n",
1044 ras_block_str(block));
1048 if (block_obj->hw_ops->reset_ras_error_count)
1049 block_obj->hw_ops->reset_ras_error_count(adev);
1051 if ((block == AMDGPU_RAS_BLOCK__GFX) ||
1052 (block == AMDGPU_RAS_BLOCK__MMHUB)) {
1053 if (block_obj->hw_ops->reset_ras_error_status)
1054 block_obj->hw_ops->reset_ras_error_status(adev);
1060 /* wrapper of psp_ras_trigger_error */
1061 int amdgpu_ras_error_inject(struct amdgpu_device *adev,
1062 struct ras_inject_if *info)
1064 struct ras_manager *obj = amdgpu_ras_find_obj(adev, &info->head);
1065 struct ta_ras_trigger_error_input block_info = {
1066 .block_id = amdgpu_ras_block_to_ta(info->head.block),
1067 .inject_error_type = amdgpu_ras_error_to_ta(info->head.type),
1068 .sub_block_index = info->head.sub_block_index,
1069 .address = info->address,
1070 .value = info->value,
1073 struct amdgpu_ras_block_object *block_obj = amdgpu_ras_get_ras_block(adev,
1075 info->head.sub_block_index);
1080 if (!block_obj || !block_obj->hw_ops) {
1081 dev_dbg_once(adev->dev, "%s doesn't config RAS function\n",
1082 get_ras_block_str(&info->head));
1086 /* Calculate XGMI relative offset */
1087 if (adev->gmc.xgmi.num_physical_nodes > 1) {
1088 block_info.address =
1089 amdgpu_xgmi_get_relative_phy_addr(adev,
1090 block_info.address);
1093 if (info->head.block == AMDGPU_RAS_BLOCK__GFX) {
1094 if (block_obj->hw_ops->ras_error_inject)
1095 ret = block_obj->hw_ops->ras_error_inject(adev, info);
1097 /* If defined special ras_error_inject(e.g: xgmi), implement special ras_error_inject */
1098 if (block_obj->hw_ops->ras_error_inject)
1099 ret = block_obj->hw_ops->ras_error_inject(adev, &block_info);
1100 else /*If not defined .ras_error_inject, use default ras_error_inject*/
1101 ret = psp_ras_trigger_error(&adev->psp, &block_info);
1105 dev_err(adev->dev, "ras inject %s failed %d\n",
1106 get_ras_block_str(&info->head), ret);
1112 * amdgpu_ras_query_error_count -- Get error counts of all IPs
1113 * @adev: pointer to AMD GPU device
1114 * @ce_count: pointer to an integer to be set to the count of correctible errors.
1115 * @ue_count: pointer to an integer to be set to the count of uncorrectible
1118 * If set, @ce_count or @ue_count, count and return the corresponding
1119 * error counts in those integer pointers. Return 0 if the device
1120 * supports RAS. Return -EOPNOTSUPP if the device doesn't support RAS.
1122 int amdgpu_ras_query_error_count(struct amdgpu_device *adev,
1123 unsigned long *ce_count,
1124 unsigned long *ue_count)
1126 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1127 struct ras_manager *obj;
1128 unsigned long ce, ue;
1130 if (!adev->ras_enabled || !con)
1133 /* Don't count since no reporting.
1135 if (!ce_count && !ue_count)
1140 list_for_each_entry(obj, &con->head, node) {
1141 struct ras_query_if info = {
1146 res = amdgpu_ras_query_error_status(adev, &info);
1150 ce += info.ce_count;
1151 ue += info.ue_count;
1162 /* query/inject/cure end */
1167 static int amdgpu_ras_badpages_read(struct amdgpu_device *adev,
1168 struct ras_badpage **bps, unsigned int *count);
1170 static char *amdgpu_ras_badpage_flags_str(unsigned int flags)
1173 case AMDGPU_RAS_RETIRE_PAGE_RESERVED:
1175 case AMDGPU_RAS_RETIRE_PAGE_PENDING:
1177 case AMDGPU_RAS_RETIRE_PAGE_FAULT:
1184 * DOC: AMDGPU RAS sysfs gpu_vram_bad_pages Interface
1186 * It allows user to read the bad pages of vram on the gpu through
1187 * /sys/class/drm/card[0/1/2...]/device/ras/gpu_vram_bad_pages
1189 * It outputs multiple lines, and each line stands for one gpu page.
1191 * The format of one line is below,
1192 * gpu pfn : gpu page size : flags
1194 * gpu pfn and gpu page size are printed in hex format.
1195 * flags can be one of below character,
1197 * R: reserved, this gpu page is reserved and not able to use.
1199 * P: pending for reserve, this gpu page is marked as bad, will be reserved
1200 * in next window of page_reserve.
1202 * F: unable to reserve. this gpu page can't be reserved due to some reasons.
1206 * .. code-block:: bash
1208 * 0x00000001 : 0x00001000 : R
1209 * 0x00000002 : 0x00001000 : P
1213 static ssize_t amdgpu_ras_sysfs_badpages_read(struct file *f,
1214 struct kobject *kobj, struct bin_attribute *attr,
1215 char *buf, loff_t ppos, size_t count)
1217 struct amdgpu_ras *con =
1218 container_of(attr, struct amdgpu_ras, badpages_attr);
1219 struct amdgpu_device *adev = con->adev;
1220 const unsigned int element_size =
1221 sizeof("0xabcdabcd : 0x12345678 : R\n") - 1;
1222 unsigned int start = div64_ul(ppos + element_size - 1, element_size);
1223 unsigned int end = div64_ul(ppos + count - 1, element_size);
1225 struct ras_badpage *bps = NULL;
1226 unsigned int bps_count = 0;
1228 memset(buf, 0, count);
1230 if (amdgpu_ras_badpages_read(adev, &bps, &bps_count))
1233 for (; start < end && start < bps_count; start++)
1234 s += scnprintf(&buf[s], element_size + 1,
1235 "0x%08x : 0x%08x : %1s\n",
1238 amdgpu_ras_badpage_flags_str(bps[start].flags));
1245 static ssize_t amdgpu_ras_sysfs_features_read(struct device *dev,
1246 struct device_attribute *attr, char *buf)
1248 struct amdgpu_ras *con =
1249 container_of(attr, struct amdgpu_ras, features_attr);
1251 return scnprintf(buf, PAGE_SIZE, "feature mask: 0x%x\n", con->features);
1254 static void amdgpu_ras_sysfs_remove_bad_page_node(struct amdgpu_device *adev)
1256 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1258 sysfs_remove_file_from_group(&adev->dev->kobj,
1259 &con->badpages_attr.attr,
1263 static int amdgpu_ras_sysfs_remove_feature_node(struct amdgpu_device *adev)
1265 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1266 struct attribute *attrs[] = {
1267 &con->features_attr.attr,
1270 struct attribute_group group = {
1271 .name = RAS_FS_NAME,
1275 sysfs_remove_group(&adev->dev->kobj, &group);
1280 int amdgpu_ras_sysfs_create(struct amdgpu_device *adev,
1281 struct ras_common_if *head)
1283 struct ras_manager *obj = amdgpu_ras_find_obj(adev, head);
1285 if (!obj || obj->attr_inuse)
1290 snprintf(obj->fs_data.sysfs_name, sizeof(obj->fs_data.sysfs_name),
1291 "%s_err_count", head->name);
1293 obj->sysfs_attr = (struct device_attribute){
1295 .name = obj->fs_data.sysfs_name,
1298 .show = amdgpu_ras_sysfs_read,
1300 sysfs_attr_init(&obj->sysfs_attr.attr);
1302 if (sysfs_add_file_to_group(&adev->dev->kobj,
1303 &obj->sysfs_attr.attr,
1309 obj->attr_inuse = 1;
1314 int amdgpu_ras_sysfs_remove(struct amdgpu_device *adev,
1315 struct ras_common_if *head)
1317 struct ras_manager *obj = amdgpu_ras_find_obj(adev, head);
1319 if (!obj || !obj->attr_inuse)
1322 sysfs_remove_file_from_group(&adev->dev->kobj,
1323 &obj->sysfs_attr.attr,
1325 obj->attr_inuse = 0;
1331 static int amdgpu_ras_sysfs_remove_all(struct amdgpu_device *adev)
1333 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1334 struct ras_manager *obj, *tmp;
1336 list_for_each_entry_safe(obj, tmp, &con->head, node) {
1337 amdgpu_ras_sysfs_remove(adev, &obj->head);
1340 if (amdgpu_bad_page_threshold != 0)
1341 amdgpu_ras_sysfs_remove_bad_page_node(adev);
1343 amdgpu_ras_sysfs_remove_feature_node(adev);
1350 * DOC: AMDGPU RAS Reboot Behavior for Unrecoverable Errors
1352 * Normally when there is an uncorrectable error, the driver will reset
1353 * the GPU to recover. However, in the event of an unrecoverable error,
1354 * the driver provides an interface to reboot the system automatically
1357 * The following file in debugfs provides that interface:
1358 * /sys/kernel/debug/dri/[0/1/2...]/ras/auto_reboot
1362 * .. code-block:: bash
1364 * echo true > .../ras/auto_reboot
1368 static struct dentry *amdgpu_ras_debugfs_create_ctrl_node(struct amdgpu_device *adev)
1370 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1371 struct drm_minor *minor = adev_to_drm(adev)->primary;
1374 dir = debugfs_create_dir(RAS_FS_NAME, minor->debugfs_root);
1375 debugfs_create_file("ras_ctrl", S_IWUGO | S_IRUGO, dir, adev,
1376 &amdgpu_ras_debugfs_ctrl_ops);
1377 debugfs_create_file("ras_eeprom_reset", S_IWUGO | S_IRUGO, dir, adev,
1378 &amdgpu_ras_debugfs_eeprom_ops);
1379 debugfs_create_u32("bad_page_cnt_threshold", 0444, dir,
1380 &con->bad_page_cnt_threshold);
1381 debugfs_create_x32("ras_hw_enabled", 0444, dir, &adev->ras_hw_enabled);
1382 debugfs_create_x32("ras_enabled", 0444, dir, &adev->ras_enabled);
1383 debugfs_create_file("ras_eeprom_size", S_IRUGO, dir, adev,
1384 &amdgpu_ras_debugfs_eeprom_size_ops);
1385 con->de_ras_eeprom_table = debugfs_create_file("ras_eeprom_table",
1387 &amdgpu_ras_debugfs_eeprom_table_ops);
1388 amdgpu_ras_debugfs_set_ret_size(&con->eeprom_control);
1391 * After one uncorrectable error happens, usually GPU recovery will
1392 * be scheduled. But due to the known problem in GPU recovery failing
1393 * to bring GPU back, below interface provides one direct way to
1394 * user to reboot system automatically in such case within
1395 * ERREVENT_ATHUB_INTERRUPT generated. Normal GPU recovery routine
1396 * will never be called.
1398 debugfs_create_bool("auto_reboot", S_IWUGO | S_IRUGO, dir, &con->reboot);
1401 * User could set this not to clean up hardware's error count register
1402 * of RAS IPs during ras recovery.
1404 debugfs_create_bool("disable_ras_err_cnt_harvest", 0644, dir,
1405 &con->disable_ras_err_cnt_harvest);
1409 static void amdgpu_ras_debugfs_create(struct amdgpu_device *adev,
1410 struct ras_fs_if *head,
1413 struct ras_manager *obj = amdgpu_ras_find_obj(adev, &head->head);
1420 memcpy(obj->fs_data.debugfs_name,
1422 sizeof(obj->fs_data.debugfs_name));
1424 debugfs_create_file(obj->fs_data.debugfs_name, S_IWUGO | S_IRUGO, dir,
1425 obj, &amdgpu_ras_debugfs_ops);
1428 void amdgpu_ras_debugfs_create_all(struct amdgpu_device *adev)
1430 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1432 struct ras_manager *obj;
1433 struct ras_fs_if fs_info;
1436 * it won't be called in resume path, no need to check
1437 * suspend and gpu reset status
1439 if (!IS_ENABLED(CONFIG_DEBUG_FS) || !con)
1442 dir = amdgpu_ras_debugfs_create_ctrl_node(adev);
1444 list_for_each_entry(obj, &con->head, node) {
1445 if (amdgpu_ras_is_supported(adev, obj->head.block) &&
1446 (obj->attr_inuse == 1)) {
1447 sprintf(fs_info.debugfs_name, "%s_err_inject",
1448 get_ras_block_str(&obj->head));
1449 fs_info.head = obj->head;
1450 amdgpu_ras_debugfs_create(adev, &fs_info, dir);
1458 static BIN_ATTR(gpu_vram_bad_pages, S_IRUGO,
1459 amdgpu_ras_sysfs_badpages_read, NULL, 0);
1460 static DEVICE_ATTR(features, S_IRUGO,
1461 amdgpu_ras_sysfs_features_read, NULL);
1462 static int amdgpu_ras_fs_init(struct amdgpu_device *adev)
1464 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1465 struct attribute_group group = {
1466 .name = RAS_FS_NAME,
1468 struct attribute *attrs[] = {
1469 &con->features_attr.attr,
1472 struct bin_attribute *bin_attrs[] = {
1478 /* add features entry */
1479 con->features_attr = dev_attr_features;
1480 group.attrs = attrs;
1481 sysfs_attr_init(attrs[0]);
1483 if (amdgpu_bad_page_threshold != 0) {
1484 /* add bad_page_features entry */
1485 bin_attr_gpu_vram_bad_pages.private = NULL;
1486 con->badpages_attr = bin_attr_gpu_vram_bad_pages;
1487 bin_attrs[0] = &con->badpages_attr;
1488 group.bin_attrs = bin_attrs;
1489 sysfs_bin_attr_init(bin_attrs[0]);
1492 r = sysfs_create_group(&adev->dev->kobj, &group);
1494 dev_err(adev->dev, "Failed to create RAS sysfs group!");
1499 static int amdgpu_ras_fs_fini(struct amdgpu_device *adev)
1501 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1502 struct ras_manager *con_obj, *ip_obj, *tmp;
1504 if (IS_ENABLED(CONFIG_DEBUG_FS)) {
1505 list_for_each_entry_safe(con_obj, tmp, &con->head, node) {
1506 ip_obj = amdgpu_ras_find_obj(adev, &con_obj->head);
1512 amdgpu_ras_sysfs_remove_all(adev);
1519 /* For the hardware that cannot enable bif ring for both ras_controller_irq
1520 * and ras_err_evnet_athub_irq ih cookies, the driver has to poll status
1521 * register to check whether the interrupt is triggered or not, and properly
1522 * ack the interrupt if it is there
1524 void amdgpu_ras_interrupt_fatal_error_handler(struct amdgpu_device *adev)
1526 if (!amdgpu_ras_is_supported(adev, AMDGPU_RAS_BLOCK__PCIE_BIF))
1529 if (adev->nbio.ras &&
1530 adev->nbio.ras->handle_ras_controller_intr_no_bifring)
1531 adev->nbio.ras->handle_ras_controller_intr_no_bifring(adev);
1533 if (adev->nbio.ras &&
1534 adev->nbio.ras->handle_ras_err_event_athub_intr_no_bifring)
1535 adev->nbio.ras->handle_ras_err_event_athub_intr_no_bifring(adev);
1538 static void amdgpu_ras_interrupt_poison_consumption_handler(struct ras_manager *obj,
1539 struct amdgpu_iv_entry *entry)
1541 bool poison_stat = true, need_reset = true;
1542 struct amdgpu_device *adev = obj->adev;
1543 struct ras_err_data err_data = {0, 0, 0, NULL};
1544 struct amdgpu_ras_block_object *block_obj =
1545 amdgpu_ras_get_ras_block(adev, obj->head.block, 0);
1547 if (!adev->gmc.xgmi.connected_to_cpu)
1548 amdgpu_umc_poison_handler(adev, &err_data, false);
1550 /* both query_poison_status and handle_poison_consumption are optional */
1551 if (block_obj && block_obj->hw_ops) {
1552 if (block_obj->hw_ops->query_poison_status) {
1553 poison_stat = block_obj->hw_ops->query_poison_status(adev);
1555 dev_info(adev->dev, "No RAS poison status in %s poison IH.\n",
1556 block_obj->ras_comm.name);
1559 if (poison_stat && block_obj->hw_ops->handle_poison_consumption) {
1560 poison_stat = block_obj->hw_ops->handle_poison_consumption(adev);
1561 need_reset = poison_stat;
1565 /* gpu reset is fallback for all failed cases */
1567 amdgpu_ras_reset_gpu(adev);
1570 static void amdgpu_ras_interrupt_poison_creation_handler(struct ras_manager *obj,
1571 struct amdgpu_iv_entry *entry)
1573 dev_info(obj->adev->dev,
1574 "Poison is created, no user action is needed.\n");
1577 static void amdgpu_ras_interrupt_umc_handler(struct ras_manager *obj,
1578 struct amdgpu_iv_entry *entry)
1580 struct ras_ih_data *data = &obj->ih_data;
1581 struct ras_err_data err_data = {0, 0, 0, NULL};
1587 /* Let IP handle its data, maybe we need get the output
1588 * from the callback to update the error type/count, etc
1590 ret = data->cb(obj->adev, &err_data, entry);
1591 /* ue will trigger an interrupt, and in that case
1592 * we need do a reset to recovery the whole system.
1593 * But leave IP do that recovery, here we just dispatch
1596 if (ret == AMDGPU_RAS_SUCCESS) {
1597 /* these counts could be left as 0 if
1598 * some blocks do not count error number
1600 obj->err_data.ue_count += err_data.ue_count;
1601 obj->err_data.ce_count += err_data.ce_count;
1605 static void amdgpu_ras_interrupt_handler(struct ras_manager *obj)
1607 struct ras_ih_data *data = &obj->ih_data;
1608 struct amdgpu_iv_entry entry;
1610 while (data->rptr != data->wptr) {
1612 memcpy(&entry, &data->ring[data->rptr],
1613 data->element_size);
1616 data->rptr = (data->aligned_element_size +
1617 data->rptr) % data->ring_size;
1619 if (amdgpu_ras_is_poison_mode_supported(obj->adev)) {
1620 if (obj->head.block == AMDGPU_RAS_BLOCK__UMC)
1621 amdgpu_ras_interrupt_poison_creation_handler(obj, &entry);
1623 amdgpu_ras_interrupt_poison_consumption_handler(obj, &entry);
1625 if (obj->head.block == AMDGPU_RAS_BLOCK__UMC)
1626 amdgpu_ras_interrupt_umc_handler(obj, &entry);
1628 dev_warn(obj->adev->dev,
1629 "No RAS interrupt handler for non-UMC block with poison disabled.\n");
1634 static void amdgpu_ras_interrupt_process_handler(struct work_struct *work)
1636 struct ras_ih_data *data =
1637 container_of(work, struct ras_ih_data, ih_work);
1638 struct ras_manager *obj =
1639 container_of(data, struct ras_manager, ih_data);
1641 amdgpu_ras_interrupt_handler(obj);
1644 int amdgpu_ras_interrupt_dispatch(struct amdgpu_device *adev,
1645 struct ras_dispatch_if *info)
1647 struct ras_manager *obj = amdgpu_ras_find_obj(adev, &info->head);
1648 struct ras_ih_data *data = &obj->ih_data;
1653 if (data->inuse == 0)
1656 /* Might be overflow... */
1657 memcpy(&data->ring[data->wptr], info->entry,
1658 data->element_size);
1661 data->wptr = (data->aligned_element_size +
1662 data->wptr) % data->ring_size;
1664 schedule_work(&data->ih_work);
1669 int amdgpu_ras_interrupt_remove_handler(struct amdgpu_device *adev,
1670 struct ras_common_if *head)
1672 struct ras_manager *obj = amdgpu_ras_find_obj(adev, head);
1673 struct ras_ih_data *data;
1678 data = &obj->ih_data;
1679 if (data->inuse == 0)
1682 cancel_work_sync(&data->ih_work);
1685 memset(data, 0, sizeof(*data));
1691 int amdgpu_ras_interrupt_add_handler(struct amdgpu_device *adev,
1692 struct ras_common_if *head)
1694 struct ras_manager *obj = amdgpu_ras_find_obj(adev, head);
1695 struct ras_ih_data *data;
1696 struct amdgpu_ras_block_object *ras_obj;
1699 /* in case we registe the IH before enable ras feature */
1700 obj = amdgpu_ras_create_obj(adev, head);
1706 ras_obj = container_of(head, struct amdgpu_ras_block_object, ras_comm);
1708 data = &obj->ih_data;
1709 /* add the callback.etc */
1710 *data = (struct ras_ih_data) {
1712 .cb = ras_obj->ras_cb,
1713 .element_size = sizeof(struct amdgpu_iv_entry),
1718 INIT_WORK(&data->ih_work, amdgpu_ras_interrupt_process_handler);
1720 data->aligned_element_size = ALIGN(data->element_size, 8);
1721 /* the ring can store 64 iv entries. */
1722 data->ring_size = 64 * data->aligned_element_size;
1723 data->ring = kmalloc(data->ring_size, GFP_KERNEL);
1735 static int amdgpu_ras_interrupt_remove_all(struct amdgpu_device *adev)
1737 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1738 struct ras_manager *obj, *tmp;
1740 list_for_each_entry_safe(obj, tmp, &con->head, node) {
1741 amdgpu_ras_interrupt_remove_handler(adev, &obj->head);
1748 /* traversal all IPs except NBIO to query error counter */
1749 static void amdgpu_ras_log_on_err_counter(struct amdgpu_device *adev)
1751 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1752 struct ras_manager *obj;
1754 if (!adev->ras_enabled || !con)
1757 list_for_each_entry(obj, &con->head, node) {
1758 struct ras_query_if info = {
1763 * PCIE_BIF IP has one different isr by ras controller
1764 * interrupt, the specific ras counter query will be
1765 * done in that isr. So skip such block from common
1766 * sync flood interrupt isr calling.
1768 if (info.head.block == AMDGPU_RAS_BLOCK__PCIE_BIF)
1772 * this is a workaround for aldebaran, skip send msg to
1773 * smu to get ecc_info table due to smu handle get ecc
1774 * info table failed temporarily.
1775 * should be removed until smu fix handle ecc_info table.
1777 if ((info.head.block == AMDGPU_RAS_BLOCK__UMC) &&
1778 (adev->ip_versions[MP1_HWIP][0] == IP_VERSION(13, 0, 2)))
1781 amdgpu_ras_query_error_status(adev, &info);
1785 /* Parse RdRspStatus and WrRspStatus */
1786 static void amdgpu_ras_error_status_query(struct amdgpu_device *adev,
1787 struct ras_query_if *info)
1789 struct amdgpu_ras_block_object *block_obj;
1791 * Only two block need to query read/write
1792 * RspStatus at current state
1794 if ((info->head.block != AMDGPU_RAS_BLOCK__GFX) &&
1795 (info->head.block != AMDGPU_RAS_BLOCK__MMHUB))
1798 block_obj = amdgpu_ras_get_ras_block(adev,
1800 info->head.sub_block_index);
1802 if (!block_obj || !block_obj->hw_ops) {
1803 dev_dbg_once(adev->dev, "%s doesn't config RAS function\n",
1804 get_ras_block_str(&info->head));
1808 if (block_obj->hw_ops->query_ras_error_status)
1809 block_obj->hw_ops->query_ras_error_status(adev);
1813 static void amdgpu_ras_query_err_status(struct amdgpu_device *adev)
1815 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1816 struct ras_manager *obj;
1818 if (!adev->ras_enabled || !con)
1821 list_for_each_entry(obj, &con->head, node) {
1822 struct ras_query_if info = {
1826 amdgpu_ras_error_status_query(adev, &info);
1830 /* recovery begin */
1832 /* return 0 on success.
1833 * caller need free bps.
1835 static int amdgpu_ras_badpages_read(struct amdgpu_device *adev,
1836 struct ras_badpage **bps, unsigned int *count)
1838 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1839 struct ras_err_handler_data *data;
1841 int ret = 0, status;
1843 if (!con || !con->eh_data || !bps || !count)
1846 mutex_lock(&con->recovery_lock);
1847 data = con->eh_data;
1848 if (!data || data->count == 0) {
1854 *bps = kmalloc(sizeof(struct ras_badpage) * data->count, GFP_KERNEL);
1860 for (; i < data->count; i++) {
1861 (*bps)[i] = (struct ras_badpage){
1862 .bp = data->bps[i].retired_page,
1863 .size = AMDGPU_GPU_PAGE_SIZE,
1864 .flags = AMDGPU_RAS_RETIRE_PAGE_RESERVED,
1866 status = amdgpu_vram_mgr_query_page_status(&adev->mman.vram_mgr,
1867 data->bps[i].retired_page);
1868 if (status == -EBUSY)
1869 (*bps)[i].flags = AMDGPU_RAS_RETIRE_PAGE_PENDING;
1870 else if (status == -ENOENT)
1871 (*bps)[i].flags = AMDGPU_RAS_RETIRE_PAGE_FAULT;
1874 *count = data->count;
1876 mutex_unlock(&con->recovery_lock);
1880 static void amdgpu_ras_do_recovery(struct work_struct *work)
1882 struct amdgpu_ras *ras =
1883 container_of(work, struct amdgpu_ras, recovery_work);
1884 struct amdgpu_device *remote_adev = NULL;
1885 struct amdgpu_device *adev = ras->adev;
1886 struct list_head device_list, *device_list_handle = NULL;
1888 if (!ras->disable_ras_err_cnt_harvest) {
1889 struct amdgpu_hive_info *hive = amdgpu_get_xgmi_hive(adev);
1891 /* Build list of devices to query RAS related errors */
1892 if (hive && adev->gmc.xgmi.num_physical_nodes > 1) {
1893 device_list_handle = &hive->device_list;
1895 INIT_LIST_HEAD(&device_list);
1896 list_add_tail(&adev->gmc.xgmi.head, &device_list);
1897 device_list_handle = &device_list;
1900 list_for_each_entry(remote_adev,
1901 device_list_handle, gmc.xgmi.head) {
1902 amdgpu_ras_query_err_status(remote_adev);
1903 amdgpu_ras_log_on_err_counter(remote_adev);
1906 amdgpu_put_xgmi_hive(hive);
1909 if (amdgpu_device_should_recover_gpu(ras->adev))
1910 amdgpu_device_gpu_recover(ras->adev, NULL);
1911 atomic_set(&ras->in_recovery, 0);
1914 /* alloc/realloc bps array */
1915 static int amdgpu_ras_realloc_eh_data_space(struct amdgpu_device *adev,
1916 struct ras_err_handler_data *data, int pages)
1918 unsigned int old_space = data->count + data->space_left;
1919 unsigned int new_space = old_space + pages;
1920 unsigned int align_space = ALIGN(new_space, 512);
1921 void *bps = kmalloc(align_space * sizeof(*data->bps), GFP_KERNEL);
1928 memcpy(bps, data->bps,
1929 data->count * sizeof(*data->bps));
1934 data->space_left += align_space - old_space;
1938 /* it deal with vram only. */
1939 int amdgpu_ras_add_bad_pages(struct amdgpu_device *adev,
1940 struct eeprom_table_record *bps, int pages)
1942 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1943 struct ras_err_handler_data *data;
1947 if (!con || !con->eh_data || !bps || pages <= 0)
1950 mutex_lock(&con->recovery_lock);
1951 data = con->eh_data;
1955 for (i = 0; i < pages; i++) {
1956 if (amdgpu_ras_check_bad_page_unlock(con,
1957 bps[i].retired_page << AMDGPU_GPU_PAGE_SHIFT))
1960 if (!data->space_left &&
1961 amdgpu_ras_realloc_eh_data_space(adev, data, 256)) {
1966 amdgpu_vram_mgr_reserve_range(&adev->mman.vram_mgr,
1967 bps[i].retired_page << AMDGPU_GPU_PAGE_SHIFT,
1968 AMDGPU_GPU_PAGE_SIZE);
1970 memcpy(&data->bps[data->count], &bps[i], sizeof(*data->bps));
1975 mutex_unlock(&con->recovery_lock);
1981 * write error record array to eeprom, the function should be
1982 * protected by recovery_lock
1984 int amdgpu_ras_save_bad_pages(struct amdgpu_device *adev)
1986 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1987 struct ras_err_handler_data *data;
1988 struct amdgpu_ras_eeprom_control *control;
1991 if (!con || !con->eh_data)
1994 mutex_lock(&con->recovery_lock);
1995 control = &con->eeprom_control;
1996 data = con->eh_data;
1997 save_count = data->count - control->ras_num_recs;
1998 mutex_unlock(&con->recovery_lock);
1999 /* only new entries are saved */
2000 if (save_count > 0) {
2001 if (amdgpu_ras_eeprom_append(control,
2002 &data->bps[control->ras_num_recs],
2004 dev_err(adev->dev, "Failed to save EEPROM table data!");
2008 dev_info(adev->dev, "Saved %d pages to EEPROM table.\n", save_count);
2015 * read error record array in eeprom and reserve enough space for
2016 * storing new bad pages
2018 static int amdgpu_ras_load_bad_pages(struct amdgpu_device *adev)
2020 struct amdgpu_ras_eeprom_control *control =
2021 &adev->psp.ras_context.ras->eeprom_control;
2022 struct eeprom_table_record *bps;
2025 /* no bad page record, skip eeprom access */
2026 if (control->ras_num_recs == 0 || amdgpu_bad_page_threshold == 0)
2029 bps = kcalloc(control->ras_num_recs, sizeof(*bps), GFP_KERNEL);
2033 ret = amdgpu_ras_eeprom_read(control, bps, control->ras_num_recs);
2035 dev_err(adev->dev, "Failed to load EEPROM table records!");
2037 ret = amdgpu_ras_add_bad_pages(adev, bps, control->ras_num_recs);
2043 static bool amdgpu_ras_check_bad_page_unlock(struct amdgpu_ras *con,
2046 struct ras_err_handler_data *data = con->eh_data;
2049 addr >>= AMDGPU_GPU_PAGE_SHIFT;
2050 for (i = 0; i < data->count; i++)
2051 if (addr == data->bps[i].retired_page)
2058 * check if an address belongs to bad page
2060 * Note: this check is only for umc block
2062 static bool amdgpu_ras_check_bad_page(struct amdgpu_device *adev,
2065 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2068 if (!con || !con->eh_data)
2071 mutex_lock(&con->recovery_lock);
2072 ret = amdgpu_ras_check_bad_page_unlock(con, addr);
2073 mutex_unlock(&con->recovery_lock);
2077 static void amdgpu_ras_validate_threshold(struct amdgpu_device *adev,
2080 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2083 * Justification of value bad_page_cnt_threshold in ras structure
2085 * Generally, -1 <= amdgpu_bad_page_threshold <= max record length
2086 * in eeprom, and introduce two scenarios accordingly.
2088 * Bad page retirement enablement:
2089 * - If amdgpu_bad_page_threshold = -1,
2090 * bad_page_cnt_threshold = typical value by formula.
2092 * - When the value from user is 0 < amdgpu_bad_page_threshold <
2093 * max record length in eeprom, use it directly.
2095 * Bad page retirement disablement:
2096 * - If amdgpu_bad_page_threshold = 0, bad page retirement
2097 * functionality is disabled, and bad_page_cnt_threshold will
2101 if (amdgpu_bad_page_threshold < 0) {
2102 u64 val = adev->gmc.mc_vram_size;
2104 do_div(val, RAS_BAD_PAGE_COVER);
2105 con->bad_page_cnt_threshold = min(lower_32_bits(val),
2108 con->bad_page_cnt_threshold = min_t(int, max_count,
2109 amdgpu_bad_page_threshold);
2113 int amdgpu_ras_recovery_init(struct amdgpu_device *adev)
2115 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2116 struct ras_err_handler_data **data;
2117 u32 max_eeprom_records_count = 0;
2118 bool exc_err_limit = false;
2124 /* Allow access to RAS EEPROM via debugfs, when the ASIC
2125 * supports RAS and debugfs is enabled, but when
2126 * adev->ras_enabled is unset, i.e. when "ras_enable"
2127 * module parameter is set to 0.
2131 if (!adev->ras_enabled)
2134 data = &con->eh_data;
2135 *data = kmalloc(sizeof(**data), GFP_KERNEL | __GFP_ZERO);
2141 mutex_init(&con->recovery_lock);
2142 INIT_WORK(&con->recovery_work, amdgpu_ras_do_recovery);
2143 atomic_set(&con->in_recovery, 0);
2144 con->eeprom_control.bad_channel_bitmap = 0;
2146 max_eeprom_records_count = amdgpu_ras_eeprom_max_record_count();
2147 amdgpu_ras_validate_threshold(adev, max_eeprom_records_count);
2149 /* Todo: During test the SMU might fail to read the eeprom through I2C
2150 * when the GPU is pending on XGMI reset during probe time
2151 * (Mostly after second bus reset), skip it now
2153 if (adev->gmc.xgmi.pending_reset)
2155 ret = amdgpu_ras_eeprom_init(&con->eeprom_control, &exc_err_limit);
2157 * This calling fails when exc_err_limit is true or
2160 if (exc_err_limit || ret)
2163 if (con->eeprom_control.ras_num_recs) {
2164 ret = amdgpu_ras_load_bad_pages(adev);
2168 amdgpu_dpm_send_hbm_bad_pages_num(adev, con->eeprom_control.ras_num_recs);
2170 if (con->update_channel_flag == true) {
2171 amdgpu_dpm_send_hbm_bad_channel_flag(adev, con->eeprom_control.bad_channel_bitmap);
2172 con->update_channel_flag = false;
2176 #ifdef CONFIG_X86_MCE_AMD
2177 if ((adev->asic_type == CHIP_ALDEBARAN) &&
2178 (adev->gmc.xgmi.connected_to_cpu))
2179 amdgpu_register_bad_pages_mca_notifier(adev);
2184 kfree((*data)->bps);
2186 con->eh_data = NULL;
2188 dev_warn(adev->dev, "Failed to initialize ras recovery! (%d)\n", ret);
2191 * Except error threshold exceeding case, other failure cases in this
2192 * function would not fail amdgpu driver init.
2202 static int amdgpu_ras_recovery_fini(struct amdgpu_device *adev)
2204 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2205 struct ras_err_handler_data *data = con->eh_data;
2207 /* recovery_init failed to init it, fini is useless */
2211 cancel_work_sync(&con->recovery_work);
2213 mutex_lock(&con->recovery_lock);
2214 con->eh_data = NULL;
2217 mutex_unlock(&con->recovery_lock);
2223 static bool amdgpu_ras_asic_supported(struct amdgpu_device *adev)
2225 return adev->asic_type == CHIP_VEGA10 ||
2226 adev->asic_type == CHIP_VEGA20 ||
2227 adev->asic_type == CHIP_ARCTURUS ||
2228 adev->asic_type == CHIP_ALDEBARAN ||
2229 adev->asic_type == CHIP_SIENNA_CICHLID;
2233 * this is workaround for vega20 workstation sku,
2234 * force enable gfx ras, ignore vbios gfx ras flag
2235 * due to GC EDC can not write
2237 static void amdgpu_ras_get_quirks(struct amdgpu_device *adev)
2239 struct atom_context *ctx = adev->mode_info.atom_context;
2244 if (strnstr(ctx->vbios_version, "D16406",
2245 sizeof(ctx->vbios_version)) ||
2246 strnstr(ctx->vbios_version, "D36002",
2247 sizeof(ctx->vbios_version)))
2248 adev->ras_hw_enabled |= (1 << AMDGPU_RAS_BLOCK__GFX);
2252 * check hardware's ras ability which will be saved in hw_supported.
2253 * if hardware does not support ras, we can skip some ras initializtion and
2254 * forbid some ras operations from IP.
2255 * if software itself, say boot parameter, limit the ras ability. We still
2256 * need allow IP do some limited operations, like disable. In such case,
2257 * we have to initialize ras as normal. but need check if operation is
2258 * allowed or not in each function.
2260 static void amdgpu_ras_check_supported(struct amdgpu_device *adev)
2262 adev->ras_hw_enabled = adev->ras_enabled = 0;
2264 if (amdgpu_sriov_vf(adev) || !adev->is_atom_fw ||
2265 !amdgpu_ras_asic_supported(adev))
2268 if (!adev->gmc.xgmi.connected_to_cpu) {
2269 if (amdgpu_atomfirmware_mem_ecc_supported(adev)) {
2270 dev_info(adev->dev, "MEM ECC is active.\n");
2271 adev->ras_hw_enabled |= (1 << AMDGPU_RAS_BLOCK__UMC |
2272 1 << AMDGPU_RAS_BLOCK__DF);
2274 dev_info(adev->dev, "MEM ECC is not presented.\n");
2277 if (amdgpu_atomfirmware_sram_ecc_supported(adev)) {
2278 dev_info(adev->dev, "SRAM ECC is active.\n");
2279 adev->ras_hw_enabled |= ~(1 << AMDGPU_RAS_BLOCK__UMC |
2280 1 << AMDGPU_RAS_BLOCK__DF);
2282 if (adev->ip_versions[VCN_HWIP][0] == IP_VERSION(2, 6, 0))
2283 adev->ras_hw_enabled |= (1 << AMDGPU_RAS_BLOCK__VCN |
2284 1 << AMDGPU_RAS_BLOCK__JPEG);
2286 adev->ras_hw_enabled &= ~(1 << AMDGPU_RAS_BLOCK__VCN |
2287 1 << AMDGPU_RAS_BLOCK__JPEG);
2289 dev_info(adev->dev, "SRAM ECC is not presented.\n");
2292 /* driver only manages a few IP blocks RAS feature
2293 * when GPU is connected cpu through XGMI */
2294 adev->ras_hw_enabled |= (1 << AMDGPU_RAS_BLOCK__GFX |
2295 1 << AMDGPU_RAS_BLOCK__SDMA |
2296 1 << AMDGPU_RAS_BLOCK__MMHUB);
2299 amdgpu_ras_get_quirks(adev);
2301 /* hw_supported needs to be aligned with RAS block mask. */
2302 adev->ras_hw_enabled &= AMDGPU_RAS_BLOCK_MASK;
2304 adev->ras_enabled = amdgpu_ras_enable == 0 ? 0 :
2305 adev->ras_hw_enabled & amdgpu_ras_mask;
2308 static void amdgpu_ras_counte_dw(struct work_struct *work)
2310 struct amdgpu_ras *con = container_of(work, struct amdgpu_ras,
2311 ras_counte_delay_work.work);
2312 struct amdgpu_device *adev = con->adev;
2313 struct drm_device *dev = adev_to_drm(adev);
2314 unsigned long ce_count, ue_count;
2317 res = pm_runtime_get_sync(dev->dev);
2321 /* Cache new values.
2323 if (amdgpu_ras_query_error_count(adev, &ce_count, &ue_count) == 0) {
2324 atomic_set(&con->ras_ce_count, ce_count);
2325 atomic_set(&con->ras_ue_count, ue_count);
2328 pm_runtime_mark_last_busy(dev->dev);
2330 pm_runtime_put_autosuspend(dev->dev);
2333 int amdgpu_ras_init(struct amdgpu_device *adev)
2335 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2337 bool df_poison, umc_poison;
2342 con = kmalloc(sizeof(struct amdgpu_ras) +
2343 sizeof(struct ras_manager) * AMDGPU_RAS_BLOCK_COUNT +
2344 sizeof(struct ras_manager) * AMDGPU_RAS_MCA_BLOCK_COUNT,
2345 GFP_KERNEL|__GFP_ZERO);
2350 INIT_DELAYED_WORK(&con->ras_counte_delay_work, amdgpu_ras_counte_dw);
2351 atomic_set(&con->ras_ce_count, 0);
2352 atomic_set(&con->ras_ue_count, 0);
2354 con->objs = (struct ras_manager *)(con + 1);
2356 amdgpu_ras_set_context(adev, con);
2358 amdgpu_ras_check_supported(adev);
2360 if (!adev->ras_enabled || adev->asic_type == CHIP_VEGA10) {
2361 /* set gfx block ras context feature for VEGA20 Gaming
2362 * send ras disable cmd to ras ta during ras late init.
2364 if (!adev->ras_enabled && adev->asic_type == CHIP_VEGA20) {
2365 con->features |= BIT(AMDGPU_RAS_BLOCK__GFX);
2374 con->update_channel_flag = false;
2376 INIT_LIST_HEAD(&con->head);
2377 /* Might need get this flag from vbios. */
2378 con->flags = RAS_DEFAULT_FLAGS;
2380 /* initialize nbio ras function ahead of any other
2381 * ras functions so hardware fatal error interrupt
2382 * can be enabled as early as possible */
2383 switch (adev->asic_type) {
2386 case CHIP_ALDEBARAN:
2387 if (!adev->gmc.xgmi.connected_to_cpu) {
2388 adev->nbio.ras = &nbio_v7_4_ras;
2389 amdgpu_ras_register_ras_block(adev, &adev->nbio.ras->ras_block);
2390 adev->nbio.ras_if = &adev->nbio.ras->ras_block.ras_comm;
2394 /* nbio ras is not available */
2398 if (adev->nbio.ras &&
2399 adev->nbio.ras->init_ras_controller_interrupt) {
2400 r = adev->nbio.ras->init_ras_controller_interrupt(adev);
2405 if (adev->nbio.ras &&
2406 adev->nbio.ras->init_ras_err_event_athub_interrupt) {
2407 r = adev->nbio.ras->init_ras_err_event_athub_interrupt(adev);
2412 /* Init poison supported flag, the default value is false */
2413 if (adev->gmc.xgmi.connected_to_cpu) {
2414 /* enabled by default when GPU is connected to CPU */
2415 con->poison_supported = true;
2417 else if (adev->df.funcs &&
2418 adev->df.funcs->query_ras_poison_mode &&
2420 adev->umc.ras->query_ras_poison_mode) {
2422 adev->df.funcs->query_ras_poison_mode(adev);
2424 adev->umc.ras->query_ras_poison_mode(adev);
2425 /* Only poison is set in both DF and UMC, we can support it */
2426 if (df_poison && umc_poison)
2427 con->poison_supported = true;
2428 else if (df_poison != umc_poison)
2429 dev_warn(adev->dev, "Poison setting is inconsistent in DF/UMC(%d:%d)!\n",
2430 df_poison, umc_poison);
2433 if (amdgpu_ras_fs_init(adev)) {
2438 dev_info(adev->dev, "RAS INFO: ras initialized successfully, "
2439 "hardware ability[%x] ras_mask[%x]\n",
2440 adev->ras_hw_enabled, adev->ras_enabled);
2444 amdgpu_ras_set_context(adev, NULL);
2450 int amdgpu_persistent_edc_harvesting_supported(struct amdgpu_device *adev)
2452 if (adev->gmc.xgmi.connected_to_cpu)
2457 static int amdgpu_persistent_edc_harvesting(struct amdgpu_device *adev,
2458 struct ras_common_if *ras_block)
2460 struct ras_query_if info = {
2464 if (!amdgpu_persistent_edc_harvesting_supported(adev))
2467 if (amdgpu_ras_query_error_status(adev, &info) != 0)
2468 DRM_WARN("RAS init harvest failure");
2470 if (amdgpu_ras_reset_error_status(adev, ras_block->block) != 0)
2471 DRM_WARN("RAS init harvest reset failure");
2476 bool amdgpu_ras_is_poison_mode_supported(struct amdgpu_device *adev)
2478 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2483 return con->poison_supported;
2486 /* helper function to handle common stuff in ip late init phase */
2487 int amdgpu_ras_block_late_init(struct amdgpu_device *adev,
2488 struct ras_common_if *ras_block)
2490 struct amdgpu_ras_block_object *ras_obj = NULL;
2491 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2492 unsigned long ue_count, ce_count;
2495 /* disable RAS feature per IP block if it is not supported */
2496 if (!amdgpu_ras_is_supported(adev, ras_block->block)) {
2497 amdgpu_ras_feature_enable_on_boot(adev, ras_block, 0);
2501 r = amdgpu_ras_feature_enable_on_boot(adev, ras_block, 1);
2503 if (adev->in_suspend || amdgpu_in_reset(adev)) {
2504 /* in resume phase, if fail to enable ras,
2505 * clean up all ras fs nodes, and disable ras */
2511 /* check for errors on warm reset edc persisant supported ASIC */
2512 amdgpu_persistent_edc_harvesting(adev, ras_block);
2514 /* in resume phase, no need to create ras fs node */
2515 if (adev->in_suspend || amdgpu_in_reset(adev))
2518 ras_obj = container_of(ras_block, struct amdgpu_ras_block_object, ras_comm);
2519 if (ras_obj->ras_cb) {
2520 r = amdgpu_ras_interrupt_add_handler(adev, ras_block);
2525 r = amdgpu_ras_sysfs_create(adev, ras_block);
2529 /* Those are the cached values at init.
2531 if (amdgpu_ras_query_error_count(adev, &ce_count, &ue_count) == 0) {
2532 atomic_set(&con->ras_ce_count, ce_count);
2533 atomic_set(&con->ras_ue_count, ue_count);
2539 if (ras_obj->ras_cb)
2540 amdgpu_ras_interrupt_remove_handler(adev, ras_block);
2542 amdgpu_ras_feature_enable(adev, ras_block, 0);
2546 static int amdgpu_ras_block_late_init_default(struct amdgpu_device *adev,
2547 struct ras_common_if *ras_block)
2549 return amdgpu_ras_block_late_init(adev, ras_block);
2552 /* helper function to remove ras fs node and interrupt handler */
2553 void amdgpu_ras_block_late_fini(struct amdgpu_device *adev,
2554 struct ras_common_if *ras_block)
2556 struct amdgpu_ras_block_object *ras_obj;
2560 amdgpu_ras_sysfs_remove(adev, ras_block);
2562 ras_obj = container_of(ras_block, struct amdgpu_ras_block_object, ras_comm);
2563 if (ras_obj->ras_cb)
2564 amdgpu_ras_interrupt_remove_handler(adev, ras_block);
2567 static void amdgpu_ras_block_late_fini_default(struct amdgpu_device *adev,
2568 struct ras_common_if *ras_block)
2570 return amdgpu_ras_block_late_fini(adev, ras_block);
2573 /* do some init work after IP late init as dependence.
2574 * and it runs in resume/gpu reset/booting up cases.
2576 void amdgpu_ras_resume(struct amdgpu_device *adev)
2578 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2579 struct ras_manager *obj, *tmp;
2581 if (!adev->ras_enabled || !con) {
2582 /* clean ras context for VEGA20 Gaming after send ras disable cmd */
2583 amdgpu_release_ras_context(adev);
2588 if (con->flags & AMDGPU_RAS_FLAG_INIT_BY_VBIOS) {
2589 /* Set up all other IPs which are not implemented. There is a
2590 * tricky thing that IP's actual ras error type should be
2591 * MULTI_UNCORRECTABLE, but as driver does not handle it, so
2592 * ERROR_NONE make sense anyway.
2594 amdgpu_ras_enable_all_features(adev, 1);
2596 /* We enable ras on all hw_supported block, but as boot
2597 * parameter might disable some of them and one or more IP has
2598 * not implemented yet. So we disable them on behalf.
2600 list_for_each_entry_safe(obj, tmp, &con->head, node) {
2601 if (!amdgpu_ras_is_supported(adev, obj->head.block)) {
2602 amdgpu_ras_feature_enable(adev, &obj->head, 0);
2603 /* there should be no any reference. */
2604 WARN_ON(alive_obj(obj));
2610 void amdgpu_ras_suspend(struct amdgpu_device *adev)
2612 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2614 if (!adev->ras_enabled || !con)
2617 amdgpu_ras_disable_all_features(adev, 0);
2618 /* Make sure all ras objects are disabled. */
2620 amdgpu_ras_disable_all_features(adev, 1);
2623 int amdgpu_ras_late_init(struct amdgpu_device *adev)
2625 struct amdgpu_ras_block_list *node, *tmp;
2626 struct amdgpu_ras_block_object *obj;
2629 list_for_each_entry_safe(node, tmp, &adev->ras_list, node) {
2630 if (!node->ras_obj) {
2631 dev_warn(adev->dev, "Warning: abnormal ras list node.\n");
2635 obj = node->ras_obj;
2636 if (obj->ras_late_init) {
2637 r = obj->ras_late_init(adev, &obj->ras_comm);
2639 dev_err(adev->dev, "%s failed to execute ras_late_init! ret:%d\n",
2640 obj->ras_comm.name, r);
2644 amdgpu_ras_block_late_init_default(adev, &obj->ras_comm);
2650 /* do some fini work before IP fini as dependence */
2651 int amdgpu_ras_pre_fini(struct amdgpu_device *adev)
2653 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2655 if (!adev->ras_enabled || !con)
2659 /* Need disable ras on all IPs here before ip [hw/sw]fini */
2660 amdgpu_ras_disable_all_features(adev, 0);
2661 amdgpu_ras_recovery_fini(adev);
2665 int amdgpu_ras_fini(struct amdgpu_device *adev)
2667 struct amdgpu_ras_block_list *ras_node, *tmp;
2668 struct amdgpu_ras_block_object *obj = NULL;
2669 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2671 if (!adev->ras_enabled || !con)
2674 list_for_each_entry_safe(ras_node, tmp, &adev->ras_list, node) {
2675 if (ras_node->ras_obj) {
2676 obj = ras_node->ras_obj;
2677 if (amdgpu_ras_is_supported(adev, obj->ras_comm.block) &&
2679 obj->ras_fini(adev, &obj->ras_comm);
2681 amdgpu_ras_block_late_fini_default(adev, &obj->ras_comm);
2684 /* Clear ras blocks from ras_list and free ras block list node */
2685 list_del(&ras_node->node);
2689 amdgpu_ras_fs_fini(adev);
2690 amdgpu_ras_interrupt_remove_all(adev);
2692 WARN(con->features, "Feature mask is not cleared");
2695 amdgpu_ras_disable_all_features(adev, 1);
2697 cancel_delayed_work_sync(&con->ras_counte_delay_work);
2699 amdgpu_ras_set_context(adev, NULL);
2705 void amdgpu_ras_global_ras_isr(struct amdgpu_device *adev)
2707 amdgpu_ras_check_supported(adev);
2708 if (!adev->ras_hw_enabled)
2711 if (atomic_cmpxchg(&amdgpu_ras_in_intr, 0, 1) == 0) {
2712 dev_info(adev->dev, "uncorrectable hardware error"
2713 "(ERREVENT_ATHUB_INTERRUPT) detected!\n");
2715 amdgpu_ras_reset_gpu(adev);
2719 bool amdgpu_ras_need_emergency_restart(struct amdgpu_device *adev)
2721 if (adev->asic_type == CHIP_VEGA20 &&
2722 adev->pm.fw_version <= 0x283400) {
2723 return !(amdgpu_asic_reset_method(adev) == AMD_RESET_METHOD_BACO) &&
2724 amdgpu_ras_intr_triggered();
2730 void amdgpu_release_ras_context(struct amdgpu_device *adev)
2732 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2737 if (!adev->ras_enabled && con->features & BIT(AMDGPU_RAS_BLOCK__GFX)) {
2738 con->features &= ~BIT(AMDGPU_RAS_BLOCK__GFX);
2739 amdgpu_ras_set_context(adev, NULL);
2744 #ifdef CONFIG_X86_MCE_AMD
2745 static struct amdgpu_device *find_adev(uint32_t node_id)
2748 struct amdgpu_device *adev = NULL;
2750 for (i = 0; i < mce_adev_list.num_gpu; i++) {
2751 adev = mce_adev_list.devs[i];
2753 if (adev && adev->gmc.xgmi.connected_to_cpu &&
2754 adev->gmc.xgmi.physical_node_id == node_id)
2762 #define GET_MCA_IPID_GPUID(m) (((m) >> 44) & 0xF)
2763 #define GET_UMC_INST(m) (((m) >> 21) & 0x7)
2764 #define GET_CHAN_INDEX(m) ((((m) >> 12) & 0x3) | (((m) >> 18) & 0x4))
2765 #define GPU_ID_OFFSET 8
2767 static int amdgpu_bad_page_notifier(struct notifier_block *nb,
2768 unsigned long val, void *data)
2770 struct mce *m = (struct mce *)data;
2771 struct amdgpu_device *adev = NULL;
2772 uint32_t gpu_id = 0;
2773 uint32_t umc_inst = 0;
2774 uint32_t ch_inst, channel_index = 0;
2775 struct ras_err_data err_data = {0, 0, 0, NULL};
2776 struct eeprom_table_record err_rec;
2777 uint64_t retired_page;
2780 * If the error was generated in UMC_V2, which belongs to GPU UMCs,
2781 * and error occurred in DramECC (Extended error code = 0) then only
2782 * process the error, else bail out.
2784 if (!m || !((smca_get_bank_type(m->extcpu, m->bank) == SMCA_UMC_V2) &&
2785 (XEC(m->status, 0x3f) == 0x0)))
2789 * If it is correctable error, return.
2791 if (mce_is_correctable(m))
2795 * GPU Id is offset by GPU_ID_OFFSET in MCA_IPID_UMC register.
2797 gpu_id = GET_MCA_IPID_GPUID(m->ipid) - GPU_ID_OFFSET;
2799 adev = find_adev(gpu_id);
2801 DRM_WARN("%s: Unable to find adev for gpu_id: %d\n", __func__,
2807 * If it is uncorrectable error, then find out UMC instance and
2810 umc_inst = GET_UMC_INST(m->ipid);
2811 ch_inst = GET_CHAN_INDEX(m->ipid);
2813 dev_info(adev->dev, "Uncorrectable error detected in UMC inst: %d, chan_idx: %d",
2817 * Translate UMC channel address to Physical address
2820 adev->umc.channel_idx_tbl[umc_inst * adev->umc.channel_inst_num
2823 retired_page = ADDR_OF_8KB_BLOCK(m->addr) |
2824 ADDR_OF_256B_BLOCK(channel_index) |
2825 OFFSET_IN_256B_BLOCK(m->addr);
2827 memset(&err_rec, 0x0, sizeof(struct eeprom_table_record));
2828 err_data.err_addr = &err_rec;
2829 amdgpu_umc_fill_error_record(&err_data, m->addr,
2830 retired_page, channel_index, umc_inst);
2832 if (amdgpu_bad_page_threshold != 0) {
2833 amdgpu_ras_add_bad_pages(adev, err_data.err_addr,
2834 err_data.err_addr_cnt);
2835 amdgpu_ras_save_bad_pages(adev);
2841 static struct notifier_block amdgpu_bad_page_nb = {
2842 .notifier_call = amdgpu_bad_page_notifier,
2843 .priority = MCE_PRIO_UC,
2846 static void amdgpu_register_bad_pages_mca_notifier(struct amdgpu_device *adev)
2849 * Add the adev to the mce_adev_list.
2850 * During mode2 reset, amdgpu device is temporarily
2851 * removed from the mgpu_info list which can cause
2852 * page retirement to fail.
2853 * Use this list instead of mgpu_info to find the amdgpu
2854 * device on which the UMC error was reported.
2856 mce_adev_list.devs[mce_adev_list.num_gpu++] = adev;
2859 * Register the x86 notifier only once
2860 * with MCE subsystem.
2862 if (notifier_registered == false) {
2863 mce_register_decode_chain(&amdgpu_bad_page_nb);
2864 notifier_registered = true;
2869 struct amdgpu_ras *amdgpu_ras_get_context(struct amdgpu_device *adev)
2874 return adev->psp.ras_context.ras;
2877 int amdgpu_ras_set_context(struct amdgpu_device *adev, struct amdgpu_ras *ras_con)
2882 adev->psp.ras_context.ras = ras_con;
2886 /* check if ras is supported on block, say, sdma, gfx */
2887 int amdgpu_ras_is_supported(struct amdgpu_device *adev,
2890 struct amdgpu_ras *ras = amdgpu_ras_get_context(adev);
2892 if (block >= AMDGPU_RAS_BLOCK_COUNT)
2894 return ras && (adev->ras_enabled & (1 << block));
2897 int amdgpu_ras_reset_gpu(struct amdgpu_device *adev)
2899 struct amdgpu_ras *ras = amdgpu_ras_get_context(adev);
2901 if (atomic_cmpxchg(&ras->in_recovery, 0, 1) == 0)
2902 schedule_work(&ras->recovery_work);
2907 /* Register each ip ras block into amdgpu ras */
2908 int amdgpu_ras_register_ras_block(struct amdgpu_device *adev,
2909 struct amdgpu_ras_block_object *ras_block_obj)
2911 struct amdgpu_ras_block_list *ras_node;
2912 if (!adev || !ras_block_obj)
2915 if (!amdgpu_ras_asic_supported(adev))
2918 ras_node = kzalloc(sizeof(*ras_node), GFP_KERNEL);
2922 INIT_LIST_HEAD(&ras_node->node);
2923 ras_node->ras_obj = ras_block_obj;
2924 list_add_tail(&ras_node->node, &adev->ras_list);