From nobody Thu Sep 24 17:53:21 2026 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id C27FC4F3EDE; Mon, 21 Sep 2026 23:28:05 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1790033298; cv=none; b=GpKEP/2AwUxoN3uOAKs84NdjIHkm2gRCoDJdojs7cOjhcKVAgw9hHSg4J9UP33UfcEeHtmsZMeVno//7zYgZ4zNJB+Ey8TnO7eLkWCPNcZAhyeTH6rNeQXikRImbdpa6iN/xUD1BdepT4xgpRJRfj4N9LC6TGZhCQCNbD60k88E= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1790033298; c=relaxed/simple; bh=OhE7HP1ED6ouM/A0A8HzsX/EDG2EJeUmthFB9sdoZEw=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=Cn2ETISoNHPKsxE8yEuPxG5qS8EhipJyqEJvYU1ty15ICgib0T4fsICeZvqLDtlo57D6LtGHAAokd4MxpGpAPEZmNbIgx0kKs8D2jiDJJh2W4IITOKuNEKxWC9XcntxmXVfGismHAHBHzRXtdNK8wX0YkSaXU1nuLmbIcIlV6FM= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=EziB2wZY; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="EziB2wZY" Received: by smtp.kernel.org (Postfix) with ESMTPSA id E7E6F1F00899; Mon, 21 Sep 2026 23:28:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kernel.org; s=k20260515; t=1790033283; bh=EkOF2OKm9prgMnT5W8OmhhbFvcCajkN61ox3piMn6x8=; h=From:To:Cc:Subject:Date; b=EziB2wZY5ldb6jGtQfjR5xqLKJW8nUkve3p0mr5LX8lubAJxvPMN7Yt48G9NkbaA0 PcEGdUKG1Q/jUDGSbx7GfDUR2PBEdFcNu7K1SYXRMXW0oOYSsDheBnDsoYdnzvIpjw d2roMLD8emkcB7flPaJA2/G6PHqRmfr35b8zZC7nOXE2za+ELroihhZkmshW1mfHmR yb5J17j+HpaT+5O8+qb25JVN5XzFU8qxU901x+hmFmKwMHs0R6hoLHo18f0prJ42at i86kCaAhTrCBAyQxpWTnv6n1Rz0skOlAttZ9m0aQCrskh/m1++TxuwTfal9ytVKSr8 3kipa4sxzlIXw== From: "Rob Herring (Arm)" To: David Airlie , Simona Vetter , Maarten Lankhorst , Maxime Ripard , Thomas Zimmermann , Krzysztof Kozlowski , Conor Dooley , Heiko Stuebner Cc: dri-devel@lists.freedesktop.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH] dt-bindings: gpu: Allow Hi6220 Mali resets Date: Mon, 21 Sep 2026 18:27:58 -0500 Message-ID: <20260921232758.3136548-1-robh@kernel.org> X-Mailer: git-send-email 2.53.0 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Hi6220 Mali nodes provide both ao_g3d and media_g3d resets. Require those two resets and their names for the Hi6220 compatible. Other Mali Utgard nodes have at most one reset and do not use reset names. Assisted-by: LLM Signed-off-by: Rob Herring (Arm) --- .../bindings/gpu/arm,mali-utgard.yaml | 25 ++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/Documentation/devicetree/bindings/gpu/arm,mali-utgard.yaml b/D= ocumentation/devicetree/bindings/gpu/arm,mali-utgard.yaml index c8d0d9192d92..d68fe8c7d010 100644 --- a/Documentation/devicetree/bindings/gpu/arm,mali-utgard.yaml +++ b/Documentation/devicetree/bindings/gpu/arm,mali-utgard.yaml @@ -112,7 +112,13 @@ properties: maxItems: 1 =20 resets: - maxItems: 1 + minItems: 1 + maxItems: 2 + + reset-names: + items: + - const: ao_g3d + - const: media_g3d =20 operating-points-v2: true =20 @@ -130,6 +136,23 @@ required: additionalProperties: false =20 allOf: + - if: + properties: + compatible: + contains: + const: hisilicon,hi6220-mali + then: + properties: + resets: + minItems: 2 + required: + - reset-names + else: + properties: + resets: + maxItems: 1 + reset-names: false + - if: properties: compatible: --=20 2.53.0