Merge "mailbox: Add snapshot of MSM QMP driver"

This commit is contained in:
qctecmdr 2022-06-03 12:55:08 -07:00 committed by Gerrit - the friendly Code Review server
commit c44a67c2ce
4 changed files with 1175 additions and 0 deletions

View File

@ -294,4 +294,12 @@ config QCOM_IPCC
acts as an interrupt controller for receiving interrupts from clients.
Say Y here if you want to build this driver.
config MSM_QMP
tristate "QTI Mailbox Protocol(QMP)"
help
Say yes to add support for the QTI Mailbox Protocol mailbox driver.
QMP is a lightweight communication protocol for sending messages to
a remote processor. This protocol fits into the Generic Mailbox
Framework. QMP uses a mailbox located in shared memory.
endif

View File

@ -62,3 +62,5 @@ obj-$(CONFIG_SPRD_MBOX) += sprd-mailbox.o
obj-$(CONFIG_QCOM_IPCC) += qcom-ipcc.o
obj-$(CONFIG_APPLE_MAILBOX) += apple-mailbox.o
obj-$(CONFIG_MSM_QMP) += msm_qmp.o

1144
drivers/mailbox/msm_qmp.c Normal file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,21 @@
/* SPDX-License-Identifier: GPL-2.0-only */
/*
* Copyright (c) 2017-2021, The Linux Foundation. All rights reserved.
*/
#ifndef _QMP_H_
#define _QMP_H_
#include <linux/types.h>
/**
* struct qmp_pkt - Packet structure to be used for TX and RX with QMP
* @size size of data
* @data Buffer holding data of this packet
*/
struct qmp_pkt {
u32 size;
void *data;
};
#endif /* _QMP_H_ */