AMD-GFX Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/5] Change the hw ip initialize sequence
@ 2018-10-03 11:09 Rex Zhu
       [not found] ` <1538565000-30532-1-git-send-email-Rex.Zhu-5C7GfCeVMHo@public.gmane.org>
  0 siblings, 1 reply; 20+ messages in thread
From: Rex Zhu @ 2018-10-03 11:09 UTC (permalink / raw)
  To: amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW; +Cc: Rex Zhu

we are suggested to initialize gfx/sdma before power
feature enabled. and On Vi, the gfx/sdma fw will be loaded
by smu, Export load_firmware interface to 
gfx/sdma, so gfx/sdma can trigger fw loading if they were
initialized before smu.


Rex Zhu (5):
  drm/amdgpu: Don't reallocate ucode bo when suspend
  drm/amd/pp: Allocate ucode bo in request_smu_load_fw
  drm/amd/pp: Implement load_firmware interface
  drm/amdgpu: Add fw load in gfx_v8 and sdma_v3
  drm/amdgpu: Change VI gfx/sdma/smu init sequence

 drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.c          |  2 +-
 drivers/gpu/drm/amd/amdgpu/gfx_v8_0.c              | 11 ++++++++++
 drivers/gpu/drm/amd/amdgpu/sdma_v3_0.c             |  8 ++++++++
 drivers/gpu/drm/amd/amdgpu/vi.c                    | 24 +++++++++++-----------
 drivers/gpu/drm/amd/powerplay/amd_powerplay.c      | 18 +++++++++++++---
 drivers/gpu/drm/amd/powerplay/smumgr/smu7_smumgr.c |  2 ++
 drivers/gpu/drm/amd/powerplay/smumgr/smu8_smumgr.c |  2 ++
 7 files changed, 51 insertions(+), 16 deletions(-)

-- 
1.9.1

_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

^ permalink raw reply	[flat|nested] 20+ messages in thread

end of thread, other threads:[~2018-10-08 18:37 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-10-03 11:09 [PATCH 0/5] Change the hw ip initialize sequence Rex Zhu
     [not found] ` <1538565000-30532-1-git-send-email-Rex.Zhu-5C7GfCeVMHo@public.gmane.org>
2018-10-03 11:09   ` [PATCH 1/5] drm/amdgpu: Don't reallocate ucode bo when suspend Rex Zhu
     [not found]     ` <1538565000-30532-2-git-send-email-Rex.Zhu-5C7GfCeVMHo@public.gmane.org>
2018-10-04  3:34       ` Alex Deucher
     [not found]         ` <CADnq5_MvoNsbMCxxv7QNg7Xd1Ufp2y_Tzb=Ls11R_0gaeFwxOg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2018-10-08 15:56           ` Zhu, Rex
     [not found]             ` <BYAPR12MB2775AA30E68EEE0FFE883492FBE60-ZGDeBxoHBPmJeBUhB162ZQdYzm3356FpvxpqHgZTriW3zl9H0oFU5g@public.gmane.org>
2018-10-08 16:21               ` Deucher, Alexander
     [not found]                 ` <BN6PR12MB18090E11A7EE4A4E6901C3A1F7E60-/b2+HYfkarSEx6ez0IUAagdYzm3356FpvxpqHgZTriW3zl9H0oFU5g@public.gmane.org>
2018-10-08 16:30                   ` Zhu, Rex
     [not found]                     ` <BYAPR12MB2775299C03A4F9BCFF6B9F2BFBE60-ZGDeBxoHBPmJeBUhB162ZQdYzm3356FpvxpqHgZTriW3zl9H0oFU5g@public.gmane.org>
2018-10-08 17:31                       ` Christian König
     [not found]                         ` <37f64613-0ae4-df1e-b306-00abdb71eb11-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2018-10-08 17:58                           ` Zhu, Rex
     [not found]                             ` <BYAPR12MB2775618E156FC2AFC3ACAEDEFBE60-ZGDeBxoHBPmJeBUhB162ZQdYzm3356FpvxpqHgZTriW3zl9H0oFU5g@public.gmane.org>
2018-10-08 18:03                               ` Koenig, Christian
     [not found]                                 ` <dfa9ab3d-56f9-33d5-39e2-04a5cd6269d3-5C7GfCeVMHo@public.gmane.org>
2018-10-08 18:15                                   ` Zhu, Rex
     [not found]                                     ` <BYAPR12MB27754292CE2CA3E542075A01FBE60-ZGDeBxoHBPmJeBUhB162ZQdYzm3356FpvxpqHgZTriW3zl9H0oFU5g@public.gmane.org>
2018-10-08 18:21                                       ` Christian König
     [not found]                                         ` <872987e6-57a0-ff6f-c39e-b75c98fd6ecd-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2018-10-08 18:37                                           ` Zhu, Rex
2018-10-03 11:09   ` [PATCH 2/5] drm/amd/pp: Allocate ucode bo in request_smu_load_fw Rex Zhu
     [not found]     ` <1538565000-30532-3-git-send-email-Rex.Zhu-5C7GfCeVMHo@public.gmane.org>
2018-10-04  3:35       ` Alex Deucher
2018-10-03 11:09   ` [PATCH 3/5] drm/amd/pp: Implement load_firmware interface Rex Zhu
     [not found]     ` <1538565000-30532-4-git-send-email-Rex.Zhu-5C7GfCeVMHo@public.gmane.org>
2018-10-04  3:36       ` Alex Deucher
2018-10-03 11:09   ` [PATCH 4/5] drm/amdgpu: Add fw load in gfx_v8 and sdma_v3 Rex Zhu
     [not found]     ` <1538565000-30532-5-git-send-email-Rex.Zhu-5C7GfCeVMHo@public.gmane.org>
2018-10-04  3:33       ` Alex Deucher
     [not found]         ` <CADnq5_N5A9rkwkTJQSuvb1O=B+c3CD=siTVU6uDc6FRMgkzeow-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2018-10-08 15:57           ` Zhu, Rex
2018-10-03 11:10   ` [PATCH 5/5] drm/amdgpu: Change VI gfx/sdma/smu init sequence Rex Zhu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox