Skip to content

Commit 0aa73c8

Browse files
manuarguekartben
authored andcommitted
dts: bindings: rename nxp,kinetis-dspi compatible
Rename "nxp,kinetis-dspi" compatible to "nxp,dspi" to remove the device family from its name. Signed-off-by: Manuel Argüelles <manuel.arguelles@nxp.com>
1 parent d68b547 commit 0aa73c8

File tree

11 files changed

+25
-25
lines changed

11 files changed

+25
-25
lines changed

drivers/spi/Kconfig.mcux_dspi

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,21 @@
55
# SPDX-License-Identifier: Apache-2.0
66

77
config SPI_MCUX_DSPI
8-
bool "MCUX SPI driver"
8+
bool "MCUX DSPI driver"
99
default y
10-
depends on DT_HAS_NXP_KINETIS_DSPI_ENABLED
10+
depends on DT_HAS_NXP_DSPI_ENABLED
1111
depends on CLOCK_CONTROL
1212
select PINCTRL
1313
help
14-
Enable support for mcux spi driver.
14+
Enable the MCUX DSPI driver.
1515

1616
if SPI_MCUX_DSPI
1717

1818
config DSPI_MCUX_EDMA
1919
bool "ENABLE EDMA for DSPI driver"
2020
depends on HAS_MCUX && HAS_MCUX_EDMA
2121
help
22-
Enable the MCUX DSPI driver.
22+
Enable DMA support for the MCUX DSPI driver.
2323

2424
if DSPI_MCUX_EDMA
2525

drivers/spi/spi_mcux_dspi.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* SPDX-License-Identifier: Apache-2.0
66
*/
77

8-
#define DT_DRV_COMPAT nxp_kinetis_dspi
8+
#define DT_DRV_COMPAT nxp_dspi
99

1010
#include <errno.h>
1111
#include <zephyr/drivers/spi.h>

dts/arm/nxp/nxp_k2x.dtsi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@
274274
};
275275

276276
spi0: spi@4002c000 {
277-
compatible = "nxp,kinetis-dspi";
277+
compatible = "nxp,dspi";
278278
reg = <0x4002c000 0x88>;
279279
interrupts = <26 3>;
280280
clocks = <&sim KINETIS_SIM_BUS_CLK 0x103C 12>;
@@ -284,7 +284,7 @@
284284
};
285285

286286
spi1: spi@4002d000 {
287-
compatible = "nxp,kinetis-dspi";
287+
compatible = "nxp,dspi";
288288
reg = <0x4002d000 0x88>;
289289
interrupts = <27 3>;
290290
clocks = <&sim KINETIS_SIM_BUS_CLK 0x103C 13>;

dts/arm/nxp/nxp_k6x.dtsi

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@
335335
};
336336

337337
spi0: spi@4002c000 {
338-
compatible = "nxp,kinetis-dspi";
338+
compatible = "nxp,dspi";
339339
reg = <0x4002c000 0x88>;
340340
interrupts = <26 3>;
341341
dmas = <&edma0 0 14>, <&edma0 0 15>;
@@ -349,7 +349,7 @@
349349
};
350350

351351
spi1: spi@4002d000 {
352-
compatible = "nxp,kinetis-dspi";
352+
compatible = "nxp,dspi";
353353
reg = <0x4002d000 0x88>;
354354
interrupts = <27 3>;
355355
dmas = <&edma0 0 16>, <&edma0 0 16>;
@@ -364,7 +364,7 @@
364364
};
365365

366366
spi2: spi@400ac000 {
367-
compatible = "nxp,kinetis-dspi";
367+
compatible = "nxp,dspi";
368368
reg = <0x400ac000 0x88>;
369369
interrupts = <65 3>;
370370
dmas = <&edma0 0 38>, <&edma0 0 39>;

dts/arm/nxp/nxp_k8x.dtsi

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@
335335
};
336336

337337
spi0: spi@4002c000 {
338-
compatible = "nxp,kinetis-dspi";
338+
compatible = "nxp,dspi";
339339
reg = <0x4002c000 0x1000>;
340340
interrupts = <26 3>;
341341
clocks = <&sim KINETIS_SIM_BUS_CLK 0x103c 12>;
@@ -345,7 +345,7 @@
345345
};
346346

347347
spi1: spi@4002d000 {
348-
compatible = "nxp,kinetis-dspi";
348+
compatible = "nxp,dspi";
349349
reg = <0x4002d000 0x1000>;
350350
interrupts = <27 3>;
351351
clocks = <&sim KINETIS_SIM_BUS_CLK 0x103c 13>;
@@ -355,7 +355,7 @@
355355
};
356356

