mdioblock2.c 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * mdioblock2.c
  11. *
  12. * Contributor(s):
  13. * Charles Maier <cmaier@qca.qualcomm.com>
  14. *
  15. *--------------------------------------------------------------------*/
  16. /*====================================================================*
  17. * system header files;
  18. *--------------------------------------------------------------------*/
  19. #include <stdio.h>
  20. #include <ctype.h>
  21. #include <unistd.h>
  22. #include <fcntl.h>
  23. #include <sys/stat.h>
  24. /*====================================================================*
  25. * custom header files;
  26. *--------------------------------------------------------------------*/
  27. #include "../tools/getoptv.h"
  28. #include "../tools/endian.h"
  29. #include "../tools/number.h"
  30. #include "../tools/chars.h"
  31. #include "../tools/error.h"
  32. #include "../tools/flags.h"
  33. #include "../mdio/mdio.h"
  34. /*====================================================================*
  35. * custom source files;
  36. *--------------------------------------------------------------------*/
  37. #ifndef MAKEFILE
  38. #include "../tools/getoptv.c"
  39. #include "../tools/putoptv.c"
  40. #include "../tools/version.c"
  41. #include "../tools/error.c"
  42. #include "../tools/todigit.c"
  43. #endif
  44. /*====================================================================*
  45. * program variables;
  46. *--------------------------------------------------------------------*/
  47. static signed c;
  48. static unsigned row = 1;
  49. static unsigned col = 1;
  50. static uint16_t count = 0;
  51. static uint16_t instr = 0;
  52. static uint32_t addr;
  53. static uint32_t data;
  54. static uint32_t mask;
  55. /*====================================================================*
  56. *
  57. * signed mygetc ();
  58. *
  59. * return next input character after updating the cursor position;
  60. *
  61. *--------------------------------------------------------------------*/
  62. static signed mygetc ()
  63. {
  64. extern unsigned row;
  65. extern unsigned col;
  66. signed c = getc (stdin);
  67. if (c == '\n')
  68. {
  69. row++;
  70. col = 0;
  71. }
  72. else if (~ c)
  73. {
  74. col++;
  75. }
  76. return (c);
  77. }
  78. /*====================================================================*
  79. *
  80. * uint32_t integer (unsigned radix);
  81. *
  82. *--------------------------------------------------------------------*/
  83. static uint32_t integer (unsigned radix)
  84. {
  85. uint32_t value = 0;
  86. unsigned digit = 0;
  87. while ((digit = todigit (c)) < radix)
  88. {
  89. value *= radix;
  90. value += digit;
  91. c = mygetc ();
  92. }
  93. while (isspace (c))
  94. {
  95. c = mygetc ();
  96. }
  97. return (value);
  98. }
  99. /*====================================================================*
  100. *
  101. * void assemble (flag_t flags);
  102. *
  103. * read stdin and write stdout; convert hexadecimal input to binary
  104. * MDIO register instructions;
  105. *
  106. * the input file consists of zero or more hexadecimal instructions
  107. * consisting of register address, register data and register mask;
  108. * instructions are terminated with semicolon; fields are separated
  109. * by white space; scriptstyle comments are permitted between
  110. * instructions but not between instruction fields;
  111. *
  112. * the output file will consist of one 16-bit program header plus
  113. * nine 16-bit MDIO instructions for each input instruction; the
  114. * output is padded to the nearest multiple of 32-bits;
  115. *
  116. *--------------------------------------------------------------------*/
  117. static void assemble (flag_t flags)
  118. {
  119. c = mygetc ();
  120. while (c != EOF)
  121. {
  122. if (isspace (c))
  123. {
  124. do
  125. {
  126. c = mygetc ();
  127. }
  128. while (isspace (c));
  129. continue;
  130. }
  131. if ((c == '#') || (c == ';'))
  132. {
  133. do
  134. {
  135. c = mygetc ();
  136. }
  137. while (nobreak (c));
  138. continue;
  139. }
  140. addr = integer (16);
  141. data = integer (16);
  142. mask = integer (16);
  143. instr = MDIO16_INSTR (1, 1, (0x03 << 3), 0, 2);
  144. write (STDOUT_FILENO, & instr, sizeof (instr));
  145. instr = HTOLE16 ((addr >> 9) & 0x03FF);
  146. write (STDOUT_FILENO, & instr, sizeof (instr));
  147. instr = HTOLE16 (0xFFFF);
  148. write (STDOUT_FILENO, & instr, sizeof (instr));
  149. count++;
  150. instr = MDIO16_INSTR (1, 1, (0x02 << 3) | ((MDIO32_LO_ADDR (addr) & 0xE0) >> 5), MDIO32_LO_ADDR (addr) & 0x1F, 2);
  151. write (STDOUT_FILENO, & instr, sizeof (instr));
  152. instr = HTOLE16 (data & 0xFFFF);
  153. write (STDOUT_FILENO, & instr, sizeof (instr));
  154. instr = HTOLE16 (mask & 0xFFFF);
  155. write (STDOUT_FILENO, & instr, sizeof (instr));
  156. count++;
  157. instr = MDIO16_INSTR (1, 1, (0x02 << 3) | ((MDIO32_LO_ADDR (addr) & 0xE0) >> 5), (MDIO32_LO_ADDR (addr) & 0x1F) | 0x01, 2);
  158. write (STDOUT_FILENO, & instr, sizeof (instr));
  159. instr = HTOLE16 ((data >> 16) & 0xFFFF);
  160. write (STDOUT_FILENO, & instr, sizeof (instr));
  161. instr = HTOLE16 ((mask >> 16) & 0xFFFF);
  162. write (STDOUT_FILENO, & instr, sizeof (instr));
  163. count++;
  164. if (_anyset (flags, MDIO_VERBOSE))
  165. {
  166. fprintf (stderr, "REG=0x%08X DATA=0x%08X MASK=0x%08X\n", addr, data, mask);
  167. }
  168. if ((c == ';') || (c == EOF))
  169. {
  170. c = mygetc ();
  171. continue;
  172. }
  173. if (_allclr (flags, MDIO_SILENCE))
  174. {
  175. error (1, 0, "Illegal character or missing terminator: line %d col %d", row, col);
  176. }
  177. }
  178. return;
  179. }
  180. /*====================================================================*
  181. *
  182. * int main (int argc, const char * argv []);
  183. *
  184. *
  185. *--------------------------------------------------------------------*/
  186. int main (int argc, const char * argv [])
  187. {
  188. static const char * optv [] =
  189. {
  190. "qv",
  191. "file [ file ] [ ...] > file",
  192. "Qualcomm Atheros Clause 45 MDIO Instruction Block Assembler",
  193. "q\tquiet mode",
  194. "v\tverbose mode",
  195. (const char *) (0)
  196. };
  197. flag_t flags = (flag_t) (0);
  198. optind = 1;
  199. while (~ (c = getoptv (argc, argv, optv)))
  200. {
  201. switch (c)
  202. {
  203. case 'q':
  204. _setbits (flags, MDIO_SILENCE);
  205. break;
  206. case 'v':
  207. _setbits (flags, MDIO_VERBOSE);
  208. break;
  209. default:
  210. break;
  211. }
  212. }
  213. argc -= optind;
  214. argv += optind;
  215. if (isatty (STDOUT_FILENO))
  216. {
  217. error (1, ECANCELED, "stdout must be a file or pipe");
  218. }
  219. #if defined (WIN32)
  220. setmode (STDOUT_FILENO, O_BINARY);
  221. #endif
  222. instr = MDIO16_START (1, 0, count);
  223. write (STDOUT_FILENO, & instr, sizeof (instr));
  224. if (! argc)
  225. {
  226. assemble (flags);
  227. }
  228. while ((argc) && (* argv))
  229. {
  230. if (! freopen (* argv, "rb", stdin))
  231. {
  232. error (1, errno, "%s", * argv);
  233. }
  234. assemble (flags);
  235. argc--;
  236. argv++;
  237. }
  238. instr = MDIO16_START (1, 0, count);
  239. addr = count * sizeof (instr) + sizeof (instr);
  240. if ((addr % sizeof (uint32_t)))
  241. {
  242. uint32_t pad = 0;
  243. write (STDOUT_FILENO, & pad, sizeof (pad) - addr % sizeof (pad));
  244. }
  245. if (! lseek (STDOUT_FILENO, 0, SEEK_SET))
  246. {
  247. write (STDOUT_FILENO, & instr, sizeof (instr));
  248. }
  249. if (_anyset (flags, MDIO_VERBOSE))
  250. {
  251. fprintf (stderr, "%d instructions\n", count);
  252. }
  253. return (0);
  254. }