From patchwork Tue Feb 22 17:25:29 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ben Widawsky X-Patchwork-Id: 580811 Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by demeter1.kernel.org (8.14.4/8.14.3) with ESMTP id p1MHQ2uG004771 for ; Tue, 22 Feb 2011 17:26:23 GMT Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id E80099ED84 for ; Tue, 22 Feb 2011 09:26:01 -0800 (PST) X-Original-To: intel-gfx@lists.freedesktop.org Delivered-To: intel-gfx@lists.freedesktop.org Received: from mail-gy0-f177.google.com (mail-gy0-f177.google.com [209.85.160.177]) by gabe.freedesktop.org (Postfix) with ESMTP id EE8B59E88E for ; Tue, 22 Feb 2011 09:25:42 -0800 (PST) Received: by gyh3 with SMTP id 3so673617gyh.36 for ; Tue, 22 Feb 2011 09:25:42 -0800 (PST) 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; bh=lupeJvdzmj6mXvDplYDUinE5u3RrQqQQM3L9nNoy88k=; b=arPGqatNrZnUZPB+D9c8BpjlUicEBi17EU66SRF1HbPbD58pdLFUht+53aHPYnP4gm ji9Vbq2AdspXVnzmQFtgGfg+ZlnLq8i6lpwzHhIg/ePdRWet23GYd3yQOsAh5/wTdlqE KwMwTA8nE8vuiMFw/Y8/COo9AjHIE3Yc1Rb5A= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer; b=b1UMbbTNyB1K5voHUJDL6QZ60Sd5II5O7+qGNh2kzs1xzxx9iIQQcGJG5qEV3g57uq E+fYU/Er+uA/LugvhLB8aONslGBC0zM+rn6ZL3uMt6C4nF1O4YiW1p+3Oe7VnAGbgFCq wOSIJWiVyG6ch0C9jr0EsL0PKYNqCL56sKxyk= Received: by 10.150.136.21 with SMTP id j21mr3634437ybd.407.1298395542364; Tue, 22 Feb 2011 09:25:42 -0800 (PST) Received: from localhost.localdomain ([67.208.96.87]) by mx.google.com with ESMTPS id f31sm4189657yhc.13.2011.02.22.09.25.40 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 22 Feb 2011 09:25:41 -0800 (PST) From: Ben Widawsky To: intel-gfx@lists.freedesktop.org Date: Tue, 22 Feb 2011 09:25:29 -0800 Message-Id: <1298395529-17323-1-git-send-email-bwidawsk@gmail.com> X-Mailer: git-send-email 1.7.3.4 Subject: [Intel-gfx] [PATCH] [intel-gpu-tools] Add MI_SUSPEND_FLUSH instruction decode X-BeenThere: intel-gfx@lists.freedesktop.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: Intel graphics driver community testing & development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: intel-gfx-bounces+patchwork-intel-gfx=patchwork.kernel.org@lists.freedesktop.org Errors-To: intel-gfx-bounces+patchwork-intel-gfx=patchwork.kernel.org@lists.freedesktop.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter1.kernel.org [140.211.167.41]); Tue, 22 Feb 2011 17:26:23 +0000 (UTC) diff --git a/tools/intel_decode.c b/tools/intel_decode.c index b344e21..596ecfc 100644 --- a/tools/intel_decode.c +++ b/tools/intel_decode.c @@ -91,6 +91,7 @@ decode_mi(uint32_t *data, int count, uint32_t hw_offset, int *failures) { 0x03, 0, 1, 1, "MI_WAIT_FOR_EVENT" }, { 0x16, 0x7f, 3, 3, "MI_SEMAPHORE_MBOX" }, { 0x26, 0x1f, 3, 4, "MI_FLUSH_DW" }, + { 0x0b, 0, 1, 1, "MI_SUSPEND_FLUSH" }, }; switch ((data[0] & 0x1f800000) >> 23) {