From: Robert Jarzmik <robert.jarzmik@free.fr>
To: barebox@lists.infradead.org
Subject: [PATCH V3 0/8] mtd framework rework
Date: Mon, 19 Dec 2011 15:04:01 +0100 [thread overview]
Message-ID: <1324303449-30045-1-git-send-email-robert.jarzmik@free.fr> (raw)
This patchset aims at reworking the mtd support :
- add a mtd core
- concentrate MTD core functions (MTD_WRITE)
- split mtd core character device (/dev/mtd<N>) from other
character devices (/dev/mtdoob<N>).
- add a data+oob character device (/dev/mtdraw<N>)
Since V1, Sascha comments should have been taken into
account, and the patchset was rebased against next tree
(commit "mtd nand: fix oob compile time option").
As there were some quirks on the rebase, I'd like a
quick validation from you, Sascha, if everything still works
as it's supposed to, especially the *_READ_OOB thingy.
Robert Jarzmik (8):
drivers/mtd: move nand.c into core.c
drivers/mtd: cosmetic changes
drivers/mtd: transfer NAND notions to MTD core
drivers/mtd: recover NAND default device name "nand"
drivers/mtd: fix core multiple MTD registrations
drivers/mtd: add mtd core hooks
drivers/mtd: split mtd mtdoob devices
drivers/mtd: add the mtdraw device (data+oob)
drivers/mtd/Kconfig | 17 ++
drivers/mtd/Makefile | 7 +-
drivers/mtd/core.c | 241 +++++++++++++++++++++++++
drivers/mtd/mtd.h | 42 +++++
drivers/mtd/mtdoob.c | 100 +++++++++++
drivers/mtd/mtdraw.c | 303 ++++++++++++++++++++++++++++++++
drivers/mtd/nand/Kconfig | 11 --
drivers/mtd/nand/Makefile | 4 +-
drivers/mtd/nand/atmel_nand.c | 2 +-
drivers/mtd/nand/diskonchip.c | 2 +-
drivers/mtd/nand/nand-bb.c | 6 +-
drivers/mtd/nand/nand.c | 290 ------------------------------
drivers/mtd/nand/nand_base.c | 14 +-
drivers/mtd/nand/nand_bbt.c | 2 +-
drivers/mtd/nand/nand_hwecc.c | 4 +-
drivers/mtd/nand/nand_hwecc_syndrome.c | 6 +-
drivers/mtd/nand/nand_imx.c | 2 +-
drivers/mtd/nand/nand_omap_gpmc.c | 2 +-
drivers/mtd/nand/nand_s3c2410.c | 2 +-
drivers/mtd/nand/nand_swecc.c | 4 +-
drivers/mtd/nand/nomadik_nand.c | 2 +-
include/linux/mtd/mtd.h | 3 +-
22 files changed, 735 insertions(+), 331 deletions(-)
create mode 100644 drivers/mtd/core.c
create mode 100644 drivers/mtd/mtd.h
create mode 100644 drivers/mtd/mtdoob.c
create mode 100644 drivers/mtd/mtdraw.c
delete mode 100644 drivers/mtd/nand/nand.c
--
1.7.5.4
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
next reply other threads:[~2011-12-19 14:04 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-12-19 14:04 Robert Jarzmik [this message]
2011-12-19 14:04 ` [PATCH V3 1/8] drivers/mtd: move nand.c into core.c Robert Jarzmik
2011-12-19 14:04 ` [PATCH V3 2/8] drivers/mtd: cosmetic changes Robert Jarzmik
2011-12-21 11:00 ` Sascha Hauer
2011-12-21 21:27 ` Robert Jarzmik
2011-12-19 14:04 ` [PATCH V3 3/8] drivers/mtd: transfer NAND notions to MTD core Robert Jarzmik
2011-12-21 11:25 ` Sascha Hauer
2011-12-19 14:04 ` [PATCH V3 4/8] drivers/mtd: recover NAND default device name "nand" Robert Jarzmik
2011-12-19 14:04 ` [PATCH V3 5/8] drivers/mtd: fix core multiple MTD registrations Robert Jarzmik
2011-12-19 14:04 ` [PATCH V3 6/8] drivers/mtd: add mtd core hooks Robert Jarzmik
2011-12-19 14:04 ` [PATCH V3 7/8] drivers/mtd: split mtd mtdoob devices Robert Jarzmik
2011-12-21 11:32 ` Sascha Hauer
2011-12-21 21:28 ` Robert Jarzmik
2011-12-19 14:04 ` [PATCH V3 8/8] drivers/mtd: add the mtdraw device (data+oob) Robert Jarzmik
2011-12-21 10:59 ` [PATCH V3 0/8] mtd framework rework Sascha Hauer
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=1324303449-30045-1-git-send-email-robert.jarzmik@free.fr \
--to=robert.jarzmik@free.fr \
--cc=barebox@lists.infradead.org \
/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