From: Adrian McMenamin <adrian@newgolddream.dyndns.info>
To: greg KH <greg@kroah.com>, Paul Mundt <lethal@linux-sh.org>,
Dmitry Torokhov <dmitry.torokhov@gmail.com>,
dwmw2 <dwmw2@infradead.org>
Cc: LKML <linux-kernel@vger.kernel.org>,
MTD <linux-mtd@lists.infradead.org>,
linux-sh <linux-sh@vger.kernel.org>,
linux-input <linux-input@vger.kernel.org>
Subject: [PATCH] sh: maple: Add support for VMU devices (v3) [0/3]
Date: Tue, 03 Feb 2009 14:31:26 +0000 [thread overview]
Message-ID: <1233671486.6512.8.camel@localhost.localdomain> (raw)
This series of patches adds support for the Dreamcast Visual Memory
Unit, reworking the maple bus code to ensure it supports asynchronous
reads and writes. A consequential amendment to the keyboard driver is
also included.
The VMU is a 'smart' flash chip where access is controlled by a
microcontroller so that, for instance, flash erases appear to be
transparent to the end user. The VMU does, however, show typical
flash-type behaviour (eg phased writes) and the MTD layer and the chip
work well together (eg in the way they handle apparent hotplug events
during a block write).
This version tidies up some style issues raised with version 2.
Signed-off-by: Adrian McMenamin <adrian@mcmen.demon.co.uk>
---
drivers/input/keyboard/maple_keyb.c | 40 +-
drivers/mtd/maps/Kconfig | 12 +-
drivers/mtd/maps/Makefile | 1 +
drivers/mtd/maps/vmu-flash.c | 826 +++++++++++++++++++++++++++++++++++
drivers/sh/maple/maple.c | 463 ++++++++++----------
include/linux/maple.h | 62 ++-
6 files changed, 1139 insertions(+), 265 deletions(-)
WARNING: multiple messages have this Message-ID (diff)
From: Adrian McMenamin <adrian@newgolddream.dyndns.info>
To: greg KH <greg@kroah.com>, Paul Mundt <lethal@linux-sh.org>,
Dmitry Torokhov <dmitry.torokhov@gmail.com>,
dwmw2 <dwmw2@infradead.org>
Cc: linux-input <linux-input@vger.kernel.org>,
MTD <linux-mtd@lists.infradead.org>,
LKML <linux-kernel@vger.kernel.org>,
linux-sh <linux-sh@vger.kernel.org>
Subject: [PATCH] sh: maple: Add support for VMU devices (v3) [0/3]
Date: Tue, 03 Feb 2009 14:31:26 +0000 [thread overview]
Message-ID: <1233671486.6512.8.camel@localhost.localdomain> (raw)
This series of patches adds support for the Dreamcast Visual Memory
Unit, reworking the maple bus code to ensure it supports asynchronous
reads and writes. A consequential amendment to the keyboard driver is
also included.
The VMU is a 'smart' flash chip where access is controlled by a
microcontroller so that, for instance, flash erases appear to be
transparent to the end user. The VMU does, however, show typical
flash-type behaviour (eg phased writes) and the MTD layer and the chip
work well together (eg in the way they handle apparent hotplug events
during a block write).
This version tidies up some style issues raised with version 2.
Signed-off-by: Adrian McMenamin <adrian@mcmen.demon.co.uk>
---
drivers/input/keyboard/maple_keyb.c | 40 +-
drivers/mtd/maps/Kconfig | 12 +-
drivers/mtd/maps/Makefile | 1 +
drivers/mtd/maps/vmu-flash.c | 826 +++++++++++++++++++++++++++++++++++
drivers/sh/maple/maple.c | 463 ++++++++++----------
include/linux/maple.h | 62 ++-
6 files changed, 1139 insertions(+), 265 deletions(-)
WARNING: multiple messages have this Message-ID (diff)
From: Adrian McMenamin <adrian@newgolddream.dyndns.info>
To: greg KH <greg@kroah.com>, Paul Mundt <lethal@linux-sh.org>,
Dmitry Torokhov <dmitry.torokhov@gmail.com>,
dwmw2 <dwmw2@infradead.org>
Cc: LKML <linux-kernel@vger.kernel.org>,
MTD <linux-mtd@lists.infradead.org>,
linux-sh <linux-sh@vger.kernel.org>,
linux-input <linux-input@vger.kernel.org>
Subject: [PATCH] sh: maple: Add support for VMU devices (v3) [0/3]
Date: Tue, 03 Feb 2009 14:31:26 +0000 [thread overview]
Message-ID: <1233671486.6512.8.camel@localhost.localdomain> (raw)
In-Reply-To: <1233619569.13918.12.camel@localhost.localdomain>
This series of patches adds support for the Dreamcast Visual Memory
Unit, reworking the maple bus code to ensure it supports asynchronous
reads and writes. A consequential amendment to the keyboard driver is
also included.
The VMU is a 'smart' flash chip where access is controlled by a
microcontroller so that, for instance, flash erases appear to be
transparent to the end user. The VMU does, however, show typical
flash-type behaviour (eg phased writes) and the MTD layer and the chip
work well together (eg in the way they handle apparent hotplug events
during a block write).
This version tidies up some style issues raised with version 2.
Signed-off-by: Adrian McMenamin <adrian@mcmen.demon.co.uk>
---
drivers/input/keyboard/maple_keyb.c | 40 +-
drivers/mtd/maps/Kconfig | 12 +-
drivers/mtd/maps/Makefile | 1 +
drivers/mtd/maps/vmu-flash.c | 826 +++++++++++++++++++++++++++++++++++
drivers/sh/maple/maple.c | 463 ++++++++++----------
include/linux/maple.h | 62 ++-
6 files changed, 1139 insertions(+), 265 deletions(-)
next reply other threads:[~2009-02-03 14:32 UTC|newest]
Thread overview: 39+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-02-03 14:31 Adrian McMenamin [this message]
2009-02-03 14:31 ` [PATCH] sh: maple: Add support for VMU devices (v3) [0/3] Adrian McMenamin
2009-02-03 14:31 ` Adrian McMenamin
2009-02-03 14:35 ` [PATCH] sh: maple: Add support for VMU devices (v3) [1/3] Adrian McMenamin
2009-02-03 14:35 ` Adrian McMenamin
2009-02-03 14:35 ` Adrian McMenamin
2009-02-03 16:30 ` Mike Frysinger
2009-02-03 16:30 ` Mike Frysinger
2009-02-03 16:30 ` Mike Frysinger
2009-02-03 14:37 ` [PATCH] sh: maple: Add support for VMU devices (v3) [2/3] Adrian McMenamin
2009-02-03 14:37 ` Adrian McMenamin
2009-02-03 14:37 ` Adrian McMenamin
2009-02-03 14:39 ` [PATCH] sh: maple: Add support for VMU devices (v3) [3/3] Adrian McMenamin
2009-02-03 14:39 ` Adrian McMenamin
-- strict thread matches above, loose matches on Subject: below --
2009-02-03 16:59 [PATCH] sh: maple: Add support for VMU devices (v4) [0/3] Adrian McMenamin
2009-02-03 16:59 ` Adrian McMenamin
2009-02-03 16:59 ` Adrian McMenamin
2009-02-03 17:04 ` [PATCH] sh: maple: Add support for VMU devices (v4) [1/3] Adrian McMenamin
2009-02-03 17:04 ` Adrian McMenamin
2009-02-03 17:04 ` Adrian McMenamin
2009-02-03 17:06 ` [PATCH] sh: maple: Add support for VMU devices (v4) [2/3] Adrian McMenamin
2009-02-03 17:06 ` Adrian McMenamin
2009-02-03 17:06 ` Adrian McMenamin
2009-02-03 17:09 ` [PATCH] sh: maple: Add support for VMU devices (v4) [3/3] Adrian McMenamin
2009-02-03 17:09 ` Adrian McMenamin
2009-02-03 0:06 [PATCH] sh: maple: Add support for VMU devices (v2) [0/3] Adrian McMenamin
2009-02-03 0:06 ` Adrian McMenamin
2009-02-03 0:17 ` [PATCH] sh: maple: Add support for VMU devices (v2) [1/3] Adrian McMenamin
2009-02-03 0:17 ` Adrian McMenamin
2009-02-03 0:17 ` Adrian McMenamin
2009-02-03 0:17 ` Adrian McMenamin
2009-02-03 0:48 ` Mike Frysinger
2009-02-03 0:48 ` Mike Frysinger
2009-02-03 0:48 ` Mike Frysinger
2009-02-03 0:17 ` [PATCH] sh: maple: Add support for VMU devices (v2) [2/3] Adrian McMenamin
2009-02-03 0:17 ` Adrian McMenamin
2009-02-03 0:17 ` Adrian McMenamin
2009-02-03 0:17 ` [PATCH] sh: maple: Add support for VMU devices (v2) [3/3] Adrian McMenamin
2009-02-03 0:17 ` Adrian McMenamin
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=1233671486.6512.8.camel@localhost.localdomain \
--to=adrian@newgolddream.dyndns.info \
--cc=dmitry.torokhov@gmail.com \
--cc=dwmw2@infradead.org \
--cc=greg@kroah.com \
--cc=lethal@linux-sh.org \
--cc=linux-input@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mtd@lists.infradead.org \
--cc=linux-sh@vger.kernel.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 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.