1. 06 12月, 2012 1 次提交
  2. 14 11月, 2012 1 次提交
  3. 31 10月, 2012 1 次提交
  4. 01 10月, 2012 1 次提交
    • S
      spi: remove completely broken Tegra driver · 536a53a3
      Stephen Warren 提交于
      The current SPI driver has many issues. Examples are:
      
      * Segfaulting on most transfers due to expecting all transfers to have
        both RX and TX buffers.
      * Hanging on TX transfers since the whole driver flow is driven by RX
        DMA completion, but the HW is only told to enable RX for RX transfers.
      * Use of clk_disable_unprepare() from atomic context.
      * Once those and other minor issues are fixed, the driver still doesn't
        actually work.
      * The driver also implements a deprecated API to the SPI core.
      
      For this reason, simply remove the driver completely. This has two
      advantages:
      
      1) This will remove the last use of Tegra's <mach/dma.h>, which will
         allow that file to be removed, which is required for single zImage
         work.
      
      2) The downstream driver is significaly different from the current
         code. I believe a patch to re-add the downstream driver (with
         appropriate cleanup) will be much simpler to review if it's a new
         file rather than randomly interspered with essentially unrelated
         existing code.
      Signed-off-by: NStephen Warren <swarren@nvidia.com>
      Signed-off-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
      536a53a3
  5. 17 9月, 2012 1 次提交
  6. 01 9月, 2012 1 次提交
  7. 23 8月, 2012 2 次提交
  8. 18 8月, 2012 1 次提交
  9. 23 7月, 2012 1 次提交
  10. 20 7月, 2012 1 次提交
  11. 16 7月, 2012 1 次提交
  12. 10 7月, 2012 1 次提交
  13. 28 4月, 2012 1 次提交
  14. 25 4月, 2012 1 次提交
  15. 10 3月, 2012 4 次提交
  16. 08 3月, 2012 1 次提交
  17. 03 3月, 2012 1 次提交
    • K
      ARM: S3C24XX: change the ARCH_S3C2410 to ARCH_S3C24XX · b130d5c2
      Kukjin Kim 提交于
      This patch changes the ARCH name to "ARCH_S3C24XX" for Samsung
      S3C2410, S3C2412, S3C2413, S3C2416, S3C2440, S3C2442, S3C2443,
      and S3C2450 SoCs so that we can merge the mach-xxx directories
      and plat-s3c24xx dir. to just one mach-s3c24xx for them.
      
      I think this should be sent to upstream via samsung tree because
      this touches many samsung stuff.
      
      Cc: Dmitry Torokhov <dmitry.torokhov@gmail.com>
      Cc: Richard Purdie <rpurdie@rpsys.net>
      Cc: Chris Ball <cjb@laptop.org>
      Cc: David Woodhouse <dwmw2@infradead.org>
      Cc: Alessandro Zummo <a.zummo@towertech.it>
      Cc: Grant Likely <grant.likely@secretlab.ca>
      Cc: Greg Kroah-Hartman <gregkh@suse.de>
      [for the gadget part:]
      Acked-by: NFelipe Balbi <balbi@ti.com>
      [for the framebuffer (video) part:]
      Acked-by: NFlorian Tobias Schandinat <FlorianSchandinat@gmx.de>
      [For the watchdog-part:]
      Acked-by: NWim Van Sebroeck <wim@iguana.be>
      Cc: Sangbeom Kim <sbkim73@samsung.com>
      Cc: Liam Girdwood <lrg@ti.com>
      Cc: Mark Brown <broonie@opensource.wolfsonmicro.com>
      Cc: Russell King <rmk+kernel@arm.linux.org.uk>
      Signed-off-by: NKukjin Kim <kgene.kim@samsung.com>
      b130d5c2
  18. 06 2月, 2012 1 次提交
  19. 02 1月, 2012 1 次提交
  20. 08 12月, 2011 2 次提交
  21. 14 11月, 2011 1 次提交
  22. 29 10月, 2011 1 次提交
  23. 25 10月, 2011 1 次提交
  24. 15 7月, 2011 2 次提交
    • S
      spi/imx: use soc name in spi device type naming scheme · 04ee5854
      Shawn Guo 提交于
      Software defined version number is not stable enough to be used
      in device type naming scheme.  The patch changes it to use implicit
      soc name for spi device type definition.  In this way, we can easily
      align the naming scheme with device tree binding, which comes later.
      
      It removes fifosize from spi_imx_data and adds devtype there, so that
      fifosize can be set in an inline function according to devtype.
      Also, cpu_is_mx can be replaced by inline functions checking devtype.
      Signed-off-by: NShawn Guo <shawn.guo@linaro.org>
      Cc: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
      Cc: Sascha Hauer <s.hauer@pengutronix.de>
      Cc: Grant Likely <grant.likely@secretlab.ca>
      Signed-off-by: NGrant Likely <grant.likely@secretlab.ca>
      04ee5854
    • S
      spi/imx: merge type SPI_IMX_VER_0_7 into SPI_IMX_VER_0_4 · 2a64a90a
      Shawn Guo 提交于
      The only difference between SPI_IMX_VER_0_7 and SPI_IMX_VER_0_4 is
      .config function.  The patch uses cpu_is_mx35 (to be removed) as the
      temporary solution to consolidate functions spi_imx0_4_config and
      spi_imx0_7_config into mx31_config.  As a result, type SPI_IMX_VER_0_7
      can be merged into SPI_IMX_VER_0_4.
      
      It also renames function spi_imx0_4_reset to mx31_reset to keep
      consistency with other function naming.
      
      A couple of redundant macros, MX3_CSPISTAT and MX3_CSPISTAT_RR,
      together with the useless type SPI_IMX_VER_0_5 also get cleaned up.
      Signed-off-by: NShawn Guo <shawn.guo@linaro.org>
      Cc: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
      Cc: Sascha Hauer <s.hauer@pengutronix.de>
      Cc: Grant Likely <grant.likely@secretlab.ca>
      Signed-off-by: NGrant Likely <grant.likely@secretlab.ca>
      2a64a90a
  25. 05 7月, 2011 1 次提交
  26. 09 6月, 2011 1 次提交
  27. 06 6月, 2011 1 次提交
  28. 27 5月, 2011 1 次提交
  29. 20 5月, 2011 1 次提交
  30. 15 3月, 2011 1 次提交
  31. 08 3月, 2011 3 次提交
  32. 23 2月, 2011 1 次提交