1. 22 12月, 2015 1 次提交
  2. 01 4月, 2015 1 次提交
  3. 23 3月, 2015 4 次提交
  4. 29 1月, 2015 1 次提交
  5. 09 9月, 2014 1 次提交
  6. 09 7月, 2014 1 次提交
  7. 23 5月, 2014 2 次提交
  8. 22 5月, 2014 5 次提交
  9. 14 1月, 2014 1 次提交
    • S
      mmc: tegra: add support for Tegra124 · 67debea3
      Stephen Warren 提交于
      Tegra124's MMC controller is very similar to earlier SoC generations,
      and can be supported by the same driver.
      
      However, there are some non-backwards-compatible HW differences, and
      hence a new DT compatible value must be used to describe the HW. This
      patch updates the driver to support that new compatible value.
      
      That said, the HW differences are only relevant when enabling certain
      high-performance transfer modes. Since the driver is currently very
      simple and doesn't enable those modes, we don't actually need to address
      any of these HW differences in the code yet, hence the simple nature of
      this patch.
      Signed-off-by: NStephen Warren <swarren@nvidia.com>
      Reviewed-by: NThierry Reding <treding@nvidia.com>
      Signed-off-by: NChris Ball <cjb@laptop.org>
      67debea3
  10. 27 6月, 2013 1 次提交
  11. 31 5月, 2013 1 次提交
  12. 24 4月, 2013 1 次提交
  13. 23 3月, 2013 2 次提交
  14. 20 3月, 2013 1 次提交
  15. 07 3月, 2013 2 次提交
  16. 25 2月, 2013 2 次提交
  17. 29 11月, 2012 4 次提交
  18. 07 10月, 2012 1 次提交
  19. 14 9月, 2012 1 次提交
  20. 07 9月, 2012 1 次提交
  21. 05 9月, 2012 1 次提交
    • J
      mmc: tegra: convert to device tree support only · b37f9d98
      Joseph Lo 提交于
      When compiling a kernel that supports only Tegra30 and not Tegra20,
      the SDHCI driver will fail to compile since the of_match_device() failure
      fallback code unconditinally references soc_data_tegra20, which is only
      compiled in when Tegra20 support is enabled.
      
      In Kernel 3.7, both Tegra20 and Tegra30 will only support booting using
      device tree, Hence, there is never a need to fall back to using
      soc_data_tegra20 if of_mach_device() fails. Instead, make this case an
      error. This removes the reference to soc_data_tegra20, and hence solves
      the compile failure.
      Signed-off-by: NJoseph Lo <josephl@nvidia.com>
      Tested-by: NStephen Warren <swarren@wwwdotorg.org>
      Signed-off-by: NChris Ball <cjb@laptop.org>
      b37f9d98
  22. 12 6月, 2012 2 次提交
  23. 22 4月, 2012 1 次提交
  24. 19 4月, 2012 1 次提交
  25. 26 3月, 2012 1 次提交
    • S
      mmc: sdhci-tegra: Explicitly support Tegra30 · 3e44a1a7
      Stephen Warren 提交于
      Tegra30 differs from Tegra20 in a number of ways. This patch implements a
      minimal set of differences in order to get the Cardhu board's SD slot and
      eMMC working. Given the diffs between the mainline sdhci-tegra.c and our
      downstream versions, I expect we'll eventually need to add many more
      differences, hence the seemingly heavy-weight addition of the soc_data
      structure.
      
      * Tegra30 doesn't need to override register access to SDHCI_HOST_VERSION or
        SDHCI_INT_ENABLE.
      
      * Tegra30 needs quirk SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK.
      Signed-off-by: NStephen Warren <swarren@nvidia.com>
      Signed-off-by: NChris Ball <cjb@laptop.org>
      3e44a1a7