
[ Upstream commit 9e7f5ee1137397def6580461e27e5efcb68183ee ] A number of sub-mailbox node names in various OMAP2+ dts files are currently using underscores. This is not adhering to the node name convention, fix all of these to use hiphens. These nodes are already using the prefix mbox, so they will be in compliance with the sub-mailbox node name convention being added in the OMAP Mailbox YAML binding as well. Signed-off-by: Suman Anna <s-anna@ti.com> Signed-off-by: Tony Lindgren <tony@atomide.com> Signed-off-by: Sasha Levin <sashal@kernel.org>
40 lines
697 B
Plaintext
40 lines
697 B
Plaintext
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* Common IPU and DSP data for TI DRA7xx/AM57xx platforms
|
|
*/
|
|
|
|
&mailbox5 {
|
|
status = "okay";
|
|
mbox_ipu1_ipc3x: mbox-ipu1-ipc3x {
|
|
status = "okay";
|
|
};
|
|
mbox_dsp1_ipc3x: mbox-dsp1-ipc3x {
|
|
status = "okay";
|
|
};
|
|
};
|
|
|
|
&mailbox6 {
|
|
status = "okay";
|
|
mbox_ipu2_ipc3x: mbox-ipu2-ipc3x {
|
|
status = "okay";
|
|
};
|
|
};
|
|
|
|
&ipu2 {
|
|
mboxes = <&mailbox6 &mbox_ipu2_ipc3x>;
|
|
ti,timers = <&timer3>;
|
|
ti,watchdog-timers = <&timer4>, <&timer9>;
|
|
};
|
|
|
|
&ipu1 {
|
|
mboxes = <&mailbox5 &mbox_ipu1_ipc3x>;
|
|
ti,timers = <&timer11>;
|
|
ti,watchdog-timers = <&timer7>, <&timer8>;
|
|
};
|
|
|
|
&dsp1 {
|
|
mboxes = <&mailbox5 &mbox_dsp1_ipc3x>;
|
|
ti,timers = <&timer5>;
|
|
ti,watchdog-timers = <&timer10>;
|
|
};
|