lpc.c 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. #include <stdlib.h>
  2. #include <string.h>
  3. #include <stdio.h>
  4. #include <serial.h>
  5. #include <lpc.h>
  6. const struct lpc_part lpc_parts[] = {
  7. {"LPC1111/101", 0x041e502b, 2, 8},
  8. {"LPC1111/101 or 102", 0x2516d02b, 2, 8},
  9. {"LPC1111/201", 0x0416502b, 4, 8},
  10. {"LPC1111/201 or 202", 0x2516902b, 4, 8},
  11. {"LPC1112/101", 0x042d502b, 2, 16},
  12. {"LPC1112/101 or 102", 0x2524d02b, 2, 16},
  13. {"LPC1112/201", 0x0425502b, 4, 16},
  14. {"LPC1112/201 or 202", 0x2524902b, 4, 16},
  15. {"LPC1113/201", 0x0434502b, 4, 24},
  16. {"LPC1113/201 or 202", 0x2532902b, 4, 24},
  17. {"LPC1113/301", 0x0434102b, 8, 24},
  18. {"LPC1113/301 or 302", 0x2532102b, 8, 24},
  19. {"LPC1114/201", 0x0444502b, 4, 32},
  20. {"LPC1114/201 or 202", 0x2540902b, 4, 32},
  21. {"LPC1114/301", 0x0444102b, 8, 32},
  22. {"LPC1114/301 or 302", 0x2540102b, 8, 32},
  23. {"LPC11C12/301", 0x1421102b, 8, 16},
  24. {"LPC11C14/301", 0x1440102b, 8, 32},
  25. {"LPC11C22/301", 0x1431102b, 8, 16},
  26. {"LPC11C24/301", 0x1430102b, 8, 32},
  27. {NULL, 0, 0, 0}
  28. };
  29. const struct sprog_family lpc_family = {
  30. .setup = (void*(*)(struct serial_device*)) lpc_setup,
  31. .init = (void(*)(void*)) lpc_init,
  32. .close = (void(*)(void*)) lpc_close
  33. };
  34. void lpc_ispmode(struct lpc_device *dev, int state);
  35. void lpc_reset(struct lpc_device *dev);
  36. struct lpc_device *lpc_setup(struct serial_device *port) {
  37. struct lpc_device *dev;
  38. dev = malloc(sizeof(struct lpc_device));
  39. dev->port = port;
  40. dev->part = NULL;
  41. lpc_ispmode(dev, 1);
  42. lpc_reset(dev);
  43. return dev;
  44. }
  45. void lpc_init(struct lpc_device *dev) {
  46. char buf[4096];
  47. printf("?");
  48. fflush(stdout);
  49. fgets(buf, sizeof(buf), stdin);
  50. if(strcmp(buf, "Synchronized\r\n")==0)
  51. sprog_error("Synchronization successful\n");
  52. else
  53. sprog_error("Synchronization error - received '%s'\n", buf);
  54. }
  55. void lpc_ispmode(struct lpc_device *dev, int state) {
  56. serial_setline(dev->port, SERIAL_DTR, state);
  57. }
  58. void lpc_reset(struct lpc_device *dev) {
  59. /* TODO: configure the control lines */
  60. serial_setline(dev->port, SERIAL_RTS, 1);
  61. sprog_sleep(50);
  62. serial_setline(dev->port, SERIAL_RTS, 0);
  63. sprog_sleep(10);
  64. }
  65. void lpc_close(struct lpc_device *dev) {
  66. serial_close(dev->port);
  67. free(dev);
  68. }