bfa_plog.h 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. /*
  2. * Copyright (c) 2005-2010 Brocade Communications Systems, Inc.
  3. * All rights reserved
  4. * www.brocade.com
  5. *
  6. * Linux driver for Brocade Fibre Channel Host Bus Adapter.
  7. *
  8. * This program is free software; you can redistribute it and/or modify it
  9. * under the terms of the GNU General Public License (GPL) Version 2 as
  10. * published by the Free Software Foundation
  11. *
  12. * This program is distributed in the hope that it will be useful, but
  13. * WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * General Public License for more details.
  16. */
  17. #ifndef __BFA_PORTLOG_H__
  18. #define __BFA_PORTLOG_H__
  19. #include "bfa_fc.h"
  20. #include "bfa_defs.h"
  21. #define BFA_PL_NLOG_ENTS 256
  22. #define BFA_PL_LOG_REC_INCR(_x) ((_x)++, (_x) %= BFA_PL_NLOG_ENTS)
  23. #define BFA_PL_STRING_LOG_SZ 32 /* number of chars in string log */
  24. #define BFA_PL_INT_LOG_SZ 8 /* number of integers in the integer log */
  25. enum bfa_plog_log_type {
  26. BFA_PL_LOG_TYPE_INVALID = 0,
  27. BFA_PL_LOG_TYPE_INT = 1,
  28. BFA_PL_LOG_TYPE_STRING = 2,
  29. };
  30. /*
  31. * the (fixed size) record format for each entry in the portlog
  32. */
  33. struct bfa_plog_rec_s {
  34. u64 tv; /* timestamp */
  35. u8 port; /* Source port that logged this entry */
  36. u8 mid; /* module id */
  37. u8 eid; /* indicates Rx, Tx, IOCTL, etc. bfa_plog_eid */
  38. u8 log_type; /* string/integer log, bfa_plog_log_type_t */
  39. u8 log_num_ints;
  40. /*
  41. * interpreted only if log_type is INT_LOG. indicates number of
  42. * integers in the int_log[] (0-PL_INT_LOG_SZ).
  43. */
  44. u8 rsvd;
  45. u16 misc; /* can be used to indicate fc frame length */
  46. union {
  47. char string_log[BFA_PL_STRING_LOG_SZ];
  48. u32 int_log[BFA_PL_INT_LOG_SZ];
  49. } log_entry;
  50. };
  51. /*
  52. * the following #defines will be used by the logging entities to indicate
  53. * their module id. BFAL will convert the integer value to string format
  54. *
  55. * process to be used while changing the following #defines:
  56. * - Always add new entries at the end
  57. * - define corresponding string in BFAL
  58. * - Do not remove any entry or rearrange the order.
  59. */
  60. enum bfa_plog_mid {
  61. BFA_PL_MID_INVALID = 0,
  62. BFA_PL_MID_DEBUG = 1,
  63. BFA_PL_MID_DRVR = 2,
  64. BFA_PL_MID_HAL = 3,
  65. BFA_PL_MID_HAL_FCXP = 4,
  66. BFA_PL_MID_HAL_UF = 5,
  67. BFA_PL_MID_FCS = 6,
  68. BFA_PL_MID_LPS = 7,
  69. BFA_PL_MID_MAX = 8
  70. };
  71. #define BFA_PL_MID_STRLEN 8
  72. struct bfa_plog_mid_strings_s {
  73. char m_str[BFA_PL_MID_STRLEN];
  74. };
  75. /*
  76. * the following #defines will be used by the logging entities to indicate
  77. * their event type. BFAL will convert the integer value to string format
  78. *
  79. * process to be used while changing the following #defines:
  80. * - Always add new entries at the end
  81. * - define corresponding string in BFAL
  82. * - Do not remove any entry or rearrange the order.
  83. */
  84. enum bfa_plog_eid {
  85. BFA_PL_EID_INVALID = 0,
  86. BFA_PL_EID_IOC_DISABLE = 1,
  87. BFA_PL_EID_IOC_ENABLE = 2,
  88. BFA_PL_EID_PORT_DISABLE = 3,
  89. BFA_PL_EID_PORT_ENABLE = 4,
  90. BFA_PL_EID_PORT_ST_CHANGE = 5,
  91. BFA_PL_EID_TX = 6,
  92. BFA_PL_EID_TX_ACK1 = 7,
  93. BFA_PL_EID_TX_RJT = 8,
  94. BFA_PL_EID_TX_BSY = 9,
  95. BFA_PL_EID_RX = 10,
  96. BFA_PL_EID_RX_ACK1 = 11,
  97. BFA_PL_EID_RX_RJT = 12,
  98. BFA_PL_EID_RX_BSY = 13,
  99. BFA_PL_EID_CT_IN = 14,
  100. BFA_PL_EID_CT_OUT = 15,
  101. BFA_PL_EID_DRIVER_START = 16,
  102. BFA_PL_EID_RSCN = 17,
  103. BFA_PL_EID_DEBUG = 18,
  104. BFA_PL_EID_MISC = 19,
  105. BFA_PL_EID_FIP_FCF_DISC = 20,
  106. BFA_PL_EID_FIP_FCF_CVL = 21,
  107. BFA_PL_EID_LOGIN = 22,
  108. BFA_PL_EID_LOGO = 23,
  109. BFA_PL_EID_TRUNK_SCN = 24,
  110. BFA_PL_EID_MAX
  111. };
  112. #define BFA_PL_ENAME_STRLEN 8
  113. struct bfa_plog_eid_strings_s {
  114. char e_str[BFA_PL_ENAME_STRLEN];
  115. };
  116. #define BFA_PL_SIG_LEN 8
  117. #define BFA_PL_SIG_STR "12pl123"
  118. /*
  119. * per port circular log buffer
  120. */
  121. struct bfa_plog_s {
  122. char plog_sig[BFA_PL_SIG_LEN]; /* Start signature */
  123. u8 plog_enabled;
  124. u8 rsvd[7];
  125. u32 ticks;
  126. u16 head;
  127. u16 tail;
  128. struct bfa_plog_rec_s plog_recs[BFA_PL_NLOG_ENTS];
  129. };
  130. void bfa_plog_init(struct bfa_plog_s *plog);
  131. void bfa_plog_str(struct bfa_plog_s *plog, enum bfa_plog_mid mid,
  132. enum bfa_plog_eid event, u16 misc, char *log_str);
  133. void bfa_plog_intarr(struct bfa_plog_s *plog, enum bfa_plog_mid mid,
  134. enum bfa_plog_eid event, u16 misc,
  135. u32 *intarr, u32 num_ints);
  136. void bfa_plog_fchdr(struct bfa_plog_s *plog, enum bfa_plog_mid mid,
  137. enum bfa_plog_eid event, u16 misc, struct fchs_s *fchdr);
  138. void bfa_plog_fchdr_and_pl(struct bfa_plog_s *plog, enum bfa_plog_mid mid,
  139. enum bfa_plog_eid event, u16 misc,
  140. struct fchs_s *fchdr, u32 pld_w0);
  141. #endif /* __BFA_PORTLOG_H__ */