main.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:3k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * BK Id: SCCS/s.main.c 1.16 01/12/02 10:36:33 trini
  3.  */
  4. /*
  5.  * Copyright (C) Paul Mackerras 1997.
  6.  *
  7.  * This program is free software; you can redistribute it and/or
  8.  * modify it under the terms of the GNU General Public License
  9.  * as published by the Free Software Foundation; either version
  10.  * 2 of the License, or (at your option) any later version.
  11.  */
  12. #include "nonstdio.h"
  13. #include <asm/processor.h>
  14. #include <asm/page.h>
  15. /* Passed from the linker */
  16. extern char __image_begin, __image_end;
  17. extern char __ramdisk_begin[], __ramdisk_end;
  18. extern char _start, _end;
  19. extern int getprop(void *, const char *, void *, int);
  20. extern unsigned int heap_max;
  21. extern void claim(unsigned int virt, unsigned int size, unsigned int align);
  22. extern void *finddevice(const char *);
  23. extern void flush_cache(void *, unsigned long);
  24. extern void gunzip(void *, int, unsigned char *, int *);
  25. extern void make_bi_recs(unsigned long addr, char *name, unsigned int mach,
  26. unsigned int progend);
  27. extern void pause(void);
  28. char *avail_ram;
  29. char *begin_avail, *end_avail;
  30. char *avail_high;
  31. #define RAM_START 0x00000000
  32. #define RAM_END (64<<20)
  33. #define BOOT_START ((unsigned long)_start)
  34. #define BOOT_END ((unsigned long)(_end + 0xFFF) & ~0xFFF)
  35. #define RAM_FREE ((unsigned long)(_end+0x1000)&~0xFFF)
  36. #define PROG_START 0x00010000
  37. #define PROG_SIZE 0x00400000 /* 4MB */
  38. #define SCRATCH_SIZE (128 << 10)
  39. static char scratch[SCRATCH_SIZE]; /* 1MB of scratch space for gunzip */
  40. void
  41. chrpboot(int a1, int a2, void *prom)
  42. {
  43.     unsigned sa, len;
  44.     void *dst;
  45.     unsigned char *im;
  46.     unsigned int initrd_size, initrd_start;
  47.     
  48.     printf("chrpboot starting: loaded at 0x%pnr", &_start);
  49.     initrd_size = (char *)(&__ramdisk_end) - (char *)(&__ramdisk_begin);
  50.     if (initrd_size) {
  51. initrd_start = (RAM_END - initrd_size) & ~0xFFF;
  52. a1 = initrd_start;
  53. a2 = initrd_size;
  54. claim(initrd_start, RAM_END - initrd_start, 0);
  55. printf("initial ramdisk moving 0x%x <- 0x%p (%x bytes)nr",
  56.        initrd_start, (char *)(&__ramdisk_begin), initrd_size);
  57. memcpy((char *)initrd_start, (char *)(&__ramdisk_begin), initrd_size);
  58.     } else {
  59. initrd_start = 0;
  60. initrd_size = 0;
  61. a2 = 0xdeadbeef;
  62.     }
  63.     im = (char *)(&__image_begin);
  64.     len = (char *)(&__image_end) - (char *)(&__image_begin);
  65.     /* claim 4MB starting at PROG_START */
  66.     claim(PROG_START, PROG_SIZE - PROG_START, 0);
  67.     dst = (void *) PROG_START;
  68.     if (im[0] == 0x1f && im[1] == 0x8b) {
  69. avail_ram = scratch;
  70. begin_avail = avail_high = avail_ram;
  71. end_avail = scratch + sizeof(scratch);
  72. printf("gunzipping (0x%p <- 0x%p:0x%p)...", dst, im, im+len);
  73. gunzip(dst, 0x400000, im, &len);
  74. printf("done %u bytesnr", len);
  75. printf("%u bytes of heap consumed, max in use %unr",
  76.        avail_high - begin_avail, heap_max);
  77.     } else {
  78. memmove(dst, im, len);
  79.     }
  80.     flush_cache(dst, len);
  81.     make_bi_recs(((unsigned long) dst + len), "chrpboot", _MACH_chrp,
  82.     (PROG_START + PROG_SIZE));
  83.     
  84.     sa = (unsigned long)PROG_START;
  85.     printf("start address = 0x%xnr", sa);
  86.     (*(void (*)())sa)(a1, a2, prom, initrd_start, initrd_size);
  87.     printf("returned?nr");
  88.     pause();
  89. }