2 * Copyright 2014 Bart Tanghe <bart.tanghe@thomasmore.be>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; version 2.
10 #include <linux/err.h>
12 #include <linux/module.h>
14 #include <linux/platform_device.h>
15 #include <linux/pwm.h>
17 #define PWM_CONTROL 0x000
18 #define PWM_CONTROL_SHIFT(x) ((x) * 8)
19 #define PWM_CONTROL_MASK 0xff
20 #define PWM_MODE 0x80 /* set timer in PWM mode */
21 #define PWM_ENABLE (1 << 0)
22 #define PWM_POLARITY (1 << 4)
24 #define PERIOD(x) (((x) * 0x10) + 0x10)
25 #define DUTY(x) (((x) * 0x10) + 0x14)
27 #define MIN_PERIOD 108 /* 9.2 MHz max. PWM clock */
36 static inline struct bcm2835_pwm *to_bcm2835_pwm(struct pwm_chip *chip)
38 return container_of(chip, struct bcm2835_pwm, chip);
41 static int bcm2835_pwm_request(struct pwm_chip *chip, struct pwm_device *pwm)
43 struct bcm2835_pwm *pc = to_bcm2835_pwm(chip);
46 value = readl(pc->base + PWM_CONTROL);
47 value &= ~(PWM_CONTROL_MASK << PWM_CONTROL_SHIFT(pwm->hwpwm));
48 value |= (PWM_MODE << PWM_CONTROL_SHIFT(pwm->hwpwm));
49 writel(value, pc->base + PWM_CONTROL);
54 static void bcm2835_pwm_free(struct pwm_chip *chip, struct pwm_device *pwm)
56 struct bcm2835_pwm *pc = to_bcm2835_pwm(chip);
59 value = readl(pc->base + PWM_CONTROL);
60 value &= ~(PWM_CONTROL_MASK << PWM_CONTROL_SHIFT(pwm->hwpwm));
61 writel(value, pc->base + PWM_CONTROL);
64 static int bcm2835_pwm_config(struct pwm_chip *chip, struct pwm_device *pwm,
65 int duty_ns, int period_ns)
67 struct bcm2835_pwm *pc = to_bcm2835_pwm(chip);
68 unsigned long rate = clk_get_rate(pc->clk);
72 dev_err(pc->dev, "failed to get clock rate\n");
76 scaler = NSEC_PER_SEC / rate;
78 if (period_ns <= MIN_PERIOD) {
79 dev_err(pc->dev, "period %d not supported, minimum %d\n",
80 period_ns, MIN_PERIOD);
84 writel(duty_ns / scaler, pc->base + DUTY(pwm->hwpwm));
85 writel(period_ns / scaler, pc->base + PERIOD(pwm->hwpwm));
90 static int bcm2835_pwm_enable(struct pwm_chip *chip, struct pwm_device *pwm)
92 struct bcm2835_pwm *pc = to_bcm2835_pwm(chip);
95 value = readl(pc->base + PWM_CONTROL);
96 value |= PWM_ENABLE << PWM_CONTROL_SHIFT(pwm->hwpwm);
97 writel(value, pc->base + PWM_CONTROL);
102 static void bcm2835_pwm_disable(struct pwm_chip *chip, struct pwm_device *pwm)
104 struct bcm2835_pwm *pc = to_bcm2835_pwm(chip);
107 value = readl(pc->base + PWM_CONTROL);
108 value &= ~(PWM_ENABLE << PWM_CONTROL_SHIFT(pwm->hwpwm));
109 writel(value, pc->base + PWM_CONTROL);
112 static int bcm2835_set_polarity(struct pwm_chip *chip, struct pwm_device *pwm,
113 enum pwm_polarity polarity)
115 struct bcm2835_pwm *pc = to_bcm2835_pwm(chip);
118 value = readl(pc->base + PWM_CONTROL);
120 if (polarity == PWM_POLARITY_NORMAL)
121 value &= ~(PWM_POLARITY << PWM_CONTROL_SHIFT(pwm->hwpwm));
123 value |= PWM_POLARITY << PWM_CONTROL_SHIFT(pwm->hwpwm);
125 writel(value, pc->base + PWM_CONTROL);
130 static const struct pwm_ops bcm2835_pwm_ops = {
131 .request = bcm2835_pwm_request,
132 .free = bcm2835_pwm_free,
133 .config = bcm2835_pwm_config,
134 .enable = bcm2835_pwm_enable,
135 .disable = bcm2835_pwm_disable,
136 .set_polarity = bcm2835_set_polarity,
137 .owner = THIS_MODULE,
140 static int bcm2835_pwm_probe(struct platform_device *pdev)
142 struct bcm2835_pwm *pc;
143 struct resource *res;
146 pc = devm_kzalloc(&pdev->dev, sizeof(*pc), GFP_KERNEL);
150 pc->dev = &pdev->dev;
152 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
153 pc->base = devm_ioremap_resource(&pdev->dev, res);
154 if (IS_ERR(pc->base))
155 return PTR_ERR(pc->base);
157 pc->clk = devm_clk_get(&pdev->dev, NULL);
158 if (IS_ERR(pc->clk)) {
159 dev_err(&pdev->dev, "clock not found: %ld\n", PTR_ERR(pc->clk));
160 return PTR_ERR(pc->clk);
163 ret = clk_prepare_enable(pc->clk);
167 pc->chip.dev = &pdev->dev;
168 pc->chip.ops = &bcm2835_pwm_ops;
172 platform_set_drvdata(pdev, pc);
174 ret = pwmchip_add(&pc->chip);
181 clk_disable_unprepare(pc->clk);
185 static int bcm2835_pwm_remove(struct platform_device *pdev)
187 struct bcm2835_pwm *pc = platform_get_drvdata(pdev);
189 clk_disable_unprepare(pc->clk);
191 return pwmchip_remove(&pc->chip);
194 static const struct of_device_id bcm2835_pwm_of_match[] = {
195 { .compatible = "brcm,bcm2835-pwm", },
198 MODULE_DEVICE_TABLE(of, bcm2835_pwm_of_match);
200 static struct platform_driver bcm2835_pwm_driver = {
202 .name = "bcm2835-pwm",
203 .of_match_table = bcm2835_pwm_of_match,
205 .probe = bcm2835_pwm_probe,
206 .remove = bcm2835_pwm_remove,
208 module_platform_driver(bcm2835_pwm_driver);
210 MODULE_AUTHOR("Bart Tanghe <bart.tanghe@thomasmore.be>");
211 MODULE_DESCRIPTION("Broadcom BCM2835 PWM driver");
212 MODULE_LICENSE("GPL v2");