plc.h 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729
  1. /*====================================================================*
  2. Copyright (c) 2013,2018-2022 Qualcomm Technologies, Inc.
  3. All Rights Reserved.
  4. Confidential and Proprietary - Qualcomm Technologies, Inc.
  5. ******************************************************************
  6. 2013 Qualcomm Atheros, Inc.
  7. *--------------------------------------------------------------------*/
  8. #ifndef PLC_HEADER
  9. #define PLC_HEADER
  10. /*====================================================================*
  11. * system header files;
  12. *--------------------------------------------------------------------*/
  13. #include <stdint.h>
  14. /*====================================================================*
  15. * custom header files;
  16. *--------------------------------------------------------------------*/
  17. #include "../ether/channel.h"
  18. #include "../tools/types.h"
  19. #include "../tools/tlv.h"
  20. #include "../plc/chipset.h"
  21. #include "../key/HPAVKey.h"
  22. #include "../mme/mme.h"
  23. #include "../nvm/nvm.h"
  24. #include "../pib/pib.h"
  25. /*====================================================================*
  26. * these codes are returned in the MDEVICE_CLASS field of VS_SW_VER
  27. * messages;
  28. *--------------------------------------------------------------------*/
  29. #if 0
  30. /*
  31. * these are now defined in chipset.h and will be removed
  32. * from here for cheetah release;
  33. */
  34. #define CHIPSET_UNKNOWN 0x00
  35. #define CHIPSET_INT6000A1 0x01
  36. #define CHIPSET_INT6300A0 0x02
  37. #define CHIPSET_INT6400A0 0x03
  38. #define CHIPSET_AR7400A0 0x04
  39. #define CHIPSET_AR6405A0 0x05
  40. #define CHIPSET_PANTHER_LYNX 0x06
  41. #define CHIPSET_QCA7450A0 0x07
  42. #define CHIPSET_QCA7451A0 0x08
  43. #define CHIPSET_QCA7452A0 0x09
  44. #define CHIPSET_QCA7420A0 0x20
  45. #define CHIPSET_QCA6410A0 0x21
  46. #define CHIPSET_QCA6411A0 0x21
  47. #define CHIPSET_QCA7000A0 0x22
  48. #define CHIPSET_QCA7000I 0x22
  49. #define CHIPSET_QCA7005A0 0x22
  50. #define CHIPSET_QCA7500A0 0x30
  51. #endif
  52. /*
  53. * the following definitions define older constants in terms of
  54. * newer constants to avoid compiler errors; there is nothing
  55. * magic about the A0/A1 suffixes;
  56. */
  57. #if 0
  58. /*
  59. * these are now defined in chipset.h and will be removed
  60. * from here for cheetah release;
  61. */
  62. #define CHIPSET_INT6000 CHIPSET_INT6000A1
  63. #define CHIPSET_INT6300 CHIPSET_INT6300A0
  64. #define CHIPSET_INT6400 CHIPSET_INT6400A0
  65. #define CHIPSET_AR7400 CHIPSET_AR7400A0
  66. #define CHIPSET_INT6405 CHIPSET_AR6405A0
  67. #define CHIPSET_AR6405 CHIPSET_AR6405A0
  68. #define CHIPSET_QCA7450 CHIPSET_QCA7450A0
  69. #define CHIPSET_QCA7451 CHIPSET_QCA7451A0
  70. #define CHIPSET_QCA7452 CHIPSET_QCA7452A0
  71. #define CHIPSET_QCA7420 CHIPSET_QCA7420A0
  72. #define CHIPSET_QCA6410 CHIPSET_QCA6410A0
  73. #define CHIPSET_QCA6411 CHIPSET_QCA6411A0
  74. #define CHIPSET_QCA7000 CHIPSET_QCA7000A0
  75. #define CHIPSET_QCA7005 CHIPSET_QCA7005A0
  76. #define CHIPSET_QCA7500 CHIPSET_QCA7500A0
  77. #endif
  78. #define PLC_MODULE_SOFTLOADER 0x00
  79. #define PLC_MODULE_FIRMWARE (1 << 0)
  80. #define PLC_MODULE_PARAMETERS (1 << 1)
  81. #define PLC_MODULE_NVM_PIB (PLC_MODULE_PARAMETERS | PLC_MODULE_FIRMWARE)
  82. #define PLC_MODULE_OPERATION (1 << 3)
  83. #define PLC_MODULE_UPGRADE (PLC_MODULE_OPERATION | PLC_MODULE_PARAMETERS | PLC_MODULE_FIRMWARE)
  84. #define PLC_MODULE_FORCE_FLASH (1 << 4)
  85. #define PLC_MODULE_DO_NOT_REBOOT (1 << 5)
  86. #define PLC_MODULE_ALTERNATE_SECTION (1 << 6)
  87. #define PLC_MODULE_FORCE_SECTION (1 << 7)
  88. /*====================================================================*
  89. * constants;
  90. *--------------------------------------------------------------------*/
  91. #define PLC_VERSION_STRING 0xFF
  92. #define PLC_RECORD_SIZE 1024
  93. #define PLC_MODULE_SIZE 1400
  94. #define PLC_TIME_SLOTS 6
  95. #define LEGACY_PIBOFFSET 0x01F00000
  96. #define INT6x00_PIBOFFSET 0x01000000
  97. #define AR7x00_PIBOFFSET 0x00200000
  98. #define INT_CARRIERS 1155
  99. #define AMP_CARRIERS 2880
  100. #define CHEETAH_CARRIERS 2690
  101. #define CHEETAH_PRECODES 242
  102. #define PLC_BITS_PER_TONE 9
  103. extern byte const mod2bits [PLC_BITS_PER_TONE];
  104. extern byte const mod2db [PLC_BITS_PER_TONE];
  105. /*====================================================================*
  106. * device manager flagword bits;
  107. *--------------------------------------------------------------------*/
  108. /*
  109. * We reuse flagword bits in various programs to avoid proliferating
  110. * flagwords; make sure that one program does not use multiple names
  111. * or refer to the same bit;
  112. */
  113. #define PLC_BAILOUT (1 << 0)
  114. #define PLC_SILENCE (1 << 1)
  115. #define PLC_VERBOSE (1 << 2)
  116. #define PLC_ANALYSE (1 << 3)
  117. #define PLC_ERASE_DEVICE PLC_ANALYSE /* ampinit, plcinit */
  118. #define PLC_NEWLINE PLC_ANALYSE /* ampID, plcID */
  119. #define PLC_WAITFORRESET (1 << 4)
  120. #define PLC_WAITFORSTART (1 << 5)
  121. #define PLC_WAITFORASSOC (1 << 6)
  122. #define PLC_REMOTEHOSTS PLC_WAITFORASSOC
  123. #define PLC_RESET_DEVICE (1 << 7)
  124. #define PLC_RANDOM_ADDR PLC_RESET_DEVICE
  125. #define PLC_TIM_GARGRAVE PLC_RESET_DEVICE
  126. #define PLC_BRIDGE_LIST PLC_RESET_DEVICE /* plclist, amplist */
  127. #define PLC_FACTORY_DEFAULTS (1 << 8)
  128. #define PLC_FOREVER PLC_FACTORY_DEFAULTS /* plctest */
  129. #define PLC_GRAPH PLC_FACTORY_DEFAULTS /* plctone */
  130. #define PLC_DAEMON PLC_FACTORY_DEFAULTS /* plchost */
  131. #define PLC_REMOTE_LIST PLC_FACTORY_DEFAULTS /* plclist, amplist */
  132. #define PLC_BINARY PLC_FACTORY_DEFAULTS /* ampsnif */
  133. #define PLC_FORCE_FLASH PLC_FACTORY_DEFAULTS /* plchost */
  134. #define PLC_NETWORK (1 << 9)
  135. #define PLC_OPEN_SESSION PLC_NETWORK /* plcmod */
  136. #define PLC_MONITOR PLC_NETWORK /* ampsnif */
  137. #define PLC_XML_FORMAT PLC_NETWORK /* int6klog */
  138. #define PLC_VERSION (1 << 10)
  139. #define PLC_TR069_LOG PLC_VERSION /* plclog */
  140. #define PLC_WRITE_MODULE PLC_VERSION /* plcmod */
  141. #define PLC_MANUFACTURER (1 << 11)
  142. #define PLC_READ_MODULE PLC_MANUFACTURER /* plcmod */
  143. #define PLC_READ_MAC (1 << 12)
  144. #define PLC_DUMP_MODULE PLC_READ_MAC /* int6mod */
  145. #define PLC_DEV_TRAFFIC PLC_READ_MAC /* trafficgen */
  146. #define PLC_LOCAL_TRAFFIC PLC_READ_MAC /* int6krate, amprate, plcrate */
  147. #define PLC_READ_PIB (1 << 13)
  148. #define PLC_NETWORK_TRAFFIC PLC_READ_PIB /* plcrate */
  149. #define PLC_READ_IDENTITY (1 << 14)
  150. #define PLC_UNCODED_RATES PLC_READ_IDENTITY /* plcrate */
  151. #define PLC_WRITE_MAC (1 << 15)
  152. #define PLC_LINK_STATS PLC_WRITE_MAC /* plcstat */
  153. #define PLC_WRITE_PIB (1 << 16)
  154. #define PLC_TONE_MAP PLC_WRITE_PIB /* plcstat */
  155. #define PLC_FLASH_DEVICE (1 << 17)
  156. #define PLC_COMMIT_MODULE PLC_FLASH_DEVICE /* plcmod */
  157. #define PLC_QUICK_FLASH (1 << 18)
  158. #define PLC_SETLOCALKEY (1 << 19)
  159. #define PLC_RXONLY PLC_SETLOCALKEY
  160. #define PLC_SETREMOTEKEY (1 << 20)
  161. #define PLC_TXONLY PLC_SETREMOTEKEY
  162. #define PLC_SDRAM_INFO (1 << 21)
  163. #define PLC_SDRAM_CONFIG (1 << 22)
  164. #define PLC_CONFIGURE PLC_SDRAM_CONFIG /* plcotst */
  165. #define PLC_LLDP_INFO PLC_SDRAM_CONFIG
  166. #define PLC_NVRAM_INFO (1 << 23)
  167. #define PLC_ATTRIBUTES (1 << 24)
  168. #define PLC_PUSH_BUTTON (1 << 25)
  169. #define PLC_READ_CFG (1 << 26)
  170. #define PLC_ERASE_SECTOR PLC_READ_CFG
  171. #define PLC_ROUTE_INFO PLC_READ_CFG
  172. #define PLC_RD_MOD_WR_PIB (1 << 27)
  173. #define PLC_SNIFFER PLC_RD_MOD_WR_PIB /* ampsnif */
  174. #define PLC_READ_ALL PLC_RD_MOD_WR_PIB /* ampinit */
  175. #define PLC_TOPOLOGY_TABLE_LIST PLC_RD_MOD_WR_PIB /* plctool - bit 27 */
  176. #define PLC_WATCHDOG_REPORT (1 << 28)
  177. #define PLC_RESULTS PLC_WATCHDOG_REPORT /* plcotst */
  178. #define PLC_HOST_ACTION (1 << 29)
  179. #define PLC_LINK_STATUS (1 << 30)
  180. #define PLC_MULTICAST_INFO PLC_LINK_STATUS
  181. #define PLC_RX_TONEMAPS PLC_HOST_ACTION /* plcstat */
  182. #define PLC_SET_PRESCALER PLC_NVRAM_INFO
  183. #define PLC_GET_PRESCALER PLC_HOST_ACTION
  184. #define PLC_RESET_BACKOFF PLC_ATTRIBUTES
  185. #define PLC_COUPLING PLC_PUSH_BUTTON
  186. #define PLC_TRAFFIC_UNIDI (1 << 31)
  187. #define PLC_DEV_TRAFFIC_UNIDI PLC_TRAFFIC_UNIDI /* trafficgen */
  188. #define PLC_PROXY_NW_INFO PLC_TRAFFIC_UNIDI
  189. #define PLC_DSL_STATUS PLC_LINK_STATUS /* backoff1 */
  190. /*====================================================================*
  191. * device manager flagword bits (flag2);
  192. *--------------------------------------------------------------------*/
  193. #define PLC_FLAG2_CFM_ACT (1 << 0)
  194. #define PLC_FLAG2_BT_SRC (1 << 1)
  195. /*====================================================================*
  196. * message format strings;
  197. *--------------------------------------------------------------------*/
  198. #define PLC_BADVALUE "Invalid or suspect data"
  199. #define PLC_WONTDOIT "Device refused request"
  200. #define PLC_NODEVICE "Need a device. Try 'local' or '00:B0:52:00:00:01'."
  201. #define PLC_BADFRAME "Unexpected response"
  202. #define PLC_NODETECT "Device must be connected"
  203. #define PLC_NOMEMORY "Not enough memory"
  204. #define PLC_NOTREADY "Function not implemented"
  205. #define PLC_ERR_OFFSET "Data offset error"
  206. #define PLC_ERR_LENGTH "Data length error"
  207. #define PLC_BAD_MAC "Have '%s' instead of MAC address"
  208. #define PLC_BAD_DAK "Have '%s' instead of DAK"
  209. #define PLC_BAD_NMK "Have '%s' instead of NMK"
  210. /*====================================================================*
  211. * program constants;
  212. *--------------------------------------------------------------------*/
  213. #define PLCDEVICE "PLC"
  214. #define HARDWAREID 0
  215. #define SOFTWAREID 0
  216. #define PLCSESSION 0x78563412
  217. #define HOSTACTION 0
  218. #define SECTORCODE 0
  219. #define PUSHBUTTON 1
  220. #define MODULECODE (VS_MODULE_MAC | VS_MODULE_PIB)
  221. #define READACTION 0
  222. #define FLASH_SIZE 0x200000
  223. #define PLCOUPLING 0
  224. #define PLC_STATE 0
  225. #define PLC_TIMER 5
  226. #define PLC_PAUSE 5
  227. #define PLC_FLASH 30
  228. #define PLC_SLEEP 0
  229. #define PLC_COUNT 1
  230. #define PLC_INDEX 0
  231. #define PLC_FLAGS 0
  232. #define PLC_MEMTYPE_AUTO 1
  233. #define PLC_MEMTYPE_ITCM 2
  234. #define PLC_MEMTYPE_DTCM 3
  235. #define PLC_MEMTYPE_SRAM 4
  236. #define PLC_MEMTYPE_SDRAM 5
  237. #define PLC_ECHOTIME 3
  238. #define PLC_LONGTIME (unsigned)(~0)
  239. #define DEFAULT_TRAFFICGEN_RATE 0
  240. #define PLC_EXIT(plc) ((signed) (plc->flags & PLC_BAILOUT))
  241. /*====================================================================*
  242. * common mac address names;
  243. *--------------------------------------------------------------------*/
  244. #define PLCDEVICES 3
  245. extern struct _term_ const devices [PLCDEVICES];
  246. extern byte const broadcast [ETHER_ADDR_LEN];
  247. extern byte const localcast [ETHER_ADDR_LEN];
  248. /*====================================================================*
  249. *
  250. * the plc structure holds everything needed to perform powerline
  251. * device management operations including a channel structure for
  252. * Ethernet interface management and a message structure for data
  253. * buffer management;
  254. *
  255. * the channel structure holds information needed to open, read,
  256. * write and close a raw socket; it differs in detail depending
  257. * on constants WINPCAP and LIBPCAP;
  258. *
  259. * byte array MAC[] holds the MAC address of the target device when
  260. * one is specified on the command line; this value is initialized
  261. * to 00:B0:52:00:00:01 on startup and remains unchanged unless the
  262. * user specifies one or more addresses on the command line;
  263. *
  264. * byte array RDA[] holds the MAC address of a remote device when
  265. * a remote device address is required;
  266. *
  267. * byte arrays NMK[] and DAK[] hold encryption keys used by some
  268. * operations;
  269. *
  270. * the socket _file_ structure holds the descriptor and interface
  271. * name of the host NIC where the name is eth0, eth1, ... or ethn;
  272. *
  273. * the three _file_ structures, CFG, NVM, and PIB hold descriptors
  274. * and filenames for files written to the device;
  275. *
  276. * the three _file_ structures cfg, nvm and pib hold
  277. * descriptors and filenames of files read from the device;
  278. *
  279. * integers index, count and pause control command line looping
  280. * and waiting;
  281. *
  282. * flag_t flags contains bits that define program operations and
  283. * control utility program flow;
  284. *
  285. *--------------------------------------------------------------------*/
  286. typedef struct plc
  287. {
  288. struct channel * channel;
  289. struct channel * channel1;
  290. struct message * message;
  291. void * content;
  292. ssize_t packetsize;
  293. uint8_t MAC [ETHER_ADDR_LEN];
  294. uint8_t RDA [ETHER_ADDR_LEN];
  295. uint8_t NMK [HPAVKEY_NMK_LEN];
  296. uint8_t DAK [HPAVKEY_DAK_LEN];
  297. struct _file_ CFG;
  298. struct _file_ cfg;
  299. struct _file_ SFT;
  300. struct _file_ sft;
  301. struct _file_ NVM;
  302. struct _file_ nvm;
  303. struct _file_ PIB;
  304. struct _file_ pib;
  305. struct _file_ XML;
  306. struct _file_ rpt;
  307. struct _file_ socket;
  308. struct _file_ socket1;
  309. uint32_t hardwareID;
  310. uint32_t softwareID;
  311. uint32_t cookie;
  312. uint8_t action;
  313. uint8_t sector;
  314. uint8_t module;
  315. uint8_t pushbutton;
  316. uint8_t readaction;
  317. uint8_t coupling;
  318. unsigned flash_size;
  319. unsigned state;
  320. unsigned timer;
  321. unsigned sleep;
  322. unsigned count;
  323. unsigned index;
  324. flag_t flags;
  325. flag_t flag2;
  326. uint8_t topotable_action;
  327. }
  328. PLC;
  329. /*====================================================================*
  330. * functions;
  331. *--------------------------------------------------------------------*/
  332. signed Antiphon (struct plc * plc, uint8_t osa [], uint8_t oda []);
  333. signed Attributes (struct plc *);
  334. signed Attributes1 (struct plc *);
  335. signed Attributes2 (struct plc *);
  336. signed BootDevice (struct plc *);
  337. signed BootDevice1 (struct plc *);
  338. signed BootDevice2 (struct plc *);
  339. signed BootDevice2_no_wait(struct plc *);
  340. signed BootDeviceFirmware (struct plc *);
  341. signed BootDeviceParameters (struct plc *);
  342. signed BootFirmware1 (struct plc *);
  343. signed BootFirmware2 (struct plc *);
  344. signed BootParameters1 (struct plc *);
  345. signed BootParameters2 (struct plc *);
  346. signed ChangeIdent (struct plc *);
  347. signed CrossTraffic (struct plc *);
  348. signed CrossTrafficOne (struct plc *);
  349. signed CrossTrafficTwo (struct plc *);
  350. signed DeviceIdent (struct plc *);
  351. signed EmulateHost (struct plc *);
  352. signed EmulateHost64 (struct plc *);
  353. signed EraseFlashSector (struct plc *);
  354. signed ExecuteApplets (struct plc *);
  355. signed ExecuteApplets1 (struct plc *);
  356. signed ExecuteApplets2 (struct plc *);
  357. signed FactoryDefaults (struct plc *);
  358. signed FactoryReset (struct plc *);
  359. signed FlashDevice (struct plc *);
  360. signed FlashDevice1 (struct plc *);
  361. signed FlashDevice2 (struct plc *, uint32_t options);
  362. signed FlashDevice2_no_wait(struct plc *, uint32_t options);
  363. signed FlashDevice3 (struct plc *);
  364. signed FlashDevice4 (struct plc *, uint32_t options);
  365. signed FlashFirmware (struct plc *, uint32_t options);
  366. signed FlashNVM (struct plc *);
  367. signed FlashNVM (struct plc *);
  368. signed FlashPTS (struct plc *);
  369. signed FlashParameters (struct plc *, uint32_t options);
  370. signed FlashSoftloader (struct plc *, uint32_t options);
  371. signed FlashUpgrade (struct plc *, uint32_t options);
  372. signed HostActionResponse (struct plc *);
  373. signed vs_host_action_response(struct plc*);
  374. signed Identity (struct plc *);
  375. signed Identity1 (struct plc *);
  376. signed Identity2 (struct plc *);
  377. signed get_nid_nmk_req(struct plc* );
  378. signed process_get_nid_cnf(struct plc*, void*, void*);
  379. signed InitDevice (struct plc *);
  380. signed InitDevice1 (struct plc *);
  381. signed InitDevice2 (struct plc *);
  382. signed IsFlashExists (struct plc * plc);
  383. signed LinkStatus (struct plc *);
  384. signed ListLocalDevices (struct plc * plc, char const * space, char const * comma);
  385. signed ListRemoteDevices (struct plc *, char const * space, char const * comma);
  386. signed ListRemoteDevices1 (struct plc *, char const * space, char const * comma);
  387. signed ListRemoteDevices2 (struct plc *, char const * space, char const * comma);
  388. signed LldpInfo (struct plc * plc);
  389. signed LocalTrafficSend (struct plc * plc);
  390. signed MDUTrafficStats (struct plc *, uint8_t command, uint8_t session, uint8_t slave);
  391. signed MDUTrafficStats (struct plc *, uint8_t command, uint8_t session, uint8_t slave);
  392. signed MfgString (struct plc *);
  393. signed MulticastInfo1 (struct plc *);
  394. signed MulticastInfo2 (struct plc *);
  395. signed NVMSelect (struct plc *, signed (struct plc *), signed (struct plc *));
  396. signed NVRAMInfo (struct plc *);
  397. signed NetInfo (struct plc *);
  398. signed NetInfo1 (struct plc *);
  399. signed NetInfo2 (struct plc *);
  400. signed NetworkDevices (struct plc *, void * memory, size_t extent);
  401. signed NetworkDevices1 (struct plc *, void * memory, size_t extent);
  402. signed NetworkDevices2 (struct plc *, void * memory, size_t extent);
  403. signed NetworkInfoStats (struct plc *);
  404. signed NetworkInformation (struct plc *);
  405. signed NetworkInformation1 (struct plc *);
  406. signed NetworkInformation2 (struct plc *);
  407. signed NetworkProbe (struct plc *);
  408. signed NetworkTraffic (struct plc *);
  409. signed NetworkTraffic1 (struct plc *);
  410. signed NetworkTraffic2 (struct plc *);
  411. signed PLCSelect (struct plc *, signed method1 (struct plc *), signed method2 (struct plc *));
  412. signed PhyRates (struct plc *);
  413. signed PhyRates1 (struct plc *);
  414. signed PhyRates2 (struct plc *);
  415. signed ProxyNetworkInfo (struct plc *);
  416. signed PushButton (struct plc *);
  417. signed ReadFirmware (struct plc *);
  418. signed ReadFirmware1 (struct plc *);
  419. signed ReadFirmware2 (struct plc *);
  420. signed ReadFirmware3 (struct plc *);
  421. signed RouteInfo (struct plc *);
  422. signed RouteInfo_7500(struct plc*);
  423. signed ReadFMI (struct plc *, uint8_t MMV, uint16_t MMTYPE);
  424. signed ReadMFG (struct plc *, uint8_t MMV, uint16_t MMTYPE);
  425. signed ReadMME (struct plc *, uint8_t MMV, uint16_t MMTYPE);
  426. signed ReadMME1 (struct plc *, uint8_t MMV, uint16_t MMTYPE);
  427. signed ReadMultiple (struct plc *, uint8_t MMV, uint16_t MMTYPE);
  428. signed ReadParameterBlock (struct plc *, void * memory, size_t extent);
  429. signed ReadParameters (struct plc *);
  430. signed ReadParameters1 (struct plc *);
  431. signed ReadParameters2 (struct plc *);
  432. signed ReadParameters3 (struct plc *);
  433. signed RemoteHosts (struct plc *);
  434. signed Reset (struct plc *);
  435. signed ResetAndWait (struct plc *);
  436. signed ResetDevice (struct plc *);
  437. signed RxRates2 (struct plc *);
  438. signed SDRAMInfo (struct plc *);
  439. signed SendMME (struct plc *);
  440. signed SendMME1 (struct plc *);
  441. signed SetNMK (struct plc *);
  442. signed SlaveMembership (struct plc *);
  443. signed StartDevice (struct plc *);
  444. signed StartDevice1 (struct plc *);
  445. signed StartDevice2 (struct plc *);
  446. signed StartFirmware (struct plc *, unsigned module, void const * header);
  447. signed StartFirmware1 (struct plc *, unsigned module, const struct lightning_nvm_header *);
  448. signed StartFirmware2 (struct plc *, unsigned module, const struct panther_nvm_header *);
  449. signed Topology (struct plc *);
  450. signed Topology1 (struct plc *);
  451. signed Topology2 (struct plc *);
  452. signed Traffic (struct plc *);
  453. signed Traffic1 (struct plc *);
  454. signed Traffic2 (struct plc *);
  455. signed Traffic3 (struct plc *, uint8_t trafficgen_rate);
  456. signed Traffic3_unidi (struct plc *, uint8_t trafficgen_rate);
  457. signed Transmit (struct plc *, uint8_t osa [], uint8_t oda []);
  458. signed TxRates2 (struct plc *);
  459. signed UpgradeDevice1 (struct plc *);
  460. signed VersionInfo (struct plc *);
  461. signed VersionInfo1 (struct plc *);
  462. signed VersionInfo2 (struct plc *);
  463. signed WaitForAssoc (struct plc *);
  464. signed WaitForBootLoader (struct plc *);
  465. signed WaitForReset (struct plc *);
  466. signed WaitForRestart (struct plc *);
  467. signed WaitForStart (struct plc *, char buffer [], size_t length);
  468. signed WaitForStart_Destination(struct plc*);
  469. signed WatchdogReport (struct plc *);
  470. signed WriteCFG (struct plc *);
  471. signed WriteExecuteApplet1 (struct plc *, unsigned module, const struct lightning_nvm_header *);
  472. signed WriteExecuteApplet2 (struct plc *, unsigned module, const struct panther_nvm_header *);
  473. signed WriteExecuteFirmware (struct plc *, unsigned module, void const * nvm_header);
  474. signed WriteExecuteFirmware1 (struct plc *, unsigned module, const struct lightning_nvm_header *);
  475. signed WriteExecuteFirmware2 (struct plc *, unsigned module, const struct panther_nvm_header *);
  476. signed WriteExecutePIB (struct plc *, unsigned offset, struct pib_header *);
  477. signed WriteExecuteParameters (struct plc *, unsigned module, void const * nvm_header);
  478. signed WriteExecuteParameters1 (struct plc *, unsigned module, const struct lightning_nvm_header *);
  479. signed WriteExecuteParameters2 (struct plc *, unsigned module, const struct panther_nvm_header *);
  480. signed WriteFirmware (struct plc *, unsigned module, void const * nvm_header);
  481. signed WriteFirmware1 (struct plc *, unsigned module, const struct lightning_nvm_header *);
  482. signed WriteFirmware2 (struct plc *, unsigned module, const struct panther_nvm_header *);
  483. signed WriteMEM (struct plc *, struct _file_ *, unsigned module, uint32_t offset, uint32_t extent);
  484. signed WriteMOD (struct plc *, uint8_t module, void const * memory, size_t extent);
  485. signed WriteNVM (struct plc *);
  486. signed WritePIB (struct plc *);
  487. signed WriteParameters (struct plc *, unsigned module, void const * nvm_header);
  488. signed WriteParameters1 (struct plc *, unsigned module, const struct lightning_nvm_header *);
  489. signed WriteParameters2 (struct plc *, unsigned module, const struct panther_nvm_header *);
  490. signed TopologyTableInfo(struct plc*);
  491. /*====================================================================*
  492. *
  493. *--------------------------------------------------------------------*/
  494. #define PLC_FORMAT_HEX 0
  495. #define PLC_FORMAT_DEC 1
  496. #define PLC_FORMAT_BIN 2
  497. #define PLC_FORMAT_ASC 3
  498. #ifndef __GNUC__
  499. #pragma pack (push,1)
  500. #endif
  501. struct __packed plcproperty
  502. {
  503. uint8_t PROP_OPTION;
  504. uint8_t PROP_FORMAT;
  505. uint32_t PROP_NUMBER;
  506. uint32_t PROP_VERSION;
  507. uint32_t PROP_LENGTH;
  508. uint8_t PROP_BUFFER [128];
  509. uint8_t DATA_FORMAT;
  510. uint32_t DATA_LENGTH;
  511. uint8_t DATA_BUFFER [128];
  512. };
  513. extern struct plcproperty plcproperty;
  514. #ifndef __GNUC__
  515. #pragma pack (pop)
  516. #endif
  517. /*====================================================================*
  518. *
  519. *--------------------------------------------------------------------*/
  520. signed GetProperty (struct plc *, struct plcproperty *);
  521. signed SetProperty (struct plc *, struct plcproperty *);
  522. /*====================================================================*
  523. *
  524. *--------------------------------------------------------------------*/
  525. typedef struct __packed plcstation
  526. {
  527. uint8_t LOC;
  528. uint8_t CCO;
  529. uint8_t TEI;
  530. uint8_t MAC [ETHER_ADDR_LEN];
  531. uint8_t BDA [ETHER_ADDR_LEN];
  532. uint16_t TX;
  533. uint16_t RX;
  534. char hardware [0x10];
  535. char firmware [0x80];
  536. char identity [0x40];
  537. }
  538. plcstation;
  539. typedef struct __packed plcnetwork
  540. {
  541. signed ifname;
  542. signed plcstations;
  543. struct plcstation plcstation [1];
  544. }
  545. plcnetwork;
  546. typedef struct __packed plctopology
  547. {
  548. signed plcnetworks;
  549. struct plcnetwork plcnetwork [1];
  550. }
  551. pcltopology;
  552. /*====================================================================*
  553. * functions that use struct channel and struct message directly
  554. * instead of struct plc;
  555. *--------------------------------------------------------------------*/
  556. signed FlashMOD (struct channel *, uint8_t module);
  557. signed WriteModule (struct channel *, struct message *, void const * memory, size_t extent);
  558. signed WriteMemory (struct channel *, struct message *, struct _file_ *, uint32_t offset, uint32_t extent);
  559. unsigned LocalDevices (struct channel const *, struct message *, void * memory, size_t extent);
  560. signed Platform (struct channel *, const byte device []);
  561. signed PLCReadParameterBlock (struct channel *, struct message *, void * memory, size_t extent);
  562. signed PLCReadFirmwareImage (struct channel *, struct message *, void * memory, size_t extent);
  563. signed PLCTopology (struct channel *, struct message *, struct plctopology *);
  564. signed PLCTopologyPrint (struct plctopology *);
  565. /*====================================================================*
  566. * vs_module_spec message;
  567. *--------------------------------------------------------------------*/
  568. #define PLC_MODULE_EXECUTE (1 << 0)
  569. #define PLC_MODULE_ABSOLUTE (1 << 1)
  570. #define PLC_MODULE_RELATIVE (0 << 1)
  571. #define PLC_MODULE_READ_TIMEOUT 5000
  572. #define PLC_MODULE_BOOT_TIMEOUT 60000
  573. #define PLC_MODULE_REQUEST_TIMEOUT 60000
  574. #define PLC_MODULE_WRITE_TIMEOUT 90000
  575. #define PLC_MOD_OP_READ_MEMORY 0x00
  576. #define PLC_MOD_OP_READ_FLASH 0x01
  577. #define PLC_MOD_OP_START_SESSION 0x10
  578. #define PLC_MOD_OP_WRITE_MODULE 0x11
  579. #define PLC_MOD_OP_CLOSE_SESSION 0x12
  580. #define PLC_MODULEID 0x0000
  581. #define PLC_SUBMODULEID 0x0000
  582. #define PLC_MODULEID_MDIO_INIT 0x1000
  583. #define PLC_MODULEID_UART_ASYNC 0x2000
  584. #define PLC_MODULEID_ADDR_ENUM 0x3000
  585. #define PLC_MODULEID_POWER_MGT 0x4000
  586. #define PLC_MODULEID_TR069 0x4001
  587. #define PLC_MODULEID_FORWARDCFG 0x7000
  588. #define PLC_MODULEID_FIRMWARE 0x7001
  589. #define PLC_MODULEID_PARAMETERS 0x7002
  590. #define PLC_MODULEID_SOFTLOADER 0x7003
  591. #define PLC_MODULEID_RESERVED1 0x7004
  592. #define PLC_MODULEID_PIBMERGE 0x7005
  593. #define PLC_MODULEID_RESERVED2 0x7006
  594. typedef struct __packed vs_module_spec
  595. {
  596. uint16_t MODULE_ID;
  597. uint16_t MODULE_SUB_ID;
  598. uint32_t MODULE_LENGTH;
  599. uint32_t MODULE_CHKSUM;
  600. }
  601. vs_module_spec;
  602. #define PLC_COMMIT_FORCE (1 << 0)
  603. #define PLC_COMMIT_NORESET (1 << 1)
  604. #define PLC_COMMIT_FACTPIB (1 << 31)
  605. /*====================================================================*
  606. * functions;
  607. *--------------------------------------------------------------------*/
  608. signed ModuleSpec (struct _file_ *, struct vs_module_spec *);
  609. signed ModuleSession (struct plc *, unsigned modules, vs_module_spec *);
  610. signed ModuleWrite (struct plc *, struct _file_ *, unsigned module, vs_module_spec *);
  611. signed ModuleRead (struct plc *, struct _file_ *, uint16_t source, uint16_t module, uint16_t submodule);
  612. signed ModuleDump (struct plc *, uint16_t source, uint16_t module, uint16_t submodule);
  613. signed ModuleCommit (struct plc *, uint32_t flags);
  614. /*====================================================================*
  615. * functions;
  616. *--------------------------------------------------------------------*/
  617. #ifdef __GNUC__
  618. __attribute__ ((format (printf, 2, 3)))
  619. #endif
  620. void Request (struct plc *, char const * format, ...);
  621. #ifdef __GNUC__
  622. __attribute__ ((format (printf, 2, 3)))
  623. #endif
  624. void Confirm (struct plc *, char const * format, ...);
  625. #ifdef __GNUC__
  626. __attribute__ ((format (printf, 2, 3)))
  627. #endif
  628. void Display (struct plc *, char const * format, ...);
  629. #ifdef __GNUC__
  630. __attribute__ ((format (printf, 2, 3)))
  631. #endif
  632. void Failure (struct plc *, char const * format, ...);
  633. /*====================================================================*
  634. *
  635. *--------------------------------------------------------------------*/
  636. #endif