[PATCH 12/16] drm/amd/powerplay: better namings

Alex Deucher alexdeucher at gmail.com
Thu Jun 4 21:09:43 UTC 2020


On Thu, Jun 4, 2020 at 5:07 PM Alex Deucher <alexdeucher at gmail.com> wrote:
>
> On Thu, Jun 4, 2020 at 12:47 AM Evan Quan <evan.quan at amd.com> wrote:
> >
> > And some minor changes as dropping unused parameter and label
> > internal used API as static.
> >
> > Change-Id: I0af0aea029dc4fc7d8e150ab6ec984e9a5f1a74a
> > Signed-off-by: Evan Quan <evan.quan at amd.com>
> > ---
> >  drivers/gpu/drm/amd/powerplay/amdgpu_smu.c     | 12 +++++-------
> >  drivers/gpu/drm/amd/powerplay/inc/amdgpu_smu.h |  2 --
> >  2 files changed, 5 insertions(+), 9 deletions(-)
> >
> > diff --git a/drivers/gpu/drm/amd/powerplay/amdgpu_smu.c b/drivers/gpu/drm/amd/powerplay/amdgpu_smu.c
> > index b3410d111316..55ffbf1cf086 100644
> > --- a/drivers/gpu/drm/amd/powerplay/amdgpu_smu.c
> > +++ b/drivers/gpu/drm/amd/powerplay/amdgpu_smu.c
> > @@ -638,7 +638,7 @@ int smu_sys_set_pp_table(struct smu_context *smu,  void *buf, size_t size)
> >         return ret;
> >  }
> >
> > -int smu_feature_init_dpm(struct smu_context *smu)
> > +static int smu_get_driver_allowed_feature_mask(struct smu_context *smu)
> >  {
> >         struct smu_feature *feature = &smu->smu_feature;
> >         int ret = 0;
> > @@ -662,7 +662,6 @@ int smu_feature_init_dpm(struct smu_context *smu)
> >         return ret;
> >  }
> >
> > -
> >  int smu_feature_is_enabled(struct smu_context *smu, enum smu_feature_mask mask)
> >  {
> >         struct smu_feature *feature = &smu->smu_feature;
> > @@ -1115,8 +1114,7 @@ static int smu_sw_fini(void *handle)
> >         return 0;
> >  }
> >
> > -static int smu_smc_table_hw_init(struct smu_context *smu,
> > -                                bool initialize)
> > +static int smu_internal_hw_setup(struct smu_context *smu)
>
> The "internal" in the name made me think this was related to someting
> in smu_internal.h.  Maybe call it smu_smc_hw_setup()?  I guess I could
> go either way.

Nevermind, I see you started using the "internal" naming in the next
patch as well. Either way is fine with me.

>
> Reviewed-by: Alex Deucher <alexander.deucher at amd.com>
>
> >  {
> >         struct amdgpu_device *adev = smu->adev;
> >         int ret;
> > @@ -1287,11 +1285,11 @@ static int smu_hw_init(void *handle)
> >         if (ret)
> >                 return ret;
> >
> > -       ret = smu_feature_init_dpm(smu);
> > +       ret = smu_get_driver_allowed_feature_mask(smu);
> >         if (ret)
> >                 goto failed;
> >
> > -       ret = smu_smc_table_hw_init(smu, true);
> > +       ret = smu_internal_hw_setup(smu);
> >         if (ret)
> >                 goto failed;
> >
> > @@ -1487,7 +1485,7 @@ static int smu_resume(void *handle)
> >                 goto failed;
> >         }
> >
> > -       ret = smu_smc_table_hw_init(smu, false);
> > +       ret = smu_internal_hw_setup(smu);
> >         if (ret)
> >                 goto failed;
> >
> > diff --git a/drivers/gpu/drm/amd/powerplay/inc/amdgpu_smu.h b/drivers/gpu/drm/amd/powerplay/inc/amdgpu_smu.h
> > index b2de042493ad..5f5a210668a1 100644
> > --- a/drivers/gpu/drm/amd/powerplay/inc/amdgpu_smu.h
> > +++ b/drivers/gpu/drm/amd/powerplay/inc/amdgpu_smu.h
> > @@ -656,8 +656,6 @@ extern const struct amd_ip_funcs smu_ip_funcs;
> >  extern const struct amdgpu_ip_block_version smu_v11_0_ip_block;
> >  extern const struct amdgpu_ip_block_version smu_v12_0_ip_block;
> >
> > -extern int smu_feature_init_dpm(struct smu_context *smu);
> > -
> >  extern int smu_feature_is_enabled(struct smu_context *smu,
> >                                   enum smu_feature_mask mask);
> >  extern int smu_feature_set_enabled(struct smu_context *smu,
> > --
> > 2.27.0
> >
> > _______________________________________________
> > amd-gfx mailing list
> > amd-gfx at lists.freedesktop.org
> > https://lists.freedesktop.org/mailman/listinfo/amd-gfx


More information about the amd-gfx mailing list