diff options
author | Dave Airlie <airlied@redhat.com> | 2018-07-20 00:30:18 -0400 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2018-07-20 00:54:31 -0400 |
commit | 500775074f88d9cf5416bed2ca19592812d62c41 (patch) | |
tree | b1c5da7128eee2f71d9259b47ab29f7cc6fbe25f /drivers/gpu/drm/amd/amdgpu/dce_virtual.c | |
parent | ef8e0ff97ae8168ffe1558a5726a8b348c8228a3 (diff) | |
parent | 5c675bf2c67c4efb36a78bebf44dc435db2daf16 (diff) |
Merge branch 'drm-next-4.19' of git://people.freedesktop.org/~agd5f/linux into drm-next
More features for 4.19:
- Map processes to vmids for debugging GPUVM faults
- Raven gfxoff fixes
- Initial gfxoff support for vega12
- Use defines for interrupt sources rather than magic numbers
- DC aux fixes
- Finish DC logging TODO
- Add more DC debugfs interfaces for conformance testing
- Add CRC support for DCN
- Scheduler rework in preparation for load balancing
- Unify common smu9 code
- Clean up UVD instancing support
- ttm cleanups
- Misc fixes and cleanups
Signed-off-by: Dave Airlie <airlied@redhat.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20180719194001.3488-1-alexander.deucher@amd.com
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/dce_virtual.c')
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/dce_virtual.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/dce_virtual.c b/drivers/gpu/drm/amd/amdgpu/dce_virtual.c index 677e96a56330..15257634a53a 100644 --- a/drivers/gpu/drm/amd/amdgpu/dce_virtual.c +++ b/drivers/gpu/drm/amd/amdgpu/dce_virtual.c | |||
@@ -36,6 +36,7 @@ | |||
36 | #include "dce_v10_0.h" | 36 | #include "dce_v10_0.h" |
37 | #include "dce_v11_0.h" | 37 | #include "dce_v11_0.h" |
38 | #include "dce_virtual.h" | 38 | #include "dce_virtual.h" |
39 | #include "ivsrcid/ivsrcid_vislands30.h" | ||
39 | 40 | ||
40 | #define DCE_VIRTUAL_VBLANK_PERIOD 16666666 | 41 | #define DCE_VIRTUAL_VBLANK_PERIOD 16666666 |
41 | 42 | ||
@@ -371,7 +372,7 @@ static int dce_virtual_sw_init(void *handle) | |||
371 | int r, i; | 372 | int r, i; |
372 | struct amdgpu_device *adev = (struct amdgpu_device *)handle; | 373 | struct amdgpu_device *adev = (struct amdgpu_device *)handle; |
373 | 374 | ||
374 | r = amdgpu_irq_add_id(adev, AMDGPU_IH_CLIENTID_LEGACY, 229, &adev->crtc_irq); | 375 | r = amdgpu_irq_add_id(adev, AMDGPU_IH_CLIENTID_LEGACY, VISLANDS30_IV_SRCID_SMU_DISP_TIMER2_TRIGGER, &adev->crtc_irq); |
375 | if (r) | 376 | if (r) |
376 | return r; | 377 | return r; |
377 | 378 | ||