From: Benjamin Herrenschmidt <benh@kernel.crashing.org>
To: Bartlomiej Zolnierkiewicz <B.Zolnierkiewicz@elka.pw.edu.pl>
Cc: Yoshinori Sato <ysato@users.sourceforge.jp>, linux-ide@vger.kernel.org
Subject: Re: H8/300 target support patch
Date: Tue, 17 Feb 2004 09:07:23 +1100 [thread overview]
Message-ID: <1076969243.1046.58.camel@gaston> (raw)
In-Reply-To: <200402161740.08383.bzolnier@elka.pw.edu.pl>
On Tue, 2004-02-17 at 03:40, Bartlomiej Zolnierkiewicz wrote:
> On Monday 16 of February 2004 17:09, Yoshinori Sato wrote:
> > > +static void _outsw(unsigned long addr, void *buf, u32 len)
> > > +{
> > > + unsigned volatile short *ap = (unsigned volatile short *)addr;
> > > + unsigned short *bp = (unsigned short *)buf;
> > > + unsigned short d;
> > > + while(len--) {
> > > + d = *bp++;
> > > + *ap = (d << 8) | (d >> 8);
> > > + }
> > > +}
> > > +
> > > +static void _insw(unsigned long addr, void *buf, u32 len)
> > > +{
> > > + unsigned volatile short *ap = (unsigned volatile short *)addr;
> > > + unsigned short *bp = (unsigned short *)buf;
> > > + unsigned short d;
> > > + while(len--) {
> > > + d = *ap;
> > > + *bp++ = (d << 8) | (d >> 8);
> > > + }
> > > +}
> > >
> > > why you don't use outsw() and insw() from include/asm-h8300/io.h?
> >
> > Because bus turns over, insw/outsw is not usable.
>
> Please explain. I don't understand why outsw()/insw()
> from io.h can't be assigned to hwif->OUTSW/hwif->INSW.
I'd add that the above code is incredibely shitty... Whatever the HW
does, this is not how it should be implemented.
next prev parent reply other threads:[~2004-02-16 22:07 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-02-15 6:05 H8/300 target support patch Yoshinori Sato
2004-02-15 14:40 ` Bartlomiej Zolnierkiewicz
2004-02-16 16:09 ` Yoshinori Sato
2004-02-16 16:40 ` Bartlomiej Zolnierkiewicz
2004-02-16 22:07 ` Benjamin Herrenschmidt [this message]
2004-02-16 22:09 ` Benjamin Herrenschmidt
2004-02-17 11:33 ` Yoshinori Sato
2004-02-17 12:55 ` Benjamin Herrenschmidt
2004-02-19 16:12 ` Yoshinori Sato
2004-02-19 16:34 ` Bartlomiej Zolnierkiewicz
2004-02-20 12:28 ` Yoshinori Sato
2004-02-20 15:25 ` Bartlomiej Zolnierkiewicz
2004-02-20 17:58 ` Yoshinori Sato
2004-02-20 18:42 ` Bartlomiej Zolnierkiewicz
2004-02-22 16:30 ` Yoshinori Sato
2004-02-22 17:08 ` Bartlomiej Zolnierkiewicz
2004-02-22 17:28 ` Bartlomiej Zolnierkiewicz
2004-02-26 16:46 ` Yoshinori Sato
2004-02-26 19:26 ` Bartlomiej Zolnierkiewicz
2004-02-28 17:02 ` Yoshinori Sato
2004-02-28 17:55 ` Bartlomiej Zolnierkiewicz
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=1076969243.1046.58.camel@gaston \
--to=benh@kernel.crashing.org \
--cc=B.Zolnierkiewicz@elka.pw.edu.pl \
--cc=linux-ide@vger.kernel.org \
--cc=ysato@users.sourceforge.jp \
/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.