Commit 1e1a77d6 authored by Wu Zhangjin's avatar Wu Zhangjin Committed by Ralf Baechle

MIPS: Clean up arch/mips/boot/compressed/decompress.c

- Remove several outdated comments
- Clearify the definition of zimage_start and zimage_size and the their
  usage
Signed-off-by: default avatarWu Zhangjin <wuzhangjin@gmail.com>
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/1382/Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent bdbffd9b
/* /*
* Misc. bootloader code for many machines.
*
* Copyright 2001 MontaVista Software Inc. * Copyright 2001 MontaVista Software Inc.
* Author: Matt Porter <mporter@mvista.com> Derived from * Author: Matt Porter <mporter@mvista.com>
* arch/ppc/boot/prep/misc.c
* *
* Copyright (C) 2009 Lemote, Inc. * Copyright (C) 2009 Lemote, Inc.
* Author: Wu Zhangjin <wuzhangjin@gmail.com> * Author: Wu Zhangjin <wuzhangjin@gmail.com>
...@@ -19,12 +16,12 @@ ...@@ -19,12 +16,12 @@
#include <asm/addrspace.h> #include <asm/addrspace.h>
/* These two variables specify the free mem region /*
* These two variables specify the free mem region
* that can be used for temporary malloc area * that can be used for temporary malloc area
*/ */
unsigned long free_mem_ptr; unsigned long free_mem_ptr;
unsigned long free_mem_end_ptr; unsigned long free_mem_end_ptr;
char *zimage_start;
/* The linker tells us where the image is. */ /* The linker tells us where the image is. */
extern unsigned char __image_begin, __image_end; extern unsigned char __image_begin, __image_end;
...@@ -83,38 +80,31 @@ void *memset(void *s, int c, size_t n) ...@@ -83,38 +80,31 @@ void *memset(void *s, int c, size_t n)
void decompress_kernel(unsigned long boot_heap_start) void decompress_kernel(unsigned long boot_heap_start)
{ {
int zimage_size; unsigned long zimage_start, zimage_size;
/* zimage_start = (unsigned long)(&__image_begin);
* We link ourself to an arbitrary low address. When we run, we
* relocate outself to that address. __image_beign points to
* the part of the image where the zImage is. -- Tom
*/
zimage_start = (char *)(unsigned long)(&__image_begin);
zimage_size = (unsigned long)(&__image_end) - zimage_size = (unsigned long)(&__image_end) -
(unsigned long)(&__image_begin); (unsigned long)(&__image_begin);
/*
* The zImage and initrd will be between start and _end, so they've
* already been moved once. We're good to go now. -- Tom
*/
puts("zimage at: "); puts("zimage at: ");
puthex((unsigned long)zimage_start); puthex(zimage_start);
puts(" "); puts(" ");
puthex((unsigned long)(zimage_size + zimage_start)); puthex(zimage_size + zimage_start);
puts("\n"); puts("\n");
/* this area are prepared for mallocing when decompressing */ /* This area are prepared for mallocing when decompressing */
free_mem_ptr = boot_heap_start; free_mem_ptr = boot_heap_start;
free_mem_end_ptr = boot_heap_start + BOOT_HEAP_SIZE; free_mem_end_ptr = boot_heap_start + BOOT_HEAP_SIZE;
/* Display standard Linux/MIPS boot prompt for kernel args */ /* Display standard Linux/MIPS boot prompt */
puts("Uncompressing Linux at load address "); puts("Uncompressing Linux at load address ");
puthex(VMLINUX_LOAD_ADDRESS_ULL); puthex(VMLINUX_LOAD_ADDRESS_ULL);
puts("\n"); puts("\n");
/* Decompress the kernel with according algorithm */ /* Decompress the kernel with according algorithm */
decompress(zimage_start, zimage_size, 0, 0, decompress((char *)zimage_start, zimage_size, 0, 0,
(void *)VMLINUX_LOAD_ADDRESS_ULL, 0, error); (void *)VMLINUX_LOAD_ADDRESS_ULL, 0, error);
/* FIXME: is there a need to flush cache here? */
/* FIXME: should we flush cache here? */
puts("Now, booting the kernel...\n"); puts("Now, booting the kernel...\n");
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment