15 Dec, 2019

1 commit

  • With of-platdata we need to create drivers for particular chips, or at
    least drivers that are separate from the standard code, since C structures
    are created by dtoc which are private to that driver.

    To avoid duplicating the probing code, export this probe function for use
    by these drivers.

    Signed-off-by: Simon Glass
    Reviewed-by: Bin Meng

    Simon Glass
     

26 Mar, 2019

2 commits

  • This converts the following to Kconfig:
    CONFIG_ENV_SPI_BUS
    CONFIG_ENV_SPI_CS
    CONFIG_ENV_SPI_MAX_HZ
    CONFIG_ENV_SPI_MODE

    Most of time these value are not needed, CONFIG_SF_DEFAULT
    with same value is used, so I introduced CONFIG_USE_ENV_SPI_*
    to force the associated value for the environment.

    Signed-off-by: Patrick Delaunay

    Patrick Delaunay
     
  • This converts the following to Kconfig:
    CONFIG_SF_DEFAULT_BUS
    CONFIG_SF_DEFAULT_CS
    CONFIG_SF_DEFAULT_MODE
    CONFIG_SF_DEFAULT_SPEED

    I use moveconfig script and then manual check on generated u-boot.cfg
    to solve the remaining issue.

    Signed-off-by: Patrick Delaunay

    Patrick Delaunay
     

07 Feb, 2019

1 commit

  • Switch spi_flash_* interfaces to call into new SPI NOR framework via MTD
    layer. Fix up sf_dataflash to work in legacy way. And update sandbox to
    use new interfaces/definitions

    Signed-off-by: Vignesh R
    Tested-by: Simon Goldschmidt
    Tested-by: Stefan Roese
    Tested-by: Horatiu Vultur
    Reviewed-by: Jagan Teki
    Tested-by: Jagan Teki #zynq-microzed

    Vignesh R
     

21 Nov, 2018

1 commit


09 Jul, 2018

1 commit


07 May, 2018

