RE: [PATCH v2 00/21] S3 following up

2017-06-01 Thread Deucher, Alexander
> -Original Message-
> From: Huang Rui [mailto:ray.hu...@amd.com]
> Sent: Thursday, June 01, 2017 7:18 AM
> To: amd-gfx@lists.freedesktop.org; Deucher, Alexander; Koenig, Christian
> Cc: Wang, Ken; Huan, Alvin; Huang, Ray
> Subject: [PATCH v2 00/21] S3 following up
> 
> Hi all,
> 
> Changes from V1 -> V2:
> - Rename pt_regs to gart_pt_regs, dis_identity_aperture to
>   disable_identity_aperture.
> - Use upper_32_bits/lower_32_bits macros.
> - Add comments and fix "uint64_t" for stolen size.
> - Merge page table regs function into page table aperture.
> - Add three patches to use RREG32_SOC15/WREG32_SOC15 instead.
> 
> I just sent the modified patches (1, 2, 7, 18, 19, 20, 21) which compared with
> v1. Others, please check v1 set.

Series is:
Reviewed-by: Alex Deucher <alexander.deuc...@amd.com>

> 
> 
> These patches refines gfxhub/mmhub programming sequence to make
> them clear and
> readable. And actually, gfxhub + mmhub = GMCv9 for vega10, we don't need
> specific gfxhub and mmhub ip blocks, and meanwhile, they have different
> resume
> sequence during gfxhub, mmhub, and gmc. That will make thing confused
> and easily
> miss some register configrations. So remove gfxhub and mmhub ip block
> here, and
> merge them into GMC v9.
> 
> Patch 1 -> 8: refine gfxhub/mmhub programming sequence
> Patch 9: fix missed invalidation at resume
> Patch 10 -> 15: remove gfxhub/mmhub ip blocks
> Patch 16 -> 17: add prints to make ip_block mask clear.
> Patch 18: fix gart table cleared and other BOs cleared issue which blocked S3.
>   (Extend stollen memory for VBIOS)
> Patch 19 -> 21: update gmc/mmhub/gfxhub to use
> RREG32_SOC15/WREG32_SOC15 macro.
> 
> Thanks,
> Ray
> 
> Huang Rui (21):
>   drm/amdgpu: abstract gart table initialization for gfxhub/mmhub
>   drm/amdgpu: abstract gart aperture initialization for gfxhub/mmhub
>   drm/amdgpu: abstract system aperture initialization for gfxhub/mmhub
>   drm/amdgpu: abstract TLB initialization for gfxhub/mmhub
>   drm/amdgpu: abstract cache initialization for gfxhub/mmhub
>   drm/amdgpu: abstract system domain enablement for gfxhub/mmhub
>   drm/amdgpu: abstract disable identity aperture for gfxhub/mmhub
>   drm/amdgpu: abstract setup vmid config for gfxhub/mmhub
>   drm/amdgpu: fix to miss program invalidation at resume
>   drm/amdgpu: export gfxhub sw_init into gmc
>   drm/amdgpu: export mmhub sw_init into gmc
>   drm/amdgpu: export mmhub set clockgating into gmc
>   drm/amdgpu: export mmhub get clockgating into gmc
>   drm/amdgpu: remove gfxhub ip
>   drm/amdgpu: remove mmhub ip
>   drm/amdgpu: add ip name print for selecting ips with ip_block_mask
>   drm/amdgpu: add ip block number prints
>   drm/amdgpu: fix the gart table cleared issue for S3
>   drm/amdgpu: update to use RREG32_SOC15/WREG32_SOC15 for gfxhub
>   drm/amdgpu: update to use RREG32_SOC15/WREG32_SOC15 for mmhub
>   drm/amdgpu: update to use RREG32_SOC15/WREG32_SOC15 for gmc9
> 
>  drivers/gpu/drm/amd/amdgpu/amdgpu.h|   1 +
>  drivers/gpu/drm/amd/amdgpu/amdgpu_device.c |   8 +-
>  drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c|   2 +-
>  drivers/gpu/drm/amd/amdgpu/gfxhub_v1_0.c   | 424 +++-
> --
>  drivers/gpu/drm/amd/amdgpu/gfxhub_v1_0.h   |   1 +
>  drivers/gpu/drm/amd/amdgpu/gmc_v6_0.c  |   2 +
>  drivers/gpu/drm/amd/amdgpu/gmc_v7_0.c  |   2 +
>  drivers/gpu/drm/amd/amdgpu/gmc_v8_0.c  |   2 +
>  drivers/gpu/drm/amd/amdgpu/gmc_v9_0.c  |  31 +-
>  drivers/gpu/drm/amd/amdgpu/mmhub_v1_0.c| 466 --
> ---
>  drivers/gpu/drm/amd/amdgpu/mmhub_v1_0.h|   4 +
>  drivers/gpu/drm/amd/amdgpu/soc15.c |   2 -
>  drivers/gpu/drm/amd/include/amd_shared.h   |   2 -
>  13 files changed, 406 insertions(+), 541 deletions(-)
> 
> --
> 2.7.4

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


