From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id A004EC433F5 for ; Fri, 8 Oct 2021 22:30:49 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 64E5B60FDC for ; Fri, 8 Oct 2021 22:30:49 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org 64E5B60FDC Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=emeril.freedesktop.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=lists.freedesktop.org Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 9786B6E88E; Fri, 8 Oct 2021 22:30:48 +0000 (UTC) Received: from emeril.freedesktop.org (emeril.freedesktop.org [IPv6:2610:10:20:722:a800:ff:feee:56cf]) by gabe.freedesktop.org (Postfix) with ESMTP id 78B6C6E88E; Fri, 8 Oct 2021 22:30:47 +0000 (UTC) Received: from emeril.freedesktop.org (localhost [127.0.0.1]) by emeril.freedesktop.org (Postfix) with ESMTP id 70652A363C; Fri, 8 Oct 2021 22:30:47 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Patchwork To: "Matt Roper" Cc: intel-gfx@lists.freedesktop.org Date: Fri, 08 Oct 2021 22:30:47 -0000 Message-ID: <163373224742.16848.11043445970877416178@emeril.freedesktop.org> X-Patchwork-Hint: ignore References: <20211008215635.2026385-1-matthew.d.roper@intel.com> In-Reply-To: <20211008215635.2026385-1-matthew.d.roper@intel.com> Subject: [Intel-gfx] =?utf-8?b?4pyXIEZpLkNJLkNIRUNLUEFUQ0g6IHdhcm5pbmcg?= =?utf-8?q?for_i915=3A_Initial_multi-tile_support?= X-BeenThere: intel-gfx@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Intel graphics driver community testing & development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: intel-gfx@lists.freedesktop.org Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" == Series Details == Series: i915: Initial multi-tile support URL : https://patchwork.freedesktop.org/series/95631/ State : warning == Summary == $ dim checkpatch origin/drm-tip 21a66c454734 drm/i915: rework some irq functions to take intel_gt as argument -:17: WARNING:BAD_SIGN_OFF: Non-standard signature: Co-authored-by: #17: Co-authored-by: Tvrtko Ursulin total: 0 errors, 1 warnings, 0 checks, 75 lines checked 7c75c8977d8b drm/i915: split general MMIO setup from per-GT uncore init 447d1a2a3ab0 drm/i915: Restructure probe to handle multi-tile platforms d21c03706792 drm/i915: Store backpointer to GT in uncore b22d545fdf95 drm/i915: Prepare for multiple gts -:179: ERROR:COMPLEX_MACRO: Macros with complex values should be enclosed in parentheses #179: FILE: drivers/gpu/drm/i915/gt/intel_gt.h:91: +#define for_each_gt(i915__, id__, gt__) \ + for ((id__) = 0; \ + (id__) < I915_MAX_TILES; \ + (id__)++) \ + for_each_if (((gt__) = (i915__)->gts[(id__)])) -:179: CHECK:MACRO_ARG_REUSE: Macro argument reuse 'id__' - possible side-effects? #179: FILE: drivers/gpu/drm/i915/gt/intel_gt.h:91: +#define for_each_gt(i915__, id__, gt__) \ + for ((id__) = 0; \ + (id__) < I915_MAX_TILES; \ + (id__)++) \ + for_each_if (((gt__) = (i915__)->gts[(id__)])) -:183: WARNING:SPACING: space prohibited between function name and open parenthesis '(' #183: FILE: drivers/gpu/drm/i915/gt/intel_gt.h:95: + for_each_if (((gt__) = (i915__)->gts[(id__)])) total: 1 errors, 1 warnings, 1 checks, 192 lines checked b38b62d5cc6c drm/i915: Initial support for per-tile uncore 1b3ebba48401 drm/i915/xehp: Determine which tile raised an interrupt 72823afccad4 drm/i915/xehp: Make IRQ reset and postinstall multi-tile aware c0b1bf330072 drm/i915/guc: Update CT debug macro for multi-tile 1d9f14f403bd drm/i915: Release per-gt resources allocated a0d4d7f898b5 drm/i915/xehpsdv: Initialize multi-tiles