Merge with /home/wd/git/u-boot/master
authorWolfgang Denk <wd@nyx.denx.de>
Wed, 11 Oct 2006 12:15:21 +0000 (14:15 +0200)
committerWolfgang Denk <wd@nyx.denx.de>
Wed, 11 Oct 2006 12:15:21 +0000 (14:15 +0200)
1  2 
README
board/cds/mpc8541cds/Makefile
board/cds/mpc8548cds/Makefile
board/cds/mpc8555cds/Makefile
board/stxxtc/Makefile
common/cmd_bootm.c
common/ft_build.c
include/image.h
tools/mkimage.c

diff --combined README
--- 1/README
--- 2/README
+++ b/README
@@@ -447,11 -447,6 +447,11 @@@ The following options need to be config
                Board code has addition modification that it wants to make
                to the flat device tree before handing it off to the kernel
  
 +              CONFIG_OF_BOOT_CPU
 +
 +              This define fills in the correct boot cpu in the boot
 +              param header, the default value is zero if undefined.
 +
  - Serial Ports:
                CFG_PL010_SERIAL
  
@@@ -2328,6 -2323,26 +2328,26 @@@ images ready for download to / installa
  - "u-boot" is an image in ELF binary format
  - "u-boot.srec" is in Motorola S-Record format
  
+ By default the build is performed locally and the objects are saved
+ in the source directory. One of the two methods can be used to change
+ this behavior and build U-Boot to some external directory:
+ 1. Add O= to the make command line invocations:
+       make O=/tmp/build distclean
+       make O=/tmp/build NAME_config
+       make O=/tmp/build all
+ 2. Set environment variable BUILD_DIR to point to the desired location:
+       export BUILD_DIR=/tmp/build
+       make distclean
+       make NAME_config
+       make all
+ Note that the command line "O=" setting overrides the BUILD_DIR environment
+ variable.
  
  Please be aware that the Makefiles assume you are using GNU make, so
  for instance on NetBSD you might need to use "gmake" instead of
@@@ -2381,6 -2396,22 +2401,22 @@@ or to build on a native PowerPC system 
  
        CROSS_COMPILE=' ' MAKEALL
  
+ When using the MAKEALL script, the default behaviour is to build U-Boot
+ in the source directory. This location can be changed by setting the
+ BUILD_DIR environment variable. Also, for each target built, the MAKEALL
+ script saves two log files (<target>.ERR and <target>.MAKEALL) in the
+ <source dir>/LOG directory. This default location can be changed by
+ setting the MAKEALL_LOGDIR environment variable. For example:
+       export BUILD_DIR=/tmp/build
+       export MAKEALL_LOGDIR=/tmp/log
+       CROSS_COMPILE=ppc_8xx- MAKEALL
+ With the above settings build objects are saved in the /tmp/build, log
+ files are saved in the /tmp/log and the source tree remains clean during
+ the whole build process.
  See also "U-Boot Porting Guide" below.
  
  
@@@ -3024,55 -3055,6 +3060,55 @@@ format!) to the "bootm" command
  
        bash#
  
 +Boot Linux and pass a flat device tree:
 +-----------
 +
 +First, U-Boot must be compiled with the appropriate defines. See the section
 +titled "Linux Kernel Interface" above for a more in depth explanation. The
 +following is an example of how to start a kernel and pass an updated
 +flat device tree:
 +
 +=> print oftaddr
 +oftaddr=0x300000
 +=> print oft
 +oft=oftrees/mpc8540ads.dtb
 +=> tftp $oftaddr $oft
 +Speed: 1000, full duplex
 +Using TSEC0 device
 +TFTP from server 192.168.1.1; our IP address is 192.168.1.101
 +Filename 'oftrees/mpc8540ads.dtb'.
 +Load address: 0x300000
 +Loading: #
 +done
 +Bytes transferred = 4106 (100a hex)
 +=> tftp $loadaddr $bootfile
 +Speed: 1000, full duplex
 +Using TSEC0 device
 +TFTP from server 192.168.1.1; our IP address is 192.168.1.2
 +Filename 'uImage'.
 +Load address: 0x200000
 +Loading:############
 +done
 +Bytes transferred = 1029407 (fb51f hex)
 +=> print loadaddr
 +loadaddr=200000
 +=> print oftaddr
 +oftaddr=0x300000
 +=> bootm $loadaddr - $oftaddr
 +## Booting image at 00200000 ...
 +   Image Name:   Linux-2.6.17-dirty
 +   Image Type:   PowerPC Linux Kernel Image (gzip compressed)
 +   Data Size:    1029343 Bytes = 1005.2 kB
 +   Load Address: 00000000
 +   Entry Point:  00000000
 +   Verifying Checksum ... OK
 +   Uncompressing Kernel Image ... OK
 +Booting using flat device tree at 0x300000
 +Using MPC85xx ADS machine description
 +Memory CAM mapping: CAM0=256Mb, CAM1=256Mb, CAM2=0Mb residual: 0Mb
 +[snip]
 +
 +
  More About U-Boot Image Types:
  ------------------------------
  
@@@ -3523,12 -3505,19 +3559,19 @@@ Coding Standards
  -----------------
  
  All contributions to U-Boot should conform to the Linux kernel
