Changeset 272c219 in mainline
- Timestamp:
- 2006-03-13T18:42:58Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- eebd172
- Parents:
- 8cbe350
- Location:
- arch/ppc32/loader
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/ppc32/loader/asm.S
r8cbe350 r272c219 39 39 .global memsetb 40 40 .global memcpy 41 .global halt42 41 .global jump_to_kernel 43 42 … … 147 146 b 1b 148 147 149 halt:150 b halt151 152 148 flush_instruction_cache: 153 149 -
arch/ppc32/loader/asm.h
r8cbe350 r272c219 30 30 #define __ASM_H__ 31 31 32 void halt(void) __attribute__((noreturn));33 32 void jump_to_kernel(void *addr) __attribute__((noreturn)); 34 33 -
arch/ppc32/loader/main.c
r8cbe350 r272c219 39 39 void bootstrap(void) 40 40 { 41 printf("\nHelenOS PPC Bootloader\nLoaded at %L\nKernel size %d bytes, load address %L\n", &start, KERNEL_SIZE, KERNEL_LOAD_ADDRESS); 41 printf("\nHelenOS PPC Bootloader\n"); 42 43 void *loader = ofw_translate(&start); 44 printf("loaded at %L (physical %L)\n", &start, loader); 45 printf("kernel load address %L (size %d)\n", KERNEL_LOAD_ADDRESS, KERNEL_SIZE); 42 46 43 47 void *addr = ofw_claim((void *) KERNEL_LOAD_ADDRESS, KERNEL_SIZE, 1); -
arch/ppc32/loader/ofw.c
r8cbe350 r272c219 28 28 29 29 #include "ofw.h" 30 #include "printf.h" 30 31 31 32 ofw_entry ofw; 32 33 33 34 phandle ofw_chosen; 35 ihandle ofw_mmu; 34 36 ihandle ofw_stdout; 35 37 … … 39 41 ofw_chosen = ofw_find_device("/chosen"); 40 42 if (ofw_chosen == -1) 41 ofw_call("exit", 0, 0);43 halt(); 42 44 43 45 if (ofw_get_property(ofw_chosen, "stdout", &ofw_stdout, sizeof(ofw_stdout)) <= 0) 44 46 ofw_stdout = 0; 47 48 ofw_mmu = ofw_open("/mmu"); 49 if (ofw_mmu == -1) { 50 puts("Unable to open /mmu node\n"); 51 halt(); 52 } 53 } 54 55 void halt(void) 56 { 57 ofw_call("exit", 0, 0); 45 58 } 46 59 … … 66 79 ofw(&args); 67 80 68 return args.args[nargs]; 81 if (nret > 0) 82 return args.args[nargs + nret - 1]; 83 else 84 return 0; 85 } 86 87 88 ihandle ofw_open(const char *name) 89 { 90 return ofw_call("open", 1, 1, name); 69 91 } 70 92 … … 76 98 77 99 ofw_call("write", 3, 1, ofw_stdout, str, len); 78 }79 80 81 void ofw_puts(const char *str)82 {83 int len = 0;84 85 while (str[len] != 0)86 len++;87 88 ofw_write(str, len);89 100 } 90 101 … … 106 117 return (void *) ofw_call("claim", 3, 1, addr, size, align); 107 118 } 119 120 121 void *ofw_translate(const void *virt) 122 { 123 return (void *) ofw_call_method(ofw_mmu, "translate", 1, 5, virt); 124 } -
arch/ppc32/loader/ofw.h
r8cbe350 r272c219 56 56 57 57 extern void init(void); 58 extern int ofw_call(const char *service, const int nargs, const int nret, ...); 59 extern void ofw_write(const char *str, const int len); 60 extern void ofw_puts(const char *str); 61 extern void *ofw_claim(const void *addr, const int size, const int align); 58 void halt(void); 59 62 60 extern phandle ofw_find_device(const char *name); 63 61 extern int ofw_get_property(const phandle device, const char *name, const void *buf, const int buflen); 62 extern int ofw_call(const char *service, const int nargs, const int nret, ...); 63 #define ofw_call_method(instance, method, nargs, nret, ...) ofw_call("call-method", (nargs + 2), nret, method, instance, ##__VA_ARGS__) 64 65 extern ihandle ofw_open(const char *name); 66 extern void ofw_write(const char *str, const int len); 67 68 extern void *ofw_claim(const void *addr, const int size, const int align); 69 extern void *ofw_translate(const void *virt); 64 70 65 71 #endif -
arch/ppc32/loader/printf.c
r8cbe350 r272c219 33 33 34 34 35 void puts(const char *str) 36 { 37 int len = 0; 38 39 while (str[len] != 0) 40 len++; 41 42 ofw_write(str, len); 43 } 44 45 35 46 /** Print hexadecimal digits 36 47 * … … 74 85 75 86 d[sizeof(__native) * 8] = 0; 76 ofw_puts(&d[i + 1]);87 puts(&d[i + 1]); 77 88 } 78 89 … … 157 168 */ 158 169 case 's': 159 ofw_puts(va_arg(ap, char_ptr));170 puts(va_arg(ap, char_ptr)); 160 171 goto loop; 161 172 … … 168 179 */ 169 180 case 'P': 170 ofw_puts("0x");181 puts("0x"); 171 182 case 'p': 172 183 print_fixed_hex(va_arg(ap, __native), sizeof(__native)); … … 174 185 175 186 case 'Q': 176 ofw_puts("0x");187 puts("0x"); 177 188 case 'q': 178 189 print_fixed_hex(va_arg(ap, __u64), INT64); … … 180 191 181 192 case 'L': 182 ofw_puts("0x");193 puts("0x"); 183 194 case 'l': 184 195 print_fixed_hex(va_arg(ap, __native), INT32); … … 186 197 187 198 case 'W': 188 ofw_puts("0x");199 puts("0x"); 189 200 case 'w': 190 201 print_fixed_hex(va_arg(ap, __native), INT16); … … 192 203 193 204 case 'B': 194 ofw_puts("0x");205 puts("0x"); 195 206 case 'b': 196 207 print_fixed_hex(va_arg(ap, __native), INT8); … … 205 216 206 217 case 'X': 207 ofw_puts("0x");218 puts("0x"); 208 219 case 'x': 209 220 print_number(va_arg(ap, __native), 16); -
arch/ppc32/loader/printf.h
r8cbe350 r272c219 47 47 typedef char *char_ptr; 48 48 49 void puts(const char *str); 49 50 void printf(const char *fmt, ...); 50 51
Note:
See TracChangeset
for help on using the changeset viewer.