lkml.org 
[lkml]   [2018]   [Jan]   [16]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH 6/8] pwm: stm32: improve capture by tuning counter prescaler
    Date
    Currently, capture is based on timeout window to configure prescaler.
    PWM capture framework provides 1s window at the time of writing.

    There's place for improvement, after input signal has been captured once:
    - Finer tune counter clock prescaler, by using 1st capture result (with
    arbitrary margin).
    - Do a 2nd capture, with scaled capture window.
    This increases accuracy, especially at high rates.

    Signed-off-by: Fabrice Gasnier <fabrice.gasnier@st.com>
    ---
    drivers/pwm/pwm-stm32.c | 26 +++++++++++++++++++++++++-
    1 file changed, 25 insertions(+), 1 deletion(-)

    diff --git a/drivers/pwm/pwm-stm32.c b/drivers/pwm/pwm-stm32.c
    index b9c7e878..c890404 100644
    --- a/drivers/pwm/pwm-stm32.c
    +++ b/drivers/pwm/pwm-stm32.c
    @@ -257,7 +257,7 @@ static int stm32_pwm_capture(struct pwm_chip *chip, struct pwm_device *pwm,
    struct stm32_pwm *priv = to_stm32_pwm_dev(chip);
    unsigned long long prd, div, dty;
    unsigned long rate;
    - unsigned int psc = 0;
    + unsigned int psc = 0, scale;
    u32 raw_prd, raw_dty;
    int ret = 0;

    @@ -311,6 +311,30 @@ static int stm32_pwm_capture(struct pwm_chip *chip, struct pwm_device *pwm,
    raw_prd = priv->capture[0];
    raw_dty = priv->capture[1];

    + /*
    + * Got a capture. Try to improve accuracy at high rates:
    + * - decrease counter clock prescaler, scale up to max rate.
    + */
    + if (raw_prd) {
    + u32 max_arr = priv->max_arr - 0x1000; /* arbitrary margin */
    +
    + scale = max_arr / min(max_arr, raw_prd);
    + } else {
    + scale = priv->max_arr; /* bellow resolution, use max scale */
    + }
    +
    + if (psc && scale > 1) {
    + /* 2nd measure with new scale */
    + regmap_write(priv->regmap, TIM_PSC, psc / scale);
    + ret = stm32_pwm_do_capture(priv, pwm, tmo_ms);
    + if (ret)
    + goto stop;
    +
    + psc /= scale;
    + raw_prd = priv->capture[0];
    + raw_dty = priv->capture[1];
    + }
    +
    prd = (unsigned long long)raw_prd * (psc + 1) * NSEC_PER_SEC;
    result->period = DIV_ROUND_UP_ULL(prd, rate);
    dty = (unsigned long long)raw_dty * (psc + 1) * NSEC_PER_SEC;
    --
    1.9.1
    \
     
     \ /
      Last update: 2018-01-16 13:46    [W:3.973 / U:1.300 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site