Unverified Commit 63067ce8 authored by Usama Arif's avatar Usama Arif
Browse files

feat(tc0): update mhuv2 dts node to align with upstream driver



The MHUv2 driver has been merged upstream, and it has a different
dts format compared to what was previously used. This patch aligns
with the upstream driver.
Signed-off-by: default avatarUsama Arif <usama.arif@arm.com>
Change-Id: Ic963c21c1475d301c3a75686718e6e17841831c3
parent 64b8db7e
...@@ -188,31 +188,32 @@ ...@@ -188,31 +188,32 @@
}; };
mbox_db_rx: mhu@45010000 { mbox_db_rx: mhu@45010000 {
compatible = "arm,mhuv2","arm,primecell"; compatible = "arm,mhuv2-rx","arm,primecell";
reg = <0x0 0x45010000 0x0 0x1000>; reg = <0x0 0x45010000 0x0 0x1000>;
clocks = <&soc_refclk100mhz>; clocks = <&soc_refclk100mhz>;
clock-names = "apb_pclk"; clock-names = "apb_pclk";
#mbox-cells = <1>; #mbox-cells = <2>;
interrupts = <0 317 4>; interrupts = <0 317 4>;
interrupt-names = "mhu_rx"; interrupt-names = "mhu_rx";
mhu-protocol = "doorbell"; mhu-protocol = "doorbell";
arm,mhuv2-protocols = <0 1>;
}; };
mbox_db_tx: mhu@45000000 { mbox_db_tx: mhu@45000000 {
compatible = "arm,mhuv2","arm,primecell"; compatible = "arm,mhuv2-tx","arm,primecell";
reg = <0x0 0x45000000 0x0 0x1000>; reg = <0x0 0x45000000 0x0 0x1000>;
clocks = <&soc_refclk100mhz>; clocks = <&soc_refclk100mhz>;
clock-names = "apb_pclk"; clock-names = "apb_pclk";
#mbox-cells = <1>; #mbox-cells = <2>;
interrupt-names = "mhu_tx"; interrupt-names = "mhu_tx";
mhu-protocol = "doorbell"; mhu-protocol = "doorbell";
arm,mhuv2-protocols = <0 1>;
}; };
scmi { scmi {
compatible = "arm,scmi"; compatible = "arm,scmi";
method = "mailbox-doorbell";
mbox-names = "tx", "rx"; mbox-names = "tx", "rx";
mboxes = <&mbox_db_tx 0 &mbox_db_rx 0>; mboxes = <&mbox_db_tx 0 0 &mbox_db_rx 0 0 >;
shmem = <&cpu_scp_scmi_mem &cpu_scp_scmi_mem>; shmem = <&cpu_scp_scmi_mem &cpu_scp_scmi_mem>;
#address-cells = <1>; #address-cells = <1>;
#size-cells = <0>; #size-cells = <0>;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment