An error occurred fetching the project authors.
  1. 20 Jan, 2012 1 commit
  2. 05 Jan, 2012 1 commit
  3. 20 Dec, 2011 1 commit
  4. 18 Dec, 2011 4 commits
  5. 13 Oct, 2011 1 commit
  6. 23 Feb, 2011 1 commit
    • Stephen Warren's avatar
      ARM: Tegra: Make tegra_dma_init a postcore_initcall · dc54c23b
      Stephen Warren authored
      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: default avatarStephen Warren <swarren@nvidia.com>
      Signed-off-by: default avatarColin Cross <ccross@android.com>
      dc54c23b
  7. 22 Feb, 2011 2 commits
  8. 21 Feb, 2011 1 commit
  9. 11 Feb, 2011 2 commits
  10. 22 Oct, 2010 3 commits
  11. 05 Aug, 2010 2 commits
    • Colin Cross's avatar
      [ARM] tegra: Add clock support · d8611961
      Colin Cross authored
      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: default avatarColin Cross <ccross@android.com>
      d8611961
    • Erik Gilling's avatar
      [ARM] tegra: initial tegra support · c5f80065
      Erik Gilling authored
      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: default avatarColin Cross <ccross@android.com>
      Signed-off-by: default avatarErik Gilling <konkers@android.com>
      c5f80065