1. 11 10月, 2017 1 次提交
    • 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. 27 9月, 2017 2 次提交
  4. 18 9月, 2017 4 次提交
  5. 14 9月, 2017 5 次提交
  6. 09 9月, 2017 1 次提交
  7. 05 9月, 2017 3 次提交
  8. 04 9月, 2017 1 次提交
  9. 30 8月, 2017 1 次提交
    • L
      mtd: nand: make Samsung SLC NAND usable again · 69fc0129
      Lothar Waßmann 提交于
      commit c51d0ac5 ("mtd: nand: Move Samsung specific init/detection
      logic in nand_samsung.c") introduced a regression for Samsung SLC NAND
      chips. Prior to this commit chip->bits_per_cell was initialized by calling
      nand_get_bits_per_cell() before using nand_is_slc().
      With the offending commit this call is skipped, leaving
      chip->bits_per_cell cleared to zero when the manufacturer specific
      '.detect' function calls nand_is_slc() which in turn interprets
      bits_per_cell != 1 as indication for an MLC chip.
      The effect is that e.g. a K9F1G08U0F NAND chip is falsely detected as
      MLC NAND with 4KiB page size rather than SLC with 2KiB page size.
      
      Add a call to nand_get_bits_per_cell() before calling the .detect hook
      function in nand_manufacturer_detect(), so that the nand_is_slc()
      calls in the manufacturer specific code will return correct results.
      
      Fixes: c51d0ac5 ("mtd: nand: Move Samsung specific init/detection logic in nand_samsung.c")
      Cc: <stable@vger.kernel.org>
      Signed-off-by: NLothar Waßmann <LW@KARO-electronics.de>
      Signed-off-by: NBoris Brezillon <boris.brezillon@free-electrons.com>
      69fc0129
  10. 25 8月, 2017 2 次提交
  11. 23 8月, 2017 19 次提交