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"
37 #include "nbio_v4_3.h"
38 #include "nbio_v7_9.h"
40 #include "amdgpu_reset.h"
42 #ifdef CONFIG_X86_MCE_AMD
45 static bool notifier_registered;
47 static const char *RAS_FS_NAME = "ras";
49 const char *ras_error_string[] = {
53 "multi_uncorrectable",
57 const char *ras_block_string[] = {
77 const char *ras_mca_block_string[] = {
84 struct amdgpu_ras_block_list {
86 struct list_head node;
88 struct amdgpu_ras_block_object *ras_obj;
91 const char *get_ras_block_str(struct ras_common_if *ras_block)
96 if (ras_block->block >= AMDGPU_RAS_BLOCK_COUNT)
97 return "OUT OF RANGE";
99 if (ras_block->block == AMDGPU_RAS_BLOCK__MCA)
100 return ras_mca_block_string[ras_block->sub_block_index];
102 return ras_block_string[ras_block->block];
105 #define ras_block_str(_BLOCK_) \
106 (((_BLOCK_) < ARRAY_SIZE(ras_block_string)) ? ras_block_string[_BLOCK_] : "Out Of Range")
108 #define ras_err_str(i) (ras_error_string[ffs(i)])
110 #define RAS_DEFAULT_FLAGS (AMDGPU_RAS_FLAG_INIT_BY_VBIOS)
112 /* inject address is 52 bits */
113 #define RAS_UMC_INJECT_ADDR_LIMIT (0x1ULL << 52)
115 /* typical ECC bad page rate is 1 bad page per 100MB VRAM */
116 #define RAS_BAD_PAGE_COVER (100 * 1024 * 1024ULL)
118 enum amdgpu_ras_retire_page_reservation {
119 AMDGPU_RAS_RETIRE_PAGE_RESERVED,
120 AMDGPU_RAS_RETIRE_PAGE_PENDING,
121 AMDGPU_RAS_RETIRE_PAGE_FAULT,
124 atomic_t amdgpu_ras_in_intr = ATOMIC_INIT(0);
126 static bool amdgpu_ras_check_bad_page_unlock(struct amdgpu_ras *con,
128 static bool amdgpu_ras_check_bad_page(struct amdgpu_device *adev,
130 #ifdef CONFIG_X86_MCE_AMD
131 static void amdgpu_register_bad_pages_mca_notifier(struct amdgpu_device *adev);
132 struct mce_notifier_adev_list {
133 struct amdgpu_device *devs[MAX_GPU_INSTANCE];
136 static struct mce_notifier_adev_list mce_adev_list;
139 void amdgpu_ras_set_error_query_ready(struct amdgpu_device *adev, bool ready)
141 if (adev && amdgpu_ras_get_context(adev))
142 amdgpu_ras_get_context(adev)->error_query_ready = ready;
145 static bool amdgpu_ras_get_error_query_ready(struct amdgpu_device *adev)
147 if (adev && amdgpu_ras_get_context(adev))
148 return amdgpu_ras_get_context(adev)->error_query_ready;
153 static int amdgpu_reserve_page_direct(struct amdgpu_device *adev, uint64_t address)
155 struct ras_err_data err_data = {0, 0, 0, NULL};
156 struct eeprom_table_record err_rec;
158 if ((address >= adev->gmc.mc_vram_size) ||
159 (address >= RAS_UMC_INJECT_ADDR_LIMIT)) {
161 "RAS WARN: input address 0x%llx is invalid.\n",
166 if (amdgpu_ras_check_bad_page(adev, address)) {
168 "RAS WARN: 0x%llx has already been marked as bad page!\n",
173 memset(&err_rec, 0x0, sizeof(struct eeprom_table_record));
174 err_data.err_addr = &err_rec;
175 amdgpu_umc_fill_error_record(&err_data, address, address, 0, 0);
177 if (amdgpu_bad_page_threshold != 0) {
178 amdgpu_ras_add_bad_pages(adev, err_data.err_addr,
179 err_data.err_addr_cnt);
180 amdgpu_ras_save_bad_pages(adev, NULL);
183 dev_warn(adev->dev, "WARNING: THIS IS ONLY FOR TEST PURPOSES AND WILL CORRUPT RAS EEPROM\n");
184 dev_warn(adev->dev, "Clear EEPROM:\n");
185 dev_warn(adev->dev, " echo 1 > /sys/kernel/debug/dri/0/ras/ras_eeprom_reset\n");
190 static ssize_t amdgpu_ras_debugfs_read(struct file *f, char __user *buf,
191 size_t size, loff_t *pos)
193 struct ras_manager *obj = (struct ras_manager *)file_inode(f)->i_private;
194 struct ras_query_if info = {
200 if (amdgpu_ras_query_error_status(obj->adev, &info))
203 /* Hardware counter will be reset automatically after the query on Vega20 and Arcturus */
204 if (obj->adev->ip_versions[MP0_HWIP][0] != IP_VERSION(11, 0, 2) &&
205 obj->adev->ip_versions[MP0_HWIP][0] != IP_VERSION(11, 0, 4)) {
206 if (amdgpu_ras_reset_error_status(obj->adev, info.head.block))
207 dev_warn(obj->adev->dev, "Failed to reset error counter and error status");
210 s = snprintf(val, sizeof(val), "%s: %lu\n%s: %lu\n",
212 "ce", info.ce_count);
217 s = min_t(u64, s, size);
220 if (copy_to_user(buf, &val[*pos], s))
228 static const struct file_operations amdgpu_ras_debugfs_ops = {
229 .owner = THIS_MODULE,
230 .read = amdgpu_ras_debugfs_read,
232 .llseek = default_llseek
235 static int amdgpu_ras_find_block_id_by_name(const char *name, int *block_id)
239 for (i = 0; i < ARRAY_SIZE(ras_block_string); i++) {
241 if (strcmp(name, ras_block_string[i]) == 0)
247 static int amdgpu_ras_debugfs_ctrl_parse_data(struct file *f,
248 const char __user *buf, size_t size,
249 loff_t *pos, struct ras_debug_if *data)
251 ssize_t s = min_t(u64, 64, size);
259 /* default value is 0 if the mask is not set by user */
260 u32 instance_mask = 0;
266 memset(str, 0, sizeof(str));
267 memset(data, 0, sizeof(*data));
269 if (copy_from_user(str, buf, s))
272 if (sscanf(str, "disable %32s", block_name) == 1)
274 else if (sscanf(str, "enable %32s %8s", block_name, err) == 2)
276 else if (sscanf(str, "inject %32s %8s", block_name, err) == 2)
278 else if (strstr(str, "retire_page") != NULL)
280 else if (str[0] && str[1] && str[2] && str[3])
281 /* ascii string, but commands are not matched. */
286 if (sscanf(str, "%*s 0x%llx", &address) != 1 &&
287 sscanf(str, "%*s %llu", &address) != 1)
291 data->inject.address = address;
296 if (amdgpu_ras_find_block_id_by_name(block_name, &block_id))
299 data->head.block = block_id;
300 /* only ue and ce errors are supported */
301 if (!memcmp("ue", err, 2))
302 data->head.type = AMDGPU_RAS_ERROR__MULTI_UNCORRECTABLE;
303 else if (!memcmp("ce", err, 2))
304 data->head.type = AMDGPU_RAS_ERROR__SINGLE_CORRECTABLE;
311 if (sscanf(str, "%*s %*s %*s 0x%x 0x%llx 0x%llx 0x%x",
312 &sub_block, &address, &value, &instance_mask) != 4 &&
313 sscanf(str, "%*s %*s %*s %u %llu %llu %u",
314 &sub_block, &address, &value, &instance_mask) != 4 &&
315 sscanf(str, "%*s %*s %*s 0x%x 0x%llx 0x%llx",
316 &sub_block, &address, &value) != 3 &&
317 sscanf(str, "%*s %*s %*s %u %llu %llu",
318 &sub_block, &address, &value) != 3)
320 data->head.sub_block_index = sub_block;
321 data->inject.address = address;
322 data->inject.value = value;
323 data->inject.instance_mask = instance_mask;
326 if (size < sizeof(*data))
329 if (copy_from_user(data, buf, sizeof(*data)))
336 static void amdgpu_ras_instance_mask_check(struct amdgpu_device *adev,
337 struct ras_debug_if *data)
339 int num_xcc = adev->gfx.xcc_mask ? NUM_XCC(adev->gfx.xcc_mask) : 1;
340 uint32_t mask, inst_mask = data->inject.instance_mask;
342 /* no need to set instance mask if there is only one instance */
343 if (num_xcc <= 1 && inst_mask) {
344 data->inject.instance_mask = 0;
346 "RAS inject mask(0x%x) isn't supported and force it to 0.\n",
352 switch (data->head.block) {
353 case AMDGPU_RAS_BLOCK__GFX:
354 mask = GENMASK(num_xcc - 1, 0);
356 case AMDGPU_RAS_BLOCK__SDMA:
357 mask = GENMASK(adev->sdma.num_instances - 1, 0);
359 case AMDGPU_RAS_BLOCK__VCN:
360 case AMDGPU_RAS_BLOCK__JPEG:
361 mask = GENMASK(adev->vcn.num_vcn_inst - 1, 0);
368 /* remove invalid bits in instance mask */
369 data->inject.instance_mask &= mask;
370 if (inst_mask != data->inject.instance_mask)
372 "Adjust RAS inject mask 0x%x to 0x%x\n",
373 inst_mask, data->inject.instance_mask);
377 * DOC: AMDGPU RAS debugfs control interface
379 * The control interface accepts struct ras_debug_if which has two members.
381 * First member: ras_debug_if::head or ras_debug_if::inject.
383 * head is used to indicate which IP block will be under control.
385 * head has four members, they are block, type, sub_block_index, name.
386 * block: which IP will be under control.
387 * type: what kind of error will be enabled/disabled/injected.
388 * sub_block_index: some IPs have subcomponets. say, GFX, sDMA.
389 * name: the name of IP.
391 * inject has three more members than head, they are address, value and mask.
392 * As their names indicate, inject operation will write the
393 * value to the address.
395 * The second member: struct ras_debug_if::op.
396 * It has three kinds of operations.
398 * - 0: disable RAS on the block. Take ::head as its data.
399 * - 1: enable RAS on the block. Take ::head as its data.
400 * - 2: inject errors on the block. Take ::inject as its data.
402 * How to use the interface?
406 * Copy the struct ras_debug_if in your code and initialize it.
407 * Write the struct to the control interface.
411 * .. code-block:: bash
413 * echo "disable <block>" > /sys/kernel/debug/dri/<N>/ras/ras_ctrl
414 * echo "enable <block> <error>" > /sys/kernel/debug/dri/<N>/ras/ras_ctrl
415 * echo "inject <block> <error> <sub-block> <address> <value> <mask>" > /sys/kernel/debug/dri/<N>/ras/ras_ctrl
417 * Where N, is the card which you want to affect.
419 * "disable" requires only the block.
420 * "enable" requires the block and error type.
421 * "inject" requires the block, error type, address, and value.
423 * The block is one of: umc, sdma, gfx, etc.
424 * see ras_block_string[] for details
426 * The error type is one of: ue, ce, where,
427 * ue is multi-uncorrectable
428 * ce is single-correctable
430 * The sub-block is a the sub-block index, pass 0 if there is no sub-block.
431 * The address and value are hexadecimal numbers, leading 0x is optional.
432 * The mask means instance mask, is optional, default value is 0x1.
436 * .. code-block:: bash
438 * echo inject umc ue 0x0 0x0 0x0 > /sys/kernel/debug/dri/0/ras/ras_ctrl
439 * echo inject umc ce 0 0 0 3 > /sys/kernel/debug/dri/0/ras/ras_ctrl
440 * echo disable umc > /sys/kernel/debug/dri/0/ras/ras_ctrl
442 * How to check the result of the operation?
444 * To check disable/enable, see "ras" features at,
445 * /sys/class/drm/card[0/1/2...]/device/ras/features
447 * To check inject, see the corresponding error count at,
448 * /sys/class/drm/card[0/1/2...]/device/ras/[gfx|sdma|umc|...]_err_count
451 * Operations are only allowed on blocks which are supported.
452 * Check the "ras" mask at /sys/module/amdgpu/parameters/ras_mask
453 * to see which blocks support RAS on a particular asic.
456 static ssize_t amdgpu_ras_debugfs_ctrl_write(struct file *f,
457 const char __user *buf,
458 size_t size, loff_t *pos)
460 struct amdgpu_device *adev = (struct amdgpu_device *)file_inode(f)->i_private;
461 struct ras_debug_if data;
464 if (!amdgpu_ras_get_error_query_ready(adev)) {
465 dev_warn(adev->dev, "RAS WARN: error injection "
466 "currently inaccessible\n");
470 ret = amdgpu_ras_debugfs_ctrl_parse_data(f, buf, size, pos, &data);
475 ret = amdgpu_reserve_page_direct(adev, data.inject.address);
482 if (!amdgpu_ras_is_supported(adev, data.head.block))
487 ret = amdgpu_ras_feature_enable(adev, &data.head, 0);
490 ret = amdgpu_ras_feature_enable(adev, &data.head, 1);
493 if ((data.inject.address >= adev->gmc.mc_vram_size &&
494 adev->gmc.mc_vram_size) ||
495 (data.inject.address >= RAS_UMC_INJECT_ADDR_LIMIT)) {
496 dev_warn(adev->dev, "RAS WARN: input address "
497 "0x%llx is invalid.",
498 data.inject.address);
503 /* umc ce/ue error injection for a bad page is not allowed */
504 if ((data.head.block == AMDGPU_RAS_BLOCK__UMC) &&
505 amdgpu_ras_check_bad_page(adev, data.inject.address)) {
506 dev_warn(adev->dev, "RAS WARN: inject: 0x%llx has "
507 "already been marked as bad!\n",
508 data.inject.address);
512 amdgpu_ras_instance_mask_check(adev, &data);
514 /* data.inject.address is offset instead of absolute gpu address */
515 ret = amdgpu_ras_error_inject(adev, &data.inject);
529 * DOC: AMDGPU RAS debugfs EEPROM table reset interface
531 * Some boards contain an EEPROM which is used to persistently store a list of
532 * bad pages which experiences ECC errors in vram. This interface provides
533 * a way to reset the EEPROM, e.g., after testing error injection.
537 * .. code-block:: bash
539 * echo 1 > ../ras/ras_eeprom_reset
541 * will reset EEPROM table to 0 entries.
544 static ssize_t amdgpu_ras_debugfs_eeprom_write(struct file *f,
545 const char __user *buf,
546 size_t size, loff_t *pos)
548 struct amdgpu_device *adev =
549 (struct amdgpu_device *)file_inode(f)->i_private;
552 ret = amdgpu_ras_eeprom_reset_table(
553 &(amdgpu_ras_get_context(adev)->eeprom_control));
556 /* Something was written to EEPROM.
558 amdgpu_ras_get_context(adev)->flags = RAS_DEFAULT_FLAGS;
565 static const struct file_operations amdgpu_ras_debugfs_ctrl_ops = {
566 .owner = THIS_MODULE,
568 .write = amdgpu_ras_debugfs_ctrl_write,
569 .llseek = default_llseek
572 static const struct file_operations amdgpu_ras_debugfs_eeprom_ops = {
573 .owner = THIS_MODULE,
575 .write = amdgpu_ras_debugfs_eeprom_write,
576 .llseek = default_llseek
580 * DOC: AMDGPU RAS sysfs Error Count Interface
582 * It allows the user to read the error count for each IP block on the gpu through
583 * /sys/class/drm/card[0/1/2...]/device/ras/[gfx/sdma/...]_err_count
585 * It outputs the multiple lines which report the uncorrected (ue) and corrected
588 * The format of one line is below,
594 * .. code-block:: bash
600 static ssize_t amdgpu_ras_sysfs_read(struct device *dev,
601 struct device_attribute *attr, char *buf)
603 struct ras_manager *obj = container_of(attr, struct ras_manager, sysfs_attr);
604 struct ras_query_if info = {
608 if (!amdgpu_ras_get_error_query_ready(obj->adev))
609 return sysfs_emit(buf, "Query currently inaccessible\n");
611 if (amdgpu_ras_query_error_status(obj->adev, &info))
614 if (obj->adev->ip_versions[MP0_HWIP][0] != IP_VERSION(11, 0, 2) &&
615 obj->adev->ip_versions[MP0_HWIP][0] != IP_VERSION(11, 0, 4)) {
616 if (amdgpu_ras_reset_error_status(obj->adev, info.head.block))
617 dev_warn(obj->adev->dev, "Failed to reset error counter and error status");
620 return sysfs_emit(buf, "%s: %lu\n%s: %lu\n", "ue", info.ue_count,
621 "ce", info.ce_count);
626 #define get_obj(obj) do { (obj)->use++; } while (0)
627 #define alive_obj(obj) ((obj)->use)
629 static inline void put_obj(struct ras_manager *obj)
631 if (obj && (--obj->use == 0))
632 list_del(&obj->node);
633 if (obj && (obj->use < 0))
634 DRM_ERROR("RAS ERROR: Unbalance obj(%s) use\n", get_ras_block_str(&obj->head));
637 /* make one obj and return it. */
638 static struct ras_manager *amdgpu_ras_create_obj(struct amdgpu_device *adev,
639 struct ras_common_if *head)
641 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
642 struct ras_manager *obj;
644 if (!adev->ras_enabled || !con)
647 if (head->block >= AMDGPU_RAS_BLOCK_COUNT)
650 if (head->block == AMDGPU_RAS_BLOCK__MCA) {
651 if (head->sub_block_index >= AMDGPU_RAS_MCA_BLOCK__LAST)
654 obj = &con->objs[AMDGPU_RAS_BLOCK__LAST + head->sub_block_index];
656 obj = &con->objs[head->block];
658 /* already exist. return obj? */
664 list_add(&obj->node, &con->head);
670 /* return an obj equal to head, or the first when head is NULL */
671 struct ras_manager *amdgpu_ras_find_obj(struct amdgpu_device *adev,
672 struct ras_common_if *head)
674 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
675 struct ras_manager *obj;
678 if (!adev->ras_enabled || !con)
682 if (head->block >= AMDGPU_RAS_BLOCK_COUNT)
685 if (head->block == AMDGPU_RAS_BLOCK__MCA) {
686 if (head->sub_block_index >= AMDGPU_RAS_MCA_BLOCK__LAST)
689 obj = &con->objs[AMDGPU_RAS_BLOCK__LAST + head->sub_block_index];
691 obj = &con->objs[head->block];
696 for (i = 0; i < AMDGPU_RAS_BLOCK_COUNT + AMDGPU_RAS_MCA_BLOCK_COUNT; i++) {
707 /* feature ctl begin */
708 static int amdgpu_ras_is_feature_allowed(struct amdgpu_device *adev,
709 struct ras_common_if *head)
711 return adev->ras_hw_enabled & BIT(head->block);
714 static int amdgpu_ras_is_feature_enabled(struct amdgpu_device *adev,
715 struct ras_common_if *head)
717 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
719 return con->features & BIT(head->block);
723 * if obj is not created, then create one.
724 * set feature enable flag.
726 static int __amdgpu_ras_feature_enable(struct amdgpu_device *adev,
727 struct ras_common_if *head, int enable)
729 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
730 struct ras_manager *obj = amdgpu_ras_find_obj(adev, head);
732 /* If hardware does not support ras, then do not create obj.
733 * But if hardware support ras, we can create the obj.
734 * Ras framework checks con->hw_supported to see if it need do
735 * corresponding initialization.
736 * IP checks con->support to see if it need disable ras.
738 if (!amdgpu_ras_is_feature_allowed(adev, head))
743 obj = amdgpu_ras_create_obj(adev, head);
747 /* In case we create obj somewhere else */
750 con->features |= BIT(head->block);
752 if (obj && amdgpu_ras_is_feature_enabled(adev, head)) {
753 con->features &= ~BIT(head->block);
761 /* wrapper of psp_ras_enable_features */
762 int amdgpu_ras_feature_enable(struct amdgpu_device *adev,
763 struct ras_common_if *head, bool enable)
765 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
766 union ta_ras_cmd_input *info;
772 /* Do not enable ras feature if it is not allowed */
774 head->block != AMDGPU_RAS_BLOCK__GFX &&
775 !amdgpu_ras_is_feature_allowed(adev, head))
778 /* Only enable gfx ras feature from host side */
779 if (head->block == AMDGPU_RAS_BLOCK__GFX &&
780 !amdgpu_sriov_vf(adev) &&
781 !amdgpu_ras_intr_triggered()) {
782 info = kzalloc(sizeof(union ta_ras_cmd_input), GFP_KERNEL);
787 info->disable_features = (struct ta_ras_disable_features_input) {
788 .block_id = amdgpu_ras_block_to_ta(head->block),
789 .error_type = amdgpu_ras_error_to_ta(head->type),
792 info->enable_features = (struct ta_ras_enable_features_input) {
793 .block_id = amdgpu_ras_block_to_ta(head->block),
794 .error_type = amdgpu_ras_error_to_ta(head->type),
798 ret = psp_ras_enable_features(&adev->psp, info, enable);
800 dev_err(adev->dev, "ras %s %s failed poison:%d ret:%d\n",
801 enable ? "enable":"disable",
802 get_ras_block_str(head),
803 amdgpu_ras_is_poison_mode_supported(adev), ret);
809 __amdgpu_ras_feature_enable(adev, head, enable);
811 if (head->block == AMDGPU_RAS_BLOCK__GFX)
816 /* Only used in device probe stage and called only once. */
817 int amdgpu_ras_feature_enable_on_boot(struct amdgpu_device *adev,
818 struct ras_common_if *head, bool enable)
820 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
826 if (con->flags & AMDGPU_RAS_FLAG_INIT_BY_VBIOS) {
828 /* There is no harm to issue a ras TA cmd regardless of
829 * the currecnt ras state.
830 * If current state == target state, it will do nothing
831 * But sometimes it requests driver to reset and repost
832 * with error code -EAGAIN.
834 ret = amdgpu_ras_feature_enable(adev, head, 1);
835 /* With old ras TA, we might fail to enable ras.
836 * Log it and just setup the object.
837 * TODO need remove this WA in the future.
839 if (ret == -EINVAL) {
840 ret = __amdgpu_ras_feature_enable(adev, head, 1);
843 "RAS INFO: %s setup object\n",
844 get_ras_block_str(head));
847 /* setup the object then issue a ras TA disable cmd.*/
848 ret = __amdgpu_ras_feature_enable(adev, head, 1);
852 /* gfx block ras dsiable cmd must send to ras-ta */
853 if (head->block == AMDGPU_RAS_BLOCK__GFX)
854 con->features |= BIT(head->block);
856 ret = amdgpu_ras_feature_enable(adev, head, 0);
858 /* clean gfx block ras features flag */
859 if (adev->ras_enabled && head->block == AMDGPU_RAS_BLOCK__GFX)
860 con->features &= ~BIT(head->block);
863 ret = amdgpu_ras_feature_enable(adev, head, enable);
868 static int amdgpu_ras_disable_all_features(struct amdgpu_device *adev,
871 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
872 struct ras_manager *obj, *tmp;
874 list_for_each_entry_safe(obj, tmp, &con->head, node) {
876 * aka just release the obj and corresponding flags
879 if (__amdgpu_ras_feature_enable(adev, &obj->head, 0))
882 if (amdgpu_ras_feature_enable(adev, &obj->head, 0))
887 return con->features;
890 static int amdgpu_ras_enable_all_features(struct amdgpu_device *adev,
893 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
895 const enum amdgpu_ras_error_type default_ras_type = AMDGPU_RAS_ERROR__NONE;
897 for (i = 0; i < AMDGPU_RAS_BLOCK_COUNT; i++) {
898 struct ras_common_if head = {
900 .type = default_ras_type,
901 .sub_block_index = 0,
904 if (i == AMDGPU_RAS_BLOCK__MCA)
909 * bypass psp. vbios enable ras for us.
910 * so just create the obj
912 if (__amdgpu_ras_feature_enable(adev, &head, 1))
915 if (amdgpu_ras_feature_enable(adev, &head, 1))
920 for (i = 0; i < AMDGPU_RAS_MCA_BLOCK_COUNT; i++) {
921 struct ras_common_if head = {
922 .block = AMDGPU_RAS_BLOCK__MCA,
923 .type = default_ras_type,
924 .sub_block_index = i,
929 * bypass psp. vbios enable ras for us.
930 * so just create the obj
932 if (__amdgpu_ras_feature_enable(adev, &head, 1))
935 if (amdgpu_ras_feature_enable(adev, &head, 1))
940 return con->features;
942 /* feature ctl end */
944 static int amdgpu_ras_block_match_default(struct amdgpu_ras_block_object *block_obj,
945 enum amdgpu_ras_block block)
950 if (block_obj->ras_comm.block == block)
956 static struct amdgpu_ras_block_object *amdgpu_ras_get_ras_block(struct amdgpu_device *adev,
957 enum amdgpu_ras_block block, uint32_t sub_block_index)
959 struct amdgpu_ras_block_list *node, *tmp;
960 struct amdgpu_ras_block_object *obj;
962 if (block >= AMDGPU_RAS_BLOCK__LAST)
965 list_for_each_entry_safe(node, tmp, &adev->ras_list, node) {
966 if (!node->ras_obj) {
967 dev_warn(adev->dev, "Warning: abnormal ras list node.\n");
972 if (obj->ras_block_match) {
973 if (obj->ras_block_match(obj, block, sub_block_index) == 0)
976 if (amdgpu_ras_block_match_default(obj, block) == 0)
984 static void amdgpu_ras_get_ecc_info(struct amdgpu_device *adev, struct ras_err_data *err_data)
986 struct amdgpu_ras *ras = amdgpu_ras_get_context(adev);
990 * choosing right query method according to
991 * whether smu support query error information
993 ret = amdgpu_dpm_get_ecc_info(adev, (void *)&(ras->umc_ecc));
994 if (ret == -EOPNOTSUPP) {
995 if (adev->umc.ras && adev->umc.ras->ras_block.hw_ops &&
996 adev->umc.ras->ras_block.hw_ops->query_ras_error_count)
997 adev->umc.ras->ras_block.hw_ops->query_ras_error_count(adev, err_data);
999 /* umc query_ras_error_address is also responsible for clearing
1002 if (adev->umc.ras && adev->umc.ras->ras_block.hw_ops &&
1003 adev->umc.ras->ras_block.hw_ops->query_ras_error_address)
1004 adev->umc.ras->ras_block.hw_ops->query_ras_error_address(adev, err_data);
1006 if (adev->umc.ras &&
1007 adev->umc.ras->ecc_info_query_ras_error_count)
1008 adev->umc.ras->ecc_info_query_ras_error_count(adev, err_data);
1010 if (adev->umc.ras &&
1011 adev->umc.ras->ecc_info_query_ras_error_address)
1012 adev->umc.ras->ecc_info_query_ras_error_address(adev, err_data);
1016 /* query/inject/cure begin */
1017 int amdgpu_ras_query_error_status(struct amdgpu_device *adev,
1018 struct ras_query_if *info)
1020 struct amdgpu_ras_block_object *block_obj = NULL;
1021 struct ras_manager *obj = amdgpu_ras_find_obj(adev, &info->head);
1022 struct ras_err_data err_data = {0, 0, 0, NULL};
1027 if (info->head.block == AMDGPU_RAS_BLOCK__UMC) {
1028 amdgpu_ras_get_ecc_info(adev, &err_data);
1030 block_obj = amdgpu_ras_get_ras_block(adev, info->head.block, 0);
1031 if (!block_obj || !block_obj->hw_ops) {
1032 dev_dbg_once(adev->dev, "%s doesn't config RAS function\n",
1033 get_ras_block_str(&info->head));
1037 if (block_obj->hw_ops->query_ras_error_count)
1038 block_obj->hw_ops->query_ras_error_count(adev, &err_data);
1040 if ((info->head.block == AMDGPU_RAS_BLOCK__SDMA) ||
1041 (info->head.block == AMDGPU_RAS_BLOCK__GFX) ||
1042 (info->head.block == AMDGPU_RAS_BLOCK__MMHUB)) {
1043 if (block_obj->hw_ops->query_ras_error_status)
1044 block_obj->hw_ops->query_ras_error_status(adev);
1048 obj->err_data.ue_count += err_data.ue_count;
1049 obj->err_data.ce_count += err_data.ce_count;
1051 info->ue_count = obj->err_data.ue_count;
1052 info->ce_count = obj->err_data.ce_count;
1054 if (err_data.ce_count) {
1055 if (adev->smuio.funcs &&
1056 adev->smuio.funcs->get_socket_id &&
1057 adev->smuio.funcs->get_die_id) {
1058 dev_info(adev->dev, "socket: %d, die: %d "
1059 "%ld correctable hardware errors "
1060 "detected in %s block, no user "
1061 "action is needed.\n",
1062 adev->smuio.funcs->get_socket_id(adev),
1063 adev->smuio.funcs->get_die_id(adev),
1064 obj->err_data.ce_count,
1065 get_ras_block_str(&info->head));
1067 dev_info(adev->dev, "%ld correctable hardware errors "
1068 "detected in %s block, no user "
1069 "action is needed.\n",
1070 obj->err_data.ce_count,
1071 get_ras_block_str(&info->head));
1074 if (err_data.ue_count) {
1075 if (adev->smuio.funcs &&
1076 adev->smuio.funcs->get_socket_id &&
1077 adev->smuio.funcs->get_die_id) {
1078 dev_info(adev->dev, "socket: %d, die: %d "
1079 "%ld uncorrectable hardware errors "
1080 "detected in %s block\n",
1081 adev->smuio.funcs->get_socket_id(adev),
1082 adev->smuio.funcs->get_die_id(adev),
1083 obj->err_data.ue_count,
1084 get_ras_block_str(&info->head));
1086 dev_info(adev->dev, "%ld uncorrectable hardware errors "
1087 "detected in %s block\n",
1088 obj->err_data.ue_count,
1089 get_ras_block_str(&info->head));
1096 int amdgpu_ras_reset_error_status(struct amdgpu_device *adev,
1097 enum amdgpu_ras_block block)
1099 struct amdgpu_ras_block_object *block_obj = amdgpu_ras_get_ras_block(adev, block, 0);
1101 if (!amdgpu_ras_is_supported(adev, block))
1104 if (!block_obj || !block_obj->hw_ops) {
1105 dev_dbg_once(adev->dev, "%s doesn't config RAS function\n",
1106 ras_block_str(block));
1110 if (block_obj->hw_ops->reset_ras_error_count)
1111 block_obj->hw_ops->reset_ras_error_count(adev);
1113 if ((block == AMDGPU_RAS_BLOCK__GFX) ||
1114 (block == AMDGPU_RAS_BLOCK__MMHUB)) {
1115 if (block_obj->hw_ops->reset_ras_error_status)
1116 block_obj->hw_ops->reset_ras_error_status(adev);
1122 /* wrapper of psp_ras_trigger_error */
1123 int amdgpu_ras_error_inject(struct amdgpu_device *adev,
1124 struct ras_inject_if *info)
1126 struct ras_manager *obj = amdgpu_ras_find_obj(adev, &info->head);
1127 struct ta_ras_trigger_error_input block_info = {
1128 .block_id = amdgpu_ras_block_to_ta(info->head.block),
1129 .inject_error_type = amdgpu_ras_error_to_ta(info->head.type),
1130 .sub_block_index = info->head.sub_block_index,
1131 .address = info->address,
1132 .value = info->value,
1135 struct amdgpu_ras_block_object *block_obj = amdgpu_ras_get_ras_block(adev,
1137 info->head.sub_block_index);
1139 /* inject on guest isn't allowed, return success directly */
1140 if (amdgpu_sriov_vf(adev))
1146 if (!block_obj || !block_obj->hw_ops) {
1147 dev_dbg_once(adev->dev, "%s doesn't config RAS function\n",
1148 get_ras_block_str(&info->head));
1152 /* Calculate XGMI relative offset */
1153 if (adev->gmc.xgmi.num_physical_nodes > 1 &&
1154 info->head.block != AMDGPU_RAS_BLOCK__GFX) {
1155 block_info.address =
1156 amdgpu_xgmi_get_relative_phy_addr(adev,
1157 block_info.address);
1160 if (block_obj->hw_ops->ras_error_inject) {
1161 if (info->head.block == AMDGPU_RAS_BLOCK__GFX)
1162 ret = block_obj->hw_ops->ras_error_inject(adev, info, info->instance_mask);
1163 else /* Special ras_error_inject is defined (e.g: xgmi) */
1164 ret = block_obj->hw_ops->ras_error_inject(adev, &block_info,
1165 info->instance_mask);
1168 ret = psp_ras_trigger_error(&adev->psp, &block_info, info->instance_mask);
1172 dev_err(adev->dev, "ras inject %s failed %d\n",
1173 get_ras_block_str(&info->head), ret);
1179 * amdgpu_ras_query_error_count_helper -- Get error counter for specific IP
1180 * @adev: pointer to AMD GPU device
1181 * @ce_count: pointer to an integer to be set to the count of correctible errors.
1182 * @ue_count: pointer to an integer to be set to the count of uncorrectible errors.
1183 * @query_info: pointer to ras_query_if
1185 * Return 0 for query success or do nothing, otherwise return an error
1188 static int amdgpu_ras_query_error_count_helper(struct amdgpu_device *adev,
1189 unsigned long *ce_count,
1190 unsigned long *ue_count,
1191 struct ras_query_if *query_info)
1196 /* do nothing if query_info is not specified */
1199 ret = amdgpu_ras_query_error_status(adev, query_info);
1203 *ce_count += query_info->ce_count;
1204 *ue_count += query_info->ue_count;
1206 /* some hardware/IP supports read to clear
1207 * no need to explictly reset the err status after the query call */
1208 if (adev->ip_versions[MP0_HWIP][0] != IP_VERSION(11, 0, 2) &&
1209 adev->ip_versions[MP0_HWIP][0] != IP_VERSION(11, 0, 4)) {
1210 if (amdgpu_ras_reset_error_status(adev, query_info->head.block))
1212 "Failed to reset error counter and error status\n");
1219 * amdgpu_ras_query_error_count -- Get error counts of all IPs or specific IP
1220 * @adev: pointer to AMD GPU device
1221 * @ce_count: pointer to an integer to be set to the count of correctible errors.
1222 * @ue_count: pointer to an integer to be set to the count of uncorrectible
1224 * @query_info: pointer to ras_query_if if the query request is only for
1225 * specific ip block; if info is NULL, then the qurey request is for
1226 * all the ip blocks that support query ras error counters/status
1228 * If set, @ce_count or @ue_count, count and return the corresponding
1229 * error counts in those integer pointers. Return 0 if the device
1230 * supports RAS. Return -EOPNOTSUPP if the device doesn't support RAS.
1232 int amdgpu_ras_query_error_count(struct amdgpu_device *adev,
1233 unsigned long *ce_count,
1234 unsigned long *ue_count,
1235 struct ras_query_if *query_info)
1237 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1238 struct ras_manager *obj;
1239 unsigned long ce, ue;
1242 if (!adev->ras_enabled || !con)
1245 /* Don't count since no reporting.
1247 if (!ce_count && !ue_count)
1253 /* query all the ip blocks that support ras query interface */
1254 list_for_each_entry(obj, &con->head, node) {
1255 struct ras_query_if info = {
1259 ret = amdgpu_ras_query_error_count_helper(adev, &ce, &ue, &info);
1262 /* query specific ip block */
1263 ret = amdgpu_ras_query_error_count_helper(adev, &ce, &ue, query_info);
1277 /* query/inject/cure end */
1282 static int amdgpu_ras_badpages_read(struct amdgpu_device *adev,
1283 struct ras_badpage **bps, unsigned int *count);
1285 static char *amdgpu_ras_badpage_flags_str(unsigned int flags)
1288 case AMDGPU_RAS_RETIRE_PAGE_RESERVED:
1290 case AMDGPU_RAS_RETIRE_PAGE_PENDING:
1292 case AMDGPU_RAS_RETIRE_PAGE_FAULT:
1299 * DOC: AMDGPU RAS sysfs gpu_vram_bad_pages Interface
1301 * It allows user to read the bad pages of vram on the gpu through
1302 * /sys/class/drm/card[0/1/2...]/device/ras/gpu_vram_bad_pages
1304 * It outputs multiple lines, and each line stands for one gpu page.
1306 * The format of one line is below,
1307 * gpu pfn : gpu page size : flags
1309 * gpu pfn and gpu page size are printed in hex format.
1310 * flags can be one of below character,
1312 * R: reserved, this gpu page is reserved and not able to use.
1314 * P: pending for reserve, this gpu page is marked as bad, will be reserved
1315 * in next window of page_reserve.
1317 * F: unable to reserve. this gpu page can't be reserved due to some reasons.
1321 * .. code-block:: bash
1323 * 0x00000001 : 0x00001000 : R
1324 * 0x00000002 : 0x00001000 : P
1328 static ssize_t amdgpu_ras_sysfs_badpages_read(struct file *f,
1329 struct kobject *kobj, struct bin_attribute *attr,
1330 char *buf, loff_t ppos, size_t count)
1332 struct amdgpu_ras *con =
1333 container_of(attr, struct amdgpu_ras, badpages_attr);
1334 struct amdgpu_device *adev = con->adev;
1335 const unsigned int element_size =
1336 sizeof("0xabcdabcd : 0x12345678 : R\n") - 1;
1337 unsigned int start = div64_ul(ppos + element_size - 1, element_size);
1338 unsigned int end = div64_ul(ppos + count - 1, element_size);
1340 struct ras_badpage *bps = NULL;
1341 unsigned int bps_count = 0;
1343 memset(buf, 0, count);
1345 if (amdgpu_ras_badpages_read(adev, &bps, &bps_count))
1348 for (; start < end && start < bps_count; start++)
1349 s += scnprintf(&buf[s], element_size + 1,
1350 "0x%08x : 0x%08x : %1s\n",
1353 amdgpu_ras_badpage_flags_str(bps[start].flags));
1360 static ssize_t amdgpu_ras_sysfs_features_read(struct device *dev,
1361 struct device_attribute *attr, char *buf)
1363 struct amdgpu_ras *con =
1364 container_of(attr, struct amdgpu_ras, features_attr);
1366 return sysfs_emit(buf, "feature mask: 0x%x\n", con->features);
1369 static void amdgpu_ras_sysfs_remove_bad_page_node(struct amdgpu_device *adev)
1371 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1373 sysfs_remove_file_from_group(&adev->dev->kobj,
1374 &con->badpages_attr.attr,
1378 static int amdgpu_ras_sysfs_remove_feature_node(struct amdgpu_device *adev)
1380 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1381 struct attribute *attrs[] = {
1382 &con->features_attr.attr,
1385 struct attribute_group group = {
1386 .name = RAS_FS_NAME,
1390 sysfs_remove_group(&adev->dev->kobj, &group);
1395 int amdgpu_ras_sysfs_create(struct amdgpu_device *adev,
1396 struct ras_common_if *head)
1398 struct ras_manager *obj = amdgpu_ras_find_obj(adev, head);
1400 if (!obj || obj->attr_inuse)
1405 snprintf(obj->fs_data.sysfs_name, sizeof(obj->fs_data.sysfs_name),
1406 "%s_err_count", head->name);
1408 obj->sysfs_attr = (struct device_attribute){
1410 .name = obj->fs_data.sysfs_name,
1413 .show = amdgpu_ras_sysfs_read,
1415 sysfs_attr_init(&obj->sysfs_attr.attr);
1417 if (sysfs_add_file_to_group(&adev->dev->kobj,
1418 &obj->sysfs_attr.attr,
1424 obj->attr_inuse = 1;
1429 int amdgpu_ras_sysfs_remove(struct amdgpu_device *adev,
1430 struct ras_common_if *head)
1432 struct ras_manager *obj = amdgpu_ras_find_obj(adev, head);
1434 if (!obj || !obj->attr_inuse)
1437 sysfs_remove_file_from_group(&adev->dev->kobj,
1438 &obj->sysfs_attr.attr,
1440 obj->attr_inuse = 0;
1446 static int amdgpu_ras_sysfs_remove_all(struct amdgpu_device *adev)
1448 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1449 struct ras_manager *obj, *tmp;
1451 list_for_each_entry_safe(obj, tmp, &con->head, node) {
1452 amdgpu_ras_sysfs_remove(adev, &obj->head);
1455 if (amdgpu_bad_page_threshold != 0)
1456 amdgpu_ras_sysfs_remove_bad_page_node(adev);
1458 amdgpu_ras_sysfs_remove_feature_node(adev);
1465 * DOC: AMDGPU RAS Reboot Behavior for Unrecoverable Errors
1467 * Normally when there is an uncorrectable error, the driver will reset
1468 * the GPU to recover. However, in the event of an unrecoverable error,
1469 * the driver provides an interface to reboot the system automatically
1472 * The following file in debugfs provides that interface:
1473 * /sys/kernel/debug/dri/[0/1/2...]/ras/auto_reboot
1477 * .. code-block:: bash
1479 * echo true > .../ras/auto_reboot
1483 static struct dentry *amdgpu_ras_debugfs_create_ctrl_node(struct amdgpu_device *adev)
1485 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1486 struct amdgpu_ras_eeprom_control *eeprom = &con->eeprom_control;
1487 struct drm_minor *minor = adev_to_drm(adev)->primary;
1490 dir = debugfs_create_dir(RAS_FS_NAME, minor->debugfs_root);
1491 debugfs_create_file("ras_ctrl", S_IWUGO | S_IRUGO, dir, adev,
1492 &amdgpu_ras_debugfs_ctrl_ops);
1493 debugfs_create_file("ras_eeprom_reset", S_IWUGO | S_IRUGO, dir, adev,
1494 &amdgpu_ras_debugfs_eeprom_ops);
1495 debugfs_create_u32("bad_page_cnt_threshold", 0444, dir,
1496 &con->bad_page_cnt_threshold);
1497 debugfs_create_u32("ras_num_recs", 0444, dir, &eeprom->ras_num_recs);
1498 debugfs_create_x32("ras_hw_enabled", 0444, dir, &adev->ras_hw_enabled);
1499 debugfs_create_x32("ras_enabled", 0444, dir, &adev->ras_enabled);
1500 debugfs_create_file("ras_eeprom_size", S_IRUGO, dir, adev,
1501 &amdgpu_ras_debugfs_eeprom_size_ops);
1502 con->de_ras_eeprom_table = debugfs_create_file("ras_eeprom_table",
1504 &amdgpu_ras_debugfs_eeprom_table_ops);
1505 amdgpu_ras_debugfs_set_ret_size(&con->eeprom_control);
1508 * After one uncorrectable error happens, usually GPU recovery will
1509 * be scheduled. But due to the known problem in GPU recovery failing
1510 * to bring GPU back, below interface provides one direct way to
1511 * user to reboot system automatically in such case within
1512 * ERREVENT_ATHUB_INTERRUPT generated. Normal GPU recovery routine
1513 * will never be called.
1515 debugfs_create_bool("auto_reboot", S_IWUGO | S_IRUGO, dir, &con->reboot);
1518 * User could set this not to clean up hardware's error count register
1519 * of RAS IPs during ras recovery.
1521 debugfs_create_bool("disable_ras_err_cnt_harvest", 0644, dir,
1522 &con->disable_ras_err_cnt_harvest);
1526 static void amdgpu_ras_debugfs_create(struct amdgpu_device *adev,
1527 struct ras_fs_if *head,
1530 struct ras_manager *obj = amdgpu_ras_find_obj(adev, &head->head);
1537 memcpy(obj->fs_data.debugfs_name,
1539 sizeof(obj->fs_data.debugfs_name));
1541 debugfs_create_file(obj->fs_data.debugfs_name, S_IWUGO | S_IRUGO, dir,
1542 obj, &amdgpu_ras_debugfs_ops);
1545 void amdgpu_ras_debugfs_create_all(struct amdgpu_device *adev)
1547 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1549 struct ras_manager *obj;
1550 struct ras_fs_if fs_info;
1553 * it won't be called in resume path, no need to check
1554 * suspend and gpu reset status
1556 if (!IS_ENABLED(CONFIG_DEBUG_FS) || !con)
1559 dir = amdgpu_ras_debugfs_create_ctrl_node(adev);
1561 list_for_each_entry(obj, &con->head, node) {
1562 if (amdgpu_ras_is_supported(adev, obj->head.block) &&
1563 (obj->attr_inuse == 1)) {
1564 sprintf(fs_info.debugfs_name, "%s_err_inject",
1565 get_ras_block_str(&obj->head));
1566 fs_info.head = obj->head;
1567 amdgpu_ras_debugfs_create(adev, &fs_info, dir);
1575 static BIN_ATTR(gpu_vram_bad_pages, S_IRUGO,
1576 amdgpu_ras_sysfs_badpages_read, NULL, 0);
1577 static DEVICE_ATTR(features, S_IRUGO,
1578 amdgpu_ras_sysfs_features_read, NULL);
1579 static int amdgpu_ras_fs_init(struct amdgpu_device *adev)
1581 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1582 struct attribute_group group = {
1583 .name = RAS_FS_NAME,
1585 struct attribute *attrs[] = {
1586 &con->features_attr.attr,
1589 struct bin_attribute *bin_attrs[] = {
1595 /* add features entry */
1596 con->features_attr = dev_attr_features;
1597 group.attrs = attrs;
1598 sysfs_attr_init(attrs[0]);
1600 if (amdgpu_bad_page_threshold != 0) {
1601 /* add bad_page_features entry */
1602 bin_attr_gpu_vram_bad_pages.private = NULL;
1603 con->badpages_attr = bin_attr_gpu_vram_bad_pages;
1604 bin_attrs[0] = &con->badpages_attr;
1605 group.bin_attrs = bin_attrs;
1606 sysfs_bin_attr_init(bin_attrs[0]);
1609 r = sysfs_create_group(&adev->dev->kobj, &group);
1611 dev_err(adev->dev, "Failed to create RAS sysfs group!");
1616 static int amdgpu_ras_fs_fini(struct amdgpu_device *adev)
1618 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1619 struct ras_manager *con_obj, *ip_obj, *tmp;
1621 if (IS_ENABLED(CONFIG_DEBUG_FS)) {
1622 list_for_each_entry_safe(con_obj, tmp, &con->head, node) {
1623 ip_obj = amdgpu_ras_find_obj(adev, &con_obj->head);
1629 amdgpu_ras_sysfs_remove_all(adev);
1636 /* For the hardware that cannot enable bif ring for both ras_controller_irq
1637 * and ras_err_evnet_athub_irq ih cookies, the driver has to poll status
1638 * register to check whether the interrupt is triggered or not, and properly
1639 * ack the interrupt if it is there
1641 void amdgpu_ras_interrupt_fatal_error_handler(struct amdgpu_device *adev)
1643 /* Fatal error events are handled on host side */
1644 if (amdgpu_sriov_vf(adev))
1647 if (adev->nbio.ras &&
1648 adev->nbio.ras->handle_ras_controller_intr_no_bifring)
1649 adev->nbio.ras->handle_ras_controller_intr_no_bifring(adev);
1651 if (adev->nbio.ras &&
1652 adev->nbio.ras->handle_ras_err_event_athub_intr_no_bifring)
1653 adev->nbio.ras->handle_ras_err_event_athub_intr_no_bifring(adev);
1656 static void amdgpu_ras_interrupt_poison_consumption_handler(struct ras_manager *obj,
1657 struct amdgpu_iv_entry *entry)
1659 bool poison_stat = false;
1660 struct amdgpu_device *adev = obj->adev;
1661 struct amdgpu_ras_block_object *block_obj =
1662 amdgpu_ras_get_ras_block(adev, obj->head.block, 0);
1667 /* both query_poison_status and handle_poison_consumption are optional,
1668 * but at least one of them should be implemented if we need poison
1669 * consumption handler
1671 if (block_obj->hw_ops && block_obj->hw_ops->query_poison_status) {
1672 poison_stat = block_obj->hw_ops->query_poison_status(adev);
1674 /* Not poison consumption interrupt, no need to handle it */
1675 dev_info(adev->dev, "No RAS poison status in %s poison IH.\n",
1676 block_obj->ras_comm.name);
1682 amdgpu_umc_poison_handler(adev, false);
1684 if (block_obj->hw_ops && block_obj->hw_ops->handle_poison_consumption)
1685 poison_stat = block_obj->hw_ops->handle_poison_consumption(adev);
1687 /* gpu reset is fallback for failed and default cases */
1689 dev_info(adev->dev, "GPU reset for %s RAS poison consumption is issued!\n",
1690 block_obj->ras_comm.name);
1691 amdgpu_ras_reset_gpu(adev);
1693 amdgpu_gfx_poison_consumption_handler(adev, entry);
1697 static void amdgpu_ras_interrupt_poison_creation_handler(struct ras_manager *obj,
1698 struct amdgpu_iv_entry *entry)
1700 dev_info(obj->adev->dev,
1701 "Poison is created, no user action is needed.\n");
1704 static void amdgpu_ras_interrupt_umc_handler(struct ras_manager *obj,
1705 struct amdgpu_iv_entry *entry)
1707 struct ras_ih_data *data = &obj->ih_data;
1708 struct ras_err_data err_data = {0, 0, 0, NULL};
1714 /* Let IP handle its data, maybe we need get the output
1715 * from the callback to update the error type/count, etc
1717 ret = data->cb(obj->adev, &err_data, entry);
1718 /* ue will trigger an interrupt, and in that case
1719 * we need do a reset to recovery the whole system.
1720 * But leave IP do that recovery, here we just dispatch
1723 if (ret == AMDGPU_RAS_SUCCESS) {
1724 /* these counts could be left as 0 if
1725 * some blocks do not count error number
1727 obj->err_data.ue_count += err_data.ue_count;
1728 obj->err_data.ce_count += err_data.ce_count;
1732 static void amdgpu_ras_interrupt_handler(struct ras_manager *obj)
1734 struct ras_ih_data *data = &obj->ih_data;
1735 struct amdgpu_iv_entry entry;
1737 while (data->rptr != data->wptr) {
1739 memcpy(&entry, &data->ring[data->rptr],
1740 data->element_size);
1743 data->rptr = (data->aligned_element_size +
1744 data->rptr) % data->ring_size;
1746 if (amdgpu_ras_is_poison_mode_supported(obj->adev)) {
1747 if (obj->head.block == AMDGPU_RAS_BLOCK__UMC)
1748 amdgpu_ras_interrupt_poison_creation_handler(obj, &entry);
1750 amdgpu_ras_interrupt_poison_consumption_handler(obj, &entry);
1752 if (obj->head.block == AMDGPU_RAS_BLOCK__UMC)
1753 amdgpu_ras_interrupt_umc_handler(obj, &entry);
1755 dev_warn(obj->adev->dev,
1756 "No RAS interrupt handler for non-UMC block with poison disabled.\n");
1761 static void amdgpu_ras_interrupt_process_handler(struct work_struct *work)
1763 struct ras_ih_data *data =
1764 container_of(work, struct ras_ih_data, ih_work);
1765 struct ras_manager *obj =
1766 container_of(data, struct ras_manager, ih_data);
1768 amdgpu_ras_interrupt_handler(obj);
1771 int amdgpu_ras_interrupt_dispatch(struct amdgpu_device *adev,
1772 struct ras_dispatch_if *info)
1774 struct ras_manager *obj = amdgpu_ras_find_obj(adev, &info->head);
1775 struct ras_ih_data *data = &obj->ih_data;
1780 if (data->inuse == 0)
1783 /* Might be overflow... */
1784 memcpy(&data->ring[data->wptr], info->entry,
1785 data->element_size);
1788 data->wptr = (data->aligned_element_size +
1789 data->wptr) % data->ring_size;
1791 schedule_work(&data->ih_work);
1796 int amdgpu_ras_interrupt_remove_handler(struct amdgpu_device *adev,
1797 struct ras_common_if *head)
1799 struct ras_manager *obj = amdgpu_ras_find_obj(adev, head);
1800 struct ras_ih_data *data;
1805 data = &obj->ih_data;
1806 if (data->inuse == 0)
1809 cancel_work_sync(&data->ih_work);
1812 memset(data, 0, sizeof(*data));
1818 int amdgpu_ras_interrupt_add_handler(struct amdgpu_device *adev,
1819 struct ras_common_if *head)
1821 struct ras_manager *obj = amdgpu_ras_find_obj(adev, head);
1822 struct ras_ih_data *data;
1823 struct amdgpu_ras_block_object *ras_obj;
1826 /* in case we registe the IH before enable ras feature */
1827 obj = amdgpu_ras_create_obj(adev, head);
1833 ras_obj = container_of(head, struct amdgpu_ras_block_object, ras_comm);
1835 data = &obj->ih_data;
1836 /* add the callback.etc */
1837 *data = (struct ras_ih_data) {
1839 .cb = ras_obj->ras_cb,
1840 .element_size = sizeof(struct amdgpu_iv_entry),
1845 INIT_WORK(&data->ih_work, amdgpu_ras_interrupt_process_handler);
1847 data->aligned_element_size = ALIGN(data->element_size, 8);
1848 /* the ring can store 64 iv entries. */
1849 data->ring_size = 64 * data->aligned_element_size;
1850 data->ring = kmalloc(data->ring_size, GFP_KERNEL);
1862 static int amdgpu_ras_interrupt_remove_all(struct amdgpu_device *adev)
1864 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1865 struct ras_manager *obj, *tmp;
1867 list_for_each_entry_safe(obj, tmp, &con->head, node) {
1868 amdgpu_ras_interrupt_remove_handler(adev, &obj->head);
1875 /* traversal all IPs except NBIO to query error counter */
1876 static void amdgpu_ras_log_on_err_counter(struct amdgpu_device *adev)
1878 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1879 struct ras_manager *obj;
1881 if (!adev->ras_enabled || !con)
1884 list_for_each_entry(obj, &con->head, node) {
1885 struct ras_query_if info = {
1890 * PCIE_BIF IP has one different isr by ras controller
1891 * interrupt, the specific ras counter query will be
1892 * done in that isr. So skip such block from common
1893 * sync flood interrupt isr calling.
1895 if (info.head.block == AMDGPU_RAS_BLOCK__PCIE_BIF)
1899 * this is a workaround for aldebaran, skip send msg to
1900 * smu to get ecc_info table due to smu handle get ecc
1901 * info table failed temporarily.
1902 * should be removed until smu fix handle ecc_info table.
1904 if ((info.head.block == AMDGPU_RAS_BLOCK__UMC) &&
1905 (adev->ip_versions[MP1_HWIP][0] == IP_VERSION(13, 0, 2)))
1908 amdgpu_ras_query_error_status(adev, &info);
1910 if (adev->ip_versions[MP0_HWIP][0] != IP_VERSION(11, 0, 2) &&
1911 adev->ip_versions[MP0_HWIP][0] != IP_VERSION(11, 0, 4) &&
1912 adev->ip_versions[MP0_HWIP][0] != IP_VERSION(13, 0, 0)) {
1913 if (amdgpu_ras_reset_error_status(adev, info.head.block))
1914 dev_warn(adev->dev, "Failed to reset error counter and error status");
1919 /* Parse RdRspStatus and WrRspStatus */
1920 static void amdgpu_ras_error_status_query(struct amdgpu_device *adev,
1921 struct ras_query_if *info)
1923 struct amdgpu_ras_block_object *block_obj;
1925 * Only two block need to query read/write
1926 * RspStatus at current state
1928 if ((info->head.block != AMDGPU_RAS_BLOCK__GFX) &&
1929 (info->head.block != AMDGPU_RAS_BLOCK__MMHUB))
1932 block_obj = amdgpu_ras_get_ras_block(adev,
1934 info->head.sub_block_index);
1936 if (!block_obj || !block_obj->hw_ops) {
1937 dev_dbg_once(adev->dev, "%s doesn't config RAS function\n",
1938 get_ras_block_str(&info->head));
1942 if (block_obj->hw_ops->query_ras_error_status)
1943 block_obj->hw_ops->query_ras_error_status(adev);
1947 static void amdgpu_ras_query_err_status(struct amdgpu_device *adev)
1949 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1950 struct ras_manager *obj;
1952 if (!adev->ras_enabled || !con)
1955 list_for_each_entry(obj, &con->head, node) {
1956 struct ras_query_if info = {
1960 amdgpu_ras_error_status_query(adev, &info);
1964 /* recovery begin */
1966 /* return 0 on success.
1967 * caller need free bps.
1969 static int amdgpu_ras_badpages_read(struct amdgpu_device *adev,
1970 struct ras_badpage **bps, unsigned int *count)
1972 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1973 struct ras_err_handler_data *data;
1975 int ret = 0, status;
1977 if (!con || !con->eh_data || !bps || !count)
1980 mutex_lock(&con->recovery_lock);
1981 data = con->eh_data;
1982 if (!data || data->count == 0) {
1988 *bps = kmalloc(sizeof(struct ras_badpage) * data->count, GFP_KERNEL);
1994 for (; i < data->count; i++) {
1995 (*bps)[i] = (struct ras_badpage){
1996 .bp = data->bps[i].retired_page,
1997 .size = AMDGPU_GPU_PAGE_SIZE,
1998 .flags = AMDGPU_RAS_RETIRE_PAGE_RESERVED,
2000 status = amdgpu_vram_mgr_query_page_status(&adev->mman.vram_mgr,
2001 data->bps[i].retired_page);
2002 if (status == -EBUSY)
2003 (*bps)[i].flags = AMDGPU_RAS_RETIRE_PAGE_PENDING;
2004 else if (status == -ENOENT)
2005 (*bps)[i].flags = AMDGPU_RAS_RETIRE_PAGE_FAULT;
2008 *count = data->count;
2010 mutex_unlock(&con->recovery_lock);
2014 static void amdgpu_ras_do_recovery(struct work_struct *work)
2016 struct amdgpu_ras *ras =
2017 container_of(work, struct amdgpu_ras, recovery_work);
2018 struct amdgpu_device *remote_adev = NULL;
2019 struct amdgpu_device *adev = ras->adev;
2020 struct list_head device_list, *device_list_handle = NULL;
2022 if (!ras->disable_ras_err_cnt_harvest) {
2023 struct amdgpu_hive_info *hive = amdgpu_get_xgmi_hive(adev);
2025 /* Build list of devices to query RAS related errors */
2026 if (hive && adev->gmc.xgmi.num_physical_nodes > 1) {
2027 device_list_handle = &hive->device_list;
2029 INIT_LIST_HEAD(&device_list);
2030 list_add_tail(&adev->gmc.xgmi.head, &device_list);
2031 device_list_handle = &device_list;
2034 list_for_each_entry(remote_adev,
2035 device_list_handle, gmc.xgmi.head) {
2036 amdgpu_ras_query_err_status(remote_adev);
2037 amdgpu_ras_log_on_err_counter(remote_adev);
2040 amdgpu_put_xgmi_hive(hive);
2043 if (amdgpu_device_should_recover_gpu(ras->adev)) {
2044 struct amdgpu_reset_context reset_context;
2045 memset(&reset_context, 0, sizeof(reset_context));
2047 reset_context.method = AMD_RESET_METHOD_NONE;
2048 reset_context.reset_req_dev = adev;
2050 /* Perform full reset in fatal error mode */
2051 if (!amdgpu_ras_is_poison_mode_supported(ras->adev))
2052 set_bit(AMDGPU_NEED_FULL_RESET, &reset_context.flags);
2054 clear_bit(AMDGPU_NEED_FULL_RESET, &reset_context.flags);
2056 if (ras->gpu_reset_flags & AMDGPU_RAS_GPU_RESET_MODE2_RESET) {
2057 ras->gpu_reset_flags &= ~AMDGPU_RAS_GPU_RESET_MODE2_RESET;
2058 reset_context.method = AMD_RESET_METHOD_MODE2;
2061 /* Fatal error occurs in poison mode, mode1 reset is used to
2064 if (ras->gpu_reset_flags & AMDGPU_RAS_GPU_RESET_MODE1_RESET) {
2065 ras->gpu_reset_flags &= ~AMDGPU_RAS_GPU_RESET_MODE1_RESET;
2066 set_bit(AMDGPU_NEED_FULL_RESET, &reset_context.flags);
2068 psp_fatal_error_recovery_quirk(&adev->psp);
2072 amdgpu_device_gpu_recover(ras->adev, NULL, &reset_context);
2074 atomic_set(&ras->in_recovery, 0);
2077 /* alloc/realloc bps array */
2078 static int amdgpu_ras_realloc_eh_data_space(struct amdgpu_device *adev,
2079 struct ras_err_handler_data *data, int pages)
2081 unsigned int old_space = data->count + data->space_left;
2082 unsigned int new_space = old_space + pages;
2083 unsigned int align_space = ALIGN(new_space, 512);
2084 void *bps = kmalloc(align_space * sizeof(*data->bps), GFP_KERNEL);
2091 memcpy(bps, data->bps,
2092 data->count * sizeof(*data->bps));
2097 data->space_left += align_space - old_space;
2101 /* it deal with vram only. */
2102 int amdgpu_ras_add_bad_pages(struct amdgpu_device *adev,
2103 struct eeprom_table_record *bps, int pages)
2105 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2106 struct ras_err_handler_data *data;
2110 if (!con || !con->eh_data || !bps || pages <= 0)
2113 mutex_lock(&con->recovery_lock);
2114 data = con->eh_data;
2118 for (i = 0; i < pages; i++) {
2119 if (amdgpu_ras_check_bad_page_unlock(con,
2120 bps[i].retired_page << AMDGPU_GPU_PAGE_SHIFT))
2123 if (!data->space_left &&
2124 amdgpu_ras_realloc_eh_data_space(adev, data, 256)) {
2129 amdgpu_vram_mgr_reserve_range(&adev->mman.vram_mgr,
2130 bps[i].retired_page << AMDGPU_GPU_PAGE_SHIFT,
2131 AMDGPU_GPU_PAGE_SIZE);
2133 memcpy(&data->bps[data->count], &bps[i], sizeof(*data->bps));
2138 mutex_unlock(&con->recovery_lock);
2144 * write error record array to eeprom, the function should be
2145 * protected by recovery_lock
2146 * new_cnt: new added UE count, excluding reserved bad pages, can be NULL
2148 int amdgpu_ras_save_bad_pages(struct amdgpu_device *adev,
2149 unsigned long *new_cnt)
2151 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2152 struct ras_err_handler_data *data;
2153 struct amdgpu_ras_eeprom_control *control;
2156 if (!con || !con->eh_data) {
2163 mutex_lock(&con->recovery_lock);
2164 control = &con->eeprom_control;
2165 data = con->eh_data;
2166 save_count = data->count - control->ras_num_recs;
2167 mutex_unlock(&con->recovery_lock);
2170 *new_cnt = save_count / adev->umc.retire_unit;
2172 /* only new entries are saved */
2173 if (save_count > 0) {
2174 if (amdgpu_ras_eeprom_append(control,
2175 &data->bps[control->ras_num_recs],
2177 dev_err(adev->dev, "Failed to save EEPROM table data!");
2181 dev_info(adev->dev, "Saved %d pages to EEPROM table.\n", save_count);
2188 * read error record array in eeprom and reserve enough space for
2189 * storing new bad pages
2191 static int amdgpu_ras_load_bad_pages(struct amdgpu_device *adev)
2193 struct amdgpu_ras_eeprom_control *control =
2194 &adev->psp.ras_context.ras->eeprom_control;
2195 struct eeprom_table_record *bps;
2198 /* no bad page record, skip eeprom access */
2199 if (control->ras_num_recs == 0 || amdgpu_bad_page_threshold == 0)
2202 bps = kcalloc(control->ras_num_recs, sizeof(*bps), GFP_KERNEL);
2206 ret = amdgpu_ras_eeprom_read(control, bps, control->ras_num_recs);
2208 dev_err(adev->dev, "Failed to load EEPROM table records!");
2210 ret = amdgpu_ras_add_bad_pages(adev, bps, control->ras_num_recs);
2216 static bool amdgpu_ras_check_bad_page_unlock(struct amdgpu_ras *con,
2219 struct ras_err_handler_data *data = con->eh_data;
2222 addr >>= AMDGPU_GPU_PAGE_SHIFT;
2223 for (i = 0; i < data->count; i++)
2224 if (addr == data->bps[i].retired_page)
2231 * check if an address belongs to bad page
2233 * Note: this check is only for umc block
2235 static bool amdgpu_ras_check_bad_page(struct amdgpu_device *adev,
2238 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2241 if (!con || !con->eh_data)
2244 mutex_lock(&con->recovery_lock);
2245 ret = amdgpu_ras_check_bad_page_unlock(con, addr);
2246 mutex_unlock(&con->recovery_lock);
2250 static void amdgpu_ras_validate_threshold(struct amdgpu_device *adev,
2253 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2256 * Justification of value bad_page_cnt_threshold in ras structure
2258 * Generally, 0 <= amdgpu_bad_page_threshold <= max record length
2259 * in eeprom or amdgpu_bad_page_threshold == -2, introduce two
2260 * scenarios accordingly.
2262 * Bad page retirement enablement:
2263 * - If amdgpu_bad_page_threshold = -2,
2264 * bad_page_cnt_threshold = typical value by formula.
2266 * - When the value from user is 0 < amdgpu_bad_page_threshold <
2267 * max record length in eeprom, use it directly.
2269 * Bad page retirement disablement:
2270 * - If amdgpu_bad_page_threshold = 0, bad page retirement
2271 * functionality is disabled, and bad_page_cnt_threshold will
2275 if (amdgpu_bad_page_threshold < 0) {
2276 u64 val = adev->gmc.mc_vram_size;
2278 do_div(val, RAS_BAD_PAGE_COVER);
2279 con->bad_page_cnt_threshold = min(lower_32_bits(val),
2282 con->bad_page_cnt_threshold = min_t(int, max_count,
2283 amdgpu_bad_page_threshold);
2287 int amdgpu_ras_recovery_init(struct amdgpu_device *adev)
2289 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2290 struct ras_err_handler_data **data;
2291 u32 max_eeprom_records_count = 0;
2292 bool exc_err_limit = false;
2295 if (!con || amdgpu_sriov_vf(adev))
2298 /* Allow access to RAS EEPROM via debugfs, when the ASIC
2299 * supports RAS and debugfs is enabled, but when
2300 * adev->ras_enabled is unset, i.e. when "ras_enable"
2301 * module parameter is set to 0.
2305 if (!adev->ras_enabled)
2308 data = &con->eh_data;
2309 *data = kmalloc(sizeof(**data), GFP_KERNEL | __GFP_ZERO);
2315 mutex_init(&con->recovery_lock);
2316 INIT_WORK(&con->recovery_work, amdgpu_ras_do_recovery);
2317 atomic_set(&con->in_recovery, 0);
2318 con->eeprom_control.bad_channel_bitmap = 0;
2320 max_eeprom_records_count = amdgpu_ras_eeprom_max_record_count(&con->eeprom_control);
2321 amdgpu_ras_validate_threshold(adev, max_eeprom_records_count);
2323 /* Todo: During test the SMU might fail to read the eeprom through I2C
2324 * when the GPU is pending on XGMI reset during probe time
2325 * (Mostly after second bus reset), skip it now
2327 if (adev->gmc.xgmi.pending_reset)
2329 ret = amdgpu_ras_eeprom_init(&con->eeprom_control, &exc_err_limit);
2331 * This calling fails when exc_err_limit is true or
2334 if (exc_err_limit || ret)
2337 if (con->eeprom_control.ras_num_recs) {
2338 ret = amdgpu_ras_load_bad_pages(adev);
2342 amdgpu_dpm_send_hbm_bad_pages_num(adev, con->eeprom_control.ras_num_recs);
2344 if (con->update_channel_flag == true) {
2345 amdgpu_dpm_send_hbm_bad_channel_flag(adev, con->eeprom_control.bad_channel_bitmap);
2346 con->update_channel_flag = false;
2350 #ifdef CONFIG_X86_MCE_AMD
2351 if ((adev->asic_type == CHIP_ALDEBARAN) &&
2352 (adev->gmc.xgmi.connected_to_cpu))
2353 amdgpu_register_bad_pages_mca_notifier(adev);
2358 kfree((*data)->bps);
2360 con->eh_data = NULL;
2362 dev_warn(adev->dev, "Failed to initialize ras recovery! (%d)\n", ret);
2365 * Except error threshold exceeding case, other failure cases in this
2366 * function would not fail amdgpu driver init.
2376 static int amdgpu_ras_recovery_fini(struct amdgpu_device *adev)
2378 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2379 struct ras_err_handler_data *data = con->eh_data;
2381 /* recovery_init failed to init it, fini is useless */
2385 cancel_work_sync(&con->recovery_work);
2387 mutex_lock(&con->recovery_lock);
2388 con->eh_data = NULL;
2391 mutex_unlock(&con->recovery_lock);
2397 static bool amdgpu_ras_asic_supported(struct amdgpu_device *adev)
2399 if (amdgpu_sriov_vf(adev)) {
2400 switch (adev->ip_versions[MP0_HWIP][0]) {
2401 case IP_VERSION(13, 0, 2):
2408 if (adev->asic_type == CHIP_IP_DISCOVERY) {
2409 switch (adev->ip_versions[MP0_HWIP][0]) {
2410 case IP_VERSION(13, 0, 0):
2411 case IP_VERSION(13, 0, 6):
2412 case IP_VERSION(13, 0, 10):
2419 return adev->asic_type == CHIP_VEGA10 ||
2420 adev->asic_type == CHIP_VEGA20 ||
2421 adev->asic_type == CHIP_ARCTURUS ||
2422 adev->asic_type == CHIP_ALDEBARAN ||
2423 adev->asic_type == CHIP_SIENNA_CICHLID;
2427 * this is workaround for vega20 workstation sku,
2428 * force enable gfx ras, ignore vbios gfx ras flag
2429 * due to GC EDC can not write
2431 static void amdgpu_ras_get_quirks(struct amdgpu_device *adev)
2433 struct atom_context *ctx = adev->mode_info.atom_context;
2438 if (strnstr(ctx->vbios_pn, "D16406",
2439 sizeof(ctx->vbios_pn)) ||
2440 strnstr(ctx->vbios_pn, "D36002",
2441 sizeof(ctx->vbios_pn)))
2442 adev->ras_hw_enabled |= (1 << AMDGPU_RAS_BLOCK__GFX);
2446 * check hardware's ras ability which will be saved in hw_supported.
2447 * if hardware does not support ras, we can skip some ras initializtion and
2448 * forbid some ras operations from IP.
2449 * if software itself, say boot parameter, limit the ras ability. We still
2450 * need allow IP do some limited operations, like disable. In such case,
2451 * we have to initialize ras as normal. but need check if operation is
2452 * allowed or not in each function.
2454 static void amdgpu_ras_check_supported(struct amdgpu_device *adev)
2456 adev->ras_hw_enabled = adev->ras_enabled = 0;
2458 if (!amdgpu_ras_asic_supported(adev))
2461 if (!adev->gmc.xgmi.connected_to_cpu && !adev->gmc.is_app_apu) {
2462 if (amdgpu_atomfirmware_mem_ecc_supported(adev)) {
2463 dev_info(adev->dev, "MEM ECC is active.\n");
2464 adev->ras_hw_enabled |= (1 << AMDGPU_RAS_BLOCK__UMC |
2465 1 << AMDGPU_RAS_BLOCK__DF);
2467 dev_info(adev->dev, "MEM ECC is not presented.\n");
2470 if (amdgpu_atomfirmware_sram_ecc_supported(adev)) {
2471 dev_info(adev->dev, "SRAM ECC is active.\n");
2472 if (!amdgpu_sriov_vf(adev))
2473 adev->ras_hw_enabled |= ~(1 << AMDGPU_RAS_BLOCK__UMC |
2474 1 << AMDGPU_RAS_BLOCK__DF);
2476 adev->ras_hw_enabled |= (1 << AMDGPU_RAS_BLOCK__PCIE_BIF |
2477 1 << AMDGPU_RAS_BLOCK__SDMA |
2478 1 << AMDGPU_RAS_BLOCK__GFX);
2480 /* VCN/JPEG RAS can be supported on both bare metal and
2483 if (adev->ip_versions[VCN_HWIP][0] == IP_VERSION(2, 6, 0) ||
2484 adev->ip_versions[VCN_HWIP][0] == IP_VERSION(4, 0, 0))
2485 adev->ras_hw_enabled |= (1 << AMDGPU_RAS_BLOCK__VCN |
2486 1 << AMDGPU_RAS_BLOCK__JPEG);
2488 adev->ras_hw_enabled &= ~(1 << AMDGPU_RAS_BLOCK__VCN |
2489 1 << AMDGPU_RAS_BLOCK__JPEG);
2492 * XGMI RAS is not supported if xgmi num physical nodes
2495 if (!adev->gmc.xgmi.num_physical_nodes)
2496 adev->ras_hw_enabled &= ~(1 << AMDGPU_RAS_BLOCK__XGMI_WAFL);
2498 dev_info(adev->dev, "SRAM ECC is not presented.\n");
2501 /* driver only manages a few IP blocks RAS feature
2502 * when GPU is connected cpu through XGMI */
2503 adev->ras_hw_enabled |= (1 << AMDGPU_RAS_BLOCK__GFX |
2504 1 << AMDGPU_RAS_BLOCK__SDMA |
2505 1 << AMDGPU_RAS_BLOCK__MMHUB);
2508 amdgpu_ras_get_quirks(adev);
2510 /* hw_supported needs to be aligned with RAS block mask. */
2511 adev->ras_hw_enabled &= AMDGPU_RAS_BLOCK_MASK;
2515 * Disable ras feature for aqua vanjaram
2516 * by default on apu platform.
2518 if (adev->ip_versions[MP0_HWIP][0] == IP_VERSION(13, 0, 6) &&
2519 adev->gmc.is_app_apu)
2520 adev->ras_enabled = amdgpu_ras_enable != 1 ? 0 :
2521 adev->ras_hw_enabled & amdgpu_ras_mask;
2523 adev->ras_enabled = amdgpu_ras_enable == 0 ? 0 :
2524 adev->ras_hw_enabled & amdgpu_ras_mask;
2527 static void amdgpu_ras_counte_dw(struct work_struct *work)
2529 struct amdgpu_ras *con = container_of(work, struct amdgpu_ras,
2530 ras_counte_delay_work.work);
2531 struct amdgpu_device *adev = con->adev;
2532 struct drm_device *dev = adev_to_drm(adev);
2533 unsigned long ce_count, ue_count;
2536 res = pm_runtime_get_sync(dev->dev);
2540 /* Cache new values.
2542 if (amdgpu_ras_query_error_count(adev, &ce_count, &ue_count, NULL) == 0) {
2543 atomic_set(&con->ras_ce_count, ce_count);
2544 atomic_set(&con->ras_ue_count, ue_count);
2547 pm_runtime_mark_last_busy(dev->dev);
2549 pm_runtime_put_autosuspend(dev->dev);
2552 static void amdgpu_ras_query_poison_mode(struct amdgpu_device *adev)
2554 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2555 bool df_poison, umc_poison;
2557 /* poison setting is useless on SRIOV guest */
2558 if (amdgpu_sriov_vf(adev) || !con)
2561 /* Init poison supported flag, the default value is false */
2562 if (adev->gmc.xgmi.connected_to_cpu) {
2563 /* enabled by default when GPU is connected to CPU */
2564 con->poison_supported = true;
2565 } else if (adev->df.funcs &&
2566 adev->df.funcs->query_ras_poison_mode &&
2568 adev->umc.ras->query_ras_poison_mode) {
2570 adev->df.funcs->query_ras_poison_mode(adev);
2572 adev->umc.ras->query_ras_poison_mode(adev);
2574 /* Only poison is set in both DF and UMC, we can support it */
2575 if (df_poison && umc_poison)
2576 con->poison_supported = true;
2577 else if (df_poison != umc_poison)
2579 "Poison setting is inconsistent in DF/UMC(%d:%d)!\n",
2580 df_poison, umc_poison);
2584 int amdgpu_ras_init(struct amdgpu_device *adev)
2586 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2592 con = kmalloc(sizeof(struct amdgpu_ras) +
2593 sizeof(struct ras_manager) * AMDGPU_RAS_BLOCK_COUNT +
2594 sizeof(struct ras_manager) * AMDGPU_RAS_MCA_BLOCK_COUNT,
2595 GFP_KERNEL|__GFP_ZERO);
2600 INIT_DELAYED_WORK(&con->ras_counte_delay_work, amdgpu_ras_counte_dw);
2601 atomic_set(&con->ras_ce_count, 0);
2602 atomic_set(&con->ras_ue_count, 0);
2604 con->objs = (struct ras_manager *)(con + 1);
2606 amdgpu_ras_set_context(adev, con);
2608 amdgpu_ras_check_supported(adev);
2610 if (!adev->ras_enabled || adev->asic_type == CHIP_VEGA10) {
2611 /* set gfx block ras context feature for VEGA20 Gaming
2612 * send ras disable cmd to ras ta during ras late init.
2614 if (!adev->ras_enabled && adev->asic_type == CHIP_VEGA20) {
2615 con->features |= BIT(AMDGPU_RAS_BLOCK__GFX);
2624 con->update_channel_flag = false;
2626 INIT_LIST_HEAD(&con->head);
2627 /* Might need get this flag from vbios. */
2628 con->flags = RAS_DEFAULT_FLAGS;
2630 /* initialize nbio ras function ahead of any other
2631 * ras functions so hardware fatal error interrupt
2632 * can be enabled as early as possible */
2633 switch (adev->ip_versions[NBIO_HWIP][0]) {
2634 case IP_VERSION(7, 4, 0):
2635 case IP_VERSION(7, 4, 1):
2636 case IP_VERSION(7, 4, 4):
2637 if (!adev->gmc.xgmi.connected_to_cpu)
2638 adev->nbio.ras = &nbio_v7_4_ras;
2640 case IP_VERSION(4, 3, 0):
2641 if (adev->ras_hw_enabled & (1 << AMDGPU_RAS_BLOCK__DF))
2642 /* unlike other generation of nbio ras,
2643 * nbio v4_3 only support fatal error interrupt
2644 * to inform software that DF is freezed due to
2645 * system fatal error event. driver should not
2646 * enable nbio ras in such case. Instead,
2648 adev->nbio.ras = &nbio_v4_3_ras;
2650 case IP_VERSION(7, 9, 0):
2651 if (!adev->gmc.is_app_apu)
2652 adev->nbio.ras = &nbio_v7_9_ras;
2655 /* nbio ras is not available */
2659 /* nbio ras block needs to be enabled ahead of other ras blocks
2660 * to handle fatal error */
2661 r = amdgpu_nbio_ras_sw_init(adev);
2665 if (adev->nbio.ras &&
2666 adev->nbio.ras->init_ras_controller_interrupt) {
2667 r = adev->nbio.ras->init_ras_controller_interrupt(adev);
2672 if (adev->nbio.ras &&
2673 adev->nbio.ras->init_ras_err_event_athub_interrupt) {
2674 r = adev->nbio.ras->init_ras_err_event_athub_interrupt(adev);
2679 amdgpu_ras_query_poison_mode(adev);
2681 if (amdgpu_ras_fs_init(adev)) {
2686 dev_info(adev->dev, "RAS INFO: ras initialized successfully, "
2687 "hardware ability[%x] ras_mask[%x]\n",
2688 adev->ras_hw_enabled, adev->ras_enabled);
2692 amdgpu_ras_set_context(adev, NULL);
2698 int amdgpu_persistent_edc_harvesting_supported(struct amdgpu_device *adev)
2700 if (adev->gmc.xgmi.connected_to_cpu ||
2701 adev->gmc.is_app_apu)
2706 static int amdgpu_persistent_edc_harvesting(struct amdgpu_device *adev,
2707 struct ras_common_if *ras_block)
2709 struct ras_query_if info = {
2713 if (!amdgpu_persistent_edc_harvesting_supported(adev))
2716 if (amdgpu_ras_query_error_status(adev, &info) != 0)
2717 DRM_WARN("RAS init harvest failure");
2719 if (amdgpu_ras_reset_error_status(adev, ras_block->block) != 0)
2720 DRM_WARN("RAS init harvest reset failure");
2725 bool amdgpu_ras_is_poison_mode_supported(struct amdgpu_device *adev)
2727 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2732 return con->poison_supported;
2735 /* helper function to handle common stuff in ip late init phase */
2736 int amdgpu_ras_block_late_init(struct amdgpu_device *adev,
2737 struct ras_common_if *ras_block)
2739 struct amdgpu_ras_block_object *ras_obj = NULL;
2740 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2741 struct ras_query_if *query_info;
2742 unsigned long ue_count, ce_count;
2745 /* disable RAS feature per IP block if it is not supported */
2746 if (!amdgpu_ras_is_supported(adev, ras_block->block)) {
2747 amdgpu_ras_feature_enable_on_boot(adev, ras_block, 0);
2751 r = amdgpu_ras_feature_enable_on_boot(adev, ras_block, 1);
2753 if (adev->in_suspend || amdgpu_in_reset(adev)) {
2754 /* in resume phase, if fail to enable ras,
2755 * clean up all ras fs nodes, and disable ras */
2761 /* check for errors on warm reset edc persisant supported ASIC */
2762 amdgpu_persistent_edc_harvesting(adev, ras_block);
2764 /* in resume phase, no need to create ras fs node */
2765 if (adev->in_suspend || amdgpu_in_reset(adev))
2768 ras_obj = container_of(ras_block, struct amdgpu_ras_block_object, ras_comm);
2769 if (ras_obj->ras_cb || (ras_obj->hw_ops &&
2770 (ras_obj->hw_ops->query_poison_status ||
2771 ras_obj->hw_ops->handle_poison_consumption))) {
2772 r = amdgpu_ras_interrupt_add_handler(adev, ras_block);
2777 if (ras_obj->hw_ops &&
2778 (ras_obj->hw_ops->query_ras_error_count ||
2779 ras_obj->hw_ops->query_ras_error_status)) {
2780 r = amdgpu_ras_sysfs_create(adev, ras_block);
2784 /* Those are the cached values at init.
2786 query_info = kzalloc(sizeof(*query_info), GFP_KERNEL);
2789 memcpy(&query_info->head, ras_block, sizeof(struct ras_common_if));
2791 if (amdgpu_ras_query_error_count(adev, &ce_count, &ue_count, query_info) == 0) {
2792 atomic_set(&con->ras_ce_count, ce_count);
2793 atomic_set(&con->ras_ue_count, ue_count);
2802 if (ras_obj->ras_cb)
2803 amdgpu_ras_interrupt_remove_handler(adev, ras_block);
2805 amdgpu_ras_feature_enable(adev, ras_block, 0);
2809 static int amdgpu_ras_block_late_init_default(struct amdgpu_device *adev,
2810 struct ras_common_if *ras_block)
2812 return amdgpu_ras_block_late_init(adev, ras_block);
2815 /* helper function to remove ras fs node and interrupt handler */
2816 void amdgpu_ras_block_late_fini(struct amdgpu_device *adev,
2817 struct ras_common_if *ras_block)
2819 struct amdgpu_ras_block_object *ras_obj;
2823 amdgpu_ras_sysfs_remove(adev, ras_block);
2825 ras_obj = container_of(ras_block, struct amdgpu_ras_block_object, ras_comm);
2826 if (ras_obj->ras_cb)
2827 amdgpu_ras_interrupt_remove_handler(adev, ras_block);
2830 static void amdgpu_ras_block_late_fini_default(struct amdgpu_device *adev,
2831 struct ras_common_if *ras_block)
2833 return amdgpu_ras_block_late_fini(adev, ras_block);
2836 /* do some init work after IP late init as dependence.
2837 * and it runs in resume/gpu reset/booting up cases.
2839 void amdgpu_ras_resume(struct amdgpu_device *adev)
2841 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2842 struct ras_manager *obj, *tmp;
2844 if (!adev->ras_enabled || !con) {
2845 /* clean ras context for VEGA20 Gaming after send ras disable cmd */
2846 amdgpu_release_ras_context(adev);
2851 if (con->flags & AMDGPU_RAS_FLAG_INIT_BY_VBIOS) {
2852 /* Set up all other IPs which are not implemented. There is a
2853 * tricky thing that IP's actual ras error type should be
2854 * MULTI_UNCORRECTABLE, but as driver does not handle it, so
2855 * ERROR_NONE make sense anyway.
2857 amdgpu_ras_enable_all_features(adev, 1);
2859 /* We enable ras on all hw_supported block, but as boot
2860 * parameter might disable some of them and one or more IP has
2861 * not implemented yet. So we disable them on behalf.
2863 list_for_each_entry_safe(obj, tmp, &con->head, node) {
2864 if (!amdgpu_ras_is_supported(adev, obj->head.block)) {
2865 amdgpu_ras_feature_enable(adev, &obj->head, 0);
2866 /* there should be no any reference. */
2867 WARN_ON(alive_obj(obj));
2873 void amdgpu_ras_suspend(struct amdgpu_device *adev)
2875 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2877 if (!adev->ras_enabled || !con)
2880 amdgpu_ras_disable_all_features(adev, 0);
2881 /* Make sure all ras objects are disabled. */
2883 amdgpu_ras_disable_all_features(adev, 1);
2886 int amdgpu_ras_late_init(struct amdgpu_device *adev)
2888 struct amdgpu_ras_block_list *node, *tmp;
2889 struct amdgpu_ras_block_object *obj;
2892 /* Guest side doesn't need init ras feature */
2893 if (amdgpu_sriov_vf(adev))
2896 list_for_each_entry_safe(node, tmp, &adev->ras_list, node) {
2897 if (!node->ras_obj) {
2898 dev_warn(adev->dev, "Warning: abnormal ras list node.\n");
2902 obj = node->ras_obj;
2903 if (obj->ras_late_init) {
2904 r = obj->ras_late_init(adev, &obj->ras_comm);
2906 dev_err(adev->dev, "%s failed to execute ras_late_init! ret:%d\n",
2907 obj->ras_comm.name, r);
2911 amdgpu_ras_block_late_init_default(adev, &obj->ras_comm);
2917 /* do some fini work before IP fini as dependence */
2918 int amdgpu_ras_pre_fini(struct amdgpu_device *adev)
2920 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2922 if (!adev->ras_enabled || !con)
2926 /* Need disable ras on all IPs here before ip [hw/sw]fini */
2928 amdgpu_ras_disable_all_features(adev, 0);
2929 amdgpu_ras_recovery_fini(adev);
2933 int amdgpu_ras_fini(struct amdgpu_device *adev)
2935 struct amdgpu_ras_block_list *ras_node, *tmp;
2936 struct amdgpu_ras_block_object *obj = NULL;
2937 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2939 if (!adev->ras_enabled || !con)
2942 list_for_each_entry_safe(ras_node, tmp, &adev->ras_list, node) {
2943 if (ras_node->ras_obj) {
2944 obj = ras_node->ras_obj;
2945 if (amdgpu_ras_is_supported(adev, obj->ras_comm.block) &&
2947 obj->ras_fini(adev, &obj->ras_comm);
2949 amdgpu_ras_block_late_fini_default(adev, &obj->ras_comm);
2952 /* Clear ras blocks from ras_list and free ras block list node */
2953 list_del(&ras_node->node);
2957 amdgpu_ras_fs_fini(adev);
2958 amdgpu_ras_interrupt_remove_all(adev);
2960 WARN(con->features, "Feature mask is not cleared");
2963 amdgpu_ras_disable_all_features(adev, 1);
2965 cancel_delayed_work_sync(&con->ras_counte_delay_work);
2967 amdgpu_ras_set_context(adev, NULL);
2973 void amdgpu_ras_global_ras_isr(struct amdgpu_device *adev)
2975 if (atomic_cmpxchg(&amdgpu_ras_in_intr, 0, 1) == 0) {
2976 struct amdgpu_ras *ras = amdgpu_ras_get_context(adev);
2978 dev_info(adev->dev, "uncorrectable hardware error"
2979 "(ERREVENT_ATHUB_INTERRUPT) detected!\n");
2981 ras->gpu_reset_flags |= AMDGPU_RAS_GPU_RESET_MODE1_RESET;
2982 amdgpu_ras_reset_gpu(adev);
2986 bool amdgpu_ras_need_emergency_restart(struct amdgpu_device *adev)
2988 if (adev->asic_type == CHIP_VEGA20 &&
2989 adev->pm.fw_version <= 0x283400) {
2990 return !(amdgpu_asic_reset_method(adev) == AMD_RESET_METHOD_BACO) &&
2991 amdgpu_ras_intr_triggered();
2997 void amdgpu_release_ras_context(struct amdgpu_device *adev)
2999 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
3004 if (!adev->ras_enabled && con->features & BIT(AMDGPU_RAS_BLOCK__GFX)) {
3005 con->features &= ~BIT(AMDGPU_RAS_BLOCK__GFX);
3006 amdgpu_ras_set_context(adev, NULL);
3011 #ifdef CONFIG_X86_MCE_AMD
3012 static struct amdgpu_device *find_adev(uint32_t node_id)
3015 struct amdgpu_device *adev = NULL;
3017 for (i = 0; i < mce_adev_list.num_gpu; i++) {
3018 adev = mce_adev_list.devs[i];
3020 if (adev && adev->gmc.xgmi.connected_to_cpu &&
3021 adev->gmc.xgmi.physical_node_id == node_id)
3029 #define GET_MCA_IPID_GPUID(m) (((m) >> 44) & 0xF)
3030 #define GET_UMC_INST(m) (((m) >> 21) & 0x7)
3031 #define GET_CHAN_INDEX(m) ((((m) >> 12) & 0x3) | (((m) >> 18) & 0x4))
3032 #define GPU_ID_OFFSET 8
3034 static int amdgpu_bad_page_notifier(struct notifier_block *nb,
3035 unsigned long val, void *data)
3037 struct mce *m = (struct mce *)data;
3038 struct amdgpu_device *adev = NULL;
3039 uint32_t gpu_id = 0;
3040 uint32_t umc_inst = 0, ch_inst = 0;
3043 * If the error was generated in UMC_V2, which belongs to GPU UMCs,
3044 * and error occurred in DramECC (Extended error code = 0) then only
3045 * process the error, else bail out.
3047 if (!m || !((smca_get_bank_type(m->extcpu, m->bank) == SMCA_UMC_V2) &&
3048 (XEC(m->status, 0x3f) == 0x0)))
3052 * If it is correctable error, return.
3054 if (mce_is_correctable(m))
3058 * GPU Id is offset by GPU_ID_OFFSET in MCA_IPID_UMC register.
3060 gpu_id = GET_MCA_IPID_GPUID(m->ipid) - GPU_ID_OFFSET;
3062 adev = find_adev(gpu_id);
3064 DRM_WARN("%s: Unable to find adev for gpu_id: %d\n", __func__,
3070 * If it is uncorrectable error, then find out UMC instance and
3073 umc_inst = GET_UMC_INST(m->ipid);
3074 ch_inst = GET_CHAN_INDEX(m->ipid);
3076 dev_info(adev->dev, "Uncorrectable error detected in UMC inst: %d, chan_idx: %d",
3079 if (!amdgpu_umc_page_retirement_mca(adev, m->addr, ch_inst, umc_inst))
3085 static struct notifier_block amdgpu_bad_page_nb = {
3086 .notifier_call = amdgpu_bad_page_notifier,
3087 .priority = MCE_PRIO_UC,
3090 static void amdgpu_register_bad_pages_mca_notifier(struct amdgpu_device *adev)
3093 * Add the adev to the mce_adev_list.
3094 * During mode2 reset, amdgpu device is temporarily
3095 * removed from the mgpu_info list which can cause
3096 * page retirement to fail.
3097 * Use this list instead of mgpu_info to find the amdgpu
3098 * device on which the UMC error was reported.
3100 mce_adev_list.devs[mce_adev_list.num_gpu++] = adev;
3103 * Register the x86 notifier only once
3104 * with MCE subsystem.
3106 if (notifier_registered == false) {
3107 mce_register_decode_chain(&amdgpu_bad_page_nb);
3108 notifier_registered = true;
3113 struct amdgpu_ras *amdgpu_ras_get_context(struct amdgpu_device *adev)
3118 return adev->psp.ras_context.ras;
3121 int amdgpu_ras_set_context(struct amdgpu_device *adev, struct amdgpu_ras *ras_con)
3126 adev->psp.ras_context.ras = ras_con;
3130 /* check if ras is supported on block, say, sdma, gfx */
3131 int amdgpu_ras_is_supported(struct amdgpu_device *adev,
3135 struct amdgpu_ras *ras = amdgpu_ras_get_context(adev);
3137 if (block >= AMDGPU_RAS_BLOCK_COUNT)
3140 ret = ras && (adev->ras_enabled & (1 << block));
3142 /* For the special asic with mem ecc enabled but sram ecc
3143 * not enabled, even if the ras block is not supported on
3144 * .ras_enabled, if the asic supports poison mode and the
3145 * ras block has ras configuration, it can be considered
3146 * that the ras block supports ras function.
3149 (block == AMDGPU_RAS_BLOCK__GFX ||
3150 block == AMDGPU_RAS_BLOCK__SDMA ||
3151 block == AMDGPU_RAS_BLOCK__VCN ||
3152 block == AMDGPU_RAS_BLOCK__JPEG) &&
3153 amdgpu_ras_is_poison_mode_supported(adev) &&
3154 amdgpu_ras_get_ras_block(adev, block, 0))
3160 int amdgpu_ras_reset_gpu(struct amdgpu_device *adev)
3162 struct amdgpu_ras *ras = amdgpu_ras_get_context(adev);
3164 if (atomic_cmpxchg(&ras->in_recovery, 0, 1) == 0)
3165 amdgpu_reset_domain_schedule(ras->adev->reset_domain, &ras->recovery_work);
3170 /* Register each ip ras block into amdgpu ras */
3171 int amdgpu_ras_register_ras_block(struct amdgpu_device *adev,
3172 struct amdgpu_ras_block_object *ras_block_obj)
3174 struct amdgpu_ras_block_list *ras_node;
3175 if (!adev || !ras_block_obj)
3178 ras_node = kzalloc(sizeof(*ras_node), GFP_KERNEL);
3182 INIT_LIST_HEAD(&ras_node->node);
3183 ras_node->ras_obj = ras_block_obj;
3184 list_add_tail(&ras_node->node, &adev->ras_list);
3189 void amdgpu_ras_get_error_type_name(uint32_t err_type, char *err_type_name)
3195 case AMDGPU_RAS_ERROR__SINGLE_CORRECTABLE:
3196 sprintf(err_type_name, "correctable");
3198 case AMDGPU_RAS_ERROR__MULTI_UNCORRECTABLE:
3199 sprintf(err_type_name, "uncorrectable");
3202 sprintf(err_type_name, "unknown");
3207 bool amdgpu_ras_inst_get_memory_id_field(struct amdgpu_device *adev,
3208 const struct amdgpu_ras_err_status_reg_entry *reg_entry,
3210 uint32_t *memory_id)
3212 uint32_t err_status_lo_data, err_status_lo_offset;
3217 err_status_lo_offset =
3218 AMDGPU_RAS_REG_ENTRY_OFFSET(reg_entry->hwip, instance,
3219 reg_entry->seg_lo, reg_entry->reg_lo);
3220 err_status_lo_data = RREG32(err_status_lo_offset);
3222 if ((reg_entry->flags & AMDGPU_RAS_ERR_STATUS_VALID) &&
3223 !REG_GET_FIELD(err_status_lo_data, ERR_STATUS_LO, ERR_STATUS_VALID_FLAG))
3226 *memory_id = REG_GET_FIELD(err_status_lo_data, ERR_STATUS_LO, MEMORY_ID);
3231 bool amdgpu_ras_inst_get_err_cnt_field(struct amdgpu_device *adev,
3232 const struct amdgpu_ras_err_status_reg_entry *reg_entry,
3234 unsigned long *err_cnt)
3236 uint32_t err_status_hi_data, err_status_hi_offset;
3241 err_status_hi_offset =
3242 AMDGPU_RAS_REG_ENTRY_OFFSET(reg_entry->hwip, instance,
3243 reg_entry->seg_hi, reg_entry->reg_hi);
3244 err_status_hi_data = RREG32(err_status_hi_offset);
3246 if ((reg_entry->flags & AMDGPU_RAS_ERR_INFO_VALID) &&
3247 !REG_GET_FIELD(err_status_hi_data, ERR_STATUS_HI, ERR_INFO_VALID_FLAG))
3248 /* keep the check here in case we need to refer to the result later */
3249 dev_dbg(adev->dev, "Invalid err_info field\n");
3251 /* read err count */
3252 *err_cnt = REG_GET_FIELD(err_status_hi_data, ERR_STATUS, ERR_CNT);
3257 void amdgpu_ras_inst_query_ras_error_count(struct amdgpu_device *adev,
3258 const struct amdgpu_ras_err_status_reg_entry *reg_list,
3259 uint32_t reg_list_size,
3260 const struct amdgpu_ras_memory_id_entry *mem_list,
3261 uint32_t mem_list_size,
3264 unsigned long *err_count)
3267 unsigned long err_cnt;
3268 char err_type_name[16];
3271 for (i = 0; i < reg_list_size; i++) {
3272 /* query memory_id from err_status_lo */
3273 if (!amdgpu_ras_inst_get_memory_id_field(adev, ®_list[i],
3274 instance, &memory_id))
3277 /* query err_cnt from err_status_hi */
3278 if (!amdgpu_ras_inst_get_err_cnt_field(adev, ®_list[i],
3279 instance, &err_cnt) ||
3283 *err_count += err_cnt;
3285 /* log the errors */
3286 amdgpu_ras_get_error_type_name(err_type, err_type_name);
3288 /* memory_list is not supported */
3290 "%ld %s hardware errors detected in %s, instance: %d, memory_id: %d\n",
3291 err_cnt, err_type_name,
3292 reg_list[i].block_name,
3293 instance, memory_id);
3295 for (j = 0; j < mem_list_size; j++) {
3296 if (memory_id == mem_list[j].memory_id) {
3298 "%ld %s hardware errors detected in %s, instance: %d, memory block: %s\n",
3299 err_cnt, err_type_name,
3300 reg_list[i].block_name,
3301 instance, mem_list[j].name);
3309 void amdgpu_ras_inst_reset_ras_error_count(struct amdgpu_device *adev,
3310 const struct amdgpu_ras_err_status_reg_entry *reg_list,
3311 uint32_t reg_list_size,
3314 uint32_t err_status_lo_offset, err_status_hi_offset;
3317 for (i = 0; i < reg_list_size; i++) {
3318 err_status_lo_offset =
3319 AMDGPU_RAS_REG_ENTRY_OFFSET(reg_list[i].hwip, instance,
3320 reg_list[i].seg_lo, reg_list[i].reg_lo);
3321 err_status_hi_offset =
3322 AMDGPU_RAS_REG_ENTRY_OFFSET(reg_list[i].hwip, instance,
3323 reg_list[i].seg_hi, reg_list[i].reg_hi);
3324 WREG32(err_status_lo_offset, 0);
3325 WREG32(err_status_hi_offset, 0);