From mboxrd@z Thu Jan 1 00:00:00 1970 From: Imre Deak Subject: Re: [Linux-fbdev-devel] [PATCH 06/20] omapfb: Add support for the OMAP2EVM LCD Date: Tue, 16 Jun 2009 13:51:23 +0300 Message-ID: <20090616105123.GD32105@localhost> References: <1244137965-8937-1-git-send-email-imre.deak@nokia.com> <833ed44e61e3d4093eb27b55b97252967e042d41.1244131952.git.imre.deak@nokia.com> <5ba715a9dbc88b8c3a8225bc1cfdabd3faffe00f.1244131952.git.imre.deak@nokia.com> <646692ce09a12e1a8a2d4072097b4d440b7de5d5.1244131952.git.imre.deak@nokia.com> <20090614233027.c70b1c53.krzysztof.h1@poczta.fm> Mime-Version: 1.0 Return-path: Content-Disposition: inline In-Reply-To: <20090614233027.c70b1c53.krzysztof.h1@poczta.fm> Sender: linux-omap-owner@vger.kernel.org List-ID: Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: ext Krzysztof Helt Cc: Antonino Daplas , "linux-fbdev-devel@lists.sourceforge.net" , Tony Lindgren , Arun C , "Valkeinen Tomi (Nokia-D/Helsinki)" , "linux-omap@vger.kernel.org" On Sun, Jun 14, 2009 at 11:30:27PM +0200, ext Krzysztof Helt wrote: > On Thu, 4 Jun 2009 20:52:31 +0300 > Imre Deak wrote: > > > From: arun c > > > > omap2evm LCD supports VGA and QVGA resolution, by default its in VGA mode. > > > > Signed-off-by: Arun C > > Signed-off-by: Tony Lindgren > > Fixed-by: Jarkko Nikula > > Fixed-by: David Brownell > > Signed-off-by: Imre Deak > > --- > > drivers/video/omap/Makefile | 1 + > > drivers/video/omap/lcd_omap2evm.c | 189 +++++++++++++++++++++++++++++++++++++ > > 2 files changed, 190 insertions(+), 0 deletions(-) > > create mode 100644 drivers/video/omap/lcd_omap2evm.c > > > > diff --git a/drivers/video/omap/Makefile b/drivers/video/omap/Makefile > > index 7a37b03..c2475e3 100644 > > --- a/drivers/video/omap/Makefile > > +++ b/drivers/video/omap/Makefile > > @@ -27,6 +27,7 @@ objs-y$(CONFIG_MACH_OMAP_OSK) += lcd_osk.o > > > > objs-y$(CONFIG_MACH_OMAP_APOLLON) += lcd_apollon.o > > objs-y$(CONFIG_MACH_OMAP_2430SDP) += lcd_2430sdp.o > > +objs-y$(CONFIG_MACH_OMAP2EVM) += lcd_omap2evm.o > > objs-y$(CONFIG_FB_OMAP_LCD_MIPID) += lcd_mipid.o > > > > omapfb-objs := $(objs-yy) > diff --git a/drivers/video/omap/lcd_omap2evm.c b/drivers/video/omap/lcd_omap2evm.c > new file mode 100644 > index 0000000..2fc46c2 > --- /dev/null > +++ b/drivers/video/omap/lcd_omap2evm.c > @@ -0,0 +1,189 @@ > +/* > + * LCD panel support for the MISTRAL OMAP2EVM board > + * > + * Author: Arun C > + * > + * Derived from drivers/video/omap/lcd_omap3evm.c > + * Derived from drivers/video/omap/lcd-apollon.c > + * > + * This program is free software; you can redistribute it and/or modify it > + * under the terms of the GNU General Public License as published by the > + * Free Software Foundation; either version 2 of the License, or (at your > + * option) any later version. > + * > + * This program is distributed in the hope that it will be useful, but > + * WITHOUT ANY WARRANTY; without even the implied warranty of > + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU > + * General Public License for more details. > + * > + * You should have received a copy of the GNU General Public License along > + * with this program; if not, write to the Free Software Foundation, Inc., > + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. > + */ > + > +#include > +#include > +#include > +#include > + > +#include > +#include > +#include > + > +#define LCD_PANEL_ENABLE_GPIO 154 > +#define LCD_PANEL_LR 128 > +#define LCD_PANEL_UD 129 > +#define LCD_PANEL_INI 152 > +#define LCD_PANEL_QVGA 148 > +#define LCD_PANEL_RESB 153 > + > +#define LCD_XRES 480 > +#define LCD_YRES 640 > +#define LCD_PIXCLOCK_MAX 20000 /* in kHz */ > > You can drop defines used only once. There are no such defines for some other panels > in your patches. Ok, fixing it. --Imre