Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6ee56886 authored by Chris Lew's avatar Chris Lew Committed by Gerrit - the friendly Code Review server
Browse files

mailbox: apcs-ipc: Add support for sdm855



The qcom-apcs-ipc-mailbox driver maps the shared apps
register to trigger interrupts to remote subsystems. This
change adds the correct configuration for sdm855.

Change-Id: I5bbff9d454500315980e86c201eea8aa17454db3
Signed-off-by: default avatarChris Lew <clew@codeaurora.org>
parent 14eaa1c6
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -9,7 +9,8 @@ platforms.
	Value type: <string>
	Definition: must be one of:
		    "qcom,msm8916-apcs-kpss-global",
		    "qcom,msm8996-apcs-hmss-global"
		    "qcom,msm8996-apcs-hmss-global",
		    "qcom,sdm855-apcs-hmss-global"

- reg:
	Usage: required
+1 −0
Original line number Diff line number Diff line
@@ -100,6 +100,7 @@ static int qcom_apcs_ipc_remove(struct platform_device *pdev)
static const struct of_device_id qcom_apcs_ipc_of_match[] = {
	{ .compatible = "qcom,msm8916-apcs-kpss-global", .data = (void *)8 },
	{ .compatible = "qcom,msm8996-apcs-hmss-global", .data = (void *)16 },
	{ .compatible = "qcom,sdm855-apcs-hmss-global", .data = (void *) 12 },
	{}
};
MODULE_DEVICE_TABLE(of, qcom_apcs_ipc_of_match);