- coding style; see the file "Documentation/CodingStyle" in your Linux
- kernel source directory.
- Please note that U-Boot is implemented in C (and to some small parts
- in Assembler); no C++ is used, so please do not use C++ style
- comments (//) in your code.
+ coding style; see the file "Documentation/CodingStyle" and the script
+ "scripts/Lindent" in your Linux kernel source directory.  In sources
+ originating from U-Boot a style corresponding to "Lindent -pcs" (adding
+ spaces before parameters to function calls) is actually used.
+ Source files originating from a different project (for example the
+ MTD subsystem) are generally exempt from these guidelines and are not
+ reformated to ease subsequent migration to newer versions of those
+ sources.
+ Please note that U-Boot is implemented in C (and to some small parts in
+ Assembler); no C++ is used, so please do not use C++ style comments (//)
+ in your code.
  
  Please also stick to the following formatting rules:
  - remove any trailing white space
@@@ -1,6 -1,6 +1,6 @@@
  #
  # Copyright 2004 Freescale Semiconductor.
- # (C) Copyright 2001
+ # (C) Copyright 2001-2006
  # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  #
  # See file CREDITS for list of people who contributed to this
  #
  
  include $(TOPDIR)/config.mk
+ ifneq ($(OBJTREE),$(SRCTREE))
+ $(shell mkdir -p $(obj)../common)
+ endif
  
- LIB   = lib$(BOARD).a
+ LIB   = $(obj)lib$(BOARD).a
  
OBJS  := $(BOARD).o \
COBJS := $(BOARD).o \
           ../common/cadmus.o \
 -         ../common/eeprom.o
 +         ../common/eeprom.o \
 +         ../common/ft_board.o \
 +         ../common/via.o
  
  SOBJS := init.o
  
- $(LIB):       $(OBJS) $(SOBJS)
-       $(AR) crv $@ $(OBJS)
+ SRCS  := $(SOBJS:.o=.S) $(COBJS:.o=.c)
+ OBJS  := $(addprefix $(obj),$(COBJS))
+ SOBJS := $(addprefix $(obj),$(SOBJS))
+ $(LIB):       $(obj).depend $(OBJS) $(SOBJS)
+       $(AR) $(ARFLAGS) $@ $(OBJS)
  
  clean:
        rm -f $(OBJS) $(SOBJS)
@@@ -45,9 -50,9 +52,9 @@@ distclean:    clea
  
  #########################################################################
  
- .depend:      Makefile $(SOBJS:.o=.S) $(OBJS:.o=.c)
-               $(CC) -M $(CPPFLAGS) $(SOBJS:.o=.S) $(OBJS:.o=.c) > $@
+ # defines $(obj).depend target
+ include $(SRCTREE)/rules.mk
  
-include .depend
sinclude $(obj).depend
  
  #########################################################################
@@@ -1,6 -1,6 +1,6 @@@
  #
  # Copyright 2004 Freescale Semiconductor.
- # (C) Copyright 2001
+ # (C) Copyright 2001-2006
  # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  #
  # See file CREDITS for list of people who contributed to this
  #
  
  include $(TOPDIR)/config.mk
+ ifneq ($(OBJTREE),$(SRCTREE))
+ $(shell mkdir -p $(obj)../common)
+ endif
  
- LIB   = lib$(BOARD).a
+ LIB   = $(obj)lib$(BOARD).a
  
OBJS  := $(BOARD).o \
COBJS := $(BOARD).o \
           ../common/cadmus.o \
 -         ../common/eeprom.o
 +         ../common/eeprom.o \
 +         ../common/ft_board.o \
 +         ../common/via.o
  
  SOBJS := init.o
  
- $(LIB):       $(OBJS) $(SOBJS)
-       $(AR) crv $@ $(OBJS)
+ SRCS  := $(SOBJS:.o=.S) $(COBJS:.o=.c)
+ OBJS  := $(addprefix $(obj),$(COBJS))
+ SOBJS := $(addprefix $(obj),$(SOBJS))
+ $(LIB):       $(obj).depend $(OBJS) $(SOBJS)
+       $(AR) $(ARFLAGS) $@ $(OBJS)
  
  clean:
        rm -f $(OBJS) $(SOBJS)
@@@ -45,9 -50,9 +52,9 @@@ distclean:    clea
  
  #########################################################################
  
- .depend:      Makefile $(SOBJS:.o=.S) $(OBJS:.o=.c)
-               $(CC) -M $(CPPFLAGS) $(SOBJS:.o=.S) $(OBJS:.o=.c) > $@
+ # defines $(obj).depend target
+ include $(SRCTREE)/rules.mk
  
-include .depend
sinclude $(obj).depend
  
  #########################################################################
@@@ -1,6 -1,6 +1,6 @@@
  #
  # Copyright 2004 Freescale Semiconductor.
- # (C) Copyright 2001
+ # (C) Copyright 2001-2006
  # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  #
  # See file CREDITS for list of people who contributed to this
  #
  
  include $(TOPDIR)/config.mk
+ ifneq ($(OBJTREE),$(SRCTREE))
+ $(shell mkdir -p $(obj)../common)
+ endif
  
- LIB   = lib$(BOARD).a
+ LIB   = $(obj)lib$(BOARD).a
  
OBJS  := $(BOARD).o \
COBJS := $(BOARD).o \
           ../common/cadmus.o \
 -         ../common/eeprom.o
 +         ../common/eeprom.o \
 +         ../common/ft_board.o \
 +         ../common/via.o
  
  SOBJS := init.o
  
- $(LIB):       $(OBJS) $(SOBJS)
-       $(AR) crv $@ $(OBJS)
+ SRCS  := $(SOBJS:.o=.S) $(COBJS:.o=.c)
+ OBJS  := $(addprefix $(obj),$(COBJS))
+ SOBJS := $(addprefix $(obj),$(SOBJS))
+ $(LIB):       $(obj).depend $(OBJS) $(SOBJS)
+       $(AR) $(ARFLAGS) $@ $(OBJS)
  
  clean:
        rm -f $(OBJS) $(SOBJS)
@@@ -45,9 -50,9 +52,9 @@@ distclean:    clea
  
  #########################################################################
  
- .depend:      Makefile $(SOBJS:.o=.S) $(OBJS:.o=.c)
-               $(CC) -M $(CPPFLAGS) $(SOBJS:.o=.S) $(OBJS:.o=.c) > $@
+ # defines $(obj).depend target
+ include $(SRCTREE)/rules.mk
  
-include .depend
sinclude $(obj).depend
  
  #########################################################################
diff --combined board/stxxtc/Makefile
@@@ -1,5 -1,5 +1,5 @@@
  #
- # (C) Copyright 2000-2004
+ # (C) Copyright 2000-2006
  # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  #
  # See file CREDITS for list of people who contributed to this
  
  include $(TOPDIR)/config.mk
  
- LIB   = lib$(BOARD).a
+ LIB   = $(obj)lib$(BOARD).a
  
- OBJS  = $(BOARD).o
 -COBJS = $(BOARD).o oftree.o
++COBJS = $(BOARD).o
  
- $(LIB):       .depend $(OBJS)
-       $(AR) crv $@ $(OBJS)
+ SRCS  := $(SOBJS:.o=.S) $(COBJS:.o=.c)
+ OBJS  := $(addprefix $(obj),$(COBJS))
+ SOBJS := $(addprefix $(obj),$(SOBJS))
+ $(LIB):       $(obj).depend $(OBJS)
+       $(AR) $(ARFLAGS) $@ $(OBJS)
  
 -$(obj)%.dtb: $(src)%.dts
 -      dtc -f -V 0x10 -I dts -O dtb $< >$@
 -
 -$(obj)%.c: $(obj)%.dtb
 -      xxd -i $< \
 -         | sed -e "s/^unsigned char/const unsigned char/g" \
 -         | sed -e "s/^unsigned int/const unsigned int/g" > $@
 -
  #########################################################################
  
- .depend:      Makefile $(SOBJS:.o=.S) $(OBJS:.o=.c)
-               $(CC) -M $(CFLAGS) $(SOBJS:.o=.S) $(OBJS:.o=.c) > $@
+ # defines $(obj).depend target
+ include $(SRCTREE)/rules.mk
  
- sinclude .depend
+ sinclude $(obj).depend
  
  #########################################################################
diff --combined common/cmd_bootm.c
@@@ -260,6 -260,8 +260,8 @@@ int do_bootm (cmd_tbl_t *cmdtp, int fla
        if (hdr->ih_arch != IH_CPU_NIOS2)
  #elif defined(__blackfin__)
        if (hdr->ih_arch != IH_CPU_BLACKFIN)
+ #elif defined(__avr32__)
+       if (hdr->ih_arch != IH_CPU_AVR32)
  #else
  # error Unknown CPU type
  #endif
@@@ -465,13 -467,6 +467,13 @@@ U_BOOT_CMD
        "[addr [arg ...]]\n    - boot application image stored in memory\n"
        "\tpassing arguments 'arg ...'; when booting a Linux kernel,\n"
        "\t'arg' can be the address of an initrd image\n"
 +#ifdef CONFIG_OF_FLAT_TREE
 +      "\tWhen booting a Linux kernel which requires a flat device-tree\n"
 +      "\ta third argument is required which is the address of the of the\n"
 +      "\tdevice-tree blob. To boot that kernel without an initrd image,\n"
 +      "\tuse a '-' for the second argument. If you do not pass a third\n"
 +      "\ta bd_info struct will be passed instead\n"
 +#endif
  );
  
  #ifdef CONFIG_SILENT_CONSOLE
@@@ -507,6 -502,11 +509,6 @@@ fixup_silent_linux (
  }
  #endif /* CONFIG_SILENT_CONSOLE */
  
 -#ifdef CONFIG_OF_FLAT_TREE
 -extern const unsigned char oftree_dtb[];
 -extern const unsigned int oftree_dtb_len;
 -#endif
 -
  #ifdef CONFIG_PPC
  static void
  do_bootm_linux (cmd_tbl_t *cmdtp, int flag,
        void    (*kernel)(bd_t *, ulong, ulong, ulong, ulong);
        image_header_t *hdr = &header;
  #ifdef CONFIG_OF_FLAT_TREE
 -      char    *of_flat_tree;
 +      char    *of_flat_tree = NULL;
  #endif
  
        if ((s = getenv ("initrd_high")) != NULL) {
        /*
         * Check if there is an initrd image
         */
 +
 +#ifdef CONFIG_OF_FLAT_TREE
 +      /* Look for a '-' which indicates to ignore the ramdisk argument */
 +      if (argc >= 3 && strcmp(argv[2], "-") ==  0) {
 +                      debug ("Skipping initrd\n");
 +                      data = 0;
 +              }
 +      else
 +#endif
        if (argc >= 3) {
 +              debug ("Not skipping initrd\n");
                SHOW_BOOT_PROGRESS (9);
  
                addr = simple_strtoul(argv[2], NULL, 16);
                len = data = 0;
        }
  
 +#ifdef CONFIG_OF_FLAT_TREE
 +      if(argc > 3) {  
 +              of_flat_tree = (char *) simple_strtoul(argv[3], NULL, 16);
 +              hdr = (image_header_t *)of_flat_tree;
 +              
 +              if  (*(ulong *)of_flat_tree == OF_DT_HEADER) {
 +#ifndef CFG_NO_FLASH
 +                      if (addr2info((ulong)of_flat_tree) != NULL) {
 +                              printf ("Cannot modify flat device tree stored in flash\n" \
 +                                      "Copy to memory before using the bootm command\n");
 +                              return;
 +                      }
 +#endif
 +              } else if (ntohl(hdr->ih_magic) == IH_MAGIC) {
 +                      printf("## Flat Device Tree Image at %08lX\n", hdr);
 +                      print_image_hdr(hdr);
 +
 +                      if ((ntohl(hdr->ih_load) <  ((unsigned long)hdr + ntohl(hdr->ih_size) + sizeof(hdr))) &&
 +                         ((ntohl(hdr->ih_load) + ntohl(hdr->ih_size)) > (unsigned long)hdr)) {
 +                              printf ("ERROR: Load address overwrites Flat Device Tree uImage\n");
 +                              return;
 +                      }
 +                      
 +                      printf("   Verifying Checksum ... ");
 +                      memmove (&header, (char *)hdr, sizeof(image_header_t));
 +                      checksum = ntohl(header.ih_hcrc);
 +                      header.ih_hcrc = 0;
 +
 +                      if(checksum != crc32(0, (uchar *)&header, sizeof(image_header_t))) {
 +                              printf("ERROR: Flat Device Tree header checksum is invalid\n");
 +                              return;
 +                      }
 +
 +                      checksum = ntohl(hdr->ih_dcrc);
 +                      addr = (ulong)((uchar *)(hdr) + sizeof(image_header_t));
 +                      len = ntohl(hdr->ih_size);
 +
 +                      if(checksum != crc32(0, (uchar *)addr, len)) {
 +                              printf("ERROR: Flat Device Tree checksum is invalid\n");
 +                              return;
 +                      }
 +                      printf("OK\n");
 +
 +                      if (ntohl(hdr->ih_type) != IH_TYPE_FLATDT) {
 +                              printf ("ERROR: uImage not Flat Device Tree type\n");
 +                              return;
 +                      }
 +                      if (ntohl(hdr->ih_comp) != IH_COMP_NONE) {
 +                              printf("ERROR: uImage is not uncompressed\n");
 +                              return;
 +                      }
 +                      if (*((ulong *)(of_flat_tree + sizeof(image_header_t))) != OF_DT_HEADER) {
 +                              printf ("ERROR: uImage data is not a flat device tree\n");
 +                              return;
 +                      }
 +                                      
 +                      memmove((void *)ntohl(hdr->ih_load), 
 +                              (void *)(of_flat_tree + sizeof(image_header_t)),
 +                              ntohl(hdr->ih_size));
 +                      of_flat_tree = (char *)ntohl(hdr->ih_load);
 +              } else {
 +                      printf ("Did not find a flat flat device tree at address %08lX\n", of_flat_tree);
 +                      return;
 +              }
 +              printf ("   Booting using flat device tree at 0x%x\n",
 +                              of_flat_tree);
 +      } else if(getenv("disable_of") == NULL) {
 +              printf ("ERROR: bootm needs flat device tree as third argument\n");
 +              return;
 +      }
 +#endif
        if (!data) {
                debug ("No initrd\n");
        }
                initrd_end = 0;
        }
  
 -#ifdef CONFIG_OF_FLAT_TREE
 -      if (initrd_start == 0)
 -              of_flat_tree = (char *)(((ulong)kbd - OF_FLAT_TREE_MAX_SIZE -
 -                                      sizeof(bd_t)) & ~0xF);
 -      else
 -              of_flat_tree = (char *)((initrd_start - OF_FLAT_TREE_MAX_SIZE -
 -                                      sizeof(bd_t)) & ~0xF);
 -#endif
 -
        debug ("## Transferring control to Linux (at address %08lx) ...\n",
                (ulong)kernel);
  
        (*kernel) (kbd, initrd_start, initrd_end, cmd_start, cmd_end);
  
  #else
 -      ft_setup(of_flat_tree, OF_FLAT_TREE_MAX_SIZE, kbd, initrd_start, initrd_end);
 +      ft_setup(of_flat_tree, kbd, initrd_start, initrd_end);
        /* ft_dump_blob(of_flat_tree); */
  
  #if defined(CFG_INIT_RAM_LOCK) && !defined(CONFIG_E500)
@@@ -1310,6 -1238,7 +1312,7 @@@ print_type (image_header_t *hdr
        case IH_CPU_INVALID:    arch = "Invalid CPU";           break;
        case IH_CPU_ALPHA:      arch = "Alpha";                 break;
        case IH_CPU_ARM:        arch = "ARM";                   break;
+       case IH_CPU_AVR32:      arch = "AVR32";                 break;
        case IH_CPU_I386:       arch = "Intel x86";             break;
        case IH_CPU_IA64:       arch = "IA64";                  break;
        case IH_CPU_MIPS:       arch = "MIPS";                  break;
        case IH_TYPE_MULTI:     type = "Multi-File Image";      break;
        case IH_TYPE_FIRMWARE:  type = "Firmware";              break;
        case IH_TYPE_SCRIPT:    type = "Script";                break;
 +      case IH_TYPE_FLATDT:    type = "Flat Device Tree";      break;
        default:                type = "Unknown Image";         break;
        }
  
diff --combined common/ft_build.c
@@@ -1,22 -1,5 +1,22 @@@
  /*
   * OF flat tree builder
 + * Written by: Pantelis Antoniou <pantelis.antoniou@gmail.com>
 + * Updated by: Matthew McClintock <msm@freescale.com>
 + *
 + * This program is free software; you can redistribute it and/or
 + * modify it under the terms of the GNU General Public License as
 + * published by the Free Software Foundation; either version 2 of
 + * the License, or (at your option) any later version.
 + *
 + * This program is distributed in the hope that it will be useful,
 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 + * GNU General Public License for more details.
 + *
 + * You should have received a copy of the GNU General Public License
 + * along with this program; if not, write to the Free Software
 + * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
 + * MA 02111-1307 USA
   */
  
  #include <common.h>
  
  #include <ft_build.h>
  
 +#undef DEBUG
 +
  /* align addr on a size boundary - adjust address up if needed -- Cort */
  #define _ALIGN(addr,size)       (((addr)+(size)-1)&(~((size)-1)))
 +#ifndef CONFIG_OF_BOOT_CPU
 +#define CONFIG_OF_BOOT_CPU 0
 +#endif
 +#define SIZE_OF_RSVMAP_ENTRY (2*sizeof(u64))
  
  static void ft_put_word(struct ft_cxt *cxt, u32 v)
  {
 -      if (cxt->overflow)      /* do nothing */
 -              return;
 -
 -      /* check for overflow */
 -      if (cxt->p + 4 > cxt->pstr) {
 -              cxt->overflow = 1;
 -              return;
 -      }
 +      memmove(cxt->p + sizeof(u32), cxt->p, cxt->p_end - cxt->p);
  
        *(u32 *) cxt->p = cpu_to_be32(v);
 -      cxt->p += 4;
 +      cxt->p += sizeof(u32);
 +      cxt->p_end += sizeof(u32);
  }
  
  static inline void ft_put_bin(struct ft_cxt *cxt, const void *data, int sz)
  {
 -      u8 *p;
 +      int aligned_size = ((u8 *)_ALIGN((unsigned long)cxt->p + sz,
 +                                      sizeof(u32))) - cxt->p;
  
 -      if (cxt->overflow)      /* do nothing */
 -              return;
 -
 -      /* next pointer pos */
 -      p = (u8 *) _ALIGN((unsigned long)cxt->p + sz, 4);
 +      memmove(cxt->p + aligned_size, cxt->p, cxt->p_end - cxt->p);
  
 -      /* check for overflow */
 -      if (p > cxt->pstr) {
 -              cxt->overflow = 1;
 -              return;
 -      }
 +      /* make sure the last bytes are zeroed */
 +      memset(cxt->p + aligned_size - (aligned_size % sizeof(u32)), 0,
 +                      (aligned_size % sizeof(u32)));
  
        memcpy(cxt->p, data, sz);
 -      if ((sz & 3) != 0)
 -              memset(cxt->p + sz, 0, 4 - (sz & 3));
 -      cxt->p = p;
 +
 +      cxt->p += aligned_size;
 +      cxt->p_end += aligned_size;
  }
  
  void ft_begin_node(struct ft_cxt *cxt, const char *name)
@@@ -85,10 -73,10 +85,10 @@@ static int lookup_string(struct ft_cxt 
  {
        u8 *p;
  
 -      p = cxt->pstr;
 -      while (p < cxt->pstr_begin) {
 +      p = cxt->p;
 +      while (p < cxt->p_end) {
                if (strcmp(p, name) == 0)
 -                      return p - cxt->p_begin;
 +                      return p - cxt->p;
                p += strlen(p) + 1;
        }
  
  
  void ft_prop(struct ft_cxt *cxt, const char *name, const void *data, int sz)
  {
 -      int len, off;
 -
 -      if (cxt->overflow)
 -              return;
 -
 -      len = strlen(name) + 1;
 +      int off = 0;
  
        off = lookup_string(cxt, name);
        if (off == -1) {
 -              /* check if we have space */
 -              if (cxt->p + 12 + sz + len > cxt->pstr) {
 -                      cxt->overflow = 1;
 -                      return;
 -              }
 -
 -              cxt->pstr -= len;
 -              memcpy(cxt->pstr, name, len);
 -              off = cxt->pstr - cxt->p_begin;
 +              memcpy(cxt->p_end, name, strlen(name) + 1);
 +              off = cxt->p_end - cxt->p;
 +              cxt->p_end += strlen(name) + 2;
        }
  
        /* now put offset from beginning of *STRUCTURE* */
@@@ -123,63 -122,138 +123,63 @@@ void ft_prop_int(struct ft_cxt *cxt, co
  {
        u32 v = cpu_to_be32((u32) val);
  
 -      ft_prop(cxt, name, &v, 4);
 +      ft_prop(cxt, name, &v, sizeof(u32));
  }
  
 -/* start construction of the flat OF tree */
 -void ft_begin(struct ft_cxt *cxt, void *blob, int max_size)
 +/* pick up and start working on a tree in place */
 +void ft_init_cxt(struct ft_cxt *cxt, void *blob)
  {
        struct boot_param_header *bph = blob;
 -      u32 off;
  
 -      /* clear the cxt */
        memset(cxt, 0, sizeof(*cxt));
  
        cxt->bph = bph;
 -      cxt->max_size = max_size;
 -
 -      /* zero everything in the header area */
 -      memset(bph, 0, sizeof(*bph));
 -
 -      bph->magic = cpu_to_be32(OF_DT_HEADER);
 -      bph->version = cpu_to_be32(0x10);
 -      bph->last_comp_version = cpu_to_be32(0x10);
 +      bph->boot_cpuid_phys = CONFIG_OF_BOOT_CPU;
  
 -      /* start pointers */
 -      cxt->pres_begin = (u8 *) _ALIGN((unsigned long)(bph + 1), 8);
 -      cxt->pres = cxt->pres_begin;
 -
 -      off = (unsigned long)cxt->pres_begin - (unsigned long)bph;
 -      bph->off_mem_rsvmap = cpu_to_be32(off);
 -
 -      ((u64 *) cxt->pres)[0] = 0;     /* phys = 0, size = 0, terminate */
 -      ((u64 *) cxt->pres)[1] = 0;
 +      /* find beginning and end of reserve map table (zeros in last entry) */
 +      cxt->p_rsvmap = (u8 *)bph + bph->off_mem_rsvmap;
 +      while ( ((uint64_t *)cxt->p_rsvmap)[0] != 0 &&
 +                   ((uint64_t *)cxt->p_rsvmap)[1] != 0 ) {
 +      cxt->p_rsvmap += SIZE_OF_RSVMAP_ENTRY;
 +      }
  
 -      cxt->p_anchor = cxt->pres + 16; /* over the terminator */
 +      cxt->p_start = (char*)bph + bph->off_dt_struct;
 +      cxt->p_end = (char *)bph + bph->totalsize;
 +      cxt->p = (char *)bph + bph->off_dt_strings;
  }
  
  /* add a reserver physical area to the rsvmap */
 -void ft_add_rsvmap(struct ft_cxt *cxt, u64 physaddr, u64 size)
 +void ft_add_rsvmap(struct ft_cxt *cxt, u64 physstart, u64 physend)
  {
 -      ((u64 *) cxt->pres)[0] = cpu_to_be64(physaddr); /* phys = 0, size = 0, terminate */
 -      ((u64 *) cxt->pres)[1] = cpu_to_be64(size);
 -
 -      cxt->pres += 16;        /* advance */
 -
 -      ((u64 *) cxt->pres)[0] = 0;     /* phys = 0, size = 0, terminate */
 -      ((u64 *) cxt->pres)[1] = 0;
 -
 -      /* keep track of size */
 -      cxt->res_size = cxt->pres + 16 - cxt->pres_begin;
 -
 -      cxt->p_anchor = cxt->pres + 16; /* over the terminator */
 +      memmove(cxt->p_rsvmap + SIZE_OF_RSVMAP_ENTRY, cxt->p_rsvmap,
 +                               cxt->p_end - cxt->p_rsvmap);
 +
 +      ((u64 *)cxt->p_rsvmap)[0] = cpu_to_be64(physstart);
 +      ((u64 *)cxt->p_rsvmap)[1] = cpu_to_be64(physend);
 +      ((u64 *)cxt->p_rsvmap)[2] = 0;
 +      ((u64 *)cxt->p_rsvmap)[3] = 0;
 +
 +      cxt->p_rsvmap += SIZE_OF_RSVMAP_ENTRY;
 +      cxt->p_start += SIZE_OF_RSVMAP_ENTRY;
 +      cxt->p += SIZE_OF_RSVMAP_ENTRY;
 +      cxt->p_end += SIZE_OF_RSVMAP_ENTRY;
  }
  
 -void ft_begin_tree(struct ft_cxt *cxt)
 +void ft_end_tree(struct ft_cxt *cxt)
  {
 -      cxt->p_begin = cxt->p_anchor;
 -      cxt->pstr_begin = (char *)cxt->bph + cxt->max_size;     /* point at the end */
 -
 -      cxt->p = cxt->p_begin;
 -      cxt->pstr = cxt->pstr_begin;
 +      ft_put_word(cxt, OF_DT_END);
  }
  
 -int ft_end_tree(struct ft_cxt *cxt)
 -{
 +/* update the boot param header with correct values */
 +void ft_finalize_tree(struct ft_cxt *cxt) {
        struct boot_param_header *bph = cxt->bph;
 -      int off, sz, sz1;
 -      u32 tag, v;
 -      u8 *p;
 -
 -      ft_put_word(cxt, OF_DT_END);
 -
 -      if (cxt->overflow)
 -              return -ENOMEM;
 -
 -      /* size of the areas */
 -      cxt->struct_size = cxt->p - cxt->p_begin;
 -      cxt->strings_size = cxt->pstr_begin - cxt->pstr;
 -
 -      /* the offset we must move */
 -      off = (cxt->pstr_begin - cxt->p_begin) - cxt->strings_size;
 -
 -      /* the new strings start */
 -      cxt->pstr_begin = cxt->p_begin + cxt->struct_size;
 -
 -      /* move the whole string area */
 -      memmove(cxt->pstr_begin, cxt->pstr, cxt->strings_size);
  
 -      /* now perform the fixup of the strings */
 -      p = cxt->p_begin;
 -      while ((tag = be32_to_cpu(*(u32 *) p)) != OF_DT_END) {
 -              p += 4;
 -
 -              if (tag == OF_DT_BEGIN_NODE) {
 -                      p = (u8 *) _ALIGN((unsigned long)p + strlen(p) + 1, 4);
 -                      continue;
 -              }
 -
 -              if (tag == OF_DT_END_NODE || tag == OF_DT_NOP)
 -                      continue;
 -
 -              if (tag != OF_DT_PROP)
 -                      return -EINVAL;
 -
 -              sz = be32_to_cpu(*(u32 *) p);
 -              p += 4;
 -
 -              v = be32_to_cpu(*(u32 *) p);
 -              v -= off;
 -              *(u32 *) p = cpu_to_be32(v);    /* move down */
 -              p += 4;
 -
 -              p = (u8 *) _ALIGN((unsigned long)p + sz, 4);
 -      }
 -
 -      /* fix sizes */
 -      p = (char *)cxt->bph;
 -      sz = (cxt->pstr_begin + cxt->strings_size) - p;
 -      sz1 = _ALIGN(sz, 16);   /* align at 16 bytes */
 -      if (sz != sz1)
 -              memset(p + sz, 0, sz1 - sz);
 -      bph->totalsize = cpu_to_be32(sz1);
 -      bph->off_dt_struct = cpu_to_be32(cxt->p_begin - p);
 -      bph->off_dt_strings = cpu_to_be32(cxt->pstr_begin - p);
 -
 -      /* the new strings start */
 -      cxt->pstr_begin = cxt->p_begin + cxt->struct_size;
 -      cxt->pstr = cxt->pstr_begin + cxt->strings_size;
 -
 -      return 0;
 +      bph->totalsize = cxt->p_end - (u8 *)bph;
 +      bph->off_dt_struct = cxt->p_start - (u8 *)bph;
 +      bph->off_dt_strings = cxt->p - (u8 *)bph;
 +      bph->dt_strings_size = cxt->p_end - cxt->p;
  }
  
 -/**********************************************************************/
 -
  static inline int isprint(int c)
  {
        return c >= 0x20 && c <= 0x7e;
@@@ -219,22 -293,24 +219,24 @@@ static void print_data(const void *data
                return;
  
        if (is_printable_string(data, len)) {
-               printf(" = \"%s\"", (char *)data);
+               puts(" = \"");
+               puts(data);
+               puts("\"");
                return;
        }
  
        switch (len) {
        case 1:         /* byte */
 -              printf(" = <0x%02x>", (*(u8 *) data) & 0xff);
 +              printf(" = <%02x>", (*(u8 *) data) & 0xff);
                break;
        case 2:         /* half-word */
 -              printf(" = <0x%04x>", be16_to_cpu(*(u16 *) data) & 0xffff);
 +              printf(" = <%04x>", be16_to_cpu(*(u16 *) data) & 0xffff);
                break;
        case 4:         /* word */
 -              printf(" = <0x%08x>", be32_to_cpu(*(u32 *) data) & 0xffffffffU);
 +              printf(" = <%x>", be32_to_cpu(*(u32 *) data) & 0xffffffffU);
                break;
        case 8:         /* double-word */
 -              printf(" = <0x%16llx>", be64_to_cpu(*(uint64_t *) data));
 +              printf(" = <%qx>", be64_to_cpu(*(uint64_t *) data));
                break;
        default:                /* anything else... hexdump */
                printf(" = [");
@@@ -276,7 -352,7 +278,7 @@@ void ft_dump_blob(const void *bphp
                if (addr == 0 && size == 0)
                        break;
  
 -              printf("/memreserve/ 0x%llx 0x%llx;\n", addr, size);
 +              printf("/memreserve/ %qx %qx;\n", addr, size);
        }
  
        p = p_struct;
                }
  
                if (tag != OF_DT_PROP) {
 -                      fprintf(stderr, "%*s ** Unknown tag 0x%08x\n",
 -                              depth * shift, "", tag);
 +                      fprintf(stderr, "%*s ** Unknown tag 0x%08x at 0x%x\n",
 +                              depth * shift, "", tag, --p);
                        break;
                }
                sz = be32_to_cpu(*p++);
  
  void ft_backtrack_node(struct ft_cxt *cxt)
  {
 -      if (be32_to_cpu(*(u32 *) (cxt->p - 4)) != OF_DT_END_NODE)
 -              return;         /* XXX only for node */
 -
 -      cxt->p -= 4;
 -}
 -
 -/* note that the root node of the blob is "peeled" off */
 -void ft_merge_blob(struct ft_cxt *cxt, void *blob)
 -{
 -      struct boot_param_header *bph = (struct boot_param_header *)blob;
 -      u32 *p_struct = (u32 *) ((char *)bph + be32_to_cpu(bph->off_dt_struct));
 -      u32 *p_strings =
 -          (u32 *) ((char *)bph + be32_to_cpu(bph->off_dt_strings));
 -      u32 tag, *p;
 -      char *s, *t;
 -      int depth, sz;
 -
 -      if (be32_to_cpu(*(u32 *) (cxt->p - 4)) != OF_DT_END_NODE)
 -              return;         /* XXX only for node */
 -
 -      cxt->p -= 4;
 -
 -      depth = 0;
 -      p = p_struct;
 -      while ((tag = be32_to_cpu(*p++)) != OF_DT_END) {
 -
 -              /* printf("tag: 0x%08x (%d) - %d\n", tag, p - p_struct, depth); */
 -
 -              if (tag == OF_DT_BEGIN_NODE) {
 -                      s = (char *)p;
 -                      p = (u32 *) _ALIGN((unsigned long)p + strlen(s) + 1, 4);
 -
 -                      if (depth++ > 0)
 -                              ft_begin_node(cxt, s);
 -
 -                      continue;
 -              }
 -
 -              if (tag == OF_DT_END_NODE) {
 -                      ft_end_node(cxt);
 -                      if (--depth == 0)
 -                              break;
 -                      continue;
 -              }
 -
 -              if (tag == OF_DT_NOP)
 -                      continue;
 +      int i = 4;
  
 -              if (tag != OF_DT_PROP)
 -                      break;
 +      while (be32_to_cpu(*(u32 *) (cxt->p - i)) != OF_DT_END_NODE)
 +              i += 4;
  
 -              sz = be32_to_cpu(*p++);
 -              s = (char *)p_strings + be32_to_cpu(*p++);
 -              t = (char *)p;
 -              p = (u32 *) _ALIGN((unsigned long)p + sz, 4);
 +      memmove (cxt->p - i, cxt->p, cxt->p_end - cxt->p);
  
 -              ft_prop(cxt, s, t, sz);
 -      }
 +      cxt->p_end -= i;
 +      cxt->p -= i;
  }
  
  void *ft_get_prop(void *bphp, const char *propname, int *szp)
  
  /********************************************************************/
  
 -extern unsigned char oftree_dtb[];
 -extern unsigned int oftree_dtb_len;
 -
  /* Function that returns a character from the environment */
  extern uchar(*env_get_char) (int);
  
@@@ -451,7 -579,7 +453,7 @@@ static const struct 
  };
  #endif
  
 -void ft_setup(void *blob, int size, bd_t * bd, ulong initrd_start, ulong initrd_end)
 +void ft_setup(void *blob, bd_t * bd, ulong initrd_start, ulong initrd_end)
  {
        u32 *p;
        int len;
                return;
        }
  
 -      ft_begin(&cxt, blob, size);
 +#ifdef DEBUG
 +      printf ("recieved oftree\n");
 +      ft_dump_blob(blob);
 +#endif
 +
 +      ft_init_cxt(&cxt, blob);
  
        if (initrd_start && initrd_end)
                ft_add_rsvmap(&cxt, initrd_start, initrd_end - initrd_start + 1);
  
 -      ft_begin_tree(&cxt);
 -
 -      ft_begin_node(&cxt, "");
 -
 -      ft_end_node(&cxt);
 -
 -      /* copy RO tree */
 -      ft_merge_blob(&cxt, oftree_dtb);
 -
        /* back into root */
        ft_backtrack_node(&cxt);
  
  #endif
  
        ft_begin_node(&cxt, "chosen");
 -
        ft_prop_str(&cxt, "name", "chosen");
 +
        ft_prop_str(&cxt, "bootargs", getenv("bootargs"));
        ft_prop_int(&cxt, "linux,platform", 0x600);     /* what is this? */
        if (initrd_start && initrd_end) {
        ft_end_node(&cxt);      /* end root */
  
        ft_end_tree(&cxt);
 -
 -      /*
 -         printf("merged OF-tree\n");
 -         ft_dump_blob(blob);
 -       */
 +      ft_finalize_tree(&cxt);
  
  #ifdef CONFIG_OF_HAS_BD_T
        /* paste the bd_t at the end of the flat tree */
        ft_board_setup(blob, bd);
  #endif
  
 -      /*
 -         printf("final OF-tree\n");
 -         ft_dump_blob(blob);
 -       */
 +      /* in case the size changed in the platform code */
 +      ft_finalize_tree(&cxt);
  
 +#ifdef DEBUG
 +      printf("final OF-tree\n");
 +      ft_dump_blob(blob);
 +#endif
  }
 -
  #endif
diff --combined include/image.h
@@@ -76,6 -76,7 +76,7 @@@
  #define IH_CPU_MICROBLAZE     14      /* MicroBlaze   */
  #define IH_CPU_NIOS2          15      /* Nios-II      */
  #define IH_CPU_BLACKFIN               16      /* Blackfin     */
+ #define IH_CPU_AVR32          17      /* AVR32        */
  
  /*
   * Image Types
  #define IH_TYPE_FIRMWARE      5       /* Firmware Image               */
  #define IH_TYPE_SCRIPT                6       /* Script file                  */
  #define IH_TYPE_FILESYSTEM    7       /* Filesystem Image (any type)  */
 +#define IH_TYPE_FLATDT                8       /* Binary Flat Device Tree Blob */
  
  /*
   * Compression Types
diff --combined tools/mkimage.c
@@@ -94,6 -94,7 +94,7 @@@ table_entry_t arch_name[] = 
      { IH_CPU_SPARC,           "sparc",        "SPARC",        },
      { IH_CPU_SPARC64,         "sparc64",      "SPARC 64 Bit", },
      { IH_CPU_BLACKFIN,        "blackfin",     "Blackfin",     },
+     { IH_CPU_AVR32,           "avr32",        "AVR32",        },
      { -1,                     "",             "",             },
  };
  
@@@ -130,7 -131,6 +131,7 @@@ table_entry_t type_name[] = 
      { IH_TYPE_RAMDISK,    "ramdisk",    "RAMDisk Image",      },
      { IH_TYPE_SCRIPT,     "script",     "Script",             },
      { IH_TYPE_STANDALONE, "standalone", "Standalone Program", },
 +    { IH_TYPE_FLATDT,     "flat_dt",    "Flat Device Tree",   },
      { -1,                 "",           "",                   },
  };
  
@@@ -633,7 -633,7 +634,7 @@@ print_header (image_header_t *hdr
        if (hdr->ih_type == IH_TYPE_MULTI || hdr->ih_type == IH_TYPE_SCRIPT) {
                int i, ptrs;
                uint32_t pos;
-               unsigned long *len_ptr = (unsigned long *) (
+               uint32_t *len_ptr = (uint32_t *) (
                                        (unsigned long)hdr + sizeof(image_header_t)
                                );