From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jagan Teki Date: Tue, 23 Jun 2015 20:47:25 +0530 Subject: [U-Boot] Pull request: u-boot-spi/master Message-ID: <1435072645-3212-1-git-send-email-jteki@openedev.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Hi Tom, 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 c6265f7f3410b5e5763181cdd123a3f6fcd9fd58: CPCI4052: Remove CONFIG_SYS_LONGHELP (2015-06-18 16:19:00 -0400) are available in the git repository at: git://git.denx.de/u-boot-spi.git master for you to fetch changes up to 1070bf38a5c92c8d1a77b26380988957890ba6de: mtd, spi: Check if flash pointer is used (2015-06-23 01:13:23 +0530) ---------------------------------------------------------------- Daniel Schwierzeck (1): mtd, spi: Add MTD layer driver Haikun Wang (1): arm: ls102xa: Enable Driver Model SPI for ls1021atwr Haikun.Wang at freescale.com (3): dm: sf: Add Atmel DataFlash spi flash driver arm: dts: s1021a-qds: Update dspiflash compatible to use "spi_dataflash" arm: ls102xa: Enable Driver Model SPI for ls1021aqds 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 +- 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 | 10 +- include/linux/mtd/mtd.h | 5 + include/vsprintf.h | 2 + lib/vsprintf.c | 16 + 18 files changed, 1055 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