diff options
author | Magnus Damm <magnus.damm@gmail.com> | 2008-02-07 20:18:21 +0900 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2008-02-14 14:22:09 +0900 |
commit | e7cc9a7340b8ec018caa9eb1d035fdaef1f2fc51 (patch) | |
tree | a797888f8d3f95734288978351c33af3c965494c /arch/sh/kernel/io.c | |
parent | 2ade1a9b425c24037327197ea97db054395b536b (diff) | |
download | linux-stable-e7cc9a7340b8ec018caa9eb1d035fdaef1f2fc51.tar.gz linux-stable-e7cc9a7340b8ec018caa9eb1d035fdaef1f2fc51.tar.bz2 linux-stable-e7cc9a7340b8ec018caa9eb1d035fdaef1f2fc51.zip |
sh: trapped io support V2
The idea is that we want to get rid of the in/out/readb/writeb callbacks from
the machvec and replace that with simple inline read and write operations to
memory. Fast and simple for most hardware devices (think pci).
Some devices require special treatment though - like 16-bit only CF devices -
so we need to have some method to hook in callbacks.
This patch makes it possible to add a per-device trap generating filter. This
way we can get maximum performance of sane hardware - which doesn't need this
filter - and crappy hardware works but gets punished by a performance hit.
V2 changes things around a bit and replaces io access callbacks with a
simple minimum_bus_width value. In the future we can add stride as well.
Signed-off-by: Magnus Damm <damm@igel.co.jp>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/kernel/io.c')
-rw-r--r-- | arch/sh/kernel/io.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/arch/sh/kernel/io.c b/arch/sh/kernel/io.c index 71c9fde2fd90..2b8991229900 100644 --- a/arch/sh/kernel/io.c +++ b/arch/sh/kernel/io.c @@ -63,7 +63,13 @@ EXPORT_SYMBOL(memset_io); void __iomem *ioport_map(unsigned long port, unsigned int nr) { - return sh_mv.mv_ioport_map(port, nr); + void __iomem *ret; + + ret = __ioport_map_trapped(port, nr); + if (ret) + return ret; + + return __ioport_map(port, nr); } EXPORT_SYMBOL(ioport_map); |