Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dts: bindings: dma: Change the property names in the bindings #83769

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions doc/releases/migration-guide-4.1.rst
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,11 @@ Counter
Controller Area Network (CAN)
=============================

DMA
===
* Renamed the devicetree propertys ``nxp,a_on`` and ``dma_channels``
to ``nxp,a-on`` and ``dma-channels``.

Display
=======

Expand Down
2 changes: 1 addition & 1 deletion dts/arm/nxp/nxp_rt10xx.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -885,7 +885,7 @@
dma-channels = <32>;
dma-requests = <128>;
nxp,mem2mem;
nxp,a_on;
nxp,a-on;
reg = <0x400E8000 0x4000>,
<0x400EC000 0x4000>;
interrupts = <0 0>, <1 0>, <2 0>, <3 0>,
Expand Down
4 changes: 2 additions & 2 deletions dts/arm/nxp/nxp_rt11xx.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -1048,7 +1048,7 @@
dma-channels = <32>;
dma-requests = <208>;
nxp,mem2mem;
nxp,a_on;
nxp,a-on;
reg = <0x40070000 0x4000>,
<0x40074000 0x4000>;
clocks = <&ccm IMX_CCM_EDMA_CLK 0x7C 0x000000C0>;
Expand All @@ -1068,7 +1068,7 @@
dma-channels = <32>;
dma-requests = <208>;
nxp,mem2mem;
nxp,a_on;
nxp,a-on;
reg = <0x40c14000 0x4000>,
<0x40c18000 0x4000>;
clocks = <&ccm IMX_CCM_EDMA_LPSR_CLK 0x7C 0x000000C0>;
Expand Down
2 changes: 1 addition & 1 deletion dts/arm/silabs/efr32bg2x.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@
compatible = "silabs,ldma";
reg = <0x40040000 0x4000>;
#dma-cells = <3>;
dma_channels = <8>;
dma-channels = <8>;
status = "disabled";
};

Expand Down
2 changes: 1 addition & 1 deletion dts/arm/silabs/efr32mg21.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@
reg = <0x40040000 0x4000>;
interrupts = <21 0>;
#dma-cells = <3>;
dma_channels = <8>;
dma-channels = <8>;
status = "disabled";
};

Expand Down
2 changes: 1 addition & 1 deletion dts/arm/silabs/efr32mg24.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@
reg = <0x40040000 0x4000>;
interrupts = <21 0>;
#dma-cells = <3>;
dma_channels = <8>;
dma-channels = <8>;
status = "disabled";
};

Expand Down
2 changes: 1 addition & 1 deletion dts/bindings/dma/nxp,mcux-edma.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ properties:
type: boolean
description: If the DMA controller supports memory to memory transfer

nxp,a_on:
nxp,a-on:
type: boolean
description: If the DMA controller supports always on

Expand Down
2 changes: 1 addition & 1 deletion dts/bindings/dma/silabs,ldma.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ properties:
interrupts:
required: true

dma_channels:
dma-channels:
type: int
required: true
Loading