From patchwork Fri May 20 16:35:23 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alex Deucher X-Patchwork-Id: 804172 Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by demeter2.kernel.org (8.14.4/8.14.3) with ESMTP id p4KGaITB008720 for ; Fri, 20 May 2011 16:36:38 GMT Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 78E819EBF3 for ; Fri, 20 May 2011 09:36:18 -0700 (PDT) X-Original-To: dri-devel@lists.freedesktop.org Delivered-To: dri-devel@lists.freedesktop.org Received: from mail-qy0-f170.google.com (mail-qy0-f170.google.com [209.85.216.170]) by gabe.freedesktop.org (Postfix) with ESMTP id B562A9EB4B for ; Fri, 20 May 2011 09:35:34 -0700 (PDT) Received: by mail-qy0-f170.google.com with SMTP id 32so428460qyk.15 for ; Fri, 20 May 2011 09:35:34 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:from:to:cc:subject:date:message-id:x-mailer :in-reply-to:references; bh=/Ob1hirckDOTXDpo17867R/cpxIObnad8AzErK4GyOs=; b=j7nO6FF5MkW7qLi6XnpcV1MNCF0EWX6DEBgLh+lJsiB/hFeUK98/ajVZeMN5Yf4zor IG4RWtomuDBC3MTXhWvKHL3335Nwsk8mGD8YEOMYsnANxXAU35VvoGCBTEYs27Dusnql y06Gjcm3zxBEtdL18lf4J1445BgahPndAv/Jg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references; b=DFbFSJGFWbPWNx16vSXlFPwgRTtiskC9V1JAYItsjDDcWqdA4vXtw9x7yPT5ZCGu8i FHq4NNhO9TpaKJvV9pRQKpCzlxdnBNJO5v6fQj4tgv4UdU46UjGNvMc582SveBrNq7xk opMopdyfrmSdu9NbvOZSchyi13tbmikiTbtBI= Received: by 10.229.18.81 with SMTP id v17mr3501876qca.7.1305909334481; Fri, 20 May 2011 09:35:34 -0700 (PDT) Received: from localhost.localdomain (static-74-96-105-7.washdc.fios.verizon.net [74.96.105.7]) by mx.google.com with ESMTPS id m9sm2335623qcu.27.2011.05.20.09.35.33 (version=SSLv3 cipher=OTHER); Fri, 20 May 2011 09:35:34 -0700 (PDT) From: Alex Deucher To: airlied@gmail.com, dri-devel@lists.freedesktop.org Subject: [PATCH 2/2] drm/radeon/kms: bump kms version number Date: Fri, 20 May 2011 12:35:23 -0400 Message-Id: <1305909323-22051-2-git-send-email-alexdeucher@gmail.com> X-Mailer: git-send-email 1.7.1.1 In-Reply-To: <1305909323-22051-1-git-send-email-alexdeucher@gmail.com> References: <1305909323-22051-1-git-send-email-alexdeucher@gmail.com> X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: dri-devel-bounces+patchwork-dri-devel=patchwork.kernel.org@lists.freedesktop.org Errors-To: dri-devel-bounces+patchwork-dri-devel=patchwork.kernel.org@lists.freedesktop.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter2.kernel.org [140.211.167.43]); Fri, 20 May 2011 16:36:38 +0000 (UTC) - proper bank size for fusion for 2D tiling. Signed-off-by: Alex Deucher --- drivers/gpu/drm/radeon/radeon_drv.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/drivers/gpu/drm/radeon/radeon_drv.c b/drivers/gpu/drm/radeon/radeon_drv.c index 63d2de8..1d33060 100644 --- a/drivers/gpu/drm/radeon/radeon_drv.c +++ b/drivers/gpu/drm/radeon/radeon_drv.c @@ -50,9 +50,10 @@ * 2.7.0 - fixups for r600 2D tiling support. (no external ABI change), add eg dyn gpr regs * 2.8.0 - pageflip support, r500 US_FORMAT regs. r500 ARGB2101010 colorbuf, r300->r500 CMASK, clock crystal query * 2.9.0 - r600 tiling (s3tc,rgtc) working, SET_PREDICATION packet 3 on r600 + eg, backend query + * 2.10.0 - fusion 2D tiling */ #define KMS_DRIVER_MAJOR 2 -#define KMS_DRIVER_MINOR 9 +#define KMS_DRIVER_MINOR 10 #define KMS_DRIVER_PATCHLEVEL 0 int radeon_driver_load_kms(struct drm_device *dev, unsigned long flags); int radeon_driver_unload_kms(struct drm_device *dev);