Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754600AbYLTWRu (ORCPT ); Sat, 20 Dec 2008 17:17:50 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1753881AbYLTWRm (ORCPT ); Sat, 20 Dec 2008 17:17:42 -0500 Received: from yw-out-2324.google.com ([74.125.46.28]:27137 "EHLO yw-out-2324.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753457AbYLTWRl (ORCPT ); Sat, 20 Dec 2008 17:17:41 -0500 DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=references:message-id:from:to:in-reply-to:content-type :content-transfer-encoding:x-mailer:mime-version:subject:date:cc; b=LQZxZrpXRMcQqomskMeyQhNjePn6KdkGQTd4pSpxvkTmkOVkJt8srE6ZPs3CddjY4N on0R62OO0Bt02kY8xbf2H+gikIc/HdETQGSieRiQvz9T5fh2jQH4YapKjxZ/maHrU4J1 P0DXAr+aDFpC6w1YiI18RV+1KV84lakfTk2OY= References: <1229728542.1441.6.camel@localhost.localdomain> <20081220151511.GA6528@console-pimps.org> <1229789248.6502.4.camel@localhost.localdomain> <200812201219.12511.dmitry.torokhov@gmail.com> <1229806020.6502.35.camel@localhost.localdomain> Message-Id: <11B1B6AB-D879-4BB9-AE05-C5025B449CA1@gmail.com> From: Dmitry Torokhov To: Adrian McMenamin In-Reply-To: <1229806020.6502.35.camel@localhost.localdomain> Content-Type: text/plain; charset=us-ascii; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit X-Mailer: iPhone Mail (5G77) Mime-Version: 1.0 (iPhone Mail 5G77) Subject: Re: [PATCH] sh: maple: add support for Maple controller as a joystick Date: Sat, 20 Dec 2008 14:17:25 -0800 Cc: Matt Fleming , LKML , linux-sh , Andrew Morton , Paul Mundt Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1707 Lines: 48 On Dec 20, 2008, at 12:47 PM, Adrian McMenamin wrote: > 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. Right, so I think we need le16_to_cpu here, you want the data in native CPU order to manipulate it. -- Dmitry -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/