All of lore.kernel.org
 help / color / mirror / Atom feed
From: Huang Shijie <b32955@freescale.com>
To: Huang Shijie <b32955@freescale.com>
Cc: linux@arm.linux.org.uk, David.Woodhouse@intel.com,
	dedekind1@gmail.com, linux-mtd@lists.infradead.org,
	ffainelli@freebox.fr, shijie8@gmail.com,
	linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH V4 0/4] add the GPMI controller driver for IMX23/IMX28
Date: Wed, 6 Apr 2011 18:32:19 +0800	[thread overview]
Message-ID: <4D9C4133.6080708@freescale.com> (raw)
In-Reply-To: <1301722240-15406-1-git-send-email-b32955@freescale.com>

Hi:

Does some one have any comments about this driver?

Thanks

Huang Shijie

> 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.
>
> This driver is based the Shawn Guo's DMA patches for IMX23/IMX28,
> please refer to :
> 	http://git.infradead.org/users/vkoul/slave-dma.git/commit/a580b8c5429a624d120cd603e1498bf676e2b4da
>
> v3 --> v4:
> 	[0] use the nand_ids{} as the nand database, drop my own database.
> 	[1] remove the patch for DMA enginer, Shawn will submit his own version.
> 	[2] use the platform_id to distinguish different Archs.
> 	[3] fix the strange coding style.
> 	[4] others.
>
> v2 --> v3:
> 	[0] merge the imx23 and imx28 into one file(including the header file).
> 	[1] remove the unuse registers in the headers.
> 	[2] fix DMA bugs
> 	[3] add bus width field to nand_attr{}
> 	[4] others
>
> v1 --> v2:
> 	[0] merge the common files into the gpmi-nfc-main.c
> 	[1] change the code to get the clock.
> 	[2] remove the timing in the nand_device_info{}
> 	[3] fix DMA errors
> 	[4] add the nand_device_info.[ch] to generic code
> 	[5] use the chip->onfi_version for the ONFI nand
> 	[6] useless init
> 	[7] others
>
>
> Huang Shijie (4):
>   ARM: add GPMI support for imx23/imx28
>   MTD : add the common code for GPMI controller driver
>   MTD: add support for imx23 and imx28
>   MTD : add GPMI driver in the config and Makefile
>
>  arch/arm/mach-mxs/Kconfig                       |    2 +
>  arch/arm/mach-mxs/clock-mx23.c                  |    3 +
>  arch/arm/mach-mxs/clock-mx28.c                  |    3 +
>  arch/arm/mach-mxs/devices-mx23.h                |    3 +
>  arch/arm/mach-mxs/devices-mx28.h                |    3 +
>  arch/arm/mach-mxs/devices/Kconfig               |    3 +
>  arch/arm/mach-mxs/devices/Makefile              |    1 +
>  arch/arm/mach-mxs/devices/platform-gpmi.c       |  136 ++
>  arch/arm/mach-mxs/include/mach/devices-common.h |    4 +
>  arch/arm/mach-mxs/include/mach/gpmi-nfc.h       |   64 +
>  arch/arm/mach-mxs/mach-mx23evk.c                |   37 +
>  arch/arm/mach-mxs/mach-mx28evk.c                |   37 +
>  drivers/mtd/nand/Kconfig                        |   10 +
>  drivers/mtd/nand/Makefile                       |    1 +
>  drivers/mtd/nand/gpmi-nfc/Makefile              |    5 +
>  drivers/mtd/nand/gpmi-nfc/bch-mx23-mx28.h       |   88 +
>  drivers/mtd/nand/gpmi-nfc/gpmi-mx23-mx28.h      |  163 ++
>  drivers/mtd/nand/gpmi-nfc/gpmi-nfc-main.c       | 2453 +++++++++++++++++++++++
>  drivers/mtd/nand/gpmi-nfc/gpmi-nfc.h            |  551 +++++
>  drivers/mtd/nand/gpmi-nfc/hal-mx23-mx28.c       |  556 +++++
>  drivers/mtd/nand/gpmi-nfc/rom-mx23.c            |  298 +++
>  drivers/mtd/nand/gpmi-nfc/rom-mx28.c            |   66 +
>  22 files changed, 4487 insertions(+), 0 deletions(-)
>  create mode 100644 arch/arm/mach-mxs/devices/platform-gpmi.c
>  create mode 100644 arch/arm/mach-mxs/include/mach/gpmi-nfc.h
>  create mode 100644 drivers/mtd/nand/gpmi-nfc/Makefile
>  create mode 100644 drivers/mtd/nand/gpmi-nfc/bch-mx23-mx28.h
>  create mode 100644 drivers/mtd/nand/gpmi-nfc/gpmi-mx23-mx28.h
>  create mode 100644 drivers/mtd/nand/gpmi-nfc/gpmi-nfc-main.c
>  create mode 100644 drivers/mtd/nand/gpmi-nfc/gpmi-nfc.h
>  create mode 100644 drivers/mtd/nand/gpmi-nfc/hal-mx23-mx28.c
>  create mode 100644 drivers/mtd/nand/gpmi-nfc/rom-mx23.c
>  create mode 100644 drivers/mtd/nand/gpmi-nfc/rom-mx28.c
>

