1. 10 8月, 2016 1 次提交
  2. 01 8月, 2016 1 次提交
  3. 21 7月, 2016 7 次提交
  4. 11 7月, 2016 2 次提交
  5. 09 2月, 2016 1 次提交
  6. 17 9月, 2015 2 次提交
  7. 10 11月, 2014 3 次提交
  8. 02 10月, 2014 1 次提交
  9. 07 4月, 2014 1 次提交
  10. 11 2月, 2014 1 次提交
  11. 26 11月, 2013 1 次提交
  12. 30 10月, 2013 1 次提交
  13. 08 8月, 2013 1 次提交
  14. 11 7月, 2012 1 次提交
  15. 20 4月, 2012 1 次提交
    • B
      powerpc: fix build when CONFIG_BOOKE_WDT is enabled · eda713e2
      Baruch Siach 提交于
      Commit ae3a197e (Disintegrate asm/system.h for PowerPC) broke build of
      assembly files when CONFIG_BOOKE_WDT is enabled as follows:
      
        AS      arch/powerpc/lib/string.o
      /home/baruch/git/stable/arch/powerpc/include/asm/reg_booke.h: Assembler messages:
      /home/baruch/git/stable/arch/powerpc/include/asm/reg_booke.h:19: Error: Unrecognized opcode: `extern'
      /home/baruch/git/stable/arch/powerpc/include/asm/reg_booke.h:20: Error: Unrecognized opcode: `extern'
      
      Since setup_32.c is the only user of the booke_wdt configuration variables, move
      the declarations there.
      
      Cc: David Howells <dhowells@redhat.com>
      Signed-off-by: NBaruch Siach <baruch@tkos.co.il>
      Signed-off-by: NKumar Gala <galak@kernel.crashing.org>
      eda713e2
  16. 29 3月, 2012 1 次提交
  17. 16 11月, 2011 1 次提交
  18. 20 9月, 2011 1 次提交
    • S
      powerpc/32: Pass device tree address as u64 to machine_init · 6dece0eb
      Scott Wood 提交于
      u64 is used rather than phys_addr_t to keep things simple, as
      this is called from assembly code.
      
      Update callers to pass a 64-bit address in r3/r4.  Other unused
      register assignments that were once parameters to machine_init
      are dropped.
      
      For FSL BookE, look up the physical address of the device tree from the
      effective address passed in r3 by the loader.  This is required for
      situations where memory does not start at zero (due to AMP or IOMMU-less
      virtualization), and thus the IMA doesn't start at zero, and thus the
      device tree effective address does not equal the physical address.
      Signed-off-by: NScott Wood <scottwood@freescale.com>
      Signed-off-by: NBenjamin Herrenschmidt <benh@kernel.crashing.org>
      6dece0eb
  19. 19 7月, 2011 1 次提交
  20. 12 7月, 2011 1 次提交
  21. 17 6月, 2011 1 次提交
  22. 20 4月, 2011 1 次提交
  23. 14 10月, 2010 1 次提交
  24. 23 8月, 2010 1 次提交
  25. 05 8月, 2010 1 次提交
    • B
      memblock: Introduce default allocation limit and use it to replace explicit ones · e63075a3
      Benjamin Herrenschmidt 提交于
      This introduce memblock.current_limit which is used to limit allocations
      from memblock_alloc() or memblock_alloc_base(..., MEMBLOCK_ALLOC_ACCESSIBLE).
      
      The old MEMBLOCK_ALLOC_ANYWHERE changes value from 0 to ~(u64)0 and can still
      be used with memblock_alloc_base() to allocate really anywhere.
      
      It is -no-longer- cropped to MEMBLOCK_REAL_LIMIT which disappears.
      
      Note to archs: I'm leaving the default limit to MEMBLOCK_ALLOC_ANYWHERE. I
      strongly recommend that you ensure that you set an appropriate limit
      during boot in order to guarantee that an memblock_alloc() at any time
      results in something that is accessible with a simple __va().
      
      The reason is that a subsequent patch will introduce the ability for
      the array to resize itself by reallocating itself. The MEMBLOCK core will
      honor the current limit when performing those allocations.
      Signed-off-by: NBenjamin Herrenschmidt <benh@kernel.crashing.org>
      e63075a3
  26. 14 7月, 2010 1 次提交
  27. 15 6月, 2010 1 次提交
  28. 19 3月, 2010 1 次提交
  29. 10 11月, 2009 1 次提交
    • F
      swiotlb: Defer swiotlb init printing, export swiotlb_print_info() · ad32e8cb
      FUJITA Tomonori 提交于
      This enables us to avoid printing swiotlb memory info when we
      initialize swiotlb. After swiotlb initialization, we could find
      that we don't need swiotlb.
      
      This patch removes the code to print swiotlb memory info in
      swiotlb_init() and exports the function to do that.
      Signed-off-by: NFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
      Cc: chrisw@sous-sol.org
      Cc: dwmw2@infradead.org
      Cc: joerg.roedel@amd.com
      Cc: muli@il.ibm.com
      Cc: tony.luck@intel.com
      Cc: benh@kernel.crashing.org
      LKML-Reference: <1257849980-22640-9-git-send-email-fujita.tomonori@lab.ntt.co.jp>
      [ -v2: merge up conflict ]
      Signed-off-by: NIngo Molnar <mingo@elte.hu>
      ad32e8cb
  30. 11 9月, 2009 1 次提交