From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andrew Morton Subject: Re: [PATCH 3/4] fbdev: uvesafb driver Date: Sat, 23 Jun 2007 11:35:57 -0700 Message-ID: <20070623113557.f0295218.akpm@linux-foundation.org> References: <20070623105243.GD12623@spock.one.pl> Reply-To: linux-fbdev-devel@lists.sourceforge.net Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from sc8-sf-mx1-b.sourceforge.net ([10.3.1.91] helo=mail.sourceforge.net) by sc8-sf-list1-new.sourceforge.net with esmtp (Exim 4.43) id 1I2AT0-0003wR-Tj for linux-fbdev-devel@lists.sourceforge.net; Sat, 23 Jun 2007 11:36:18 -0700 Received: from smtp2.linux-foundation.org ([207.189.120.14]) by mail.sourceforge.net with esmtps (TLSv1:AES256-SHA:256) (Exim 4.44) id 1I2ASz-0000Qd-Pd for linux-fbdev-devel@lists.sourceforge.net; Sat, 23 Jun 2007 11:36:14 -0700 In-Reply-To: <20070623105243.GD12623@spock.one.pl> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: linux-fbdev-devel-bounces@lists.sourceforge.net Errors-To: linux-fbdev-devel-bounces@lists.sourceforge.net To: spock@gentoo.org Cc: linux-fbdev-devel@lists.sourceforge.net, linux-kernel@vger.kernel.org On Sat, 23 Jun 2007 12:52:43 +0200 Michal Januszewski wrote: > Add the uvesafb driver, an enhanced version of vesafb that makes use of > a userspace helper to run x86 Video BIOS code. > > Signed-off-by: Michal Januszewski > --- > drivers/video/Kconfig | 18 + > drivers/video/Makefile | 1 + > drivers/video/uvesafb.c | 1902 +++++++++++++++++++++++++++++++++++++++++++++++ > include/video/Kbuild | 2 +- > include/video/uvesafb.h | 208 ++++++ > 5 files changed, 2130 insertions(+), 1 deletions(-) > > diff --git a/drivers/video/Kconfig b/drivers/video/Kconfig > index 403dac7..5cc03f9 100644 > --- a/drivers/video/Kconfig > +++ b/drivers/video/Kconfig > @@ -585,6 +585,24 @@ config FB_TGA > > Say Y if you have one of those. > > +config FB_UVESA > + tristate "Userspace VESA VGA graphics support" > + depends on FB && CONNECTOR These dependencies are insufficient. > ... > > --- /dev/null > +++ b/drivers/video/uvesafb.c > @@ -0,0 +1,1902 @@ > +/* > + * A framebuffer driver for VBE 2.0+ compliant video cards > + * > + * (c) 2007 Michal Januszewski > + * Loosely based upon the vesafb driver. > + * > + */ > +#include > +#include > +#include > +#include > +#include > +#include > +#include > +#include > +#include > +#include > +#include > +#include