From mboxrd@z Thu Jan 1 00:00:00 1970 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 158DD4028F3; Wed, 20 May 2026 18:38:44 +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=1779302326; cv=none; b=iXoNdYsOycvWoEYv0aFqBvUem5RRnHtycCKlI27fCf0KC/I9dnZstc1WuL+wiNY9P8MQzsn1EbcpjluufDKxrAuDGLPfVITyVh+OPcvXwdH00fb2Rdf87QIFtO/uXSKMI4Z3griBqXR8TVr7rCzcGm5WYXYRGzz2eVCOEesZdoI= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1779302326; c=relaxed/simple; bh=z118Qjxrsc7BIkHNC7WqBBOj6OGbCjwlDOojU5mCsAM=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=Z2DOY8OaKm7opkF0IrNTYXlapJB9aBuySgg8/Dyj/7yGWe/peB2ntAQZ7eDnVvLDYeGuyK9QuByAjNh6jhU/i7RZCcd2cLwarwNpkZtt0T9DZ8pTGUOnY8lTAQoqkZNU97qvI7+6Lid+XwxEto+XFPBPIfpx26QHfaOFeh2sQKs= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=s4BL4Fve; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="s4BL4Fve" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 35C171F00897; Wed, 20 May 2026 18:38:44 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1779302324; bh=iU5+stPK2S0FINc9cw7MFPqkw9tBWqV0+NAtqmzemjU=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=s4BL4FverTF08xOQH+QpUtsdgTdtIrcrfH/3JrBk8qyqqVPrMHjd+MO8Lol8/v4fS HLnjNIzOLWMAELL/NEgeC5R468w9qO0m/GdyiagHjHygNie4m16q2RD7tauZ0ROBRt XCRx5IdJIUrXdZaUAn4evkrnaBK2QH7g2n2SWYac= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Geert Uytterhoeven , Marc Zyngier , "Rob Herring (Arm)" , Sasha Levin Subject: [PATCH 6.6 225/508] dt-bindings: interrupt-controller: arm,gic-v3: Fix EPPI range Date: Wed, 20 May 2026 18:20:48 +0200 Message-ID: <20260520162103.523634219@linuxfoundation.org> X-Mailer: git-send-email 2.54.0 In-Reply-To: <20260520162058.573354582@linuxfoundation.org> References: <20260520162058.573354582@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.6-stable review patch. If anyone has any objections, please let me know. ------------------ From: Geert Uytterhoeven [ Upstream commit 15cfc8984defc17e5e4de1f58db7b993240fcbda ] According to the "Arm Generic Interrupt Controller (GIC) Architecture Specification, v3 and v4", revision H.b[1], there can be only 64 Extended PPI interrupts. [1] https://developer.arm.com/documentation/ihi0069/hb/ Fixes: 4b049063e0bcbfd3 ("dt-bindings: interrupt-controller: arm,gic-v3: Describe EPPI range support") Signed-off-by: Geert Uytterhoeven Brain-farted-by: Marc Zyngier Acked-by: Marc Zyngier Link: https://patch.msgid.link/3e49a63c6b2b6ee48e3737adee87781f9c136c5f.1772792753.git.geert+renesas@glider.be Signed-off-by: Rob Herring (Arm) Signed-off-by: Sasha Levin --- .../devicetree/bindings/interrupt-controller/arm,gic-v3.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/devicetree/bindings/interrupt-controller/arm,gic-v3.yaml b/Documentation/devicetree/bindings/interrupt-controller/arm,gic-v3.yaml index 0f4a062c9d6fe..72e70f9d4b4a2 100644 --- a/Documentation/devicetree/bindings/interrupt-controller/arm,gic-v3.yaml +++ b/Documentation/devicetree/bindings/interrupt-controller/arm,gic-v3.yaml @@ -50,7 +50,7 @@ properties: The 2nd cell contains the interrupt number for the interrupt type. SPI interrupts are in the range [0-987]. PPI interrupts are in the range [0-15]. Extended SPI interrupts are in the range [0-1023]. - Extended PPI interrupts are in the range [0-127]. + Extended PPI interrupts are in the range [0-63]. The 3rd cell is the flags, encoded as follows: bits[3:0] trigger type and level flags. -- 2.53.0