Subversion Repositories HelenOS

Rev

Rev 4055 | Rev 4296 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4055 Rev 4156
1
/*
1
/*
2
 * Copyright (c) 2005 Jakub Jermar
2
 * Copyright (c) 2005 Jakub Jermar
3
 * All rights reserved.
3
 * All rights reserved.
4
 *
4
 *
5
 * Redistribution and use in source and binary forms, with or without
5
 * Redistribution and use in source and binary forms, with or without
6
 * modification, are permitted provided that the following conditions
6
 * modification, are permitted provided that the following conditions
7
 * are met:
7
 * are met:
8
 *
8
 *
9
 * - Redistributions of source code must retain the above copyright
9
 * - Redistributions of source code must retain the above copyright
10
 *   notice, this list of conditions and the following disclaimer.
10
 *   notice, this list of conditions and the following disclaimer.
11
 * - Redistributions in binary form must reproduce the above copyright
11
 * - Redistributions in binary form must reproduce the above copyright
12
 *   notice, this list of conditions and the following disclaimer in the
12
 *   notice, this list of conditions and the following disclaimer in the
13
 *   documentation and/or other materials provided with the distribution.
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
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.
15
 *   derived from this software without specific prior written permission.
16
 *
16
 *
17
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
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
18
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
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
23
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
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
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.
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
27
 */
28
 
28
 
29
/** @addtogroup sparc64
29
/** @addtogroup sparc64
30
 * @{
30
 * @{
31
 */
31
 */
32
/** @file
32
/** @file
33
 */
33
 */
34
 
34
 
35
#include <arch/console.h>
35
#include <arch/console.h>
36
#include <arch/types.h>
36
#include <arch/types.h>
37
 
37
 
38
#include <arch/drivers/scr.h>
38
#include <arch/drivers/scr.h>
39
#include <arch/drivers/kbd.h>
39
#include <arch/drivers/kbd.h>
40
 
-
 
41
#include <arch/drivers/sgcn.h>
40
#include <arch/drivers/sgcn.h>
42
 
-
 
-
 
41
#include <genarch/srln/srln.h>
43
#include <console/chardev.h>
42
#include <console/chardev.h>
44
#include <console/console.h>
43
#include <console/console.h>
45
#include <arch/asm.h>
44
#include <arch/asm.h>
46
#include <arch/register.h>
45
#include <arch/register.h>
47
#include <proc/thread.h>
46
#include <proc/thread.h>
48
#include <arch/mm/tlb.h>
47
#include <arch/mm/tlb.h>
49
#include <genarch/ofw/ofw_tree.h>
48
#include <genarch/ofw/ofw_tree.h>
50
#include <arch.h>
49
#include <arch.h>
51
#include <panic.h>
50
#include <panic.h>
52
#include <string.h>
51
#include <string.h>
53
#include <print.h>
52
#include <print.h>
54
 
53
 
55
#define KEYBOARD_POLL_PAUSE 50000   /* 50ms */
54
#define KEYBOARD_POLL_PAUSE 50000   /* 50ms */
56
 
55
 
57
/**
56
/**
58
 * Initialize kernel console to use framebuffer and keyboard directly.
57
 * Initialize kernel console to use framebuffer and keyboard directly.
59
 * Called on UltraSPARC machines with standard keyboard and framebuffer.
58
 * Called on UltraSPARC machines with standard keyboard and framebuffer.
60
 *
59
 *
61
 * @param aliases   the "/aliases" OBP node
60
 * @param aliases   the "/aliases" OBP node
62
 */
61
 */
63
static void standard_console_init(ofw_tree_node_t *aliases)
62
static void standard_console_init(ofw_tree_node_t *aliases)
64
{
63
{
65
#ifdef CONFIG_FB
64
#ifdef CONFIG_FB
66
    ofw_tree_property_t *prop;
-
 
67
    ofw_tree_node_t *screen;
-
 
68
    ofw_tree_node_t *keyboard;
-
 
69
   
-
 
70
    prop = ofw_tree_getprop(aliases, "screen");
65
    ofw_tree_property_t *prop_scr = ofw_tree_getprop(aliases, "screen");
71
    if (!prop)
66
    if (!prop_scr)
72
        panic("Cannot find property 'screen'.");
67
        panic("Cannot find property 'screen'.");
73
    if (!prop->value)
68
    if (!prop_scr->value)
74
        panic("Cannot find screen alias.");
69
        panic("Cannot find screen alias.");
75
    screen = ofw_tree_lookup(prop->value);
70
    ofw_tree_node_t *screen = ofw_tree_lookup(prop_scr->value);
76
    if (!screen)
71
    if (!screen)
77
        panic("Cannot find %s.", prop->value);
72
        panic("Cannot find %s.", prop_scr->value);
78
 
73
   
79
    scr_init(screen);
74
    scr_init(screen);
-
 
75
#endif
80
 
76
 
-
 
77
#ifdef CONFIG_SUN_KBD
81
    prop = ofw_tree_getprop(aliases, "keyboard");
78
    ofw_tree_property_t *prop_kbd = ofw_tree_getprop(aliases, "keyboard");
82
    if (!prop)
79
    if (!prop_kbd)
83
        panic("Cannot find property 'keyboard'.");
80
        panic("Cannot find property 'keyboard'.");
84
    if (!prop->value)
81
    if (!prop_kbd->value)
85
        panic("Cannot find keyboard alias.");
82
        panic("Cannot find keyboard alias.");
86
    keyboard = ofw_tree_lookup(prop->value);
83
    ofw_tree_node_t *keyboard = ofw_tree_lookup(prop_kbd->value);
87
    if (!keyboard)
84
    if (!keyboard)
88
        panic("Cannot find %s.", prop->value);
85
        panic("Cannot find %s.", prop_kbd->value);
89
 
86
   
90
    kbd_init(keyboard);
87
    kbd_init(keyboard);
91
#else
-
 
92
    panic("Standard console requires FB, "
-
 
93
          "but the kernel is not compiled with FB support.");
-
 
94
#endif
88
#endif
95
}
89
}
96
 
