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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * arch/alpha/boot/bootp.c
  3.  *
  4.  * Copyright (C) 1997 Jay Estabrook
  5.  *
  6.  * This file is used for creating a bootp file for the Linux/AXP kernel
  7.  *
  8.  * based significantly on the arch/alpha/boot/main.c of Linus Torvalds
  9.  */
  10. #include <linux/kernel.h>
  11. #include <linux/string.h>
  12. #include <linux/version.h>
  13. #include <linux/mm.h>
  14. #include <asm/system.h>
  15. #include <asm/console.h>
  16. #include <asm/hwrpb.h>
  17. #include <asm/pgtable.h>
  18. #include <asm/io.h>
  19. #include <stdarg.h>
  20. #include "ksize.h"
  21. extern unsigned long switch_to_osf_pal(unsigned long nr,
  22. struct pcb_struct * pcb_va, struct pcb_struct * pcb_pa,
  23. unsigned long *vptb);
  24. struct hwrpb_struct *hwrpb = INIT_HWRPB;
  25. static struct pcb_struct pcb_va[1];
  26. /*
  27.  * Find a physical address of a virtual object..
  28.  *
  29.  * This is easy using the virtual page table address.
  30.  */
  31. static inline void *
  32. find_pa(unsigned long *vptb, void *ptr)
  33. {
  34. unsigned long address = (unsigned long) ptr;
  35. unsigned long result;
  36. result = vptb[address >> 13];
  37. result >>= 32;
  38. result <<= 13;
  39. result |= address & 0x1fff;
  40. return (void *) result;
  41. }
  42. /*
  43.  * This function moves into OSF/1 pal-code, and has a temporary
  44.  * PCB for that. The kernel proper should replace this PCB with
  45.  * the real one as soon as possible.
  46.  *
  47.  * The page table muckery in here depends on the fact that the boot
  48.  * code has the L1 page table identity-map itself in the second PTE
  49.  * in the L1 page table. Thus the L1-page is virtually addressable
  50.  * itself (through three levels) at virtual address 0x200802000.
  51.  */
  52. #define VPTB ((unsigned long *) 0x200000000)
  53. #define L1 ((unsigned long *) 0x200802000)
  54. void
  55. pal_init(void)
  56. {
  57. unsigned long i, rev;
  58. struct percpu_struct * percpu;
  59. struct pcb_struct * pcb_pa;
  60. /* Create the dummy PCB.  */
  61. pcb_va->ksp = 0;
  62. pcb_va->usp = 0;
  63. pcb_va->ptbr = L1[1] >> 32;
  64. pcb_va->asn = 0;
  65. pcb_va->pcc = 0;
  66. pcb_va->unique = 0;
  67. pcb_va->flags = 1;
  68. pcb_va->res1 = 0;
  69. pcb_va->res2 = 0;
  70. pcb_pa = find_pa(VPTB, pcb_va);
  71. /*
  72.  * a0 = 2 (OSF)
  73.  * a1 = return address, but we give the asm the vaddr of the PCB
  74.  * a2 = physical addr of PCB
  75.  * a3 = new virtual page table pointer
  76.  * a4 = KSP (but the asm sets it)
  77.  */
  78. srm_printk("Switching to OSF PAL-code .. ");
  79. i = switch_to_osf_pal(2, pcb_va, pcb_pa, VPTB);
  80. if (i) {
  81. srm_printk("failed, code %ldn", i);
  82. __halt();
  83. }
  84. percpu = (struct percpu_struct *)
  85. (INIT_HWRPB->processor_offset + (unsigned long) INIT_HWRPB);
  86. rev = percpu->pal_revision = percpu->palcode_avail[2];
  87. srm_printk("Ok (rev %lx)n", rev);
  88. tbia(); /* do it directly in case we are SMP */
  89. }
  90. static inline void
  91. load(unsigned long dst, unsigned long src, unsigned long count)
  92. {
  93. memcpy((void *)dst, (void *)src, count);
  94. }
  95. /*
  96.  * Start the kernel.
  97.  */
  98. static inline void
  99. runkernel(void)
  100. {
  101. __asm__ __volatile__(
  102. "bis %1,%1,$30nt"
  103. "bis %0,%0,$27nt"
  104. "jmp ($27)"
  105. : /* no outputs: it doesn't even return */
  106. : "r" (START_ADDR),
  107.   "r" (PAGE_SIZE + INIT_STACK));
  108. }
  109. extern char _end;
  110. #define KERNEL_ORIGIN 
  111. ((((unsigned long)&_end) + 511) & ~511)
  112. void
  113. start_kernel(void)
  114. {
  115. /*
  116.  * Note that this crufty stuff with static and envval
  117.  * and envbuf is because:
  118.  *
  119.  * 1. Frequently, the stack is short, and we don't want to overrun;
  120.  * 2. Frequently the stack is where we are going to copy the kernel to;
  121.  * 3. A certain SRM console required the GET_ENV output to stack.
  122.  *    ??? A comment in the aboot sources indicates that the GET_ENV
  123.  *    destination must be quadword aligned.  Might this explain the
  124.  *    behaviour, rather than requiring output to the stack, which
  125.  *    seems rather far-fetched.
  126.  */
  127. static long nbytes;
  128. static char envval[256] __attribute__((aligned(8)));
  129. #ifdef INITRD_IMAGE_SIZE
  130. static unsigned long initrd_start;
  131. #endif
  132. srm_printk("Linux/AXP bootp loader for Linux " UTS_RELEASE "n");
  133. if (INIT_HWRPB->pagesize != 8192) {
  134. srm_printk("Expected 8kB pages, got %ldkBn",
  135.            INIT_HWRPB->pagesize >> 10);
  136. return;
  137. }
  138. if (INIT_HWRPB->vptb != (unsigned long) VPTB) {
  139. srm_printk("Expected vptb at %p, got %pn",
  140.    VPTB, (void *)INIT_HWRPB->vptb);
  141. return;
  142. }
  143. pal_init();
  144. #ifdef INITRD_IMAGE_SIZE
  145. /* The initrd must be page-aligned.  See below for the 
  146.    cause of the magic number 5.  */
  147. initrd_start = ((START_ADDR + 5*KERNEL_SIZE) | (PAGE_SIZE-1)) + 1;
  148. srm_printk("Initrd positioned at %#lxn", initrd_start);
  149. #endif
  150. nbytes = callback_getenv(ENV_BOOTED_OSFLAGS, envval, sizeof(envval));
  151. if (nbytes < 0 || nbytes >= sizeof(envval)) {
  152. nbytes = 0;
  153. }
  154. envval[nbytes] = '';
  155. srm_printk("Loading the kernel...'%s'n", envval);
  156. /* NOTE: *no* callbacks or printouts from here on out!!! */
  157. /* This is a hack, as some consoles seem to get virtual 20000000 (ie
  158.  * where the SRM console puts the kernel bootp image) memory
  159.  * overlapping physical memory where the kernel wants to be put,
  160.  * which causes real problems when attempting to copy the former to
  161.  * the latter... :-(
  162.  *
  163.  * So, we first move the kernel virtual-to-physical way above where
  164.  * we physically want the kernel to end up, then copy it from there
  165.  * to its final resting place... ;-}
  166.  *
  167.  * Sigh...  */
  168. #ifdef INITRD_IMAGE_SIZE
  169. load(initrd_start, KERNEL_ORIGIN+KERNEL_SIZE, INITRD_IMAGE_SIZE);
  170. #endif
  171.         load(START_ADDR+(4*KERNEL_SIZE), KERNEL_ORIGIN, KERNEL_SIZE);
  172.         load(START_ADDR, START_ADDR+(4*KERNEL_SIZE), KERNEL_SIZE);
  173. memset((char*)ZERO_PGE, 0, PAGE_SIZE);
  174. strcpy((char*)ZERO_PGE, envval);
  175. #ifdef INITRD_IMAGE_SIZE
  176. ((long *)(ZERO_PGE+256))[0] = initrd_start;
  177. ((long *)(ZERO_PGE+256))[1] = INITRD_IMAGE_SIZE;
  178. #endif
  179. runkernel();
  180. }