Changeset a8844e0 in mainline
- Timestamp:
- 2006-04-09T16:37:14Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e3dd773
- Parents:
- 89343aac
- Location:
- arch
- Files:
-
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/ppc32/loader/Makefile
r89343aac ra8844e0 47 47 endif 48 48 49 CFLAGS = -nostdinc -nostdlib -fno-builtin -Werror-implicit-function-declaration -Wmissing-prototypes -Werror -O3 -mcpu=powerpc 49 CFLAGS = -nostdinc -nostdlib -fno-builtin -Werror-implicit-function-declaration -Wmissing-prototypes -Werror -O3 -mcpu=powerpc -m32 50 50 DEFS = 51 51 -
arch/ppc32/loader/_link.ld
r89343aac ra8844e0 4 4 */ 5 5 6 OUTPUT_FORMAT(elf32-powerpc) 6 OUTPUT_FORMAT("elf32-powerpc") 7 OUTPUT_ARCH(powerpc:common) 7 8 ENTRY(start) 8 9 -
arch/ppc32/loader/printf.h
r89343aac ra8844e0 39 39 typedef unsigned char __u8; 40 40 typedef unsigned short __u16; 41 typedef unsigned long__u32;42 typedef long long __u64;41 typedef unsigned int __u32; 42 typedef unsigned long long __u64; 43 43 44 44 typedef __u32 __address; -
arch/ppc64/loader/Makefile
r89343aac ra8844e0 47 47 endif 48 48 49 CFLAGS = -nostdinc -nostdlib -fno-builtin -Werror-implicit-function-declaration -Wmissing-prototypes -Werror -O3 -mcpu=powerpc64 49 CFLAGS = -nostdinc -nostdlib -fno-builtin -Werror-implicit-function-declaration -Wmissing-prototypes -Werror -O3 -mcpu=powerpc64 -m64 50 50 DEFS = 51 51 -
arch/ppc64/loader/_link.ld
r89343aac ra8844e0 4 4 */ 5 5 6 OUTPUT_FORMAT(elf64-powerpc) 6 OUTPUT_FORMAT("elf64-powerpc") 7 OUTPUT_ARCH("powerpc:common64") 7 8 ENTRY(start) 8 9 -
arch/ppc64/loader/asm.S
r89343aac ra8844e0 115 115 # jumps to real_mode 116 116 117 mfmsr dr31117 mfmsr r31 118 118 lis r30, ~0@h 119 119 ori r30, r30, ~(msr_ir | msr_dr)@l … … 247 247 mtspr srr0, r31 248 248 249 mfmsr dr31249 mfmsr r31 250 250 ori r31, r31, (msr_ir | msr_dr)@l 251 251 mtspr srr1, r31 -
arch/ppc64/loader/asm.h
r89343aac ra8844e0 45 45 46 46 extern void halt(); 47 extern void jump_to_kernel(void *bootinfo, unsigned int bootinfo_size, void *trans, unsigned intkernel_size, void *framebuffer, void *real_mode) __attribute__((noreturn));47 extern void jump_to_kernel(void *bootinfo, unsigned long bootinfo_size, void *trans, unsigned long kernel_size, void *framebuffer, void *real_mode) __attribute__((noreturn)); 48 48 extern void real_mode(); 49 49 -
arch/ppc64/loader/main.c
r89343aac ra8844e0 33 33 #define KERNEL_START ((void *) &_binary_____________kernel_kernel_bin_start) 34 34 #define KERNEL_END ((void *) &_binary_____________kernel_kernel_bin_end) 35 #define KERNEL_SIZE ((unsigned int) KERNEL_END - (unsigned int) KERNEL_START)35 #define KERNEL_SIZE ((unsigned long) KERNEL_END - (unsigned long) KERNEL_START) 36 36 37 37 #define HEAP_GAP 1024000 … … 42 42 static void check_align(const void *addr, const char *desc) 43 43 { 44 if ((unsigned int) addr % PAGE_SIZE != 0) {44 if ((unsigned long) addr % PAGE_SIZE != 0) { 45 45 printf("Error: %s not on page boundary, halting.\n", desc); 46 46 halt(); … … 49 49 50 50 51 static void fix_overlap(void *va, void **pa, const char *desc, unsigned int*top)51 static void fix_overlap(void *va, void **pa, const char *desc, unsigned long *top) 52 52 { 53 if ((unsigned int) *pa + PAGE_SIZE < *top) {53 if ((unsigned long) *pa + PAGE_SIZE < *top) { 54 54 printf("Warning: %s overlaps kernel physical area\n", desc); 55 55 56 void *new_va = (void *) (ALIGN_UP((unsigned int) KERNEL_END + HEAP_GAP, PAGE_SIZE) + *top);56 void *new_va = (void *) (ALIGN_UP((unsigned long) KERNEL_END + HEAP_GAP, PAGE_SIZE) + *top); 57 57 void *new_pa = (void *) (HEAP_GAP + *top); 58 58 *top += PAGE_SIZE; … … 63 63 } 64 64 65 if ((unsigned int) new_pa + PAGE_SIZE < KERNEL_SIZE) {65 if ((unsigned long) new_pa + PAGE_SIZE < KERNEL_SIZE) { 66 66 printf("Error: %s cannot be relocated, halting.\n", desc); 67 67 halt(); … … 104 104 void *trans_pa = ofw_translate(&trans); 105 105 void *bootinfo_pa = ofw_translate(&bootinfo); 106 void *fb = (void *) (((unsigned int) bootinfo.screen.addr) & ((unsigned int) ~0 << 17));106 void *fb = (void *) (((unsigned long) bootinfo.screen.addr) & ((unsigned long) ~0 << 17)); 107 107 108 108 printf("\nMemory statistics (total %d MB)\n", bootinfo.memmap.total >> 20); … … 112 112 printf(" translation table at %L (physical %L)\n", &trans, trans_pa); 113 113 114 unsigned inttop = ALIGN_UP(KERNEL_SIZE, PAGE_SIZE);115 unsigned intaddr;114 unsigned long top = ALIGN_UP(KERNEL_SIZE, PAGE_SIZE); 115 unsigned long addr; 116 116 for (addr = 0; addr < KERNEL_SIZE; addr += PAGE_SIZE) { 117 117 void *pa = ofw_translate(KERNEL_START + addr); -
arch/ppc64/loader/main.h
r89343aac ra8844e0 44 44 } bootinfo_t; 45 45 46 extern int_binary_____________kernel_kernel_bin_start;47 extern int_binary_____________kernel_kernel_bin_end;46 extern long _binary_____________kernel_kernel_bin_start; 47 extern long _binary_____________kernel_kernel_bin_end; 48 48 extern void start(void); 49 49 extern void bootstrap(void); -
arch/ppc64/loader/ofw.c
r89343aac ra8844e0 34 34 #define BUF_SIZE 1024 35 35 36 typedef unsigned intofw_arg_t;37 typedef unsigned intihandle;38 typedef unsigned intphandle;36 typedef unsigned long ofw_arg_t; 37 typedef unsigned long ihandle; 38 typedef unsigned long phandle; 39 39 40 40 /** OpenFirmware command structure … … 43 43 typedef struct { 44 44 const char *service; /**< Command name */ 45 unsigned intnargs; /**< Number of in arguments */46 unsigned intnret; /**< Number of out arguments */45 unsigned long nargs; /**< Number of in arguments */ 46 unsigned long nret; /**< Number of out arguments */ 47 47 ofw_arg_t args[MAX_OFW_ARGS]; /**< List of arguments */ 48 48 } ofw_args_t; … … 61 61 62 62 63 static int ofw_call(const char *service, const int nargs, const intnret, ofw_arg_t *rets, ...)63 static long ofw_call(const char *service, const long nargs, const long nret, ofw_arg_t *rets, ...) 64 64 { 65 65 va_list list; 66 66 ofw_args_t args; 67 inti;67 long i; 68 68 69 69 args.service = service; … … 94 94 95 95 96 static int ofw_get_property(const phandle device, const char *name, const void *buf, const intbuflen)96 static long ofw_get_property(const phandle device, const char *name, const void *buf, const long buflen) 97 97 { 98 98 return ofw_call("getprop", 4, 1, NULL, device, name, buf, buflen); … … 100 100 101 101 102 static unsigned intofw_get_address_cells(const phandle device)103 { 104 unsigned intret;102 static unsigned long ofw_get_address_cells(const phandle device) 103 { 104 unsigned long ret; 105 105 106 106 if (ofw_get_property(device, "#address-cells", &ret, sizeof(ret)) <= 0) … … 112 112 113 113 114 static unsigned intofw_get_size_cells(const phandle device)115 { 116 unsigned intret;114 static unsigned long ofw_get_size_cells(const phandle device) 115 { 116 unsigned long ret; 117 117 118 118 if (ofw_get_property(device, "#size-cells", &ret, sizeof(ret)) <= 0) … … 164 164 165 165 166 void ofw_write(const char *str, const intlen)166 void ofw_write(const char *str, const long len) 167 167 { 168 168 if (ofw_stdout == 0) … … 185 185 186 186 187 int ofw_map(const void *phys, const void *virt, const int size, const intmode)187 long ofw_map(const void *phys, const void *virt, const long size, const long mode) 188 188 { 189 189 return ofw_call("call-method", 6, 1, NULL, "map", ofw_mmu, mode, size, virt, phys); … … 191 191 192 192 193 intofw_memmap(memmap_t *map)194 { 195 unsigned intbuf[BUF_SIZE];196 int ret = ofw_get_property(ofw_memory, "reg", buf, sizeof(unsigned int) * BUF_SIZE);193 long ofw_memmap(memmap_t *map) 194 { 195 unsigned long buf[BUF_SIZE]; 196 long ret = ofw_get_property(ofw_memory, "reg", buf, sizeof(unsigned long) * BUF_SIZE); 197 197 if (ret <= 0) 198 198 return false; 199 199 200 unsigned intac = ofw_get_address_cells(ofw_memory);201 unsigned intsc = ofw_get_size_cells(ofw_memory);202 203 intpos;200 unsigned long ac = ofw_get_address_cells(ofw_memory); 201 unsigned long sc = ofw_get_size_cells(ofw_memory); 202 203 long pos; 204 204 map->total = 0; 205 205 map->count = 0; 206 for (pos = 0; (pos < ret / sizeof(unsigned int)) && (map->count < MEMMAP_MAX_RECORDS); pos += ac + sc) {206 for (pos = 0; (pos < ret / sizeof(unsigned long)) && (map->count < MEMMAP_MAX_RECORDS); pos += ac + sc) { 207 207 void * start = (void *) buf[pos + ac - 1]; 208 unsigned intsize = buf[pos + ac + sc - 1];208 unsigned long size = buf[pos + ac + sc - 1]; 209 209 210 210 if (size > 0) { … … 218 218 219 219 220 intofw_screen(screen_t *screen)220 long ofw_screen(screen_t *screen) 221 221 { 222 222 char device_name[BUF_SIZE]; -
arch/ppc64/loader/ofw.h
r89343aac ra8844e0 43 43 typedef struct { 44 44 void *start; 45 unsigned intsize;45 unsigned long size; 46 46 } memzone_t; 47 47 48 48 typedef struct { 49 unsigned inttotal;50 unsigned intcount;49 unsigned long total; 50 unsigned long count; 51 51 memzone_t zones[MEMMAP_MAX_RECORDS]; 52 52 } memmap_t; … … 54 54 typedef struct { 55 55 void *addr; 56 unsigned intwidth;57 unsigned intheight;58 unsigned intbpp;59 unsigned intscanline;56 unsigned long width; 57 unsigned long height; 58 unsigned long bpp; 59 unsigned long scanline; 60 60 } screen_t; 61 61 62 62 63 63 extern void init(void); 64 extern void ofw_write(const char *str, const intlen);64 extern void ofw_write(const char *str, const long len); 65 65 66 66 extern void *ofw_translate(const void *virt); 67 extern int ofw_map(const void *phys, const void *virt, const int size, const intmode);68 extern intofw_memmap(memmap_t *map);69 extern intofw_screen(screen_t *screen);67 extern long ofw_map(const void *phys, const void *virt, const long size, const long mode); 68 extern long ofw_memmap(memmap_t *map); 69 extern long ofw_screen(screen_t *screen); 70 70 71 71 #endif -
arch/ppc64/loader/printf.c
r89343aac ra8844e0 35 35 void puts(const char *str) 36 36 { 37 intlen = 0;37 long len = 0; 38 38 39 39 while (str[len] != 0) … … 146 146 void printf(const char *fmt, ...) 147 147 { 148 inti = 0;148 long i = 0; 149 149 va_list ap; 150 150 char c; -
arch/ppc64/loader/printf.h
r89343aac ra8844e0 39 39 typedef unsigned char __u8; 40 40 typedef unsigned short __u16; 41 typedef unsigned long__u32;42 typedef longlong __u64;41 typedef unsigned int __u32; 42 typedef unsigned long __u64; 43 43 44 typedef __u 32__address;45 typedef __u 32__native;44 typedef __u64 __address; 45 typedef __u64 __native; 46 46 47 47 typedef char *char_ptr;
Note:
See TracChangeset
for help on using the changeset viewer.