1. 15 2月, 2014 1 次提交
  2. 07 2月, 2014 1 次提交
  3. 17 1月, 2014 1 次提交
  4. 18 11月, 2013 1 次提交
  5. 15 11月, 2013 1 次提交
  6. 18 10月, 2013 13 次提交
    • T
      spi: spi-mxs: Use u32 instead of uint32_t · 42e182f8
      Trent Piepho 提交于
      It's consistent with all the other spi drivers that way.
      Signed-off-by: NTrent Piepho <tpiepho@gmail.com>
      Cc: Marek Vasut <marex@denx.de>
      Cc: Fabio Estevam <fabio.estevam@freescale.com>
      Cc: Shawn Guo <shawn.guo@linaro.org>
      Signed-off-by: NMark Brown <broonie@linaro.org>
      42e182f8
    • T
      spi: spi-mxs: Don't set clock for each xfer · a560943e
      Trent Piepho 提交于
      mxs_spi_setup_transfer() would set the SSP SCK rate every time it was
      called, which is before every transfer.  It is uncommon for the SCK rate to
      change between transfers (or at all of that matter) and this causes many
      unnecessary reprogrammings of the clock registers.
      
      Code changed to only set the rate when it changes.  This significantly
      speeds up short SPI messages, especially messages made up of many transfers,
      as the calculation of the clock divisors is rather costly.  On an iMX287,
      using spidev with messages that consist of 511 transfers of 4 bytes each at
      an SCK of 48 MHz, the effective transfer rate more than doubles from about
      290 KB/sec to 600 KB/sec!
      Signed-off-by: NTrent Piepho <tpiepho@gmail.com>
      Cc: Marek Vasut <marex@denx.de>
      Cc: Fabio Estevam <fabio.estevam@freescale.com>
      Cc: Shawn Guo <shawn.guo@linaro.org>
      Signed-off-by: NMark Brown <broonie@linaro.org>
      a560943e
    • T
      spi: spi-mxs: Clean up setup_transfer function · aa9e0c6f
      Trent Piepho 提交于
      It can't be called with a NULL transfer anymore so it can be simplified
      to not check for that.
      
      Fix indention of line-wrapped code to Linux standard.
      
      The transfer pointer can be const.
      
      It's not necessary to check if the spi_transfer's speed_hz is zero, as
      the spi core also fills it in from the spi_device.  However, the spi
      core does not check if spi_device's speed is zero so we have to do
      that still.
      Signed-off-by: NTrent Piepho <tpiepho@gmail.com>
      Cc: Marek Vasut <marex@denx.de>
      Cc: Fabio Estevam <fabio.estevam@freescale.com>
      Cc: Shawn Guo <shawn.guo@linaro.org>
      Signed-off-by: NMark Brown <broonie@linaro.org>
      aa9e0c6f
    • T
      spi: spi-mxs: Remove check of spi mode bits · d426eadb
      Trent Piepho 提交于
      The spi core already checks for a slave setting mode bits that we
      didn't list as supported when the master was registered.  There is no
      need to do it again in the master driver.
      Signed-off-by: NTrent Piepho <tpiepho@gmail.com>
      Cc: Marek Vasut <marex@denx.de>
      Cc: Fabio Estevam <fabio.estevam@freescale.com>
      Cc: Shawn Guo <shawn.guo@linaro.org>
      Signed-off-by: NMark Brown <broonie@linaro.org>
      d426eadb
    • T
      spi: spi-mxs: Fix race in setup method · 9c97e342
      Trent Piepho 提交于
      Despite many warnings in the SPI documentation and code, the spi-mxs
      driver sets shared chip registers in the ->setup method.  This method can
      be called when transfers are in progress on other slaves controlled by the
      master.  Setting registers or any other shared state will corrupt those
      transfers.
      
      So fix mxs_spi_setup() to not call mxs_spi_setup_transfer().
      mxs_spi_setup_transfer() is already called for each transfer when they
      are actually performed in mxs_spi_transfer_one(), so the call in
      mxs_spi_setup() isn't necessary to setup anything.
      Signed-off-by: NTrent Piepho <tpiepho@gmail.com>
      Cc: Marek Vasut <marex@denx.de>
      Cc: Fabio Estevam <fabio.estevam@freescale.com>
      Cc: Shawn Guo <shawn.guo@linaro.org>
      Signed-off-by: NMark Brown <broonie@linaro.org>
      9c97e342
    • T
      spi: spi-mxs: Remove bogus setting of ssp clk rate field · 1a33073f
      Trent Piepho 提交于
      The ssp struct has a clock rate field, to provide the actual value, in Hz,
      of the SSP output clock (the rate of SSP_SCK) after mxs_ssp_set_clk_rate()
      is called.  It is set by mxs_ssp_set_clk_rate(), for SSP using drivers (like
      SPI and MMC) to *read* if they want to know the actual clock rate.  The SPI
      driver isn't supposed to *write* to it.
      
      For some reason the spi-mxs driver decides to write to this field on init,
      and sets it to the value of the SSP input clock (clk_sspN, from the MXS
      clocking block) in kHz.  It shouldn't be setting the value, and certainly
      shouldn't be setting it with the wrong clock in the wrong units.
      Signed-off-by: NTrent Piepho <tpiepho@gmail.com>
      Cc: Marek Vasut <marex@denx.de>
      Cc: Fabio Estevam <fabio.estevam@freescale.com>
      Cc: Shawn Guo <shawn.guo@linaro.org>
      Signed-off-by: NMark Brown <broonie@linaro.org>
      1a33073f
    • T
      spi: spi-mxs: Remove full duplex check, spi core already does it · 210f65fe
      Trent Piepho 提交于
      Because the driver sets the SPI_MASTER_HALF_DUPLEX flag, the spi core
      will check transfers to insure they are not full duplex.  It's not
      necessary to check that in the spi-mxs driver as well.
      Signed-off-by: NTrent Piepho <tpiepho@gmail.com>
      Cc: Marek Vasut <marex@denx.de>
      Cc: Fabio Estevam <fabio.estevam@freescale.com>
      Cc: Shawn Guo <shawn.guo@linaro.org>
      Signed-off-by: NMark Brown <broonie@linaro.org>
      210f65fe
    • T
      spi: spi-mxs: Fix chip select control bits in DMA mode · 0b782f70
      Trent Piepho 提交于
      In DMA mode the chip select control bits would be ORed into the CTRL0
      register without first clearing the bits.  This means that after
      addressing slave 1, the CTRL0 bit to address slave 1 would be still be
      set when addressing slave 0, resulting in slave 1 continuing to be
      addressed.
      
      The message handling function would pass the CS value to the txrx
      function, which would re-program the bits on each transfer in the
      message.  The selected CS does not change during a message so this is
      inefficient.  It also means there are two different sets of code for
      selecting the CS, one for PIO that worked and one for DMA that didn't.
      
      Change the code to set the CS bits in the message handling function
      once.  Now the DMA and PIO txrx functions don't need to care about CS
      at all.
      Signed-off-by: NTrent Piepho <tpiepho@gmail.com>
      Cc: Marek Vasut <marex@denx.de>
      Cc: Fabio Estevam <fabio.estevam@freescale.com>
      Cc: Shawn Guo <shawn.guo@linaro.org>
      Signed-off-by: NMark Brown <broonie@linaro.org>
      0b782f70
    • T
      spi: spi-mxs: Fix extra CS pulses and read mode in multi-transfer messages · df23286e
      Trent Piepho 提交于
      There are two bits which control the CS line in the CTRL0 register:
      LOCK_CS and IGNORE_CRC.  The latter would be better named DEASSERT_CS
      in SPI mode.
      
      Setting DEASSERT_CS causes CS to be de-asserted at the end of the transfer.
      It should normally be set only for the final segment of the final transfer.
      The DMA code explicitly sets it in this case, but because it never clears
      the bit from the ctrl0 register, it will remain set for all transfers in
      subsequent messages.  This results in a CS pulse between transfers.
      
      There is a similar problem with the read mode bit never being cleared
      in DMA mode.
      
      This patch fixes DEASSERT_CS and READ being left on in DMA mode.
      Signed-off-by: NTrent Piepho <tpiepho@gmail.com>
      Cc: Marek Vasut <marex@denx.de>
      Cc: Fabio Estevam <fabio.estevam@freescale.com>
      Cc: Shawn Guo <shawn.guo@linaro.org>
      Signed-off-by: NMark Brown <broonie@linaro.org>
      df23286e
    • T
      spi: spi-mxs: Change flag arguments in txrx functions to bit flags · 28cad125
      Trent Piepho 提交于
      There are three flag arguments to the PIO and DMA txrx functions.  Two
      are passed as pointers to integers, even though they are input only
      and not modified, which makes no sense to do.  The third is passed as
      an integer.
      
      The compiler must use an argument register or stack variable for each
      flag this way.  Using bitflags in a single flag argument is more
      efficient and produces smaller code, since all the flags can fit in a
      single register.  And all the flag arguments get cumbersome,
      especially when more are added for things like GPIO chipselects.
      
      The "first" flag is never used, so can just be deleted.
      
      The "last" flag is renamed to DEASSERT_CS, since that's really what it
      does.  The spi_transfer cs_change flag means that CS might be
      de-asserted on a transfer which is not last and not de-assert on the
      last transfer, so it is not which transfer is the last we need to know
      but rather the transfers after which CS should be de-asserted.
      
      This also extends the driver to not ignore cs_change when setting the
      DEASSERT_CS nee "last" flag.
      Signed-off-by: NTrent Piepho <tpiepho@gmail.com>
      Cc: Marek Vasut <marex@denx.de>
      Cc: Fabio Estevam <fabio.estevam@freescale.com>
      Cc: Shawn Guo <shawn.guo@linaro.org>
      Signed-off-by: NMark Brown <broonie@linaro.org>
      28cad125
    • T
      spi: spi-mxs: Always clear INGORE_CRC, to keep CS asserted · 75e73fa2
      Trent Piepho 提交于
      INGORE_CRC, better named DEASSERT_CS, should be cleared on all tranfers
      except the last.  So instead of only clearing it on the first transfer, we
      can just always clear it.  It will set on the last transfer.
      
      This removes the only use of the "first" flag in the transfer functions, so
      that flag can be then be removed.
      Signed-off-by: NTrent Piepho <tpiepho@gmail.com>
      Cc: Marek Vasut <marex@denx.de>
      Cc: Fabio Estevam <fabio.estevam@freescale.com>
      Cc: Shawn Guo <shawn.guo@linaro.org>
      Signed-off-by: NMark Brown <broonie@linaro.org>
      75e73fa2
    • T
      spi: spi-mxs: Remove mxs_spi_enable and mxs_spi_disable · f5bc7384
      Trent Piepho 提交于
      These functions consist of nothing but one single writel call and are
      only called once.  And the names really aren't accurate or clear,
      since they don't enable or disble SPI.  Rather they set the bit that
      controls the state of CS at the end of transfer.  It easier to follow
      the code to just set this bit with a writel() along with all the other
      bits being set in the same function.
      Signed-off-by: NTrent Piepho <tpiepho@gmail.com>
      Cc: Marek Vasut <marex@denx.de>
      Cc: Fabio Estevam <fabio.estevam@freescale.com>
      Cc: Shawn Guo <shawn.guo@linaro.org>
      Signed-off-by: NMark Brown <broonie@linaro.org>
      f5bc7384
    • T
      spi: spi-mxs: Always set LOCK_CS · 58f46e41
      Trent Piepho 提交于
      There are two bits which control the CS line in the CTRL0 register:
      LOCK_CS and IGNORE_CRC.  The latter would be better named DEASSERT_CS
      in SPI mode.
      
      LOCK_CS keeps CS asserted though the entire transfer.  This should
      always be set.  The DMA code will always set it, explicitly on the
      first segment of the first transfer, and then implicitly on all the
      rest by never clearing the bit from the value read from the ctrl0
      register.
      
      The PIO code will explicitly set it for the first transfer, leave it
      set for intermediate transfers, and then clear it for the final
      transfer.  It should not clear it.
      
      The only reason to not set LOCK_CS would be to attempt an altered
      protocol where CS pulses between each word.  Though don't get your
      hopes up if you want to do this, as the hardware doesn't appear to do
      this in any sane manner.  It appears to be related to the hardware
      FIFO fill level.
      
      The code can be simplified by just setting LOCK_CS once and then not
      needing to deal with it at all in the PIO and DMA transfer functions.
      Signed-off-by: NTrent Piepho <tpiepho@gmail.com>
      Cc: Marek Vasut <marex@denx.de>
      Cc: Fabio Estevam <fabio.estevam@freescale.com>
      Cc: Shawn Guo <shawn.guo@linaro.org>
      Signed-off-by: NMark Brown <broonie@linaro.org>
      58f46e41
  7. 26 9月, 2013 1 次提交
  8. 07 8月, 2013 1 次提交
  9. 22 7月, 2013 1 次提交
  10. 15 7月, 2013 3 次提交
  11. 30 5月, 2013 1 次提交
  12. 13 5月, 2013 1 次提交
  13. 04 4月, 2013 2 次提交
  14. 05 2月, 2013 1 次提交
  15. 26 1月, 2013 1 次提交
  16. 08 12月, 2012 1 次提交
  17. 17 10月, 2012 2 次提交
  18. 06 9月, 2012 5 次提交
    • M
      spi/mxs: Make the SPI block clock speed configurable via DT · e64d07a2
      Marek Vasut 提交于
      Add "clock-frequency" property, which allows configuring the SPI block's
      base speed.
      Signed-off-by: NMarek Vasut <marex@denx.de>
      Signed-off-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
      e64d07a2
    • M
      mxs/spi: Rework the mxs_ssp_timeout to be more readable · f13639dc
      Marek Vasut 提交于
      Rework the mxs_ssp_timeout() function to make it a bit more readable
      and hopefully less error prone. Also, have only one successful exit
      from the function and one failing exit instead of two.
      
      Finally, discard the udelay() from this function altogether, as this
      tightloop is quick enough it's pointless.
      Signed-off-by: NMarek Vasut <marex@denx.de>
      Signed-off-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
      f13639dc
    • M
      mxs/spi: Decrement the DMA/PIO border · 727c10e3
      Marek Vasut 提交于
      This driver checks the length of transfer to be made and based
      on this information, either chooses to transfer data via DMA or
      PIO. Decrement this border further to gain better performace eg.
      during SPI flash writes.
      
      Empiric measurement shows that this gives extra 3kB/s write speed
      with a M25P80 flash clocked at 40MHz.
      Signed-off-by: NMarek Vasut <marex@denx.de>
      Signed-off-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
      727c10e3
    • M
      mxs/spi: Increment the transfer length only if transfer succeeded · 204e706f
      Marek Vasut 提交于
      The transfer function incremented (struct spi_message)->actual_length
      unconditionally, even if the transfer failed. Rectify this by incrementing
      this only if transfer succeeded.
      Signed-off-by: NMarek Vasut <marex@denx.de>
      Signed-off-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
      204e706f
    • M
      mxs/spi: Fix issues when doing long continuous transfer · 010b4818
      Marek Vasut 提交于
      When doing long continuous transfer, eg. from SPI flash via /dev/mtd,
      the driver dies. This is caused by a bug in the DMA chaining. Rework
      the DMA transfer code so that this issue does not happen any longer.
      
      This involves proper allocation of correct amount of sg-list members.
      Also, this means proper creation of DMA descriptors. There is actually an
      important catch to this, the data transfer descriptors must be interleaved
      with PIO register write descriptor, otherwise the transfer stalls. This
      can be done in one descriptor, but due to the limitation of the DMA API,
      it's not possible.
      
      It turns out that in order for the SPI DMA to properly support
      continuous transfers longer than 65280 bytes, there are some very
      important parts that were left out from the documentation about about
      the PIO transfer that is used.
      
      Firstly, the XFER_SIZE register is not written with the whole length
      of a transfer, but is written by each and every chained descriptor
      with the length of the descriptors data buffer.
      
      Next, unlike the demo code supplied by FSL, which only writes one PIO
      word per descriptor, this does not apply if the descriptors are chained,
      since the XFER_SIZE register must be written. Therefore, it is essential
      to use four PIO words, CTRL0, CMD0, CMD1, XFER_SIZE. CMD0 and CMD1 are
      written with zero, since they don't apply. The DMA programs the PIO words
      in an incrementing order, so four PIO words.
      
      Finally, unlike the demo code supplied by FSL, the SSP_CTRL0_IGNORE_CRC
      must not be set during the whole transfer, but it must be set only on the
      last descriptor in the chain.
      
      Lastly, this code lends code from drivers/mtd/nand/omap2.c, which solves
      trouble when the buffer supplied to the DMA transfer was vmalloc()'d. So
      with this patch, it's safe to use /dev/mtdblockX interface again.
      Signed-off-by: NMarek Vasut <marex@denx.de>
      Signed-off-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
      010b4818
  19. 28 8月, 2012 2 次提交
    • G
      spi/mxs: Fix device remove function · 7d520d28
      Guenter Roeck 提交于
      The call sequence spi_alloc_master/spi_register_master/spi_unregister_master
      is complete; it reduces the device reference count to zero, which results in
      device memory being freed. The remove function accesses the freed memory after
      the call to spi_unregister_master(), _and_ it calls spi_master_put on the freed
      memory.
      
      Acquire a reference to the SPI master device and release it after cleanup is
      complete (with the existing spi_master_put) to solve the problem.
      
      Also, the device subsystem ensures that the remove function is only called once,
      and resets device driver data to NULL. Remove the unnecessaary calls to
      platform_set_drvdata().
      Signed-off-by: NGuenter Roeck <linux@roeck-us.net>
      Reviewed-by: NMarek Vasut <marex@denx.de>
      Signed-off-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
      7d520d28
    • M
      mxs/spi: Fix misuse of init_completion · 41682e03
      Marek Vasut 提交于
      The init_completion() call does reinit not only the variable carrying
      the flag that the completion finished, but also initialized the
      waitqueue associated with the completion. On the contrary, the
      INIT_COMPLETION() call only reinits the flag.
      
      In case there was anything still stuck in the waitqueue, subsequent call
      to init_completion() would be able to create possible race condition. This
      patch uses the proper function and moves init_completion() into .probe() call
      of the driver, to be issued only once.
      
      Note that such scenario is impossible, since two threads can never enter the
      mxs_spi_txrx_dma(), since whole this section is protected by mutex in SPI core.
      This by no means allows this issue to exit though.
      Signed-off-by: NMarek Vasut <marex@denx.de>
      Cc: Chris Ball <cjb@laptop.org>
      Cc: Shawn Guo <shawn.guo@linaro.org>
      Cc: Mark Brown <broonie@opensource.wolfsonmicro.com>
      Cc: Fabio Estevam <fabio.estevam@freescale.com>
      Signed-off-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
      41682e03