Skip to content

Commit 5a47152

Browse files
Aidan MacDonaldthierryreding
authored andcommitted
pwm: jz4740: Add support for X1000 SoC
The X1000 has the same TCU / PWM hardware as other Ingenic SoCs, but it has only 5 channels. Signed-off-by: Aidan MacDonald <aidanmacdonald.0x0@gmail.com> Signed-off-by: Thierry Reding <thierry.reding@gmail.com>
1 parent 635d324 commit 5a47152

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

drivers/pwm/pwm-jz4740.c

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -256,10 +256,15 @@ static const struct soc_info __maybe_unused jz4725b_soc_info = {
256256
.num_pwms = 6,
257257
};
258258

259+
static const struct soc_info __maybe_unused x1000_soc_info = {
260+
.num_pwms = 5,
261+
};
262+
259263
#ifdef CONFIG_OF
260264
static const struct of_device_id jz4740_pwm_dt_ids[] = {
261265
{ .compatible = "ingenic,jz4740-pwm", .data = &jz4740_soc_info },
262266
{ .compatible = "ingenic,jz4725b-pwm", .data = &jz4725b_soc_info },
267+
{ .compatible = "ingenic,x1000-pwm", .data = &x1000_soc_info },
263268
{},
264269
};
265270
MODULE_DEVICE_TABLE(of, jz4740_pwm_dt_ids);

0 commit comments

Comments
 (0)