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>
32 #include "amdgpu_ras.h"
33 #include "amdgpu_atomfirmware.h"
34 #include "amdgpu_xgmi.h"
35 #include "ivsrcid/nbio/irqsrcs_nbif_7_4.h"
37 static const char *RAS_FS_NAME = "ras";
39 const char *ras_error_string[] = {
43 "multi_uncorrectable",
47 const char *ras_block_string[] = {
64 #define ras_err_str(i) (ras_error_string[ffs(i)])
65 #define ras_block_str(i) (ras_block_string[i])
67 #define RAS_DEFAULT_FLAGS (AMDGPU_RAS_FLAG_INIT_BY_VBIOS)
69 /* inject address is 52 bits */
70 #define RAS_UMC_INJECT_ADDR_LIMIT (0x1ULL << 52)
72 /* typical ECC bad page rate(1 bad page per 100MB VRAM) */
73 #define RAS_BAD_PAGE_RATE (100 * 1024 * 1024ULL)
75 enum amdgpu_ras_retire_page_reservation {
76 AMDGPU_RAS_RETIRE_PAGE_RESERVED,
77 AMDGPU_RAS_RETIRE_PAGE_PENDING,
78 AMDGPU_RAS_RETIRE_PAGE_FAULT,
81 atomic_t amdgpu_ras_in_intr = ATOMIC_INIT(0);
83 static bool amdgpu_ras_check_bad_page(struct amdgpu_device *adev,
86 void amdgpu_ras_set_error_query_ready(struct amdgpu_device *adev, bool ready)
88 if (adev && amdgpu_ras_get_context(adev))
89 amdgpu_ras_get_context(adev)->error_query_ready = ready;
92 static bool amdgpu_ras_get_error_query_ready(struct amdgpu_device *adev)
94 if (adev && amdgpu_ras_get_context(adev))
95 return amdgpu_ras_get_context(adev)->error_query_ready;
100 static ssize_t amdgpu_ras_debugfs_read(struct file *f, char __user *buf,
101 size_t size, loff_t *pos)
103 struct ras_manager *obj = (struct ras_manager *)file_inode(f)->i_private;
104 struct ras_query_if info = {
110 if (amdgpu_ras_error_query(obj->adev, &info))
113 s = snprintf(val, sizeof(val), "%s: %lu\n%s: %lu\n",
115 "ce", info.ce_count);
120 s = min_t(u64, s, size);
123 if (copy_to_user(buf, &val[*pos], s))
131 static const struct file_operations amdgpu_ras_debugfs_ops = {
132 .owner = THIS_MODULE,
133 .read = amdgpu_ras_debugfs_read,
135 .llseek = default_llseek
138 static int amdgpu_ras_find_block_id_by_name(const char *name, int *block_id)
142 for (i = 0; i < ARRAY_SIZE(ras_block_string); i++) {
144 if (strcmp(name, ras_block_str(i)) == 0)
150 static int amdgpu_ras_debugfs_ctrl_parse_data(struct file *f,
151 const char __user *buf, size_t size,
152 loff_t *pos, struct ras_debug_if *data)
154 ssize_t s = min_t(u64, 64, size);
167 memset(str, 0, sizeof(str));
168 memset(data, 0, sizeof(*data));
170 if (copy_from_user(str, buf, s))
173 if (sscanf(str, "disable %32s", block_name) == 1)
175 else if (sscanf(str, "enable %32s %8s", block_name, err) == 2)
177 else if (sscanf(str, "inject %32s %8s", block_name, err) == 2)
179 else if (str[0] && str[1] && str[2] && str[3])
180 /* ascii string, but commands are not matched. */
184 if (amdgpu_ras_find_block_id_by_name(block_name, &block_id))
187 data->head.block = block_id;
188 /* only ue and ce errors are supported */
189 if (!memcmp("ue", err, 2))
190 data->head.type = AMDGPU_RAS_ERROR__MULTI_UNCORRECTABLE;
191 else if (!memcmp("ce", err, 2))
192 data->head.type = AMDGPU_RAS_ERROR__SINGLE_CORRECTABLE;
199 if (sscanf(str, "%*s %*s %*s %u %llu %llu",
200 &sub_block, &address, &value) != 3)
201 if (sscanf(str, "%*s %*s %*s 0x%x 0x%llx 0x%llx",
202 &sub_block, &address, &value) != 3)
204 data->head.sub_block_index = sub_block;
205 data->inject.address = address;
206 data->inject.value = value;
209 if (size < sizeof(*data))
212 if (copy_from_user(data, buf, sizeof(*data)))
220 * DOC: AMDGPU RAS debugfs control interface
222 * It accepts struct ras_debug_if who has two members.
224 * First member: ras_debug_if::head or ras_debug_if::inject.
226 * head is used to indicate which IP block will be under control.
228 * head has four members, they are block, type, sub_block_index, name.
229 * block: which IP will be under control.
230 * type: what kind of error will be enabled/disabled/injected.
231 * sub_block_index: some IPs have subcomponets. say, GFX, sDMA.
232 * name: the name of IP.
234 * inject has two more members than head, they are address, value.
235 * As their names indicate, inject operation will write the
236 * value to the address.
238 * The second member: struct ras_debug_if::op.
239 * It has three kinds of operations.
241 * - 0: disable RAS on the block. Take ::head as its data.
242 * - 1: enable RAS on the block. Take ::head as its data.
243 * - 2: inject errors on the block. Take ::inject as its data.
245 * How to use the interface?
249 * Copy the struct ras_debug_if in your codes and initialize it.
250 * Write the struct to the control node.
254 * .. code-block:: bash
256 * echo op block [error [sub_block address value]] > .../ras/ras_ctrl
260 * op: disable, enable, inject
261 * disable: only block is needed
262 * enable: block and error are needed
263 * inject: error, address, value are needed
264 * block: umc, sdma, gfx, .........
265 * see ras_block_string[] for details
267 * ue: multi_uncorrectable
268 * ce: single_correctable
270 * sub block index, pass 0 if there is no sub block
272 * here are some examples for bash commands:
274 * .. code-block:: bash
276 * echo inject umc ue 0x0 0x0 0x0 > /sys/kernel/debug/dri/0/ras/ras_ctrl
277 * echo inject umc ce 0 0 0 > /sys/kernel/debug/dri/0/ras/ras_ctrl
278 * echo disable umc > /sys/kernel/debug/dri/0/ras/ras_ctrl
280 * How to check the result?
282 * For disable/enable, please check ras features at
283 * /sys/class/drm/card[0/1/2...]/device/ras/features
285 * For inject, please check corresponding err count at
286 * /sys/class/drm/card[0/1/2...]/device/ras/[gfx/sdma/...]_err_count
289 * Operations are only allowed on blocks which are supported.
290 * Please check ras mask at /sys/module/amdgpu/parameters/ras_mask
291 * to see which blocks support RAS on a particular asic.
294 static ssize_t amdgpu_ras_debugfs_ctrl_write(struct file *f, const char __user *buf,
295 size_t size, loff_t *pos)
297 struct amdgpu_device *adev = (struct amdgpu_device *)file_inode(f)->i_private;
298 struct ras_debug_if data;
301 if (!amdgpu_ras_get_error_query_ready(adev)) {
302 dev_warn(adev->dev, "RAS WARN: error injection "
303 "currently inaccessible\n");
307 ret = amdgpu_ras_debugfs_ctrl_parse_data(f, buf, size, pos, &data);
311 if (!amdgpu_ras_is_supported(adev, data.head.block))
316 ret = amdgpu_ras_feature_enable(adev, &data.head, 0);
319 ret = amdgpu_ras_feature_enable(adev, &data.head, 1);
322 if ((data.inject.address >= adev->gmc.mc_vram_size) ||
323 (data.inject.address >= RAS_UMC_INJECT_ADDR_LIMIT)) {
324 dev_warn(adev->dev, "RAS WARN: input address "
325 "0x%llx is invalid.",
326 data.inject.address);
331 /* umc ce/ue error injection for a bad page is not allowed */
332 if ((data.head.block == AMDGPU_RAS_BLOCK__UMC) &&
333 amdgpu_ras_check_bad_page(adev, data.inject.address)) {
334 dev_warn(adev->dev, "RAS WARN: 0x%llx has been marked "
335 "as bad before error injection!\n",
336 data.inject.address);
340 /* data.inject.address is offset instead of absolute gpu address */
341 ret = amdgpu_ras_error_inject(adev, &data.inject);
355 * DOC: AMDGPU RAS debugfs EEPROM table reset interface
357 * Some boards contain an EEPROM which is used to persistently store a list of
358 * bad pages which experiences ECC errors in vram. This interface provides
359 * a way to reset the EEPROM, e.g., after testing error injection.
363 * .. code-block:: bash
365 * echo 1 > ../ras/ras_eeprom_reset
367 * will reset EEPROM table to 0 entries.
370 static ssize_t amdgpu_ras_debugfs_eeprom_write(struct file *f, const char __user *buf,
371 size_t size, loff_t *pos)
373 struct amdgpu_device *adev =
374 (struct amdgpu_device *)file_inode(f)->i_private;
377 ret = amdgpu_ras_eeprom_reset_table(
378 &(amdgpu_ras_get_context(adev)->eeprom_control));
381 amdgpu_ras_get_context(adev)->flags = RAS_DEFAULT_FLAGS;
388 static const struct file_operations amdgpu_ras_debugfs_ctrl_ops = {
389 .owner = THIS_MODULE,
391 .write = amdgpu_ras_debugfs_ctrl_write,
392 .llseek = default_llseek
395 static const struct file_operations amdgpu_ras_debugfs_eeprom_ops = {
396 .owner = THIS_MODULE,
398 .write = amdgpu_ras_debugfs_eeprom_write,
399 .llseek = default_llseek
403 * DOC: AMDGPU RAS sysfs Error Count Interface
405 * It allows the user to read the error count for each IP block on the gpu through
406 * /sys/class/drm/card[0/1/2...]/device/ras/[gfx/sdma/...]_err_count
408 * It outputs the multiple lines which report the uncorrected (ue) and corrected
411 * The format of one line is below,
417 * .. code-block:: bash
423 static ssize_t amdgpu_ras_sysfs_read(struct device *dev,
424 struct device_attribute *attr, char *buf)
426 struct ras_manager *obj = container_of(attr, struct ras_manager, sysfs_attr);
427 struct ras_query_if info = {
431 if (!amdgpu_ras_get_error_query_ready(obj->adev))
432 return snprintf(buf, PAGE_SIZE,
433 "Query currently inaccessible\n");
435 if (amdgpu_ras_error_query(obj->adev, &info))
438 return snprintf(buf, PAGE_SIZE, "%s: %lu\n%s: %lu\n",
440 "ce", info.ce_count);
445 #define get_obj(obj) do { (obj)->use++; } while (0)
446 #define alive_obj(obj) ((obj)->use)
448 static inline void put_obj(struct ras_manager *obj)
450 if (obj && --obj->use == 0)
451 list_del(&obj->node);
452 if (obj && obj->use < 0) {
453 DRM_ERROR("RAS ERROR: Unbalance obj(%s) use\n", obj->head.name);
457 /* make one obj and return it. */
458 static struct ras_manager *amdgpu_ras_create_obj(struct amdgpu_device *adev,
459 struct ras_common_if *head)
461 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
462 struct ras_manager *obj;
467 if (head->block >= AMDGPU_RAS_BLOCK_COUNT)
470 obj = &con->objs[head->block];
471 /* already exist. return obj? */
477 list_add(&obj->node, &con->head);
483 /* return an obj equal to head, or the first when head is NULL */
484 struct ras_manager *amdgpu_ras_find_obj(struct amdgpu_device *adev,
485 struct ras_common_if *head)
487 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
488 struct ras_manager *obj;
495 if (head->block >= AMDGPU_RAS_BLOCK_COUNT)
498 obj = &con->objs[head->block];
500 if (alive_obj(obj)) {
501 WARN_ON(head->block != obj->head.block);
505 for (i = 0; i < AMDGPU_RAS_BLOCK_COUNT; i++) {
507 if (alive_obj(obj)) {
508 WARN_ON(i != obj->head.block);
518 static void amdgpu_ras_parse_status_code(struct amdgpu_device *adev,
519 const char* invoke_type,
520 const char* block_name,
521 enum ta_ras_status ret)
524 case TA_RAS_STATUS__SUCCESS:
526 case TA_RAS_STATUS__ERROR_RAS_NOT_AVAILABLE:
528 "RAS WARN: %s %s currently unavailable\n",
534 "RAS ERROR: %s %s error failed ret 0x%X\n",
541 /* feature ctl begin */
542 static int amdgpu_ras_is_feature_allowed(struct amdgpu_device *adev,
543 struct ras_common_if *head)
545 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
547 return con->hw_supported & BIT(head->block);
550 static int amdgpu_ras_is_feature_enabled(struct amdgpu_device *adev,
551 struct ras_common_if *head)
553 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
555 return con->features & BIT(head->block);
559 * if obj is not created, then create one.
560 * set feature enable flag.
562 static int __amdgpu_ras_feature_enable(struct amdgpu_device *adev,
563 struct ras_common_if *head, int enable)
565 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
566 struct ras_manager *obj = amdgpu_ras_find_obj(adev, head);
568 /* If hardware does not support ras, then do not create obj.
569 * But if hardware support ras, we can create the obj.
570 * Ras framework checks con->hw_supported to see if it need do
571 * corresponding initialization.
572 * IP checks con->support to see if it need disable ras.
574 if (!amdgpu_ras_is_feature_allowed(adev, head))
576 if (!(!!enable ^ !!amdgpu_ras_is_feature_enabled(adev, head)))
581 obj = amdgpu_ras_create_obj(adev, head);
585 /* In case we create obj somewhere else */
588 con->features |= BIT(head->block);
590 if (obj && amdgpu_ras_is_feature_enabled(adev, head)) {
591 con->features &= ~BIT(head->block);
599 /* wrapper of psp_ras_enable_features */
600 int amdgpu_ras_feature_enable(struct amdgpu_device *adev,
601 struct ras_common_if *head, bool enable)
603 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
604 union ta_ras_cmd_input *info;
610 info = kzalloc(sizeof(union ta_ras_cmd_input), GFP_KERNEL);
615 info->disable_features = (struct ta_ras_disable_features_input) {
616 .block_id = amdgpu_ras_block_to_ta(head->block),
617 .error_type = amdgpu_ras_error_to_ta(head->type),
620 info->enable_features = (struct ta_ras_enable_features_input) {
621 .block_id = amdgpu_ras_block_to_ta(head->block),
622 .error_type = amdgpu_ras_error_to_ta(head->type),
626 /* Do not enable if it is not allowed. */
627 WARN_ON(enable && !amdgpu_ras_is_feature_allowed(adev, head));
628 /* Are we alerady in that state we are going to set? */
629 if (!(!!enable ^ !!amdgpu_ras_is_feature_enabled(adev, head))) {
634 if (!amdgpu_ras_intr_triggered()) {
635 ret = psp_ras_enable_features(&adev->psp, info, enable);
637 amdgpu_ras_parse_status_code(adev,
638 enable ? "enable":"disable",
639 ras_block_str(head->block),
640 (enum ta_ras_status)ret);
641 if (ret == TA_RAS_STATUS__RESET_NEEDED)
651 __amdgpu_ras_feature_enable(adev, head, enable);
658 /* Only used in device probe stage and called only once. */
659 int amdgpu_ras_feature_enable_on_boot(struct amdgpu_device *adev,
660 struct ras_common_if *head, bool enable)
662 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
668 if (con->flags & AMDGPU_RAS_FLAG_INIT_BY_VBIOS) {
670 /* There is no harm to issue a ras TA cmd regardless of
671 * the currecnt ras state.
672 * If current state == target state, it will do nothing
673 * But sometimes it requests driver to reset and repost
674 * with error code -EAGAIN.
676 ret = amdgpu_ras_feature_enable(adev, head, 1);
677 /* With old ras TA, we might fail to enable ras.
678 * Log it and just setup the object.
679 * TODO need remove this WA in the future.
681 if (ret == -EINVAL) {
682 ret = __amdgpu_ras_feature_enable(adev, head, 1);
685 "RAS INFO: %s setup object\n",
686 ras_block_str(head->block));
689 /* setup the object then issue a ras TA disable cmd.*/
690 ret = __amdgpu_ras_feature_enable(adev, head, 1);
694 ret = amdgpu_ras_feature_enable(adev, head, 0);
697 ret = amdgpu_ras_feature_enable(adev, head, enable);
702 static int amdgpu_ras_disable_all_features(struct amdgpu_device *adev,
705 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
706 struct ras_manager *obj, *tmp;
708 list_for_each_entry_safe(obj, tmp, &con->head, node) {
710 * aka just release the obj and corresponding flags
713 if (__amdgpu_ras_feature_enable(adev, &obj->head, 0))
716 if (amdgpu_ras_feature_enable(adev, &obj->head, 0))
721 return con->features;
724 static int amdgpu_ras_enable_all_features(struct amdgpu_device *adev,
727 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
728 int ras_block_count = AMDGPU_RAS_BLOCK_COUNT;
730 const enum amdgpu_ras_error_type default_ras_type =
731 AMDGPU_RAS_ERROR__NONE;
733 for (i = 0; i < ras_block_count; i++) {
734 struct ras_common_if head = {
736 .type = default_ras_type,
737 .sub_block_index = 0,
739 strcpy(head.name, ras_block_str(i));
742 * bypass psp. vbios enable ras for us.
743 * so just create the obj
745 if (__amdgpu_ras_feature_enable(adev, &head, 1))
748 if (amdgpu_ras_feature_enable(adev, &head, 1))
753 return con->features;
755 /* feature ctl end */
757 /* query/inject/cure begin */
758 int amdgpu_ras_error_query(struct amdgpu_device *adev,
759 struct ras_query_if *info)
761 struct ras_manager *obj = amdgpu_ras_find_obj(adev, &info->head);
762 struct ras_err_data err_data = {0, 0, 0, NULL};
768 switch (info->head.block) {
769 case AMDGPU_RAS_BLOCK__UMC:
770 if (adev->umc.funcs->query_ras_error_count)
771 adev->umc.funcs->query_ras_error_count(adev, &err_data);
772 /* umc query_ras_error_address is also responsible for clearing
775 if (adev->umc.funcs->query_ras_error_address)
776 adev->umc.funcs->query_ras_error_address(adev, &err_data);
778 case AMDGPU_RAS_BLOCK__SDMA:
779 if (adev->sdma.funcs->query_ras_error_count) {
780 for (i = 0; i < adev->sdma.num_instances; i++)
781 adev->sdma.funcs->query_ras_error_count(adev, i,
785 case AMDGPU_RAS_BLOCK__GFX:
786 if (adev->gfx.funcs->query_ras_error_count)
787 adev->gfx.funcs->query_ras_error_count(adev, &err_data);
789 case AMDGPU_RAS_BLOCK__MMHUB:
790 if (adev->mmhub.funcs->query_ras_error_count)
791 adev->mmhub.funcs->query_ras_error_count(adev, &err_data);
793 case AMDGPU_RAS_BLOCK__PCIE_BIF:
794 if (adev->nbio.funcs->query_ras_error_count)
795 adev->nbio.funcs->query_ras_error_count(adev, &err_data);
797 case AMDGPU_RAS_BLOCK__XGMI_WAFL:
798 amdgpu_xgmi_query_ras_error_count(adev, &err_data);
804 obj->err_data.ue_count += err_data.ue_count;
805 obj->err_data.ce_count += err_data.ce_count;
807 info->ue_count = obj->err_data.ue_count;
808 info->ce_count = obj->err_data.ce_count;
810 if (err_data.ce_count) {
811 dev_info(adev->dev, "%ld correctable hardware errors "
812 "detected in %s block, no user "
813 "action is needed.\n",
814 obj->err_data.ce_count,
815 ras_block_str(info->head.block));
817 if (err_data.ue_count) {
818 dev_info(adev->dev, "%ld uncorrectable hardware errors "
819 "detected in %s block\n",
820 obj->err_data.ue_count,
821 ras_block_str(info->head.block));
827 /* Trigger XGMI/WAFL error */
828 static int amdgpu_ras_error_inject_xgmi(struct amdgpu_device *adev,
829 struct ta_ras_trigger_error_input *block_info)
833 if (amdgpu_dpm_set_df_cstate(adev, DF_CSTATE_DISALLOW))
834 dev_warn(adev->dev, "Failed to disallow df cstate");
836 if (amdgpu_dpm_allow_xgmi_power_down(adev, false))
837 dev_warn(adev->dev, "Failed to disallow XGMI power down");
839 ret = psp_ras_trigger_error(&adev->psp, block_info);
841 if (amdgpu_ras_intr_triggered())
844 if (amdgpu_dpm_allow_xgmi_power_down(adev, true))
845 dev_warn(adev->dev, "Failed to allow XGMI power down");
847 if (amdgpu_dpm_set_df_cstate(adev, DF_CSTATE_DISALLOW))
848 dev_warn(adev->dev, "Failed to allow df cstate");
853 /* wrapper of psp_ras_trigger_error */
854 int amdgpu_ras_error_inject(struct amdgpu_device *adev,
855 struct ras_inject_if *info)
857 struct ras_manager *obj = amdgpu_ras_find_obj(adev, &info->head);
858 struct ta_ras_trigger_error_input block_info = {
859 .block_id = amdgpu_ras_block_to_ta(info->head.block),
860 .inject_error_type = amdgpu_ras_error_to_ta(info->head.type),
861 .sub_block_index = info->head.sub_block_index,
862 .address = info->address,
863 .value = info->value,
870 /* Calculate XGMI relative offset */
871 if (adev->gmc.xgmi.num_physical_nodes > 1) {
873 amdgpu_xgmi_get_relative_phy_addr(adev,
877 switch (info->head.block) {
878 case AMDGPU_RAS_BLOCK__GFX:
879 if (adev->gfx.funcs->ras_error_inject)
880 ret = adev->gfx.funcs->ras_error_inject(adev, info);
884 case AMDGPU_RAS_BLOCK__UMC:
885 case AMDGPU_RAS_BLOCK__MMHUB:
886 case AMDGPU_RAS_BLOCK__PCIE_BIF:
887 ret = psp_ras_trigger_error(&adev->psp, &block_info);
889 case AMDGPU_RAS_BLOCK__XGMI_WAFL:
890 ret = amdgpu_ras_error_inject_xgmi(adev, &block_info);
893 dev_info(adev->dev, "%s error injection is not supported yet\n",
894 ras_block_str(info->head.block));
898 amdgpu_ras_parse_status_code(adev,
900 ras_block_str(info->head.block),
901 (enum ta_ras_status)ret);
906 int amdgpu_ras_error_cure(struct amdgpu_device *adev,
907 struct ras_cure_if *info)
909 /* psp fw has no cure interface for now. */
913 /* get the total error counts on all IPs */
914 unsigned long amdgpu_ras_query_error_count(struct amdgpu_device *adev,
917 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
918 struct ras_manager *obj;
919 struct ras_err_data data = {0, 0};
924 list_for_each_entry(obj, &con->head, node) {
925 struct ras_query_if info = {
929 if (amdgpu_ras_error_query(adev, &info))
932 data.ce_count += info.ce_count;
933 data.ue_count += info.ue_count;
936 return is_ce ? data.ce_count : data.ue_count;
938 /* query/inject/cure end */
943 static int amdgpu_ras_badpages_read(struct amdgpu_device *adev,
944 struct ras_badpage **bps, unsigned int *count);
946 static char *amdgpu_ras_badpage_flags_str(unsigned int flags)
949 case AMDGPU_RAS_RETIRE_PAGE_RESERVED:
951 case AMDGPU_RAS_RETIRE_PAGE_PENDING:
953 case AMDGPU_RAS_RETIRE_PAGE_FAULT:
960 * DOC: AMDGPU RAS sysfs gpu_vram_bad_pages Interface
962 * It allows user to read the bad pages of vram on the gpu through
963 * /sys/class/drm/card[0/1/2...]/device/ras/gpu_vram_bad_pages
965 * It outputs multiple lines, and each line stands for one gpu page.
967 * The format of one line is below,
968 * gpu pfn : gpu page size : flags
970 * gpu pfn and gpu page size are printed in hex format.
971 * flags can be one of below character,
973 * R: reserved, this gpu page is reserved and not able to use.
975 * P: pending for reserve, this gpu page is marked as bad, will be reserved
976 * in next window of page_reserve.
978 * F: unable to reserve. this gpu page can't be reserved due to some reasons.
982 * .. code-block:: bash
984 * 0x00000001 : 0x00001000 : R
985 * 0x00000002 : 0x00001000 : P
989 static ssize_t amdgpu_ras_sysfs_badpages_read(struct file *f,
990 struct kobject *kobj, struct bin_attribute *attr,
991 char *buf, loff_t ppos, size_t count)
993 struct amdgpu_ras *con =
994 container_of(attr, struct amdgpu_ras, badpages_attr);
995 struct amdgpu_device *adev = con->adev;
996 const unsigned int element_size =
997 sizeof("0xabcdabcd : 0x12345678 : R\n") - 1;
998 unsigned int start = div64_ul(ppos + element_size - 1, element_size);
999 unsigned int end = div64_ul(ppos + count - 1, element_size);
1001 struct ras_badpage *bps = NULL;
1002 unsigned int bps_count = 0;
1004 memset(buf, 0, count);
1006 if (amdgpu_ras_badpages_read(adev, &bps, &bps_count))
1009 for (; start < end && start < bps_count; start++)
1010 s += scnprintf(&buf[s], element_size + 1,
1011 "0x%08x : 0x%08x : %1s\n",
1014 amdgpu_ras_badpage_flags_str(bps[start].flags));
1021 static ssize_t amdgpu_ras_sysfs_features_read(struct device *dev,
1022 struct device_attribute *attr, char *buf)
1024 struct amdgpu_ras *con =
1025 container_of(attr, struct amdgpu_ras, features_attr);
1027 return scnprintf(buf, PAGE_SIZE, "feature mask: 0x%x\n", con->features);
1030 static void amdgpu_ras_sysfs_remove_bad_page_node(struct amdgpu_device *adev)
1032 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1034 sysfs_remove_file_from_group(&adev->dev->kobj,
1035 &con->badpages_attr.attr,
1039 static int amdgpu_ras_sysfs_remove_feature_node(struct amdgpu_device *adev)
1041 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1042 struct attribute *attrs[] = {
1043 &con->features_attr.attr,
1046 struct attribute_group group = {
1047 .name = RAS_FS_NAME,
1051 sysfs_remove_group(&adev->dev->kobj, &group);
1056 int amdgpu_ras_sysfs_create(struct amdgpu_device *adev,
1057 struct ras_fs_if *head)
1059 struct ras_manager *obj = amdgpu_ras_find_obj(adev, &head->head);
1061 if (!obj || obj->attr_inuse)
1066 memcpy(obj->fs_data.sysfs_name,
1068 sizeof(obj->fs_data.sysfs_name));
1070 obj->sysfs_attr = (struct device_attribute){
1072 .name = obj->fs_data.sysfs_name,
1075 .show = amdgpu_ras_sysfs_read,
1077 sysfs_attr_init(&obj->sysfs_attr.attr);
1079 if (sysfs_add_file_to_group(&adev->dev->kobj,
1080 &obj->sysfs_attr.attr,
1086 obj->attr_inuse = 1;
1091 int amdgpu_ras_sysfs_remove(struct amdgpu_device *adev,
1092 struct ras_common_if *head)
1094 struct ras_manager *obj = amdgpu_ras_find_obj(adev, head);
1096 if (!obj || !obj->attr_inuse)
1099 sysfs_remove_file_from_group(&adev->dev->kobj,
1100 &obj->sysfs_attr.attr,
1102 obj->attr_inuse = 0;
1108 static int amdgpu_ras_sysfs_remove_all(struct amdgpu_device *adev)
1110 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1111 struct ras_manager *obj, *tmp;
1113 list_for_each_entry_safe(obj, tmp, &con->head, node) {
1114 amdgpu_ras_sysfs_remove(adev, &obj->head);
1117 if (amdgpu_bad_page_threshold != 0)
1118 amdgpu_ras_sysfs_remove_bad_page_node(adev);
1120 amdgpu_ras_sysfs_remove_feature_node(adev);
1127 * DOC: AMDGPU RAS Reboot Behavior for Unrecoverable Errors
1129 * Normally when there is an uncorrectable error, the driver will reset
1130 * the GPU to recover. However, in the event of an unrecoverable error,
1131 * the driver provides an interface to reboot the system automatically
1134 * The following file in debugfs provides that interface:
1135 * /sys/kernel/debug/dri/[0/1/2...]/ras/auto_reboot
1139 * .. code-block:: bash
1141 * echo true > .../ras/auto_reboot
1145 static void amdgpu_ras_debugfs_create_ctrl_node(struct amdgpu_device *adev)
1147 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1148 struct drm_minor *minor = adev_to_drm(adev)->primary;
1150 con->dir = debugfs_create_dir(RAS_FS_NAME, minor->debugfs_root);
1151 debugfs_create_file("ras_ctrl", S_IWUGO | S_IRUGO, con->dir,
1152 adev, &amdgpu_ras_debugfs_ctrl_ops);
1153 debugfs_create_file("ras_eeprom_reset", S_IWUGO | S_IRUGO, con->dir,
1154 adev, &amdgpu_ras_debugfs_eeprom_ops);
1157 * After one uncorrectable error happens, usually GPU recovery will
1158 * be scheduled. But due to the known problem in GPU recovery failing
1159 * to bring GPU back, below interface provides one direct way to
1160 * user to reboot system automatically in such case within
1161 * ERREVENT_ATHUB_INTERRUPT generated. Normal GPU recovery routine
1162 * will never be called.
1164 debugfs_create_bool("auto_reboot", S_IWUGO | S_IRUGO, con->dir,
1168 * User could set this not to clean up hardware's error count register
1169 * of RAS IPs during ras recovery.
1171 debugfs_create_bool("disable_ras_err_cnt_harvest", 0644,
1172 con->dir, &con->disable_ras_err_cnt_harvest);
1175 static void amdgpu_ras_debugfs_create(struct amdgpu_device *adev,
1176 struct ras_fs_if *head)
1178 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1179 struct ras_manager *obj = amdgpu_ras_find_obj(adev, &head->head);
1181 if (!obj || obj->ent)
1186 memcpy(obj->fs_data.debugfs_name,
1188 sizeof(obj->fs_data.debugfs_name));
1190 obj->ent = debugfs_create_file(obj->fs_data.debugfs_name,
1191 S_IWUGO | S_IRUGO, con->dir, obj,
1192 &amdgpu_ras_debugfs_ops);
1195 void amdgpu_ras_debugfs_create_all(struct amdgpu_device *adev)
1197 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1198 struct ras_manager *obj;
1199 struct ras_fs_if fs_info;
1202 * it won't be called in resume path, no need to check
1203 * suspend and gpu reset status
1205 if (!IS_ENABLED(CONFIG_DEBUG_FS) || !con)
1208 amdgpu_ras_debugfs_create_ctrl_node(adev);
1210 list_for_each_entry(obj, &con->head, node) {
1211 if (amdgpu_ras_is_supported(adev, obj->head.block) &&
1212 (obj->attr_inuse == 1)) {
1213 sprintf(fs_info.debugfs_name, "%s_err_inject",
1214 ras_block_str(obj->head.block));
1215 fs_info.head = obj->head;
1216 amdgpu_ras_debugfs_create(adev, &fs_info);
1221 static void amdgpu_ras_debugfs_remove(struct amdgpu_device *adev,
1222 struct ras_common_if *head)
1224 struct ras_manager *obj = amdgpu_ras_find_obj(adev, head);
1226 if (!obj || !obj->ent)
1233 static void amdgpu_ras_debugfs_remove_all(struct amdgpu_device *adev)
1235 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1236 struct ras_manager *obj, *tmp;
1238 list_for_each_entry_safe(obj, tmp, &con->head, node) {
1239 amdgpu_ras_debugfs_remove(adev, &obj->head);
1247 static BIN_ATTR(gpu_vram_bad_pages, S_IRUGO,
1248 amdgpu_ras_sysfs_badpages_read, NULL, 0);
1249 static DEVICE_ATTR(features, S_IRUGO,
1250 amdgpu_ras_sysfs_features_read, NULL);
1251 static int amdgpu_ras_fs_init(struct amdgpu_device *adev)
1253 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1254 struct attribute_group group = {
1255 .name = RAS_FS_NAME,
1257 struct attribute *attrs[] = {
1258 &con->features_attr.attr,
1261 struct bin_attribute *bin_attrs[] = {
1267 /* add features entry */
1268 con->features_attr = dev_attr_features;
1269 group.attrs = attrs;
1270 sysfs_attr_init(attrs[0]);
1272 if (amdgpu_bad_page_threshold != 0) {
1273 /* add bad_page_features entry */
1274 bin_attr_gpu_vram_bad_pages.private = NULL;
1275 con->badpages_attr = bin_attr_gpu_vram_bad_pages;
1276 bin_attrs[0] = &con->badpages_attr;
1277 group.bin_attrs = bin_attrs;
1278 sysfs_bin_attr_init(bin_attrs[0]);
1281 r = sysfs_create_group(&adev->dev->kobj, &group);
1283 dev_err(adev->dev, "Failed to create RAS sysfs group!");
1288 static int amdgpu_ras_fs_fini(struct amdgpu_device *adev)
1290 if (IS_ENABLED(CONFIG_DEBUG_FS))
1291 amdgpu_ras_debugfs_remove_all(adev);
1292 amdgpu_ras_sysfs_remove_all(adev);
1298 static void amdgpu_ras_interrupt_handler(struct ras_manager *obj)
1300 struct ras_ih_data *data = &obj->ih_data;
1301 struct amdgpu_iv_entry entry;
1303 struct ras_err_data err_data = {0, 0, 0, NULL};
1305 while (data->rptr != data->wptr) {
1307 memcpy(&entry, &data->ring[data->rptr],
1308 data->element_size);
1311 data->rptr = (data->aligned_element_size +
1312 data->rptr) % data->ring_size;
1314 /* Let IP handle its data, maybe we need get the output
1315 * from the callback to udpate the error type/count, etc
1318 ret = data->cb(obj->adev, &err_data, &entry);
1319 /* ue will trigger an interrupt, and in that case
1320 * we need do a reset to recovery the whole system.
1321 * But leave IP do that recovery, here we just dispatch
1324 if (ret == AMDGPU_RAS_SUCCESS) {
1325 /* these counts could be left as 0 if
1326 * some blocks do not count error number
1328 obj->err_data.ue_count += err_data.ue_count;
1329 obj->err_data.ce_count += err_data.ce_count;
1335 static void amdgpu_ras_interrupt_process_handler(struct work_struct *work)
1337 struct ras_ih_data *data =
1338 container_of(work, struct ras_ih_data, ih_work);
1339 struct ras_manager *obj =
1340 container_of(data, struct ras_manager, ih_data);
1342 amdgpu_ras_interrupt_handler(obj);
1345 int amdgpu_ras_interrupt_dispatch(struct amdgpu_device *adev,
1346 struct ras_dispatch_if *info)
1348 struct ras_manager *obj = amdgpu_ras_find_obj(adev, &info->head);
1349 struct ras_ih_data *data = &obj->ih_data;
1354 if (data->inuse == 0)
1357 /* Might be overflow... */
1358 memcpy(&data->ring[data->wptr], info->entry,
1359 data->element_size);
1362 data->wptr = (data->aligned_element_size +
1363 data->wptr) % data->ring_size;
1365 schedule_work(&data->ih_work);
1370 int amdgpu_ras_interrupt_remove_handler(struct amdgpu_device *adev,
1371 struct ras_ih_if *info)
1373 struct ras_manager *obj = amdgpu_ras_find_obj(adev, &info->head);
1374 struct ras_ih_data *data;
1379 data = &obj->ih_data;
1380 if (data->inuse == 0)
1383 cancel_work_sync(&data->ih_work);
1386 memset(data, 0, sizeof(*data));
1392 int amdgpu_ras_interrupt_add_handler(struct amdgpu_device *adev,
1393 struct ras_ih_if *info)
1395 struct ras_manager *obj = amdgpu_ras_find_obj(adev, &info->head);
1396 struct ras_ih_data *data;
1399 /* in case we registe the IH before enable ras feature */
1400 obj = amdgpu_ras_create_obj(adev, &info->head);
1406 data = &obj->ih_data;
1407 /* add the callback.etc */
1408 *data = (struct ras_ih_data) {
1411 .element_size = sizeof(struct amdgpu_iv_entry),
1416 INIT_WORK(&data->ih_work, amdgpu_ras_interrupt_process_handler);
1418 data->aligned_element_size = ALIGN(data->element_size, 8);
1419 /* the ring can store 64 iv entries. */
1420 data->ring_size = 64 * data->aligned_element_size;
1421 data->ring = kmalloc(data->ring_size, GFP_KERNEL);
1433 static int amdgpu_ras_interrupt_remove_all(struct amdgpu_device *adev)
1435 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1436 struct ras_manager *obj, *tmp;
1438 list_for_each_entry_safe(obj, tmp, &con->head, node) {
1439 struct ras_ih_if info = {
1442 amdgpu_ras_interrupt_remove_handler(adev, &info);
1449 /* traversal all IPs except NBIO to query error counter */
1450 static void amdgpu_ras_log_on_err_counter(struct amdgpu_device *adev)
1452 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1453 struct ras_manager *obj;
1458 list_for_each_entry(obj, &con->head, node) {
1459 struct ras_query_if info = {
1464 * PCIE_BIF IP has one different isr by ras controller
1465 * interrupt, the specific ras counter query will be
1466 * done in that isr. So skip such block from common
1467 * sync flood interrupt isr calling.
1469 if (info.head.block == AMDGPU_RAS_BLOCK__PCIE_BIF)
1472 amdgpu_ras_error_query(adev, &info);
1476 /* Parse RdRspStatus and WrRspStatus */
1477 void amdgpu_ras_error_status_query(struct amdgpu_device *adev,
1478 struct ras_query_if *info)
1481 * Only two block need to query read/write
1482 * RspStatus at current state
1484 switch (info->head.block) {
1485 case AMDGPU_RAS_BLOCK__GFX:
1486 if (adev->gfx.funcs->query_ras_error_status)
1487 adev->gfx.funcs->query_ras_error_status(adev);
1489 case AMDGPU_RAS_BLOCK__MMHUB:
1490 if (adev->mmhub.funcs->query_ras_error_status)
1491 adev->mmhub.funcs->query_ras_error_status(adev);
1498 static void amdgpu_ras_query_err_status(struct amdgpu_device *adev)
1500 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1501 struct ras_manager *obj;
1506 list_for_each_entry(obj, &con->head, node) {
1507 struct ras_query_if info = {
1511 amdgpu_ras_error_status_query(adev, &info);
1515 /* recovery begin */
1517 /* return 0 on success.
1518 * caller need free bps.
1520 static int amdgpu_ras_badpages_read(struct amdgpu_device *adev,
1521 struct ras_badpage **bps, unsigned int *count)
1523 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1524 struct ras_err_handler_data *data;
1528 if (!con || !con->eh_data || !bps || !count)
1531 mutex_lock(&con->recovery_lock);
1532 data = con->eh_data;
1533 if (!data || data->count == 0) {
1539 *bps = kmalloc(sizeof(struct ras_badpage) * data->count, GFP_KERNEL);
1545 for (; i < data->count; i++) {
1546 (*bps)[i] = (struct ras_badpage){
1547 .bp = data->bps[i].retired_page,
1548 .size = AMDGPU_GPU_PAGE_SIZE,
1549 .flags = AMDGPU_RAS_RETIRE_PAGE_RESERVED,
1552 if (data->last_reserved <= i)
1553 (*bps)[i].flags = AMDGPU_RAS_RETIRE_PAGE_PENDING;
1554 else if (data->bps_bo[i] == NULL)
1555 (*bps)[i].flags = AMDGPU_RAS_RETIRE_PAGE_FAULT;
1558 *count = data->count;
1560 mutex_unlock(&con->recovery_lock);
1564 static void amdgpu_ras_do_recovery(struct work_struct *work)
1566 struct amdgpu_ras *ras =
1567 container_of(work, struct amdgpu_ras, recovery_work);
1568 struct amdgpu_device *remote_adev = NULL;
1569 struct amdgpu_device *adev = ras->adev;
1570 struct list_head device_list, *device_list_handle = NULL;
1572 if (!ras->disable_ras_err_cnt_harvest) {
1573 struct amdgpu_hive_info *hive = amdgpu_get_xgmi_hive(adev);
1575 /* Build list of devices to query RAS related errors */
1576 if (hive && adev->gmc.xgmi.num_physical_nodes > 1) {
1577 device_list_handle = &hive->device_list;
1579 INIT_LIST_HEAD(&device_list);
1580 list_add_tail(&adev->gmc.xgmi.head, &device_list);
1581 device_list_handle = &device_list;
1584 list_for_each_entry(remote_adev,
1585 device_list_handle, gmc.xgmi.head) {
1586 amdgpu_ras_query_err_status(remote_adev);
1587 amdgpu_ras_log_on_err_counter(remote_adev);
1590 amdgpu_put_xgmi_hive(hive);
1593 if (amdgpu_device_should_recover_gpu(ras->adev))
1594 amdgpu_device_gpu_recover(ras->adev, NULL);
1595 atomic_set(&ras->in_recovery, 0);
1598 /* alloc/realloc bps array */
1599 static int amdgpu_ras_realloc_eh_data_space(struct amdgpu_device *adev,
1600 struct ras_err_handler_data *data, int pages)
1602 unsigned int old_space = data->count + data->space_left;
1603 unsigned int new_space = old_space + pages;
1604 unsigned int align_space = ALIGN(new_space, 512);
1605 void *bps = kmalloc(align_space * sizeof(*data->bps), GFP_KERNEL);
1606 struct amdgpu_bo **bps_bo =
1607 kmalloc(align_space * sizeof(*data->bps_bo), GFP_KERNEL);
1609 if (!bps || !bps_bo) {
1616 memcpy(bps, data->bps,
1617 data->count * sizeof(*data->bps));
1621 memcpy(bps_bo, data->bps_bo,
1622 data->count * sizeof(*data->bps_bo));
1623 kfree(data->bps_bo);
1627 data->bps_bo = bps_bo;
1628 data->space_left += align_space - old_space;
1632 /* it deal with vram only. */
1633 int amdgpu_ras_add_bad_pages(struct amdgpu_device *adev,
1634 struct eeprom_table_record *bps, int pages)
1636 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1637 struct ras_err_handler_data *data;
1640 if (!con || !con->eh_data || !bps || pages <= 0)
1643 mutex_lock(&con->recovery_lock);
1644 data = con->eh_data;
1648 if (data->space_left <= pages)
1649 if (amdgpu_ras_realloc_eh_data_space(adev, data, pages)) {
1654 memcpy(&data->bps[data->count], bps, pages * sizeof(*data->bps));
1655 data->count += pages;
1656 data->space_left -= pages;
1659 mutex_unlock(&con->recovery_lock);
1665 * write error record array to eeprom, the function should be
1666 * protected by recovery_lock
1668 static int amdgpu_ras_save_bad_pages(struct amdgpu_device *adev)
1670 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1671 struct ras_err_handler_data *data;
1672 struct amdgpu_ras_eeprom_control *control;
1675 if (!con || !con->eh_data)
1678 control = &con->eeprom_control;
1679 data = con->eh_data;
1680 save_count = data->count - control->num_recs;
1681 /* only new entries are saved */
1682 if (save_count > 0) {
1683 if (amdgpu_ras_eeprom_process_recods(control,
1684 &data->bps[control->num_recs],
1687 dev_err(adev->dev, "Failed to save EEPROM table data!");
1691 dev_info(adev->dev, "Saved %d pages to EEPROM table.\n", save_count);
1698 * read error record array in eeprom and reserve enough space for
1699 * storing new bad pages
1701 static int amdgpu_ras_load_bad_pages(struct amdgpu_device *adev)
1703 struct amdgpu_ras_eeprom_control *control =
1704 &adev->psp.ras.ras->eeprom_control;
1705 struct eeprom_table_record *bps = NULL;
1708 /* no bad page record, skip eeprom access */
1709 if (!control->num_recs || (amdgpu_bad_page_threshold == 0))
1712 bps = kcalloc(control->num_recs, sizeof(*bps), GFP_KERNEL);
1716 if (amdgpu_ras_eeprom_process_recods(control, bps, false,
1717 control->num_recs)) {
1718 dev_err(adev->dev, "Failed to load EEPROM table records!");
1723 ret = amdgpu_ras_add_bad_pages(adev, bps, control->num_recs);
1731 * check if an address belongs to bad page
1733 * Note: this check is only for umc block
1735 static bool amdgpu_ras_check_bad_page(struct amdgpu_device *adev,
1738 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1739 struct ras_err_handler_data *data;
1743 if (!con || !con->eh_data)
1746 mutex_lock(&con->recovery_lock);
1747 data = con->eh_data;
1751 addr >>= AMDGPU_GPU_PAGE_SHIFT;
1752 for (i = 0; i < data->count; i++)
1753 if (addr == data->bps[i].retired_page) {
1759 mutex_unlock(&con->recovery_lock);
1763 static void amdgpu_ras_validate_threshold(struct amdgpu_device *adev,
1764 uint32_t max_length)
1766 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1767 int tmp_threshold = amdgpu_bad_page_threshold;
1771 * Justification of value bad_page_cnt_threshold in ras structure
1773 * Generally, -1 <= amdgpu_bad_page_threshold <= max record length
1774 * in eeprom, and introduce two scenarios accordingly.
1776 * Bad page retirement enablement:
1777 * - If amdgpu_bad_page_threshold = -1,
1778 * bad_page_cnt_threshold = typical value by formula.
1780 * - When the value from user is 0 < amdgpu_bad_page_threshold <
1781 * max record length in eeprom, use it directly.
1783 * Bad page retirement disablement:
1784 * - If amdgpu_bad_page_threshold = 0, bad page retirement
1785 * functionality is disabled, and bad_page_cnt_threshold will
1789 if (tmp_threshold < -1)
1791 else if (tmp_threshold > max_length)
1792 tmp_threshold = max_length;
1794 if (tmp_threshold == -1) {
1795 val = adev->gmc.mc_vram_size;
1796 do_div(val, RAS_BAD_PAGE_RATE);
1797 con->bad_page_cnt_threshold = min(lower_32_bits(val),
1800 con->bad_page_cnt_threshold = tmp_threshold;
1804 /* called in gpu recovery/init */
1805 int amdgpu_ras_reserve_bad_pages(struct amdgpu_device *adev)
1807 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1808 struct ras_err_handler_data *data;
1810 struct amdgpu_bo *bo = NULL;
1813 /* Not reserve bad page when amdgpu_bad_page_threshold == 0. */
1814 if (!con || !con->eh_data || (amdgpu_bad_page_threshold == 0))
1817 mutex_lock(&con->recovery_lock);
1818 data = con->eh_data;
1821 /* reserve vram at driver post stage. */
1822 for (i = data->last_reserved; i < data->count; i++) {
1823 bp = data->bps[i].retired_page;
1825 /* There are two cases of reserve error should be ignored:
1826 * 1) a ras bad page has been allocated (used by someone);
1827 * 2) a ras bad page has been reserved (duplicate error injection
1830 if (amdgpu_bo_create_kernel_at(adev, bp << AMDGPU_GPU_PAGE_SHIFT,
1831 AMDGPU_GPU_PAGE_SIZE,
1832 AMDGPU_GEM_DOMAIN_VRAM,
1834 dev_warn(adev->dev, "RAS WARN: reserve vram for "
1835 "retired page %llx fail\n", bp);
1837 data->bps_bo[i] = bo;
1838 data->last_reserved = i + 1;
1842 /* continue to save bad pages to eeprom even reesrve_vram fails */
1843 ret = amdgpu_ras_save_bad_pages(adev);
1845 mutex_unlock(&con->recovery_lock);
1849 /* called when driver unload */
1850 static int amdgpu_ras_release_bad_pages(struct amdgpu_device *adev)
1852 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1853 struct ras_err_handler_data *data;
1854 struct amdgpu_bo *bo;
1857 if (!con || !con->eh_data)
1860 mutex_lock(&con->recovery_lock);
1861 data = con->eh_data;
1865 for (i = data->last_reserved - 1; i >= 0; i--) {
1866 bo = data->bps_bo[i];
1868 amdgpu_bo_free_kernel(&bo, NULL, NULL);
1870 data->bps_bo[i] = bo;
1871 data->last_reserved = i;
1874 mutex_unlock(&con->recovery_lock);
1878 int amdgpu_ras_recovery_init(struct amdgpu_device *adev)
1880 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1881 struct ras_err_handler_data **data;
1882 uint32_t max_eeprom_records_len = 0;
1883 bool exc_err_limit = false;
1887 data = &con->eh_data;
1891 *data = kmalloc(sizeof(**data), GFP_KERNEL | __GFP_ZERO);
1897 mutex_init(&con->recovery_lock);
1898 INIT_WORK(&con->recovery_work, amdgpu_ras_do_recovery);
1899 atomic_set(&con->in_recovery, 0);
1902 max_eeprom_records_len = amdgpu_ras_eeprom_get_record_max_length();
1903 amdgpu_ras_validate_threshold(adev, max_eeprom_records_len);
1905 ret = amdgpu_ras_eeprom_init(&con->eeprom_control, &exc_err_limit);
1907 * This calling fails when exc_err_limit is true or
1910 if (exc_err_limit || ret)
1913 if (con->eeprom_control.num_recs) {
1914 ret = amdgpu_ras_load_bad_pages(adev);
1917 ret = amdgpu_ras_reserve_bad_pages(adev);
1925 amdgpu_ras_release_bad_pages(adev);
1927 kfree((*data)->bps);
1928 kfree((*data)->bps_bo);
1930 con->eh_data = NULL;
1932 dev_warn(adev->dev, "Failed to initialize ras recovery!\n");
1935 * Except error threshold exceeding case, other failure cases in this
1936 * function would not fail amdgpu driver init.
1946 static int amdgpu_ras_recovery_fini(struct amdgpu_device *adev)
1948 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
1949 struct ras_err_handler_data *data = con->eh_data;
1951 /* recovery_init failed to init it, fini is useless */
1955 cancel_work_sync(&con->recovery_work);
1956 amdgpu_ras_release_bad_pages(adev);
1958 mutex_lock(&con->recovery_lock);
1959 con->eh_data = NULL;
1961 kfree(data->bps_bo);
1963 mutex_unlock(&con->recovery_lock);
1969 /* return 0 if ras will reset gpu and repost.*/
1970 int amdgpu_ras_request_reset_on_boot(struct amdgpu_device *adev,
1973 struct amdgpu_ras *ras = amdgpu_ras_get_context(adev);
1978 ras->flags |= AMDGPU_RAS_FLAG_INIT_NEED_RESET;
1982 static int amdgpu_ras_check_asic_type(struct amdgpu_device *adev)
1984 if (adev->asic_type != CHIP_VEGA10 &&
1985 adev->asic_type != CHIP_VEGA20 &&
1986 adev->asic_type != CHIP_ARCTURUS &&
1987 adev->asic_type != CHIP_SIENNA_CICHLID)
1994 * check hardware's ras ability which will be saved in hw_supported.
1995 * if hardware does not support ras, we can skip some ras initializtion and
1996 * forbid some ras operations from IP.
1997 * if software itself, say boot parameter, limit the ras ability. We still
1998 * need allow IP do some limited operations, like disable. In such case,
1999 * we have to initialize ras as normal. but need check if operation is
2000 * allowed or not in each function.
2002 static void amdgpu_ras_check_supported(struct amdgpu_device *adev,
2003 uint32_t *hw_supported, uint32_t *supported)
2008 if (amdgpu_sriov_vf(adev) || !adev->is_atom_fw ||
2009 amdgpu_ras_check_asic_type(adev))
2012 if (amdgpu_atomfirmware_mem_ecc_supported(adev)) {
2013 dev_info(adev->dev, "HBM ECC is active.\n");
2014 *hw_supported |= (1 << AMDGPU_RAS_BLOCK__UMC |
2015 1 << AMDGPU_RAS_BLOCK__DF);
2017 dev_info(adev->dev, "HBM ECC is not presented.\n");
2019 if (amdgpu_atomfirmware_sram_ecc_supported(adev)) {
2020 dev_info(adev->dev, "SRAM ECC is active.\n");
2021 *hw_supported |= ~(1 << AMDGPU_RAS_BLOCK__UMC |
2022 1 << AMDGPU_RAS_BLOCK__DF);
2024 dev_info(adev->dev, "SRAM ECC is not presented.\n");
2026 /* hw_supported needs to be aligned with RAS block mask. */
2027 *hw_supported &= AMDGPU_RAS_BLOCK_MASK;
2029 *supported = amdgpu_ras_enable == 0 ?
2030 0 : *hw_supported & amdgpu_ras_mask;
2031 adev->ras_features = *supported;
2034 int amdgpu_ras_init(struct amdgpu_device *adev)
2036 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2042 con = kmalloc(sizeof(struct amdgpu_ras) +
2043 sizeof(struct ras_manager) * AMDGPU_RAS_BLOCK_COUNT,
2044 GFP_KERNEL|__GFP_ZERO);
2048 con->objs = (struct ras_manager *)(con + 1);
2050 amdgpu_ras_set_context(adev, con);
2052 amdgpu_ras_check_supported(adev, &con->hw_supported,
2054 if (!con->hw_supported || (adev->asic_type == CHIP_VEGA10)) {
2060 INIT_LIST_HEAD(&con->head);
2061 /* Might need get this flag from vbios. */
2062 con->flags = RAS_DEFAULT_FLAGS;
2064 if (adev->nbio.funcs->init_ras_controller_interrupt) {
2065 r = adev->nbio.funcs->init_ras_controller_interrupt(adev);
2070 if (adev->nbio.funcs->init_ras_err_event_athub_interrupt) {
2071 r = adev->nbio.funcs->init_ras_err_event_athub_interrupt(adev);
2076 if (amdgpu_ras_fs_init(adev)) {
2081 dev_info(adev->dev, "RAS INFO: ras initialized successfully, "
2082 "hardware ability[%x] ras_mask[%x]\n",
2083 con->hw_supported, con->supported);
2086 amdgpu_ras_set_context(adev, NULL);
2092 /* helper function to handle common stuff in ip late init phase */
2093 int amdgpu_ras_late_init(struct amdgpu_device *adev,
2094 struct ras_common_if *ras_block,
2095 struct ras_fs_if *fs_info,
2096 struct ras_ih_if *ih_info)
2100 /* disable RAS feature per IP block if it is not supported */
2101 if (!amdgpu_ras_is_supported(adev, ras_block->block)) {
2102 amdgpu_ras_feature_enable_on_boot(adev, ras_block, 0);
2106 r = amdgpu_ras_feature_enable_on_boot(adev, ras_block, 1);
2109 /* request gpu reset. will run again */
2110 amdgpu_ras_request_reset_on_boot(adev,
2113 } else if (adev->in_suspend || amdgpu_in_reset(adev)) {
2114 /* in resume phase, if fail to enable ras,
2115 * clean up all ras fs nodes, and disable ras */
2121 /* in resume phase, no need to create ras fs node */
2122 if (adev->in_suspend || amdgpu_in_reset(adev))
2126 r = amdgpu_ras_interrupt_add_handler(adev, ih_info);
2131 r = amdgpu_ras_sysfs_create(adev, fs_info);
2137 amdgpu_ras_sysfs_remove(adev, ras_block);
2140 amdgpu_ras_interrupt_remove_handler(adev, ih_info);
2142 amdgpu_ras_feature_enable(adev, ras_block, 0);
2146 /* helper function to remove ras fs node and interrupt handler */
2147 void amdgpu_ras_late_fini(struct amdgpu_device *adev,
2148 struct ras_common_if *ras_block,
2149 struct ras_ih_if *ih_info)
2151 if (!ras_block || !ih_info)
2154 amdgpu_ras_sysfs_remove(adev, ras_block);
2156 amdgpu_ras_interrupt_remove_handler(adev, ih_info);
2157 amdgpu_ras_feature_enable(adev, ras_block, 0);
2160 /* do some init work after IP late init as dependence.
2161 * and it runs in resume/gpu reset/booting up cases.
2163 void amdgpu_ras_resume(struct amdgpu_device *adev)
2165 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2166 struct ras_manager *obj, *tmp;
2171 if (con->flags & AMDGPU_RAS_FLAG_INIT_BY_VBIOS) {
2172 /* Set up all other IPs which are not implemented. There is a
2173 * tricky thing that IP's actual ras error type should be
2174 * MULTI_UNCORRECTABLE, but as driver does not handle it, so
2175 * ERROR_NONE make sense anyway.
2177 amdgpu_ras_enable_all_features(adev, 1);
2179 /* We enable ras on all hw_supported block, but as boot
2180 * parameter might disable some of them and one or more IP has
2181 * not implemented yet. So we disable them on behalf.
2183 list_for_each_entry_safe(obj, tmp, &con->head, node) {
2184 if (!amdgpu_ras_is_supported(adev, obj->head.block)) {
2185 amdgpu_ras_feature_enable(adev, &obj->head, 0);
2186 /* there should be no any reference. */
2187 WARN_ON(alive_obj(obj));
2192 if (con->flags & AMDGPU_RAS_FLAG_INIT_NEED_RESET) {
2193 con->flags &= ~AMDGPU_RAS_FLAG_INIT_NEED_RESET;
2194 /* setup ras obj state as disabled.
2195 * for init_by_vbios case.
2196 * if we want to enable ras, just enable it in a normal way.
2197 * If we want do disable it, need setup ras obj as enabled,
2198 * then issue another TA disable cmd.
2199 * See feature_enable_on_boot
2201 amdgpu_ras_disable_all_features(adev, 1);
2202 amdgpu_ras_reset_gpu(adev);
2206 void amdgpu_ras_suspend(struct amdgpu_device *adev)
2208 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2213 amdgpu_ras_disable_all_features(adev, 0);
2214 /* Make sure all ras objects are disabled. */
2216 amdgpu_ras_disable_all_features(adev, 1);
2219 /* do some fini work before IP fini as dependence */
2220 int amdgpu_ras_pre_fini(struct amdgpu_device *adev)
2222 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2227 /* Need disable ras on all IPs here before ip [hw/sw]fini */
2228 amdgpu_ras_disable_all_features(adev, 0);
2229 amdgpu_ras_recovery_fini(adev);
2233 int amdgpu_ras_fini(struct amdgpu_device *adev)
2235 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2240 amdgpu_ras_fs_fini(adev);
2241 amdgpu_ras_interrupt_remove_all(adev);
2243 WARN(con->features, "Feature mask is not cleared");
2246 amdgpu_ras_disable_all_features(adev, 1);
2248 amdgpu_ras_set_context(adev, NULL);
2254 void amdgpu_ras_global_ras_isr(struct amdgpu_device *adev)
2256 uint32_t hw_supported, supported;
2258 amdgpu_ras_check_supported(adev, &hw_supported, &supported);
2262 if (atomic_cmpxchg(&amdgpu_ras_in_intr, 0, 1) == 0) {
2263 dev_info(adev->dev, "uncorrectable hardware error"
2264 "(ERREVENT_ATHUB_INTERRUPT) detected!\n");
2266 amdgpu_ras_reset_gpu(adev);
2270 bool amdgpu_ras_need_emergency_restart(struct amdgpu_device *adev)
2272 if (adev->asic_type == CHIP_VEGA20 &&
2273 adev->pm.fw_version <= 0x283400) {
2274 return !(amdgpu_asic_reset_method(adev) == AMD_RESET_METHOD_BACO) &&
2275 amdgpu_ras_intr_triggered();
2281 bool amdgpu_ras_check_err_threshold(struct amdgpu_device *adev)
2283 struct amdgpu_ras *con = amdgpu_ras_get_context(adev);
2284 bool exc_err_limit = false;
2286 if (con && (amdgpu_bad_page_threshold != 0))
2287 amdgpu_ras_eeprom_check_err_threshold(&con->eeprom_control,
2291 * We are only interested in variable exc_err_limit,
2292 * as it says if GPU is in bad state or not.
2294 return exc_err_limit;