lpc.c 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  1. #include <stdlib.h>
  2. #include <string.h>
  3. #include <stdio.h>
  4. #include <stdarg.h>
  5. #include <serial.h>
  6. #include <uucode.h>
  7. #include <lpc.h>
  8. const struct lpc_part lpc_parts[] = {
  9. {"LPC1111/101", 0x041e502b, 2, 8},
  10. {"LPC1111/101 or 102", 0x2516d02b, 2, 8},
  11. {"LPC1111/201", 0x0416502b, 4, 8},
  12. {"LPC1111/201 or 202", 0x2516902b, 4, 8},
  13. {"LPC1112/101", 0x042d502b, 2, 16},
  14. {"LPC1112/101 or 102", 0x2524d02b, 2, 16},
  15. {"LPC1112/201", 0x0425502b, 4, 16},
  16. {"LPC1112/201 or 202", 0x2524902b, 4, 16},
  17. {"LPC1113/201", 0x0434502b, 4, 24},
  18. {"LPC1113/201 or 202", 0x2532902b, 4, 24},
  19. {"LPC1113/301", 0x0434102b, 8, 24},
  20. {"LPC1113/301 or 302", 0x2532102b, 8, 24},
  21. {"LPC1114/201", 0x0444502b, 4, 32},
  22. {"LPC1114/201 or 202", 0x2540902b, 4, 32},
  23. {"LPC1114/301", 0x0444102b, 8, 32},
  24. {"LPC1114/301 or 302", 0x2540102b, 8, 32},
  25. {"LPC11C12/301", 0x1421102b, 8, 16},
  26. {"LPC11C14/301", 0x1440102b, 8, 32},
  27. {"LPC11C22/301", 0x1431102b, 8, 16},
  28. {"LPC11C24/301", 0x1430102b, 8, 32},
  29. {NULL, 0, 0, 0}
  30. };
  31. const struct sprog_family lpc_family = {
  32. .setup = (void*(*)(struct serial_device*)) lpc_setup,
  33. .init = (void(*)(void*)) lpc_init,
  34. .exec = (void(*)(void*, const struct sprog_data*)) lpc_exec,
  35. .close = (void(*)(void*)) lpc_close
  36. };
  37. void lpc_ispmode(struct lpc_device *dev, int state);
  38. void lpc_reset(struct lpc_device *dev);
  39. void lpc_vprintf(const char *text, va_list l);
  40. void lpc_printf(const char *text, ...);
  41. int lpc_getline(char *buf);
  42. int lpc_command(const char *text, ...);
  43. int lpc_read_partid(struct lpc_device *dev);
  44. void lpc_write_ram(struct lpc_device *dev, const struct sprog_data *d, unsigned int addr);
  45. struct lpc_device *lpc_setup(struct serial_device *port) {
  46. struct lpc_device *dev;
  47. dev = malloc(sizeof(struct lpc_device));
  48. dev->port = port;
  49. dev->part = NULL;
  50. lpc_ispmode(dev, 1);
  51. lpc_reset(dev);
  52. return dev;
  53. }
  54. void lpc_init(struct lpc_device *dev) {
  55. char buf[4096];
  56. printf("?");
  57. fflush(stdout);
  58. if(lpc_getline(buf)) {
  59. if(strcmp(buf, "Synchronized\r\n")==0)
  60. sprog_error("Synchronization successful\n");
  61. lpc_printf("Synchronized\r\n");
  62. lpc_getline(buf);
  63. if(strcmp(buf, "OK\r\n")!=0)
  64. sprog_error("Expected OK, received '%s'\n", buf);
  65. sprog_error("Sending clock frequency\n");
  66. lpc_printf("12000\r\n");
  67. lpc_getline(buf);
  68. if(strcmp(buf, "OK\r\n")!=0)
  69. sprog_error("Expected OK, received '%s'\n", buf);
  70. } else {
  71. printf("\r\n");
  72. if(lpc_getline(buf))
  73. if(strcmp(buf, "?\r\n")==0)
  74. sprog_error("The device appears to be already synchronized\n");
  75. lpc_getline(buf); /* deny invalid command reply */
  76. }
  77. sprog_error("Reading part ID\n");
  78. if(lpc_read_partid(dev)==0)
  79. sprog_error("Found device: %s, %dkB Flash, %dkB RAM\n", dev->part->name, dev->part->flash, dev->part->ram);
  80. }
  81. void lpc_exec(struct lpc_device *dev, const struct sprog_data *d) {
  82. lpc_write_ram(dev, d, 0x10000400);
  83. lpc_command("U 23130\r\n");
  84. sprog_error("Executing code... ");
  85. if(lpc_command("G %u T\r\n", 0x10000400))
  86. sprog_error("Error\n");
  87. else
  88. sprog_error("OK\n");
  89. }
  90. void lpc_write_ram(struct lpc_device *dev, const struct sprog_data *d, unsigned int addr) {
  91. char reply_buf[4096];
  92. int last_offset;
  93. int last_i;
  94. int offset;
  95. int checksum;
  96. char buf[64];
  97. int i;
  98. int j;
  99. if(d->size & 3)
  100. sprog_error("Invalid data size - should be aligned to 4\n");
  101. lpc_command("W %u %u\r\n", addr, d->size);
  102. sprog_error("Writing %d bytes\n", d->size);
  103. last_i = 0;
  104. last_offset = 0;
  105. offset = 0;
  106. sprog_progress((offset*100)/d->size);
  107. checksum = 0;
  108. for(i=0; (j = uuencode_line(d, buf, &offset, &checksum)); i++) {
  109. if(j==1) lpc_printf("%s\r\n", buf);
  110. if(j==2 || (i % 20)==19) {
  111. lpc_printf("%u\r\n", checksum);
  112. checksum = 0;
  113. if(lpc_getline(reply_buf)) {
  114. if(strcmp(reply_buf, "OK\r\n")==0) {
  115. last_offset = offset;
  116. last_i = i;
  117. if(j==2)
  118. offset = -1;
  119. } else {
  120. sprog_error("Received '%s'\n", reply_buf);
  121. offset = last_offset;
  122. i = last_i;
  123. }
  124. } else
  125. break;
  126. }
  127. sprog_progress((offset*100)/d->size);
  128. }
  129. if(offset!=d->size)
  130. sprog_error("Error while writing to RAM\n");
  131. }
  132. int lpc_getline(char *buf) {
  133. if(sprog_waitdata(500)==0)
  134. return 0;
  135. fgets(buf, 4096, stdin);
  136. return 1;
  137. }
  138. void lpc_vprintf(const char *text, va_list l) {
  139. char buf[4096];
  140. vprintf(text, l);
  141. lpc_getline(buf);
  142. }
  143. void lpc_printf(const char *text, ...) {
  144. va_list l;
  145. va_start(l, text);
  146. lpc_vprintf(text, l);
  147. va_end(l);
  148. }
  149. int lpc_command(const char *text, ...) {
  150. char buf[4096];
  151. int res;
  152. va_list l;
  153. va_start(l, text);
  154. lpc_vprintf(text, l);
  155. va_end(l);
  156. lpc_getline(buf);
  157. if(sscanf(buf, "%d", &res)<1)
  158. return -1;
  159. return res;
  160. }
  161. int lpc_read_partid(struct lpc_device *dev) {
  162. char buf[4096];
  163. int i;
  164. int res;
  165. unsigned int partid;
  166. res = lpc_command("J\r\n");
  167. if(res!=0)
  168. return res;
  169. lpc_getline(buf);
  170. sscanf(buf, "%u", &partid);
  171. for(i=0; lpc_parts[i].name; i++)
  172. if(lpc_parts[i].part_id==partid)
  173. break;
  174. if(lpc_parts[i].name)
  175. dev->part = &lpc_parts[i];
  176. else
  177. return -1;
  178. return 0;
  179. }
  180. void lpc_ispmode(struct lpc_device *dev, int state) {
  181. serial_setline(dev->port, SERIAL_DTR, state);
  182. }
  183. void lpc_reset(struct lpc_device *dev) {
  184. /* TODO: configure the control lines */
  185. serial_setline(dev->port, SERIAL_RTS, 1);
  186. sprog_sleep(50);
  187. serial_setline(dev->port, SERIAL_RTS, 0);
  188. sprog_sleep(10);
  189. }
  190. void lpc_close(struct lpc_device *dev) {
  191. serial_close(dev->port);
  192. free(dev);
  193. }