1. 23 2月, 2011 12 次提交
  2. 21 2月, 2011 20 次提交
  3. 20 2月, 2011 2 次提交
  4. 11 2月, 2011 6 次提交
    • M
      ARM: tegra: add TrimSlice board · cca414b2
      Mike Rapoport 提交于
      Add basic support for CompuLab TrimSlice platform
      Signed-off-by: NMike Rapoport <mike@compulab.co.il>
      Signed-off-by: NColin Cross <ccross@android.com>
      cca414b2
    • C
      ARM: tegra: Use writel_relaxed in tegra_init_cache · 535371c3
      Colin Cross 提交于
      Signed-off-by: NColin Cross <ccross@android.com>
      535371c3
    • O
      ARM: tegra: add tegra_defconfig · f2b6133f
      Olof Johansson 提交于
      Adding one single defconfig for the tegra family of boards, to over time
      cover the superset of supported platform and drivers.
      Signed-off-by: NOlof Johansson <olof@lixom.net>
      Signed-off-by: NColin Cross <ccross@android.com>
      f2b6133f
    • C
      ARM: tegra: dma: Fix critical data corruption bugs · 5789fee9
      Colin Cross 提交于
      Sometimes, due to high interrupt latency in the continuous mode
      of DMA transfer, the half buffer complete interrupt is handled
      after DMA has transferred the full buffer.  When this is detected,
      stop DMA immediately and restart with the next buffer if the next
      buffer is ready.
      
      originally fixed by Victor(Weiguo) Pan <wpan@nvidia.com>
      
      In place of using the simple spin_lock()/spi_unlock() in the
      interrupt thread, using the spin_lock_irqsave() and
      spin_unlock_irqrestore(). The lock is shared between the normal
      process context and interrupt context.
      
      originally fixed by Laxman Dewangan (ldewangan@nvidia.com)
      
      The use of shadow registers caused memory corruption at physical
      address 0 because the enable bit was not shadowed, and assuming it
      needed to be set would enable an unconfigured dma block.  Most of the
      register accesses don't need to know the previous state of the
      registers, and the few places that do need to modify only a few bits
      in the registers are the same ones that were sometimes incorrectly
      setting the enable bit.  This patch convert tegra_dma_update_hardware
      to set the entire register, and the other users to read-modify-write,
      and drops the shadow registers completely.
      
      Also fixes missing locking in tegra_dma_allocate_channel
      Signed-off-by: NColin Cross <ccross@android.com>
      5789fee9
    • C
      ARM: tegra: Allow overriding arch_reset · 699fe145
      Colin Cross 提交于
      Signed-off-by: NColin Cross <ccross@android.com>
      699fe145
    • C
      ARM: tegra: cpufreq: Disable cpufreq during suspend · 1eb2ecf1
      Colin Cross 提交于
      On Tegra, calling clk_set_rate on the CPU clock may call into the
      regulator API.  If the regulator driver that controls the CPU
      voltage rail has been suspended, this can lead to attempted
      communication with a hardware block that has already been turned
      off.
      
      Adds a SUSPEND_PREPARE notification hook to drop the frequency to
      the lowest possible during suspend.
      
      Also adds 216MHz (off of PLLP) as the lowest CPU frequency, which
      allows PLLX to be turned off.
      Signed-off-by: NColin Cross <ccross@android.com>
      1eb2ecf1