Re: [PATCH v2 00/21] S3 following up

2017-06-01 Thread Christian König

Patch #18 is Reviewed-by: Christian König .

The rest of the set is Acked-by: Christian König .

Regards,
Christian.

Am 01.06.2017 um 13:17 schrieb Huang Rui:

Hi all,

Changes from V1 -> V2:
- Rename pt_regs to gart_pt_regs, dis_identity_aperture to
   disable_identity_aperture.
- Use upper_32_bits/lower_32_bits macros.
- Add comments and fix "uint64_t" for stolen size.
- Merge page table regs function into page table aperture.
- Add three patches to use RREG32_SOC15/WREG32_SOC15 instead.

I just sent the modified patches (1, 2, 7, 18, 19, 20, 21) which compared with
v1. Others, please check v1 set.


These patches refines gfxhub/mmhub programming sequence to make them clear and
readable. And actually, gfxhub + mmhub = GMCv9 for vega10, we don't need
specific gfxhub and mmhub ip blocks, and meanwhile, they have different resume
sequence during gfxhub, mmhub, and gmc. That will make thing confused and easily
miss some register configrations. So remove gfxhub and mmhub ip block here, and
merge them into GMC v9.

Patch 1 -> 8: refine gfxhub/mmhub programming sequence
Patch 9: fix missed invalidation at resume
Patch 10 -> 15: remove gfxhub/mmhub ip blocks
Patch 16 -> 17: add prints to make ip_block mask clear.
Patch 18: fix gart table cleared and other BOs cleared issue which blocked S3.
(Extend stollen memory for VBIOS)
Patch 19 -> 21: update gmc/mmhub/gfxhub to use RREG32_SOC15/WREG32_SOC15 macro.

Thanks,
Ray

Huang Rui (21):
   drm/amdgpu: abstract gart table initialization for gfxhub/mmhub
   drm/amdgpu: abstract gart aperture initialization for gfxhub/mmhub
   drm/amdgpu: abstract system aperture initialization for gfxhub/mmhub
   drm/amdgpu: abstract TLB initialization for gfxhub/mmhub
   drm/amdgpu: abstract cache initialization for gfxhub/mmhub
   drm/amdgpu: abstract system domain enablement for gfxhub/mmhub
   drm/amdgpu: abstract disable identity aperture for gfxhub/mmhub
   drm/amdgpu: abstract setup vmid config for gfxhub/mmhub
   drm/amdgpu: fix to miss program invalidation at resume
   drm/amdgpu: export gfxhub sw_init into gmc
   drm/amdgpu: export mmhub sw_init into gmc
   drm/amdgpu: export mmhub set clockgating into gmc
   drm/amdgpu: export mmhub get clockgating into gmc
   drm/amdgpu: remove gfxhub ip
   drm/amdgpu: remove mmhub ip
   drm/amdgpu: add ip name print for selecting ips with ip_block_mask
   drm/amdgpu: add ip block number prints
   drm/amdgpu: fix the gart table cleared issue for S3
   drm/amdgpu: update to use RREG32_SOC15/WREG32_SOC15 for gfxhub
   drm/amdgpu: update to use RREG32_SOC15/WREG32_SOC15 for mmhub
   drm/amdgpu: update to use RREG32_SOC15/WREG32_SOC15 for gmc9

  drivers/gpu/drm/amd/amdgpu/amdgpu.h|   1 +
  drivers/gpu/drm/amd/amdgpu/amdgpu_device.c |   8 +-
  drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c|   2 +-
  drivers/gpu/drm/amd/amdgpu/gfxhub_v1_0.c   | 424 +++---
  drivers/gpu/drm/amd/amdgpu/gfxhub_v1_0.h   |   1 +
  drivers/gpu/drm/amd/amdgpu/gmc_v6_0.c  |   2 +
  drivers/gpu/drm/amd/amdgpu/gmc_v7_0.c  |   2 +
  drivers/gpu/drm/amd/amdgpu/gmc_v8_0.c  |   2 +
  drivers/gpu/drm/amd/amdgpu/gmc_v9_0.c  |  31 +-
  drivers/gpu/drm/amd/amdgpu/mmhub_v1_0.c| 466 -
  drivers/gpu/drm/amd/amdgpu/mmhub_v1_0.h|   4 +
  drivers/gpu/drm/amd/amdgpu/soc15.c |   2 -
  drivers/gpu/drm/amd/include/amd_shared.h   |   2 -
  13 files changed, 406 insertions(+), 541 deletions(-)



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


