Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758567AbZLOTrh (ORCPT ); Tue, 15 Dec 2009 14:47:37 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1755221AbZLOTrg (ORCPT ); Tue, 15 Dec 2009 14:47:36 -0500 Received: from atrey.karlin.mff.cuni.cz ([195.113.26.193]:54592 "EHLO atrey.karlin.mff.cuni.cz" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753817AbZLOTre (ORCPT ); Tue, 15 Dec 2009 14:47:34 -0500 Date: Tue, 15 Dec 2009 20:47:25 +0100 From: Pavel Machek To: H Hartley Sweeten Cc: Ryan Mallon , Daniel Walker , Iliyan Malchev , Brian Swetland , kernel list , Arve Hj?nnev?g , linux-arm-kernel Subject: Re: GPIO support for HTC Dream Message-ID: <20091215194725.GH24406@elf.ucw.cz> References: <20091208214658.GC4164@elf.ucw.cz> <4B1ECEEE.3000209@bluewatersys.com> <4B203575.6050407@bluewatersys.com> <20091210172458.GJ19454@elf.ucw.cz> <4B2150B7.3040207@bluewatersys.com> <20091211221015.GB24456@elf.ucw.cz> <20091214064545.GK5114@elf.ucw.cz> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-Warning: Reading this can be dangerous to your mental health. User-Agent: Mutt/1.5.20 (2009-06-14) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2580 Lines: 89 Hi! > > +int gpio_to_irq(unsigned gpio) > > +{ > > + return -EINVAL; > > +} > > This should probably just be an inline function in > arch/arm/mach-msm/include/mach/gpio.h Well, it is not performance critical in any way and it is likely to change in future. I'd leave it here. > > diff --git a/arch/arm/mach-msm/board-dream.h b/arch/arm/mach-msm/board-dream.h > > index 4f345a5..dbd78b9 100644 > > --- a/arch/arm/mach-msm/board-dream.h > > +++ b/arch/arm/mach-msm/board-dream.h > > @@ -1,5 +1,58 @@ > > > > -#define TROUT_CPLD_BASE 0xE8100000 > > -#define TROUT_CPLD_START 0x98000000 > > -#define TROUT_CPLD_SIZE SZ_4K > > +#define MSM_SMI_BASE 0x00000000 > > +#define MSM_SMI_SIZE 0x00800000 ... > > +#define DREAM_CPLD_BASE 0xE8100000 > > +#define DREAM_CPLD_START 0x98000000 > > +#define DREAM_CPLD_SIZE SZ_4K > > + > > This header might need to be a separate patch. The only thing in it > related to the rest of this is DREAM_CPLD_BASE. Yep. > > +#ifndef __ASM_ARCH_MSM_GPIO_H > > +#define __ASM_ARCH_MSM_GPIO_H > > + > > +extern int gpio_to_irq(unsigned gpio); > > This should probably be an inline as mentioned above. > > For completeness you should probably also add: > > static inline int irq_to_gpio(unsigned irq) > { > return -EINVAL; > } I'd say that would be overdoing it. > And, nitpick, move both of them after the gpio_cansleep below. I'll do the move. > > +#define DREAM_GPIO_CABLE_IN1 (83) > > +#define DREAM_GPIO_CABLE_IN2 (49) > > + > > +#define DREAM_GPIO_START (128) > > Nitpick. Tab align these three with the ones below. Ok. > > +#define DREAM_GPIO_SDMC_CD_N (DREAM_GPIO_VIRTUAL_BASE + 0) > > +#define DREAM_GPIO_END (DREAM_GPIO_SDMC_CD_N) > > +#define DREAM_GPIO_BANK1_FIRST_INT_SOURCE (DREAM_GPIO_SDMC_CD_N) > > +#define DREAM_GPIO_BANK1_LAST_INT_SOURCE (DREAM_GPIO_SDMC_CD_N) > > + > > +#endif > > Otherwise, looks good to me. Just test it to make sure it works :-). > > Since I have no way of compiling or testing this... > > Reviewed-by: H Hartley Sweeten I believe inlining that function would be bad change. Can I still use reviewed-by tag? Pavel -- (english) http://www.livejournal.com/~pavelmachek (cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html -- 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/