chipset.h 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. /****************************************************************************
  2. # Copyright (c) 2020, 2022 Qualcomm Technologies, Inc.
  3. # All Rights Reserved.
  4. # Confidential and Proprietary - Qualcomm Technologies, Inc.
  5. #**********************************************************************
  6. # 2013 Qualcomm Atheros, Inc.
  7. #
  8. ****************************************************************************/
  9. #ifndef CHIPSET_HEADER
  10. #define CHIPSET_HEADER
  11. /*====================================================================*
  12. * system header files;
  13. *--------------------------------------------------------------------*/
  14. #include <stdint.h>
  15. /*====================================================================*
  16. * constants;
  17. *--------------------------------------------------------------------*/
  18. #define PLCHIPSET "PLCDEVICE"
  19. /*====================================================================*
  20. * chipset codes returned in VS_SW_VER MDEVICE_CLASS field;
  21. *--------------------------------------------------------------------*/
  22. #define CHIPSET_UNKNOWN 0x00
  23. #define CHIPSET_INT6000A1 0x01
  24. #define CHIPSET_INT6300A0 0x02
  25. #define CHIPSET_INT6400A0 0x03
  26. #define CHIPSET_AR7400A0 0x04
  27. #define CHIPSET_AR6405A0 0x05
  28. #define CHIPSET_PANTHER_LYNX 0x06
  29. #define CHIPSET_QCA7450A0 0x07
  30. #define CHIPSET_QCA7451A0 0x08
  31. #define CHIPSET_QCA7452A0 0x09
  32. #define CHIPSET_QCA7420A0 0x20
  33. #define CHIPSET_QCA6410A0 0x21
  34. #define CHIPSET_QCA6411A0 0x21
  35. #define CHIPSET_QCA7000A0 0x22
  36. #define CHIPSET_QCA7000I 0x22
  37. #define CHIPSET_QCA7005A0 0x22
  38. #define CHIPSET_QCA7006AQA0 0x21
  39. #define CHIPSET_QCA7500A0 0x30
  40. #define CHIPSET_QCA7520A0 0x30
  41. #define CHIPSET_QCA7550A0 0x30
  42. /*
  43. * the following definitions define older constants in terms of
  44. * newer constants to avoid compiler errors; there is nothing
  45. * magic about the A0/A1 suffixes;
  46. */
  47. #define CHIPSET_INT6000 CHIPSET_INT6000A1
  48. #define CHIPSET_INT6300 CHIPSET_INT6300A0
  49. #define CHIPSET_INT6400 CHIPSET_INT6400A0
  50. #define CHIPSET_AR7400 CHIPSET_AR7400A0
  51. #define CHIPSET_INT6405 CHIPSET_AR6405A0
  52. #define CHIPSET_AR6405 CHIPSET_AR6405A0
  53. #define CHIPSET_QCA7450 CHIPSET_QCA7450A0
  54. #define CHIPSET_QCA7451 CHIPSET_QCA7451A0
  55. #define CHIPSET_QCA7452 CHIPSET_QCA7452A0
  56. #define CHIPSET_QCA7420 CHIPSET_QCA7420A0
  57. #define CHIPSET_QCA6410 CHIPSET_QCA6410A0
  58. #define CHIPSET_QCA6411 CHIPSET_QCA6411A0
  59. #define CHIPSET_QCA7000 CHIPSET_QCA7000A0
  60. #define CHIPSET_QCA7005 CHIPSET_QCA7005A0
  61. #define CHIPSET_QCA7006AQ CHIPSET_QCA7006AQA0
  62. #define CHIPSET_QCA7500 CHIPSET_QCA7500A0
  63. /*====================================================================*
  64. * chipset functions;
  65. *--------------------------------------------------------------------*/
  66. enum tChipSignature {
  67. eChipSignature_Default = 0x00000000,
  68. eChipSignature_Qca7420 = 0x001CFCFC,
  69. eChipSignature_Qca6411 = 0x001B58BC,
  70. eChipSignature_Qca6410 = 0x001B58EC,
  71. eChipSignature_Qca7000 = 0x001B58DC,
  72. eChipSignature_Qca7000I = 0x001B589C,
  73. eChipSignature_Qca7420ES = 0x001CFC00,
  74. eChipSignature_Qca7000ES = 0x001B5800,
  75. eChipSignature_Qca7005 = 0x001B587C,
  76. eChipSignature_Qca7006AQ = 0x001B58AC,
  77. eChipSignature_Qca7500 = 0x001D4C0F,
  78. eChipSignature_Qca7500ES = 0x001D4C00,
  79. eChipSignature_Qca7520 = 0x001D4C02,
  80. eChipSignature_Qca7550 = 0x001D4C05,
  81. //Note: also add new ID to IsChipIdSupported function
  82. eChipSignature_Invalid = 0xBAD0DEAD
  83. };
  84. char const * chipsetname (uint8_t chipset);
  85. void chipset (void const * memory);
  86. const char * ConvertChipSignatureId2ProductIdStr( enum tChipSignature aChipSignature);
  87. /*====================================================================*
  88. *
  89. *--------------------------------------------------------------------*/
  90. enum tDeviceClass {
  91. eClass_20 = 0x20,
  92. eClass_21 = 0x21,
  93. eClass_22 = 0x22,
  94. eClass_30 = 0x30,
  95. eNoClass = 0xffff
  96. };
  97. #endif