[PATCH v2 00/21] S3 following up

2017-06-01 Thread Huang Rui
Hi all,

Changes from V1 -> V2:
- Rename pt_regs to gart_pt_regs, dis_identity_aperture to
  disable_identity_aperture.
- Use upper_32_bits/lower_32_bits macros.
- Add comments and fix "uint64_t" for stolen size.
- Merge page table regs function into page table aperture.
- Add three patches to use RREG32_SOC15/WREG32_SOC15 instead. 

I just sent the modified patches (1, 2, 7, 18, 19, 20, 21) which compared with
v1. Others, please check v1 set.


These patches refines gfxhub/mmhub programming sequence to make them clear and
readable. And actually, gfxhub + mmhub = GMCv9 for vega10, we don't need
specific gfxhub and mmhub ip blocks, and meanwhile, they have different resume
sequence during gfxhub, mmhub, and gmc. That will make thing confused and easily
miss some register configrations. So remove gfxhub and mmhub ip block here, and
merge them into GMC v9.

Patch 1 -> 8: refine gfxhub/mmhub programming sequence
Patch 9: fix missed invalidation at resume
Patch 10 -> 15: remove gfxhub/mmhub ip blocks
Patch 16 -> 17: add prints to make ip_block mask clear.
Patch 18: fix gart table cleared and other BOs cleared issue which blocked S3.
(Extend stollen memory for VBIOS)
Patch 19 -> 21: update gmc/mmhub/gfxhub to use RREG32_SOC15/WREG32_SOC15 macro.

Thanks,
Ray

Huang Rui (21):
  drm/amdgpu: abstract gart table initialization for gfxhub/mmhub
  drm/amdgpu: abstract gart aperture initialization for gfxhub/mmhub
  drm/amdgpu: abstract system aperture initialization for gfxhub/mmhub
  drm/amdgpu: abstract TLB initialization for gfxhub/mmhub
  drm/amdgpu: abstract cache initialization for gfxhub/mmhub
  drm/amdgpu: abstract system domain enablement for gfxhub/mmhub
  drm/amdgpu: abstract disable identity aperture for gfxhub/mmhub
  drm/amdgpu: abstract setup vmid config for gfxhub/mmhub
  drm/amdgpu: fix to miss program invalidation at resume
  drm/amdgpu: export gfxhub sw_init into gmc
  drm/amdgpu: export mmhub sw_init into gmc
  drm/amdgpu: export mmhub set clockgating into gmc
  drm/amdgpu: export mmhub get clockgating into gmc
  drm/amdgpu: remove gfxhub ip
  drm/amdgpu: remove mmhub ip
  drm/amdgpu: add ip name print for selecting ips with ip_block_mask
  drm/amdgpu: add ip block number prints
  drm/amdgpu: fix the gart table cleared issue for S3
  drm/amdgpu: update to use RREG32_SOC15/WREG32_SOC15 for gfxhub
  drm/amdgpu: update to use RREG32_SOC15/WREG32_SOC15 for mmhub
  drm/amdgpu: update to use RREG32_SOC15/WREG32_SOC15 for gmc9

 drivers/gpu/drm/amd/amdgpu/amdgpu.h|   1 +
 drivers/gpu/drm/amd/amdgpu/amdgpu_device.c |   8 +-
 drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c|   2 +-
 drivers/gpu/drm/amd/amdgpu/gfxhub_v1_0.c   | 424 +++---
 drivers/gpu/drm/amd/amdgpu/gfxhub_v1_0.h   |   1 +
 drivers/gpu/drm/amd/amdgpu/gmc_v6_0.c  |   2 +
 drivers/gpu/drm/amd/amdgpu/gmc_v7_0.c  |   2 +
 drivers/gpu/drm/amd/amdgpu/gmc_v8_0.c  |   2 +
 drivers/gpu/drm/amd/amdgpu/gmc_v9_0.c  |  31 +-
 drivers/gpu/drm/amd/amdgpu/mmhub_v1_0.c| 466 -
 drivers/gpu/drm/amd/amdgpu/mmhub_v1_0.h|   4 +
 drivers/gpu/drm/amd/amdgpu/soc15.c |   2 -
 drivers/gpu/drm/amd/include/amd_shared.h   |   2 -
 13 files changed, 406 insertions(+), 541 deletions(-)

-- 
2.7.4

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