Subversion Repositories HelenOS

Rev

Rev 3386 | Rev 4263 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3386 Rev 4153
Line 32... Line 32...
32
/** @file
32
/** @file
33
 *  @brief ARM32 architecture specific functions.
33
 *  @brief ARM32 architecture specific functions.
34
 */
34
 */
35
 
35
 
36
#include <arch.h>
36
#include <arch.h>
37
#include <arch/boot.h>
-
 
38
#include <config.h>
37
#include <config.h>
39
#include <arch/console.h>
38
#include <arch/console.h>
40
#include <ddi/device.h>
-
 
41
#include <genarch/fb/fb.h>
39
#include <genarch/fb/fb.h>
42
#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>
43
#include <ddi/irq.h>
45
#include <ddi/irq.h>
44
#include <arch/debug/print.h>
46
#include <arch/drivers/gxemul.h>
45
#include <print.h>
47
#include <print.h>
46
#include <config.h>
48
#include <config.h>
47
#include <interrupt.h>
49
#include <interrupt.h>
48
#include <arch/regutils.h>
50
#include <arch/regutils.h>
49
#include <arch/machine.h>
-
 
50
#include <userspace.h>
51
#include <userspace.h>
-
 
52
#include <macros.h>
-
 
53
#include <string.h>
51
 
54
 
52
/** Information about loaded tasks. */
-
 
53
bootinfo_t bootinfo;
-
 
54
 
-
 
55
/** Performs arm32 specific initialization before main_bsp() is called. */
55
/** Performs arm32-specific initialization before main_bsp() is called. */
56
void arch_pre_main(void)
56
void arch_pre_main(void *entry __attribute__((unused)), bootinfo_t *bootinfo)
57
{
57
{
58
    unsigned int i;
58
    unsigned int i;
59
 
-
 
60
    init.cnt = bootinfo.cnt;
-
 
61
 
-
 
62
    for (i = 0; i < bootinfo.cnt; ++i) {
-
 
63
        init.tasks[i].addr = bootinfo.tasks[i].addr;
-
 
64
        init.tasks[i].size = bootinfo.tasks[i].size;
-
 
65
    }
-
 
66
   
59
   
-
 
60
    init.cnt = bootinfo->cnt;
-
 
61
   
-
 
62
    for (i = 0; i < min3(bootinfo->cnt, TASKMAP_MAX_RECORDS, CONFIG_INIT_TASKS); ++i) {
-
 
63
        init.tasks[i].addr = bootinfo->tasks[i].addr;
-
 
64
        init.tasks[i].size = bootinfo->tasks[i].size;
-
 
65
        strncpy(init.tasks[i].name, bootinfo->tasks[i].name,
-
 
66
            CONFIG_TASK_NAME_BUFLEN);
-
 
67
    }
67
}
68
}
68
 
69
 
69
/** Performs arm32 specific initialization before mm is initialized. */
70
/** Performs arm32 specific initialization before mm is initialized. */
70
void arch_pre_mm_init(void)
71
void arch_pre_mm_init(void)
71
{
72
{
Line 74... Line 75...
74
}
75
}
75
 
76
 
76
/** Performs arm32 specific initialization afterr mm is initialized. */
77
/** Performs arm32 specific initialization afterr mm is initialized. */
77
void arch_post_mm_init(void)
78
void arch_post_mm_init(void)
78
{
79
{
79
    machine_hw_map_init();
80
    gxemul_init();
80
 
81
   
81
    /* Initialize exception dispatch table */
82
    /* Initialize exception dispatch table */
82
    exception_init();
83
    exception_init();
83
 
-
 
84
    interrupt_init();
84
    interrupt_init();
85
   
85
   
86
    console_init(device_assign_devno());
-
 
87
 
-
 
88
#ifdef CONFIG_FB
86
#ifdef CONFIG_FB
-
 
87
    fb_properties_t prop = {
-
 
88
        .addr = GXEMUL_FB_ADDRESS,
-
 
89
        .offset = 0,
-
 
90
        .x = 640,
-
 
91
        .y = 480,
-
 
92
        .scan = 1920,
89
    fb_init(machine_get_fb_address(), 640, 480, 1920, VISUAL_RGB_8_8_8);
93
        .visual = VISUAL_BGR_8_8_8,
-
 
94
    };
-
 
95
    fb_init(&prop);
90
#endif
96
#else
-
 
97
#ifdef CONFIG_ARM_PRN
-
 
98
    dsrlnout_init((ioport8_t *) gxemul_kbd);
-
 
99
#endif /* CONFIG_ARM_PRN */
-
 
100
#endif /* CONFIG_FB */
91
}
101
}
92
 
102
 
93
/** Performs arm32 specific tasks needed after cpu is initialized.
103
/** Performs arm32 specific tasks needed after cpu is initialized.
94
 *
104
 *
95
 * Currently the function is empty.
105
 * Currently the function is empty.
Line 114... Line 124...
114
 *
124
 *
115
 * Currently the function is empty because SMP is not supported.
125
 * Currently the function is empty because SMP is not supported.
116
 */
126
 */
117
void arch_post_smp_init(void)
127
void arch_post_smp_init(void)
118
{
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
119
}
146
}
120
 
147
 
121
 
148
 
122
/** Performs arm32 specific tasks needed before the new task is run. */
149
/** Performs arm32 specific tasks needed before the new task is run. */
123
void before_task_runs_arch(void)
150
void before_task_runs_arch(void)
Line 147... Line 174...
147
}
174
}
148
 
175
 
149
/** Halts CPU. */
176
/** Halts CPU. */
150
void cpu_halt(void)
177
void cpu_halt(void)
151
{
178
{
152
    machine_cpu_halt();
179
    *((char *) (gxemul_kbd + GXEMUL_HALT_OFFSET))
-
 
180
        = 0;
153
}
181
}
154
 
182
 
155
/** Reboot. */
183
/** Reboot. */
156
void arch_reboot()
184
void arch_reboot()
157
{
185
{
158
    /* not implemented */
186
    /* not implemented */
159
    for (;;)
187
    while (1);
-
 
188
}
-
 
189
 
-
 
190
/** Construct function pointer
-
 
191
 *
-
 
192
 * @param fptr   function pointer structure
-
 
193
 * @param addr   function address
-
 
194
 * @param caller calling function address
-
 
195
 *
-
 
196
 * @return address of the function pointer
-
 
197
 *
160
        ;
198
 */
-
 
199
void *arch_construct_function(fncptr_t *fptr, void *addr, void *caller)
-
 
200
{
-
 
201
    return addr;
161
}
202
}
162
 
203
 
163
/** @}
204
/** @}
164
 */
205
 */