bfa_aen.h 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. /*
  2. * Copyright (c) 2005-2009 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_AEN_H__
  18. #define __BFA_AEN_H__
  19. #include "defs/bfa_defs_aen.h"
  20. #include "defs/bfa_defs_status.h"
  21. #include "cs/bfa_debug.h"
  22. #define BFA_AEN_MAX_ENTRY 512
  23. extern int bfa_aen_max_cfg_entry;
  24. struct bfa_aen_s {
  25. void *bfad;
  26. int max_entry;
  27. int write_index;
  28. int read_index;
  29. int bfad_num;
  30. int seq_num;
  31. void (*aen_cb_notify)(void *bfad);
  32. void (*gettimeofday)(struct bfa_timeval_s *tv);
  33. struct bfa_trc_mod_s *trcmod;
  34. int app_ri[BFA_AEN_MAX_APP]; /* For multiclient support */
  35. struct bfa_aen_entry_s list[BFA_AEN_MAX_ENTRY]; /* Must be the last */
  36. };
  37. /**
  38. * Public APIs
  39. */
  40. static inline void
  41. bfa_aen_set_max_cfg_entry(int max_entry)
  42. {
  43. bfa_aen_max_cfg_entry = max_entry;
  44. }
  45. static inline int
  46. bfa_aen_get_max_cfg_entry(void)
  47. {
  48. return bfa_aen_max_cfg_entry;
  49. }
  50. static inline int
  51. bfa_aen_get_meminfo(void)
  52. {
  53. return sizeof(struct bfa_aen_entry_s) * bfa_aen_get_max_cfg_entry();
  54. }
  55. static inline int
  56. bfa_aen_get_wi(struct bfa_aen_s *aen)
  57. {
  58. return aen->write_index;
  59. }
  60. static inline int
  61. bfa_aen_get_ri(struct bfa_aen_s *aen)
  62. {
  63. return aen->read_index;
  64. }
  65. static inline int
  66. bfa_aen_fetch_count(struct bfa_aen_s *aen, enum bfa_aen_app app_id)
  67. {
  68. bfa_assert((app_id < BFA_AEN_MAX_APP) && (app_id >= bfa_aen_app_bcu));
  69. return ((aen->write_index + aen->max_entry) - aen->app_ri[app_id])
  70. % aen->max_entry;
  71. }
  72. int bfa_aen_init(struct bfa_aen_s *aen, struct bfa_trc_mod_s *trcmod,
  73. void *bfad, int bfad_num, void (*aen_cb_notify)(void *),
  74. void (*gettimeofday)(struct bfa_timeval_s *));
  75. void bfa_aen_post(struct bfa_aen_s *aen, enum bfa_aen_category aen_category,
  76. int aen_type, union bfa_aen_data_u *aen_data);
  77. bfa_status_t bfa_aen_fetch(struct bfa_aen_s *aen,
  78. struct bfa_aen_entry_s *aen_entry,
  79. int entry_req, enum bfa_aen_app app_id, int *entry_ret);
  80. int bfa_aen_get_inst(struct bfa_aen_s *aen);
  81. #endif /* __BFA_AEN_H__ */