int6kmdio2.c 9.5 KB

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