From patchwork Fri Dec 28 12:17:42 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sergey Lapin X-Patchwork-Id: 208480 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from theia.denx.de (theia.denx.de [85.214.87.163]) by ozlabs.org (Postfix) with ESMTP id AAF932C0098 for ; Fri, 28 Dec 2012 23:17:57 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 389374A0A2; Fri, 28 Dec 2012 13:17:56 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at theia.denx.de Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id DeZyqPNAULNh; Fri, 28 Dec 2012 13:17:56 +0100 (CET) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 3B5774A096; Fri, 28 Dec 2012 13:17:54 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 506564A096 for ; Fri, 28 Dec 2012 13:17:51 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at theia.denx.de Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id b16z-AcxYqIa for ; Fri, 28 Dec 2012 13:17:50 +0100 (CET) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from build.ossfans.org (slapinbuild.ihdev.net [46.4.202.25]) by theia.denx.de (Postfix) with ESMTPS id 2C2F14A092 for ; Fri, 28 Dec 2012 13:17:49 +0100 (CET) Received: from build.ossfans.org (localhost [127.0.0.1]) by build.ossfans.org (8.14.3/8.14.3/Debian-9.4) with ESMTP id qBSCHgJl029679 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Fri, 28 Dec 2012 07:17:43 -0500 Received: (from slapin@localhost) by build.ossfans.org (8.14.3/8.14.3/Submit) id qBSCHglx029678; Fri, 28 Dec 2012 07:17:42 -0500 Date: Fri, 28 Dec 2012 07:17:42 -0500 From: Sergey Lapin To: u-boot@lists.denx.de Message-ID: <20121228121741.GA29289@build.ihdev.net> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.20 (2009-06-14) Cc: Scott Wood , Marek Vasut Subject: [U-Boot] [RFC][PULL-REQ] MTD update X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.11 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: u-boot-bounces@lists.denx.de Errors-To: u-boot-bounces@lists.denx.de Hi, all! As I failed to submit 250KB patch to the list I will send this pull request This patch is not for inclusion yet. This patch is just update of u-boot MTD with Linux kernel's MTD v3.8-rc. The following changes since commit f8cfcf1b1c7543d5dd103359376a3319301143bc: env: don't generate callback list entries for SPL (2012-12-22 05:57:16 -0700) are available in the git repository at: git://github.com/slapin/uboot-allwinner.git upstream-mtd Sergey Lapin (1): MTD resync from Linux-3.8-rc2+ (master) common/cmd_nand.c | 18 +- drivers/mtd/Makefile | 4 +- drivers/mtd/mtdcore.c | 372 +++++++ drivers/mtd/nand/nand_base.c | 2274 ++++++++++++++++++++++++----------------- drivers/mtd/nand/nand_bbt.c | 839 ++++++++-------- drivers/mtd/nand/nand_ids.c | 21 +- drivers/mtd/nand/nand_util.c | 19 +- include/linux/mtd/bbm.h | 119 ++- include/linux/mtd/flashchip.h | 58 ++ include/linux/mtd/mtd-abi.h | 189 +++- include/linux/mtd/mtd.h | 372 +++++--- include/linux/mtd/nand.h | 246 +++-- include/linux/types.h | 2 + include/nand.h | 11 +- 14 files changed, 2848 insertions(+), 1696 deletions(-) create mode 100644 include/linux/mtd/flashchip.h