udbg_beat.c 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. /*
  2. * udbg function for Beat
  3. *
  4. * (C) Copyright 2006 TOSHIBA CORPORATION
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License along
  17. * with this program; if not, write to the Free Software Foundation, Inc.,
  18. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  19. */
  20. #include <linux/kernel.h>
  21. #include <linux/console.h>
  22. #include <asm/machdep.h>
  23. #include <asm/prom.h>
  24. #include <asm/udbg.h>
  25. #include "beat.h"
  26. #define celleb_vtermno 0
  27. static void udbg_putc_beat(char c)
  28. {
  29. unsigned long rc;
  30. if (c == '\n')
  31. udbg_putc_beat('\r');
  32. rc = beat_put_term_char(celleb_vtermno, 1, (uint64_t)c << 56, 0);
  33. }
  34. /* Buffered chars getc */
  35. static long inbuflen;
  36. static long inbuf[2]; /* must be 2 longs */
  37. static int udbg_getc_poll_beat(void)
  38. {
  39. /* The interface is tricky because it may return up to 16 chars.
  40. * We save them statically for future calls to udbg_getc().
  41. */
  42. char ch, *buf = (char *)inbuf;
  43. int i;
  44. long rc;
  45. if (inbuflen == 0) {
  46. /* get some more chars. */
  47. inbuflen = 0;
  48. rc = beat_get_term_char(celleb_vtermno, &inbuflen, inbuf+0, inbuf+1);
  49. if (rc != 0)
  50. inbuflen = 0; /* otherwise inbuflen is garbage */
  51. }
  52. if (inbuflen <= 0 || inbuflen > 16) {
  53. /* Catch error case as well as other oddities (corruption) */
  54. inbuflen = 0;
  55. return -1;
  56. }
  57. ch = buf[0];
  58. for (i = 1; i < inbuflen; i++) /* shuffle them down. */
  59. buf[i-1] = buf[i];
  60. inbuflen--;
  61. return ch;
  62. }
  63. static int udbg_getc_beat(void)
  64. {
  65. int ch;
  66. for (;;) {
  67. ch = udbg_getc_poll_beat();
  68. if (ch == -1) {
  69. /* This shouldn't be needed...but... */
  70. volatile unsigned long delay;
  71. for (delay=0; delay < 2000000; delay++)
  72. ;
  73. } else {
  74. return ch;
  75. }
  76. }
  77. }
  78. /* call this from early_init() for a working debug console on
  79. * vterm capable LPAR machines
  80. */
  81. void __init udbg_init_debug_beat(void)
  82. {
  83. udbg_putc = udbg_putc_beat;
  84. udbg_getc = udbg_getc_beat;
  85. udbg_getc_poll = udbg_getc_poll_beat;
  86. }