msgtrace.h 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /*
  2. * Trace messages sent over HBUS
  3. *
  4. * Portions of this code are copyright (c) 2020 Cypress Semiconductor Corporation
  5. *
  6. * Copyright (C) 1999-2020, Broadcom Corporation
  7. *
  8. * Unless you and Broadcom execute a separate written software license
  9. * agreement governing use of this software, this software is licensed to you
  10. * under the terms of the GNU General Public License version 2 (the "GPL"),
  11. * available at http://www.broadcom.com/licenses/GPLv2.php, with the
  12. * following added to such license:
  13. *
  14. * As a special exception, the copyright holders of this software give you
  15. * permission to link this software with independent modules, and to copy and
  16. * distribute the resulting executable under terms of your choice, provided that
  17. * you also meet, for each linked independent module, the terms and conditions of
  18. * the license of that module. An independent module is a module which is not
  19. * derived from this software. The special exception does not apply to any
  20. * modifications of the software.
  21. *
  22. * Notwithstanding the above, under no circumstances may you combine this
  23. * software in any way with any other Broadcom software provided under a license
  24. * other than the GPL, without Broadcom's express prior written consent.
  25. *
  26. *
  27. * <<Broadcom-WL-IPTag/Open:>>
  28. *
  29. * $Id: msgtrace.h 542902 2015-03-22 23:29:48Z $
  30. */
  31. #ifndef _MSGTRACE_H
  32. #define _MSGTRACE_H
  33. #ifndef _TYPEDEFS_H_
  34. #include <typedefs.h>
  35. #endif // endif
  36. /* This marks the start of a packed structure section. */
  37. #include <packed_section_start.h>
  38. #define MSGTRACE_VERSION 1
  39. /* Message trace header */
  40. typedef BWL_PRE_PACKED_STRUCT struct msgtrace_hdr {
  41. uint8 version;
  42. uint8 trace_type;
  43. #define MSGTRACE_HDR_TYPE_MSG 0
  44. #define MSGTRACE_HDR_TYPE_LOG 1
  45. uint16 len; /* Len of the trace */
  46. uint32 seqnum; /* Sequence number of message. Useful if the messsage has been lost
  47. * because of DMA error or a bus reset (ex: SDIO Func2)
  48. */
  49. /* Msgtrace type only */
  50. uint32 discarded_bytes; /* Number of discarded bytes because of trace overflow */
  51. uint32 discarded_printf; /* Number of discarded printf because of trace overflow */
  52. } BWL_POST_PACKED_STRUCT msgtrace_hdr_t;
  53. #define MSGTRACE_HDRLEN sizeof(msgtrace_hdr_t)
  54. /* This marks the end of a packed structure section. */
  55. #include <packed_section_end.h>
  56. #endif /* _MSGTRACE_H */