lpc.c 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  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. if(d->size & 3)
  99. sprog_error("Invalid data size - should be aligned to 4\n");
  100. lpc_command("W %u %u\r\n", addr, d->size);
  101. sprog_error("Writing %d bytes\n", d->size);
  102. last_i = 0;
  103. last_offset = 0;
  104. offset = 0;
  105. sprog_progress((offset*100)/d->size);
  106. checksum = 0;
  107. for(i=0; uuencode_line(d, buf, &offset, &checksum); i++) {
  108. lpc_printf("%s\r\n", buf);
  109. if((i % 20)==19) {
  110. lpc_printf("%u\r\n", checksum);
  111. checksum = 0;
  112. if(lpc_getline(reply_buf)) {
  113. if(strcmp(reply_buf, "OK\r\n")==0) {
  114. last_offset = offset;
  115. last_i = i;
  116. } else {
  117. sprog_error("Received '%s'\n", reply_buf);
  118. offset = last_offset;
  119. i = last_i;
  120. }
  121. } else
  122. break;
  123. }
  124. sprog_progress((offset*100)/d->size);
  125. }
  126. if(offset!=d->size)
  127. sprog_error("Error while writing to RAM\n");
  128. }
  129. int lpc_getline(char *buf) {
  130. if(sprog_waitdata(500)==0)
  131. return 0;
  132. fgets(buf, 4096, stdin);
  133. return 1;
  134. }
  135. void lpc_vprintf(const char *text, va_list l) {
  136. char buf[4096];
  137. vprintf(text, l);
  138. lpc_getline(buf);
  139. }
  140. void lpc_printf(const char *text, ...) {
  141. va_list l;
  142. va_start(l, text);
  143. lpc_vprintf(text, l);
  144. va_end(l);
  145. }
  146. int lpc_command(const char *text, ...) {
  147. char buf[4096];
  148. int res;
  149. va_list l;
  150. va_start(l, text);
  151. lpc_vprintf(text, l);
  152. va_end(l);
  153. lpc_getline(buf);
  154. if(sscanf(buf, "%d", &res)<1)
  155. return -1;
  156. return res;
  157. }
  158. int lpc_read_partid(struct lpc_device *dev) {
  159. char buf[4096];
  160. int i;
  161. int res;
  162. unsigned int partid;
  163. res = lpc_command("J\r\n");
  164. if(res!=0)
  165. return res;
  166. lpc_getline(buf);
  167. sscanf(buf, "%u", &partid);
  168. for(i=0; lpc_parts[i].name; i++)
  169. if(lpc_parts[i].part_id==partid)
  170. break;
  171. if(lpc_parts[i].name)
  172. dev->part = &lpc_parts[i];
  173. else
  174. return -1;
  175. return 0;
  176. }
  177. void lpc_ispmode(struct lpc_device *dev, int state) {
  178. serial_setline(dev->port, SERIAL_DTR, state);
  179. }
  180. void lpc_reset(struct lpc_device *dev) {
  181. /* TODO: configure the control lines */
  182. serial_setline(dev->port, SERIAL_RTS, 1);
  183. sprog_sleep(50);
  184. serial_setline(dev->port, SERIAL_RTS, 0);
  185. sprog_sleep(10);
  186. }
  187. void lpc_close(struct lpc_device *dev) {
  188. serial_close(dev->port);
  189. free(dev);
  190. }