WARNING: multiple messages have this Message-ID (diff)
From: b32955@freescale.com (Huang Shijie)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH V4 0/4] add the GPMI controller driver for IMX23/IMX28
Date: Wed, 6 Apr 2011 18:32:19 +0800	[thread overview]
Message-ID: <4D9C4133.6080708@freescale.com> (raw)
In-Reply-To: <1301722240-15406-1-git-send-email-b32955@freescale.com>

Hi:

Does some one have any comments about this driver?

Thanks

Huang Shijie

> 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.
>
> This driver is based the Shawn Guo's DMA patches for IMX23/IMX28,
> please refer to :
> 	http://git.infradead.org/users/vkoul/slave-dma.git/commit/a580b8c5429a624d120cd603e1498bf676e2b4da
>
> v3 --> v4:
> 	[0] use the nand_ids{} as the nand database, drop my own database.
> 	[1] remove the patch for DMA enginer, Shawn will submit his own version.
> 	[2] use the platform_id to distinguish different Archs.
> 	[3] fix the strange coding style.
> 	[4] others.
>
> v2 --> v3:
> 	[0] merge the imx23 and imx28 into one file(including the header file).
> 	[1] remove the unuse registers in the headers.
> 	[2] fix DMA bugs
> 	[3] add bus width field to nand_attr{}
> 	[4] others
>
> v1 --> v2:
> 	[0] merge the common files into the gpmi-nfc-main.c
> 	[1] change the code to get the clock.
> 	[2] remove the timing in the nand_device_info{}
> 	[3] fix DMA errors
> 	[4] add the nand_device_info.[ch] to generic code
> 	[5] use the chip->onfi_version for the ONFI nand
> 	[6] useless init
> 	[7] others
>
>
> Huang Shijie (4):
>   ARM: add GPMI support for imx23/imx28
>   MTD : add the common code for GPMI controller driver
>   MTD: add support for imx23 and imx28
>   MTD : add GPMI driver in the config and Makefile
>
>  arch/arm/mach-mxs/Kconfig                       |    2 +
>  arch/arm/mach-mxs/clock-mx23.c                  |    3 +
>  arch/arm/mach-mxs/clock-mx28.c                  |    3 +
>  arch/arm/mach-mxs/devices-mx23.h                |    3 +
>  arch/arm/mach-mxs/devices-mx28.h                |    3 +
>  arch/arm/mach-mxs/devices/Kconfig               |    3 +
>  arch/arm/mach-mxs/devices/Makefile              |    1 +
>  arch/arm/mach-mxs/devices/platform-gpmi.c       |  136 ++
>  arch/arm/mach-mxs/include/mach/devices-common.h |    4 +
>  arch/arm/mach-mxs/include/mach/gpmi-nfc.h       |   64 +
>  arch/arm/mach-mxs/mach-mx23evk.c                |   37 +
>  arch/arm/mach-mxs/mach-mx28evk.c                |   37 +
>  drivers/mtd/nand/Kconfig                        |   10 +
>  drivers/mtd/nand/Makefile                       |    1 +
>  drivers/mtd/nand/gpmi-nfc/Makefile              |    5 +
>  drivers/mtd/nand/gpmi-nfc/bch-mx23-mx28.h       |   88 +
>  drivers/mtd/nand/gpmi-nfc/gpmi-mx23-mx28.h      |  163 ++
>  drivers/mtd/nand/gpmi-nfc/gpmi-nfc-main.c       | 2453 +++++++++++++++++++++++
>  drivers/mtd/nand/gpmi-nfc/gpmi-nfc.h            |  551 +++++
>  drivers/mtd/nand/gpmi-nfc/hal-mx23-mx28.c       |  556 +++++
>  drivers/mtd/nand/gpmi-nfc/rom-mx23.c            |  298 +++
>  drivers/mtd/nand/gpmi-nfc/rom-mx28.c            |   66 +
>  22 files changed, 4487 insertions(+), 0 deletions(-)
>  create mode 100644 arch/arm/mach-mxs/devices/platform-gpmi.c
>  create mode 100644 arch/arm/mach-mxs/include/mach/gpmi-nfc.h
>  create mode 100644 drivers/mtd/nand/gpmi-nfc/Makefile
>  create mode 100644 drivers/mtd/nand/gpmi-nfc/bch-mx23-mx28.h
>  create mode 100644 drivers/mtd/nand/gpmi-nfc/gpmi-mx23-mx28.h
>  create mode 100644 drivers/mtd/nand/gpmi-nfc/gpmi-nfc-main.c
>  create mode 100644 drivers/mtd/nand/gpmi-nfc/gpmi-nfc.h
>  create mode 100644 drivers/mtd/nand/gpmi-nfc/hal-mx23-mx28.c
>  create mode 100644 drivers/mtd/nand/gpmi-nfc/rom-mx23.c
>  create mode 100644 drivers/mtd/nand/gpmi-nfc/rom-mx28.c
>

  parent reply	other threads:[~2011-04-06 10:32 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-04-02  5:30 [PATCH V4 0/4] add the GPMI controller driver for IMX23/IMX28 Huang Shijie
2011-04-02  5:30 ` Huang Shijie
2011-04-02  5:30 ` [PATCH V4 1/4] ARM: add GPMI support for imx23/imx28 Huang Shijie
2011-04-02  5:30   ` Huang Shijie
2011-04-02  5:30 ` [PATCH V4 2/4] MTD : add the common code for GPMI controller driver Huang Shijie
2011-07-08 17:45   ` Huang Shijie
2011-04-12 11:03   ` Veli-Pekka Peltola
2011-04-12 11:03     ` Veli-Pekka Peltola
2011-04-13  1:41     ` Huang Shijie
2011-04-13  1:41       ` Huang Shijie
2011-04-02  5:30 ` [PATCH V4 3/4] MTD: add support for imx23 and imx28 Huang Shijie
2011-04-02  5:30   ` Huang Shijie
2011-04-02  5:30 ` [PATCH V4 4/4] MTD : add GPMI driver in the config and Makefile Huang Shijie
2011-04-02  5:30   ` Huang Shijie
2011-04-06 10:32 ` Huang Shijie [this message]
2011-04-06 10:32   ` [PATCH V4 0/4] add the GPMI controller driver for IMX23/IMX28 Huang Shijie
     [not found] <4D9C4133.6080708%40freescale.com>
2011-04-07 11:21 ` Lothar Waßmann
2011-04-08  2:42   ` Huang Shijie
2011-04-08  2:42     ` Huang Shijie
2011-04-08 10:46     ` Lothar Waßmann
2011-04-08 10:46       ` Lothar Waßmann
2011-04-11  3:08       ` Huang Shijie
2011-04-11  3:08         ` 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=4D9C4133.6080708@freescale.com \
    --to=b32955@freescale.com \
    --cc=David.Woodhouse@intel.com \
    --cc=dedekind1@gmail.com \
    --cc=ffainelli@freebox.fr \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-mtd@lists.infradead.org \
    --cc=linux@arm.linux.org.uk \
    --cc=shijie8@gmail.com \
    /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.