Rev 4296 | Rev 4537 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 4296 | Rev 4420 | ||
---|---|---|---|
Line 34... | Line 34... | ||
34 | 34 | ||
35 | #include <arch.h> |
35 | #include <arch.h> |
36 | #include <arch/cp0.h> |
36 | #include <arch/cp0.h> |
37 | #include <arch/exception.h> |
37 | #include <arch/exception.h> |
38 | #include <mm/as.h> |
38 | #include <mm/as.h> |
39 | - | ||
40 | #include <userspace.h> |
39 | #include <userspace.h> |
41 | #include <arch/console.h> |
- | |
42 | #include <memstr.h> |
40 | #include <memstr.h> |
43 | #include <proc/thread.h> |
41 | #include <proc/thread.h> |
44 | #include <proc/uarg.h> |
42 | #include <proc/uarg.h> |
45 | #include <print.h> |
43 | #include <print.h> |
- | 44 | #include <console/console.h> |
|
46 | #include <syscall/syscall.h> |
45 | #include <syscall/syscall.h> |
47 | #include <sysinfo/sysinfo.h> |
46 | #include <sysinfo/sysinfo.h> |
48 | - | ||
49 | #include <arch/interrupt.h> |
47 | #include <arch/interrupt.h> |
50 | #include <console/chardev.h> |
48 | #include <console/chardev.h> |
51 | #include <arch/barrier.h> |
49 | #include <arch/barrier.h> |
52 | #include <arch/debugger.h> |
50 | #include <arch/debugger.h> |
53 | #include <genarch/fb/fb.h> |
51 | #include <genarch/fb/fb.h> |
Line 57... | Line 55... | ||
57 | #include <genarch/srln/srln.h> |
55 | #include <genarch/srln/srln.h> |
58 | #include <macros.h> |
56 | #include <macros.h> |
59 | #include <config.h> |
57 | #include <config.h> |
60 | #include <string.h> |
58 | #include <string.h> |
61 | #include <arch/drivers/msim.h> |
59 | #include <arch/drivers/msim.h> |
62 | - | ||
63 | #include <arch/asm/regname.h> |
60 | #include <arch/asm/regname.h> |
64 | 61 | ||
65 | /* Size of the code jumping to the exception handler code |
62 | /* Size of the code jumping to the exception handler code |
66 | * - J+NOP |
63 | * - J+NOP |
67 | */ |
64 | */ |
Line 167... | Line 164... | ||
167 | #ifdef CONFIG_MIPS_KBD |
164 | #ifdef CONFIG_MIPS_KBD |
168 | /* |
165 | /* |
169 | * Initialize the msim/GXemul keyboard port. Then initialize the serial line |
166 | * Initialize the msim/GXemul keyboard port. Then initialize the serial line |
170 | * module and connect it to the msim/GXemul keyboard. Enable keyboard interrupts. |
167 | * module and connect it to the msim/GXemul keyboard. Enable keyboard interrupts. |
171 | */ |
168 | */ |
- | 169 | dsrlnin_instance_t *dsrlnin_instance |
|
172 | indev_t *kbrdin = dsrlnin_init((dsrlnin_t *) MSIM_KBD_ADDRESS, MSIM_KBD_IRQ); |
170 | = dsrlnin_init((dsrlnin_t *) MSIM_KBD_ADDRESS, MSIM_KBD_IRQ); |
173 | if (kbrdin) { |
171 | if (dsrlnin_instance) { |
- | 172 | srln_instance_t *srln_instance = srln_init(); |
|
174 | srln_init(kbrdin); |
173 | if (srln_instance) { |
- | 174 | indev_t *sink = stdin_wire(); |
|
- | 175 | indev_t *srln = srln_wire(srln_instance, sink); |
|
- | 176 | dsrlnin_wire(dsrlnin_instance, srln); |
|
175 | cp0_unmask_int(MSIM_KBD_IRQ); |
177 | cp0_unmask_int(MSIM_KBD_IRQ); |
- | 178 | } |
|
176 | } |
179 | } |
177 | 180 | ||
178 | /* |
181 | /* |
179 | * This is the necessary evil until the userspace driver is entirely |
182 | * This is the necessary evil until the userspace driver is entirely |
180 | * self-sufficient. |
183 | * self-sufficient. |
Line 246... | Line 249... | ||
246 | void *arch_construct_function(fncptr_t *fptr, void *addr, void *caller) |
249 | void *arch_construct_function(fncptr_t *fptr, void *addr, void *caller) |
247 | { |
250 | { |
248 | return addr; |
251 | return addr; |
249 | } |
252 | } |
250 | 253 | ||
- | 254 | void arch_grab_console(void) |
|
- | 255 | { |
|
- | 256 | #ifdef CONFIG_FB |
|
- | 257 | fb_redraw(); |
|
- | 258 | #endif |
|
- | 259 | } |
|
- | 260 | ||
- | 261 | /** Return console to userspace |
|
- | 262 | * |
|
- | 263 | */ |
|
- | 264 | void arch_release_console(void) |
|
- | 265 | { |
|
- | 266 | } |
|
- | 267 | ||
251 | /** @} |
268 | /** @} |
252 | */ |
269 | */ |