]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
sparc: Use image_setup_linux() instead of local code
authorSimon Glass <sjg@chromium.org>
Wed, 8 May 2013 08:06:06 +0000 (08:06 +0000)
committerTom Rini <trini@ti.com>
Tue, 14 May 2013 19:37:26 +0000 (15:37 -0400)
Sparc only really sets up the ramdisk, but we should still use
image_setup_linux() so that setup is common across all architectures
that use the FDT.

Cover-letter
Introduce a common image_setup_linux() function
This series continues the work to tidy up the image code. Each
architecture has its own code for setting up ready for booting linux.
An attempt is made here to unify these in a single image_setup_linux()
function.

The part of the image code that deals with FDT is split into image-fdt.c
and a few tweaks are added to make FIT images more viable in SPL.
END
Signed-off-by: Simon Glass <sjg@chromium.org>
arch/sparc/lib/bootm.c

index bcc63584bfe3fa5e48a28774846822c48577877e..1a9343c108263a0a3c28512669a201504b08a046 100644 (file)
@@ -95,10 +95,8 @@ void arch_lmb_reserve(struct lmb *lmb)
 int do_bootm_linux(int flag, int argc, char * const argv[], bootm_headers_t * images)
 {
        char *bootargs;
-       ulong initrd_start, initrd_end;
        ulong rd_len;
        void (*kernel) (struct linux_romvec *, void *);
-       struct lmb *lmb = &images->lmb;
        int ret;
 
        if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
@@ -131,24 +129,23 @@ int do_bootm_linux(int flag, int argc, char * const argv[], bootm_headers_t * im
         * extracted and is writeable.
         */
 
+       ret = image_setup_linux(images);
+       if (ret) {
+               puts("### Failed to relocate RAM disk\n");
+               goto error;
+       }
+
        /* Calc length of RAM disk, if zero no ramdisk available */
        rd_len = images->rd_end - images->rd_start;
 
        if (rd_len) {
-               ret = boot_ramdisk_high(lmb, images->rd_start, rd_len,
-                                       &initrd_start, &initrd_end);
-               if (ret) {
-                       puts("### Failed to relocate RAM disk\n");
-                       goto error;
-               }
-
                /* Update SPARC kernel header so that Linux knows
                 * what is going on and where to find RAM disk.
                 *
                 * Set INITRD Image address relative to RAM Start
                 */
                linux_hdr->hdr_input.ver_0203.sparc_ramdisk_image =
-                   initrd_start - CONFIG_SYS_RAM_BASE;
+                       images->initrd_start - CONFIG_SYS_RAM_BASE;
                linux_hdr->hdr_input.ver_0203.sparc_ramdisk_size = rd_len;
                /* Clear READ ONLY flag if set to non-zero */
                linux_hdr->hdr_input.ver_0203.root_flags = 1;