1. 27 5月, 2014 1 次提交
    • A
      ARM: vexpress: refine dependencies for new code · b33cdd28
      Arnd Bergmann 提交于
      The versatile express changes for 3.16 introduced a number of
      build regressions for randconfig kernels by not tracking dependencies
      between the components right.
      
      This patch tries to rectify that:
      
      * the mach-vexpress code cannot link without the syscfg driver,
        which in turn needs MFD_VEXPRESS_SYSREG
      * various drivers call devm_regmap_init_vexpress_config(), which
        has to be exported so it can be used by loadable modules
      * the configuration bus uses OF DT helper functions that are not
        available to platforms disable CONFIG_OF
      * The sysreg driver exports GPIOs through gpiolib, which can
        be disabled on some platforms.
      * The clocksource code cannot be built on platforms that don't
        use modern timekeeping but rely on gettimeoffset.
      Signed-off-by: NArnd Bergmann <arnd@arndb.de>
      b33cdd28
  2. 26 5月, 2014 9 次提交
  3. 16 5月, 2014 15 次提交
  4. 15 5月, 2014 6 次提交
  5. 13 5月, 2014 6 次提交
  6. 12 5月, 2014 3 次提交
    • Z
      clocksource:sirf: remove the hardcode for the clk of timers · c7cff54d
      Zhiwu Song 提交于
      Nobody want to know the connection between io clk and timer clk,
      so exposing this information to timer module is not reasonable.
      this patch moves to define the timers' clk in dt.
      Signed-off-by: NZhiwu Song <Zhiwu.Song@csr.com>
      Signed-off-by: NBarry Song <Baohua.Song@csr.com>
      c7cff54d
    • X
      ARM: prima2: rstc: fix some minor checkpatch issues · a2a25683
      Xianglong Du 提交于
      this patch fixes the below minor issues:
      
      WARNING: line over 80 characters
      39: FILE: arch/arm/mach-prima2/rstc.c:39:
      +                * Writing 1 to this bit resets corresponding block. Writing 0 to this
      
      WARNING: line over 80 characters
      41: FILE: arch/arm/mach-prima2/rstc.c:41:
      +                * datasheet doesn't require explicit delay between the set and clear
      
      WARNING: line over 80 characters
      44: FILE: arch/arm/mach-prima2/rstc.c:44:
      +               writel(readl(sirfsoc_rstc_base + (reset_bit / 32) * 4) | (1 << reset_bit),
      
      WARNING: msleep < 20ms can sleep for up to 20ms; see Documentation/timers/timers-howto.txt
      46: FILE: arch/arm/mach-prima2/rstc.c:46:
      +               msleep(10);
      
      WARNING: line over 80 characters
      47: FILE: arch/arm/mach-prima2/rstc.c:47:
      +               writel(readl(sirfsoc_rstc_base + (reset_bit / 32) * 4) & ~(1 << reset_bit),
      
      WARNING: line over 80 characters
      52: FILE: arch/arm/mach-prima2/rstc.c:52:
      +                * Writing 1 to SET register resets corresponding block. Writing 1 to CLEAR
      
      WARNING: line over 80 characters
      54: FILE: arch/arm/mach-prima2/rstc.c:54:
      +                * datasheet doesn't require explicit delay between the set and clear
      
      WARNING: line over 80 characters
      57: FILE: arch/arm/mach-prima2/rstc.c:57:
      +               writel(1 << reset_bit, sirfsoc_rstc_base + (reset_bit / 32) * 8);
      
      WARNING: msleep < 20ms can sleep for up to 20ms; see Documentation/timers/timers-howto.txt
      58: FILE: arch/arm/mach-prima2/rstc.c:58:
      +               msleep(10);
      
      WARNING: line over 80 characters
      59: FILE: arch/arm/mach-prima2/rstc.c:59:
      +               writel(1 << reset_bit, sirfsoc_rstc_base + (reset_bit / 32) * 8 + 4);
      
      total: 0 errors, 10 warnings, 120 lines checked
      Signed-off-by: NXianglong Du <Xianglong.Du@csr.com>
      Signed-off-by: NBarry Song <Baohua.Song@csr.com>
      a2a25683
    • T
      ARM: OMAP3: CM: remove a few OMAP34XX_CM_REGADDR defines · b21be7bc
      Tero Kristo 提交于
      Remove a few OMAP34XX_CM_REGADDR defines and replace these with offset
      based register accesses instead.
      Signed-off-by: NTero Kristo <t-kristo@ti.com>
      Signed-off-by: NPaul Walmsley <paul@pwsan.com>
      b21be7bc