1. 02 12月, 2015 1 次提交
    • A
      ARM: s3c64xx: allow building without board support · b2821042
      Arnd Bergmann 提交于
      Most of the code for the s3c64xx platform is only used when booting
      with ATAGS based board files, but not when using device-tree.
      
      This tries to identify all the s3c64xx specific code that is
      unneeded when CONFIG_ATAGS is not set, so we can build a smaller
      DT-only kernel if configured that way.
      
      All board support is still left intact but now depends on the
      CONFIG_ATAGS symbol that users may intentionally disable.
      Signed-off-by: NArnd Bergmann <arnd@arndb.de>
      b2821042
  2. 27 2月, 2015 1 次提交
    • A
      ARM: S3C24XX: fix header file inclusions · 1fe054e7
      Arnd Bergmann 提交于
      The pm-core.h file does not include all the necessary headers,
      and has a static declaration for a function that is not
      defined in the same file, causing SAMSUNG_PM_DEBUG to
      break on s3c24xx:
      
      arch/arm/mach-s3c24xx/include/mach/pm-core.h:50:91: warning: 's3c_pm_show_resume_irqs' used but never defined
      arch/arm/mach-s3c24xx/include/mach/pm-core.h: In function 's3c_pm_debug_init_uart':
      arch/arm/mach-s3c24xx/include/mach/pm-core.h:16:34: error: 'S3C2410_CLKCON' undeclared (first use in this function)
        unsigned long tmp = __raw_readl(S3C2410_CLKCON);
                                        ^
      
      This moves the code around slightly to avoid the errors.
      Signed-off-by: NArnd Bergmann <arnd@arndb.de>
      Signed-off-by: NKukjin Kim <kgene@kernel.org>
      1fe054e7
  3. 21 3月, 2014 6 次提交
  4. 14 2月, 2014 1 次提交
  5. 19 12月, 2013 2 次提交
  6. 12 12月, 2013 1 次提交
  7. 24 7月, 2013 1 次提交
  8. 19 6月, 2013 1 次提交
  9. 11 6月, 2013 1 次提交
  10. 19 4月, 2013 1 次提交
    • A
      ARM: exynos: prepare for sparse IRQ · 7ba8022f
      Arnd Bergmann 提交于
      When we enable CONFIG_SPARSE_IRQ, we have to set the value of NR_IRQS in
      the machine_desc for legacy IRQ domains, and any file referring to the
      number of interrupts or a specific number must include the mach/irqs.h
      header file explicitly.
      Signed-off-by: NArnd Bergmann <arnd@arndb.de>
      7ba8022f
  11. 31 1月, 2013 2 次提交
  12. 08 8月, 2012 1 次提交
  13. 21 9月, 2011 1 次提交
    • K
      ARM: SAMSUNG: Update the name of regarding Samsung GPIO · 782d8a3c
      Kukjin Kim 提交于
      According to gpio-samsung.c, this patch updates the name of
      regarding Samsung GPIO. Basically the samsung_xxx prefix is
      used in gpio-samsung.c instead of s3c_xxx, because unified
      name can reduce its complexity.
      
      Note: some s3c_xxx stil remains because it is used widely.
      It will be updated next time.
      
      Cc: Ben Dooks <ben-linux@fluff.org>
      Signed-off-by: NKukjin Kim <kgene.kim@samsung.com>
      782d8a3c
  14. 20 7月, 2011 1 次提交
  15. 02 7月, 2011 1 次提交
    • R
      ARM: pm: allow suspend finisher to return error codes · 29cb3cd2
      Russell King 提交于
      There are SoCs where attempting to enter a low power state is ignored,
      and the CPU continues executing instructions with all state preserved.
      It is over-complex at that point to disable the MMU just to call the
      resume path.
      
      Instead, allow the suspend finisher to return error codes to abort
      suspend in this circumstance, where the cpu_suspend internals will then
      unwind the saved state on the stack.  Also omit the tlb flush as no
      changes to the page tables will have happened.
      Signed-off-by: NRussell King <rmk+kernel@arm.linux.org.uk>
      29cb3cd2
  16. 24 6月, 2011 3 次提交
  17. 14 4月, 2011 1 次提交
  18. 23 2月, 2011 1 次提交
  19. 30 12月, 2010 1 次提交
  20. 16 11月, 2010 1 次提交
  21. 23 2月, 2010 1 次提交
  22. 21 2月, 2010 1 次提交
  23. 21 1月, 2010 1 次提交
  24. 01 12月, 2009 1 次提交
  25. 07 5月, 2009 3 次提交
  26. 10 3月, 2009 1 次提交
    • B
      [ARM] S3C: Tidy sleep code path to fix call flow · fff94cd9
      Ben Dooks 提交于
      As noted by Russell King, the sleep code path is not
      elegant and makes use of leaving items on the stack
      between calls.
      
      Change the code that does the following:
      
              if (s3c_cpu_save(regs_save) == 0) {
                      flush_cache_all();
                      S3C_PMDBG("preparing to sleep\n");
                      pm_cpu_sleep();
              }
      
      to simply call s3c_cpu_save, and let that do the
      necessary calls to quiesce and sleep the system.
      Signed-off-by: NBen Dooks <ben-linux@fluff.org>
      fff94cd9
  27. 08 3月, 2009 3 次提交