chipset.c 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489
  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_SOURCE
  10. #define CHIPSET_SOURCE
  11. /*====================================================================*
  12. * custom header files;
  13. *--------------------------------------------------------------------*/
  14. #include "../plc/plc.h"
  15. #include "../tools/types.h"
  16. #include "../tools/symbol.h"
  17. /*====================================================================*
  18. *
  19. * char const * chipsetname (uint8_t MDEVICE)
  20. *
  21. * plc.h
  22. *
  23. * return the ASCII name string associated with the MDEVICE_CLASS
  24. * field in the VS_SW_VER.CNF message; this field represents the
  25. * chipset family or class of device;
  26. *
  27. * the MDEVICE_CLASS field was named MDEVICEID at one time;
  28. *
  29. * Contributor(s):
  30. * Charles Maier <cmaier@qca.qualcomm.com>
  31. *
  32. *--------------------------------------------------------------------*/
  33. char const * chipsetname (uint8_t MDEVICE_CLASS)
  34. {
  35. static const struct _type_ chipname [] =
  36. {
  37. {
  38. CHIPSET_UNKNOWN,
  39. "UNKNOWN"
  40. },
  41. {
  42. CHIPSET_INT6000A1,
  43. "INT6000"
  44. },
  45. {
  46. CHIPSET_INT6300A0,
  47. "INT6300"
  48. },
  49. {
  50. CHIPSET_INT6400A0,
  51. "INT6400"
  52. },
  53. {
  54. CHIPSET_AR7400A0,
  55. " AR7400"
  56. },
  57. {
  58. CHIPSET_AR6405A0,
  59. " AR6405"
  60. },
  61. {
  62. CHIPSET_PANTHER_LYNX,
  63. "PANTHER/LYNX"
  64. },
  65. {
  66. CHIPSET_QCA7450A0,
  67. "QCA7450"
  68. },
  69. {
  70. CHIPSET_QCA7451A0,
  71. "QCA7451"
  72. },
  73. {
  74. CHIPSET_QCA7420A0,
  75. "QCA7420"
  76. },
  77. {
  78. CHIPSET_QCA6410A0,
  79. "QCA6410"
  80. },
  81. {
  82. CHIPSET_QCA7000A0,
  83. "QCA7000"
  84. },
  85. {
  86. CHIPSET_QCA7005A0,
  87. "QCA7005"
  88. },
  89. {
  90. CHIPSET_QCA7006AQA0,
  91. "QCA7006AQ"
  92. },
  93. {
  94. CHIPSET_QCA7500A0,
  95. "QCA7500"
  96. },
  97. {
  98. CHIPSET_QCA7520A0,
  99. "QCA7520"
  100. },
  101. {
  102. CHIPSET_QCA7550A0,
  103. "QCA7550"
  104. }
  105. };
  106. return (typename (chipname, SIZEOF (chipname), MDEVICE_CLASS, chipname [0].name));
  107. }
  108. /*====================================================================*
  109. *
  110. * void chipset (void const * memory);
  111. *
  112. * Chipset.h
  113. *
  114. * replace VS_SW_VER message MDEVICE_CLASS field with correct value;
  115. * the MDEVICE_CLASS field was named MDEVICEID at one time;
  116. *
  117. * Atheros chipsets are identified by code in the VS_SW_VER vendor
  118. * specific management message; the chipset [] vector translates a
  119. * chipset code to a chipset name;
  120. *
  121. * the basic assumption is that the firmware always tells the truth
  122. * but the bootrom does not; because of engineering changes, the
  123. * firmware uses a different device identification scheme than that
  124. * used by the bootrom and that information appears in different
  125. * locations depending on the source of the VS_SW_VER confirmation;
  126. * see the Programmer's Guide for more information.
  127. *
  128. * INT6000 0x01 / 0x01 0x00000042 / NA
  129. * INT6300 0x01 / 0x02 0x00006300 / NA
  130. * INT6400 0x03 / 0x03 0x00006400 / NA
  131. * AR7400 0x03 / 0x04 0x00007400 / NA
  132. * AR6405 0x03 / 0x05 0x00006400 / NA
  133. * QCA7450 0x03 / 0x20 0x0F001D1A / NA
  134. * QCA7420 0x06 / 0x20 0x001CFCFC
  135. * QCA6410 0x06 / 0x21 0x001B58EC
  136. * QCA6411 0x06 / 0x21 0x001B58BC
  137. * QCA7000 0x06 / 0x22 0x001B589C
  138. * QCA7000 0x06 / 0x22 0x001B58DC
  139. * QCA7005 0x06 / 0x22 0x001B587C
  140. * QCA7006AQ 0x06 / 0x21 0x001B58AC
  141. * QCA7500 0x06 / 0x30 0x001D4C0F
  142. * QCA7520 0x06 / 0x30 0x001D4C02
  143. * QCA7550 0x06 / 0x30 0x001D4C05
  144. *
  145. * some chipsets have have multiple STRAP field values; this is
  146. * not an error; there may be multiple versions of a chipset;
  147. *
  148. *--------------------------------------------------------------------*/
  149. //***************************************************************************
  150. //
  151. // Function: ConvertChipSignatureId2ProductIdStr()
  152. //
  153. //***************************************************************************
  154. const char * ConvertChipSignatureId2ProductIdStr(
  155. enum tChipSignature aChipSignature
  156. )
  157. {
  158. switch(aChipSignature)
  159. {
  160. case eChipSignature_Qca7420:
  161. return "QCA7420";
  162. break;
  163. case eChipSignature_Qca6411:
  164. return "QCA6411";
  165. break;
  166. case eChipSignature_Qca6410:
  167. return "QCA6410";
  168. break;
  169. case eChipSignature_Qca7000:
  170. return "QCA7000";
  171. break;
  172. case eChipSignature_Qca7005:
  173. return "QCA7005";
  174. break;
  175. case eChipSignature_Qca7006AQ:
  176. return "QCA7006AQ";
  177. break;
  178. case eChipSignature_Qca7000I:
  179. return "QCA7000I";
  180. break;
  181. case eChipSignature_Qca7420ES:
  182. return "QCA7420ES";
  183. break;
  184. case eChipSignature_Qca7000ES:
  185. return "QCA7000ES";
  186. break;
  187. case eChipSignature_Qca7500:
  188. return "QCA7500";
  189. break;
  190. case eChipSignature_Qca7500ES:
  191. return "QCA7500ES";
  192. break;
  193. case eChipSignature_Qca7520:
  194. return "QCA7520";
  195. break;
  196. case eChipSignature_Qca7550:
  197. return "QCA7550";
  198. break;
  199. default:
  200. return "QCA????";
  201. break;
  202. }
  203. }
  204. void chipset (void const * memory)
  205. {
  206. #ifndef __GNUC__
  207. #pragma pack (push,1)
  208. #endif
  209. struct __packed vs_sw_ver_confirm
  210. {
  211. struct ethernet_hdr ethernet;
  212. struct qualcomm_hdr qualcomm;
  213. uint8_t MSTATUS;
  214. uint8_t MDEVICE_CLASS;
  215. uint8_t MVERLENGTH;
  216. char MVERSION [254];
  217. }
  218. * confirm = (struct vs_sw_ver_confirm *) (memory);
  219. struct __packed chipinfo
  220. {
  221. uint8_t RESVD;
  222. uint32_t STRAP;
  223. uint32_t STEP_NUMBER;
  224. }
  225. * chipinfo = (struct chipinfo *) (& confirm->MVERSION [64]);
  226. typedef struct __packed
  227. {
  228. uint32_t STRAP;
  229. uint8_t CLASS;
  230. uint8_t DEVICE;
  231. }
  232. chipdata;
  233. #ifndef __GNUC__
  234. #pragma pack (pop)
  235. #endif
  236. chipdata bootrom [] =
  237. {
  238. {
  239. 0x00000042,
  240. 0x01,
  241. CHIPSET_INT6000A1
  242. },
  243. {
  244. 0x00006300,
  245. 0x01,
  246. CHIPSET_INT6300A0
  247. },
  248. {
  249. 0x00006400,
  250. 0x03,
  251. CHIPSET_INT6400A0
  252. },
  253. {
  254. 0x00007400,
  255. 0x03,
  256. CHIPSET_AR7400A0
  257. },
  258. {
  259. 0x0F001D1A,
  260. 0x03,
  261. CHIPSET_QCA7450A0
  262. },
  263. {
  264. 0x0E001D1A,
  265. 0x03,
  266. CHIPSET_QCA7451A0
  267. },
  268. {
  269. 0x001CFC00,
  270. 0x05,
  271. CHIPSET_QCA7420A0
  272. },
  273. {
  274. 0x001CFCFC,
  275. 0x05,
  276. CHIPSET_QCA7420A0
  277. },
  278. {
  279. 0x001CFCFC,
  280. 0x06,
  281. CHIPSET_QCA7420A0
  282. },
  283. {
  284. 0x001B58EC,
  285. 0x06,
  286. CHIPSET_QCA6410A0
  287. },
  288. {
  289. 0x001B58BC,
  290. 0x06,
  291. CHIPSET_QCA6411A0
  292. },
  293. {
  294. 0x001B58DC,
  295. 0x06,
  296. CHIPSET_QCA7000A0
  297. },
  298. {
  299. 0x001B587C,
  300. 0x06,
  301. CHIPSET_QCA7005A0
  302. },
  303. {
  304. 0x001B58AC,
  305. 0x06,
  306. CHIPSET_QCA7006AQA0
  307. },
  308. {
  309. 0x001D4C00,
  310. 0x06,
  311. CHIPSET_QCA7500A0
  312. },
  313. {
  314. 0x001D4C0F,
  315. 0x06,
  316. CHIPSET_QCA7500A0
  317. },
  318. {
  319. 0x001D4C02,
  320. 0x06,
  321. CHIPSET_QCA7520A0
  322. },
  323. {
  324. 0x001D4C05,
  325. 0x06,
  326. CHIPSET_QCA7550A0
  327. }
  328. };
  329. chipdata firmware [] =
  330. {
  331. {
  332. 0x00000000,
  333. 0x01,
  334. CHIPSET_INT6000A1
  335. },
  336. {
  337. 0x00000000,
  338. 0x02,
  339. CHIPSET_INT6300A0
  340. },
  341. {
  342. 0x00000000,
  343. 0x03,
  344. CHIPSET_INT6400A0
  345. },
  346. {
  347. 0x00000000,
  348. 0x05,
  349. CHIPSET_AR6405A0
  350. },
  351. {
  352. 0x00000000,
  353. 0x04,
  354. CHIPSET_AR7400A0
  355. },
  356. {
  357. 0x0F001D1A,
  358. 0x20,
  359. CHIPSET_QCA7450A0
  360. },
  361. {
  362. 0x0E001D1A,
  363. 0x20,
  364. CHIPSET_QCA7451A0
  365. },
  366. {
  367. 0x001CFCFC,
  368. 0x20,
  369. CHIPSET_QCA7420A0
  370. },
  371. {
  372. 0x001B58EC,
  373. 0x21,
  374. CHIPSET_QCA6410A0
  375. },
  376. {
  377. 0x001B58BC,
  378. 0x21,
  379. CHIPSET_QCA6411A0
  380. },
  381. {
  382. 0x001B58DC,
  383. 0x22,
  384. CHIPSET_QCA7000A0
  385. },
  386. {
  387. 0x001B587C,
  388. 0x22,
  389. CHIPSET_QCA7005A0
  390. },
  391. {
  392. 0x001B58AC,
  393. 0x21,
  394. CHIPSET_QCA7006AQA0
  395. },
  396. {
  397. 0x001D4C00,
  398. 0x30,
  399. CHIPSET_QCA7500A0
  400. },
  401. {
  402. 0x001D4C0F,
  403. 0x30,
  404. CHIPSET_QCA7500A0
  405. },
  406. {
  407. 0x001D4C02,
  408. 0x30,
  409. CHIPSET_QCA7520A0
  410. },
  411. {
  412. 0x001D4C05,
  413. 0x30,
  414. CHIPSET_QCA7550A0
  415. }
  416. };
  417. unsigned chip;
  418. if (! strcmp (confirm->MVERSION, "BootLoader"))
  419. {
  420. for (chip = 0; chip < SIZEOF (bootrom); chip++)
  421. {
  422. if (bootrom [chip].CLASS != confirm->MDEVICE_CLASS)
  423. {
  424. continue;
  425. }
  426. if (bootrom [chip].STRAP != LE32TOH (chipinfo->STRAP))
  427. {
  428. continue;
  429. }
  430. confirm->MDEVICE_CLASS = bootrom [chip].DEVICE;
  431. return;
  432. }
  433. }
  434. else
  435. {
  436. for (chip = 0; chip < SIZEOF (firmware); chip++)
  437. {
  438. if (firmware [chip].CLASS != confirm->MDEVICE_CLASS)
  439. {
  440. continue;
  441. }
  442. if (firmware [chip].STRAP < CHIPSET_PANTHER_LYNX)
  443. {
  444. confirm->MDEVICE_CLASS = firmware [chip].DEVICE;
  445. return;
  446. }
  447. chipinfo = (struct chipinfo *) (& confirm->MVERSION [64]);
  448. if (firmware [chip].STRAP == LE32TOH (chipinfo->STRAP))
  449. {
  450. confirm->MDEVICE_CLASS = firmware [chip].DEVICE;
  451. return;
  452. }
  453. chipinfo = (struct chipinfo *) (& confirm->MVERSION [128]);
  454. if (firmware [chip].STRAP == LE32TOH (chipinfo->STRAP))
  455. {
  456. confirm->MDEVICE_CLASS = firmware [chip].DEVICE;
  457. return;
  458. }
  459. chipinfo = (struct chipinfo *) (& confirm->MVERSION [253]);
  460. if (firmware [chip].STRAP == LE32TOH (chipinfo->STRAP))
  461. {
  462. confirm->MDEVICE_CLASS = firmware [chip].DEVICE;
  463. return;
  464. }
  465. }
  466. }
  467. return;
  468. }
  469. #endif