From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 4221329992B; Mon, 23 Feb 2026 14:33:22 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1771857202; cv=none; b=R7qeFffEJ9zX1WlZPql5zv5TBGRRnZqA9DyoEuPaDHta2bKF+sCz517TPR60YkK6jBaAW6SyrSQWSzyw1Ii6ktVDlnORThH+jy1TtpdE34xENoQctnlB0BJ5mzhqgn6D6AbpHIoIglxBs7ViZHNSB5E6fL98dRFKHQT+wSmk7f0= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1771857202; c=relaxed/simple; bh=/v1QnnnNv4WTrHPb7ljPxc518XT/vYR93bRoAoBZ+Ys=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=SOoSGygig9nPwwBjrzRwVTPDBJYD2OM2vUFHyJB9lpaBjPE2/7GZwJ8MFNwdC2Y1xOn8BNnDooyrI54OiWucMyqPevAJXduACBCt42NZJXA44AMkWsTkOBsof6UavdQPtkdjgehFNjitg8TlRMTsZkqEMTfTZiXZF0qeYAylPx8= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=g2uIHCHz; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="g2uIHCHz" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 99BE6C116C6; Mon, 23 Feb 2026 14:33:21 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1771857202; bh=/v1QnnnNv4WTrHPb7ljPxc518XT/vYR93bRoAoBZ+Ys=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=g2uIHCHzDmD6gD9S4rl5/7Hn9cj7n4Umr0+DjuIxcEeP+OTZWPEFcFmuMHIoGZw+D 4tKj/N3vHVUhh0GRnxp96l1JdYKryFjTVJxeiRsvMw3oLsbI9PuCnTxw98Jcm68HQo /bddYnN6L0baVIKO45NEsFK94X12SJWEIbxcH4MJs6DPIbiOrtAuIGoLr8MhDoNzcr MabQmJfSSbC3PE/ttJSsHohtTyjsjaivW/LwvK7TsHT0ztie35l5goMD94TMyn0m/0 bInIwBa0wgzMFn7laHElg16/z143czXbMIii5oXBhBo3YTdtggaoHVbDU4yUmMDp3M fx4eTeDezYGYA== From: Thierry Reding To: Rob Herring , Krzysztof Kozlowski , Conor Dooley , Thierry Reding Cc: Jon Hunter , devicetree@vger.kernel.org, linux-tegra@vger.kernel.org Subject: [PATCH 04/10] dt-bindings: interrupt-controller: tegra: Fix reg entries Date: Mon, 23 Feb 2026 15:32:59 +0100 Message-ID: <20260223143305.3771383-5-thierry.reding@kernel.org> X-Mailer: git-send-email 2.52.0 In-Reply-To: <20260223143305.3771383-1-thierry.reding@kernel.org> References: <20260223143305.3771383-1-thierry.reding@kernel.org> Precedence: bulk X-Mailing-List: devicetree@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: Thierry Reding Tegra210 takes exactly 6 "reg" property entries, as opposed to Tegra30 which supports only 5 entries. Signed-off-by: Thierry Reding --- .../nvidia,tegra20-ictlr.yaml | 23 +++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/Documentation/devicetree/bindings/interrupt-controller/nvidia,tegra20-ictlr.yaml b/Documentation/devicetree/bindings/interrupt-controller/nvidia,tegra20-ictlr.yaml index 074a873880e5..d0c039d14ad2 100644 --- a/Documentation/devicetree/bindings/interrupt-controller/nvidia,tegra20-ictlr.yaml +++ b/Documentation/devicetree/bindings/interrupt-controller/nvidia,tegra20-ictlr.yaml @@ -35,11 +35,12 @@ properties: - enum: - nvidia,tegra20-ictlr - nvidia,tegra30-ictlr + - nvidia,tegra210-ictlr reg: description: Each entry is a block of 32 interrupts minItems: 4 - maxItems: 5 + maxItems: 6 interrupt-controller: true @@ -64,10 +65,28 @@ allOf: properties: reg: maxItems: 4 - else: + + - if: + properties: + compatible: + contains: + const: nvidia,tegra30-ictlr + then: properties: reg: minItems: 5 + maxItems: 5 + + - if: + properties: + compatible: + contains: + const: nvidia,tegra210-ictlr + then: + properties: + reg: + minItems: 6 + maxItems: 6 examples: - | -- 2.52.0