coffmain.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:3k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * BK Id: SCCS/s.coffmain.c 1.14 07/27/01 20:24:18 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 "zlib.h"
  14. #include <asm/processor.h>
  15. extern char _start[], _end[];
  16. extern char *claim(unsigned, unsigned, unsigned);
  17. extern char image_data[], initrd_data[];
  18. extern int initrd_len, image_len;
  19. extern int getprop(void *, const char *, void *, int);
  20. extern unsigned int heap_max;
  21. extern void *finddevice(const char *);
  22. extern void flush_cache(void *start, unsigned int len);
  23. extern void gunzip(void *, int, unsigned char *, int *);
  24. extern void make_bi_recs(unsigned long addr, char *name, unsigned int mach,
  25. unsigned int progend);
  26. extern void pause(void);
  27. extern void setup_bats(unsigned long start);
  28. char *avail_ram;
  29. char *begin_avail, *end_avail;
  30. char *avail_high;
  31. #define RAM_START 0
  32. #define RAM_END (RAM_START + 0x800000) /* only 8M mapped with BATs */
  33. #define PROG_START RAM_START
  34. #define PROG_SIZE 0x00400000
  35. #define SCRATCH_SIZE (128 << 10)
  36. static char heap[SCRATCH_SIZE];
  37. void boot(int a1, int a2, void *prom)
  38. {
  39.     unsigned sa, len;
  40.     void *dst;
  41.     unsigned char *im;
  42.     unsigned initrd_start, initrd_size;
  43.     
  44.     printf("coffboot starting: loaded at 0x%pn", &_start);
  45.     setup_bats(RAM_START);
  46.     if (initrd_len) {
  47. initrd_size = initrd_len;
  48. initrd_start = (RAM_END - initrd_size) & ~0xFFF;
  49. a1 = initrd_start;
  50. a2 = initrd_size;
  51. claim(initrd_start - RAM_START, RAM_END - initrd_start, 0);
  52. printf("initial ramdisk moving 0x%x <- 0x%p (%x bytes)n",
  53.        initrd_start, initrd_data, initrd_size);
  54. memcpy((char *)initrd_start, initrd_data, initrd_size);
  55.     }
  56.     im = image_data;
  57.     len = image_len;
  58.     /* claim 4MB starting at 0 */
  59.     claim(0, PROG_SIZE, 0);
  60.     dst = (void *) RAM_START;
  61.     if (im[0] == 0x1f && im[1] == 0x8b) {
  62. /* set up scratch space */
  63. begin_avail = avail_high = avail_ram = heap;
  64. end_avail = heap + sizeof(heap);
  65. printf("heap at 0x%pn", avail_ram);
  66. printf("gunzipping (0x%p <- 0x%p:0x%p)...", dst, im, im+len);
  67. gunzip(dst, PROG_SIZE, im, &len);
  68. printf("done %u bytesn", len);
  69. printf("%u bytes of heap consumed, max in use %un",
  70.        avail_high - begin_avail, heap_max);
  71.     } else {
  72. memmove(dst, im, len);
  73.     }
  74.     flush_cache(dst, len);
  75.     make_bi_recs(((unsigned long) dst + len), "coffboot", _MACH_Pmac,
  76.     (PROG_START + PROG_SIZE));
  77.     sa = (unsigned long)PROG_START;
  78.     printf("start address = 0x%xn", sa);
  79.     (*(void (*)())sa)(a1, a2, prom);
  80.     printf("returned?n");
  81.     pause();
  82. }