1. 11 10月, 2017 3 次提交
    • A
      mtd: spi-nor: add a quad_enable callback in struct flash_info · e2707285
      Andy Yan 提交于
      Some manufacturers may use different bit to set QE on different
      memories.
      
      The GD25Q256 from GigaDevice is an example, which uses S6(bit 6
      of the Status Register-1) to set QE, which is different with
      other supported memories from GigaDevice that use S9(bit 1 of
      the Status Register-2). This makes it is impossible to select
      the quad enable method by distinguishing the MFR. This patch
      introduce a quad_enable function which can be set per memory
      in the flash_info list table.
      Signed-off-by: NAndy Yan <andy.yan@rock-chips.com>
      Signed-off-by: NCyrille Pitchen <cyrille.pitchen@wedev4u.fr>
      e2707285
    • K
      mtd: spi-nor: Add spi-nor mtd resume handler · d6084fc8
      Kamal Dasu 提交于
      Implemented and populated spi-nor mtd PM handlers for resume ops.
      spi-nor resume op re-initializes spi-nor flash to its probed
      state by calling the newly implemented spi_nor_init() function.
      Signed-off-by: NKamal Dasu <kdasu.kdev@gmail.com>
      Signed-off-by: NCyrille Pitchen <cyrille.pitchen@wedev4u.fr>
      d6084fc8
    • K
      mtd: spi-nor: add spi_nor_init() function · 46dde01f
      Kamal Dasu 提交于
      This patch extracts some chunks from spi_nor_init_params and spi_nor_scan()
       and moves them into a new spi_nor_init() function.
      
      Indeed, spi_nor_init() regroups all the required SPI flash commands to be
      sent to the SPI flash memory before performing any runtime operations
      (Fast Read, Page Program, Sector Erase, ...). Hence spi_nor_init():
      1) removes the flash protection if applicable for certain vendors.
      2) sets the Quad Enable bit, if needed, before using Quad SPI protocols.
      3) makes the memory enter its (stateful) 4-byte address mode, if needed,
         for SPI flash memory > 128Mbits not supporting the 4-byte address
         instruction set.
      
      spi_nor_scan() now ends by calling spi_nor_init() once the probe phase has
      completed. Further patches could also use spi_nor_init() to implement the
      mtd->_resume() handler for the spi-nor framework.
      Signed-off-by: NKamal Dasu <kdasu.kdev@gmail.com>
      Signed-off-by: NCyrille Pitchen <cyrille.pitchen@wedev4u.fr>
      46dde01f
  2. 10 10月, 2017 1 次提交
  3. 18 9月, 2017 2 次提交
  4. 23 8月, 2017 1 次提交
  5. 02 8月, 2017 1 次提交
    • A
      mtd: spi-nor: Recover from Spansion/Cypress errors · c4b3eacc
      Alexander Sverdlin 提交于
      S25FL{128|256|512}S datasheets say:
      "When P_ERR or E_ERR bits are set to one, the WIP bit will remain set to
      one indicating the device remains busy and unable to receive new operation
      commands. A Clear Status Register (CLSR) command must be received to return
      the device to standby mode."
      
      Current spi-nor code works until first error occurs, but write/erase errors
      are not just rare hardware failures, they also occur if user tries to flash
      write-protected areas. After such attempt no SPI command can be executed
      any more and even read fails. This patch adds support for P_ERR and E_ERR
      bits in Status Register 1 (so that operation fails immediately and not
      after a long timeout) and proper recovery from the error condition.
      
      Tested on Spansion S25FS128S, which is supported by S25FL129P entry.
      Signed-off-by: NAlexander Sverdlin <alexander.sverdlin@nokia.com>
      Signed-off-by: NCyrille Pitchen <cyrille.pitchen@wedev4u.fr>
      c4b3eacc
  6. 18 7月, 2017 1 次提交
  7. 27 6月, 2017 2 次提交
  8. 21 6月, 2017 3 次提交
  9. 16 5月, 2017 4 次提交
    • D
      mtd: spi-nor: Potential oops on error path in quad_enable() · 05d090f0
      Dan Carpenter 提交于
      Before commit cff959958832 ("mtd: spi-nor: introduce SPI 1-2-2 and SPI
      1-4-4 protocols") then we treated 1 as -EINVAL in the caller but after
      that commit we changed to propagate the return.  My static checker
      complains that it's eventually passed to an ERR_PTR() and later
      dereferenced, but I'm not totally certain if that's true.  Regardless,
      returning 1 is wrong.
      Signed-off-by: NDan Carpenter <dan.carpenter@oracle.com>
      Signed-off-by: NCyrille Pitchen <cyrille.pitchen@wedev4u.fr>
      05d090f0
    • C
      mtd: spi-nor: introduce Octo SPI protocols · fe488a5e
      Cyrille Pitchen 提交于
      This patch starts adding support to Octo SPI protocols (SPI x-y-8).
      
      Op codes for Fast Read and/or Page Program operations using Octo SPI
      protocols are not known yet (no JEDEC specification has defined them yet)
      but we'd rather introduce the Octo SPI protocols now so it's done as it
      should be.
      Signed-off-by: NCyrille Pitchen <cyrille.pitchen@atmel.com>
      Reviewed-by: NMarek Vasut <marek.vasut@gmail.com>
      fe488a5e
    • C
      mtd: spi-nor: introduce Double Transfer Rate (DTR) SPI protocols · 15f55331
      Cyrille Pitchen 提交于
      This patch introduces support to Double Transfer Rate (DTR) SPI protocols.
      DTR is used only for Fast Read operations.
      
      According to manufacturer datasheets, whatever the number of I/O lines
      used during instruction (x) and address/mode/dummy (y) clock cycles, DTR
      is used only during data (z) clock cycles of SPI x-y-z protocols.
      Signed-off-by: NCyrille Pitchen <cyrille.pitchen@atmel.com>
      Reviewed-by: NMarek Vasut <marek.vasut@gmail.com>
      15f55331
    • C
      mtd: spi-nor: introduce SPI 1-2-2 and SPI 1-4-4 protocols · cfc5604c
      Cyrille Pitchen 提交于
      This patch changes the prototype of spi_nor_scan(): its 3rd parameter
      is replaced by a 'struct spi_nor_hwcaps' pointer, which tells the spi-nor
      framework about the actual hardware capabilities supported by the SPI
      controller and its driver.
      
      Besides, this patch also introduces a new 'struct spi_nor_flash_parameter'
      telling the spi-nor framework about the hardware capabilities supported by
      the SPI flash memory and the associated settings required to use those
      hardware caps.
      
      Then, to improve the readability of spi_nor_scan(), the discovery of the
      memory settings and the memory initialization are now split into two
      dedicated functions.
      
      1 - spi_nor_init_params()
      
      The spi_nor_init_params() function is responsible for initializing the
      'struct spi_nor_flash_parameter'. Currently this structure is filled with
      legacy values but further patches will allow to override some parameter
      values dynamically, for instance by reading the JESD216 Serial Flash
      Discoverable Parameter (SFDP) tables from the SPI memory.
      The spi_nor_init_params() function only deals with the hardware
      capabilities of the SPI flash memory: especially it doesn't care about
      the hardware capabilities supported by the SPI controller.
      
      2 - spi_nor_setup()
      
      The second function is called once the 'struct spi_nor_flash_parameter'
      has been initialized by spi_nor_init_params().
      With both 'struct spi_nor_flash_parameter' and 'struct spi_nor_hwcaps',
      the new argument of spi_nor_scan(), spi_nor_setup() computes the best
      match between hardware caps supported by both the (Q)SPI memory and
      controller hence selecting the relevant settings for (Fast) Read and Page
      Program operations.
      Signed-off-by: NCyrille Pitchen <cyrille.pitchen@atmel.com>
      Reviewed-by: NMarek Vasut <marek.vasut@gmail.com>
      cfc5604c
  10. 17 4月, 2017 1 次提交
  11. 11 4月, 2017 1 次提交
  12. 23 3月, 2017 4 次提交
  13. 10 3月, 2017 1 次提交
  14. 08 3月, 2017 1 次提交
  15. 10 2月, 2017 8 次提交
  16. 09 2月, 2017 1 次提交
  17. 27 11月, 2016 3 次提交
  18. 26 11月, 2016 2 次提交