iwl-agn-hw.h 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /* SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause */
  2. /*
  3. * Copyright (C) 2005-2014 Intel Corporation
  4. */
  5. /*
  6. * Please use this file (iwl-agn-hw.h) only for hardware-related definitions.
  7. */
  8. #ifndef __iwl_agn_hw_h__
  9. #define __iwl_agn_hw_h__
  10. #define IWLAGN_RTC_INST_LOWER_BOUND (0x000000)
  11. #define IWLAGN_RTC_INST_UPPER_BOUND (0x020000)
  12. #define IWLAGN_RTC_DATA_LOWER_BOUND (0x800000)
  13. #define IWLAGN_RTC_DATA_UPPER_BOUND (0x80C000)
  14. #define IWLAGN_RTC_INST_SIZE (IWLAGN_RTC_INST_UPPER_BOUND - \
  15. IWLAGN_RTC_INST_LOWER_BOUND)
  16. #define IWLAGN_RTC_DATA_SIZE (IWLAGN_RTC_DATA_UPPER_BOUND - \
  17. IWLAGN_RTC_DATA_LOWER_BOUND)
  18. #define IWL60_RTC_INST_LOWER_BOUND (0x000000)
  19. #define IWL60_RTC_INST_UPPER_BOUND (0x040000)
  20. #define IWL60_RTC_DATA_LOWER_BOUND (0x800000)
  21. #define IWL60_RTC_DATA_UPPER_BOUND (0x814000)
  22. #define IWL60_RTC_INST_SIZE \
  23. (IWL60_RTC_INST_UPPER_BOUND - IWL60_RTC_INST_LOWER_BOUND)
  24. #define IWL60_RTC_DATA_SIZE \
  25. (IWL60_RTC_DATA_UPPER_BOUND - IWL60_RTC_DATA_LOWER_BOUND)
  26. /* RSSI to dBm */
  27. #define IWLAGN_RSSI_OFFSET 44
  28. #define IWLAGN_DEFAULT_TX_RETRY 15
  29. #define IWLAGN_MGMT_DFAULT_RETRY_LIMIT 3
  30. #define IWLAGN_RTS_DFAULT_RETRY_LIMIT 60
  31. #define IWLAGN_BAR_DFAULT_RETRY_LIMIT 60
  32. #define IWLAGN_LOW_RETRY_LIMIT 7
  33. /* Limit range of txpower output target to be between these values */
  34. #define IWLAGN_TX_POWER_TARGET_POWER_MIN (0) /* 0 dBm: 1 milliwatt */
  35. #define IWLAGN_TX_POWER_TARGET_POWER_MAX (16) /* 16 dBm */
  36. /* EEPROM */
  37. #define IWLAGN_EEPROM_IMG_SIZE 2048
  38. /* high blocks contain PAPD data */
  39. #define OTP_HIGH_IMAGE_SIZE_6x00 (6 * 512 * sizeof(u16)) /* 6 KB */
  40. #define OTP_HIGH_IMAGE_SIZE_1000 (0x200 * sizeof(u16)) /* 1024 bytes */
  41. #define OTP_MAX_LL_ITEMS_1000 (3) /* OTP blocks for 1000 */
  42. #define OTP_MAX_LL_ITEMS_6x00 (4) /* OTP blocks for 6x00 */
  43. #define OTP_MAX_LL_ITEMS_6x50 (7) /* OTP blocks for 6x50 */
  44. #define OTP_MAX_LL_ITEMS_2x00 (4) /* OTP blocks for 2x00 */
  45. #define IWLAGN_NUM_QUEUES 20
  46. #endif /* __iwl_agn_hw_h__ */