coproc_com.c 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. /*
  2. * (C) Copyright 2010 DENX Software Engineering,
  3. * Anatolij Gustschin, agust@denx.de.
  4. *
  5. * See file CREDITS for list of people who contributed to this
  6. * project.
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License as
  10. * published by the Free Software Foundation; either version 2 of
  11. * the License, or (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  21. * MA 02111-1307 USA
  22. */
  23. /*
  24. * Co-Processor communication POST
  25. */
  26. #include <common.h>
  27. #include <post.h>
  28. #include <serial.h>
  29. /*
  30. * Actually the termination sequence of the coprocessor
  31. * commands is "\r\n" (CR LF), but here we use a side effect of
  32. * the putc() routine of the serial driver which checks for LF
  33. * and sends CR before sending LF. Therefore the termination
  34. * sequence in the command below is only "\n".
  35. * "alive" string is the coprocessor response for ping command
  36. * and not a command, therefore it is terminated with "\r\n".
  37. */
  38. char alive[] = "$AL;38\r\n";
  39. char ping[] = "$PI;2C\n";
  40. int coprocessor_post_test(int flags)
  41. {
  42. struct stdio_dev *cop_port;
  43. int ret;
  44. char buf[10];
  45. /* Test IO Coprocessor communication */
  46. cop_port = open_port(4, CONFIG_SYS_PDM360NG_COPROC_BAUDRATE);
  47. if (!cop_port)
  48. return -1;
  49. write_port(cop_port, ping);
  50. udelay(CONFIG_SYS_PDM360NG_COPROC_READ_DELAY);
  51. memset(buf, 0, sizeof(buf));
  52. ret = read_port(cop_port, buf, sizeof(buf));
  53. close_port(4);
  54. if (ret <= 0) {
  55. post_log("Error: Can't read IO Coprocessor port.\n");
  56. return -1;
  57. }
  58. if (strcmp(buf, alive)) {
  59. post_log("Error: IO-Cop. resp.: %s\n", buf);
  60. return -1;
  61. }
  62. /* Test WD Coprocessor communication */
  63. cop_port = open_port(1, CONFIG_SYS_PDM360NG_COPROC_BAUDRATE);
  64. if (!cop_port) {
  65. post_log("Error: Can't open WD Coprocessor port.\n");
  66. return -1;
  67. }
  68. write_port(cop_port, ping);
  69. udelay(CONFIG_SYS_PDM360NG_COPROC_READ_DELAY);
  70. memset(buf, 0, sizeof(buf));
  71. ret = read_port(cop_port, buf, sizeof(buf));
  72. close_port(1);
  73. if (ret <= 0) {
  74. post_log("Error: Can't read WD Coprocessor port.\n");
  75. return -1;
  76. }
  77. if (strcmp(buf, alive)) {
  78. post_log("Error: WD-Cop. resp.: %s\n", buf);
  79. return -1;
  80. }
  81. return 0;
  82. }