Subversion Repositories HelenOS-historic

Rev

Rev 1135 | Rev 1382 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1. /*
  2.  * Copyright (C) 2005 Jakub Jermar
  3.  * All rights reserved.
  4.  *
  5.  * Redistribution and use in source and binary forms, with or without
  6.  * modification, are permitted provided that the following conditions
  7.  * are met:
  8.  *
  9.  * - Redistributions of source code must retain the above copyright
  10.  *   notice, this list of conditions and the following disclaimer.
  11.  * - Redistributions in binary form must reproduce the above copyright
  12.  *   notice, this list of conditions and the following disclaimer in the
  13.  *   documentation and/or other materials provided with the distribution.
  14.  * - The name of the author may not be used to endorse or promote products
  15.  *   derived from this software without specific prior written permission.
  16.  *
  17.  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
  18.  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  19.  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
  20.  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
  21.  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  22.  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  23.  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  24.  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  25.  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  26.  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  27.  */
  28.  
  29. #include <arch/console.h>
  30. #include <arch/types.h>
  31. #include <typedefs.h>
  32. #include <genarch/fb/fb.h>
  33. #include <arch/drivers/fb.h>
  34. #include <arch/drivers/i8042.h>
  35. #include <genarch/i8042/i8042.h>
  36. #include <genarch/ofw/ofw.h>
  37. #include <console/chardev.h>
  38. #include <console/console.h>
  39. #include <arch/asm.h>
  40. #include <arch/register.h>
  41. #include <proc/thread.h>
  42. #include <synch/mutex.h>
  43. #include <arch/mm/tlb.h>
  44.  
  45. #define KEYBOARD_POLL_PAUSE 50000   /* 50ms */
  46.  
  47. static void ofw_sparc64_putchar(chardev_t *d, const char ch);
  48. static char ofw_sparc64_getchar(chardev_t *d);
  49. static void ofw_sparc64_suspend(chardev_t *d);
  50. static void ofw_sparc64_resume(chardev_t *d);
  51.  
  52. mutex_t canwork;
  53.  
  54. static volatile int ofw_console_active;
  55.  
  56. static chardev_t ofw_sparc64_console;
  57. static chardev_operations_t ofw_sparc64_console_ops = {
  58.     .write = ofw_sparc64_putchar,
  59.     .read = ofw_sparc64_getchar,
  60.     .resume = ofw_sparc64_resume,
  61.     .suspend = ofw_sparc64_suspend
  62. };
  63.  
  64. /** Initialize kernel console to use OpenFirmware services. */
  65. void ofw_sparc64_console_init(void)
  66. {
  67.     chardev_initialize("ofw_sparc64_console", &ofw_sparc64_console, &ofw_sparc64_console_ops);
  68.     stdin = &ofw_sparc64_console;
  69.     stdout = &ofw_sparc64_console;
  70.     mutex_initialize(&canwork);
  71.     ofw_console_active = 1;
  72. }
  73.  
  74. void fb_map_arch(__address virtaddr, __address physaddr, size_t size)
  75. {
  76.     dtlb_insert_mapping(virtaddr, physaddr, PAGESIZE_512K, true, false);
  77.     dtlb_insert_mapping(virtaddr + 512*1024, physaddr + 512*1024, PAGESIZE_512K, true, false);
  78. }
  79.  
  80. /** Initialize kernel console to use framebuffer and keyboard directly. */
  81. void standalone_sparc64_console_init(void)
  82. {
  83.     ofw_console_active = 0;
  84.     stdin = NULL;
  85.  
  86.     dtlb_insert_mapping(KBD_VIRT_ADDRESS, KBD_PHYS_ADDRESS, PAGESIZE_8K, true, false);
  87.  
  88.     fb_init(FB_PHYS_ADDRESS, FB_X_RES, FB_Y_RES, FB_COLOR_DEPTH, FB_X_RES * FB_COLOR_DEPTH / 8);
  89.     i8042_init();
  90. }
  91.  
  92. /** Write one character using OpenFirmware.
  93.  *
  94.  * @param d Character device (ignored).
  95.  * @param ch Character to be written.
  96.  */
  97. void ofw_sparc64_putchar(chardev_t *d, const char ch)
  98. {
  99.     pstate_reg_t pstate;
  100.  
  101.     /*
  102.      * 32-bit OpenFirmware depends on PSTATE.AM bit set.
  103.      */
  104.     pstate.value = pstate_read();
  105.     pstate.am = true;
  106.     pstate_write(pstate.value);
  107.  
  108.     if (ch == '\n')
  109.         ofw_putchar('\r');
  110.     ofw_putchar(ch);
  111.    
  112.     pstate.am = false;
  113.     pstate_write(pstate.value);
  114. }
  115.  
  116. /** Read one character using OpenFirmware.
  117.  *
  118.  * The call is non-blocking.
  119.  *
  120.  * @param d Character device (ignored).
  121.  * @return Character read or zero if no character was read.
  122.  */
  123. char ofw_sparc64_getchar(chardev_t *d)
  124. {
  125.     char ch;
  126.     pstate_reg_t pstate;
  127.  
  128.     /*
  129.      * 32-bit OpenFirmware depends on PSTATE.AM bit set.
  130.      */
  131.     pstate.value = pstate_read();
  132.     pstate.am = true;
  133.     pstate_write(pstate.value);
  134.  
  135.     ch = ofw_getchar();
  136.    
  137.     pstate.am = false;
  138.     pstate_write(pstate.value);
  139.    
  140.     return ch;
  141. }
  142.  
  143. void ofw_sparc64_suspend(chardev_t *d)
  144. {
  145.     mutex_lock(&canwork);
  146. }
  147.  
  148. void ofw_sparc64_resume(chardev_t *d)
  149. {
  150.     mutex_unlock(&canwork);
  151. }
  152.  
  153. /** Kernel thread for pushing characters read from OFW to input buffer.
  154.  *
  155.  * @param arg Ignored.
  156.  */
  157. void kofwinput(void *arg)
  158. {
  159.  
  160.     while (ofw_console_active) {
  161.         char ch = 0;
  162.        
  163.         mutex_lock(&canwork);
  164.         mutex_unlock(&canwork);
  165.        
  166.         ch = ofw_sparc64_getchar(NULL);
  167.         if (ch) {
  168.             if (ch == '\r')
  169.                 ch = '\n';
  170.             chardev_push_character(&ofw_sparc64_console, ch);
  171.         }
  172.         thread_usleep(KEYBOARD_POLL_PAUSE);
  173.     }
  174. }
  175.  
  176. /** Kernel thread for polling keyboard.
  177.  *
  178.  * @param arg Ignored.
  179.  */
  180. void kkbdpoll(void *arg)
  181. {
  182.     while (1) {
  183.         i8042_poll();      
  184.         thread_usleep(KEYBOARD_POLL_PAUSE);
  185.     }
  186. }
  187.