cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

arm_mhuv2_message.h (387B)


      1// SPDX-License-Identifier: GPL-2.0
      2/*
      3 * ARM MHUv2 Mailbox Message
      4 *
      5 * Copyright (C) 2020 Arm Ltd.
      6 * Copyright (C) 2020 Linaro Ltd.
      7 */
      8
      9#ifndef _LINUX_ARM_MHUV2_MESSAGE_H_
     10#define _LINUX_ARM_MHUV2_MESSAGE_H_
     11
     12#include <linux/types.h>
     13
     14/* Data structure for data-transfer protocol */
     15struct arm_mhuv2_mbox_msg {
     16	void *data;
     17	size_t len;
     18};
     19
     20#endif /* _LINUX_ARM_MHUV2_MESSAGE_H_ */