shm_ipc_defs.h 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /*
  2. * Copyright (c) 2015-2016 Quantenna Communications, Inc.
  3. * All rights reserved.
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License
  7. * as published by the Free Software Foundation; either version 2
  8. * of the License, or (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. */
  16. #ifndef _QTN_FMAC_SHM_IPC_DEFS_H_
  17. #define _QTN_FMAC_SHM_IPC_DEFS_H_
  18. #include <linux/types.h>
  19. #define QTN_IPC_REG_HDR_SZ (32)
  20. #define QTN_IPC_REG_SZ (4096)
  21. #define QTN_IPC_MAX_DATA_SZ (QTN_IPC_REG_SZ - QTN_IPC_REG_HDR_SZ)
  22. enum qtnf_shm_ipc_region_flags {
  23. QTNF_SHM_IPC_NEW_DATA = BIT(0),
  24. QTNF_SHM_IPC_ACK = BIT(1),
  25. };
  26. struct qtnf_shm_ipc_region_header {
  27. __le32 flags;
  28. __le16 data_len;
  29. } __packed;
  30. union qtnf_shm_ipc_region_headroom {
  31. struct qtnf_shm_ipc_region_header hdr;
  32. u8 headroom[QTN_IPC_REG_HDR_SZ];
  33. } __packed;
  34. struct qtnf_shm_ipc_region {
  35. union qtnf_shm_ipc_region_headroom headroom;
  36. u8 data[QTN_IPC_MAX_DATA_SZ];
  37. } __packed;
  38. #endif /* _QTN_FMAC_SHM_IPC_DEFS_H_ */