plcmdio32.c 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * int6kmdio2 - Qualcomm Atheros 32-bit MDIO Register Editor
  11. *
  12. * Contributor(s):
  13. * Nathaniel Houghton <nhoughto@qca.qualcomm.com>
  14. * Charles Maier <cmaier@qca.qualcomm.com>
  15. * Matthieu Poullet <m.poullet@avm.de>
  16. *
  17. *--------------------------------------------------------------------*/
  18. /*====================================================================*
  19. * system header files;
  20. *--------------------------------------------------------------------*/
  21. #include <unistd.h>
  22. #include <stdlib.h>
  23. #include <string.h>
  24. #include <ctype.h>
  25. /*====================================================================*
  26. * custom header files;
  27. *--------------------------------------------------------------------*/
  28. #include "../tools/getoptv.h"
  29. #include "../tools/putoptv.h"
  30. #include "../tools/memory.h"
  31. #include "../tools/number.h"
  32. #include "../tools/symbol.h"
  33. #include "../tools/types.h"
  34. #include "../tools/flags.h"
  35. #include "../tools/files.h"
  36. #include "../tools/error.h"
  37. #include "../plc/plc.h"
  38. #include "../ram/nvram.h"
  39. #include "../ram/sdram.h"
  40. #include "../nvm/nvm.h"
  41. #include "../pib/pib.h"
  42. #include "../mme/mme.h"
  43. #include "../mdio/mdio.h"
  44. /*====================================================================*
  45. * custom source files;
  46. *--------------------------------------------------------------------*/
  47. #ifndef MAKEFILE
  48. #include "../plc/Devices.c"
  49. #include "../plc/Display.c"
  50. #include "../mme/UnwantedMessage.c"
  51. #endif
  52. #ifndef MAKEFILE
  53. #include "../tools/getoptv.c"
  54. #include "../tools/putoptv.c"
  55. #include "../tools/version.c"
  56. #include "../tools/uintspec.c"
  57. #include "../tools/hexencode.c"
  58. #include "../tools/hexdecode.c"
  59. #include "../tools/todigit.c"
  60. #include "../tools/hexdump.c"
  61. #include "../tools/hexview.c"
  62. #include "../tools/regview32.c"
  63. #include "../tools/synonym.c"
  64. #include "../tools/error.c"
  65. #endif
  66. #ifndef MAKEFILE
  67. #include "../ether/channel.c"
  68. #include "../ether/openchannel.c"
  69. #include "../ether/closechannel.c"
  70. #include "../ether/readpacket.c"
  71. #include "../ether/sendpacket.c"
  72. #endif
  73. #ifndef MAKEFILE
  74. #include "../mme/EthernetHeader.c"
  75. #include "../mme/QualcommHeader.c"
  76. #include "../mme/MMECode.c"
  77. #endif
  78. /*====================================================================*
  79. * program constants;
  80. *--------------------------------------------------------------------*/
  81. #define MDIO_FLAG_REVERSE (1 << 0)
  82. #define MDIO_MODE_READ 0
  83. #define MDIO_MODE_WRITE 1
  84. #define CODE_SHIFT 3
  85. #define CODE_MASK (0x03 << CODE_SHIFT)
  86. #define CODE_HIGH_ADDR 0x03
  87. #define CODE_LOW_ADDR 0x02
  88. #define HIGH_ADDR_SHIFT 9
  89. #define LOW_ADDR_SHIFT 1
  90. #define HIGH_ADDR_MASK (0x000003FF << HIGH_ADDR_SHIFT)
  91. #define LOW_ADDR_MASK 0x000001FC
  92. /*====================================================================*
  93. *
  94. * signed mdio (struct channel * channel, uint8_t mode, uint8_t phy, uint16_t * data);
  95. *
  96. *--------------------------------------------------------------------*/
  97. static signed mdio (struct channel * channel, uint8_t mode, uint8_t phy, uint8_t reg, uint16_t * data)
  98. {
  99. struct message message;
  100. signed packetsize;
  101. #ifndef __GNUC__
  102. #pragma pack (push,1)
  103. #endif
  104. struct __packed vs_mdio_command_request
  105. {
  106. struct ethernet_hdr ethernet;
  107. struct qualcomm_hdr qualcomm;
  108. uint8_t OPERATION;
  109. uint8_t PHY;
  110. uint8_t REG;
  111. uint16_t DATA;
  112. }
  113. * request = (struct vs_mdio_command_request *) (& message);
  114. struct __packed vs_mdio_command_confirm
  115. {
  116. struct ethernet_hdr ethernet;
  117. struct qualcomm_hdr qualcomm;
  118. uint8_t MSTATUS;
  119. uint16_t DATA;
  120. uint8_t PHY;
  121. uint8_t REG;
  122. }
  123. * confirm = (struct vs_mdio_command_confirm *) (& message);
  124. #ifndef __GNUC__
  125. #pragma pack (pop)
  126. #endif
  127. memset (& message, 0, sizeof (message));
  128. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  129. QualcommHeader (& request->qualcomm, 0, (VS_MDIO_COMMAND | MMTYPE_REQ));
  130. request->OPERATION = mode;
  131. request->PHY = phy;
  132. request->REG = reg;
  133. request->DATA = HTOLE16 (* data);
  134. #if 1
  135. printf (" phy 0x%02X", phy);
  136. printf (" reg 0x%02X", reg);
  137. printf (" data 0x%04X", * data);
  138. printf ("\n");
  139. #endif
  140. if (sendpacket (channel, & message, (ETHER_MIN_LEN - ETHER_CRC_LEN)) == -1)
  141. {
  142. error (1, errno, CHANNEL_CANTSEND);
  143. }
  144. while ((packetsize = readpacket (channel, & message, sizeof (message))) > 0)
  145. {
  146. if (UnwantedMessage (& message, packetsize, 0, (VS_MDIO_COMMAND | MMTYPE_CNF)))
  147. {
  148. continue;
  149. }
  150. if (confirm->MSTATUS)
  151. {
  152. error (0, 0, "%s (%0X): %s", MMECode (confirm->qualcomm.MMTYPE, confirm->MSTATUS), confirm->MSTATUS, PLC_WONTDOIT);
  153. continue;
  154. }
  155. * data = confirm->DATA;
  156. return (0);
  157. }
  158. return (-1);
  159. }
  160. /*====================================================================*
  161. *
  162. * void function (struct channel * channel, uint8_t mode, uint32_t address, uint32_t content, flag_t flags);
  163. *
  164. *--------------------------------------------------------------------*/
  165. static void function (struct channel * channel, uint8_t mode, uint32_t address, uint32_t content, flag_t flags)
  166. {
  167. uint8_t phy;
  168. uint8_t reg;
  169. uint16_t mdio_data;
  170. uint16_t high_addr = (address & HIGH_ADDR_MASK) >> HIGH_ADDR_SHIFT;
  171. uint16_t low_addr = (address & LOW_ADDR_MASK) >> LOW_ADDR_SHIFT;
  172. /*
  173. * supply chip with high address bytes
  174. */
  175. phy = CODE_HIGH_ADDR << CODE_SHIFT;
  176. reg = 0;
  177. mdio_data = high_addr;
  178. if (mdio (channel, MDIO_MODE_WRITE, phy, reg, & mdio_data))
  179. {
  180. error (1, 0, "could not set high address bits");
  181. }
  182. if (_allclr (flags, MDIO_FLAG_REVERSE))
  183. {
  184. /*
  185. * supply chip with first low address bytes and first data chunk
  186. */
  187. phy = CODE_LOW_ADDR << CODE_SHIFT;
  188. phy |= (low_addr & 0xE0) >> 5;
  189. reg = (low_addr & 0x1F);
  190. mdio_data = (content & 0x0000FFFF);
  191. if (mdio (channel, mode, phy, reg, & mdio_data))
  192. {
  193. error (1, 0, "could not read low 16bits");
  194. }
  195. if (mode == MDIO_MODE_READ)
  196. {
  197. content = mdio_data;
  198. }
  199. /*
  200. * supply chip with second low address bytes and second data chunk
  201. */
  202. phy = CODE_LOW_ADDR << CODE_SHIFT;
  203. phy |= (low_addr & 0xE0) >> 5;
  204. reg = (low_addr & 0x1F) | 0x01;
  205. mdio_data = (content & 0xFFFF0000) >> 16;
  206. if (mdio (channel, mode, phy, reg, & mdio_data))
  207. {
  208. error (1, 0, "could not read high 16bits");
  209. }
  210. if (mode == MDIO_MODE_READ)
  211. {
  212. content |= (mdio_data << 16);
  213. printf ("0x%08x: 0x%08x\n", address, content);
  214. }
  215. }
  216. else
  217. {
  218. /*
  219. * supply chip with second low address bytes and second data chunk
  220. */
  221. phy = CODE_LOW_ADDR << CODE_SHIFT;
  222. phy |= (low_addr & 0xE0) >> 5;
  223. reg = (low_addr & 0x1F) | 0x01;
  224. mdio_data = (content & 0xFFFF0000) >> 16;
  225. if (mdio (channel, mode, phy, reg, & mdio_data))
  226. {
  227. error (1, 0, "could not read high 16bits");
  228. }
  229. if (mode == MDIO_MODE_READ)
  230. {
  231. content = (mdio_data << 16);
  232. }
  233. /*
  234. * supply chip with first low address bytes and first data chunk
  235. */
  236. phy = CODE_LOW_ADDR << CODE_SHIFT;
  237. phy |= (low_addr & 0xE0) >> 5;
  238. reg = (low_addr & 0x1F);
  239. mdio_data = (content & 0x0000FFFF);
  240. if (mdio (channel, mode, phy, reg, & mdio_data))
  241. {
  242. error (1, 0, "could not read low 16bits");
  243. }
  244. if (mode == MDIO_MODE_READ)
  245. {
  246. content |= mdio_data;
  247. printf ("0x%08x: 0x%08x\n", address, content);
  248. }
  249. }
  250. return;
  251. }
  252. /*====================================================================*
  253. *
  254. * int main (int argc, char const * argv []);
  255. *
  256. *--------------------------------------------------------------------*/
  257. int main (int argc, char const * argv [])
  258. {
  259. extern struct channel channel;
  260. static char const * optv [] =
  261. {
  262. "a:d:ehi:qv",
  263. "[device] [...]",
  264. "Qualcomm Atheros 32-bit MDIO Register Editor",
  265. "a n\taddress is (n) [0x00000000]",
  266. "d n\tcontent is (n) [0x00000000]",
  267. "e\tredirect stderr to stdout",
  268. "h\tsend high-order data before low-order data",
  269. #if defined (WINPCAP) || defined (LIBPCAP)
  270. "i n\thost interface is (n) [" LITERAL (CHANNEL_ETHNUMBER) "]",
  271. #else
  272. "i s\thost interface is (s) [" LITERAL (CHANNEL_ETHDEVICE) "]",
  273. #endif
  274. "q\tquiet mode",
  275. "v\tverbose mode",
  276. (char const *) (0)
  277. };
  278. flag_t flags = (flag_t) (0);
  279. uint8_t mode = MDIO_MODE_READ;
  280. uint32_t address = 0;
  281. uint32_t content = 0;
  282. signed c;
  283. if (getenv (PLCDEVICE))
  284. {
  285. #if defined (WINPCAP) || defined (LIBPCAP)
  286. channel.ifindex = atoi (getenv (PLCDEVICE));
  287. #else
  288. channel.ifname = strdup (getenv (PLCDEVICE));
  289. #endif
  290. }
  291. optind = 1;
  292. while (~ (c = getoptv (argc, argv, optv)))
  293. {
  294. switch (c)
  295. {
  296. case 'a':
  297. address = (uint32_t) (uintspec (optarg, 0, 0x0007FFFF));
  298. if (address & 0x03)
  299. {
  300. error (1, 0, "address must be on an even 4 byte boundary");
  301. }
  302. break;
  303. case 'd':
  304. mode = MDIO_MODE_WRITE;
  305. content = (uint32_t) (uintspec (optarg, 0, 0x0FFFFFFFF));
  306. break;
  307. case 'e':
  308. dup2 (STDOUT_FILENO, STDERR_FILENO);
  309. break;
  310. case 'i':
  311. #if defined (WINPCAP) || defined (LIBPCAP)
  312. channel.ifindex = atoi (optarg);
  313. #else
  314. channel.ifname = optarg;
  315. #endif
  316. break;
  317. case 'q':
  318. _setbits (channel.flags, CHANNEL_SILENCE);
  319. break;
  320. case 'r':
  321. _setbits (flags, MDIO_FLAG_REVERSE);
  322. break;
  323. case 'v':
  324. _setbits (channel.flags, CHANNEL_VERBOSE);
  325. break;
  326. default:
  327. break;
  328. }
  329. }
  330. argc -= optind;
  331. argv += optind;
  332. openchannel (& channel);
  333. if (! argc)
  334. {
  335. function (& channel, mode, address, content, flags);
  336. }
  337. while ((argc) && (* argv))
  338. {
  339. if (! hexencode (channel.peer, sizeof (channel.peer), synonym (* argv, devices, SIZEOF (devices))))
  340. {
  341. error (1, errno, PLC_BAD_MAC, * argv);
  342. }
  343. function (& channel, mode, address, content, flags);
  344. argv++;
  345. argc--;
  346. }
  347. closechannel (& channel);
  348. return (0);
  349. }