mbox

[U-Boot] Pull request: u-boot-spi/master

Message ID 1435605892-2507-1-git-send-email-jteki@openedev.com
State Accepted
Delegated to: Tom Rini
Headers show

Pull-request

git://git.denx.de/u-boot-spi.git master

Message

Jagan Teki June 29, 2015, 7:24 p.m. UTC
Please pull this request, few importent feature list on spi-flash front
like data flash and spi flash MTD supports.

thanks!
Jagan.

The following changes since commit 7853d76b0bdab9b1a4da0bba8da6d12b5b8a303f:

  Merge git://git.denx.de/u-boot-marvell (2015-06-28 16:31:32 -0400)

are available in the git repository at:


  git://git.denx.de/u-boot-spi.git master

for you to fetch changes up to 8ee81b7f9b675cb675119a998b04ca843d24ddcd:

  mtd, spi: Check if flash pointer is used (2015-06-30 00:40:11 +0530)

----------------------------------------------------------------
Daniel Schwierzeck (1):
      mtd, spi: Add MTD layer driver

Haikun Wang (5):
      dm: sf: Add Atmel DataFlash spi flash driver
      dm: ls1021aqds: dts: Use "spi_dataflash" driver instead of "spi_flash_std" for DSPI flash
      arm: ls102xa: Enable Driver Model SPI for ls1021aqds
      arm: ls102xa: Enable Driver Model SPI for ls1021atwr
      defconfig: ls1021a: Add OF_CONTROL and DM support

Heiko Schocher (3):
      mtd, nand: Move common functions from cmd_nand.c to common place
      spi, sf: Use offset and size in sf cmd from mtdpartition
      mtd, spi: Check if flash pointer is used

 README                            |   9 +
 arch/arm/dts/ls1021a-qds.dts      |   2 +-
 common/cmd_nand.c                 | 148 ++------
 common/cmd_onenand.c              |  19 +-
 common/cmd_sf.c                   |  61 ++--
 common/cmd_test.c                 |  12 +-
 configs/ls1021aqds_qspi_defconfig |   4 +
 configs/ls1021atwr_qspi_defconfig |   4 +
 drivers/mtd/Makefile              |   4 +-
 drivers/mtd/mtd_uboot.c           |  99 ++++++
 drivers/mtd/spi/Makefile          |   2 +
 drivers/mtd/spi/sf_dataflash.c    | 711 ++++++++++++++++++++++++++++++++++++++
 drivers/mtd/spi/sf_internal.h     |   5 +
 drivers/mtd/spi/sf_mtd.c          | 104 ++++++
 drivers/mtd/spi/sf_probe.c        |  11 +-
 include/configs/ls1021aqds.h      |  13 +-
 include/configs/ls1021atwr.h      |   9 +-
 include/linux/mtd/mtd.h           |   5 +
 include/vsprintf.h                |   2 +
 lib/vsprintf.c                    |  16 +
 20 files changed, 1062 insertions(+), 178 deletions(-)
 create mode 100644 drivers/mtd/mtd_uboot.c
 create mode 100644 drivers/mtd/spi/sf_dataflash.c
 create mode 100644 drivers/mtd/spi/sf_mtd.c

Comments

Tom Rini June 29, 2015, 9:51 p.m. UTC | #1
On Tue, Jun 30, 2015 at 12:54:52AM +0530, Jagan Teki wrote:

> Please pull this request, few importent feature list on spi-flash front
> like data flash and spi flash MTD supports.
> 
> thanks!
> Jagan.
> 
> The following changes since commit 7853d76b0bdab9b1a4da0bba8da6d12b5b8a303f:
> 
>   Merge git://git.denx.de/u-boot-marvell (2015-06-28 16:31:32 -0400)
> 
> are available in the git repository at:
> 
> 
>   git://git.denx.de/u-boot-spi.git master
> 
> for you to fetch changes up to 8ee81b7f9b675cb675119a998b04ca843d24ddcd:
> 
>   mtd, spi: Check if flash pointer is used (2015-06-30 00:40:11 +0530)
> 

Applied to u-boot/master, thanks!