beat_udbg.c 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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 u64 inbuflen;
  36. static u64 inbuf[2]; /* must be 2 u64s */
  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,
  49. inbuf+0, inbuf+1);
  50. if (rc != 0)
  51. inbuflen = 0; /* otherwise inbuflen is garbage */
  52. }
  53. if (inbuflen <= 0 || inbuflen > 16) {
  54. /* Catch error case as well as other oddities (corruption) */
  55. inbuflen = 0;
  56. return -1;
  57. }
  58. ch = buf[0];
  59. for (i = 1; i < inbuflen; i++) /* shuffle them down. */
  60. buf[i-1] = buf[i];
  61. inbuflen--;
  62. return ch;
  63. }
  64. static int udbg_getc_beat(void)
  65. {
  66. int ch;
  67. for (;;) {
  68. ch = udbg_getc_poll_beat();
  69. if (ch == -1) {
  70. /* This shouldn't be needed...but... */
  71. volatile unsigned long delay;
  72. for (delay = 0; delay < 2000000; delay++)
  73. ;
  74. } else {
  75. return ch;
  76. }
  77. }
  78. }
  79. /* call this from early_init() for a working debug console on
  80. * vterm capable LPAR machines
  81. */
  82. void __init udbg_init_debug_beat(void)
  83. {
  84. udbg_putc = udbg_putc_beat;
  85. udbg_getc = udbg_getc_beat;
  86. udbg_getc_poll = udbg_getc_poll_beat;
  87. }