.../devicetree/bindings/pwm/sophgo,cv1800-pwm.yaml | 45 ++++ drivers/pwm/Kconfig | 10 + drivers/pwm/Makefile | 1 + drivers/pwm/pwm-cv1800.c | 294 +++++++++++++++++++++ 4 files changed, 350 insertions(+)
The Sophgo CV1800 chip provides a set of four independent
PWM channel outputs.
This series adds PWM controller support for Sophgo cv1800.
Signed-off-by: Jingbao Qiu <qiujingbao.dlmu@gmail.com>
[Thomas since v8]
Signed-off-by: Thomas Bonnefille <thomas.bonnefille@bootlin.com>
---
Changes in v8:
- Rewrote supported frequency
- Hardcoded HLPERIOD_BASE and PERIDO_BASE
- Change usage of update_bits to set/clear bits when needed
- Rewrote construct of enablement of PWM
- Fixed OE activation
- Fixed hw state modification in case where pwm value cannot be reached
- Renamed variables
- Errors out for new cases
- Reworded some comments
v7: https://lore.kernel.org/linux-pwm/20240501083242.773305-1-qiujingbao.dlmu@gmail.com/
Changes in v7:
- add detailed Limitations
- using BIT(n) instead BIT(0) << n
- use 0 instead of disable macro
- modify OE judgment criteria
- add devm_regmap_init_mmio error message
- delete unused variable
v6: https://lore.kernel.org/all/20240406063413.3334639-1-qiujingbao.dlmu@gmail.com/
Changes in v6:
- delete the OE function because we plan to use the counter subsystem
instead of capture, so there is no need to reuse this code.
- fix set polarity reverse error.
v5: https://lore.kernel.org/all/20240314100131.323540-1-qiujingbao.dlmu@gmail.com/
Changes in v5:
- drop filename
- fix macro
- optimize cv1800_pwm_set_polarity()
- optimize cv1800_pwm_set_oe()
- add comment for cv1800_pwm_set_oe()
- use ticks replace tem
- fix duty_cycle larger than period_val
- use devm_clk_rate_exclusive_get() replace
clk_rate_exclusive_get()
- map linux polarity to register polarity
v4: https://lore.kernel.org/all/20240304085933.1246964-1-qiujingbao.dlmu@gmail.com/
datasheet Link: https://github.com/milkv-duo/duo-files/blob/main/duo/datasheet/CV1800B-CV1801B-Preliminary-Datasheet-full-en.pdf
page 614
Changes in v4:
- use macro instead of npwm number
- add support for polarity feature
- add support for Output-Enable/OE feature
v3: https://lore.kernel.org/all/20240223082014.109385-1-qiujingbao.dlmu@gmail.com/
Changes in v3:
- use 0x08 instead of macro
- split if statements based on conditions
- in order to round up, first calculate the
number of high-level cycles, then subtract
it from the PERIOD to obtain the number of HLPERIOD
- use new pwmchip_alloc() API instead of old style
v2: https://lore.kernel.org/all/20240212121729.1086718-1-qiujingbao.dlmu@gmail.com/
Changes in v2:
- drop full stop from subject
- re-order maintainers and description
- pass checkpatch.pl --strict
- fix naming errors
- add "Limitations" section
- use a driver specific prefix for all defines
- using bool instead u32 in cv1800_pwm_enable
- check and set state->polarity
- use mul_u64_u64_div_u64
- use clk_rate_exclusive_get(), balance with clk_rate_exclusive_put()
- using macro definitions instead of shift operations
- remove shift operation on 0
- use priv replace cv_pwm
- hardcode npwm
- set atomic to true
- remove MODULE_ALIAS
v1: https://lore.kernel.org/all/20240207055856.672184-1-qiujingbao.dlmu@gmail.com/
---
Jingbao Qiu (2):
dt-bindings: pwm: sophgo: add pwm for Sophgo CV1800 series SoC
pwm: sophgo: add pwm support for Sophgo CV1800 SoC
.../devicetree/bindings/pwm/sophgo,cv1800-pwm.yaml | 45 ++++
drivers/pwm/Kconfig | 10 +
drivers/pwm/Makefile | 1 +
drivers/pwm/pwm-cv1800.c | 294 +++++++++++++++++++++
4 files changed, 350 insertions(+)
---
base-commit: 0af2f6be1b4281385b618cb86ad946eded089ac8
change-id: 20250407-pwm_sophgo-5032b3858c27
Best regards,
--
Thomas Bonnefille <thomas.bonnefille@bootlin.com>
On Fri, May 09, 2025 at 11:45:42AM +0200, Thomas Bonnefille wrote: > The Sophgo CV1800 chip provides a set of four independent > PWM channel outputs. > This series adds PWM controller support for Sophgo cv1800. > > Signed-off-by: Jingbao Qiu <qiujingbao.dlmu@gmail.com> > [Thomas since v8] > Signed-off-by: Thomas Bonnefille <thomas.bonnefille@bootlin.com> > --- As now we have pwm support for SG2042, I suggest sharing driver code and binding file with SG2042. Regards, Inochi
On Fri, May 09, 2025 at 08:14:57PM +0800, Inochi Amaoto wrote: > On Fri, May 09, 2025 at 11:45:42AM +0200, Thomas Bonnefille wrote: > > The Sophgo CV1800 chip provides a set of four independent > > PWM channel outputs. > > This series adds PWM controller support for Sophgo cv1800. > > > > Signed-off-by: Jingbao Qiu <qiujingbao.dlmu@gmail.com> > > [Thomas since v8] > > Signed-off-by: Thomas Bonnefille <thomas.bonnefille@bootlin.com> > > --- > > As now we have pwm support for SG2042, I suggest sharing driver code and > binding file with SG2042. How does the two relate? Is CV1800 the same as SG2042? I'd like to know before I spend time reviewing a driver that is better spent elsewhere. Best regards Uwe
On Mon, May 26, 2025 at 06:31:42PM +0200, Uwe Kleine-König wrote: > On Fri, May 09, 2025 at 08:14:57PM +0800, Inochi Amaoto wrote: > > On Fri, May 09, 2025 at 11:45:42AM +0200, Thomas Bonnefille wrote: > > > The Sophgo CV1800 chip provides a set of four independent > > > PWM channel outputs. > > > This series adds PWM controller support for Sophgo cv1800. > > > > > > Signed-off-by: Jingbao Qiu <qiujingbao.dlmu@gmail.com> > > > [Thomas since v8] > > > Signed-off-by: Thomas Bonnefille <thomas.bonnefille@bootlin.com> > > > --- > > > > As now we have pwm support for SG2042, I suggest sharing driver code and > > binding file with SG2042. > > How does the two relate? Is CV1800 the same as SG2042? I'd like to know > before I spend time reviewing a driver that is better spent elsewhere. > IIRC the pwm SG2044 is based on it on CV1800. And they both share some common logic with SG2042, like setting PERIOD register. So I request a merge for it. Regards, Inochi
Hello, On Tue, May 27, 2025 at 06:43:06AM +0800, Inochi Amaoto wrote: > On Mon, May 26, 2025 at 06:31:42PM +0200, Uwe Kleine-König wrote: > > On Fri, May 09, 2025 at 08:14:57PM +0800, Inochi Amaoto wrote: > > > On Fri, May 09, 2025 at 11:45:42AM +0200, Thomas Bonnefille wrote: > > > > The Sophgo CV1800 chip provides a set of four independent > > > > PWM channel outputs. > > > > This series adds PWM controller support for Sophgo cv1800. > > > > > > > > Signed-off-by: Jingbao Qiu <qiujingbao.dlmu@gmail.com> > > > > [Thomas since v8] > > > > Signed-off-by: Thomas Bonnefille <thomas.bonnefille@bootlin.com> > > > > --- > > > > > > As now we have pwm support for SG2042, I suggest sharing driver code and > > > binding file with SG2042. > > > > How does the two relate? Is CV1800 the same as SG2042? I'd like to know > > before I spend time reviewing a driver that is better spent elsewhere. > > > > IIRC the pwm SG2044 is based on it on CV1800. And they both share some > common logic with SG2042, like setting PERIOD register. So I request a > merge for it. To make this explict: Without having looked into the details, I agree and so will discard this patch set from the set of waiting patches in patchwork. Best regards Uwe
© 2016 - 2025 Red Hat, Inc.