1. 06 11月, 2012 2 次提交
  2. 17 10月, 2012 1 次提交
  3. 14 9月, 2012 1 次提交
  4. 07 9月, 2012 4 次提交
    • P
      ARM: tegra: Fix data type for io address · fa67ccb6
      Prashant Gaikwad 提交于
      Warnings were generated because following commit changed data type for
      address pointer
      
      195bbcac ARM: 7500/1: io: avoid writeback addressing modes for __raw_ accessors
      
      arch/arm/mach-tegra/tegra30_clocks.c: In function 'clk_measure_input_freq':
      arch/arm/mach-tegra/tegra30_clocks.c:418:2: warning: passing argument 2 of '__raw_writel' makes pointer from integer without a cast
      .../arch/arm/include/asm/io.h:88:20: note: expected 'volatile void *' but argument is of type 'unsigned int
      Signed-off-by: NPrashant Gaikwad <pgaikwad@nvidia.com>
      Signed-off-by: NStephen Warren <swarren@nvidia.com>
      fa67ccb6
    • J
      ARM: tegra: clocks: separate tegra_clk_32k_ops from Tegra20 and Tegra30 · b78c030c
      Joseph Lo 提交于
      Currently the tegra20 and tegra30 share the same symbol for
      tegra_clk_32k_ops. This will cause a compile error when building
      a tegra20-only kernel image. Add tegra_clk_32k_ops for tegra20 and
      modify tegra30_clk_32k_ops for tegra30.
      Signed-off-by: NJoseph Lo <josephl@nvidia.com>
      Signed-off-by: NStephen Warren <swarren@nvidia.com>
      b78c030c
    • P
      ARM: tegra: Port tegra to generic clock framework · 92fe58f0
      Prashant Gaikwad 提交于
      This patch converts tegra clock code to generic clock framework in following way:
       - Implement clk_ops as required by generic clk framework. (tegraXX_clocks.c)
       - Use platform specific struct clk_tegra in clk_ops implementation instead of struct clk.
       - Initialize all clock data statically. (tegraXX_clocks_data.c)
      
      Legacy framework did not have recalc_rate and is_enabled functions. Implemented these functions.
      Removed init function. It's functionality is splitted into recalc_rate and is_enabled.
      
      Static initialization is used since slab is not up in .init_early and clock
      is needed to be initialized before clockevent/clocksource initialization.
      Macros redefined for clk_tegra.
      
      Also, single struct clk_tegra is used for all type of clocks (PLL, peripheral etc.). This
      is to move quickly to generic common clock framework so that other dependent features will
      not be blocked (such as DT binding).
      
      Enabling COMMON_CLOCK config moved to ARCH_TEGRA since it is enabled for both Tegra20
      and Tegra30.
      Signed-off-by: NPrashant Gaikwad <pgaikwad@nvidia.com>
      Signed-off-by: NStephen Warren <swarren@nvidia.com>
      92fe58f0
    • P
      ARM: tegra30: Separate out clk ops and clk data · 88e790a4
      Prashant Gaikwad 提交于
      Move clock initialization data to separate file. This is
      required for migrating to generic clock framework if static
      initialization is used.
      Signed-off-by: NPrashant Gaikwad <pgaikwad@nvidia.com>
      Signed-off-by: NStephen Warren <swarren@nvidia.com>
      88e790a4
  5. 03 7月, 2012 1 次提交
  6. 27 6月, 2012 1 次提交
  7. 26 6月, 2012 1 次提交
  8. 26 4月, 2012 1 次提交
  9. 07 2月, 2012 1 次提交