Skip to content

Commit

Permalink
arch/risc-v/src/mpfs/mpfs_corepwm.c: Disable PWM channels in setup
Browse files Browse the repository at this point in the history
Set frequency to zero and disable channels in pwm_setup()
to avoid unexpected behaviour when starting PWM.

Signed-off-by: Jani Paalijarvi <[email protected]>
  • Loading branch information
jpaali committed Sep 18, 2024
1 parent 1826648 commit 45d79b8
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions arch/risc-v/src/mpfs/mpfs_corepwm.c
Original file line number Diff line number Diff line change
Expand Up @@ -557,6 +557,13 @@ static int pwm_setup(struct pwm_lowerhalf_s *dev)
struct mpfs_pwmtimer_s *priv = (struct mpfs_pwmtimer_s *)dev;

pwminfo("PWMID%u\n", priv->pwmid);

/* Make sure that frequency is zero and channels has been disabled */

priv->frequency = 0;
pwm_putreg(priv, MPFS_COREPWM_PWM_ENABLE_0_7_OFFSET, 0x00);
pwm_putreg(priv, MPFS_COREPWM_PWM_ENABLE_8_15_OFFSET, 0x00);

pwm_dumpregs(priv, "Initially");

return OK;
Expand Down

0 comments on commit 45d79b8

Please sign in to comment.