mbox

[U-Boot] Pull request: nand flash

Message ID 20160725184446.GA11163@home.buserror.net
State Accepted
Delegated to: Tom Rini
Headers show

Pull-request

git://git.denx.de/u-boot-nand-flash.git

Message

Crystal Wood July 25, 2016, 6:44 p.m. UTC
The following changes since commit 29d63a59eaf1c9f3b37e249cda2a97e5e4f183f8:

  ARM: uniphier: add clock/reset settings for xHCI of ProXstream2 (2016-07-24 00:44:55 +0900)

are available in the git repository at:

  git://git.denx.de/u-boot-nand-flash.git 

for you to fetch changes up to 59441ac3c135c412c679bdd1c82c8f2a9b805bbc:

  mtd: fix compiler warnings (2016-07-24 20:36:29 -0500)

----------------------------------------------------------------
Boris Brezillon (7):
      cmd, nand: add an option to disable the verification when writing in raw mode
      sunxi: Add missing macros to configure the NAND controller clk
      mtd: nand: Add the sunxi NAND controller driver
      mtd: nand: Add a full-id entry for the H27QCG8T2E5R‐BCF NAND
      mtd: nand: Increase the max OOB size
      sunxi: nand: Increase CONFIG_SYS_NAND_MAX_ECCPOS value
      sunxi: Enable NAND controller on the CHIP

Brian Norris (1):
      mtd: nand: add common DT init code

Hector Palacios (1):
      mtd: nand: fix bug writing 1 byte less than page size

Maxime Ripard (1):
      sun5i: Add NAND controller to the sun5i DTSI

Steve Rae (1):
      mtd: fix compiler warnings

 arch/arm/dts/sun5i-a10s.dtsi                  |   14 +
 arch/arm/dts/sun5i-a13-olinuxino.dts          |   15 +
 arch/arm/dts/sun5i-r8-chip.dts                |   15 +
 arch/arm/dts/sun5i.dtsi                       |   49 +
 arch/arm/include/asm/arch-sunxi/clock_sun4i.h |    5 +
 board/sunxi/board.c                           |    5 +-
 cmd/mtdparts.c                                |    4 +-
 cmd/nand.c                                    |   15 +-
 drivers/mtd/nand/Kconfig                      |    8 +-
 drivers/mtd/nand/Makefile                     |    1 +
 drivers/mtd/nand/nand_base.c                  |   72 +-
 drivers/mtd/nand/nand_ids.c                   |    4 +
 drivers/mtd/nand/sunxi_nand.c                 | 1845 +++++++++++++++++++++++++
 include/configs/sunxi-common.h                |    3 +
 include/fdtdec.h                              |    1 +
 include/linux/mtd/mtd.h                       |    5 +
 include/linux/mtd/nand.h                      |    5 +-
 include/nand.h                                |    3 +
 lib/fdtdec.c                                  |    1 +
 19 files changed, 2057 insertions(+), 13 deletions(-)
 create mode 100644 drivers/mtd/nand/sunxi_nand.c

Comments

Tom Rini July 26, 2016, 2:33 a.m. UTC | #1
On Mon, Jul 25, 2016 at 01:44:46PM -0500, Scott Wood wrote:

> The following changes since commit 29d63a59eaf1c9f3b37e249cda2a97e5e4f183f8:
> 
>   ARM: uniphier: add clock/reset settings for xHCI of ProXstream2 (2016-07-24 00:44:55 +0900)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-nand-flash.git 
> 
> for you to fetch changes up to 59441ac3c135c412c679bdd1c82c8f2a9b805bbc:
> 
>   mtd: fix compiler warnings (2016-07-24 20:36:29 -0500)
> 

Applied to u-boot/master, thanks!