From: Huang Shijie <b32955@freescale.com>
To: Huang Shijie <b32955@freescale.com>
Cc: s.hauer@pengutronix.de, linux-mtd@lists.infradead.org,
w.sang@pengutronix.de, linux-arm-kernel@lists.infradead.org,
dedekind1@gmail.com
Subject: Re: [PATCH v8 0/4] add the GPMI-NAND support for imx23/imx28
Date: Fri, 16 Sep 2011 10:28:17 +0800 [thread overview]
Message-ID: <4E72B441.2010202@freescale.com> (raw)
In-Reply-To: <1314169643-23425-1-git-send-email-b32955@freescale.com>
Hi Sascha:
Is this patch set ok now?
thanks
Huang Shijie
> The patch set is based on tag v3.1-rc2 of linus's tree.
> and it can be git-am to Artem's tree:
> http://git.infradead.org/users/dedekind/l2-mtd-2.6.git
>
> The general-purpose media interface(GPMI) controller is a flexible interface
> to up to several NAND flashs.
>
> The Bose Ray-Choudhury Hocquenghem(BCH) module is a hardware ECC accelerator.
>
> With the help of BCH, the GPMI controller can choose to do the hardware ECC or
> not.
>
> v7 --> v8:
> [0] add header file to fix compiling error.
>
> v6 --> v7:
> [0] rename RES_SIZE to GPMI_NAND_RES_SIZE.
> [1] move gpmi-nand.h to `include/linux/mtd/` directory.
> [2] remove comment for new pad control.
> [3] others
>
> v5 --> v6:
> [0] rename `gpmi-nfc` to `gpmi-nand`.
> [1] remove ->exit() in structure gpmi_nand_platform_data{}.
> [2] drop the macros for the resource's definition of gpmi-nand.
> [3] add a new pad control `MXS_PAD_CTRL_12MA`.
> [4] others.
>
> v4 --> v5:
> [0] split out the mach code and the machine code.
>
> v3 --> v4:
> merge the GPMI-NFC device code to the new branch.
>
> Huang Shijie (4):
> ARM: mxs: add GPMI-NAND support for imx23/imx28
> ARM: mxs: add new a pad control
> ARM: mxs/mx23evk: add GPMI-NAND device
> ARM: mxs/mx28evk: add GPMI-NAND device
>
> arch/arm/mach-mxs/Kconfig | 2 +
> arch/arm/mach-mxs/clock-mx23.c | 1 +
> arch/arm/mach-mxs/clock-mx28.c | 1 +
> arch/arm/mach-mxs/devices-mx23.h | 4 +
> arch/arm/mach-mxs/devices-mx28.h | 4 +
> arch/arm/mach-mxs/devices/Kconfig | 3 +
> arch/arm/mach-mxs/devices/Makefile | 1 +
> arch/arm/mach-mxs/devices/platform-gpmi-nand.c | 109 +++++++++++++++++++++++
> arch/arm/mach-mxs/include/mach/devices-common.h | 10 ++
> arch/arm/mach-mxs/include/mach/iomux.h | 1 +
> arch/arm/mach-mxs/mach-mx23evk.c | 36 ++++++++
> arch/arm/mach-mxs/mach-mx28evk.c | 36 ++++++++
> include/linux/mtd/gpmi-nand.h | 68 ++++++++++++++
> 13 files changed, 276 insertions(+), 0 deletions(-)
> create mode 100644 arch/arm/mach-mxs/devices/platform-gpmi-nand.c
> create mode 100644 include/linux/mtd/gpmi-nand.h
>
WARNING: multiple messages have this Message-ID (diff)
From: b32955@freescale.com (Huang Shijie)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v8 0/4] add the GPMI-NAND support for imx23/imx28
Date: Fri, 16 Sep 2011 10:28:17 +0800 [thread overview]
Message-ID: <4E72B441.2010202@freescale.com> (raw)
In-Reply-To: <1314169643-23425-1-git-send-email-b32955@freescale.com>
Hi Sascha:
Is this patch set ok now?
thanks
Huang Shijie
> The patch set is based on tag v3.1-rc2 of linus's tree.
> and it can be git-am to Artem's tree:
> http://git.infradead.org/users/dedekind/l2-mtd-2.6.git
>
> The general-purpose media interface(GPMI) controller is a flexible interface
> to up to several NAND flashs.
>
> The Bose Ray-Choudhury Hocquenghem(BCH) module is a hardware ECC accelerator.
>
> With the help of BCH, the GPMI controller can choose to do the hardware ECC or
> not.
>
> v7 --> v8:
> [0] add header file to fix compiling error.
>
> v6 --> v7:
> [0] rename RES_SIZE to GPMI_NAND_RES_SIZE.
> [1] move gpmi-nand.h to `include/linux/mtd/` directory.
> [2] remove comment for new pad control.
> [3] others
>
> v5 --> v6:
> [0] rename `gpmi-nfc` to `gpmi-nand`.
> [1] remove ->exit() in structure gpmi_nand_platform_data{}.
> [2] drop the macros for the resource's definition of gpmi-nand.
> [3] add a new pad control `MXS_PAD_CTRL_12MA`.
> [4] others.
>
> v4 --> v5:
> [0] split out the mach code and the machine code.
>
> v3 --> v4:
> merge the GPMI-NFC device code to the new branch.
>
> Huang Shijie (4):
> ARM: mxs: add GPMI-NAND support for imx23/imx28
> ARM: mxs: add new a pad control
> ARM: mxs/mx23evk: add GPMI-NAND device
> ARM: mxs/mx28evk: add GPMI-NAND device
>
> arch/arm/mach-mxs/Kconfig | 2 +
> arch/arm/mach-mxs/clock-mx23.c | 1 +
> arch/arm/mach-mxs/clock-mx28.c | 1 +
> arch/arm/mach-mxs/devices-mx23.h | 4 +
> arch/arm/mach-mxs/devices-mx28.h | 4 +
> arch/arm/mach-mxs/devices/Kconfig | 3 +
> arch/arm/mach-mxs/devices/Makefile | 1 +
> arch/arm/mach-mxs/devices/platform-gpmi-nand.c | 109 +++++++++++++++++++++++
> arch/arm/mach-mxs/include/mach/devices-common.h | 10 ++
> arch/arm/mach-mxs/include/mach/iomux.h | 1 +
> arch/arm/mach-mxs/mach-mx23evk.c | 36 ++++++++
> arch/arm/mach-mxs/mach-mx28evk.c | 36 ++++++++
> include/linux/mtd/gpmi-nand.h | 68 ++++++++++++++
> 13 files changed, 276 insertions(+), 0 deletions(-)
> create mode 100644 arch/arm/mach-mxs/devices/platform-gpmi-nand.c
> create mode 100644 include/linux/mtd/gpmi-nand.h
>
next prev parent reply other threads:[~2011-09-16 2:28 UTC|newest]
Thread overview: 46+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-08-24 7:07 [PATCH v8 0/4] add the GPMI-NAND support for imx23/imx28 Huang Shijie
2011-08-24 7:07 ` Huang Shijie
2011-08-24 7:07 ` [PATCH v8 1/4] ARM: mxs: add " Huang Shijie
2011-08-24 7:07 ` Huang Shijie
2011-08-24 7:07 ` [PATCH v8 2/4] ARM: mxs: add new a pad control Huang Shijie
2011-08-24 7:07 ` Huang Shijie
2011-08-24 7:07 ` [PATCH v8 3/4] ARM: mxs/mx23evk: add GPMI-NAND device Huang Shijie
2011-08-24 7:07 ` Huang Shijie
2011-08-24 7:07 ` [PATCH v8 4/4] ARM: mxs/mx28evk: " Huang Shijie
2011-08-24 7:07 ` Huang Shijie
2012-04-05 0:44 ` Fabio Estevam
2012-04-05 0:44 ` Fabio Estevam
2012-04-05 0:45 ` Fabio Estevam
2012-04-05 0:45 ` Fabio Estevam
2012-04-05 1:08 ` Shawn Guo
2012-04-05 1:08 ` Shawn Guo
2012-04-05 1:19 ` Fabio Estevam
2012-04-05 1:19 ` Fabio Estevam
2012-04-05 1:23 ` Shawn Guo
2012-04-05 1:23 ` Shawn Guo
2012-04-05 16:12 ` Fabio Estevam
2012-04-05 16:12 ` Fabio Estevam
2012-04-06 2:31 ` Shawn Guo
2012-04-06 2:31 ` Shawn Guo
[not found] ` <C7A5B00EFC707A46AB67997D0215216701B5C28A@mx1.grid-net.com>
2012-04-06 3:35 ` Shawn Guo
2012-04-06 3:35 ` Shawn Guo
2012-04-06 5:49 ` Fabio Estevam
2012-04-06 5:49 ` Fabio Estevam
2012-04-06 6:53 ` Shawn Guo
2012-04-06 6:53 ` Shawn Guo
2012-04-06 13:16 ` Fabio Estevam
2012-04-06 13:16 ` Fabio Estevam
2012-04-06 13:46 ` Shawn Guo
2012-04-06 13:46 ` Shawn Guo
2012-04-06 13:56 ` Fabio Estevam
2012-04-06 13:56 ` Fabio Estevam
2012-04-18 21:46 ` Marek Vasut
2012-04-18 21:46 ` Marek Vasut
2011-08-25 11:37 ` [PATCH v8 0/4] add the GPMI-NAND support for imx23/imx28 Artem Bityutskiy
2011-08-25 11:37 ` Artem Bityutskiy
2011-08-26 3:28 ` Huang Shijie
2011-08-26 3:28 ` Huang Shijie
2011-08-26 13:35 ` Koen Beel
2011-08-26 13:35 ` Koen Beel
2011-09-16 2:28 ` Huang Shijie [this message]
2011-09-16 2:28 ` Huang Shijie
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4E72B441.2010202@freescale.com \
--to=b32955@freescale.com \
--cc=dedekind1@gmail.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-mtd@lists.infradead.org \
--cc=s.hauer@pengutronix.de \
--cc=w.sang@pengutronix.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.