]> Git Repo - linux.git/blob - include/linux/armada-37xx-rwtm-mailbox.h
KVM: x86: fix CPUID entries returned by KVM_GET_CPUID2 ioctl
[linux.git] / include / linux / armada-37xx-rwtm-mailbox.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * rWTM BIU Mailbox driver for Armada 37xx
4  *
5  * Author: Marek Behun <[email protected]>
6  */
7
8 #ifndef _LINUX_ARMADA_37XX_RWTM_MAILBOX_H_
9 #define _LINUX_ARMADA_37XX_RWTM_MAILBOX_H_
10
11 #include <linux/types.h>
12
13 struct armada_37xx_rwtm_tx_msg {
14         u16 command;
15         u32 args[16];
16 };
17
18 struct armada_37xx_rwtm_rx_msg {
19         u32 retval;
20         u32 status[16];
21 };
22
23 #endif /* _LINUX_ARMADA_37XX_RWTM_MAILBOX_H_ */
This page took 0.02546 seconds and 4 git commands to generate.