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

s4.h (290B)


      1/* SPDX-License-Identifier: GPL-2.0+ */
      2/*
      3 * Copyright 2021 NXP
      4 *
      5 * Header file for the IPC implementation.
      6 */
      7
      8#ifndef _S4_IPC_H
      9#define _S4_IPC_H
     10
     11struct imx_s4_ipc;
     12
     13struct imx_s4_rpc_msg {
     14	uint8_t ver;
     15	uint8_t size;
     16	uint8_t cmd;
     17	uint8_t tag;
     18} __packed;
     19
     20#endif /* _S4_IPC_H */