CPLMessage.cpp 19 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * CPLMessage.cpp - CPLMessage class definition;
  11. *
  12. * the bootloader and firmware share some message types that return
  13. * different status codes for the same error condition; differences
  14. * are enabled and disabled by constant CPLMESSAGE_BOOTLOADER;
  15. *
  16. * VS_WR_MEM and VS_ST_MAC are only recognized by the Bootloader so
  17. * we define CPLMESSAGE_BOOTLOADER to replace associated firmware
  18. * messages;
  19. *
  20. * table entries must appear in ascending order by message type or
  21. * lookups will be unreliable;
  22. *
  23. * Contributor(s):
  24. * Charles Maier <charles.maier@intellon.com>
  25. *
  26. *--------------------------------------------------------------------*/
  27. #ifndef CPLMESSAGE_SOURCE
  28. #define CPLMESSAGE_SOURCE
  29. /*====================================================================*
  30. * system header files;
  31. *--------------------------------------------------------------------*/
  32. #include <iostream>
  33. /*====================================================================*
  34. * custom header files;
  35. *--------------------------------------------------------------------*/
  36. #include "../classes/CPLMessage.hpp"
  37. #include "../classes/ohomeplug.hpp"
  38. /*====================================================================*
  39. * class variables;
  40. *--------------------------------------------------------------------*/
  41. struct CPLMessage::name CPLMessage::names [] =
  42. {
  43. {
  44. 0x0000,
  45. "CC_CCO_APPOINT"
  46. },
  47. {
  48. 0x0004,
  49. "CC_BACKUP_APPOINT"
  50. },
  51. {
  52. 0x0008,
  53. "CC_LINK_INFO"
  54. },
  55. {
  56. 0x000C,
  57. "CC_HANDOVER"
  58. },
  59. {
  60. 0x0010,
  61. "CC_HANDOVER_INFO"
  62. },
  63. {
  64. 0x0014,
  65. "CC_DISCOVER_LIST"
  66. },
  67. {
  68. 0x0018,
  69. "CC_LINK_NEW"
  70. },
  71. {
  72. 0x001C,
  73. "CC_LINK_MOD"
  74. },
  75. {
  76. 0x0020,
  77. "CC_LINK_SQZ"
  78. },
  79. {
  80. 0x0024,
  81. "CC_LINK_REL"
  82. },
  83. {
  84. 0x0028,
  85. "CC_DETECT_REPORT"
  86. },
  87. {
  88. 0x002C,
  89. "CC_WHO_RU"
  90. },
  91. {
  92. 0x0030,
  93. "CC_ASSOC"
  94. },
  95. {
  96. 0x0034,
  97. "CC_LEAVE"
  98. },
  99. {
  100. 0x0038,
  101. "CC_SET_TEI_MAP"
  102. },
  103. {
  104. 0x003C,
  105. "CC_RELAY"
  106. },
  107. {
  108. 0x0040,
  109. "CC_BEACON_RELIABILITY"
  110. },
  111. {
  112. 0x0044,
  113. "CC_ALLOC_MOVE"
  114. },
  115. {
  116. 0x0048,
  117. "CC_ACCESS_NEW"
  118. },
  119. {
  120. 0x004C,
  121. "CC_ACCESS_REL"
  122. },
  123. {
  124. 0x0050,
  125. "CC_DCPPC"
  126. },
  127. {
  128. 0x0054,
  129. "CC_HP1_DET"
  130. },
  131. {
  132. 0x0058,
  133. "CC_BLE_UPDATE"
  134. },
  135. {
  136. 0x2000,
  137. "CP_PROXY_APPOINT"
  138. },
  139. {
  140. 0x2004,
  141. "PH_PROXY_APPOINT"
  142. },
  143. {
  144. 0x2008,
  145. "CP_PROXY_WAKE"
  146. },
  147. {
  148. 0x4000,
  149. "NN_INL"
  150. },
  151. {
  152. 0x4004,
  153. "NN_NEW_NET"
  154. },
  155. {
  156. 0x4008,
  157. "NN_ADD_ALLOC"
  158. },
  159. {
  160. 0x400C,
  161. "NN_REL_ALLOC"
  162. },
  163. {
  164. 0x4010,
  165. "NN_REL_NET"
  166. },
  167. {
  168. 0x6000,
  169. "CM_ASSOCIATED_STA"
  170. },
  171. {
  172. 0x6004,
  173. "CM_ENCRYPTED_PAYLOAD"
  174. },
  175. {
  176. 0x6008,
  177. "CM_SET_KEY"
  178. },
  179. {
  180. 0x600C,
  181. "CM_GET_KEY"
  182. },
  183. {
  184. 0x6010,
  185. "CM_SC_JOIN"
  186. },
  187. {
  188. 0x6014,
  189. "CM_CHAN_EST"
  190. },
  191. {
  192. 0x6018,
  193. "CM_TM_UPDATE"
  194. },
  195. {
  196. 0x601C,
  197. "CM_AMP_MAP"
  198. },
  199. {
  200. 0x6020,
  201. "CM_BRG_INFO"
  202. },
  203. {
  204. 0x6024,
  205. "CM_CONN_NEW"
  206. },
  207. {
  208. 0x6028,
  209. "CM_CONN_REL"
  210. },
  211. {
  212. 0x602C,
  213. "CM_CONN_MOD"
  214. },
  215. {
  216. 0x6030,
  217. "CM_CONN_INFO"
  218. },
  219. {
  220. 0x6034,
  221. "CM_STA_CAP"
  222. },
  223. {
  224. 0x6038,
  225. "CM_NW_INFO"
  226. },
  227. {
  228. 0x603C,
  229. "CM_GET_BEACON"
  230. },
  231. {
  232. 0x6040,
  233. "CM_HFID"
  234. },
  235. {
  236. 0x6044,
  237. "CM__ERROR"
  238. },
  239. {
  240. 0x6048,
  241. "CM_NW_STATS"
  242. },
  243. {
  244. 0x8000,
  245. "MS_PB_ENC"
  246. },
  247. {
  248. 0xA000,
  249. "VS_SW_VER"
  250. },
  251. {
  252. 0xA004,
  253. "VS_WR_MEM"
  254. },
  255. {
  256. 0xA008,
  257. "VS_RD_MEM"
  258. },
  259. {
  260. 0xA00C,
  261. "VS_ST_MAC"
  262. },
  263. {
  264. 0xA010,
  265. "VS_GET_NVM"
  266. },
  267. {
  268. 0xA014,
  269. "VS_RSVD_1"
  270. },
  271. {
  272. 0xA018,
  273. "VS_RSVD_2"
  274. },
  275. {
  276. 0xA01C,
  277. "VS_RS_DEV"
  278. },
  279. {
  280. 0xA020,
  281. "VS_WR_MOD"
  282. },
  283. {
  284. 0xA024,
  285. "VS_RD_MOD"
  286. },
  287. {
  288. 0xA028,
  289. "VS_MOD_NVM"
  290. },
  291. {
  292. 0xA02C,
  293. "VS_WD_RPT"
  294. },
  295. {
  296. 0xA030,
  297. "VS_LNK_STATS"
  298. },
  299. {
  300. 0xA034,
  301. "VS_SNIFFER"
  302. },
  303. {
  304. 0xA038,
  305. "VS_NW_INFO"
  306. },
  307. {
  308. 0xA03C,
  309. "VS_RSVD_3"
  310. },
  311. {
  312. 0xA040,
  313. "VS_CP_RPT"
  314. },
  315. {
  316. 0xA044,
  317. "VS_ARPC"
  318. },
  319. {
  320. 0xA048,
  321. "VS_FR_LBK"
  322. },
  323. {
  324. 0xA04C,
  325. "VS_LBK_STAT"
  326. },
  327. {
  328. 0xA050,
  329. "VS_SET_KEY"
  330. },
  331. {
  332. 0xA054,
  333. "VS_MFG_STRING"
  334. },
  335. {
  336. 0xA058,
  337. "VS_RD_CBLOCK"
  338. },
  339. {
  340. 0xA05C,
  341. "VS_SET_SDRAM"
  342. },
  343. {
  344. 0xA060,
  345. "VS_HOST_ACTION"
  346. },
  347. {
  348. 0xA064,
  349. "VS_RSVD_7"
  350. },
  351. {
  352. 0xA068,
  353. "VS_OP_ATTRIBUTES"
  354. },
  355. {
  356. 0xA06C,
  357. "VS_ENET_SETTINGS"
  358. },
  359. {
  360. 0xA070,
  361. "VS_TONE_MAP_CHAR"
  362. },
  363. {
  364. 0xA074,
  365. "VS_NW_INFO_STATS"
  366. },
  367. {
  368. 0xA078,
  369. "VS_SLAVE_MEM"
  370. },
  371. {
  372. 0xA07C,
  373. "VS_FAC_DEFAULTS"
  374. },
  375. {
  376. 0xA080,
  377. "VS_PTS_NVM"
  378. },
  379. {
  380. 0xA084,
  381. "VS_MCAST_INFO"
  382. },
  383. {
  384. 0xA088,
  385. "VS_CLASSIFICATION"
  386. },
  387. {
  388. 0xA08C,
  389. "VS_DIAG_STAGE"
  390. },
  391. {
  392. 0xA090,
  393. "VS_RX_TONE_MAP_CHAR"
  394. },
  395. {
  396. 0xA094,
  397. "VS_SET_LED_BEHAVIOR"
  398. },
  399. {
  400. 0xA098,
  401. "VS_SET_SDRAM_DENALI"
  402. },
  403. {
  404. 0xA09C,
  405. "VS_MDIO_CMD"
  406. },
  407. {
  408. 0xA0A0,
  409. "VS_SLAVE_REG"
  410. },
  411. {
  412. 0xA0A4,
  413. "VS_BANDWIDTH_LIMITING"
  414. },
  415. {
  416. 0xA0A8,
  417. "VS_SNID_OPERATION"
  418. },
  419. {
  420. 0xA0AC,
  421. "VS_NN_MITIGATE"
  422. },
  423. {
  424. 0xA0B0,
  425. "VS_MODULE_OPERATION"
  426. },
  427. {
  428. 0xA0B4,
  429. "VS_DIAG_NETWORK_PROBE"
  430. },
  431. {
  432. 0xA0B8,
  433. "VS_PL_LINK_STATUS"
  434. },
  435. {
  436. 0xA0BC,
  437. "VS_GPIO_STATE_CHANGE",
  438. },
  439. {
  440. 0xA0C0,
  441. "VS_CONN_ADD"
  442. },
  443. {
  444. 0xA0C4,
  445. "VS_CONN_MOD"
  446. },
  447. {
  448. 0xA0C8,
  449. "VS_CONN_REL"
  450. },
  451. {
  452. 0xA0CC,
  453. "VS_CONN_INFO"
  454. },
  455. {
  456. 0xA0D0,
  457. "VS_MULTIPORT_LNK_STA"
  458. },
  459. {
  460. 0xA0D0,
  461. "VS_CUSTOM_INFO"
  462. },
  463. {
  464. 0xA0D0,
  465. "VS_EM_ID_TABLE"
  466. }
  467. };
  468. /*
  469. * table entries must appear in ascending order by message type then
  470. * message status code;
  471. */
  472. struct CPLMessage::code CPLMessage::mcodes [] =
  473. {
  474. #ifdef CPLMESSAGE_BOOTLOADER
  475. {
  476. 0xA005,
  477. 0x14,
  478. "Bad Checksum"
  479. },
  480. {
  481. 0xA005,
  482. 0x1C,
  483. "Bad Length"
  484. },
  485. {
  486. 0xA005,
  487. 0x38,
  488. "Bad Address"
  489. },
  490. {
  491. 0xA005,
  492. 0x3C,
  493. "Bad Data Alignment"
  494. },
  495. #else
  496. {
  497. 0xA005,
  498. 0x10,
  499. "Bad Address"
  500. },
  501. {
  502. 0xA005,
  503. 0x14,
  504. "Bad Length"
  505. },
  506. #endif
  507. {
  508. 0xA009,
  509. 0x10,
  510. "Bad Offset"
  511. },
  512. {
  513. 0xA009,
  514. 0x14,
  515. "Bad Length"
  516. },
  517. {
  518. 0xA00D,
  519. 0x10,
  520. "Bad Module ID"
  521. },
  522. #ifdef CPLMESSAGE_BOOTLOADER
  523. {
  524. 0xA00D,
  525. 0x14,
  526. "Bad Image Checksum"
  527. },
  528. {
  529. 0xA00D,
  530. 0x1C,
  531. "Bad Image Length"
  532. },
  533. {
  534. 0xA00D,
  535. 0x38,
  536. "Bad Image Load Address"
  537. },
  538. {
  539. 0xA00D,
  540. 0x3C,
  541. "Bad Data Alignment"
  542. },
  543. {
  544. 0xA00D,
  545. 0x40,
  546. "Bad Start Address"
  547. },
  548. #else
  549. {
  550. 0xA00D,
  551. 0x14,
  552. "Bad Command"
  553. },
  554. #endif
  555. {
  556. 0xA011,
  557. 0x10,
  558. "No NVRAM"
  559. },
  560. {
  561. 0xA01D,
  562. 0x01,
  563. "Device Failed to Reset"
  564. },
  565. {
  566. 0xA01D,
  567. 0x02,
  568. "Device Busy"
  569. },
  570. {
  571. 0xA021,
  572. 0x10,
  573. "Bad Module"
  574. },
  575. {
  576. 0xA021,
  577. 0x12,
  578. "Bad Length"
  579. },
  580. {
  581. 0xA021,
  582. 0x14,
  583. "Bad Checksum"
  584. },
  585. {
  586. 0xA021,
  587. 0x20,
  588. "Bad Offset"
  589. },
  590. {
  591. 0xA021,
  592. 0x40,
  593. "Operation Blocked"
  594. },
  595. {
  596. 0xA021,
  597. 0x50,
  598. "Fail to lock NVM"
  599. },
  600. {
  601. 0xA025,
  602. 0x10,
  603. "Bad Module"
  604. },
  605. {
  606. 0xA025,
  607. 0x12,
  608. "Bad Length"
  609. },
  610. {
  611. 0xA025,
  612. 0x14,
  613. "Bad Checksum"
  614. },
  615. {
  616. 0xA025,
  617. 0x20,
  618. "Unexpected Offset"
  619. },
  620. {
  621. 0xA025,
  622. 0x50,
  623. "Fail to lock NVM"
  624. },
  625. {
  626. 0xA025,
  627. 0x58,
  628. "DAK Mismatch"
  629. },
  630. {
  631. 0xA029,
  632. 0x10,
  633. "Bad Module"
  634. },
  635. {
  636. 0xA029,
  637. 0x14,
  638. "No NVRAM"
  639. },
  640. {
  641. 0xA029,
  642. 0x18,
  643. "Not enough NVRAM"
  644. },
  645. {
  646. 0xA029,
  647. 0x1C,
  648. "Bad Header Checksum"
  649. },
  650. {
  651. 0xA029,
  652. 0x20,
  653. "Bad Image Checksum"
  654. },
  655. {
  656. 0xA029,
  657. 0x24,
  658. "Bad PIB"
  659. },
  660. {
  661. 0xA029,
  662. 0x28,
  663. "Softloader Too Large"
  664. },
  665. {
  666. 0xA029,
  667. 0x2C,
  668. "Firmware Too Large"
  669. },
  670. {
  671. 0xA029,
  672. 0x42,
  673. "Firmware without PIB"
  674. },
  675. {
  676. 0xA029,
  677. 0x44,
  678. "Bad PIB Checksum"
  679. },
  680. {
  681. 0xA029,
  682. 0x46,
  683. "DAK Not Zero"
  684. },
  685. {
  686. 0xA029,
  687. 0x48,
  688. "DAC Mismatch"
  689. },
  690. {
  691. 0xA029,
  692. 0x50,
  693. "MFG HFID Mismatch"
  694. },
  695. {
  696. 0xA029,
  697. 0x52,
  698. "Bad Bind Factory Defaults"
  699. },
  700. {
  701. 0xA029,
  702. 0x54,
  703. "Bad Bind Template PIB"
  704. },
  705. {
  706. 0xA029,
  707. 0x56,
  708. "Bad Bind Working PIB"
  709. },
  710. {
  711. 0xA029,
  712. 0x58,
  713. "Error Computing PIB Checksum"
  714. },
  715. {
  716. 0xA029,
  717. 0x5A,
  718. "Bad Bind Scratch PIB"
  719. },
  720. {
  721. 0xA029,
  722. 0x5C,
  723. "No Firmware Version"
  724. },
  725. {
  726. 0xA029,
  727. 0x5E,
  728. "Version Mismatch"
  729. },
  730. {
  731. 0xA029,
  732. 0x60,
  733. "Bad 01PIB Checksum"
  734. },
  735. {
  736. 0xA029,
  737. 0x62,
  738. "Bad 02PIB Checksum"
  739. },
  740. {
  741. 0xA029,
  742. 0x64,
  743. "Bad WPIB Checksum"
  744. },
  745. {
  746. 0xA029,
  747. 0x66,
  748. "Illegal Firmware Revision"
  749. },
  750. {
  751. 0xA031,
  752. 0x01,
  753. "Bad Control"
  754. },
  755. {
  756. 0xA031,
  757. 0x02,
  758. "Bad Direction"
  759. },
  760. {
  761. 0xA031,
  762. 0x10,
  763. "Bad Link ID"
  764. },
  765. {
  766. 0xA031,
  767. 0x20,
  768. "Bad MAC Address"
  769. },
  770. {
  771. 0xA035,
  772. 0x10,
  773. "Bad Control"
  774. },
  775. {
  776. 0xA049,
  777. 0x20,
  778. "Invalid Duration"
  779. },
  780. {
  781. 0xA049,
  782. 0x12,
  783. "Invalid Length"
  784. },
  785. {
  786. 0xA049,
  787. 0x24,
  788. "Already Set"
  789. },
  790. {
  791. 0xA051,
  792. 0x10,
  793. "Bad PEKS"
  794. },
  795. {
  796. 0xA051,
  797. 0x11,
  798. "Bad PIB"
  799. },
  800. {
  801. 0xA051,
  802. 0x12,
  803. "Bad PEKS Encrypted Payload"
  804. },
  805. {
  806. 0xA051,
  807. 0x13,
  808. "Remote Failure"
  809. },
  810. {
  811. 0xA051,
  812. 0x14,
  813. "Bad Remote Response"
  814. },
  815. {
  816. 0xA051,
  817. 0x15,
  818. "Remote Decryption Failed"
  819. },
  820. {
  821. 0xA059,
  822. 0x10,
  823. "No NVRAM"
  824. },
  825. {
  826. 0xA05D,
  827. 0x30,
  828. "Bad Checksum"
  829. },
  830. {
  831. 0xA05D,
  832. 0x34,
  833. "BIST Failed"
  834. },
  835. {
  836. 0xA065,
  837. 0x10,
  838. "No NVRAM"
  839. },
  840. {
  841. 0xA069,
  842. 0x02,
  843. "Not Supported"
  844. },
  845. {
  846. 0xA06D,
  847. 0x01,
  848. "Bad Control"
  849. },
  850. {
  851. 0xA06D,
  852. 0x02,
  853. "Success Write"
  854. },
  855. {
  856. 0xA06D,
  857. 0x03,
  858. "Bad Write Parameter"
  859. },
  860. {
  861. 0xA071,
  862. 0x01,
  863. "Bad MAC Address"
  864. },
  865. {
  866. 0xA071,
  867. 0x02,
  868. "Bad TMSLOT"
  869. },
  870. {
  871. 0xA081,
  872. 0x10,
  873. "Bad Module ID"
  874. },
  875. {
  876. 0xA081,
  877. 0x14,
  878. "No Flash Memory"
  879. },
  880. {
  881. 0xA081,
  882. 0x18,
  883. "Not Enough Flash Memory"
  884. },
  885. {
  886. 0xA081,
  887. 0x1C,
  888. "Bad Image Header Checksum"
  889. },
  890. {
  891. 0xA081,
  892. 0x20,
  893. "Bad Image Checksum"
  894. },
  895. {
  896. 0xA081,
  897. 0x24,
  898. "Invalid PIB"
  899. },
  900. {
  901. 0xA081,
  902. 0x28,
  903. "Softloader Too Large"
  904. },
  905. {
  906. 0xA081,
  907. 0x2C,
  908. "Firmware File Too Large"
  909. },
  910. {
  911. 0xA081,
  912. 0x42,
  913. "Firmware without PIB"
  914. },
  915. {
  916. 0xA081,
  917. 0x44,
  918. "Bad PIB Checksum"
  919. },
  920. {
  921. 0xA081,
  922. 0x46,
  923. "DAK Not Zero"
  924. },
  925. {
  926. 0xA081,
  927. 0x48,
  928. "DAC Mismatch"
  929. },
  930. {
  931. 0xA081,
  932. 0x50,
  933. "MFG HFID Mismatch"
  934. },
  935. {
  936. 0xA081,
  937. 0x52,
  938. "Bad Bind Factory Defaults"
  939. },
  940. {
  941. 0xA081,
  942. 0x54,
  943. "Bad Bind Template PIB"
  944. },
  945. {
  946. 0xA081,
  947. 0x56,
  948. "Bad Bind Working PIB"
  949. },
  950. {
  951. 0xA081,
  952. 0x58,
  953. "DAK Mismatch"
  954. },
  955. {
  956. 0xA081,
  957. 0x5A,
  958. "Failed to Lock NVM"
  959. },
  960. {
  961. 0xA089,
  962. 0x01,
  963. "Bad Control"
  964. },
  965. {
  966. 0xA089,
  967. 0x02,
  968. "Bad Volatility"
  969. },
  970. {
  971. 0xA089,
  972. 0x03,
  973. "Bad Classifier"
  974. },
  975. {
  976. 0xA089,
  977. 0x04,
  978. "Classifier table full"
  979. },
  980. {
  981. 0xA089,
  982. 0x05,
  983. "Classifier exists with different action"
  984. },
  985. {
  986. 0xA089,
  987. 0x06,
  988. "Classifier not found"
  989. },
  990. {
  991. 0xA08D,
  992. 0x10,
  993. "Refused"
  994. },
  995. {
  996. 0xA08D,
  997. 0x11,
  998. "Refused"
  999. },
  1000. {
  1001. 0xA08F,
  1002. 0x10,
  1003. "Error"
  1004. },
  1005. {
  1006. 0xA091,
  1007. 0x01,
  1008. "Bad MAC"
  1009. },
  1010. {
  1011. 0xA091,
  1012. 0x02,
  1013. "Bad Slot"
  1014. },
  1015. {
  1016. 0xA099,
  1017. 0x01,
  1018. "Misaligned Address"
  1019. },
  1020. {
  1021. 0xA099,
  1022. 0x02,
  1023. "Misaligned Entry Point"
  1024. },
  1025. {
  1026. 0xA099,
  1027. 0x04,
  1028. "Foreign Entry Point"
  1029. },
  1030. {
  1031. 0xA099,
  1032. 0x08,
  1033. "Bad Checksum"
  1034. },
  1035. {
  1036. 0xA099,
  1037. 0x10,
  1038. "Out of Memory"
  1039. },
  1040. {
  1041. 0xA099,
  1042. 0x20,
  1043. "Offset/Length Mismatch"
  1044. },
  1045. {
  1046. 0xA099,
  1047. 0x40,
  1048. "Memory not Operational"
  1049. },
  1050. {
  1051. 0xA099,
  1052. 0x80,
  1053. "Bad Length"
  1054. },
  1055. {
  1056. 0xA0B1,
  1057. 0x10,
  1058. "Invalid Number of Module Operations"
  1059. },
  1060. {
  1061. 0xA0B1,
  1062. 0x11,
  1063. "Invalid Module Operation ID"
  1064. },
  1065. {
  1066. 0xA0B1,
  1067. 0x12,
  1068. "Invalid Session ID"
  1069. },
  1070. {
  1071. 0xA0B1,
  1072. 0x13,
  1073. "Invalid Num Module Operation Specific Data"
  1074. },
  1075. {
  1076. 0xA0B1,
  1077. 0x14,
  1078. "Module ID not found"
  1079. },
  1080. {
  1081. 0xA0B1,
  1082. 0x15,
  1083. "Invalid Module Length"
  1084. },
  1085. {
  1086. 0xA0B1,
  1087. 0x16,
  1088. "Invalid Module Index"
  1089. },
  1090. {
  1091. 0xA0B1,
  1092. 0x17,
  1093. "Invalid Data Length"
  1094. },
  1095. {
  1096. 0xA0B1,
  1097. 0x18,
  1098. "Unexpected Offset"
  1099. },
  1100. {
  1101. 0xA0B1,
  1102. 0x19,
  1103. "Invalid Commit Action Code"
  1104. },
  1105. {
  1106. 0xA0B1,
  1107. 0x1A,
  1108. "Operation Block by previous Commit"
  1109. },
  1110. {
  1111. 0xA0B1,
  1112. 0x1B,
  1113. "Duplicate Module ID/SubID"
  1114. },
  1115. {
  1116. 0xA0B1,
  1117. 0x1C,
  1118. "Invalid Module ID/SubID"
  1119. },
  1120. {
  1121. 0xA0B1,
  1122. 0x20,
  1123. "NVM not Present"
  1124. },
  1125. {
  1126. 0xA0B1,
  1127. 0x21,
  1128. "NVM too small"
  1129. },
  1130. {
  1131. 0xA0B1,
  1132. 0x22,
  1133. "Unsupported Flash"
  1134. },
  1135. {
  1136. 0xA0B1,
  1137. 0x23,
  1138. "Fail to lock NVM"
  1139. },
  1140. {
  1141. 0xA0B1,
  1142. 0x24,
  1143. "Unsupported Flash"
  1144. },
  1145. {
  1146. 0xA0B1,
  1147. 0x30,
  1148. "Invalid Module checksum"
  1149. },
  1150. {
  1151. 0xA0B1,
  1152. 0x31,
  1153. "Individual Module Error"
  1154. },
  1155. {
  1156. 0xA0B1,
  1157. 0x32,
  1158. "Expected module not available in NVM or memory"
  1159. },
  1160. {
  1161. 0xA0B1,
  1162. 0x40,
  1163. "Invalid Header Checksum"
  1164. },
  1165. {
  1166. 0xA0B1,
  1167. 0x41,
  1168. "Invalid FW Checksum"
  1169. },
  1170. {
  1171. 0xA0B1,
  1172. 0x42,
  1173. "Invalid FW Checksum"
  1174. },
  1175. {
  1176. 0xA0B1,
  1177. 0x43,
  1178. "Soft-loader is too large"
  1179. },
  1180. {
  1181. 0xA0B1,
  1182. 0x44,
  1183. "Invalid PIB Checksum"
  1184. },
  1185. {
  1186. 0xA0B1,
  1187. 0x45,
  1188. "No Firmware Version"
  1189. },
  1190. {
  1191. 0xA0B1,
  1192. 0x46,
  1193. "FW Commit but no PIB"
  1194. },
  1195. {
  1196. 0xA0B1,
  1197. 0x47,
  1198. "Version Mismatch"
  1199. },
  1200. {
  1201. 0xA0B1,
  1202. 0x50,
  1203. "Invalid PIB"
  1204. },
  1205. {
  1206. 0xA0B1,
  1207. 0x51,
  1208. "DAK not zero"
  1209. },
  1210. {
  1211. 0xA0B1,
  1212. 0x52,
  1213. "MAC mismatch"
  1214. },
  1215. {
  1216. 0xA0B1,
  1217. 0x53,
  1218. "DAK mismatch"
  1219. },
  1220. {
  1221. 0xA0B1,
  1222. 0x54,
  1223. "Mfg HFID mismatch"
  1224. },
  1225. {
  1226. 0xA0B1,
  1227. 0x55,
  1228. "Bad bind to FAC. Default PIB"
  1229. },
  1230. {
  1231. 0xA0B1,
  1232. 0x56,
  1233. "Bad bind to template PIB"
  1234. },
  1235. {
  1236. 0xA0B1,
  1237. 0x57,
  1238. "Bad bind to working PIB"
  1239. },
  1240. {
  1241. 0xA0B1,
  1242. 0x58,
  1243. "Bad Bind Scratch PIB"
  1244. },
  1245. {
  1246. 0xA0B1,
  1247. 0x59,
  1248. "Error Generating Checksum Scratch PIB"
  1249. },
  1250. {
  1251. 0xA0B1,
  1252. 0x5a,
  1253. "Checksum Error O1 PIB"
  1254. },
  1255. {
  1256. 0xA0B1,
  1257. 0x5b,
  1258. "Checksum Error O2 PIB"
  1259. },
  1260. {
  1261. 0xA0B1,
  1262. 0x5c,
  1263. "Checksum Error Working PIB"
  1264. },
  1265. {
  1266. 0xA0C1,
  1267. 0x03,
  1268. "Invalid Classifier"
  1269. },
  1270. {
  1271. 0xA0C1,
  1272. 0x04,
  1273. "Already too many Classifiers"
  1274. },
  1275. {
  1276. 0xA0C1,
  1277. 0x05,
  1278. "Classifier exists with different Classification Action"
  1279. },
  1280. {
  1281. 0xA0C1,
  1282. 0x07,
  1283. "Link Already in Progress"
  1284. },
  1285. {
  1286. 0xA0C1,
  1287. 0x08,
  1288. "Invalid Configuration"
  1289. },
  1290. {
  1291. 0xA0C1,
  1292. 0x10,
  1293. "Invalid CSPEC Version"
  1294. },
  1295. {
  1296. 0xA0C1,
  1297. 0x11,
  1298. "Invalid CSPEC"
  1299. },
  1300. {
  1301. 0xA0C1,
  1302. 0x20,
  1303. "Out of Local Resources"
  1304. },
  1305. {
  1306. 0xA0C1,
  1307. 0x30,
  1308. "Invalid Peer"
  1309. },
  1310. {
  1311. 0xA0C1,
  1312. 0x31,
  1313. "Peer Confirm Timed out"
  1314. },
  1315. {
  1316. 0xA0C1,
  1317. 0x40,
  1318. "Peer rejection"
  1319. },
  1320. {
  1321. 0xA0C5,
  1322. 0x01,
  1323. "Invalid Modification Control"
  1324. },
  1325. {
  1326. 0xA0C5,
  1327. 0x06,
  1328. "CID Not Found"
  1329. },
  1330. {
  1331. 0xA0C5,
  1332. 0x07,
  1333. "Link Update in Progress, try again later"
  1334. },
  1335. {
  1336. 0xA0C9,
  1337. 0x06,
  1338. "CID Not Found"
  1339. },
  1340. {
  1341. 0xA0C9,
  1342. 0x07,
  1343. "Link Update in Progress. Try again later"
  1344. },
  1345. {
  1346. 0xA0C9,
  1347. 0x31,
  1348. "Peer Confirm Timed out"
  1349. },
  1350. {
  1351. 0xA0CD,
  1352. 0x01,
  1353. "Invalid Request Type"
  1354. },
  1355. {
  1356. 0xA0CD,
  1357. 0x04,
  1358. "Too Many Requests",
  1359. },
  1360. {
  1361. 0xA0CD,
  1362. 0x06,
  1363. "CID Not Found"
  1364. },
  1365. {
  1366. 0xA0CD,
  1367. 0x10,
  1368. "Invalid CSPEC Version"
  1369. },
  1370. {
  1371. 0xA0CD,
  1372. 0x31,
  1373. "Peer Confirm Timed out"
  1374. }
  1375. };
  1376. char const * CPLMessage::modes [] =
  1377. {
  1378. "REQ",
  1379. "CNF",
  1380. "IND",
  1381. "RSP"
  1382. };
  1383. /*====================================================================*
  1384. *
  1385. * char const * CPLMessage::MessageName (uint16_t type) const;
  1386. *
  1387. * return the HomePlug AV or Intellon Management Message name for
  1388. * a given message type;
  1389. *
  1390. *--------------------------------------------------------------------*/
  1391. char const * CPLMessage::MessageName (uint16_t type) const
  1392. {
  1393. size_t lower = 0;
  1394. size_t upper = sizeof (CPLMessage::names)/sizeof (struct CPLMessage::name);
  1395. type &= MMTYPE_MODE;
  1396. while (lower < upper)
  1397. {
  1398. size_t index = (lower + upper) >> 1;
  1399. signed order = type - names [index].type;
  1400. if (order < 0)
  1401. {
  1402. upper = index - 0;
  1403. continue;
  1404. }
  1405. if (order > 0)
  1406. {
  1407. lower = index + 1;
  1408. continue;
  1409. }
  1410. return (CPLMessage::names [index].name);
  1411. }
  1412. return ("UNKNOWN_MME");
  1413. }
  1414. /*====================================================================*
  1415. *
  1416. * char const * CPLMessage::MessageMode (uint16_t type) const;
  1417. *
  1418. *--------------------------------------------------------------------*/
  1419. char const * CPLMessage::MessageMode (uint16_t type) const
  1420. {
  1421. return (CPLMessage::modes [type & MMTYPE_MODE]);
  1422. }
  1423. /*====================================================================*
  1424. *
  1425. * char const * MessageErrorText (uint16_t type, uint8_t code) const
  1426. *
  1427. * return the text for a given Intellon Management Message type
  1428. * and status code; search is done using a nested binary search;
  1429. *
  1430. *--------------------------------------------------------------------*/
  1431. char const * CPLMessage::MessageErrorText (uint16_t type, uint8_t code) const
  1432. {
  1433. size_t lower = 0;
  1434. size_t upper = sizeof (CPLMessage::mcodes) / sizeof (struct CPLMessage::code);
  1435. size_t limit = upper;
  1436. while (lower < upper)
  1437. {
  1438. size_t index = (lower + upper) >> 1;
  1439. signed order = type - CPLMessage::mcodes [index].type;
  1440. if (order < 0)
  1441. {
  1442. upper = index - 0;
  1443. continue;
  1444. }
  1445. if (order > 0)
  1446. {
  1447. lower = index + 1;
  1448. continue;
  1449. }
  1450. for (lower = index; lower > 0; lower--)
  1451. {
  1452. if (CPLMessage::mcodes [lower - 1].type != CPLMessage::mcodes [index].type)
  1453. {
  1454. break;
  1455. }
  1456. }
  1457. for (upper = index; upper < limit; upper++)
  1458. {
  1459. if (CPLMessage::mcodes [upper + 0].type != CPLMessage::mcodes [index].type)
  1460. {
  1461. break;
  1462. }
  1463. }
  1464. while (lower < upper)
  1465. {
  1466. index = (lower + upper) >> 1;
  1467. order = code - CPLMessage::mcodes [index].code;
  1468. if (order < 0)
  1469. {
  1470. upper = index - 0;
  1471. continue;
  1472. }
  1473. if (order > 0)
  1474. {
  1475. lower = index + 1;
  1476. continue;
  1477. }
  1478. return (CPLMessage::mcodes [index].text);
  1479. }
  1480. }
  1481. return ((code)? ("Failure"):("Success"));
  1482. }
  1483. /*====================================================================*
  1484. *
  1485. * CPLMessage & CPLMessage::CVS ();
  1486. *
  1487. * print names table on stdout in CVS format; this methods is not
  1488. * used by application software; it exists for maintenance only;
  1489. *
  1490. *--------------------------------------------------------------------*/
  1491. CPLMessage & CPLMessage::CSV ()
  1492. {
  1493. unsigned code = 0;
  1494. std::cout << "Name,Type,Code,Text" << std::endl;
  1495. while (code < (sizeof (CPLMessage::mcodes) / sizeof (struct CPLMessage::code)))
  1496. {
  1497. std::cout << CPLMessage::MessageName (CPLMessage::mcodes [code].type) << ",";
  1498. std::printf ("0x%04X,", CPLMessage::mcodes [code].type);
  1499. std::printf ("0x%02X,", CPLMessage::mcodes [code].code);
  1500. std::cout << CPLMessage::mcodes [code].text << std::endl;
  1501. code++;
  1502. }
  1503. return (*this);
  1504. }
  1505. /*====================================================================*
  1506. *
  1507. * CPLMessage & CPLMessage::HTML ();
  1508. *
  1509. * print message table on stdout in HTML format; this method is
  1510. * not used by application software; it exists for maintenance only;
  1511. *
  1512. *--------------------------------------------------------------------*/
  1513. CPLMessage & CPLMessage::HTML ()
  1514. {
  1515. unsigned code = 0;
  1516. std::cout << "<table>" << std::endl;
  1517. std::cout << "\t<tr>" << std::endl;
  1518. std::cout << "\t\t<th>Name</th>" << std::endl;
  1519. std::cout << "\t\t<th>Type</th>" << std::endl;
  1520. std::cout << "\t\t<th>Code</th>" << std::endl;
  1521. std::cout << "\t\t<th>Text</th>" << std::endl;
  1522. std::cout << "\t\t</tr>" << std::endl;
  1523. while (code < (sizeof (CPLMessage::mcodes) / sizeof (struct CPLMessage::code)))
  1524. {
  1525. std::cout << "\t<tr>" << std::endl;
  1526. std::cout << "\t\t<td>" << CPLMessage::MessageName (CPLMessage::mcodes [code].type) << "</td>" << std::endl;
  1527. printf ("\t\t<td>0x%04X</td>\n", CPLMessage::mcodes [code].type);
  1528. printf ("\t\t<td>0x%02X</td>\n", CPLMessage::mcodes [code].code);
  1529. std::cout << "\t\t<td>" << CPLMessage::mcodes [code].text << "</td>" << std::endl;;
  1530. std::cout << "\t\t</tr>" << std::endl;
  1531. code++;
  1532. }
  1533. std::cout << "\t</table>" << std::endl;
  1534. return (*this);
  1535. }
  1536. /*====================================================================*
  1537. *
  1538. * CPLMessage ()
  1539. *
  1540. *--------------------------------------------------------------------*/
  1541. CPLMessage::CPLMessage ()
  1542. {
  1543. return;
  1544. }
  1545. /*====================================================================*
  1546. *
  1547. * ~CPLMessage ()
  1548. *
  1549. *--------------------------------------------------------------------*/
  1550. CPLMessage::~CPLMessage ()
  1551. {
  1552. return;
  1553. }
  1554. /*====================================================================*
  1555. * end definition;
  1556. *--------------------------------------------------------------------*/
  1557. #endif