357357
spi2: spi@400ac000 {
358-
compatible = "nxp,kinetis-dspi";
358+
compatible = "nxp,dspi";
359359
reg = <0x400ac000 0x1000>;
360360
interrupts = <65 3>;
361361
clocks = <&sim KINETIS_SIM_BUS_CLK 0x1030 12>;

dts/arm/nxp/nxp_kv5x.dtsi

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@
239239
};
240240

241241
spi0: spi@4002c000 {
242-
compatible = "nxp,kinetis-dspi";
242+
compatible = "nxp,dspi";
243243
reg = <0x4002c000 0x1000>;
244244
interrupts = <26 3>;
245245
status = "disabled";
@@ -249,7 +249,7 @@
249249
};
250250

251251
spi1: spi@4002d000 {
252-
compatible = "nxp,kinetis-dspi";
252+
compatible = "nxp,dspi";
253253
reg = <0x4002d000 0x1000>;
254254
interrupts = <27 3>;
255255
status = "disabled";
@@ -259,7 +259,7 @@
259259
};
260260

261261
spi2: spi@400ac000 {
262-
compatible = "nxp,kinetis-dspi";
262+
compatible = "nxp,dspi";
263263
reg = <0x400ac000 0x1000>;
264264
interrupts = <65 3>;
265265
status = "disabled";

dts/arm/nxp/nxp_kw2xd.dtsi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@
256256
};
257257

258258
spi0: spi@4002c000 {
259-
compatible = "nxp,kinetis-dspi";
259+
compatible = "nxp,dspi";
260260
reg = <0x4002c000 0x88>;
261261
interrupts = <26 3>;
262262
clocks = <&sim KINETIS_SIM_BUS_CLK 0x103C 12>;
@@ -266,7 +266,7 @@
266266
};
267267

268268
spi1: spi@4002d000 {
269-
compatible = "nxp,kinetis-dspi";
269+
compatible = "nxp,dspi";
270270
reg = <0x4002d000 0x88>;
271271
interrupts = <27 3>;
272272
clocks = <&sim KINETIS_SIM_BUS_CLK 0x103C 13>;

dts/arm/nxp/nxp_kw40z.dtsi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@
171171
};
172172

173173
spi0: spi@4002c000 {
174-
compatible = "nxp,kinetis-dspi";
174+
compatible = "nxp,dspi";
175175
reg = <0x4002c000 0x9C>;
176176
interrupts = <10 3>;
177177
clocks = <&sim KINETIS_SIM_BUS_CLK 0x103C 12>;
@@ -182,7 +182,7 @@
182182
};
183183

184184
spi1: spi@4002d000 {
185-
compatible = "nxp,kinetis-dspi";
185+
compatible = "nxp,dspi";
186186
reg = <0x4002d000 0x9C>;
187187
interrupts = <29 3>;
188188
clocks = <&sim KINETIS_SIM_BUS_CLK 0x103C 13>;

dts/arm/nxp/nxp_kw41z.dtsi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@
178178
};
179179

180180
spi0: spi@4002c000 {
181-
compatible = "nxp,kinetis-dspi";
181+
compatible = "nxp,dspi";
182182
reg = <0x4002c000 0x9C>;
183183
interrupts = <10 3>;
184184
clocks = <&sim KINETIS_SIM_BUS_CLK 0x103C 12>;
@@ -189,7 +189,7 @@
189189
};
190190

191191
spi1: spi@4002d000 {
192-
compatible = "nxp,kinetis-dspi";
192+
compatible = "nxp,dspi";
193193
reg = <0x4002d000 0x9C>;
194194
interrupts = <29 3>;
195195
clocks = <&sim KINETIS_SIM_BUS_CLK 0x103C 13>;

dts/arm/nxp/nxp_s32z27x_r52.dtsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -561,7 +561,7 @@
561561
};
562562

563563
dspi0: spi@40340000 {
564-
compatible = "nxp,kinetis-dspi";
564+
compatible = "nxp,dspi";
565565
reg = <0x40340000 0x10000>;
566566
interrupts = <GIC_SPI 204 IRQ_TYPE_LEVEL IRQ_DEFAULT_PRIORITY>;
567567
clocks = <&clock NXP_S32_MSCDSPI_CLK>;

0 commit comments

Comments
 (0)