Rev 4055 | Rev 4296 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 4055 | Rev 4156 | ||
|---|---|---|---|
| Line 34... | Line 34... | ||
| 34 | */ |
34 | */ |
| 35 | 35 | ||
| 36 | #include <arch.h> |
36 | #include <arch.h> |
| 37 | #include <config.h> |
37 | #include <config.h> |
| 38 | #include <arch/console.h> |
38 | #include <arch/console.h> |
| 39 | #include <ddi/device.h> |
- | |
| 40 | #include <genarch/fb/fb.h> |
39 | #include <genarch/fb/fb.h> |
| 41 | #include <genarch/fb/visuals.h> |
40 | #include <genarch/fb/visuals.h> |
| - | 41 | #include <genarch/drivers/dsrln/dsrlnin.h> |
|
| - | 42 | #include <genarch/drivers/dsrln/dsrlnout.h> |
|
| - | 43 | #include <genarch/srln/srln.h> |
|
| - | 44 | #include <sysinfo/sysinfo.h> |
|
| 42 | #include <ddi/irq.h> |
45 | #include <ddi/irq.h> |
| 43 | #include <arch/debug/print.h> |
46 | #include <arch/drivers/gxemul.h> |
| 44 | #include <print.h> |
47 | #include <print.h> |
| 45 | #include <config.h> |
48 | #include <config.h> |
| 46 | #include <interrupt.h> |
49 | #include <interrupt.h> |
| 47 | #include <arch/regutils.h> |
50 | #include <arch/regutils.h> |
| 48 | #include <arch/machine.h> |
- | |
| 49 | #include <userspace.h> |
51 | #include <userspace.h> |
| 50 | #include <macros.h> |
52 | #include <macros.h> |
| 51 | #include <string.h> |
53 | #include <string.h> |
| 52 | 54 | ||
| 53 | /** Performs arm32-specific initialization before main_bsp() is called. */ |
55 | /** Performs arm32-specific initialization before main_bsp() is called. */ |
| Line 73... | Line 75... | ||
| 73 | } |
75 | } |
| 74 | 76 | ||
| 75 | /** Performs arm32 specific initialization afterr mm is initialized. */ |
77 | /** Performs arm32 specific initialization afterr mm is initialized. */ |
| 76 | void arch_post_mm_init(void) |
78 | void arch_post_mm_init(void) |
| 77 | { |
79 | { |
| 78 | machine_hw_map_init(); |
80 | gxemul_init(); |
| 79 | 81 | ||
| 80 | /* Initialize exception dispatch table */ |
82 | /* Initialize exception dispatch table */ |
| 81 | exception_init(); |
83 | exception_init(); |
| 82 | - | ||
| 83 | interrupt_init(); |
84 | interrupt_init(); |
| 84 | 85 | ||
| 85 | machine_console_init(device_assign_devno()); |
- | |
| 86 | - | ||
| 87 | #ifdef CONFIG_FB |
86 | #ifdef CONFIG_FB |
| 88 | fb_properties_t prop = { |
87 | fb_properties_t prop = { |
| 89 | .addr = machine_get_fb_address(), |
88 | .addr = GXEMUL_FB_ADDRESS, |
| 90 | .offset = 0, |
89 | .offset = 0, |
| 91 | .x = 640, |
90 | .x = 640, |
| 92 | .y = 480, |
91 | .y = 480, |
| 93 | .scan = 1920, |
92 | .scan = 1920, |
| 94 | .visual = VISUAL_BGR_8_8_8, |
93 | .visual = VISUAL_BGR_8_8_8, |
| 95 | }; |
94 | }; |
| 96 | fb_init(&prop); |
95 | fb_init(&prop); |
| 97 | #endif |
96 | #else |
| - | 97 | #ifdef CONFIG_ARM_PRN |
|
| - | 98 | dsrlnout_init((ioport8_t *) gxemul_kbd); |
|
| - | 99 | #endif /* CONFIG_ARM_PRN */ |
|
| - | 100 | #endif /* CONFIG_FB */ |
|
| 98 | } |
101 | } |
| 99 | 102 | ||
| 100 | /** Performs arm32 specific tasks needed after cpu is initialized. |
103 | /** Performs arm32 specific tasks needed after cpu is initialized. |
| 101 | * |
104 | * |
| 102 | * Currently the function is empty. |
105 | * Currently the function is empty. |
| Line 121... | Line 124... | ||
| 121 | * |
124 | * |
| 122 | * Currently the function is empty because SMP is not supported. |
125 | * Currently the function is empty because SMP is not supported. |
| 123 | */ |
126 | */ |
| 124 | void arch_post_smp_init(void) |
127 | void arch_post_smp_init(void) |
| 125 | { |
128 | { |
| - | 129 | #ifdef CONFIG_ARM_KBD |
|
| - | 130 | /* |
|
| - | 131 | * Initialize the msim/GXemul keyboard port. Then initialize the serial line |
|
| - | 132 | * module and connect it to the msim/GXemul keyboard. Enable keyboard interrupts. |
|
| - | 133 | */ |
|
| - | 134 | indev_t *kbrdin = dsrlnin_init((dsrlnin_t *) gxemul_kbd, GXEMUL_KBD_IRQ); |
|
| - | 135 | if (kbrdin) |
|
| - | 136 | srln_init(kbrdin); |
|
| - | 137 | ||
| - | 138 | /* |
|
| - | 139 | * This is the necessary evil until the userspace driver is entirely |
|
| - | 140 | * self-sufficient. |
|
| - | 141 | */ |
|
| - | 142 | sysinfo_set_item_val("kbd", NULL, true); |
|
| - | 143 | sysinfo_set_item_val("kbd.inr", NULL, GXEMUL_KBD_IRQ); |
|
| - | 144 | sysinfo_set_item_val("kbd.address.virtual", NULL, (unative_t) gxemul_kbd); |
|
| - | 145 | #endif |
|
| 126 | } |
146 | } |
| 127 | 147 | ||
| 128 | 148 | ||
| 129 | /** Performs arm32 specific tasks needed before the new task is run. */ |
149 | /** Performs arm32 specific tasks needed before the new task is run. */ |
| 130 | void before_task_runs_arch(void) |
150 | void before_task_runs_arch(void) |
| Line 154... | Line 174... | ||
| 154 | } |
174 | } |
| 155 | 175 | ||
| 156 | /** Halts CPU. */ |
176 | /** Halts CPU. */ |
| 157 | void cpu_halt(void) |
177 | void cpu_halt(void) |
| 158 | { |
178 | { |
| 159 | machine_cpu_halt(); |
179 | *((char *) (gxemul_kbd + GXEMUL_HALT_OFFSET)) |
| - | 180 | = 0; |
|
| 160 | } |
181 | } |
| 161 | 182 | ||
| 162 | /** Reboot. */ |
183 | /** Reboot. */ |
| 163 | void arch_reboot() |
184 | void arch_reboot() |
| 164 | { |
185 | { |