From: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
To: Sascha Hauer <s.hauer@pengutronix.de>
Cc: barebox@lists.infradead.org,
Patrice Vilchez <patrice.vilchez@atmel.com>,
Nicolas Ferre <nicolas.ferre@atmel.com>
Subject: Re: [PATCH 0/12] cfi_flash: improvment
Date: Thu, 2 Dec 2010 18:52:02 +0100 [thread overview]
Message-ID: <20101202175202.GC4450@game.jcrosoft.org> (raw)
In-Reply-To: <20101129205350.GZ6017@pengutronix.de>
Hi,
update without the __raw_
please pull
The following changes since commit 4a7f56056d6aa12a0449f03eb038e4d2bf7fdd49:
scripts: Adapt checkpatch.pl for barebox. (2010-11-29 21:56:05 +0100)
are available in the git repository at:
git://git.jcrosoft.org/barebox.git cfi
Jean-Christophe PLAGNIOL-VILLARD (12):
cfi_flash: move intel real protect flash support to cfi_flash_intel.c
cfi_flash: add Atmel real protect flash support
cfi_flash: move flash_read_uchar from inline to noinline
cfi_flash: use amd and standard reset flash command at probing
cfi_flash: synchronize command offsets with Linux CFI driver
cfi_flash: update manufacturer id flash support
cfi_flash: Introduce read and write accessors
cfi_flash: Read whole QRY structure in one go
cfi_flash: do not reset flash when probe fails
cfi_flash: move reset command assigment to specific chipset init function
cfi_flash: introduce flash cmdset fixup
cfi_flash_amd: Add manufacturer-specific fixups
drivers/nor/cfi_flash.c | 303 +++++++++++++++++++----------------------
drivers/nor/cfi_flash.h | 120 +++++++++++++----
drivers/nor/cfi_flash_amd.c | 172 ++++++++++++++++++++----
drivers/nor/cfi_flash_intel.c | 52 ++++++--
4 files changed, 420 insertions(+), 227 deletions(-)
Best Regards,
J.
On 21:53 Mon 29 Nov , Sascha Hauer wrote:
> Hi J,
>
> On Fri, Nov 26, 2010 at 08:43:53PM +0100, Jean-Christophe PLAGNIOL-VILLARD wrote:
> > Hi,
> >
> > the following patch series improve the current flash
> > by adding the atmel flash supportm fixing some issues and factorising
> > more the code
> >
> > Found during the adding of the at91rm9200ek
> >
> > please pull
> > The following changes since commit 53dbaf3fc7b8371ed1e24ef96715e41d60b8ebc3:
> >
> > Merge branch 'master' into next (2010-11-19 09:35:15 +0100)
>
> Nice. I like this series.
>
> Can we use readl/writel instead? The __raw_ versions do not exist on
> architectures other than ARM.
>
> Sascha
>
>
> --
> Pengutronix e.K. | |
> Industrial Linux Solutions | http://www.pengutronix.de/ |
> Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
> Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
prev parent reply other threads:[~2010-12-02 18:02 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-11-26 19:43 Jean-Christophe PLAGNIOL-VILLARD
2010-11-26 19:52 ` [PATCH 01/12] cfi_flash: move intel real protect flash support to cfi_flash_intel.c Jean-Christophe PLAGNIOL-VILLARD
2010-11-26 19:52 ` [PATCH 02/12] cfi_flash: add Atmel real protect flash support Jean-Christophe PLAGNIOL-VILLARD
2010-11-26 19:52 ` [PATCH 03/12] cfi_flash: move flash_read_uchar from inline to noinline Jean-Christophe PLAGNIOL-VILLARD
2010-11-26 19:52 ` [PATCH 04/12] cfi_flash: use amd and standard reset flash command at probing Jean-Christophe PLAGNIOL-VILLARD
2010-11-26 19:52 ` [PATCH 05/12] cfi_flash: synchronize command offsets with Linux CFI driver Jean-Christophe PLAGNIOL-VILLARD
2010-11-26 19:52 ` [PATCH 06/12] cfi_flash: update manufacturer id flash support Jean-Christophe PLAGNIOL-VILLARD
2010-11-26 19:52 ` [PATCH 07/12] cfi_flash: Introduce read and write accessors Jean-Christophe PLAGNIOL-VILLARD
2010-11-26 19:52 ` [PATCH 08/12] cfi_flash: Read whole QRY structure in one go Jean-Christophe PLAGNIOL-VILLARD
2010-11-26 19:52 ` [PATCH 09/12] cfi_flash: do not reset flash when probe fails Jean-Christophe PLAGNIOL-VILLARD
2010-11-26 19:52 ` [PATCH 10/12] cfi_flash: move reset command assigment to specific chipset init function Jean-Christophe PLAGNIOL-VILLARD
2010-11-26 19:52 ` [PATCH 11/12] cfi_flash: introduce flash cmdset fixup Jean-Christophe PLAGNIOL-VILLARD
2010-11-26 19:52 ` [PATCH 12/12] cfi_flash_amd: Add manufacturer-specific fixups Jean-Christophe PLAGNIOL-VILLARD
2010-11-29 20:53 ` [PATCH 0/12] cfi_flash: improvment Sascha Hauer
2010-11-30 13:44 ` Jean-Christophe PLAGNIOL-VILLARD
2010-12-02 17:52 ` Jean-Christophe PLAGNIOL-VILLARD [this message]
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=20101202175202.GC4450@game.jcrosoft.org \
--to=plagnioj@jcrosoft.com \
--cc=barebox@lists.infradead.org \
--cc=nicolas.ferre@atmel.com \
--cc=patrice.vilchez@atmel.com \
--cc=s.hauer@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox