> -----Original Message----- > From: Uwe Kleine-König <u.kleine-koenig@xxxxxxxxxxxxxx> > Sent: 2024年1月5日 6:41 > To: William Qiu <william.qiu@xxxxxxxxxxxxxxxx> > Cc: devicetree@xxxxxxxxxxxxxxx; linux-kernel@xxxxxxxxxxxxxxx; > linux-riscv@xxxxxxxxxxxxxxxxxxx; linux-pwm@xxxxxxxxxxxxxxx; Emil Renner > Berthing <kernel@xxxxxxxx>; Rob Herring <robh+dt@xxxxxxxxxx>; Thierry > Reding <thierry.reding@xxxxxxxxx>; Philipp Zabel <p.zabel@xxxxxxxxxxxxxx>; > Krzysztof Kozlowski <krzysztof.kozlowski+dt@xxxxxxxxxx>; Conor Dooley > <conor+dt@xxxxxxxxxx>; Hal Feng <hal.feng@xxxxxxxxxxxxxxxx>; Paul > Walmsley <paul.walmsley@xxxxxxxxxx>; Palmer Dabbelt > <palmer@xxxxxxxxxxx>; Albert Ou <aou@xxxxxxxxxxxxxxxxx> > Subject: Re: [PATCH v10 2/4] pwm: opencores: Add PWM driver support > > Hello again, > > On Fri, Dec 22, 2023 at 05:45:46PM +0800, William Qiu wrote: > > +static const struct ocores_pwm_data jh7100_pwm_data = { > > + .get_ch_base = starfive_jh71x0_get_ch_base, }; > > + > > +static const struct ocores_pwm_data jh7110_pwm_data = { > > + .get_ch_base = starfive_jh71x0_get_ch_base, }; > > + > > +static const struct of_device_id ocores_pwm_of_match[] = { > > + { .compatible = "opencores,pwm-v1" }, > > + { .compatible = "starfive,jh7100-pwm", .data = &jh7100_pwm_data}, > > + { .compatible = "starfive,jh7110-pwm", .data = &jh7110_pwm_data}, > > + { /* sentinel */ } > > Looking at the binding > > compatible = "opencores,pwm-v1"; > > isn't a valid configuration. If that is indeed the case and you always have either > starfive,jh7100-pwm or starfive,jh7110-pwm, you can drop the logic to only use > starfive_jh71x0_get_ch_base conditionally. > > Best regards > Uwe > > -- > Pengutronix e.K. | Uwe Kleine-König > | > Industrial Linux Solutions | https://www.pengutronix.de/ | Hi Uwe, I just upload code for OpenCores.. And I need to add the starfive_jh71x0_get_ch_base to compatibility with jh71x0. So even the "opencores,pwm-v1" isn't a valid configuration, but I still need to add it for OpenCores. Best Regards, William