Re: [PATCH v6 09/19] PM / devfreq: tegra30: Use kHz units uniformly in the code

2019-10-02 Thread Dmitry Osipenko
02.10.2019 02:29, Chanwoo Choi пишет:
> On 19. 8. 12. 오전 6:23, Dmitry Osipenko wrote:
>> Now that all kHz-conversion related bugs are fixed, we can use the kHz
>> uniformly. This makes code cleaner and avoids integer divisions in the
>> code, which is useful in a case of Tegra30 that has Cortex A9 CPU that
>> doesn't support integer division instructions, hence all divisions are
>> actually made in software mode. Another small benefit from this change
>> is that now powertop utility correctly displays devfreq's stats, for
>> some reason it expects them to be in kHz.
> 
> If possible, please specify the benefit result on patch description.

As I wrote above, there are fewer divisions in the code as a result of this 
patch.

Then I also found that powertop expects KHz. This is actually something that 
devfreq core
potentially could improve by allowing drivers to specify what units are used 
for the freqs
such that sysfs interface could present freqs to userpspace in a predictable 
manner.

Lastly, this patch comes very handy for the patch11, because of the replacement 
of
avg_count with avg_freq which helps to keep code cleaner in further patches. 
Please note
that this patch doesn't change logic of the code.

> And I have a question. Why do you fix the KHz-conversion issue on one patch?
> Actually, in my case, it is difficult to understand that multiple patches
> try to fix the KHz-conversion issue. I think that it is possible to
> make one patch.

This driver used Hz units for the OPPs from the very beginning and then there 
were
Hz<->KHz conversion bugs that were fixed by previous patches. This patch 
doesn't fix any
KHz-conversion issue and merely makes a minor clean up by using KHz units 
everywhere in
the code, starting from OPPs that are created by dev_pm_opp_add().

> And, 
> On these series, some codes wad added and then these codes are deleted
> on later patch. It looks like that you made the issue and then you fix
> the issue by yourself. I think that it is not proper.
> Even if you developed the patches on your local environment sequentially
> according to the sequence of your issue detection, you better to do
> refactoring the patches.
> 
> Frankly, I cannot agree that some codes wad added on front patch
> and then added codes are deleted on later patch in the same patchset.

Alright, I understand that it makes easier for you to review patches without 
going back
and forth between patches, verifying every changed line of the previous patches 
of this
series.

