lpc.c 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  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. offset = last_offset;
  121. i = last_i;
  122. }
  123. } else
  124. break;
  125. }
  126. if(offset!=-1)
  127. sprog_progress((offset*100)/d->size);
  128. else
  129. sprog_progress(100);
  130. }
  131. if(offset!=-1)
  132. sprog_error("Error while writing to RAM\n");
  133. }
  134. int lpc_getline(char *buf) {
  135. if(sprog_waitdata(500)==0)
  136. return 0;
  137. fgets(buf, 4096, stdin);
  138. return 1;
  139. }
  140. void lpc_vprintf(const char *text, va_list l) {
  141. char buf[4096];
  142. vprintf(text, l);
  143. lpc_getline(buf);
  144. }
  145. void lpc_printf(const char *text, ...) {
  146. va_list l;
  147. va_start(l, text);
  148. lpc_vprintf(text, l);
  149. va_end(l);
  150. }
  151. int lpc_command(const char *text, ...) {
  152. char buf[4096];
  153. int res;
  154. va_list l;
  155. va_start(l, text);
  156. lpc_vprintf(text, l);
  157. va_end(l);
  158. lpc_getline(buf);
  159. if(sscanf(buf, "%d", &res)<1)
  160. return -1;
  161. return res;
  162. }
  163. int lpc_read_partid(struct lpc_device *dev) {
  164. char buf[4096];
  165. int i;
  166. int res;
  167. unsigned int partid;
  168. res = lpc_command("J\r\n");
  169. if(res!=0)
  170. return res;
  171. lpc_getline(buf);
  172. sscanf(buf, "%u", &partid);
  173. for(i=0; lpc_parts[i].name; i++)
  174. if(lpc_parts[i].part_id==partid)
  175. break;
  176. if(lpc_parts[i].name)
  177. dev->part = &lpc_parts[i];
  178. else
  179. return -1;
  180. return 0;
  181. }
  182. void lpc_ispmode(struct lpc_device *dev, int state) {
  183. serial_setline(dev->port, SERIAL_DTR, state);
  184. }
  185. void lpc_reset(struct lpc_device *dev) {
  186. /* TODO: configure the control lines */
  187. serial_setline(dev->port, SERIAL_RTS, 1);
  188. sprog_sleep(50);
  189. serial_setline(dev->port, SERIAL_RTS, 0);
  190. sprog_sleep(10);
  191. }
  192. void lpc_close(struct lpc_device *dev) {
  193. serial_close(dev->port);
  194. free(dev);
  195. }