Repository URL to install this package:
Version:
1:5.16.11-64 ▾
|
linux-headers-5.16.11-kstr-sama5d27
/
usr
/
src
/
linux-headers-5.16.11-kstr-sama5d27
/
include
/
linux
/
mailbox
/
miv_ihc_message.h
|
---|
// SPDX-License-Identifier: GPL-2.0
/*
* Mi-V Inter-hart communication (IHC) message
*
*Copyright (c) 2021 Microchip Technology Inc. All rights reserved.
*/
#ifndef _LINUX_MIV_IHC_H_
#define _LINUX_MIV_IHC_H_
#include <linux/types.h>
/* Data structure for data-transfer protocol */
#define IHC_MAX_MESSAGE_SIZE 4U
struct miv_ihc_msg {
u32 msg[IHC_MAX_MESSAGE_SIZE];
};
#endif /* _LINUX_MIV_IHC_H_ */