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"
39 #include "amdgpu_reset.h"
41 #ifdef CONFIG_X86_MCE_AMD
44 static bool notifier_registered;
46 static const char *RAS_FS_NAME = "ras";
48 const char *ras_error_string[] = {
52 "multi_uncorrectable",
56 const char *ras_block_string[] = {
76 const char *ras_mca_block_string[] = {
83 struct amdgpu_ras_block_list {
85 struct list_head node;
87 struct amdgpu_ras_block_object *ras_obj;
90 const char *get_ras_block_str(struct ras_common_if *ras_block)
95 if (ras_block->block >= AMDGPU_RAS_BLOCK_COUNT)
96 return "OUT OF RANGE";
98 if (ras_block->block == AMDGPU_RAS_BLOCK__MCA)
99 return ras_mca_block_string[ras_block->sub_block_index];
101 return ras_block_string[ras_block->block];
104 #define ras_block_str(_BLOCK_) \
105 (((_BLOCK_) < ARRAY_SIZE(ras_block_string)) ? ras_block_string[_BLOCK_] : "Out Of Range")
107 #define ras_err_str(i) (ras_error_string[ffs(i)])
109 #define RAS_DEFAULT_FLAGS (AMDGPU_RAS_FLAG_INIT_BY_VBIOS)
111 /* inject address is 52 bits */
112 #define RAS_UMC_INJECT_ADDR_LIMIT (0x1ULL << 52)
114 /* typical ECC bad page rate is 1 bad page per 100MB VRAM */
115 #define RAS_BAD_PAGE_COVER (100 * 1024 * 1024ULL)
117 enum amdgpu_ras_retire_page_reservation {
118 AMDGPU_RAS_RETIRE_PAGE_RESERVED,
119 AMDGPU_RAS_RETIRE_PAGE_PENDING,
120 AMDGPU_RAS_RETIRE_PAGE_FAULT,
123 atomic_t amdgpu_ras_in_intr = ATOMIC_INIT(0);
125 static bool amdgpu_ras_check_bad_page_unlock(struct amdgpu_ras *con,
127 static bool amdgpu_ras_check_bad_page(struct amdgpu_device *adev,
129 #ifdef CONFIG_X86_MCE_AMD
130 static void amdgpu_register_bad_pages_mca_notifier(struct amdgpu_device *adev);
131 struct mce_notifier_adev_list {
132 struct amdgpu_device *devs[MAX_GPU_INSTANCE];
135 static struct mce_notifier_adev_list mce_adev_list;
138 void amdgpu_ras_set_error_query_ready(struct amdgpu_device *adev, bool ready)
140 if (adev && amdgpu_ras_get_context(adev))
141 amdgpu_ras_get_context(adev)->error_query_ready = ready;
144 static bool amdgpu_ras_get_error_query_ready(struct amdgpu_device *adev)
146 if (adev && amdgpu_ras_get_context(adev))
147 return amdgpu_ras_get_context(adev)->error_query_ready;
152 static int amdgpu_reserve_page_direct(struct amdgpu_device *adev, uint64_t address)
154 struct ras_err_data err_data = {0, 0, 0, NULL};
155 struct eeprom_table_record err_rec;
157 if ((address >= adev->gmc.mc_vram_size) ||
158 (address >= RAS_UMC_INJECT_ADDR_LIMIT)) {
160 "RAS WARN: input address 0x%llx is invalid.\n",
165 if (amdgpu_ras_check_bad_page(adev, address)) {
167 "RAS WARN: 0x%llx has already been marked as bad page!\n",
172 memset(&err_rec, 0x0, sizeof(struct eeprom_table_record));
173 err_data.err_addr = &err_rec;
174 amdgpu_umc_fill_error_record(&err_data, address, address, 0, 0);
176 if (amdgpu_bad_page_threshold != 0) {
177 amdgpu_ras_add_bad_pages(adev, err_data.err_addr,
178 err_data.err_addr_cnt);
179 amdgpu_ras_save_bad_pages(adev, NULL);
182 dev_warn(adev->dev, "WARNING: THIS IS ONLY FOR TEST PURPOSES AND WILL CORRUPT RAS EEPROM\n");
183 dev_warn(adev->dev, "Clear EEPROM:\n");
184 dev_warn(adev->dev, " echo 1 > /sys/kernel/debug/dri/0/ras/ras_eeprom_reset\n");
189 static ssize_t amdgpu_ras_debugfs_read(struct file *f, char __user *buf,
190 size_t size, loff_t *pos)
192 struct ras_manager *obj = (struct ras_manager *)file_inode(f)->i_private;
193 struct ras_query_if info = {
199 if (amdgpu_ras_query_error_status(obj->adev, &info))
202 /* Hardware counter will be reset automatically after the query on Vega20 and Arcturus */
203 if (obj->adev->ip_versions[MP0_HWIP][0] != IP_VERSION(11, 0, 2) &&
204 obj->adev->ip_versions[MP0_HWIP][0] != IP_VERSION(11, 0, 4)) {
205 if (amdgpu_ras_reset_error_status(obj->adev, info.head.block))
206 dev_warn(obj->adev->dev, "Failed to reset error counter and error status");
209 s = snprintf(val, sizeof(val), "%s: %lu\n%s: %lu\n",
211 "ce", info.ce_count);
216 s = min_t(u64, s, size);
219 if (copy_to_user(buf, &val[*pos], s))
227 static const struct file_operations amdgpu_ras_debugfs_ops = {
228 .owner = THIS_MODULE,
229 .read = amdgpu_ras_debugfs_read,
231 .llseek = default_llseek
234 static int amdgpu_ras_find_block_id_by_name(const char *name, int *block_id)
238 for (i = 0; i < ARRAY_SIZE(ras_block_string); i++) {
240 if (strcmp(name, ras_block_string[i]) == 0)
246 static int amdgpu_ras_debugfs_ctrl_parse_data(struct file *f,
247 const char __user *buf, size_t size,
248 loff_t *pos, struct ras_debug_if *data)
250 ssize_t s = min_t(u64, 64, size);
258 /* default value is 0 if the mask is not set by user */
259 u32 instance_mask = 0;
265 memset(str, 0, sizeof(str));
266 memset(data, 0, sizeof(*data));
268 if (copy_from_user(str, buf, s))
271 if (sscanf(str, "disable %32s", block_name) == 1)
273 else if (sscanf(str, "enable %32s %8s", block_name, err) == 2)
275 else if (sscanf(str, "inject %32s %8s", block_name, err) == 2)
277 else if (strstr(str, "retire_page") != NULL)
279 else if (str[0] && str[1] && str[2] && str[3])
280 /* ascii string, but commands are not matched. */
285 if (sscanf(str, "%*s 0x%llx", &address) != 1 &&
286 sscanf(str, "%*s %llu", &address) != 1)
290 data->inject.address = address;
295 if (amdgpu_ras_find_block_id_by_name(block_name, &block_id))
298 data->head.block = block_id;
299 /* only ue and ce errors are supported */
300 if (!memcmp("ue", err, 2))
301 data->head.type = AMDGPU_RAS_ERROR__MULTI_UNCORRECTABLE;
302 else if (!memcmp("ce", err, 2))
303 data->head.type = AMDGPU_RAS_ERROR__SINGLE_CORRECTABLE;
310 if (sscanf(str, "%*s %*s %*s 0x%x 0x%llx 0x%llx 0x%x",
311 &sub_block, &address, &value, &instance_mask) != 4 &&
312 sscanf(str, "%*s %*s %*s %u %llu %llu %u",
313 &sub_block, &address, &value, &instance_mask) != 4 &&
314 sscanf(str, "%*s %*s %*s 0x%x 0x%llx 0x%llx",
315 &sub_block, &address, &value) != 3 &&
316 sscanf(str, "%*s %*s %*s %u %llu %llu",
317 &sub_block, &address, &value) != 3)
319 data->head.sub_block_index = sub_block;
320 data->inject.address = address;
321 data->inject.value = value;
322 data->inject.instance_mask = instance_mask;
325 if (size < sizeof(*data))
328 if (copy_from_user(data, buf, sizeof(*data)))
335 static void amdgpu_ras_instance_mask_check(struct amdgpu_device *adev,
336 struct ras_debug_if *data)
338 int num_xcc = adev->gfx.xcc_mask ? NUM_XCC(adev->gfx.xcc_mask) : 1;
339 uint32_t mask, inst_mask = data->inject.instance_mask;
341 /* no need to set instance mask if there is only one instance */
342 if (num_xcc <= 1 && inst_mask) {
343 data->inject.instance_mask = 0;
345 "RAS inject mask(0x%x) isn't supported and force it to 0.\n",
351 switch (data->head.block) {
352 case AMDGPU_RAS_BLOCK__GFX:
353 mask = GENMASK(num_xcc - 1, 0);
355 case AMDGPU_RAS_BLOCK__SDMA:
356 mask = GENMASK(adev->sdma.num_instances - 1, 0);
358 case AMDGPU_RAS_BLOCK__VCN:
359 case AMDGPU_RAS_BLOCK__JPEG:
360 mask = GENMASK(adev->vcn.num_vcn_inst - 1, 0);
367 /* remove invalid bits in instance mask */
368 data->inject.instance_mask &= mask;
369 if (inst_mask != data->inject.instance_mask)
371 "Adjust RAS inject mask 0x%x to 0x%x\n",
372 inst_mask, data->inject.instance_mask);
376 * DOC: AMDGPU RAS debugfs control interface
378 * The control interface accepts struct ras_debug_if which has two members.
380 * First member: ras_debug_if::head or ras_debug_if::inject.
382 * head is used to indicate which IP block will be under control.
384 * head has four members, they are block, type, sub_block_index, name.
385 * block: which IP will be under control.
386 * type: what kind of error will be enabled/disabled/injected.
387 * sub_block_index: some IPs have subcomponets. say, GFX, sDMA.
388 * name: the name of IP.
390 * inject has three more members than head, they are address, value and mask.
391 * As their names indicate, inject operation will write the
392 * value to the address.
394 * The second member: struct ras_debug_if::op.
395 * It has three kinds of operations.
397 * - 0: disable RAS on the block. Take ::head as its data.
398 * - 1: enable RAS on the block. Take ::head as its data.
399 * - 2: inject errors on the block. Take ::inject as its data.
401 * How to use the interface?
405 * Copy the struct ras_debug_if in your code and initialize it.
406 * Write the struct to the control interface.
410 * .. code-block:: bash
412 * echo "disable <block>" > /sys/kernel/debug/dri/<N>/ras/ras_ctrl
413 * echo "enable <block> <error>" > /sys/kernel/debug/dri/<N>/ras/ras_ctrl
414 * echo "inject <block> <error> <sub-block> <address> <value> <mask>" > /sys/kernel/debug/dri/<N>/ras/ras_ctrl
416 * Where N, is the card which you want to affect.
418 * "disable" requires only the block.
419 * "enable" requires the block and error type.
420 * "inject" requires the block, error type, address, and value.
422 * The block is one of: umc, sdma, gfx, etc.
423 * see ras_block_string[] for details
425 * The error type is one of: ue, ce, where,
426 * ue is multi-uncorrectable
427 * ce is single-correctable
429 * The sub-block is a the sub-block index, pass 0 if there is no sub-block.
430 * The address and value are hexadecimal numbers, leading 0x is optional.
431 * The mask means instance mask, is optional, default value is 0x1.
435 * .. code-block:: bash
437 * echo inject umc ue 0x0 0x0 0x0 > /sys/kernel/debug/dri/0/ras/ras_ctrl
438 * echo inject umc ce 0 0 0 3 > /sys/kernel/debug/dri/0/ras/ras_ctrl
439 * echo disable umc > /sys/kernel/debug/dri/0/ras/ras_ctrl
441 * How to check the result of the operation?
443 * To check disable/enable, see "ras" features at,
444 * /sys/class/drm/card[0/1/2...]/device/ras/features
446 * To check inject, see the corresponding error count at,
447 * /sys/class/drm/card[0/1/2...]/device/ras/[gfx|sdma|umc|...]_err_count
450 * Operations are only allowed on blocks which are supported.
451 * Check the "ras" mask at /sys/module/amdgpu/parameters/ras_mask
452 * to see which blocks support RAS on a particular asic.
455 static ssize_t amdgpu_ras_debugfs_ctrl_write(struct file *f,
456 const char __user *buf,
457 size_t size, loff_t *pos)
459 struct amdgpu_device *adev = (struct amdgpu_device *)file_inode(f)->i_private;
460 struct ras_debug_if data;
463 if (!amdgpu_ras_get_error_query_ready(adev)) {
464 dev_warn(adev->dev, "RAS WARN: error injection "
465 "currently inaccessible\n");
469 ret = amdgpu_ras_debugfs_ctrl_parse_data(f, buf, size, pos, &data);
474 ret = amdgpu_reserve_page_direct(adev, data.inject.address);
481 if (!amdgpu_ras_is_supported(adev, data.head.block))
486 ret = amdgpu_ras_feature_enable(adev, &data.head, 0);
489 ret = amdgpu_ras_feature_enable(adev, &data.head, 1);
492 if ((data.inject.address >= adev->gmc.mc_vram_size &&
493 adev->gmc.mc_vram_size) ||
494 (data.inject.address >= RAS_UMC_INJECT_ADDR_LIMIT)) {
495 dev_warn(adev->dev, "RAS WARN: input address "
496 "0x%llx is invalid.",
497 data.inject.address);
502 /* umc ce/ue error injection for a bad page is not allowed */
503 if ((data.head.block == AMDGPU_RAS_BLOCK__UMC) &&
504 amdgpu_ras_check_bad_page(adev, data.inject.address)) {
505 dev_warn(adev->dev, "RAS WARN: inject: 0x%llx has "
506 "already been marked as bad!\n",
507 data.inject.address);
511 amdgpu_ras_instance_mask_check(adev, &data);
513 /* data.inject.address is offset instead of absolute gpu address */
514 ret = amdgpu_ras_error_inject(adev, &data.inject);
528 * DOC: AMDGPU RAS debugfs EEPROM table reset interface
530 * Some boards contain an EEPROM which is used to persistently store a list of
531 * bad pages which experiences ECC errors in vram. This interface provides
532 * a way to reset the EEPROM, e.g., after testing error injection.
536 * .. code-block:: bash
538 * echo 1 > ../ras/ras_eeprom_reset
540 * will reset EEPROM table to 0 entries.
543 static ssize_t amdgpu_ras_debugfs_eeprom_write(struct file *f,
544 const char __user *buf,
545 size_t size, loff_t *pos)
547 struct amdgpu_device *adev =
548 (struct amdgpu_device *)file_inode(f)->i_private;
551 ret = amdgpu_ras_eeprom_reset_table(
552 &(amdgpu_ras_get_context(adev)->eeprom_control));
555 /* Something was written to EEPROM.
557 amdgpu_ras_get_context(adev)->flags = RAS_DEFAULT_FLAGS;
564 static const struct file_operations amdgpu_ras_debugfs_ctrl_ops = {
565 .owner = THIS_MODULE,
567 .write = amdgpu_ras_debugfs_ctrl_write,
568 .llseek = default_llseek
571 static const struct file_operations amdgpu_ras_debugfs_eeprom_ops = {
572 .owner = THIS_MODULE,
574 .write = amdgpu_ras_debugfs_eeprom_write,
575 .llseek = default_llseek
579 * DOC: AMDGPU RAS sysfs Error Count Interface
581 * It allows the user to read the error count for each IP block on the gpu through
582 * /sys/class/drm/card[0/1/2...]/device/ras/[gfx/sdma/...]_err_count
584 * It outputs the multiple lines which report the uncorrected (ue) and corrected
587 * The format of one line is below,
593 * .. code-block:: bash
599 static ssize_t amdgpu_ras_sysfs_read(struct device *dev,
600 struct device_attribute *attr, char *buf)
602 struct ras_manager *obj = container_of(attr, struct ras_manager, sysfs_attr);
603 struct ras_query_if info = {
607 if (!amdgpu_ras_get_error_query_ready(obj->adev))
608 return sysfs_emit(buf, "Query currently inaccessible\n");
610 if (amdgpu_ras_query_error_status(obj->adev, &info))
613 if (obj->adev->ip_versions[MP0_HWIP][0] != IP_VERSION(11, 0, 2) &&
614 obj->adev->ip_versions[MP0_HWIP][0] != IP_VERSION(11, 0, 4)) {
615 if (amdgpu_ras_reset_error_status(obj->adev, info.head.block))
616 dev_warn(obj->adev->dev, "Failed to reset error counter and error status");
619 return sysfs_emit(buf, "%s: %lu\n%s: %lu\n", "ue", info.ue_count,
620 "ce", info.ce_count);
625 #define get_obj(obj) do { (obj)->use++; } while (0)
626 #define alive_obj(obj) ((obj)->use)
628 static inline void put_obj(struct ras_manager *obj)
630 if (obj && (--obj->use == 0))
631 list_del(&obj->node);
632 if (obj && (obj->use < 0))
633 DRM_ERROR("RAS ERROR: Unbalance obj(%s) use\n", get_ras_block_str(&obj->head));
636 /* make one obj and return it. */
637 static struct ras_manager *amdgpu_ras_create_obj(struct amdgpu_device *adev,
638 struct ras_common_if *head)
640 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
641 struct ras_manager *obj;
643 if (!adev->ras_enabled || !con)
646 if (head->block >= AMDGPU_RAS_BLOCK_COUNT)
649 if (head->block == AMDGPU_RAS_BLOCK__MCA) {
650 if (head->sub_block_index >= AMDGPU_RAS_MCA_BLOCK__LAST)
653 obj = &con->objs[AMDGPU_RAS_BLOCK__LAST + head->sub_block_index];
655 obj = &con->objs[head->block];
657 /* already exist. return obj? */
663 list_add(&obj->node, &con->head);
669 /* return an obj equal to head, or the first when head is NULL */
670 struct ras_manager *amdgpu_ras_find_obj(struct amdgpu_device *adev,
671 struct ras_common_if *head)
673 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
674 struct ras_manager *obj;
677 if (!adev->ras_enabled || !con)
681 if (head->block >= AMDGPU_RAS_BLOCK_COUNT)
684 if (head->block == AMDGPU_RAS_BLOCK__MCA) {
685 if (head->sub_block_index >= AMDGPU_RAS_MCA_BLOCK__LAST)
688 obj = &con->objs[AMDGPU_RAS_BLOCK__LAST + head->sub_block_index];
690 obj = &con->objs[head->block];
695 for (i = 0; i < AMDGPU_RAS_BLOCK_COUNT + AMDGPU_RAS_MCA_BLOCK_COUNT; i++) {
706 /* feature ctl begin */
707 static int amdgpu_ras_is_feature_allowed(struct amdgpu_device *adev,
708 struct ras_common_if *head)
710 return adev->ras_hw_enabled & BIT(head->block);
713 static int amdgpu_ras_is_feature_enabled(struct amdgpu_device *adev,
714 struct ras_common_if *head)
716 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
718 return con->features & BIT(head->block);
722 * if obj is not created, then create one.
723 * set feature enable flag.
725 static int __amdgpu_ras_feature_enable(struct amdgpu_device *adev,
726 struct ras_common_if *head, int enable)
728 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
729 struct ras_manager *obj = amdgpu_ras_find_obj(adev, head);
731 /* If hardware does not support ras, then do not create obj.
732 * But if hardware support ras, we can create the obj.
733 * Ras framework checks con->hw_supported to see if it need do
734 * corresponding initialization.
735 * IP checks con->support to see if it need disable ras.
737 if (!amdgpu_ras_is_feature_allowed(adev, head))
742 obj = amdgpu_ras_create_obj(adev, head);
746 /* In case we create obj somewhere else */
749 con->features |= BIT(head->block);
751 if (obj && amdgpu_ras_is_feature_enabled(adev, head)) {
752 con->features &= ~BIT(head->block);
760 static int amdgpu_ras_check_feature_allowed(struct amdgpu_device *adev,
761 struct ras_common_if *head)
763 if (amdgpu_ras_is_feature_allowed(adev, head) ||
764 amdgpu_ras_is_poison_mode_supported(adev))
770 /* wrapper of psp_ras_enable_features */
771 int amdgpu_ras_feature_enable(struct amdgpu_device *adev,
772 struct ras_common_if *head, bool enable)
774 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
775 union ta_ras_cmd_input *info;
781 if (head->block == AMDGPU_RAS_BLOCK__GFX) {
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),
799 /* Do not enable if it is not allowed. */
800 if (enable && !amdgpu_ras_check_feature_allowed(adev, head))
803 /* Only enable ras feature operation handle on host side */
804 if (head->block == AMDGPU_RAS_BLOCK__GFX &&
805 !amdgpu_sriov_vf(adev) &&
806 !amdgpu_ras_intr_triggered()) {
807 ret = psp_ras_enable_features(&adev->psp, info, enable);
809 dev_err(adev->dev, "ras %s %s failed poison:%d ret:%d\n",
810 enable ? "enable":"disable",
811 get_ras_block_str(head),
812 amdgpu_ras_is_poison_mode_supported(adev), ret);
818 __amdgpu_ras_feature_enable(adev, head, enable);
820 if (head->block == AMDGPU_RAS_BLOCK__GFX)
825 /* Only used in device probe stage and called only once. */
826 int amdgpu_ras_feature_enable_on_boot(struct amdgpu_device *adev,
827 struct ras_common_if *head, bool enable)
829 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
835 if (con->flags & AMDGPU_RAS_FLAG_INIT_BY_VBIOS) {
837 /* There is no harm to issue a ras TA cmd regardless of
838 * the currecnt ras state.
839 * If current state == target state, it will do nothing
840 * But sometimes it requests driver to reset and repost
841 * with error code -EAGAIN.
843 ret = amdgpu_ras_feature_enable(adev, head, 1);
844 /* With old ras TA, we might fail to enable ras.
845 * Log it and just setup the object.
846 * TODO need remove this WA in the future.
848 if (ret == -EINVAL) {
849 ret = __amdgpu_ras_feature_enable(adev, head, 1);
852 "RAS INFO: %s setup object\n",
853 get_ras_block_str(head));
856 /* setup the object then issue a ras TA disable cmd.*/
857 ret = __amdgpu_ras_feature_enable(adev, head, 1);
861 /* gfx block ras dsiable cmd must send to ras-ta */
862 if (head->block == AMDGPU_RAS_BLOCK__GFX)
863 con->features |= BIT(head->block);
865 ret = amdgpu_ras_feature_enable(adev, head, 0);
867 /* clean gfx block ras features flag */
868 if (adev->ras_enabled && head->block == AMDGPU_RAS_BLOCK__GFX)
869 con->features &= ~BIT(head->block);
872 ret = amdgpu_ras_feature_enable(adev, head, enable);
877 static int amdgpu_ras_disable_all_features(struct amdgpu_device *adev,
880 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
881 struct ras_manager *obj, *tmp;
883 list_for_each_entry_safe(obj, tmp, &con->head, node) {
885 * aka just release the obj and corresponding flags
888 if (__amdgpu_ras_feature_enable(adev, &obj->head, 0))
891 if (amdgpu_ras_feature_enable(adev, &obj->head, 0))
896 return con->features;
899 static int amdgpu_ras_enable_all_features(struct amdgpu_device *adev,
902 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
904 const enum amdgpu_ras_error_type default_ras_type = AMDGPU_RAS_ERROR__NONE;
906 for (i = 0; i < AMDGPU_RAS_BLOCK_COUNT; i++) {
907 struct ras_common_if head = {
909 .type = default_ras_type,
910 .sub_block_index = 0,
913 if (i == AMDGPU_RAS_BLOCK__MCA)
918 * bypass psp. vbios enable ras for us.
919 * so just create the obj
921 if (__amdgpu_ras_feature_enable(adev, &head, 1))
924 if (amdgpu_ras_feature_enable(adev, &head, 1))
929 for (i = 0; i < AMDGPU_RAS_MCA_BLOCK_COUNT; i++) {
930 struct ras_common_if head = {
931 .block = AMDGPU_RAS_BLOCK__MCA,
932 .type = default_ras_type,
933 .sub_block_index = i,
938 * bypass psp. vbios enable ras for us.
939 * so just create the obj
941 if (__amdgpu_ras_feature_enable(adev, &head, 1))
944 if (amdgpu_ras_feature_enable(adev, &head, 1))
949 return con->features;
951 /* feature ctl end */
953 static int amdgpu_ras_block_match_default(struct amdgpu_ras_block_object *block_obj,
954 enum amdgpu_ras_block block)
959 if (block_obj->ras_comm.block == block)
965 static struct amdgpu_ras_block_object *amdgpu_ras_get_ras_block(struct amdgpu_device *adev,
966 enum amdgpu_ras_block block, uint32_t sub_block_index)
968 struct amdgpu_ras_block_list *node, *tmp;
969 struct amdgpu_ras_block_object *obj;
971 if (block >= AMDGPU_RAS_BLOCK__LAST)
974 list_for_each_entry_safe(node, tmp, &adev->ras_list, node) {
975 if (!node->ras_obj) {
976 dev_warn(adev->dev, "Warning: abnormal ras list node.\n");
981 if (obj->ras_block_match) {
982 if (obj->ras_block_match(obj, block, sub_block_index) == 0)
985 if (amdgpu_ras_block_match_default(obj, block) == 0)
993 static void amdgpu_ras_get_ecc_info(struct amdgpu_device *adev, struct ras_err_data *err_data)
995 struct amdgpu_ras *ras = amdgpu_ras_get_context(adev);
999 * choosing right query method according to
1000 * whether smu support query error information
1002 ret = amdgpu_dpm_get_ecc_info(adev, (void *)&(ras->umc_ecc));
1003 if (ret == -EOPNOTSUPP) {
1004 if (adev->umc.ras && adev->umc.ras->ras_block.hw_ops &&
1005 adev->umc.ras->ras_block.hw_ops->query_ras_error_count)
1006 adev->umc.ras->ras_block.hw_ops->query_ras_error_count(adev, err_data);
1008 /* umc query_ras_error_address is also responsible for clearing
1011 if (adev->umc.ras && adev->umc.ras->ras_block.hw_ops &&
1012 adev->umc.ras->ras_block.hw_ops->query_ras_error_address)
1013 adev->umc.ras->ras_block.hw_ops->query_ras_error_address(adev, err_data);
1015 if (adev->umc.ras &&
1016 adev->umc.ras->ecc_info_query_ras_error_count)
1017 adev->umc.ras->ecc_info_query_ras_error_count(adev, err_data);
1019 if (adev->umc.ras &&
1020 adev->umc.ras->ecc_info_query_ras_error_address)
1021 adev->umc.ras->ecc_info_query_ras_error_address(adev, err_data);
1025 /* query/inject/cure begin */
1026 int amdgpu_ras_query_error_status(struct amdgpu_device *adev,
1027 struct ras_query_if *info)
1029 struct amdgpu_ras_block_object *block_obj = NULL;
1030 struct ras_manager *obj = amdgpu_ras_find_obj(adev, &info->head);
1031 struct ras_err_data err_data = {0, 0, 0, NULL};
1036 if (info->head.block == AMDGPU_RAS_BLOCK__UMC) {
1037 amdgpu_ras_get_ecc_info(adev, &err_data);
1039 block_obj = amdgpu_ras_get_ras_block(adev, info->head.block, 0);
1040 if (!block_obj || !block_obj->hw_ops) {
1041 dev_dbg_once(adev->dev, "%s doesn't config RAS function\n",
1042 get_ras_block_str(&info->head));
1046 if (block_obj->hw_ops->query_ras_error_count)
1047 block_obj->hw_ops->query_ras_error_count(adev, &err_data);
1049 if ((info->head.block == AMDGPU_RAS_BLOCK__SDMA) ||
1050 (info->head.block == AMDGPU_RAS_BLOCK__GFX) ||
1051 (info->head.block == AMDGPU_RAS_BLOCK__MMHUB)) {
1052 if (block_obj->hw_ops->query_ras_error_status)
1053 block_obj->hw_ops->query_ras_error_status(adev);
1057 obj->err_data.ue_count += err_data.ue_count;
1058 obj->err_data.ce_count += err_data.ce_count;
1060 info->ue_count = obj->err_data.ue_count;
1061 info->ce_count = obj->err_data.ce_count;
1063 if (err_data.ce_count) {
1064 if (adev->smuio.funcs &&
1065 adev->smuio.funcs->get_socket_id &&
1066 adev->smuio.funcs->get_die_id) {
1067 dev_info(adev->dev, "socket: %d, die: %d "
1068 "%ld correctable hardware errors "
1069 "detected in %s block, no user "
1070 "action is needed.\n",
1071 adev->smuio.funcs->get_socket_id(adev),
1072 adev->smuio.funcs->get_die_id(adev),
1073 obj->err_data.ce_count,
1074 get_ras_block_str(&info->head));
1076 dev_info(adev->dev, "%ld correctable hardware errors "
1077 "detected in %s block, no user "
1078 "action is needed.\n",
1079 obj->err_data.ce_count,
1080 get_ras_block_str(&info->head));
1083 if (err_data.ue_count) {
1084 if (adev->smuio.funcs &&
1085 adev->smuio.funcs->get_socket_id &&
1086 adev->smuio.funcs->get_die_id) {
1087 dev_info(adev->dev, "socket: %d, die: %d "
1088 "%ld uncorrectable hardware errors "
1089 "detected in %s block\n",
1090 adev->smuio.funcs->get_socket_id(adev),
1091 adev->smuio.funcs->get_die_id(adev),
1092 obj->err_data.ue_count,
1093 get_ras_block_str(&info->head));
1095 dev_info(adev->dev, "%ld uncorrectable hardware errors "
1096 "detected in %s block\n",
1097 obj->err_data.ue_count,
1098 get_ras_block_str(&info->head));
1105 int amdgpu_ras_reset_error_status(struct amdgpu_device *adev,
1106 enum amdgpu_ras_block block)
1108 struct amdgpu_ras_block_object *block_obj = amdgpu_ras_get_ras_block(adev, block, 0);
1110 if (!amdgpu_ras_is_supported(adev, block))
1113 if (!block_obj || !block_obj->hw_ops) {
1114 dev_dbg_once(adev->dev, "%s doesn't config RAS function\n",
1115 ras_block_str(block));
1119 if (block_obj->hw_ops->reset_ras_error_count)
1120 block_obj->hw_ops->reset_ras_error_count(adev);
1122 if ((block == AMDGPU_RAS_BLOCK__GFX) ||
1123 (block == AMDGPU_RAS_BLOCK__MMHUB)) {
1124 if (block_obj->hw_ops->reset_ras_error_status)
1125 block_obj->hw_ops->reset_ras_error_status(adev);
1131 /* wrapper of psp_ras_trigger_error */
1132 int amdgpu_ras_error_inject(struct amdgpu_device *adev,
1133 struct ras_inject_if *info)
1135 struct ras_manager *obj = amdgpu_ras_find_obj(adev, &info->head);
1136 struct ta_ras_trigger_error_input block_info = {
1137 .block_id = amdgpu_ras_block_to_ta(info->head.block),
1138 .inject_error_type = amdgpu_ras_error_to_ta(info->head.type),
1139 .sub_block_index = info->head.sub_block_index,
1140 .address = info->address,
1141 .value = info->value,
1144 struct amdgpu_ras_block_object *block_obj = amdgpu_ras_get_ras_block(adev,
1146 info->head.sub_block_index);
1148 /* inject on guest isn't allowed, return success directly */
1149 if (amdgpu_sriov_vf(adev))
1155 if (!block_obj || !block_obj->hw_ops) {
1156 dev_dbg_once(adev->dev, "%s doesn't config RAS function\n",
1157 get_ras_block_str(&info->head));
1161 /* Calculate XGMI relative offset */
1162 if (adev->gmc.xgmi.num_physical_nodes > 1 &&
1163 info->head.block != AMDGPU_RAS_BLOCK__GFX) {
1164 block_info.address =
1165 amdgpu_xgmi_get_relative_phy_addr(adev,
1166 block_info.address);
1169 if (block_obj->hw_ops->ras_error_inject) {
1170 if (info->head.block == AMDGPU_RAS_BLOCK__GFX)
1171 ret = block_obj->hw_ops->ras_error_inject(adev, info, info->instance_mask);
1172 else /* Special ras_error_inject is defined (e.g: xgmi) */
1173 ret = block_obj->hw_ops->ras_error_inject(adev, &block_info,
1174 info->instance_mask);
1177 ret = psp_ras_trigger_error(&adev->psp, &block_info, info->instance_mask);
1181 dev_err(adev->dev, "ras inject %s failed %d\n",
1182 get_ras_block_str(&info->head), ret);
1188 * amdgpu_ras_query_error_count_helper -- Get error counter for specific IP
1189 * @adev: pointer to AMD GPU device
1190 * @ce_count: pointer to an integer to be set to the count of correctible errors.
1191 * @ue_count: pointer to an integer to be set to the count of uncorrectible errors.
1192 * @query_info: pointer to ras_query_if
1194 * Return 0 for query success or do nothing, otherwise return an error
1197 static int amdgpu_ras_query_error_count_helper(struct amdgpu_device *adev,
1198 unsigned long *ce_count,
1199 unsigned long *ue_count,
1200 struct ras_query_if *query_info)
1205 /* do nothing if query_info is not specified */
1208 ret = amdgpu_ras_query_error_status(adev, query_info);
1212 *ce_count += query_info->ce_count;
1213 *ue_count += query_info->ue_count;
1215 /* some hardware/IP supports read to clear
1216 * no need to explictly reset the err status after the query call */
1217 if (adev->ip_versions[MP0_HWIP][0] != IP_VERSION(11, 0, 2) &&
1218 adev->ip_versions[MP0_HWIP][0] != IP_VERSION(11, 0, 4)) {
1219 if (amdgpu_ras_reset_error_status(adev, query_info->head.block))
1221 "Failed to reset error counter and error status\n");
1228 * amdgpu_ras_query_error_count -- Get error counts of all IPs or specific IP
1229 * @adev: pointer to AMD GPU device
1230 * @ce_count: pointer to an integer to be set to the count of correctible errors.
1231 * @ue_count: pointer to an integer to be set to the count of uncorrectible
1233 * @query_info: pointer to ras_query_if if the query request is only for
1234 * specific ip block; if info is NULL, then the qurey request is for
1235 * all the ip blocks that support query ras error counters/status
1237 * If set, @ce_count or @ue_count, count and return the corresponding
1238 * error counts in those integer pointers. Return 0 if the device
1239 * supports RAS. Return -EOPNOTSUPP if the device doesn't support RAS.
1241 int amdgpu_ras_query_error_count(struct amdgpu_device *adev,
1242 unsigned long *ce_count,
1243 unsigned long *ue_count,
1244 struct ras_query_if *query_info)
1246 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1247 struct ras_manager *obj;
1248 unsigned long ce, ue;
1251 if (!adev->ras_enabled || !con)
1254 /* Don't count since no reporting.
1256 if (!ce_count && !ue_count)
1262 /* query all the ip blocks that support ras query interface */
1263 list_for_each_entry(obj, &con->head, node) {
1264 struct ras_query_if info = {
1268 ret = amdgpu_ras_query_error_count_helper(adev, &ce, &ue, &info);
1271 /* query specific ip block */
1272 ret = amdgpu_ras_query_error_count_helper(adev, &ce, &ue, query_info);
1286 /* query/inject/cure end */
1291 static int amdgpu_ras_badpages_read(struct amdgpu_device *adev,
1292 struct ras_badpage **bps, unsigned int *count);
1294 static char *amdgpu_ras_badpage_flags_str(unsigned int flags)
1297 case AMDGPU_RAS_RETIRE_PAGE_RESERVED:
1299 case AMDGPU_RAS_RETIRE_PAGE_PENDING:
1301 case AMDGPU_RAS_RETIRE_PAGE_FAULT:
1308 * DOC: AMDGPU RAS sysfs gpu_vram_bad_pages Interface
1310 * It allows user to read the bad pages of vram on the gpu through
1311 * /sys/class/drm/card[0/1/2...]/device/ras/gpu_vram_bad_pages
1313 * It outputs multiple lines, and each line stands for one gpu page.
1315 * The format of one line is below,
1316 * gpu pfn : gpu page size : flags
1318 * gpu pfn and gpu page size are printed in hex format.
1319 * flags can be one of below character,
1321 * R: reserved, this gpu page is reserved and not able to use.
1323 * P: pending for reserve, this gpu page is marked as bad, will be reserved
1324 * in next window of page_reserve.
1326 * F: unable to reserve. this gpu page can't be reserved due to some reasons.
1330 * .. code-block:: bash
1332 * 0x00000001 : 0x00001000 : R
1333 * 0x00000002 : 0x00001000 : P
1337 static ssize_t amdgpu_ras_sysfs_badpages_read(struct file *f,
1338 struct kobject *kobj, struct bin_attribute *attr,
1339 char *buf, loff_t ppos, size_t count)
1341 struct amdgpu_ras *con =
1342 container_of(attr, struct amdgpu_ras, badpages_attr);
1343 struct amdgpu_device *adev = con->adev;
1344 const unsigned int element_size =
1345 sizeof("0xabcdabcd : 0x12345678 : R\n") - 1;
1346 unsigned int start = div64_ul(ppos + element_size - 1, element_size);
1347 unsigned int end = div64_ul(ppos + count - 1, element_size);
1349 struct ras_badpage *bps = NULL;
1350 unsigned int bps_count = 0;
1352 memset(buf, 0, count);
1354 if (amdgpu_ras_badpages_read(adev, &bps, &bps_count))
1357 for (; start < end && start < bps_count; start++)
1358 s += scnprintf(&buf[s], element_size + 1,
1359 "0x%08x : 0x%08x : %1s\n",
1362 amdgpu_ras_badpage_flags_str(bps[start].flags));
1369 static ssize_t amdgpu_ras_sysfs_features_read(struct device *dev,
1370 struct device_attribute *attr, char *buf)
1372 struct amdgpu_ras *con =
1373 container_of(attr, struct amdgpu_ras, features_attr);
1375 return sysfs_emit(buf, "feature mask: 0x%x\n", con->features);
1378 static void amdgpu_ras_sysfs_remove_bad_page_node(struct amdgpu_device *adev)
1380 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1382 sysfs_remove_file_from_group(&adev->dev->kobj,
1383 &con->badpages_attr.attr,
1387 static int amdgpu_ras_sysfs_remove_feature_node(struct amdgpu_device *adev)
1389 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1390 struct attribute *attrs[] = {
1391 &con->features_attr.attr,
1394 struct attribute_group group = {
1395 .name = RAS_FS_NAME,
1399 sysfs_remove_group(&adev->dev->kobj, &group);
1404 int amdgpu_ras_sysfs_create(struct amdgpu_device *adev,
1405 struct ras_common_if *head)
1407 struct ras_manager *obj = amdgpu_ras_find_obj(adev, head);
1409 if (!obj || obj->attr_inuse)
1414 snprintf(obj->fs_data.sysfs_name, sizeof(obj->fs_data.sysfs_name),
1415 "%s_err_count", head->name);
1417 obj->sysfs_attr = (struct device_attribute){
1419 .name = obj->fs_data.sysfs_name,
1422 .show = amdgpu_ras_sysfs_read,
1424 sysfs_attr_init(&obj->sysfs_attr.attr);
1426 if (sysfs_add_file_to_group(&adev->dev->kobj,
1427 &obj->sysfs_attr.attr,
1433 obj->attr_inuse = 1;
1438 int amdgpu_ras_sysfs_remove(struct amdgpu_device *adev,
1439 struct ras_common_if *head)
1441 struct ras_manager *obj = amdgpu_ras_find_obj(adev, head);
1443 if (!obj || !obj->attr_inuse)
1446 sysfs_remove_file_from_group(&adev->dev->kobj,
1447 &obj->sysfs_attr.attr,
1449 obj->attr_inuse = 0;
1455 static int amdgpu_ras_sysfs_remove_all(struct amdgpu_device *adev)
1457 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1458 struct ras_manager *obj, *tmp;
1460 list_for_each_entry_safe(obj, tmp, &con->head, node) {
1461 amdgpu_ras_sysfs_remove(adev, &obj->head);
1464 if (amdgpu_bad_page_threshold != 0)
1465 amdgpu_ras_sysfs_remove_bad_page_node(adev);
1467 amdgpu_ras_sysfs_remove_feature_node(adev);
1474 * DOC: AMDGPU RAS Reboot Behavior for Unrecoverable Errors
1476 * Normally when there is an uncorrectable error, the driver will reset
1477 * the GPU to recover. However, in the event of an unrecoverable error,
1478 * the driver provides an interface to reboot the system automatically
1481 * The following file in debugfs provides that interface:
1482 * /sys/kernel/debug/dri/[0/1/2...]/ras/auto_reboot
1486 * .. code-block:: bash
1488 * echo true > .../ras/auto_reboot
1492 static struct dentry *amdgpu_ras_debugfs_create_ctrl_node(struct amdgpu_device *adev)
1494 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1495 struct amdgpu_ras_eeprom_control *eeprom = &con->eeprom_control;
1496 struct drm_minor *minor = adev_to_drm(adev)->primary;
1499 dir = debugfs_create_dir(RAS_FS_NAME, minor->debugfs_root);
1500 debugfs_create_file("ras_ctrl", S_IWUGO | S_IRUGO, dir, adev,
1501 &amdgpu_ras_debugfs_ctrl_ops);
1502 debugfs_create_file("ras_eeprom_reset", S_IWUGO | S_IRUGO, dir, adev,
1503 &amdgpu_ras_debugfs_eeprom_ops);
1504 debugfs_create_u32("bad_page_cnt_threshold", 0444, dir,
1505 &con->bad_page_cnt_threshold);
1506 debugfs_create_u32("ras_num_recs", 0444, dir, &eeprom->ras_num_recs);
1507 debugfs_create_x32("ras_hw_enabled", 0444, dir, &adev->ras_hw_enabled);
1508 debugfs_create_x32("ras_enabled", 0444, dir, &adev->ras_enabled);
1509 debugfs_create_file("ras_eeprom_size", S_IRUGO, dir, adev,
1510 &amdgpu_ras_debugfs_eeprom_size_ops);
1511 con->de_ras_eeprom_table = debugfs_create_file("ras_eeprom_table",
1513 &amdgpu_ras_debugfs_eeprom_table_ops);
1514 amdgpu_ras_debugfs_set_ret_size(&con->eeprom_control);
1517 * After one uncorrectable error happens, usually GPU recovery will
1518 * be scheduled. But due to the known problem in GPU recovery failing
1519 * to bring GPU back, below interface provides one direct way to
1520 * user to reboot system automatically in such case within
1521 * ERREVENT_ATHUB_INTERRUPT generated. Normal GPU recovery routine
1522 * will never be called.
1524 debugfs_create_bool("auto_reboot", S_IWUGO | S_IRUGO, dir, &con->reboot);
1527 * User could set this not to clean up hardware's error count register
1528 * of RAS IPs during ras recovery.
1530 debugfs_create_bool("disable_ras_err_cnt_harvest", 0644, dir,
1531 &con->disable_ras_err_cnt_harvest);
1535 static void amdgpu_ras_debugfs_create(struct amdgpu_device *adev,
1536 struct ras_fs_if *head,
1539 struct ras_manager *obj = amdgpu_ras_find_obj(adev, &head->head);
1546 memcpy(obj->fs_data.debugfs_name,
1548 sizeof(obj->fs_data.debugfs_name));
1550 debugfs_create_file(obj->fs_data.debugfs_name, S_IWUGO | S_IRUGO, dir,
1551 obj, &amdgpu_ras_debugfs_ops);
1554 void amdgpu_ras_debugfs_create_all(struct amdgpu_device *adev)
1556 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1558 struct ras_manager *obj;
1559 struct ras_fs_if fs_info;
1562 * it won't be called in resume path, no need to check
1563 * suspend and gpu reset status
1565 if (!IS_ENABLED(CONFIG_DEBUG_FS) || !con)
1568 dir = amdgpu_ras_debugfs_create_ctrl_node(adev);
1570 list_for_each_entry(obj, &con->head, node) {
1571 if (amdgpu_ras_is_supported(adev, obj->head.block) &&
1572 (obj->attr_inuse == 1)) {
1573 sprintf(fs_info.debugfs_name, "%s_err_inject",
1574 get_ras_block_str(&obj->head));
1575 fs_info.head = obj->head;
1576 amdgpu_ras_debugfs_create(adev, &fs_info, dir);
1584 static BIN_ATTR(gpu_vram_bad_pages, S_IRUGO,
1585 amdgpu_ras_sysfs_badpages_read, NULL, 0);
1586 static DEVICE_ATTR(features, S_IRUGO,
1587 amdgpu_ras_sysfs_features_read, NULL);
1588 static int amdgpu_ras_fs_init(struct amdgpu_device *adev)
1590 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1591 struct attribute_group group = {
1592 .name = RAS_FS_NAME,
1594 struct attribute *attrs[] = {
1595 &con->features_attr.attr,
1598 struct bin_attribute *bin_attrs[] = {
1604 /* add features entry */
1605 con->features_attr = dev_attr_features;
1606 group.attrs = attrs;
1607 sysfs_attr_init(attrs[0]);
1609 if (amdgpu_bad_page_threshold != 0) {
1610 /* add bad_page_features entry */
1611 bin_attr_gpu_vram_bad_pages.private = NULL;
1612 con->badpages_attr = bin_attr_gpu_vram_bad_pages;
1613 bin_attrs[0] = &con->badpages_attr;
1614 group.bin_attrs = bin_attrs;
1615 sysfs_bin_attr_init(bin_attrs[0]);
1618 r = sysfs_create_group(&adev->dev->kobj, &group);
1620 dev_err(adev->dev, "Failed to create RAS sysfs group!");
1625 static int amdgpu_ras_fs_fini(struct amdgpu_device *adev)
1627 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1628 struct ras_manager *con_obj, *ip_obj, *tmp;
1630 if (IS_ENABLED(CONFIG_DEBUG_FS)) {
1631 list_for_each_entry_safe(con_obj, tmp, &con->head, node) {
1632 ip_obj = amdgpu_ras_find_obj(adev, &con_obj->head);
1638 amdgpu_ras_sysfs_remove_all(adev);
1645 /* For the hardware that cannot enable bif ring for both ras_controller_irq
1646 * and ras_err_evnet_athub_irq ih cookies, the driver has to poll status
1647 * register to check whether the interrupt is triggered or not, and properly
1648 * ack the interrupt if it is there
1650 void amdgpu_ras_interrupt_fatal_error_handler(struct amdgpu_device *adev)
1652 /* Fatal error events are handled on host side */
1653 if (amdgpu_sriov_vf(adev))
1656 if (adev->nbio.ras &&
1657 adev->nbio.ras->handle_ras_controller_intr_no_bifring)
1658 adev->nbio.ras->handle_ras_controller_intr_no_bifring(adev);
1660 if (adev->nbio.ras &&
1661 adev->nbio.ras->handle_ras_err_event_athub_intr_no_bifring)
1662 adev->nbio.ras->handle_ras_err_event_athub_intr_no_bifring(adev);
1665 static void amdgpu_ras_interrupt_poison_consumption_handler(struct ras_manager *obj,
1666 struct amdgpu_iv_entry *entry)
1668 bool poison_stat = false;
1669 struct amdgpu_device *adev = obj->adev;
1670 struct amdgpu_ras_block_object *block_obj =
1671 amdgpu_ras_get_ras_block(adev, obj->head.block, 0);
1676 /* both query_poison_status and handle_poison_consumption are optional,
1677 * but at least one of them should be implemented if we need poison
1678 * consumption handler
1680 if (block_obj->hw_ops && block_obj->hw_ops->query_poison_status) {
1681 poison_stat = block_obj->hw_ops->query_poison_status(adev);
1683 /* Not poison consumption interrupt, no need to handle it */
1684 dev_info(adev->dev, "No RAS poison status in %s poison IH.\n",
1685 block_obj->ras_comm.name);
1691 amdgpu_umc_poison_handler(adev, false);
1693 if (block_obj->hw_ops && block_obj->hw_ops->handle_poison_consumption)
1694 poison_stat = block_obj->hw_ops->handle_poison_consumption(adev);
1696 /* gpu reset is fallback for failed and default cases */
1698 dev_info(adev->dev, "GPU reset for %s RAS poison consumption is issued!\n",
1699 block_obj->ras_comm.name);
1700 amdgpu_ras_reset_gpu(adev);
1702 amdgpu_gfx_poison_consumption_handler(adev, entry);
1706 static void amdgpu_ras_interrupt_poison_creation_handler(struct ras_manager *obj,
1707 struct amdgpu_iv_entry *entry)
1709 dev_info(obj->adev->dev,
1710 "Poison is created, no user action is needed.\n");
1713 static void amdgpu_ras_interrupt_umc_handler(struct ras_manager *obj,
1714 struct amdgpu_iv_entry *entry)
1716 struct ras_ih_data *data = &obj->ih_data;
1717 struct ras_err_data err_data = {0, 0, 0, NULL};
1723 /* Let IP handle its data, maybe we need get the output
1724 * from the callback to update the error type/count, etc
1726 ret = data->cb(obj->adev, &err_data, entry);
1727 /* ue will trigger an interrupt, and in that case
1728 * we need do a reset to recovery the whole system.
1729 * But leave IP do that recovery, here we just dispatch
1732 if (ret == AMDGPU_RAS_SUCCESS) {
1733 /* these counts could be left as 0 if
1734 * some blocks do not count error number
1736 obj->err_data.ue_count += err_data.ue_count;
1737 obj->err_data.ce_count += err_data.ce_count;
1741 static void amdgpu_ras_interrupt_handler(struct ras_manager *obj)
1743 struct ras_ih_data *data = &obj->ih_data;
1744 struct amdgpu_iv_entry entry;
1746 while (data->rptr != data->wptr) {
1748 memcpy(&entry, &data->ring[data->rptr],
1749 data->element_size);
1752 data->rptr = (data->aligned_element_size +
1753 data->rptr) % data->ring_size;
1755 if (amdgpu_ras_is_poison_mode_supported(obj->adev)) {
1756 if (obj->head.block == AMDGPU_RAS_BLOCK__UMC)
1757 amdgpu_ras_interrupt_poison_creation_handler(obj, &entry);
1759 amdgpu_ras_interrupt_poison_consumption_handler(obj, &entry);
1761 if (obj->head.block == AMDGPU_RAS_BLOCK__UMC)
1762 amdgpu_ras_interrupt_umc_handler(obj, &entry);
1764 dev_warn(obj->adev->dev,
1765 "No RAS interrupt handler for non-UMC block with poison disabled.\n");
1770 static void amdgpu_ras_interrupt_process_handler(struct work_struct *work)
1772 struct ras_ih_data *data =
1773 container_of(work, struct ras_ih_data, ih_work);
1774 struct ras_manager *obj =
1775 container_of(data, struct ras_manager, ih_data);
1777 amdgpu_ras_interrupt_handler(obj);
1780 int amdgpu_ras_interrupt_dispatch(struct amdgpu_device *adev,
1781 struct ras_dispatch_if *info)
1783 struct ras_manager *obj = amdgpu_ras_find_obj(adev, &info->head);
1784 struct ras_ih_data *data = &obj->ih_data;
1789 if (data->inuse == 0)
1792 /* Might be overflow... */
1793 memcpy(&data->ring[data->wptr], info->entry,
1794 data->element_size);
1797 data->wptr = (data->aligned_element_size +
1798 data->wptr) % data->ring_size;
1800 schedule_work(&data->ih_work);
1805 int amdgpu_ras_interrupt_remove_handler(struct amdgpu_device *adev,
1806 struct ras_common_if *head)
1808 struct ras_manager *obj = amdgpu_ras_find_obj(adev, head);
1809 struct ras_ih_data *data;
1814 data = &obj->ih_data;
1815 if (data->inuse == 0)
1818 cancel_work_sync(&data->ih_work);
1821 memset(data, 0, sizeof(*data));
1827 int amdgpu_ras_interrupt_add_handler(struct amdgpu_device *adev,
1828 struct ras_common_if *head)
1830 struct ras_manager *obj = amdgpu_ras_find_obj(adev, head);
1831 struct ras_ih_data *data;
1832 struct amdgpu_ras_block_object *ras_obj;
1835 /* in case we registe the IH before enable ras feature */
1836 obj = amdgpu_ras_create_obj(adev, head);
1842 ras_obj = container_of(head, struct amdgpu_ras_block_object, ras_comm);
1844 data = &obj->ih_data;
1845 /* add the callback.etc */
1846 *data = (struct ras_ih_data) {
1848 .cb = ras_obj->ras_cb,
1849 .element_size = sizeof(struct amdgpu_iv_entry),
1854 INIT_WORK(&data->ih_work, amdgpu_ras_interrupt_process_handler);
1856 data->aligned_element_size = ALIGN(data->element_size, 8);
1857 /* the ring can store 64 iv entries. */
1858 data->ring_size = 64 * data->aligned_element_size;
1859 data->ring = kmalloc(data->ring_size, GFP_KERNEL);
1871 static int amdgpu_ras_interrupt_remove_all(struct amdgpu_device *adev)
1873 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1874 struct ras_manager *obj, *tmp;
1876 list_for_each_entry_safe(obj, tmp, &con->head, node) {
1877 amdgpu_ras_interrupt_remove_handler(adev, &obj->head);
1884 /* traversal all IPs except NBIO to query error counter */
1885 static void amdgpu_ras_log_on_err_counter(struct amdgpu_device *adev)
1887 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1888 struct ras_manager *obj;
1890 if (!adev->ras_enabled || !con)
1893 list_for_each_entry(obj, &con->head, node) {
1894 struct ras_query_if info = {
1899 * PCIE_BIF IP has one different isr by ras controller
1900 * interrupt, the specific ras counter query will be
1901 * done in that isr. So skip such block from common
1902 * sync flood interrupt isr calling.
1904 if (info.head.block == AMDGPU_RAS_BLOCK__PCIE_BIF)
1908 * this is a workaround for aldebaran, skip send msg to
1909 * smu to get ecc_info table due to smu handle get ecc
1910 * info table failed temporarily.
1911 * should be removed until smu fix handle ecc_info table.
1913 if ((info.head.block == AMDGPU_RAS_BLOCK__UMC) &&
1914 (adev->ip_versions[MP1_HWIP][0] == IP_VERSION(13, 0, 2)))
1917 amdgpu_ras_query_error_status(adev, &info);
1919 if (adev->ip_versions[MP0_HWIP][0] != IP_VERSION(11, 0, 2) &&
1920 adev->ip_versions[MP0_HWIP][0] != IP_VERSION(11, 0, 4) &&
1921 adev->ip_versions[MP0_HWIP][0] != IP_VERSION(13, 0, 0)) {
1922 if (amdgpu_ras_reset_error_status(adev, info.head.block))
1923 dev_warn(adev->dev, "Failed to reset error counter and error status");
1928 /* Parse RdRspStatus and WrRspStatus */
1929 static void amdgpu_ras_error_status_query(struct amdgpu_device *adev,
1930 struct ras_query_if *info)
1932 struct amdgpu_ras_block_object *block_obj;
1934 * Only two block need to query read/write
1935 * RspStatus at current state
1937 if ((info->head.block != AMDGPU_RAS_BLOCK__GFX) &&
1938 (info->head.block != AMDGPU_RAS_BLOCK__MMHUB))
1941 block_obj = amdgpu_ras_get_ras_block(adev,
1943 info->head.sub_block_index);
1945 if (!block_obj || !block_obj->hw_ops) {
1946 dev_dbg_once(adev->dev, "%s doesn't config RAS function\n",
1947 get_ras_block_str(&info->head));
1951 if (block_obj->hw_ops->query_ras_error_status)
1952 block_obj->hw_ops->query_ras_error_status(adev);
1956 static void amdgpu_ras_query_err_status(struct amdgpu_device *adev)
1958 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1959 struct ras_manager *obj;
1961 if (!adev->ras_enabled || !con)
1964 list_for_each_entry(obj, &con->head, node) {
1965 struct ras_query_if info = {
1969 amdgpu_ras_error_status_query(adev, &info);
1973 /* recovery begin */
1975 /* return 0 on success.
1976 * caller need free bps.
1978 static int amdgpu_ras_badpages_read(struct amdgpu_device *adev,
1979 struct ras_badpage **bps, unsigned int *count)
1981 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1982 struct ras_err_handler_data *data;
1984 int ret = 0, status;
1986 if (!con || !con->eh_data || !bps || !count)
1989 mutex_lock(&con->recovery_lock);
1990 data = con->eh_data;
1991 if (!data || data->count == 0) {
1997 *bps = kmalloc(sizeof(struct ras_badpage) * data->count, GFP_KERNEL);
2003 for (; i < data->count; i++) {
2004 (*bps)[i] = (struct ras_badpage){
2005 .bp = data->bps[i].retired_page,
2006 .size = AMDGPU_GPU_PAGE_SIZE,
2007 .flags = AMDGPU_RAS_RETIRE_PAGE_RESERVED,
2009 status = amdgpu_vram_mgr_query_page_status(&adev->mman.vram_mgr,
2010 data->bps[i].retired_page);
2011 if (status == -EBUSY)
2012 (*bps)[i].flags = AMDGPU_RAS_RETIRE_PAGE_PENDING;
2013 else if (status == -ENOENT)
2014 (*bps)[i].flags = AMDGPU_RAS_RETIRE_PAGE_FAULT;
2017 *count = data->count;
2019 mutex_unlock(&con->recovery_lock);
2023 static void amdgpu_ras_do_recovery(struct work_struct *work)
2025 struct amdgpu_ras *ras =
2026 container_of(work, struct amdgpu_ras, recovery_work);
2027 struct amdgpu_device *remote_adev = NULL;
2028 struct amdgpu_device *adev = ras->adev;
2029 struct list_head device_list, *device_list_handle = NULL;
2031 if (!ras->disable_ras_err_cnt_harvest) {
2032 struct amdgpu_hive_info *hive = amdgpu_get_xgmi_hive(adev);
2034 /* Build list of devices to query RAS related errors */
2035 if (hive && adev->gmc.xgmi.num_physical_nodes > 1) {
2036 device_list_handle = &hive->device_list;
2038 INIT_LIST_HEAD(&device_list);
2039 list_add_tail(&adev->gmc.xgmi.head, &device_list);
2040 device_list_handle = &device_list;
2043 list_for_each_entry(remote_adev,
2044 device_list_handle, gmc.xgmi.head) {
2045 amdgpu_ras_query_err_status(remote_adev);
2046 amdgpu_ras_log_on_err_counter(remote_adev);
2049 amdgpu_put_xgmi_hive(hive);
2052 if (amdgpu_device_should_recover_gpu(ras->adev)) {
2053 struct amdgpu_reset_context reset_context;
2054 memset(&reset_context, 0, sizeof(reset_context));
2056 reset_context.method = AMD_RESET_METHOD_NONE;
2057 reset_context.reset_req_dev = adev;
2059 /* Perform full reset in fatal error mode */
2060 if (!amdgpu_ras_is_poison_mode_supported(ras->adev))
2061 set_bit(AMDGPU_NEED_FULL_RESET, &reset_context.flags);
2063 clear_bit(AMDGPU_NEED_FULL_RESET, &reset_context.flags);
2065 if (ras->gpu_reset_flags & AMDGPU_RAS_GPU_RESET_MODE2_RESET) {
2066 ras->gpu_reset_flags &= ~AMDGPU_RAS_GPU_RESET_MODE2_RESET;
2067 reset_context.method = AMD_RESET_METHOD_MODE2;
2070 /* Fatal error occurs in poison mode, mode1 reset is used to
2073 if (ras->gpu_reset_flags & AMDGPU_RAS_GPU_RESET_MODE1_RESET) {
2074 ras->gpu_reset_flags &= ~AMDGPU_RAS_GPU_RESET_MODE1_RESET;
2075 set_bit(AMDGPU_NEED_FULL_RESET, &reset_context.flags);
2079 amdgpu_device_gpu_recover(ras->adev, NULL, &reset_context);
2081 atomic_set(&ras->in_recovery, 0);
2084 /* alloc/realloc bps array */
2085 static int amdgpu_ras_realloc_eh_data_space(struct amdgpu_device *adev,
2086 struct ras_err_handler_data *data, int pages)
2088 unsigned int old_space = data->count + data->space_left;
2089 unsigned int new_space = old_space + pages;
2090 unsigned int align_space = ALIGN(new_space, 512);
2091 void *bps = kmalloc(align_space * sizeof(*data->bps), GFP_KERNEL);
2098 memcpy(bps, data->bps,
2099 data->count * sizeof(*data->bps));
2104 data->space_left += align_space - old_space;
2108 /* it deal with vram only. */
2109 int amdgpu_ras_add_bad_pages(struct amdgpu_device *adev,
2110 struct eeprom_table_record *bps, int pages)
2112 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2113 struct ras_err_handler_data *data;
2117 if (!con || !con->eh_data || !bps || pages <= 0)
2120 mutex_lock(&con->recovery_lock);
2121 data = con->eh_data;
2125 for (i = 0; i < pages; i++) {
2126 if (amdgpu_ras_check_bad_page_unlock(con,
2127 bps[i].retired_page << AMDGPU_GPU_PAGE_SHIFT))
2130 if (!data->space_left &&
2131 amdgpu_ras_realloc_eh_data_space(adev, data, 256)) {
2136 amdgpu_vram_mgr_reserve_range(&adev->mman.vram_mgr,
2137 bps[i].retired_page << AMDGPU_GPU_PAGE_SHIFT,
2138 AMDGPU_GPU_PAGE_SIZE);
2140 memcpy(&data->bps[data->count], &bps[i], sizeof(*data->bps));
2145 mutex_unlock(&con->recovery_lock);
2151 * write error record array to eeprom, the function should be
2152 * protected by recovery_lock
2153 * new_cnt: new added UE count, excluding reserved bad pages, can be NULL
2155 int amdgpu_ras_save_bad_pages(struct amdgpu_device *adev,
2156 unsigned long *new_cnt)
2158 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2159 struct ras_err_handler_data *data;
2160 struct amdgpu_ras_eeprom_control *control;
2163 if (!con || !con->eh_data) {
2170 mutex_lock(&con->recovery_lock);
2171 control = &con->eeprom_control;
2172 data = con->eh_data;
2173 save_count = data->count - control->ras_num_recs;
2174 mutex_unlock(&con->recovery_lock);
2177 *new_cnt = save_count / adev->umc.retire_unit;
2179 /* only new entries are saved */
2180 if (save_count > 0) {
2181 if (amdgpu_ras_eeprom_append(control,
2182 &data->bps[control->ras_num_recs],
2184 dev_err(adev->dev, "Failed to save EEPROM table data!");
2188 dev_info(adev->dev, "Saved %d pages to EEPROM table.\n", save_count);
2195 * read error record array in eeprom and reserve enough space for
2196 * storing new bad pages
2198 static int amdgpu_ras_load_bad_pages(struct amdgpu_device *adev)
2200 struct amdgpu_ras_eeprom_control *control =
2201 &adev->psp.ras_context.ras->eeprom_control;
2202 struct eeprom_table_record *bps;
2205 /* no bad page record, skip eeprom access */
2206 if (control->ras_num_recs == 0 || amdgpu_bad_page_threshold == 0)
2209 bps = kcalloc(control->ras_num_recs, sizeof(*bps), GFP_KERNEL);
2213 ret = amdgpu_ras_eeprom_read(control, bps, control->ras_num_recs);
2215 dev_err(adev->dev, "Failed to load EEPROM table records!");
2217 ret = amdgpu_ras_add_bad_pages(adev, bps, control->ras_num_recs);
2223 static bool amdgpu_ras_check_bad_page_unlock(struct amdgpu_ras *con,
2226 struct ras_err_handler_data *data = con->eh_data;
2229 addr >>= AMDGPU_GPU_PAGE_SHIFT;
2230 for (i = 0; i < data->count; i++)
2231 if (addr == data->bps[i].retired_page)
2238 * check if an address belongs to bad page
2240 * Note: this check is only for umc block
2242 static bool amdgpu_ras_check_bad_page(struct amdgpu_device *adev,
2245 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2248 if (!con || !con->eh_data)
2251 mutex_lock(&con->recovery_lock);
2252 ret = amdgpu_ras_check_bad_page_unlock(con, addr);
2253 mutex_unlock(&con->recovery_lock);
2257 static void amdgpu_ras_validate_threshold(struct amdgpu_device *adev,
2260 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2263 * Justification of value bad_page_cnt_threshold in ras structure
2265 * Generally, 0 <= amdgpu_bad_page_threshold <= max record length
2266 * in eeprom or amdgpu_bad_page_threshold == -2, introduce two
2267 * scenarios accordingly.
2269 * Bad page retirement enablement:
2270 * - If amdgpu_bad_page_threshold = -2,
2271 * bad_page_cnt_threshold = typical value by formula.
2273 * - When the value from user is 0 < amdgpu_bad_page_threshold <
2274 * max record length in eeprom, use it directly.
2276 * Bad page retirement disablement:
2277 * - If amdgpu_bad_page_threshold = 0, bad page retirement
2278 * functionality is disabled, and bad_page_cnt_threshold will
2282 if (amdgpu_bad_page_threshold < 0) {
2283 u64 val = adev->gmc.mc_vram_size;
2285 do_div(val, RAS_BAD_PAGE_COVER);
2286 con->bad_page_cnt_threshold = min(lower_32_bits(val),
2289 con->bad_page_cnt_threshold = min_t(int, max_count,
2290 amdgpu_bad_page_threshold);
2294 int amdgpu_ras_recovery_init(struct amdgpu_device *adev)
2296 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2297 struct ras_err_handler_data **data;
2298 u32 max_eeprom_records_count = 0;
2299 bool exc_err_limit = false;
2302 if (!con || amdgpu_sriov_vf(adev))
2305 /* Allow access to RAS EEPROM via debugfs, when the ASIC
2306 * supports RAS and debugfs is enabled, but when
2307 * adev->ras_enabled is unset, i.e. when "ras_enable"
2308 * module parameter is set to 0.
2312 if (!adev->ras_enabled)
2315 data = &con->eh_data;
2316 *data = kmalloc(sizeof(**data), GFP_KERNEL | __GFP_ZERO);
2322 mutex_init(&con->recovery_lock);
2323 INIT_WORK(&con->recovery_work, amdgpu_ras_do_recovery);
2324 atomic_set(&con->in_recovery, 0);
2325 con->eeprom_control.bad_channel_bitmap = 0;
2327 max_eeprom_records_count = amdgpu_ras_eeprom_max_record_count(&con->eeprom_control);
2328 amdgpu_ras_validate_threshold(adev, max_eeprom_records_count);
2330 /* Todo: During test the SMU might fail to read the eeprom through I2C
2331 * when the GPU is pending on XGMI reset during probe time
2332 * (Mostly after second bus reset), skip it now
2334 if (adev->gmc.xgmi.pending_reset)
2336 ret = amdgpu_ras_eeprom_init(&con->eeprom_control, &exc_err_limit);
2338 * This calling fails when exc_err_limit is true or
2341 if (exc_err_limit || ret)
2344 if (con->eeprom_control.ras_num_recs) {
2345 ret = amdgpu_ras_load_bad_pages(adev);
2349 amdgpu_dpm_send_hbm_bad_pages_num(adev, con->eeprom_control.ras_num_recs);
2351 if (con->update_channel_flag == true) {
2352 amdgpu_dpm_send_hbm_bad_channel_flag(adev, con->eeprom_control.bad_channel_bitmap);
2353 con->update_channel_flag = false;
2357 #ifdef CONFIG_X86_MCE_AMD
2358 if ((adev->asic_type == CHIP_ALDEBARAN) &&
2359 (adev->gmc.xgmi.connected_to_cpu))
2360 amdgpu_register_bad_pages_mca_notifier(adev);
2365 kfree((*data)->bps);
2367 con->eh_data = NULL;
2369 dev_warn(adev->dev, "Failed to initialize ras recovery! (%d)\n", ret);
2372 * Except error threshold exceeding case, other failure cases in this
2373 * function would not fail amdgpu driver init.
2383 static int amdgpu_ras_recovery_fini(struct amdgpu_device *adev)
2385 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2386 struct ras_err_handler_data *data = con->eh_data;
2388 /* recovery_init failed to init it, fini is useless */
2392 cancel_work_sync(&con->recovery_work);
2394 mutex_lock(&con->recovery_lock);
2395 con->eh_data = NULL;
2398 mutex_unlock(&con->recovery_lock);
2404 static bool amdgpu_ras_asic_supported(struct amdgpu_device *adev)
2406 if (amdgpu_sriov_vf(adev)) {
2407 switch (adev->ip_versions[MP0_HWIP][0]) {
2408 case IP_VERSION(13, 0, 2):
2415 if (adev->asic_type == CHIP_IP_DISCOVERY) {
2416 switch (adev->ip_versions[MP0_HWIP][0]) {
2417 case IP_VERSION(13, 0, 0):
2418 case IP_VERSION(13, 0, 6):
2419 case IP_VERSION(13, 0, 10):
2426 return adev->asic_type == CHIP_VEGA10 ||
2427 adev->asic_type == CHIP_VEGA20 ||
2428 adev->asic_type == CHIP_ARCTURUS ||
2429 adev->asic_type == CHIP_ALDEBARAN ||
2430 adev->asic_type == CHIP_SIENNA_CICHLID;
2434 * this is workaround for vega20 workstation sku,
2435 * force enable gfx ras, ignore vbios gfx ras flag
2436 * due to GC EDC can not write
2438 static void amdgpu_ras_get_quirks(struct amdgpu_device *adev)
2440 struct atom_context *ctx = adev->mode_info.atom_context;
2445 if (strnstr(ctx->vbios_pn, "D16406",
2446 sizeof(ctx->vbios_pn)) ||
2447 strnstr(ctx->vbios_pn, "D36002",
2448 sizeof(ctx->vbios_pn)))
2449 adev->ras_hw_enabled |= (1 << AMDGPU_RAS_BLOCK__GFX);
2453 * check hardware's ras ability which will be saved in hw_supported.
2454 * if hardware does not support ras, we can skip some ras initializtion and
2455 * forbid some ras operations from IP.
2456 * if software itself, say boot parameter, limit the ras ability. We still
2457 * need allow IP do some limited operations, like disable. In such case,
2458 * we have to initialize ras as normal. but need check if operation is
2459 * allowed or not in each function.
2461 static void amdgpu_ras_check_supported(struct amdgpu_device *adev)
2463 adev->ras_hw_enabled = adev->ras_enabled = 0;
2465 if (!amdgpu_ras_asic_supported(adev))
2468 if (!adev->gmc.xgmi.connected_to_cpu && !adev->gmc.is_app_apu) {
2469 if (amdgpu_atomfirmware_mem_ecc_supported(adev)) {
2470 dev_info(adev->dev, "MEM ECC is active.\n");
2471 adev->ras_hw_enabled |= (1 << AMDGPU_RAS_BLOCK__UMC |
2472 1 << AMDGPU_RAS_BLOCK__DF);
2474 dev_info(adev->dev, "MEM ECC is not presented.\n");
2477 if (amdgpu_atomfirmware_sram_ecc_supported(adev)) {
2478 dev_info(adev->dev, "SRAM ECC is active.\n");
2479 if (!amdgpu_sriov_vf(adev))
2480 adev->ras_hw_enabled |= ~(1 << AMDGPU_RAS_BLOCK__UMC |
2481 1 << AMDGPU_RAS_BLOCK__DF);
2483 adev->ras_hw_enabled |= (1 << AMDGPU_RAS_BLOCK__PCIE_BIF |
2484 1 << AMDGPU_RAS_BLOCK__SDMA |
2485 1 << AMDGPU_RAS_BLOCK__GFX);
2487 /* VCN/JPEG RAS can be supported on both bare metal and
2490 if (adev->ip_versions[VCN_HWIP][0] == IP_VERSION(2, 6, 0) ||
2491 adev->ip_versions[VCN_HWIP][0] == IP_VERSION(4, 0, 0))
2492 adev->ras_hw_enabled |= (1 << AMDGPU_RAS_BLOCK__VCN |
2493 1 << AMDGPU_RAS_BLOCK__JPEG);
2495 adev->ras_hw_enabled &= ~(1 << AMDGPU_RAS_BLOCK__VCN |
2496 1 << AMDGPU_RAS_BLOCK__JPEG);
2499 * XGMI RAS is not supported if xgmi num physical nodes
2502 if (!adev->gmc.xgmi.num_physical_nodes)
2503 adev->ras_hw_enabled &= ~(1 << AMDGPU_RAS_BLOCK__XGMI_WAFL);
2505 dev_info(adev->dev, "SRAM ECC is not presented.\n");
2508 /* driver only manages a few IP blocks RAS feature
2509 * when GPU is connected cpu through XGMI */
2510 adev->ras_hw_enabled |= (1 << AMDGPU_RAS_BLOCK__GFX |
2511 1 << AMDGPU_RAS_BLOCK__SDMA |
2512 1 << AMDGPU_RAS_BLOCK__MMHUB);
2515 amdgpu_ras_get_quirks(adev);
2517 /* hw_supported needs to be aligned with RAS block mask. */
2518 adev->ras_hw_enabled &= AMDGPU_RAS_BLOCK_MASK;
2522 * Disable ras feature for aqua vanjaram
2523 * by default on apu platform.
2525 if (adev->ip_versions[MP0_HWIP][0] == IP_VERSION(13, 0, 6) &&
2526 adev->gmc.is_app_apu)
2527 adev->ras_enabled = amdgpu_ras_enable != 1 ? 0 :
2528 adev->ras_hw_enabled & amdgpu_ras_mask;
2530 adev->ras_enabled = amdgpu_ras_enable == 0 ? 0 :
2531 adev->ras_hw_enabled & amdgpu_ras_mask;
2534 static void amdgpu_ras_counte_dw(struct work_struct *work)
2536 struct amdgpu_ras *con = container_of(work, struct amdgpu_ras,
2537 ras_counte_delay_work.work);
2538 struct amdgpu_device *adev = con->adev;
2539 struct drm_device *dev = adev_to_drm(adev);
2540 unsigned long ce_count, ue_count;
2543 res = pm_runtime_get_sync(dev->dev);
2547 /* Cache new values.
2549 if (amdgpu_ras_query_error_count(adev, &ce_count, &ue_count, NULL) == 0) {
2550 atomic_set(&con->ras_ce_count, ce_count);
2551 atomic_set(&con->ras_ue_count, ue_count);
2554 pm_runtime_mark_last_busy(dev->dev);
2556 pm_runtime_put_autosuspend(dev->dev);
2559 static void amdgpu_ras_query_poison_mode(struct amdgpu_device *adev)
2561 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2562 bool df_poison, umc_poison;
2564 /* poison setting is useless on SRIOV guest */
2565 if (amdgpu_sriov_vf(adev) || !con)
2568 /* Init poison supported flag, the default value is false */
2569 if (adev->gmc.xgmi.connected_to_cpu) {
2570 /* enabled by default when GPU is connected to CPU */
2571 con->poison_supported = true;
2572 } else if (adev->df.funcs &&
2573 adev->df.funcs->query_ras_poison_mode &&
2575 adev->umc.ras->query_ras_poison_mode) {
2577 adev->df.funcs->query_ras_poison_mode(adev);
2579 adev->umc.ras->query_ras_poison_mode(adev);
2581 /* Only poison is set in both DF and UMC, we can support it */
2582 if (df_poison && umc_poison)
2583 con->poison_supported = true;
2584 else if (df_poison != umc_poison)
2586 "Poison setting is inconsistent in DF/UMC(%d:%d)!\n",
2587 df_poison, umc_poison);
2591 int amdgpu_ras_init(struct amdgpu_device *adev)
2593 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2599 con = kmalloc(sizeof(struct amdgpu_ras) +
2600 sizeof(struct ras_manager) * AMDGPU_RAS_BLOCK_COUNT +
2601 sizeof(struct ras_manager) * AMDGPU_RAS_MCA_BLOCK_COUNT,
2602 GFP_KERNEL|__GFP_ZERO);
2607 INIT_DELAYED_WORK(&con->ras_counte_delay_work, amdgpu_ras_counte_dw);
2608 atomic_set(&con->ras_ce_count, 0);
2609 atomic_set(&con->ras_ue_count, 0);
2611 con->objs = (struct ras_manager *)(con + 1);
2613 amdgpu_ras_set_context(adev, con);
2615 amdgpu_ras_check_supported(adev);
2617 if (!adev->ras_enabled || adev->asic_type == CHIP_VEGA10) {
2618 /* set gfx block ras context feature for VEGA20 Gaming
2619 * send ras disable cmd to ras ta during ras late init.
2621 if (!adev->ras_enabled && adev->asic_type == CHIP_VEGA20) {
2622 con->features |= BIT(AMDGPU_RAS_BLOCK__GFX);
2631 con->update_channel_flag = false;
2633 INIT_LIST_HEAD(&con->head);
2634 /* Might need get this flag from vbios. */
2635 con->flags = RAS_DEFAULT_FLAGS;
2637 /* initialize nbio ras function ahead of any other
2638 * ras functions so hardware fatal error interrupt
2639 * can be enabled as early as possible */
2640 switch (adev->ip_versions[NBIO_HWIP][0]) {
2641 case IP_VERSION(7, 4, 0):
2642 case IP_VERSION(7, 4, 1):
2643 case IP_VERSION(7, 4, 4):
2644 if (!adev->gmc.xgmi.connected_to_cpu)
2645 adev->nbio.ras = &nbio_v7_4_ras;
2647 case IP_VERSION(4, 3, 0):
2648 if (adev->ras_hw_enabled & (1 << AMDGPU_RAS_BLOCK__DF))
2649 /* unlike other generation of nbio ras,
2650 * nbio v4_3 only support fatal error interrupt
2651 * to inform software that DF is freezed due to
2652 * system fatal error event. driver should not
2653 * enable nbio ras in such case. Instead,
2655 adev->nbio.ras = &nbio_v4_3_ras;
2658 /* nbio ras is not available */
2662 /* nbio ras block needs to be enabled ahead of other ras blocks
2663 * to handle fatal error */
2664 r = amdgpu_nbio_ras_sw_init(adev);
2668 if (adev->nbio.ras &&
2669 adev->nbio.ras->init_ras_controller_interrupt) {
2670 r = adev->nbio.ras->init_ras_controller_interrupt(adev);
2675 if (adev->nbio.ras &&
2676 adev->nbio.ras->init_ras_err_event_athub_interrupt) {
2677 r = adev->nbio.ras->init_ras_err_event_athub_interrupt(adev);
2682 amdgpu_ras_query_poison_mode(adev);
2684 if (amdgpu_ras_fs_init(adev)) {
2689 dev_info(adev->dev, "RAS INFO: ras initialized successfully, "
2690 "hardware ability[%x] ras_mask[%x]\n",
2691 adev->ras_hw_enabled, adev->ras_enabled);
2695 amdgpu_ras_set_context(adev, NULL);
2701 int amdgpu_persistent_edc_harvesting_supported(struct amdgpu_device *adev)
2703 if (adev->gmc.xgmi.connected_to_cpu ||
2704 adev->gmc.is_app_apu)
2709 static int amdgpu_persistent_edc_harvesting(struct amdgpu_device *adev,
2710 struct ras_common_if *ras_block)
2712 struct ras_query_if info = {
2716 if (!amdgpu_persistent_edc_harvesting_supported(adev))
2719 if (amdgpu_ras_query_error_status(adev, &info) != 0)
2720 DRM_WARN("RAS init harvest failure");
2722 if (amdgpu_ras_reset_error_status(adev, ras_block->block) != 0)
2723 DRM_WARN("RAS init harvest reset failure");
2728 bool amdgpu_ras_is_poison_mode_supported(struct amdgpu_device *adev)
2730 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2735 return con->poison_supported;
2738 /* helper function to handle common stuff in ip late init phase */
2739 int amdgpu_ras_block_late_init(struct amdgpu_device *adev,
2740 struct ras_common_if *ras_block)
2742 struct amdgpu_ras_block_object *ras_obj = NULL;
2743 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2744 struct ras_query_if *query_info;
2745 unsigned long ue_count, ce_count;
2748 /* disable RAS feature per IP block if it is not supported */
2749 if (!amdgpu_ras_is_supported(adev, ras_block->block)) {
2750 amdgpu_ras_feature_enable_on_boot(adev, ras_block, 0);
2754 r = amdgpu_ras_feature_enable_on_boot(adev, ras_block, 1);
2756 if (adev->in_suspend || amdgpu_in_reset(adev)) {
2757 /* in resume phase, if fail to enable ras,
2758 * clean up all ras fs nodes, and disable ras */
2764 /* check for errors on warm reset edc persisant supported ASIC */
2765 amdgpu_persistent_edc_harvesting(adev, ras_block);
2767 /* in resume phase, no need to create ras fs node */
2768 if (adev->in_suspend || amdgpu_in_reset(adev))
2771 ras_obj = container_of(ras_block, struct amdgpu_ras_block_object, ras_comm);
2772 if (ras_obj->ras_cb || (ras_obj->hw_ops &&
2773 (ras_obj->hw_ops->query_poison_status ||
2774 ras_obj->hw_ops->handle_poison_consumption))) {
2775 r = amdgpu_ras_interrupt_add_handler(adev, ras_block);
2780 r = amdgpu_ras_sysfs_create(adev, ras_block);
2784 /* Those are the cached values at init.
2786 query_info = kzalloc(sizeof(struct ras_query_if), 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);
2800 if (ras_obj->ras_cb)
2801 amdgpu_ras_interrupt_remove_handler(adev, ras_block);
2803 amdgpu_ras_feature_enable(adev, ras_block, 0);
2807 static int amdgpu_ras_block_late_init_default(struct amdgpu_device *adev,
2808 struct ras_common_if *ras_block)
2810 return amdgpu_ras_block_late_init(adev, ras_block);
2813 /* helper function to remove ras fs node and interrupt handler */
2814 void amdgpu_ras_block_late_fini(struct amdgpu_device *adev,
2815 struct ras_common_if *ras_block)
2817 struct amdgpu_ras_block_object *ras_obj;
2821 amdgpu_ras_sysfs_remove(adev, ras_block);
2823 ras_obj = container_of(ras_block, struct amdgpu_ras_block_object, ras_comm);
2824 if (ras_obj->ras_cb)
2825 amdgpu_ras_interrupt_remove_handler(adev, ras_block);
2828 static void amdgpu_ras_block_late_fini_default(struct amdgpu_device *adev,
2829 struct ras_common_if *ras_block)
2831 return amdgpu_ras_block_late_fini(adev, ras_block);
2834 /* do some init work after IP late init as dependence.
2835 * and it runs in resume/gpu reset/booting up cases.
2837 void amdgpu_ras_resume(struct amdgpu_device *adev)
2839 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2840 struct ras_manager *obj, *tmp;
2842 if (!adev->ras_enabled || !con) {
2843 /* clean ras context for VEGA20 Gaming after send ras disable cmd */
2844 amdgpu_release_ras_context(adev);
2849 if (con->flags & AMDGPU_RAS_FLAG_INIT_BY_VBIOS) {
2850 /* Set up all other IPs which are not implemented. There is a
2851 * tricky thing that IP's actual ras error type should be
2852 * MULTI_UNCORRECTABLE, but as driver does not handle it, so
2853 * ERROR_NONE make sense anyway.
2855 amdgpu_ras_enable_all_features(adev, 1);
2857 /* We enable ras on all hw_supported block, but as boot
2858 * parameter might disable some of them and one or more IP has
2859 * not implemented yet. So we disable them on behalf.
2861 list_for_each_entry_safe(obj, tmp, &con->head, node) {
2862 if (!amdgpu_ras_is_supported(adev, obj->head.block)) {
2863 amdgpu_ras_feature_enable(adev, &obj->head, 0);
2864 /* there should be no any reference. */
2865 WARN_ON(alive_obj(obj));
2871 void amdgpu_ras_suspend(struct amdgpu_device *adev)
2873 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2875 if (!adev->ras_enabled || !con)
2878 amdgpu_ras_disable_all_features(adev, 0);
2879 /* Make sure all ras objects are disabled. */
2881 amdgpu_ras_disable_all_features(adev, 1);
2884 int amdgpu_ras_late_init(struct amdgpu_device *adev)
2886 struct amdgpu_ras_block_list *node, *tmp;
2887 struct amdgpu_ras_block_object *obj;
2890 /* Guest side doesn't need init ras feature */
2891 if (amdgpu_sriov_vf(adev))
2894 list_for_each_entry_safe(node, tmp, &adev->ras_list, node) {
2895 if (!node->ras_obj) {
2896 dev_warn(adev->dev, "Warning: abnormal ras list node.\n");
2900 obj = node->ras_obj;
2901 if (obj->ras_late_init) {
2902 r = obj->ras_late_init(adev, &obj->ras_comm);
2904 dev_err(adev->dev, "%s failed to execute ras_late_init! ret:%d\n",
2905 obj->ras_comm.name, r);
2909 amdgpu_ras_block_late_init_default(adev, &obj->ras_comm);
2915 /* do some fini work before IP fini as dependence */
2916 int amdgpu_ras_pre_fini(struct amdgpu_device *adev)
2918 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2920 if (!adev->ras_enabled || !con)
2924 /* Need disable ras on all IPs here before ip [hw/sw]fini */
2926 amdgpu_ras_disable_all_features(adev, 0);
2927 amdgpu_ras_recovery_fini(adev);
2931 int amdgpu_ras_fini(struct amdgpu_device *adev)
2933 struct amdgpu_ras_block_list *ras_node, *tmp;
2934 struct amdgpu_ras_block_object *obj = NULL;
2935 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2937 if (!adev->ras_enabled || !con)
2940 list_for_each_entry_safe(ras_node, tmp, &adev->ras_list, node) {
2941 if (ras_node->ras_obj) {
2942 obj = ras_node->ras_obj;
2943 if (amdgpu_ras_is_supported(adev, obj->ras_comm.block) &&
2945 obj->ras_fini(adev, &obj->ras_comm);
2947 amdgpu_ras_block_late_fini_default(adev, &obj->ras_comm);
2950 /* Clear ras blocks from ras_list and free ras block list node */
2951 list_del(&ras_node->node);
2955 amdgpu_ras_fs_fini(adev);
2956 amdgpu_ras_interrupt_remove_all(adev);
2958 WARN(con->features, "Feature mask is not cleared");
2961 amdgpu_ras_disable_all_features(adev, 1);
2963 cancel_delayed_work_sync(&con->ras_counte_delay_work);
2965 amdgpu_ras_set_context(adev, NULL);
2971 void amdgpu_ras_global_ras_isr(struct amdgpu_device *adev)
2973 amdgpu_ras_check_supported(adev);
2974 if (!adev->ras_hw_enabled)
2977 if (atomic_cmpxchg(&amdgpu_ras_in_intr, 0, 1) == 0) {
2978 struct amdgpu_ras *ras = amdgpu_ras_get_context(adev);
2980 dev_info(adev->dev, "uncorrectable hardware error"
2981 "(ERREVENT_ATHUB_INTERRUPT) detected!\n");
2983 ras->gpu_reset_flags |= AMDGPU_RAS_GPU_RESET_MODE1_RESET;
2984 amdgpu_ras_reset_gpu(adev);
2988 bool amdgpu_ras_need_emergency_restart(struct amdgpu_device *adev)
2990 if (adev->asic_type == CHIP_VEGA20 &&
2991 adev->pm.fw_version <= 0x283400) {
2992 return !(amdgpu_asic_reset_method(adev) == AMD_RESET_METHOD_BACO) &&
2993 amdgpu_ras_intr_triggered();
2999 void amdgpu_release_ras_context(struct amdgpu_device *adev)
3001 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
3006 if (!adev->ras_enabled && con->features & BIT(AMDGPU_RAS_BLOCK__GFX)) {
3007 con->features &= ~BIT(AMDGPU_RAS_BLOCK__GFX);
3008 amdgpu_ras_set_context(adev, NULL);
3013 #ifdef CONFIG_X86_MCE_AMD
3014 static struct amdgpu_device *find_adev(uint32_t node_id)
3017 struct amdgpu_device *adev = NULL;
3019 for (i = 0; i < mce_adev_list.num_gpu; i++) {
3020 adev = mce_adev_list.devs[i];
3022 if (adev && adev->gmc.xgmi.connected_to_cpu &&
3023 adev->gmc.xgmi.physical_node_id == node_id)
3031 #define GET_MCA_IPID_GPUID(m) (((m) >> 44) & 0xF)
3032 #define GET_UMC_INST(m) (((m) >> 21) & 0x7)
3033 #define GET_CHAN_INDEX(m) ((((m) >> 12) & 0x3) | (((m) >> 18) & 0x4))
3034 #define GPU_ID_OFFSET 8
3036 static int amdgpu_bad_page_notifier(struct notifier_block *nb,
3037 unsigned long val, void *data)
3039 struct mce *m = (struct mce *)data;
3040 struct amdgpu_device *adev = NULL;
3041 uint32_t gpu_id = 0;
3042 uint32_t umc_inst = 0, ch_inst = 0;
3045 * If the error was generated in UMC_V2, which belongs to GPU UMCs,
3046 * and error occurred in DramECC (Extended error code = 0) then only
3047 * process the error, else bail out.
3049 if (!m || !((smca_get_bank_type(m->extcpu, m->bank) == SMCA_UMC_V2) &&
3050 (XEC(m->status, 0x3f) == 0x0)))
3054 * If it is correctable error, return.
3056 if (mce_is_correctable(m))
3060 * GPU Id is offset by GPU_ID_OFFSET in MCA_IPID_UMC register.
3062 gpu_id = GET_MCA_IPID_GPUID(m->ipid) - GPU_ID_OFFSET;
3064 adev = find_adev(gpu_id);
3066 DRM_WARN("%s: Unable to find adev for gpu_id: %d\n", __func__,
3072 * If it is uncorrectable error, then find out UMC instance and
3075 umc_inst = GET_UMC_INST(m->ipid);
3076 ch_inst = GET_CHAN_INDEX(m->ipid);
3078 dev_info(adev->dev, "Uncorrectable error detected in UMC inst: %d, chan_idx: %d",
3081 if (!amdgpu_umc_page_retirement_mca(adev, m->addr, ch_inst, umc_inst))
3087 static struct notifier_block amdgpu_bad_page_nb = {
3088 .notifier_call = amdgpu_bad_page_notifier,
3089 .priority = MCE_PRIO_UC,
3092 static void amdgpu_register_bad_pages_mca_notifier(struct amdgpu_device *adev)
3095 * Add the adev to the mce_adev_list.
3096 * During mode2 reset, amdgpu device is temporarily
3097 * removed from the mgpu_info list which can cause
3098 * page retirement to fail.
3099 * Use this list instead of mgpu_info to find the amdgpu
3100 * device on which the UMC error was reported.
3102 mce_adev_list.devs[mce_adev_list.num_gpu++] = adev;
3105 * Register the x86 notifier only once
3106 * with MCE subsystem.
3108 if (notifier_registered == false) {
3109 mce_register_decode_chain(&amdgpu_bad_page_nb);
3110 notifier_registered = true;
3115 struct amdgpu_ras *amdgpu_ras_get_context(struct amdgpu_device *adev)
3120 return adev->psp.ras_context.ras;
3123 int amdgpu_ras_set_context(struct amdgpu_device *adev, struct amdgpu_ras *ras_con)
3128 adev->psp.ras_context.ras = ras_con;
3132 /* check if ras is supported on block, say, sdma, gfx */
3133 int amdgpu_ras_is_supported(struct amdgpu_device *adev,
3137 struct amdgpu_ras *ras = amdgpu_ras_get_context(adev);
3139 if (block >= AMDGPU_RAS_BLOCK_COUNT)
3142 ret = ras && (adev->ras_enabled & (1 << block));
3144 /* For the special asic with mem ecc enabled but sram ecc
3145 * not enabled, even if the ras block is not supported on
3146 * .ras_enabled, if the asic supports poison mode and the
3147 * ras block has ras configuration, it can be considered
3148 * that the ras block supports ras function.
3151 amdgpu_ras_is_poison_mode_supported(adev) &&
3152 amdgpu_ras_get_ras_block(adev, block, 0))
3158 int amdgpu_ras_reset_gpu(struct amdgpu_device *adev)
3160 struct amdgpu_ras *ras = amdgpu_ras_get_context(adev);
3162 if (atomic_cmpxchg(&ras->in_recovery, 0, 1) == 0)
3163 amdgpu_reset_domain_schedule(ras->adev->reset_domain, &ras->recovery_work);
3168 /* Register each ip ras block into amdgpu ras */
3169 int amdgpu_ras_register_ras_block(struct amdgpu_device *adev,
3170 struct amdgpu_ras_block_object *ras_block_obj)
3172 struct amdgpu_ras_block_list *ras_node;
3173 if (!adev || !ras_block_obj)
3176 ras_node = kzalloc(sizeof(*ras_node), GFP_KERNEL);
3180 INIT_LIST_HEAD(&ras_node->node);
3181 ras_node->ras_obj = ras_block_obj;
3182 list_add_tail(&ras_node->node, &adev->ras_list);
3187 void amdgpu_ras_get_error_type_name(uint32_t err_type, char *err_type_name)
3193 case AMDGPU_RAS_ERROR__SINGLE_CORRECTABLE:
3194 sprintf(err_type_name, "correctable");
3196 case AMDGPU_RAS_ERROR__MULTI_UNCORRECTABLE:
3197 sprintf(err_type_name, "uncorrectable");
3200 sprintf(err_type_name, "unknown");
3205 bool amdgpu_ras_inst_get_memory_id_field(struct amdgpu_device *adev,
3206 const struct amdgpu_ras_err_status_reg_entry *reg_entry,
3208 uint32_t *memory_id)
3210 uint32_t err_status_lo_data, err_status_lo_offset;
3215 err_status_lo_offset =
3216 AMDGPU_RAS_REG_ENTRY_OFFSET(reg_entry->hwip, instance,
3217 reg_entry->seg_lo, reg_entry->reg_lo);
3218 err_status_lo_data = RREG32(err_status_lo_offset);
3220 if ((reg_entry->flags & AMDGPU_RAS_ERR_STATUS_VALID) &&
3221 !REG_GET_FIELD(err_status_lo_data, ERR_STATUS_LO, ERR_STATUS_VALID_FLAG))
3224 *memory_id = REG_GET_FIELD(err_status_lo_data, ERR_STATUS_LO, MEMORY_ID);
3229 bool amdgpu_ras_inst_get_err_cnt_field(struct amdgpu_device *adev,
3230 const struct amdgpu_ras_err_status_reg_entry *reg_entry,
3232 unsigned long *err_cnt)
3234 uint32_t err_status_hi_data, err_status_hi_offset;
3239 err_status_hi_offset =
3240 AMDGPU_RAS_REG_ENTRY_OFFSET(reg_entry->hwip, instance,
3241 reg_entry->seg_hi, reg_entry->reg_hi);
3242 err_status_hi_data = RREG32(err_status_hi_offset);
3244 if ((reg_entry->flags & AMDGPU_RAS_ERR_INFO_VALID) &&
3245 !REG_GET_FIELD(err_status_hi_data, ERR_STATUS_HI, ERR_INFO_VALID_FLAG))
3246 /* keep the check here in case we need to refer to the result later */
3247 dev_dbg(adev->dev, "Invalid err_info field\n");
3249 /* read err count */
3250 *err_cnt = REG_GET_FIELD(err_status_hi_data, ERR_STATUS, ERR_CNT);
3255 void amdgpu_ras_inst_query_ras_error_count(struct amdgpu_device *adev,
3256 const struct amdgpu_ras_err_status_reg_entry *reg_list,
3257 uint32_t reg_list_size,
3258 const struct amdgpu_ras_memory_id_entry *mem_list,
3259 uint32_t mem_list_size,
3262 unsigned long *err_count)
3265 unsigned long err_cnt;
3266 char err_type_name[16];
3269 for (i = 0; i < reg_list_size; i++) {
3270 /* query memory_id from err_status_lo */
3271 if (!amdgpu_ras_inst_get_memory_id_field(adev, ®_list[i],
3272 instance, &memory_id))
3275 /* query err_cnt from err_status_hi */
3276 if (!amdgpu_ras_inst_get_err_cnt_field(adev, ®_list[i],
3277 instance, &err_cnt) ||
3281 *err_count += err_cnt;
3283 /* log the errors */
3284 amdgpu_ras_get_error_type_name(err_type, err_type_name);
3286 /* memory_list is not supported */
3288 "%ld %s hardware errors detected in %s, instance: %d, memory_id: %d\n",
3289 err_cnt, err_type_name,
3290 reg_list[i].block_name,
3291 instance, memory_id);
3293 for (j = 0; j < mem_list_size; j++) {
3294 if (memory_id == mem_list[j].memory_id) {
3296 "%ld %s hardware errors detected in %s, instance: %d, memory block: %s\n",
3297 err_cnt, err_type_name,
3298 reg_list[i].block_name,
3299 instance, mem_list[j].name);
3307 void amdgpu_ras_inst_reset_ras_error_count(struct amdgpu_device *adev,
3308 const struct amdgpu_ras_err_status_reg_entry *reg_list,
3309 uint32_t reg_list_size,
3312 uint32_t err_status_lo_offset, err_status_hi_offset;
3315 for (i = 0; i < reg_list_size; i++) {
3316 err_status_lo_offset =
3317 AMDGPU_RAS_REG_ENTRY_OFFSET(reg_list[i].hwip, instance,
3318 reg_list[i].seg_lo, reg_list[i].reg_lo);
3319 err_status_hi_offset =
3320 AMDGPU_RAS_REG_ENTRY_OFFSET(reg_list[i].hwip, instance,
3321 reg_list[i].seg_hi, reg_list[i].reg_hi);
3322 WREG32(err_status_lo_offset, 0);
3323 WREG32(err_status_hi_offset, 0);