Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756663AbZAFXDX (ORCPT ); Tue, 6 Jan 2009 18:03:23 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1755607AbZAFXCx (ORCPT ); Tue, 6 Jan 2009 18:02:53 -0500 Received: from nwd2mail10.analog.com ([137.71.25.55]:54809 "EHLO nwd2mail10.analog.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755417AbZAFXCv (ORCPT ); Tue, 6 Jan 2009 18:02:51 -0500 X-IronPort-AV: E=Sophos;i="4.37,222,1231131600"; d="scan'208";a="80719303" From: Robin Getz Organization: Blackfin uClinux org To: "Ben Nizette" Subject: Re: [RFC 2.6.27 1/1] gpiolib: add support for batch set of pins Date: Tue, 6 Jan 2009 18:02:38 -0500 User-Agent: KMail/1.9.5 Cc: "Jaya Kumar" , "David Brownell" , "Eric Miao" , "Sam Ravnborg" , "Eric Miao" , "Haavard Skinnemoen" , "Philipp Zabel" , "Russell King" , "Ben Gardner" , "Greg KH" , linux-arm-kernel@lists.arm.linux.org.uk, linux-fbdev-devel@lists.sourceforge.net, linux-kernel@vger.kernel.org, linux-embedded@vger.kernel.org References: <12276535632759-git-send-email-jayakumar.lkml@gmail.com> <200812281346.56703.rgetz@blackfin.uclinux.org> <1230501634.16910.57.camel@linux-51e8.site> In-Reply-To: <1230501634.16910.57.camel@linux-51e8.site> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200901061802.39072.rgetz@blackfin.uclinux.org> X-OriginalArrivalTime: 06 Jan 2009 23:02:26.0791 (UTC) FILETIME=[D7DBDF70:01C97052] Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 5012 Lines: 121 On Sun 28 Dec 2008 17:00, Ben Nizette pondered: > On Sun, 2008-12-28 at 13:46 -0500, Robin Getz wrote: > > > gpio_set_batch(DB0, value, 0xFFFF, 16) > > > > > > which has the nice performance benefit of skipping all the bit > > > counting in the most common use case scenario. > > > > but has the requirement that the driver know exactly the board level > > impmentation details (something that doesn't sound generic). > > The original use case for these batch operations was in a fastpath - > setting data lines on a framebuffer. Sure it's arguably not as generic > as may be, but it optimises for speed and current usage patterns - I'm > OK with that. Other usage patterns which don't have a speed requirement > can be done using the individual pin operations and a loop. The tradeoff for speed is always made with extensibility. If you want best speed - you shouldn't be using the GPIO framework at all - just bang directly on the registers yourself... If you want something extensible/generic that serves multiple use cases - it will normally come with a performance tradeoff... > > > While we are here, I was thinking about it, and its better if I give > > > gpio_request/free/direction_batch a miss for now. Nothing prevents > > > those features being added at a later point. > > > > I don't think that request/free are optional. > > > > For example - in most SoC implementations - gpios are implemented as > > banks of 16 or 32. (a 16 or 32 bit register). > > > > Are there facilities to span these registers? > > - can you request 64 gpios as a 'bank'? > > - can you request gpio_8 -> gpio_40 as a 'bank' on a 32-bit system? > > > > Are non-adjacent/non-contiguous gpios avaliable to be put into > > a 'bank/batch/bus'? can you use gpio_8 -> 11 & 28 -> 31 as a 8-bit > > 'bus'? > > > > How do you know what is avaliable to be talked to as a bank/bus/batch > > without the request/free operation? > > I think the read/write operations should be able to fail if you give > them invalid chunks of gpio, sure. Can you define "invalid"? what are the limitations? Can I use gpio_8 -> 11 & 28 -> 31 as a chunk? > Request/free are not really designed > for that operation - they just ensure exclusive access to a gpio if > that's what the driver wants. In the batch case the > request/free/direction operations can once again be performed by single > pin operations and iteration. That depends on the semantics of "request". If it is "request & build up a monolithic chunk from xxx GPIO's" - then my definition works. > > I have seen various hardware designs (both at the PCB and SoC level) > > require all of these options, and would like to see common infrastructure > > which handles this. > > Yeah the request/free operation doesn't deal with muxing or any other > platform-specific kinda gumph, that was an original design decision. > They're really just a usage counter. Sorry for bringing up the muxing - that wasn't the point. It was really the issue of being non-contiguous, spanning various implementations. > An example which comes to mind is the avr32-specific userspace gpio > interface. This takes a bitmask, loops over the set bits and fails if > any of the gpio are previously requested or have been assigned to > non-gpio peripherals. I'll have a look. I don't understand why everyone decided to make their own userspace GPIO interface - can't we all just get along? :) > I don't really see a need to streamline this. > > I would think that a 'bank' / 'bus' (whatever) would be a collection > > of random/multiple GPIOs (a struct of gpio_port_t) rather than a > > start/length (as you described) - or better yet - the request > > function takes a list (of individual GPIO's - defined in the > > platform data), and creates the struct itself. > > Hmm, this seems a little overengineered for the basic use-cases I can > think of. Not the ones I run into all the time... More complex pin multiplexing results in less contiguous free GPIO. (which again - has nothing to do with multiplexing - it is the result that is the important thing). > If this can be cranked up to the same speed as the current > proposition then OK maybe someone will like it but otherwise, once > again, I think most people will be happy with individual operations and > iteration. It will be easier to maintain (from a end user perceptive - if someone wants a "chunk" of gpio's - they just define it in their platform data). It does put a bigger burden on the person writing things. I would think that the overhead would only be at init - runtime shouldn't be much different in the simple case, but allowing the complex usecases with the same interface is better (since we only have to teach people one thing) :) -Robin -- 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/