All of lore.kernel.org
 help / color / mirror / Atom feed
From: Adrian McMenamin <adrian@newgolddream.dyndns.info>
To: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Cc: Matt Fleming <matt@console-pimps.org>,
	LKML <linux-kernel@vger.kernel.org>,
	linux-sh <linux-sh@vger.kernel.org>,
	Andrew Morton <akpm@osdl.org>, Paul Mundt <lethal@linux-sh.org>
Subject: Re: [PATCH] sh: maple: add support for Maple controller as a
Date: Sat, 20 Dec 2008 20:47:00 +0000	[thread overview]
Message-ID: <1229806020.6502.35.camel@localhost.localdomain> (raw)
In-Reply-To: <200812201219.12511.dmitry.torokhov@gmail.com>

On Sat, 2008-12-20 at 12:19 -0800, Dmitry Torokhov wrote:
> On Saturday 20 December 2008 08:07:27 Adrian McMenamin wrote:
> > On Sat, 2008-12-20 at 15:16 +0000, Matt Fleming wrote:
> > > On Fri, Dec 19, 2008 at 11:15:42PM +0000, Adrian McMenamin wrote:
> > > > Add support for the SEGA Dreamcast Maple controller as a joystick
> > >
> > > [snip]
> > >
> > > > +	struct dc_pad *pad = maple_get_drvdata(mapledev);
> > > > +	struct input_dev *dev = pad->dev;
> > > > +	unsigned char *res = mq->recvbuf;
> > > > +
> > > > +	buttons = ~cpu_to_le16(*(unsigned short *)(res + 8));
> > > > +
> > >
> > > I may be wrong but shouldn't this use the I/O accessor functions?
> >
> > It's not iomemory, so I don't think so. The maple bus writes to a buffer
> > in the physical RAM.
> >
> 
> Hmm, but why we are going _from_ cpu order to le16??? I'd expect we
> wanted to do conversion the other way around. I pulled it out of 'next'
> for now.
> 
The data is transmitted here by the bus in 32 bit little endian blocks
but makes sense in le16 bit lumps. Off is 1 and on is 0 - hence the ~

The first 16 bits are the button data the next 16 bits are the (start
of) the axis data. Both cpu and bus data (in this case - it can vary)
are little endian.


        


WARNING: multiple messages have this Message-ID (diff)
From: Adrian McMenamin <adrian@newgolddream.dyndns.info>
To: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Cc: Matt Fleming <matt@console-pimps.org>,
	LKML <linux-kernel@vger.kernel.org>,
	linux-sh <linux-sh@vger.kernel.org>,
	Andrew Morton <akpm@osdl.org>, Paul Mundt <lethal@linux-sh.org>
Subject: Re: [PATCH] sh: maple: add support for Maple controller as a joystick
Date: Sat, 20 Dec 2008 20:47:00 +0000	[thread overview]
Message-ID: <1229806020.6502.35.camel@localhost.localdomain> (raw)
In-Reply-To: <200812201219.12511.dmitry.torokhov@gmail.com>

On Sat, 2008-12-20 at 12:19 -0800, Dmitry Torokhov wrote:
> On Saturday 20 December 2008 08:07:27 Adrian McMenamin wrote:
> > On Sat, 2008-12-20 at 15:16 +0000, Matt Fleming wrote:
> > > On Fri, Dec 19, 2008 at 11:15:42PM +0000, Adrian McMenamin wrote:
> > > > Add support for the SEGA Dreamcast Maple controller as a joystick
> > >
> > > [snip]
> > >
> > > > +	struct dc_pad *pad = maple_get_drvdata(mapledev);
> > > > +	struct input_dev *dev = pad->dev;
> > > > +	unsigned char *res = mq->recvbuf;
> > > > +
> > > > +	buttons = ~cpu_to_le16(*(unsigned short *)(res + 8));
> > > > +
> > >
> > > I may be wrong but shouldn't this use the I/O accessor functions?
> >
> > It's not iomemory, so I don't think so. The maple bus writes to a buffer
> > in the physical RAM.
> >
> 
> Hmm, but why we are going _from_ cpu order to le16??? I'd expect we
> wanted to do conversion the other way around. I pulled it out of 'next'
> for now.
> 
The data is transmitted here by the bus in 32 bit little endian blocks
but makes sense in le16 bit lumps. Off is 1 and on is 0 - hence the ~

The first 16 bits are the button data the next 16 bits are the (start
of) the axis data. Both cpu and bus data (in this case - it can vary)
are little endian.


        


  reply	other threads:[~2008-12-20 20:47 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-12-19 23:15 [PATCH] sh: maple: add support for Maple controller as a joystick Adrian McMenamin
2008-12-20 15:16 ` [PATCH] sh: maple: add support for Maple controller as a Matt Fleming
2008-12-20 15:16   ` [PATCH] sh: maple: add support for Maple controller as a joystick Matt Fleming
2008-12-20 16:07   ` [PATCH] sh: maple: add support for Maple controller as a Adrian McMenamin
2008-12-20 16:07     ` [PATCH] sh: maple: add support for Maple controller as a joystick Adrian McMenamin
2008-12-20 20:19     ` Dmitry Torokhov
2008-12-20 20:19       ` Dmitry Torokhov
2008-12-20 20:47       ` Adrian McMenamin [this message]
2008-12-20 20:47         ` Adrian McMenamin
2008-12-20 22:17         ` Dmitry Torokhov
2008-12-20 22:17           ` Dmitry Torokhov
2008-12-21  6:47 ` Paul Mundt
2008-12-21  6:47   ` Paul Mundt
2008-12-21  9:16 ` Rabin Vincent
2008-12-21  9:28   ` [PATCH] sh: maple: add support for Maple controller as a Rabin Vincent
2008-12-22 23:06 ` Andrew Morton
2008-12-22 23:06   ` [PATCH] sh: maple: add support for Maple controller as a joystick Andrew Morton
2008-12-23  1:07   ` [PATCH] sh: maple: add support for Maple controller as a Harvey Harrison
2008-12-23  1:07     ` [PATCH] sh: maple: add support for Maple controller as a joystick Harvey Harrison
2008-12-23  8:59     ` [PATCH] sh: maple: add support for Maple controller as a Dmitry Torokhov
2008-12-23  8:59       ` [PATCH] sh: maple: add support for Maple controller as a joystick Dmitry Torokhov
2008-12-26 19:08       ` [PATCH] sh: maple: add support for Maple controller as a Adrian McMenamin
2008-12-26 19:08         ` [PATCH] sh: maple: add support for Maple controller as a joystick 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=1229806020.6502.35.camel@localhost.localdomain \
    --to=adrian@newgolddream.dyndns.info \
    --cc=akpm@osdl.org \
    --cc=dmitry.torokhov@gmail.com \
    --cc=lethal@linux-sh.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-sh@vger.kernel.org \
    --cc=matt@console-pimps.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.