lpc.c 5.3 KB

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