2 * Copyright (c) 2016 Google, Inc
3 * Written by Simon Glass <sjg@chromium.org>
5 * SPDX-License-Identifier: GPL-2.0+
16 #include <asm/arch/pwm.h>
17 #include <power/regulator.h>
20 struct rk3288_pwm *regs;
25 static int rk_pwm_set_invert(struct udevice *dev, uint channel, bool polarity)
27 struct rk_pwm_priv *priv = dev_get_priv(dev);
29 debug("%s: polarity=%u\n", __func__, polarity);
30 priv->enable_conf &= ~(PWM_DUTY_MASK | PWM_INACTIVE_MASK);
32 priv->enable_conf |= PWM_DUTY_NEGATIVE | PWM_INACTIVE_POSTIVE;
34 priv->enable_conf |= PWM_DUTY_POSTIVE | PWM_INACTIVE_NEGATIVE;
39 static int rk_pwm_set_config(struct udevice *dev, uint channel, uint period_ns,
42 struct rk_pwm_priv *priv = dev_get_priv(dev);
43 struct rk3288_pwm *regs = priv->regs;
44 unsigned long period, duty;
46 debug("%s: period_ns=%u, duty_ns=%u\n", __func__, period_ns, duty_ns);
47 writel(PWM_SEL_SRC_CLK | PWM_OUTPUT_LEFT | PWM_LP_DISABLE |
48 PWM_CONTINUOUS | priv->enable_conf |
52 period = lldiv((uint64_t)(priv->freq / 1000) * period_ns, 1000000);
53 duty = lldiv((uint64_t)(priv->freq / 1000) * duty_ns, 1000000);
55 writel(period, ®s->period_hpr);
56 writel(duty, ®s->duty_lpr);
57 debug("%s: period=%lu, duty=%lu\n", __func__, period, duty);
62 static int rk_pwm_set_enable(struct udevice *dev, uint channel, bool enable)
64 struct rk_pwm_priv *priv = dev_get_priv(dev);
65 struct rk3288_pwm *regs = priv->regs;
67 debug("%s: Enable '%s'\n", __func__, dev->name);
68 clrsetbits_le32(®s->ctrl, RK_PWM_ENABLE, enable ? RK_PWM_ENABLE : 0);
73 static int rk_pwm_ofdata_to_platdata(struct udevice *dev)
75 struct rk_pwm_priv *priv = dev_get_priv(dev);
77 priv->regs = (struct rk3288_pwm *)dev_read_addr(dev);
82 static int rk_pwm_probe(struct udevice *dev)
84 struct rk_pwm_priv *priv = dev_get_priv(dev);
88 ret = clk_get_by_index(dev, 0, &clk);
90 debug("%s get clock fail!\n", __func__);
93 priv->freq = clk_get_rate(&clk);
94 priv->enable_conf = PWM_DUTY_POSTIVE | PWM_INACTIVE_POSTIVE;
99 static const struct pwm_ops rk_pwm_ops = {
100 .set_invert = rk_pwm_set_invert,
101 .set_config = rk_pwm_set_config,
102 .set_enable = rk_pwm_set_enable,
105 static const struct udevice_id rk_pwm_ids[] = {
106 { .compatible = "rockchip,rk3288-pwm" },
110 U_BOOT_DRIVER(rk_pwm) = {
113 .of_match = rk_pwm_ids,
115 .ofdata_to_platdata = rk_pwm_ofdata_to_platdata,
116 .probe = rk_pwm_probe,
117 .priv_auto_alloc_size = sizeof(struct rk_pwm_priv),