New device tree entry for smem mailbox DLKM. Change-Id: I01592cd0cd4e0b2a9a6b618c9d9beb42baf8dbc0 Signed-off-by: Tyler Wear <quic_twear@quicinc.com>
23 lines
607 B
Plaintext
23 lines
607 B
Plaintext
// SPDX-License-Identifier: BSD-3-Clause
|
|
/*
|
|
* Copyright (c) 2024 Qualcomm Innovation Center, Inc. All rights reserved.
|
|
*/
|
|
|
|
&soc {
|
|
smem_mailbox {
|
|
compatible = "qcom,smem_mailbox";
|
|
|
|
qcom,smem-states = <&smp2p_smem_mailbox_1_out 0>;
|
|
qcom,smem-state-names = "smem-mailbox-smp2p-out";
|
|
|
|
interrupts-extended = <&smp2p_smem_mailbox_1_in 0 0>,
|
|
<&smp2p_smem_mailbox_1_in 1 0>,
|
|
<&smp2p_smem_mailbox_1_in 2 0>,
|
|
<&smp2p_smem_mailbox_1_in 3 0>;
|
|
interrupt-names = "smem-mailbox-smp2p-1-in",
|
|
"smem-mailbox-smp2p-2-in",
|
|
"smem-mailbox-smp2p-3-in",
|
|
"smem-mailbox-smp2p-4-in";
|
|
};
|
|
};
|