13 Jan, 2014

4 commits


11 Jan, 2014

9 commits


19 Dec, 2013

2 commits


10 Dec, 2013

2 commits

  • This adds a SPI flash driver which simulates SPI flash clients.
    Currently supports the bare min that U-Boot requires: you can
    probe, read, erase, and write. Should be easy to extend to make
    it behave more exactly like a real SPI flash, but this is good
    enough to merge now.

    sjg@chromium.org added a README and tidied up code a little.
    Added a required map_sysmem() for sandbox.

    Signed-off-by: Mike Frysinger
    Signed-off-by: Simon Glass

    Mike Frysinger
     
  • This allows us to put the SPI flash chip inside the SPI interface node,
    with U-Boot finding the correct bus and chip select automatically.

    Signed-off-by: Simon Glass

    Simon Glass
     

16 Oct, 2013

3 commits


07 Oct, 2013

4 commits

  • - Add spaces, tabs
    - Commenting.
    - Rearrange code.
    - Add static qualifier for missing func.
    - Remove memory_map from ramtron.c
    - Ramtron: spi_flash_internal.h -> sf_internal.h

    Signed-off-by: Jagannadha Sutradharudu Teki

    Jagannadha Sutradharudu Teki
     
  • Qspi controller can have a memory mapped port which can be used for
    data read. Added support to enable memory mapped port read.

    This patch enables the following:
    - It enables exchange of memory map address between mtd and qspi
    through the introduction of "memory_map" flag.
    - Add support to communicate to the driver that memory mapped
    transfer is to be started through introduction of new flags like
    "SPI_XFER_MEM_MAP" and "SPI_XFER_MEM_MAP_END".

    This will enable the spi controller to do memory mapped configurations
    if required.

    Signed-off-by: Sourav Poddar
    Reviewed-by: Jagannadha Sutradharudu Teki

    Poddar, Sourav
     
  • Add support for EON EN25S64 SPI flash.

    Signed-off-by: Priyanka Jain
    Signed-off-by: Jagannadha Sutradharudu Teki

    Priyanka Jain
     
  • Renamed:
    spi_flash.c -> sf.c
    spi_flash_internal.h -> sf_internal.h
    spi_flash_ops.c -> sf_ops.c
    spi_flash_probe.c -> sf_probe.c

    Signed-off-by: Jagannadha Sutradharudu Teki

    Jagannadha Sutradharudu Teki