From mboxrd@z Thu Jan 1 00:00:00 1970 From: Lauri Kasanen Subject: [PATCH 1/2] drm/radeon: Document that R700 has a different TA status bit than R600 Date: Sat, 7 Jul 2012 14:08:48 +0300 Message-ID: <20120707140848.949d0976.cand@gmx.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from mailout-eu.gmx.com (mailout-eu.gmx.com [213.165.64.44]) by gabe.freedesktop.org (Postfix) with SMTP id F103D9ECFF for ; Sat, 7 Jul 2012 04:09:36 -0700 (PDT) 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: dri-devel@lists.freedesktop.org List-Id: dri-devel@lists.freedesktop.org Hi This info comes from r600_demo, and was confirmed correct on a RV710. Signed-off-by: Lauri Kasanen --- drivers/gpu/drm/radeon/r600d.h | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/gpu/drm/radeon/r600d.h b/drivers/gpu/drm/radeon/r600d.h index 025fd5b..b818a5c 100644 --- a/drivers/gpu/drm/radeon/r600d.h +++ b/drivers/gpu/drm/radeon/r600d.h @@ -1192,6 +1192,7 @@ #define S_008010_VC_BUSY(x) (((x) & 1) << 11) #define S_008010_DB03_CLEAN(x) (((x) & 1) << 12) #define S_008010_CB03_CLEAN(x) (((x) & 1) << 13) +#define S_008010_R700_TA03_BUSY(x) (((x) & 1) << 14) #define S_008010_VGT_BUSY_NO_DMA(x) (((x) & 1) << 16) #define S_008010_VGT_BUSY(x) (((x) & 1) << 17) #define S_008010_TA03_BUSY(x) (((x) & 1) << 18) -- 1.7.2.1