1. 13 9月, 2012 1 次提交
  2. 07 7月, 2012 1 次提交
  3. 08 5月, 2012 1 次提交
  4. 26 4月, 2012 4 次提交
  5. 05 3月, 2012 1 次提交
  6. 27 2月, 2012 2 次提交
  7. 07 2月, 2012 3 次提交
  8. 21 1月, 2012 1 次提交
  9. 05 1月, 2012 1 次提交
  10. 20 12月, 2011 1 次提交
  11. 18 12月, 2011 4 次提交
  12. 14 10月, 2011 1 次提交
  13. 24 2月, 2011 1 次提交
    • S
      ARM: Tegra: Make tegra_dma_init a postcore_initcall · dc54c23b
      Stephen Warren 提交于
      The following commit makes the Tegra APB DMA engine fail to initialize
      correctly: 0cf6230a
      ARM: tegra: Move tegra_common_init to tegra_init_early
      
      The reason is that tegra_init_early_ calls tegra_dma_init which calls
      request_threaded_irq, which fails since the IRQ hasn't yet been marked
      valid; that only happens in tegra_init_irq, which gets called after
      tegra_init_early.
      
      This used to work OK, since tegra_init_early was tegra_common_init, which
      got called after tegra_init_irq, basically from the beginning of
      tegra_harmony_init.
      
      Solve this by converting tegra_dma_init to a postcore_initcall. This makes
      it execute late enough that IRQs are marked valid, and avoids having to
      add it back to every machine's init function.
      Signed-off-by: NStephen Warren <swarren@nvidia.com>
      Signed-off-by: NColin Cross <ccross@android.com>
      dc54c23b
  14. 23 2月, 2011 2 次提交
  15. 21 2月, 2011 1 次提交
  16. 11 2月, 2011 2 次提交
  17. 22 10月, 2010 3 次提交
  18. 06 8月, 2010 2 次提交
    • C
      [ARM] tegra: Add clock support · d8611961
      Colin Cross 提交于
      v2: fixes from Russell King:
      	- include linux/io.h instead of asm/io.h
      	- fix whitespace in Kconfig
      	- Use spin_lock_init to initialize lock
      	- Return -ENOSYS instead of BUG for unimplemented clock ops
      	- Use proper return values in tegra2 clock ops
          additional changes:
      	- Rename some clocks to match dev_ids
      	- add rate propagation
      	- add debugfs entries
      	- add support for clock listed in clk_lookup under multiple dev_ids
      v3:
      	- Replace per-clock locking with global clock lock
      	- Autodetect clock state on init
      	- Let clock dividers pick next lower possible frequency
      	- Add support for clock init tables
      	- Minor bug fixes
      	- Fix checkpatch issues
      Signed-off-by: NColin Cross <ccross@android.com>
      d8611961
    • E
      [ARM] tegra: initial tegra support · c5f80065
      Erik Gilling 提交于
      v2: Fixes from Mike Rapoport
      	- remove unused header files (mach/dma.h and mach/nand.h)
      	- remove tegra 1 references from Makefile.boot
      
      v2: fixes from Russell King
      	- remove mach/io.h include from mach/iomap.h
      	- fix whitespace in Kconfig
      
      v2: from Colin Cross
      	- fix invalid immediate in debug-macro.S
      
      v3:
      	- allow selection of multiple boards
      Signed-off-by: NColin Cross <ccross@android.com>
      Signed-off-by: NErik Gilling <konkers@android.com>
      c5f80065