1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright 2021 Nicolas Saenz Julienne <nsaenzjulienne@suse.de>
4 * For more information on Raspberry Pi's PoE hat see:
5 * https://www.raspberrypi.org/products/poe-hat/
8 * - No disable bit, so a disabled PWM is simulated by duty_cycle 0
9 * - Only normal polarity
10 * - Fixed 12.5 kHz period
12 * The current period is completed when HW is reconfigured.
15 #include <linux/module.h>
17 #include <linux/platform_device.h>
18 #include <linux/pwm.h>
20 #include <soc/bcm2835/raspberrypi-firmware.h>
21 #include <dt-bindings/pwm/raspberrypi,firmware-poe-pwm.h>
23 #define RPI_PWM_MAX_DUTY 255
24 #define RPI_PWM_PERIOD_NS 80000 /* 12.5 kHz */
26 #define RPI_PWM_CUR_DUTY_REG 0x0
28 struct raspberrypi_pwm {
29 struct rpi_firmware *firmware;
31 unsigned int duty_cycle;
34 struct raspberrypi_pwm_prop {
41 struct raspberrypi_pwm *raspberrypi_pwm_from_chip(struct pwm_chip *chip)
43 return container_of(chip, struct raspberrypi_pwm, chip);
46 static int raspberrypi_pwm_set_property(struct rpi_firmware *firmware,
49 struct raspberrypi_pwm_prop msg = {
50 .reg = cpu_to_le32(reg),
51 .val = cpu_to_le32(val),
55 ret = rpi_firmware_property(firmware, RPI_FIRMWARE_SET_POE_HAT_VAL,
65 static int raspberrypi_pwm_get_property(struct rpi_firmware *firmware,
68 struct raspberrypi_pwm_prop msg = {
69 .reg = cpu_to_le32(reg),
73 ret = rpi_firmware_property(firmware, RPI_FIRMWARE_GET_POE_HAT_VAL,
80 *val = le32_to_cpu(msg.val);
85 static int raspberrypi_pwm_get_state(struct pwm_chip *chip,
86 struct pwm_device *pwm,
87 struct pwm_state *state)
89 struct raspberrypi_pwm *rpipwm = raspberrypi_pwm_from_chip(chip);
91 state->period = RPI_PWM_PERIOD_NS;
92 state->duty_cycle = DIV_ROUND_UP(rpipwm->duty_cycle * RPI_PWM_PERIOD_NS,
94 state->enabled = !!(rpipwm->duty_cycle);
95 state->polarity = PWM_POLARITY_NORMAL;
100 static int raspberrypi_pwm_apply(struct pwm_chip *chip, struct pwm_device *pwm,
101 const struct pwm_state *state)
103 struct raspberrypi_pwm *rpipwm = raspberrypi_pwm_from_chip(chip);
104 unsigned int duty_cycle;
107 if (state->period < RPI_PWM_PERIOD_NS ||
108 state->polarity != PWM_POLARITY_NORMAL)
113 else if (state->duty_cycle < RPI_PWM_PERIOD_NS)
114 duty_cycle = DIV_ROUND_DOWN_ULL(state->duty_cycle * RPI_PWM_MAX_DUTY,
117 duty_cycle = RPI_PWM_MAX_DUTY;
119 if (duty_cycle == rpipwm->duty_cycle)
122 ret = raspberrypi_pwm_set_property(rpipwm->firmware, RPI_PWM_CUR_DUTY_REG,
125 dev_err(chip->dev, "Failed to set duty cycle: %pe\n",
130 rpipwm->duty_cycle = duty_cycle;
135 static const struct pwm_ops raspberrypi_pwm_ops = {
136 .get_state = raspberrypi_pwm_get_state,
137 .apply = raspberrypi_pwm_apply,
138 .owner = THIS_MODULE,
141 static int raspberrypi_pwm_probe(struct platform_device *pdev)
143 struct device_node *firmware_node;
144 struct device *dev = &pdev->dev;
145 struct rpi_firmware *firmware;
146 struct raspberrypi_pwm *rpipwm;
149 firmware_node = of_get_parent(dev->of_node);
150 if (!firmware_node) {
151 dev_err(dev, "Missing firmware node\n");
155 firmware = devm_rpi_firmware_get(&pdev->dev, firmware_node);
156 of_node_put(firmware_node);
158 return dev_err_probe(dev, -EPROBE_DEFER,
159 "Failed to get firmware handle\n");
161 rpipwm = devm_kzalloc(&pdev->dev, sizeof(*rpipwm), GFP_KERNEL);
165 rpipwm->firmware = firmware;
166 rpipwm->chip.dev = dev;
167 rpipwm->chip.ops = &raspberrypi_pwm_ops;
168 rpipwm->chip.npwm = RASPBERRYPI_FIRMWARE_PWM_NUM;
170 ret = raspberrypi_pwm_get_property(rpipwm->firmware, RPI_PWM_CUR_DUTY_REG,
171 &rpipwm->duty_cycle);
173 dev_err(dev, "Failed to get duty cycle: %pe\n", ERR_PTR(ret));
177 return devm_pwmchip_add(dev, &rpipwm->chip);
180 static const struct of_device_id raspberrypi_pwm_of_match[] = {
181 { .compatible = "raspberrypi,firmware-poe-pwm", },
184 MODULE_DEVICE_TABLE(of, raspberrypi_pwm_of_match);
186 static struct platform_driver raspberrypi_pwm_driver = {
188 .name = "raspberrypi-poe-pwm",
189 .of_match_table = raspberrypi_pwm_of_match,
191 .probe = raspberrypi_pwm_probe,
193 module_platform_driver(raspberrypi_pwm_driver);
195 MODULE_AUTHOR("Nicolas Saenz Julienne <nsaenzjulienne@suse.de>");
196 MODULE_DESCRIPTION("Raspberry Pi Firmware Based PWM Bus Driver");
197 MODULE_LICENSE("GPL v2");