1 commit

  • When U-Boot started using SPDX tags we were among the early adopters and
    there weren't a lot of other examples to borrow from. So we picked the
    area of the file that usually had a full license text and replaced it
    with an appropriate SPDX-License-Identifier: entry. Since then, the
    Linux Kernel has adopted SPDX tags and they place it as the very first
    line in a file (except where shebangs are used, then it's second line)
    and with slightly different comment styles than us.

    In part due to community overlap, in part due to better tag visibility
    and in part for other minor reasons, switch over to that style.

    This commit changes all instances where we have a single declared
    license in the tag as both the before and after are identical in tag
    contents. There's also a few places where I found we did not have a tag
    and have introduced one.

    Signed-off-by: Tom Rini

    Tom Rini
     

24 Jan, 2018

1 commit

  • Commit ba45756 ("dm: x86: spi: Convert ICH SPI driver to driver model")
    removed the last usage of the spi_flash_probe_fdt function, rendering it
    obsolete.

    This patch removes the function.

    Reviewed-by: Simon Glass
    Reviewed-by: Jagan Teki
    Signed-off-by: Mario Six

    Mario Six
     

07 Oct, 2016

1 commit

  • At present there are two SPI functions only used by freescale which are
    defined in the spi_flash.h header. One function name matches an existing
    generic SPL function.

    Move these into a private header to avoid confusion.

    Arcturus looks like it does not actually support SPI, so drop the SPI code
    from that board.

    Signed-off-by: Simon Glass
    Reviewed-by: Tom Rini

    Simon Glass
     

19 Jan, 2016

1 commit

  • In a number of places we had wordings of the GPL (or LGPL in a few
    cases) license text that were split in such a way that it wasn't caught
    previously. Convert all of these to the correct SPDX-License-Identifier
    tag.

    Signed-off-by: Tom Rini

    Tom Rini
     

13 Jan, 2016

1 commit


13 Nov, 2015

1 commit

  • commit c3c016c "sf: Add SPI NOR protection mechanism" introduced
    flash_lock()/flash_unlock()/flash_is_locked() methods for SPI flash,
    but not every flash driver supplies these. We should test these
    methods against NULL before actually calling them.

    Signed-off-by: Bin Meng
    Reviewed-by: Fabio Estevam
    Reviewed-by: Jagan Teki

    Bin Meng
     

06 Nov, 2015

1 commit

  • Many SPI flashes have protection bits (BP2, BP1 and BP0) in the
    status register that can protect selected regions of the SPI NOR.

    Take these bits into account when performing erase operations,
    making sure that the protected areas are skipped.

    Tested on a mx6qsabresd:

    => sf probe
    SF: Detected M25P32 with page size 256 Bytes, erase size 64 KiB, total 4 MiB
    => sf protect lock 0x3f0000 0x10000
    => sf erase 0x3f0000 0x10000
    offset 0x3f0000 is protected and cannot be erased
    SF: 65536 bytes @ 0x3f0000 Erased: ERROR
    => sf protect unlock 0x3f0000 0x10000
    => sf erase 0x3f0000 0x10000
    SF: 65536 bytes @ 0x3f0000 Erased: OK

    Signed-off-by: Fabio Estevam
    [re-worked to fit the lock common to dm and non-dm]
    Signed-off-by: Jagan Teki
    Reviewed-by: Tom Rini
    Reviewed-by: Heiko Schocher
    Reviewed-by: Jagan Teki

    Fabio Estevam
     

25 Oct, 2015

2 commits

  • This patch adds flag status register reading support to
    spi_flash_cmd_wait_ready.

    Cc: Simon Glass
    Cc: Marek Vasut
    Cc: Michal Simek
    Cc: Siva Durga Prasad Paladugu
    Cc: Stefan Roese
    Cc: Tom Warren
    Cc: Tom Rini
    Cc: Hou Zhiqiang
    Tested-by: Jagan Teki
    Tested-by: Bin Meng
    Signed-off-by: Jagan Teki

    Jagan Teki
     
  • Use the flash->flags for generic usage, not only for dm-spi-flash,
    this will be used for future flag additions.

    [Correct the spi flash flags detect logic]
    Signed-off-by: Bin Meng
    Tested-by: Bin Meng
    Signed-off-by: Jagan Teki

    Jagan Teki
     

01 Jul, 2015

1 commit


28 Apr, 2015

1 commit


22 Apr, 2015

1 commit


19 Apr, 2015

1 commit


23 Oct, 2014

2 commits

  • Add a driver model uclass for SPI flash which supports the common
    operations (read, write, erase). Since we must keep support for the
    non-dm interface, some modification of the spi_flash header is required.

    CONFIG_DM_SPI_FLASH is used to enable driver model for SPI flash.

    Signed-off-by: Simon Glass
    Reviewed-by: Jagannadha Sutradharudu Teki

    Simon Glass
     
  • Since spi_flash.h is supposed to be the public API for SPI flash, move
    private things to sf_internal.h. Also tidy up a few comment nits.

    Signed-off-by: Simon Glass
    Reviewed-by: Jagannadha Sutradharudu Teki

    Simon Glass
     

24 Sep, 2014

1 commit

  • Currently, CONFIG_SPL_SPI_* #defines are used for controlling SPI boot in
    SPL. These #defines do not allow the user to select SPI mode for the SPI flash
    (there's no CONFIG_SPL_SPI_MODE, so the SPI mode is hardcoded in
    spi_spl_load.c), and duplicate information already provided by
    CONFIG_SF_DEFAULT_* #defines.

    Kill CONFIG_SPL_SPI_*, and use CONFIG_SF_DEFAULT_* instead.

    Cc: Tom Rini
    Cc: Marek Vasut
    Cc: Sudhakar Rajashekhara
    Cc: Lokesh Vutla
    Cc: Vitaly Andrianov
    Cc: Lars Poeschel
    Cc: Bo Shen
    Cc: Hannes Petermaier
    Cc: Michal Simek
    Acked-by: Marek Vasut
    Signed-off-by: Nikita Kiryanov
    Reviewed-by: Jagannadha Sutradharudu Teki

    Nikita Kiryanov
     

23 Apr, 2014

1 commit


07 Mar, 2014

1 commit


13 Jan, 2014

3 commits


11 Jan, 2014

5 commits


10 Dec, 2013

1 commit


15 Oct, 2013

1 commit


07 Oct, 2013

6 commits