1. 22 7月, 2015 2 次提交
  2. 20 7月, 2015 2 次提交
  3. 24 4月, 2015 1 次提交
    • H
      fdt: Fix handling of paths with options in them · 77d7fff8
      Hans de Goede 提交于
      After syncing the sunxi dts files with the upstream kernel dm/fdt sunxi
      builds would no longer boot.
      
      The problem is that stdout-path is now set like this in the upstream dts
      files: stdout-path = "serial0:115200n8". The use of options in of-paths,
      either after an alias name, or after a full path, e.g. stdout-path =
      "/soc@01c00000/serial@01c28000:115200", is standard of usage, but something
      which the u-boot dts code so far did not handle.
      
      This commit fixes this, adding support for both path formats.
      Signed-off-by: NHans de Goede <hdegoede@redhat.com>
      Acked-by: NSimon Glass <sjg@chromium.org>
      77d7fff8
  4. 08 12月, 2014 1 次提交
  5. 23 10月, 2014 3 次提交
  6. 09 8月, 2014 1 次提交
    • S
      fdt: Sync up with libfdt · 0596d35d
      Simon Glass 提交于
      This brings in changes up to commit f9e91a48 in the libfdt repo.
      Mostly this is whitespace/minor changes. But there are a few new
      features:
      
      - fdt_size_cells() and fdt_address_cells()
      - fdt_resize()
      Signed-off-by: NSimon Glass <sjg@chromium.org>
      0596d35d
  7. 19 6月, 2014 1 次提交
  8. 01 11月, 2013 1 次提交
  9. 15 10月, 2013 1 次提交
  10. 10 8月, 2013 1 次提交
  11. 24 7月, 2013 1 次提交
  12. 26 6月, 2013 1 次提交
  13. 15 5月, 2013 1 次提交
    • S
      libfdt: Add fdt_next_subnode() to permit easy subnode iteration · 88f95bba
      Simon Glass 提交于
      Iterating through subnodes with libfdt is a little painful to write as we
      need something like this:
      
      for (depth = 0, count = 0,
      	offset = fdt_next_node(fdt, parent_offset, &depth);
           (offset >= 0) && (depth > 0);
           offset = fdt_next_node(fdt, offset, &depth)) {
      	if (depth == 1) {
      		/* code body */
      	}
      }
      
      Using fdt_next_subnode() we can instead write this, which is shorter and
      easier to get right:
      
      for (offset = fdt_first_subnode(fdt, parent_offset);
           offset >= 0;
           offset = fdt_next_subnode(fdt, offset)) {
      	/* code body */
      }
      
      Also, it doesn't require two levels of indentation for the loop body.
      Signed-off-by: NSimon Glass <sjg@chromium.org>
      (Cherry-picked from dtc commit 4e76ec79)
      Acked-by: NGerald Van Baren <vanbaren@cideas.com>
      88f95bba
  14. 11 5月, 2013 1 次提交
  15. 08 2月, 2013 1 次提交
  16. 16 10月, 2012 2 次提交
  17. 15 7月, 2011 2 次提交
    • D
      libfdt: Implement property iteration functions · d1c63148
      David Gibson 提交于
      For ages, we've been talking about adding functions to libfdt to allow
      iteration through properties.  So, finally, here are some.
      
      I got bogged down on this for a long time because I didn't want to
      expose offsets directly to properties to the callers.  But without
      that, attempting to make reasonable iteration functions just became
      horrible.  So eventually, I settled on an interface which does now
      expose property offsets.  fdt_first_property_offset() and
      fdt_next_property_offset() are used to step through the offsets of the
      properties starting from a particularly node offset.  The details of
      the property at each offset can then be retrieved with either
      fdt_get_property_by_offset() or fdt_getprop_by_offset() which have
      interfaces similar to fdt_get_property() and fdt_getprop()
      respectively.
      
      No explicit testcases are included, but we do use the new functions to
      reimplement the existing fdt_get_property() function.
      Signed-off-by: NDavid Gibson <david@gibson.dropbear.id.au>
      
      This was extracted from the DTC commit:
      73dca9ae0b9abe6924ba640164ecce9f8df69c5a Mon Sep 17 00:00:00 2001
      Signed-off-by: NGerald Van Baren <vanbaren@cideas.com>
      d1c63148
    • D
      Support ePAPR compliant phandle properties · 05a22ba0
      David Gibson 提交于
      Currently, the Linux kernel, libfdt and dtc, when using flattened
      device trees encode a node's phandle into a property named
      "linux,phandle".  The ePAPR specification, however - aiming as it is
      to not be a Linux specific spec - requires that phandles be encoded in
      a property named simply "phandle".
      
      This patch adds support for this newer approach to dtc and libfdt.
      Specifically:
      
      	- fdt_get_phandle() will now return the correct phandle if it
                is supplied in either of these properties
      
      	- fdt_node_offset_by_phandle() will correctly find a node with
                the given phandle encoded in either property.
      
      	- By default, when auto-generating phandles, dtc will encode
                it into both properties for maximum compatibility.  A new -H
                option allows either only old-style or only new-style
                properties to be generated.
      
      	- If phandle properties are explicitly supplied in the dts
      	  file, dtc will not auto-generate ones in the alternate format.
      
      	- If both properties are supplied, dtc will check that they
                have the same value.
      
      	- Some existing testcases are updated to use a mix of old and
                new-style phandles, partially testing the changes.
      
      	- A new phandle_format test further tests the libfdt support,
                and the -H option.
      Signed-off-by: NDavid Gibson <david@gibson.dropbear.id.au>
      
      This was extracted from the DTC commit:
      d75b33af676d0beac8398651a7f09037555a550b Mon Sep 17 00:00:00 2001
      Signed-off-by: NGerald Van Baren <vanbaren@cideas.com>
      05a22ba0
  18. 18 11月, 2010 1 次提交
    • S
      Switch from archive libraries to partial linking · 6d8962e8
      Sebastien Carlier 提交于
      Before this commit, weak symbols were not overridden by non-weak symbols
      found in archive libraries when linking with recent versions of
      binutils.  As stated in the System V ABI, "the link editor does not
      extract archive members to resolve undefined weak symbols".
      
      This commit changes all Makefiles to use partial linking (ld -r) instead
      of creating library archives, which forces all symbols to participate in
      linking, allowing non-weak symbols to override weak symbols as intended.
      This approach is also used by Linux, from which the gmake function
      cmd_link_o_target (defined in config.mk and used in all Makefiles) is
      inspired.
      
      The name of each former library archive is preserved except for
      extensions which change from ".a" to ".o".  This commit updates
      references accordingly where needed, in particular in some linker
      scripts.
      
      This commit reveals board configurations that exclude some features but
      include source files that depend these disabled features in the build,
      resulting in undefined symbols.  Known such cases include:
      - disabling CMD_NET but not CMD_NFS;
      - enabling CONFIG_OF_LIBFDT but not CONFIG_QE.
      Signed-off-by: NSebastien Carlier <sebastien.carlier@gmail.com>
      6d8962e8
  19. 13 4月, 2010 1 次提交