dts: Rename k64f-pinmux to kinetis-pinmux

Multiple Kinetis SoCs have the same pinmux hardware as the k64 and can
use the same mcux driver, so rename the dts to be more generic.

Signed-off-by: Maureen Helm <maureen.helm@nxp.com>
This commit is contained in:
Maureen Helm 2017-06-19 20:43:45 -05:00 committed by Kumar Gala
commit 0dd852bc3c
5 changed files with 14 additions and 46 deletions

View file

@ -169,14 +169,14 @@
}; };
pinmux_a: pinmux@40049000 { pinmux_a: pinmux@40049000 {
compatible = "nxp,k64f-pinmux"; compatible = "nxp,kinetis-pinmux";
reg = <0x40049000 0xd0>; reg = <0x40049000 0xd0>;
clocks = <&sim 0x1038 9>; clocks = <&sim 0x1038 9>;
}; };
pinmux_b: pinmux@4004a000 { pinmux_b: pinmux@4004a000 {
compatible = "nxp,k64f-pinmux"; compatible = "nxp,kinetis-pinmux";
reg = <0x4004a000 0xd0>; reg = <0x4004a000 0xd0>;
clocks = <&sim 0x1038 10>; clocks = <&sim 0x1038 10>;
@ -203,19 +203,19 @@
}; };
pinmux_c: pinmux@4004b000 { pinmux_c: pinmux@4004b000 {
compatible = "nxp,k64f-pinmux"; compatible = "nxp,kinetis-pinmux";
reg = <0x4004b000 0xd0>; reg = <0x4004b000 0xd0>;
clocks = <&sim 0x1038 11>; clocks = <&sim 0x1038 11>;
}; };
pinmux_d: pinmux@4004c000 { pinmux_d: pinmux@4004c000 {
compatible = "nxp,k64f-pinmux"; compatible = "nxp,kinetis-pinmux";
reg = <0x4004c000 0xd0>; reg = <0x4004c000 0xd0>;
clocks = <&sim 0x1038 12>; clocks = <&sim 0x1038 12>;
}; };
pinmux_e: pinmux@4004d000 { pinmux_e: pinmux@4004d000 {
compatible = "nxp,k64f-pinmux"; compatible = "nxp,kinetis-pinmux";
reg = <0x4004d000 0xd0>; reg = <0x4004d000 0xd0>;
clocks = <&sim 0x1038 13>; clocks = <&sim 0x1038 13>;
}; };

View file

@ -57,7 +57,7 @@
}; };
pinmux_a: pinmux@40049000 { pinmux_a: pinmux@40049000 {
compatible = "nxp,kw41z-pinmux"; compatible = "nxp,kinetis-pinmux";
reg = <0x40049000 0xa4>; reg = <0x40049000 0xa4>;
clocks = <&sim 0x1038 9>; clocks = <&sim 0x1038 9>;
@ -70,13 +70,13 @@
}; };
pinmux_b: pinmux@4004a000 { pinmux_b: pinmux@4004a000 {
compatible = "nxp,kw41z-pinmux"; compatible = "nxp,kinetis-pinmux";
reg = <0x4004a000 0xa4>; reg = <0x4004a000 0xa4>;
clocks = <&sim 0x1038 10>; clocks = <&sim 0x1038 10>;
}; };
pinmux_c: pinmux@4004b000 { pinmux_c: pinmux@4004b000 {
compatible = "nxp,kw41z-pinmux"; compatible = "nxp,kinetis-pinmux";
reg = <0x4004b000 0xa4>; reg = <0x4004b000 0xa4>;
clocks = <&sim 0x1038 11>; clocks = <&sim 0x1038 11>;

View file

@ -57,7 +57,7 @@
}; };
pinmux_a: pinmux@40049000 { pinmux_a: pinmux@40049000 {
compatible = "nxp,kw41z-pinmux"; compatible = "nxp,kinetis-pinmux";
reg = <0x40049000 0xa4>; reg = <0x40049000 0xa4>;
clocks = <&sim 0x1038 9>; clocks = <&sim 0x1038 9>;
@ -70,13 +70,13 @@
}; };
pinmux_b: pinmux@4004a000 { pinmux_b: pinmux@4004a000 {
compatible = "nxp,kw41z-pinmux"; compatible = "nxp,kinetis-pinmux";
reg = <0x4004a000 0xa4>; reg = <0x4004a000 0xa4>;
clocks = <&sim 0x1038 10>; clocks = <&sim 0x1038 10>;
}; };
pinmux_c: pinmux@4004b000 { pinmux_c: pinmux@4004b000 {
compatible = "nxp,kw41z-pinmux"; compatible = "nxp,kinetis-pinmux";
reg = <0x4004b000 0xa4>; reg = <0x4004b000 0xa4>;
clocks = <&sim 0x1038 11>; clocks = <&sim 0x1038 11>;

View file

@ -1,16 +1,16 @@
--- ---
title: K64 Pinmux title: Kinetis Pinmux
version: 0.1 version: 0.1
description: > description: >
This is a representation of the K64 Pinmux node This is a representation of the Kinetis Pinmux node
properties: properties:
- compatible: - compatible:
type: string type: string
category: required category: required
description: compatible strings description: compatible strings
constraint: "nxp,k64f-pinmux" constraint: "nxp,kinetis-pinmux"
- reg: - reg:
type: int type: int

View file

@ -1,32 +0,0 @@
---
title: KW41Z Pinmux
version: 0.1
description: >
This is a representation of the KW41Z Pinmux node
properties:
- compatible:
type: string
category: required
description: compatible strings
constraint: "nxp,kw41z-pinmux"
- reg:
type: int
description: mmio register space
generation: define
category: required
- clocks:
type: array
description: clock gate information
generation: define
category: required
cell_string: PINMUX
"#cells":
- pin
- function
...