We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 894c6d3 commit 79698b1Copy full SHA for 79698b1
drivers/gpu/drm/amd/amdgpu/amdgpu_discovery.c
@@ -61,6 +61,7 @@
61
#include "nbio_v4_3.h"
62
#include "nbio_v7_2.h"
63
#include "nbio_v7_7.h"
64
+#include "nbif_v6_3_1.h"
65
#include "hdp_v5_0.h"
66
#include "hdp_v5_2.h"
67
#include "hdp_v6_0.h"
@@ -2559,6 +2560,10 @@ int amdgpu_discovery_set_ip_blocks(struct amdgpu_device *adev)
2559
2560
adev->nbio.funcs = &nbio_v7_7_funcs;
2561
adev->nbio.hdp_flush_reg = &nbio_v7_7_hdp_flush_reg;
2562
break;
2563
+ case IP_VERSION(6, 3, 1):
2564
+ adev->nbio.funcs = &nbif_v6_3_1_funcs;
2565
+ adev->nbio.hdp_flush_reg = &nbif_v6_3_1_hdp_flush_reg;
2566
+ break;
2567
default:
2568
2569
}
0 commit comments