1. 23 7月, 2016 1 次提交
  2. 04 7月, 2016 1 次提交
  3. 01 4月, 2015 1 次提交
  4. 27 3月, 2015 1 次提交
  5. 08 1月, 2015 1 次提交
  6. 27 10月, 2014 6 次提交
  7. 08 5月, 2014 1 次提交
  8. 14 10月, 2013 1 次提交
  9. 08 2月, 2013 1 次提交
    • H
      ARM: OMAP2: am33xx-hwmod: Fix "register offset NULL check" bug · 169c82a2
      Hebbar Gururaja 提交于
      am33xx_cm_wait_module_ready() checks if register offset is NULL.
      
      int am33xx_cm_wait_module_ready(u16 inst, s16 cdoffs, u16 clkctrl_offs)
      {
      	int i = 0;
      
      	if (!clkctrl_offs)
      		return 0;
      
      In case of AM33xx, CLKCTRL register offset for different clock domains
      are not uniformly placed. An example of this would be the RTC clock
      domain with CLKCTRL offset at 0x00.
      In such cases the module ready check is skipped which leads to a data
      abort during boot-up when RTC registers is accessed.
      
      Remove this check here to avoid checking module readiness for modules
      with clkctrl register offset at 0x00.
      
      Koen Kooi notes that this patch fixes a crash on boot with
      CONFIG_RTC_DRV_OMAP=y with v3.8-rc5.
      Signed-off-by: NHebbar Gururaja <gururaja.hebbar@ti.com>
      Cc: Koen Kooi <koen@dominion.thruhere.net>
      [paul@pwsan.com: noted Koen's test in the patch description]
      Signed-off-by: NPaul Walmsley <paul@pwsan.com>
      169c82a2
  10. 01 11月, 2012 1 次提交
    • T
      ARM: OMAP: Remove plat-omap/common.h · 5c2e8852
      Tony Lindgren 提交于
      Most of the prototypes in plat-omap/common.h are not
      common to omap1 and omap2+, they are local to omap2+
      and should not be in plat-omap/common.h.
      
      The only shared function prototype in this file is
      omap_init_clocksource_32k(), let's put that into
      counter-32k.h.
      
      Note that the new plat/counter-32k.h must not be
      included from drivers, that will break omap2+ build
      for CONFIG_MULTIPLATFORM.
      Signed-off-by: NTony Lindgren <tony@atomide.com>
      5c2e8852
  11. 21 10月, 2012 1 次提交
  12. 18 10月, 2012 1 次提交
  13. 19 6月, 2012 1 次提交