On Thu, Jul 19, 2018 at 11:14 AM, Zhu, Rex <rex....@amd.com> wrote: > >We also need to power it back up in hw_fini and suspend and then power > >it back down in resume. > > Yes, this logic will be added in acp block. > In this patch, we only power down acp when it was not used and have no > inpact wen s3. >
But I think when the asic comes out of S3/S4, the ACP block will be powered up again so it will have to be powered down again to avoid using power after resume. So if the platform uses AZ rather than ACP, we need to handle that case and to power ACP back up on hw_fini() in case the driver gets reloaded. S4 works similarly. Something like the attached patch. Alex > > Best Regards > Rex > > ------------------------------ > *From:* Alex Deucher <alexdeuc...@gmail.com> > *Sent:* Thursday, July 19, 2018 9:56 PM > *To:* Zhu, Rex > *Cc:* amd-gfx list > *Subject:* Re: [PATCH 2/2] drm/amdgpu: Power down acp if board uses AZ > > On Thu, Jul 19, 2018 at 4:46 AM, Rex Zhu <rex....@amd.com> wrote: > > if board uses AZ rather than ACP, we power down acp > > through smu to save power. > > > > We also need to power it back up in hw_fini and suspend and then power > it back down in resume. > > Alex > > > Signed-off-by: Rex Zhu <rex....@amd.com> > > --- > > drivers/gpu/drm/amd/amdgpu/amdgpu_acp.c | 8 +++++--- > > 1 file changed, 5 insertions(+), 3 deletions(-) > > > > diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_acp.c > b/drivers/gpu/drm/amd/amdgpu/amdgpu_acp.c > > index 71efcf3..4e18a88 100644 > > --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_acp.c > > +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_acp.c > > @@ -35,6 +35,7 @@ > > > > #include "acp_gfx_if.h" > > > > + > > #define ACP_TILE_ON_MASK 0x03 > > #define ACP_TILE_OFF_MASK 0x02 > > #define ACP_TILE_ON_RETAIN_REG_MASK 0x1f > > @@ -289,11 +290,12 @@ static int acp_hw_init(void *handle) > > r = amd_acp_hw_init(adev->acp.cgs_device, > > ip_block->version->major, > ip_block->version->minor); > > /* -ENODEV means board uses AZ rather than ACP */ > > - if (r == -ENODEV) > > + if (r == -ENODEV) { > > + amdgpu_dpm_set_powergating_by_smu(adev, > AMD_IP_BLOCK_TYPE_ACP, true); > > return 0; > > - else if (r) > > + } else if (r) { > > return r; > > - > > + } > > if (adev->rmmio_size == 0 || adev->rmmio_size < 0x5289) > > return -EINVAL; > > > > -- > > 1.9.1 > > > > _______________________________________________ > > amd-gfx mailing list > > amd-gfx@lists.freedesktop.org > > https://lists.freedesktop.org/mailman/listinfo/amd-gfx > amd-gfx Info Page - freedesktop.org > <https://lists.freedesktop.org/mailman/listinfo/amd-gfx> > lists.freedesktop.org > Subscribing to amd-gfx: Subscribe to amd-gfx by filling out the following > form. Use of all freedesktop.org lists is subject to our Code of Conduct. > > >
From 73f4669a60f0def1c5dc61f99a201f88c6d0e528 Mon Sep 17 00:00:00 2001 From: Rex Zhu <rex....@amd.com> Date: Thu, 19 Jul 2018 11:48:36 -0500 Subject: [PATCH] drm/amdgpu: Power down acp if board uses AZ (v2) if board uses AZ rather than ACP, we power down acp through smu to save power. v2: handle S3/S4 and hw_fini (Alex) Signed-off-by: Rex Zhu <rex....@amd.com> Signed-off-by: Alex Deucher <alexander.deuc...@amd.com> --- drivers/gpu/drm/amd/amdgpu/amdgpu_acp.c | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_acp.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_acp.c index 71efcf38f11b..d4d1738da3b6 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_acp.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_acp.c @@ -289,10 +289,12 @@ static int acp_hw_init(void *handle) r = amd_acp_hw_init(adev->acp.cgs_device, ip_block->version->major, ip_block->version->minor); /* -ENODEV means board uses AZ rather than ACP */ - if (r == -ENODEV) + if (r == -ENODEV) { + amdgpu_dpm_set_powergating_by_smu(adev, AMD_IP_BLOCK_TYPE_ACP, true); return 0; - else if (r) + } else if (r) { return r; + } if (adev->rmmio_size == 0 || adev->rmmio_size < 0x5289) return -EINVAL; @@ -497,8 +499,10 @@ static int acp_hw_fini(void *handle) struct amdgpu_device *adev = (struct amdgpu_device *)handle; /* return early if no ACP */ - if (!adev->acp.acp_cell) + if (!adev->acp.acp_cell) { + amdgpu_dpm_set_powergating_by_smu(adev, AMD_IP_BLOCK_TYPE_ACP, false); return 0; + } /* Assert Soft reset of ACP */ val = cgs_read_register(adev->acp.cgs_device, mmACP_SOFT_RESET); @@ -556,11 +560,21 @@ static int acp_hw_fini(void *handle) static int acp_suspend(void *handle) { + struct amdgpu_device *adev = (struct amdgpu_device *)handle; + + /* power up on suspend */ + if (!adev->acp.acp_cell) + amdgpu_dpm_set_powergating_by_smu(adev, AMD_IP_BLOCK_TYPE_ACP, false); return 0; } static int acp_resume(void *handle) { + struct amdgpu_device *adev = (struct amdgpu_device *)handle; + + /* power down again on resume */ + if (!adev->acp.acp_cell) + amdgpu_dpm_set_powergating_by_smu(adev, AMD_IP_BLOCK_TYPE_ACP, true); return 0; } -- 2.13.6
_______________________________________________ amd-gfx mailing list amd-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/amd-gfx