phydm_noisemonitor.h 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /******************************************************************************
  2. *
  3. * Copyright(c) 2007 - 2011 Realtek Corporation. All rights reserved.
  4. *
  5. * This program is free software; you can redistribute it and/or modify it
  6. * under the terms of version 2 of the GNU General Public License as
  7. * published by the Free Software Foundation.
  8. *
  9. * This program is distributed in the hope that it will be useful, but WITHOUT
  10. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  12. * more details.
  13. *
  14. * You should have received a copy of the GNU General Public License along with
  15. * this program; if not, write to the Free Software Foundation, Inc.,
  16. * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
  17. *
  18. *
  19. *****************************************************************************/
  20. #ifndef __ODMNOISEMONITOR_H__
  21. #define __ODMNOISEMONITOR_H__
  22. #define ODM_MAX_CHANNEL_NUM 38/* 14+24 */
  23. struct noise_level {
  24. /* u8 value_a, value_b; */
  25. u8 value[MAX_RF_PATH];
  26. /* s8 sval_a, sval_b; */
  27. s8 sval[MAX_RF_PATH];
  28. /* s32 noise_a=0, noise_b=0,sum_a=0, sum_b=0; */
  29. /* s32 noise[ODM_RF_PATH_MAX]; */
  30. s32 sum[MAX_RF_PATH];
  31. /* u8 valid_cnt_a=0, valid_cnt_b=0, */
  32. u8 valid[MAX_RF_PATH];
  33. u8 valid_cnt[MAX_RF_PATH];
  34. };
  35. struct _ODM_NOISE_MONITOR_ {
  36. s8 noise[MAX_RF_PATH];
  37. s16 noise_all;
  38. };
  39. s16 odm_inband_noise_monitor(void *p_dm_void, u8 is_pause_dig, u8 igi_value, u32 max_time);
  40. #endif