90
 
97
/** Initilize I/O on the Serengeti machine. */
91
/** Initilize I/O on the Serengeti machine. */
98
static void serengeti_init(void)
92
static void serengeti_init(void)
99
{
93
{
-
 
94
#ifdef CONFIG_SGCN_KBD
-
 
95
    indev_t *kbrdin;
-
 
96
    kbrdin = sgcnin_init();
-
 
97
    if (kbrdin)
-
 
98
        srlnin_init(kbrdin);
-
 
99
#endif
-
 
100
#ifdef CONFIG_SGCN_PRN
100
    sgcn_init();
101
    sgcnout_init();
-
 
102
#endif
101
}
103
}
102
 
104
 
103
/**
105
/**
104
 * Initialize input/output. Auto-detects the type of machine
106
 * Initialize input/output. Auto-detects the type of machine
105
 * and calls the appropriate I/O init routine.
107
 * and calls the appropriate I/O init routine.
106
 */
108
 */
107
void standalone_sparc64_console_init(void)
109
void standalone_sparc64_console_init(void)
108
{
110
{
109
    ofw_tree_node_t *aliases;
111
    ofw_tree_node_t *aliases;
110
    ofw_tree_property_t *prop;
112
    ofw_tree_property_t *prop;
111
   
113
   
112
    aliases = ofw_tree_lookup("/aliases");
114
    aliases = ofw_tree_lookup("/aliases");
113
    if (!aliases)
115
    if (!aliases)
114
        panic("Cannot find '/aliases'.");
116
        panic("Cannot find '/aliases'.");
115
   
117
   
116
    /* "def-cn" = "default console" */
118
    /* "def-cn" = "default console" */
117
    prop = ofw_tree_getprop(aliases, "def-cn");
119
    prop = ofw_tree_getprop(aliases, "def-cn");
118
   
120
   
119
    if ((!prop) || (!prop->value) || (strcmp(prop->value, "/sgcn") != 0)) {
121
    if ((!prop) || (!prop->value) || (strcmp(prop->value, "/sgcn") != 0)) {
120
        standard_console_init(aliases);
122
        standard_console_init(aliases);
121
    } else {
123
    } else {
122
        serengeti_init();
124
        serengeti_init();
123
    }
125
    }
124
}
126
}
125
 
127
 
126
 
128
 
127
/** Kernel thread for polling keyboard.
-
 
128
 *
-
 
129
 * @param arg Ignored.
-
 
130
 */
-
 
131
void kkbdpoll(void *arg)
-
 
132
{
-
 
133
    thread_detach(THREAD);
-
 
134
 
-
 
135
    if (kbd_type != KBD_SGCN)
-
 
136
        return;
-
 
137
 
-
 
138
    while (1) {
-
 
139
#ifdef CONFIG_SGCN
-
 
140
        if (kbd_type == KBD_SGCN)
-
 
141
            sgcn_poll();
-
 
142
#endif
-
 
143
        thread_usleep(KEYBOARD_POLL_PAUSE);
-
 
144
    }
-
 
145
}
-
 
146
 
-
 
147
/** Acquire console back for kernel
129
/** Acquire console back for kernel
148
 *
130
 *
149
 */
131
 */
150
void arch_grab_console(void)
132
void arch_grab_console(void)
151
{
133
{
152
#ifdef CONFIG_FB
134
#ifdef CONFIG_FB
153
    scr_redraw();
135
    scr_redraw();
154
#endif
136
#endif
155
    switch (kbd_type) {
137
    switch (kbd_type) {
156
#ifdef CONFIG_SGCN
138
#ifdef CONFIG_SGCN
157
    case KBD_SGCN:
139
    case KBD_SGCN:
158
        sgcn_grab();
140
        sgcn_grab();
159
        break;
141
        break;
160
#endif
142
#endif
161
    default:
143
    default:
162
        break;
144
        break;
163
    }
145
    }
164
}
146
}
165
 
147
 
166
/** Return console to userspace
148
/** Return console to userspace
167
 *
149
 *
168
 */
150
 */
169
void arch_release_console(void)
151
void arch_release_console(void)
170
{
152
{
171
    switch (kbd_type) {
153
    switch (kbd_type) {
172
#ifdef CONFIG_SGCN
154
#ifdef CONFIG_SGCN
173
    case KBD_SGCN:
155
    case KBD_SGCN:
174
        sgcn_release();
156
        sgcn_release();
175
        break;
157
        break;
176
#endif
158
#endif
177
    default:
159
    default:
178
        break;
160
        break;
179
    }
161
    }
180
}
162
}
181
 
163
 
182
/** @}
164
/** @}
183
 */
165
 */
184
 
166