3 * 2003-10 by SONE Takeshi
7 #include "kernel/kernel.h"
9 #include "libopenbios/sys_info.h"
13 #define MAIN_STACK_SIZE 16384
14 #define IMAGE_STACK_SIZE 4096*4
18 static void start_main(void); /* forward decl. */
19 void __exit_context(void); /* assembly routine */
22 * Main context structure
23 * It is placed at the bottom of our stack, and loaded by assembly routine
26 static struct context main_ctx
= {
27 .regs
[REG_SP
] = (uint64_t) &_estack
- STACK_BIAS
- 96,
28 .pc
= (uint64_t) start_main
,
29 .npc
= (uint64_t) start_main
+ 4,
30 .return_addr
= (uint64_t) __exit_context
,
33 /* This is used by assembly routine to load/store the context which
34 * it is to switch/switched. */
35 struct context
* volatile __context
= &main_ctx
;
37 /* Stack for loaded ELF image */
38 static uint8_t image_stack
[IMAGE_STACK_SIZE
];
40 /* Pointer to startup context (physical address) */
41 unsigned long __boot_ctx
;
45 * This is the C function that runs first.
47 static void start_main(void)
49 /* Save startup context, so we can refer to it later.
50 * We have to keep it in physical address since we will relocate. */
51 __boot_ctx
= virt_to_phys(__context
);
53 /* Start the real fun */
56 /* Returning from here should jump to __exit_context */
60 static uint64_t ALIGN_SIZE(uint64_t x
, uint64_t a
)
62 return (x
+ a
- 1) & ~(a
-1);
65 /* Setup a new context using the given stack.
68 init_context(uint8_t *stack
, uint64_t stack_size
, int num_params
)
71 uint8_t *stack_top
= stack
+ stack_size
;
73 ctx
= (struct context
*)
74 (stack_top
- ALIGN_SIZE(sizeof(*ctx
) + num_params
*sizeof(uint64_t), sizeof(uint64_t)));
75 memset(ctx
, 0, sizeof(*ctx
));
77 /* Fill in reasonable default for flat memory model */
78 ctx
->regs
[REG_SP
] = virt_to_phys(stack_top
- STACK_BIAS
- 192);
79 ctx
->return_addr
= virt_to_phys(__exit_context
);
84 /* Switch to another context. */
85 struct context
*switch_to(struct context
*ctx
)
87 struct context
*save
, *ret
;
89 debug("switching to new context: entry point %#llx stack 0x%016llx\n", ctx
->pc
, ctx
->regs
[REG_SP
]);
92 //asm ("pushl %cs; call __switch_context");
93 asm ("call __switch_context_nosave; nop");
99 /* Start ELF Boot image */
100 uint64_t start_elf(uint64_t entry_point
, uint64_t param
)
104 ctx
= init_context(image_stack
, sizeof image_stack
, 1);
105 ctx
->pc
= entry_point
;
106 ctx
->param
[0] = param
;
107 //ctx->eax = 0xe1fb007;
110 ctx
= switch_to(ctx
);
115 /* Start client image */
116 uint64_t start_client_image(uint64_t entry_point
, uint64_t cif_handler
)
120 ctx
= init_context(image_stack
, sizeof image_stack
, 0);
121 ctx
->pc
= entry_point
;
122 ctx
->npc
= entry_point
+4;
123 ctx
->regs
[REG_O0
] = 0;
124 ctx
->regs
[REG_O0
+4] = cif_handler
;
126 ctx
= switch_to(ctx
);