>>
>> Signed-off-by: Dmitry Osipenko 
>> ---
>>  drivers/devfreq/tegra30-devfreq.c | 81 +++
>>  1 file changed, 49 insertions(+), 32 deletions(-)
>>
>> diff --git a/drivers/devfreq/tegra30-devfreq.c 
>> b/drivers/devfreq/tegra30-devfreq.c
>> index ca499368ee81..43d50b4366dd 100644
>> --- a/drivers/devfreq/tegra30-devfreq.c
>> +++ b/drivers/devfreq/tegra30-devfreq.c
>> @@ -137,8 +137,11 @@ struct tegra_devfreq_device {
>>  const struct tegra_devfreq_device_config *config;
>>  void __iomem *regs;
>>  
>> -/* Average event count sampled in the last interrupt */
>> -u32 avg_count;
>> +/*
>> + * Average event count sampled in the last interrupt and converted
>> + * to frequency value.
>> + */
>> +u32 avg_freq;
>>  
>>  /*
>>   * Extra frequency to increase the target by due to consecutive
>> @@ -222,6 +225,14 @@ static unsigned long actmon_cpu_to_emc_rate(struct 
>> tegra_devfreq *tegra)
>>  return 0;
>>  }
>>  
>> +static unsigned long
>> +tegra_actmon_dev_avg_dependency_freq(struct tegra_devfreq *tegra,
>> + struct tegra_devfreq_device *dev)
>> +{
>> +return dev->config->avg_dependency_threshold /
>> +ACTMON_SAMPLING_PERIOD;
>> +}
>> +
>>  static unsigned long
>>  tegra_actmon_account_cpu_freq(struct tegra_devfreq *tegra,
>>struct tegra_devfreq_device *dev,
>> @@ -229,13 +240,15 @@ tegra_actmon_account_cpu_freq(struct tegra_devfreq 
>> *tegra,
>>  {
>>  unsigned long static_cpu_emc_freq;
>>  
>> -if (dev->config->avg_dependency_threshold &&
>> -dev->config->avg_dependency_threshold < dev->avg_count) {
>> +if (!dev->config->avg_dependency_threshold)
>> +return target_freq;
>> +
>> +if (dev->avg_freq > tegra_actmon_dev_avg_dependency_freq(tegra, dev))
>>  static_cpu_emc_freq = actmon_cpu_to_emc_rate(tegra);
>> -target_freq = max(target_freq, static_cpu_emc_freq);
>> -}
>> +else
>> +static_cpu_emc_freq = 0;
>>  
>> -return target_freq;
>> +return max(target_freq, static_cpu_emc_freq);
>>  }
>>  
>>  static unsigned long tegra_actmon_lower_freq(struct tegra_devfreq *tegra,
>> @@ -261,7 +274,7 @@ static unsigned long tegra_actmon_upper_freq(struct 
>> tegra_devfreq *tegra,
>>  
>>  opp = dev_pm_opp_find_freq_ceil(tegra->devfreq->dev.parent, );
>>  if (IS_ERR(opp))
>> -upper = ULONG_MAX;
>> +  

Re: [PATCH v6 09/19] PM / devfreq: tegra30: Use kHz units uniformly in the code

2019-10-01 Thread Chanwoo Choi
On 19. 8. 12. 오전 6:23, Dmitry Osipenko wrote:
> Now that all kHz-conversion related bugs are fixed, we can use the kHz
> uniformly. This makes code cleaner and avoids integer divisions in the
> code, which is useful in a case of Tegra30 that has Cortex A9 CPU that
> doesn't support integer division instructions, hence all divisions are
> actually made in software mode. Another small benefit from this change
> is that now powertop utility correctly displays devfreq's stats, for
> some reason it expects them to be in kHz.

If possible, please specify the benefit result on patch description.

And I have a question. Why do you fix the KHz-conversion issue on one patch?
Actually, in my case, it is difficult to understand that multiple patches
try to fix the KHz-conversion issue. I think that it is possible to
make one patch.

And, 
On these series, some codes wad added and then these codes are deleted
on later patch. It looks like that you made the issue and then you fix
the issue by yourself. I think that it is not proper.
Even if you developed the patches on your local environment sequentially
according to the sequence of your issue detection, you better to do
refactoring the patches.

Frankly, I cannot agree that some codes wad added on front patch
and then added codes are deleted on later patch in the same patchset.


> 
> Signed-off-by: Dmitry Osipenko 
> ---
>  drivers/devfreq/tegra30-devfreq.c | 81 +++
>  1 file changed, 49 insertions(+), 32 deletions(-)
> 
> diff --git a/drivers/devfreq/tegra30-devfreq.c 
> b/drivers/devfreq/tegra30-devfreq.c
> index ca499368ee81..43d50b4366dd 100644
> --- a/drivers/devfreq/tegra30-devfreq.c
> +++ b/drivers/devfreq/tegra30-devfreq.c
> @@ -137,8 +137,11 @@ struct tegra_devfreq_device {
>   const struct tegra_devfreq_device_config *config;
>   void __iomem *regs;
>  
> - /* Average event count sampled in the last interrupt */
> - u32 avg_count;
> + /*
> +  * Average event count sampled in the last interrupt and converted
> +  * to frequency value.
> +  */
> + u32 avg_freq;
>  
>   /*
>* Extra frequency to increase the target by due to consecutive
> @@ -222,6 +225,14 @@ static unsigned long actmon_cpu_to_emc_rate(struct 
> tegra_devfreq *tegra)
>   return 0;
>  }
>  
> +static unsigned long
> +tegra_actmon_dev_avg_dependency_freq(struct tegra_devfreq *tegra,
> +  struct tegra_devfreq_device *dev)
> +{
> + return dev->config->avg_dependency_threshold /
> + ACTMON_SAMPLING_PERIOD;
> +}
> +
>  static unsigned long
>  tegra_actmon_account_cpu_freq(struct tegra_devfreq *tegra,
> struct tegra_devfreq_device *dev,
> @@ -229,13 +240,15 @@ tegra_actmon_account_cpu_freq(struct tegra_devfreq 
> *tegra,
>  {
>   unsigned long static_cpu_emc_freq;
>  
> - if (dev->config->avg_dependency_threshold &&
> - dev->config->avg_dependency_threshold < dev->avg_count) {
> + if (!dev->config->avg_dependency_threshold)
> + return target_freq;
> +
> + if (dev->avg_freq > tegra_actmon_dev_avg_dependency_freq(tegra, dev))
>   static_cpu_emc_freq = actmon_cpu_to_emc_rate(tegra);
> - target_freq = max(target_freq, static_cpu_emc_freq);
> - }
> + else
> + static_cpu_emc_freq = 0;
>  
> - return target_freq;
> + return max(target_freq, static_cpu_emc_freq);
>  }
>  
>  static unsigned long tegra_actmon_lower_freq(struct tegra_devfreq *tegra,
> @@ -261,7 +274,7 @@ static unsigned long tegra_actmon_upper_freq(struct 
> tegra_devfreq *tegra,
>  
>   opp = dev_pm_opp_find_freq_ceil(tegra->devfreq->dev.parent, );
>   if (IS_ERR(opp))
> - upper = ULONG_MAX;
> + upper = KHZ_MAX;
>   else
>   dev_pm_opp_put(opp);
>  
> @@ -280,15 +293,12 @@ static void tegra_actmon_get_lower_upper(struct 
> tegra_devfreq *tegra,
>* range in a case where target_freq falls into a range of
>* next_possible_opp_freq - 1MHz.
>*/
> - target_freq = round_down(target_freq, 100);

This line was added on patch5. I think that you could fix the KHz-conversion
on patch5 instead of this patch. It is not good way to make the patches.
Because some codes wad added and then these codes are deleted on later patch.

It looks like that you made the issue and then you fix the issue by yourself.
It is difficult to make me to decide this patch is either proper or not.

> + target_freq = round_down(target_freq, 1000);
>  
>   /* watermarks are set at the borders of the corresponding OPPs */
>   *lower = tegra_actmon_lower_freq(tegra, target_freq);
>   *upper = tegra_actmon_upper_freq(tegra, target_freq);
>  
> - *lower /= KHZ;
> - *upper /= KHZ;
> -
>   /*
>* The upper watermark should take into account CPU's frequency
>* because cpu_to_emc_rate() may override the target_freq with
> @@