Skip to content

Commit

Permalink
dts: arm: ti: cc23x0: Add LGPT support
Browse files Browse the repository at this point in the history
Add support for LGPT0, LGPT1, LGPT2 and LGPT3 to cc23x0 SoC.

Signed-off-by: Stoyan Bogdanov <[email protected]>
  • Loading branch information
bogdanovs committed Jan 24, 2025
1 parent f7ae97e commit fef5183
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions dts/arm/ti/cc23x0.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,42 @@
clocks = <&sysclk>;
status = "disabled";
};

lgpt0: lgpt@40060000 {
compatible = "ti,cc23x0-lgpt";
reg = <0x40060000 0x1d2>;
max-top-value = <0xffff>;
interrupts = <13 0>;
clk-prescale = <0>;
status = "disabled";
};

lgpt1: lgpt@40061000 {
compatible = "ti,cc23x0-lgpt";
reg = <0x40061000 0x1d2>;
max-top-value = <0xffff>;
interrupts = <14 0>;
clk-prescale = <0>;
status = "disabled";
};

lgpt2: lgpt@40062000 {
compatible = "ti,cc23x0-lgpt";
reg = <0x40062000 0x1d2>;
max-top-value = <0xffff>;
interrupts = <17 0>;
clk-prescale = <0>;
status = "disabled";
};

lgpt3: lgpt@40063000 {
compatible = "ti,cc23x0-lgpt";
reg = <0x40063000 0x1d2>;
max-top-value = <0xffffff>;
interrupts = <18 0>;
clk-prescale = <0>;
status = "disabled";
};
};
};

Expand Down

0 comments on commit fef5183

Please sign in to comment.