Skip to content

Commit

Permalink
ARM: dts: aspeed-g6: Add nodes for i3c controllers
Browse files Browse the repository at this point in the history
Add the i3c controller devices to the ast2600 g6 common dts. We add all
6 busses to the common g6 definition, but leave disabled through the
status property, to be enabled per-platform.

Signed-off-by: Jeremy Kerr <jk@codeconstruct.com.au>
  • Loading branch information
jk-ozlabs committed Mar 31, 2023
1 parent 2daad0a commit 05cac24
Showing 1 changed file with 81 additions and 0 deletions.
81 changes: 81 additions & 0 deletions arch/arm/boot/dts/aspeed-g6.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -844,6 +844,13 @@
ranges = <0 0x1e78a000 0x1000>;
};

i3c: bus@1e7a0000 {
compatible = "simple-bus";
#address-cells = <1>;
#size-cells = <1>;
ranges = <0 0x1e7a0000 0x8000>;
};

fsim0: fsi@1e79b000 {
compatible = "aspeed,ast2600-fsi-master", "fsi-master";
reg = <0x1e79b000 0x94>;
Expand Down Expand Up @@ -1110,3 +1117,77 @@
status = "disabled";
};
};

&i3c {
i3c_global: i3c-global {
compatible = "aspeed,ast2600-i3c-global", "simple-mfd", "syscon";
resets = <&syscon ASPEED_RESET_I3C_DMA>;
reg = <0x0 0x1000>;
};

i3c0: i3c-master@2000 {
compatible = "aspeed,ast2600-i3c";
reg = <0x2000 0x1000>;
clocks = <&syscon ASPEED_CLK_GATE_I3C0CLK>;
pinctrl-names = "default";
pinctrl-0 = <&pinctrl_i3c1_default>;
interrupts = <GIC_SPI 102 IRQ_TYPE_LEVEL_HIGH>;
aspeed,global-regs = <&i3c_global 0>;
status = "disabled";
};

i3c1: i3c-master@3000 {
compatible = "aspeed,ast2600-i3c";
reg = <0x3000 0x1000>;
clocks = <&syscon ASPEED_CLK_GATE_I3C1CLK>;
pinctrl-names = "default";
pinctrl-0 = <&pinctrl_i3c2_default>;
interrupts = <GIC_SPI 103 IRQ_TYPE_LEVEL_HIGH>;
aspeed,global-regs = <&i3c_global 1>;
status = "disabled";
};

i3c2: i3c-master@4000 {
compatible = "aspeed,ast2600-i3c";
reg = <0x4000 0x1000>;
clocks = <&syscon ASPEED_CLK_GATE_I3C2CLK>;
pinctrl-names = "default";
pinctrl-0 = <&pinctrl_i3c3_default>;
interrupts = <GIC_SPI 104 IRQ_TYPE_LEVEL_HIGH>;
aspeed,global-regs = <&i3c_global 2>;
status = "disabled";
};

i3c3: i3c-master@5000 {
compatible = "aspeed,ast2600-i3c";
reg = <0x5000 0x1000>;
clocks = <&syscon ASPEED_CLK_GATE_I3C3CLK>;
pinctrl-names = "default";
pinctrl-0 = <&pinctrl_i3c4_default>;
interrupts = <GIC_SPI 105 IRQ_TYPE_LEVEL_HIGH>;
aspeed,global-regs = <&i3c_global 3>;
status = "disabled";
};

i3c4: i3c-master@6000 {
compatible = "aspeed,ast2600-i3c";
reg = <0x6000 0x1000>;
clocks = <&syscon ASPEED_CLK_GATE_I3C4CLK>;
pinctrl-names = "default";
pinctrl-0 = <&pinctrl_i3c5_default>;
interrupts = <GIC_SPI 106 IRQ_TYPE_LEVEL_HIGH>;
aspeed,global-regs = <&i3c_global 4>;
status = "disabled";
};

i3c5: i3c-master@7000 {
compatible = "aspeed,ast2600-i3c";
reg = <0x7000 0x1000>;
clocks = <&syscon ASPEED_CLK_GATE_I3C5CLK>;
pinctrl-names = "default";
pinctrl-0 = <&pinctrl_i3c6_default>;
interrupts = <GIC_SPI 107 IRQ_TYPE_LEVEL_HIGH>;
aspeed,global-regs = <&i3c_global 5>;
status = "disabled";
};
};

0 comments on commit 05cac24

Please sign in to comment.