1. 07 6月, 2014 15 次提交
    • P
      am335x: update README for BCH16 · 867f0304
      pekon gupta 提交于
      updates documentation with explanation on how to select ECC schemes.
      Signed-off-by: NPekon Gupta <pekon@ti.com>
      867f0304
    • P
      mtd: nand: omap: add support for BCH16_ECC - NAND driver updates · 46840f66
      pekon gupta 提交于
      This patch add support for BCH16_ECC to omap_gpmc driver.
      
      *need to BCH16 ECC scheme*
      With newer SLC Flash technologies and MLC NAND, and large densities, pagesizes
      Flash devices have become more suspectible to bit-flips. Thus stronger
      ECC schemes are required for protecting the data.
      But stronger ECC schemes have come with larger-sized ECC syndromes which require
      more space in OOB/Spare. This puts constrains like;
      (a) BCH16_ECC can correct 16 bit-flips per 512Bytes of data.
      (b) BCH16_ECC generates 26-bytes of ECC syndrome / 512B.
      Due to (b) this scheme can only be used with NAND devices which have enough
      OOB to satisfy following equation:
      OOBsize per page >= 26 * (page-size / 512)
      Signed-off-by: NPekon Gupta <pekon@ti.com>
      46840f66
    • P
      mtd: nand: omap_gpmc: use macro for register definitions · 8d13a730
      pekon gupta 提交于
      GPMC can support simultaneous processing of 8 512Byte data chunks, in parallel
      Signed-off-by: NPekon Gupta <pekon@ti.com>
      8d13a730
    • P
      omap3: remove remnant macros GPMC_NAND_ECC_LP_x8_LAYOUT and GPMC_NAND_ECC_LP_x16_LAYOUT · 68128e0a
      pekon gupta 提交于
      OMAP3 used GPMC_NAND_ECC_LP_x8_LAYOUT and GPMC_NAND_ECC_LP_x16_LAYOUT macros
      to configure GPMC controller for x7 or x8 bit device connected to its interface.
      Now this information is encoded in CONFIG_SYS_NAND_DEVICE_WIDTH macro, so above
      macros can be completely removed.
      Signed-off-by: NPekon Gupta <pekon@ti.com>
      68128e0a
    • P
      mtd: nand: omap: add CONFIG_SYS_NAND_BUSWIDTH_16BIT to indicate NAND device bus-width · b80a6603
      pekon gupta 提交于
      GPMC controller needs to be configured based on bus-width of the NAND device
      connected to it. Also, dynamic detection of NAND bus-width from on-chip ONFI
      parameters is not possible in following situations:
      SPL:    SPL NAND drivers does not support ONFI parameter reading.
      U-boot: GPMC controller iniitalization is done in omap_gpmc.c:board_nand_init()
              which is called before probing for devices, hence any ONFI parameter
              information is not available during GPMC initialization.
      
      Thus, OMAP NAND driver expected board developers to explicitely write GPMC
      configurations specific to NAND device attached on board in board files itself.
      But this was troublesome for board manufacturers as they need to dive into
      lengthy platform & SoC documents to find details of GPMC registers and
      appropriate configurations to get NAND device working.
      
      This patch instead adds existing CONFIG_SYS_NAND_BUSWIDTH_16BIT to board config
      hich indicates that connected NAND device has x16 bus-width. And then based on
      this config GPMC driver itself initializes itself based on NAND bus-width. This
      keeps board developers free from knowing GPMC controller specific internals.
      Signed-off-by: NPekon Gupta <pekon@ti.com>
      b80a6603
    • D
      mtd: nand: fix GET/SET_FEATURES address on 16-bit devices · 6e1899e6
      David Mosberger 提交于
      As per following Sections in ONFI Spec, GET_FEATURES and SET_FEATURES also need
      byte-addressing on 16-bit devices.
      
      *Section: Target Initialization"
      "The Read ID and Read Parameter Page commands only use the lower 8-bits of the
       data bus. The host shall not issue commands that use a word data width on x16
       devices until the host determines the device supports a 16-bit data bus width
       in the parameter page."
      
      *Section: Bus Width Requirements*
      "When the host supports a 16-bit bus width, only data is transferred at the
       16-bit width. All address and command line transfers shall use only the lower
       8-bits of the data bus. During command transfers, the host may place any value
       on the upper 8-bits of the data bus. During address transfers, the host shall
       set the upper 8-bits of the data bus to 00h."
      
      So porting following commit from linux kernel
          commit e34fcb07a6d57411de6e15a47724fbe92c5caa42
          Author: David Mosberger <davidm@egauge.net>  (preserving authorship)
          mtd: nand: fix GET/SET_FEATURES address on 16-bit devices
      Signed-off-by: NPekon Gupta <pekon@ti.com>
      6e1899e6
    • B
      mtd: nand: force NAND_CMD_READID onto 8-bit bus · 27ce9e42
      Brian Norris 提交于
      As per following Sections in ONFI Spec, NAND_CMD_READID should use only
      lower 8-bit for transfering command, address and data even on x16 NAND device.
      
      *Section: Target Initialization"
      "The Read ID and Read Parameter Page commands only use the lower 8-bits of the
       data bus. The host shall not issue commands that use a word data width on x16
       devices until the host determines the device supports a 16-bit data bus width
       in the parameter page."
      
      *Section: Bus Width Requirements*
      "When the host supports a 16-bit bus width, only data is transferred at the
       16-bit width. All address and command line transfers shall use only the lower
       8-bits of the data bus. During command transfers, the host may place any value
       on the upper 8-bits of the data bus. During address transfers, the host shall
       set the upper 8-bits of the data bus to 00h."
      
      Thus porting  following commit from linux-kernel to ensure that column address
      is not altered to align to x16 bus when issuing NAND_CMD_READID command.
      
          commit 3dad2344e92c6e1aeae42df1c4824f307c51bcc7
          mtd: nand: force NAND_CMD_READID onto 8-bit bus
          Author: Brian Norris <computersforpeace@gmail.com> (preserving authorship)
      
          The NAND command helpers tend to automatically shift the column address
          for x16 bus devices, since most commands expect a word address, not a
          byte address. The Read ID command, however, expects an 8-bit address
          (i.e., 0x00, 0x20, or 0x40 should not be translated to 0x00, 0x10, or
          0x20).
      
          This fixes the column address for a few drivers which imitate the
          nand_base defaults.
      Signed-off-by: NPekon Gupta <pekon@ti.com>
      27ce9e42
    • B
      mtd: nand: don't use read_buf for 8-bit ONFI transfers · b9ae609f
      Brian Norris 提交于
      Porting below commit from linux-tree, preserving original authorship & commit log
      commit bd9c6e99b58255b9de1982711ac9487c9a2f18be
      Author:     Brian Norris <computersforpeace@gmail.com>
      mtd: nand: don't use read_buf for 8-bit ONFI transfers
      
        Use a repeated read_byte() instead of read_buf(), since for x16 buswidth
        devices, we need to avoid the upper I/O[16:9] bits. See the following
        commit for reference:
      
        commit 05f7835975dad6b3b517f9e23415985e648fb875 (from linux-tree)
        Author: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
        Date:   Thu Dec 5 22:22:04 2013 +0100
      
            mtd: nand: don't use {read,write}_buf for 8-bit transfers
      
        Now, I think that all barriers to probing ONFI on x16 devices are
        removed, so remove the check from nand_flash_detect_onfi().
      Signed-off-by: NPekon Gupta <pekon@ti.com>
      b9ae609f
    • P
      mtd: nand: omap: fix error-codes returned from omap-elm driver · 3f990dc8
      pekon gupta 提交于
      This patch
       omap-elm.c: replaces -ve integer value returned during errorneous condition,
                   with proper error-codes.
       omap-gpmc.c: updates omap-gpmc driver to pass error-codes returned from
                   omap-elm driver to upper layers
      Signed-off-by: NPekon Gupta <pekon@ti.com>
      Reviewed-by: NStefan Roese <sr@denx.de>
      3f990dc8
    • P
      mtd: nand: omap_gpmc: minor cleanup of omap_correct_data_bch · a09431da
      pekon gupta 提交于
      This patch tries to avoid some local pointer dereferences, by using common
      local variables in omap_correct_data_bch()
      Signed-off-by: NPekon Gupta <pekon@ti.com>
      Reviewed-by: NStefan Roese <sr@denx.de>
      a09431da
    • P
      mtd: nand: omap_gpmc: rename struct nand_bch_priv to struct omap_nand_info · 9233279f
      pekon gupta 提交于
      This patch renames 'struct nand_bch_priv' which currently holds private data only
      for BCH ECC schemes, into 'struct omap_nand_info' so that same can be used for
      all ECC schemes
      Signed-off-by: NPekon Gupta <pekon@ti.com>
      Reviewed-by: NStefan Roese <sr@denx.de>
      9233279f
    • P
      mtd: nand: omap_gpmc: remove unused members of 'struct nand_bch_priv' · d21e77ff
      pekon gupta 提交于
      This patch prepares to refactor 'struct nand_bch_priv' -> 'struct omap_nand_info'
      And thus performs following clean-ups:
       - remove nand_bch_priv.type: use nand_bch_priv.ecc_scheme instead
       - remove nand_bch_priv.mode: <unused>
      Signed-off-by: NPekon Gupta <pekon@ti.com>
      Reviewed-by: NStefan Roese <sr@denx.de>
      d21e77ff
    • P
      mtd: nand: omap_elm: use macros for register definitions · 0439d752
      pekon gupta 提交于
      This patch adds macros for following parameters of ELM Hardware engine
       - ELM_MAX_CHANNELS: ELM can process 8 data streams simultaneously
       - ELM_MAX_ERRORS: ELM can detect upto 16 ECC error when using BCH16 scheme
      Signed-off-by: NPekon Gupta <pekon@ti.com>
      Reviewed-by: NStefan Roese <sr@denx.de>
      0439d752
    • P
      mtd: nand: omap_elm: use bch_type instead of nibble count to differentiate between BCH4/BCH8/BCH16 · 41bbe4dd
      pekon gupta 提交于
      ELM hardware engine support ECC error detection for multiple ECC strengths like
       +------+------------------------+
       |Type  | ECC syndrome length    |
       +------+------------------------+
       |BCH4  | 6.5 bytes = 13 nibbles |
       |BCH8  | 13 byte = 26 nibbles   |
       |BCH16 | 26 bytes = 52 nibbles  |
       +------+------------------------+
      
      Current implementation of omap_elm driver uses ECC syndrom length (in 'nibbles')
      to differentiate between BCH4/BCH8/BCH16. This patch replaces it with 'bch_type'
      Signed-off-by: NPekon Gupta <pekon@ti.com>
      Reviewed-by: NStefan Roese <sr@denx.de>
      41bbe4dd
    • P
      mtd: nand: omap_elm: remove #include omap_gpmc.h · b98c5755
      pekon gupta 提交于
      There is no dependency of omap_elm.c on omap_gpmc.h
      Signed-off-by: NPekon Gupta <pekon@ti.com>
      Reviewed-by: NStefan Roese <sr@denx.de>
      b98c5755
  2. 02 6月, 2014 1 次提交
  3. 31 5月, 2014 1 次提交
  4. 29 5月, 2014 1 次提交
  5. 28 5月, 2014 12 次提交
  6. 27 5月, 2014 10 次提交