1. 27 7月, 2009 1 次提交
  2. 27 3月, 2009 1 次提交
  3. 21 12月, 2008 1 次提交
  4. 04 8月, 2008 1 次提交
  5. 30 6月, 2008 1 次提交
  6. 11 12月, 2007 1 次提交
  7. 22 8月, 2007 1 次提交
  8. 17 8月, 2007 1 次提交
  9. 22 7月, 2007 1 次提交
  10. 20 7月, 2007 5 次提交
  11. 10 7月, 2007 2 次提交
  12. 25 6月, 2007 1 次提交
  13. 02 5月, 2007 2 次提交
  14. 24 4月, 2007 6 次提交
  15. 13 4月, 2007 5 次提交
  16. 16 3月, 2007 1 次提交
    • D
      [POWERPC] Update documentation for flat device tree format v17 · 0e0293c8
      David Gibson 提交于
      This patch updates booting-without-of.txt to describe version 17 of
      the flattened device tree format.  Version 17 is a small, backwards
      compatible change from version 16, adding an extra field giving the
      size of the device tree's structure block.  At this time, the kernel
      has no use for the extra information, however its presence can make
      life easier for bootloaders or other software manipulating the tree.
      
      In addition this patch adds information on the size_dt_strings field
      of the device tree header, present since version 3 of the flattened
      tree format, but omitted from the documentation.  It also makes
      changes to consistently refer to versions 16 and 17 as versions 16 and
      17 in decimal, rather than version 0x10 which was occasionally used
      for version 16 previously.
      
      Finally, we also add the new field to the definition of the device
      tree header structure in prom.h
      Signed-off-by: NDavid Gibson <david@gibson.dropbear.id.au>
      Acked-by: NJon Loeliger <jdl@freescale.com>
      Signed-off-by: NPaul Mackerras <paulus@samba.org>
      0e0293c8
  17. 08 3月, 2007 1 次提交
    • A
      [POWERPC] Fix compile error in prom.h · 99ddef9b
      Andrew Morton 提交于
      In file included from include/asm/pci.h:20,
                       from include/linux/pci.h:751,
                       from arch/powerpc/sysdev/dart_iommu.c:36:
      include/asm/prom.h: In function `of_irq_to_resource':
      include/asm/prom.h:341: warning: implicit declaration of function `irq_of_parse_and_map'
      include/asm/prom.h:345: error: `NO_IRQ' undeclared (first use in this function)
      include/asm/prom.h:345: error: (Each undeclared identifier is reported only once
      include/asm/prom.h:345: error: for each function it appears in.)
      
      Seems that prom.h has always wanted irq.h.
      
      Cc: Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
      Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NPaul Mackerras <paulus@samba.org>
      99ddef9b
  18. 17 2月, 2007 1 次提交
  19. 13 11月, 2006 2 次提交
  20. 25 10月, 2006 1 次提交
  21. 20 9月, 2006 1 次提交
    • P
      [POWERPC] Define of_read_ulong helper · a4dc7ff0
      Paul Mackerras 提交于
      There are various places where we want to extract an unsigned long
      value from a device-tree property that can be 1 or 2 cells in length.
      This replaces some open-coded calculations, and one place where we
      assumed without checking that properties were the length we wanted,
      with a little of_read_ulong() helper.
      Signed-off-by: NPaul Mackerras <paulus@samba.org>
      a4dc7ff0
  22. 30 8月, 2006 1 次提交
  23. 08 8月, 2006 1 次提交
  24. 31 7月, 2006 1 次提交
    • J
      [POWERPC] Make get_property() return a const void * · 931b261f
      Jeremy Kerr 提交于
      Previous changes have treated the return values of get_property as
      const, so now we can make the actual change to get_property(). There
      shouldn't be a need to cast the return values anymore.
      
      We will now get compiler warnings when property values are assigned to
      a non-const variable.
      
      If properties need to be updated, there's still the of_find_property
      function.
      
      Built for cell_defconfig, chrp32_defconfig, g5_defconfig,
      iseries_defconfig, maple_defconfig, pmac32_defconfig, ppc64_defconfig
      and pseries_defconfig.
      Signed-off-by: NJeremy Kerr <jk@ozlabs.org>
      Signed-off-by: NPaul Mackerras <paulus@samba.org>
      931b261f