From mboxrd@z Thu Jan 1 00:00:00 1970 From: Adam Jackson Subject: Re: [PATCH] drm/kms: driver for virtual cirrus under qemu Date: Wed, 02 May 2012 13:36:39 -0400 Message-ID: <4FA170A7.9040107@redhat.com> References: <1335954459-20367-1-git-send-email-airlied@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; Format="flowed" Content-Transfer-Encoding: 7bit Return-path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by gabe.freedesktop.org (Postfix) with ESMTP id C75A2A09E4 for ; Wed, 2 May 2012 10:36:41 -0700 (PDT) In-Reply-To: <1335954459-20367-1-git-send-email-airlied@gmail.com> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: dri-devel-bounces+sf-dri-devel=m.gmane.org@lists.freedesktop.org Errors-To: dri-devel-bounces+sf-dri-devel=m.gmane.org@lists.freedesktop.org To: Dave Airlie Cc: dri-devel@lists.freedesktop.org List-Id: dri-devel@lists.freedesktop.org On 5/2/12 6:27 AM, Dave Airlie wrote: > From: Dave Airlie > > This is the initial driver for emulated cirrus GPU found in qemu. > This driver only supports the emulated GPU and doesn't attempt > to bind to any real cirrus GPUs. In particular, > +/* only bind to the cirrus chip in qemu */ > +static DEFINE_PCI_DEVICE_TABLE(pciidlist) = { > + { PCI_VENDOR_ID_CIRRUS, PCI_DEVICE_ID_CIRRUS_5446, 0x1af4, 0x1100, 0, > + 0, 0 }, > + {0,} > +}; This requires a (somewhat) new qemu: http://git.savannah.gnu.org/cgit/qemu.git/commit/hw/pci.c?id=d350d97d196a632b6c7493acf07a061017fc6f7d Reviewed-by: Adam Jackson - ajax