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 1ED722DBF75; Tue, 21 Jul 2026 18:52:46 +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=1784659968; cv=none; b=TcAVyCTOMQBi4AdZ3X1u5GOpDS/4ANwhZ5e+qa216M4hl7LvAz8kys3Km/SfK9qCTnmQ/I4qn9kthIDHtIKOlN1BII9pB6oi3TS0sTvA718pSACRSRn/1eOktCuURJO2RgGdZt3PskP0XprE5KiPN9kX3SjAnnlZhbHyvStQuGM= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784659968; c=relaxed/simple; bh=kBxgV7mRYE3OhEpNBvcD6L4TR1+VzQvy9+1y0B7hSdM=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=fRAumzAjv0PFPEyYpB6m2KwBjW7Gxtfro+4Aw1ftoY/pAxrPlpy/DSzair3WCobr+/lORdPBf68ajpATmJId0wZP1swwYWrwfllW91Ty9c0VKqiD7qNWyW4duOKuOknuEiLyXFf4/NnZzxrFVxII1oDxsMfDeE7qkL1Hk9cFYjA= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=WOZLCus+; 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="WOZLCus+" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 493411F000E9; Tue, 21 Jul 2026 18:52:46 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1784659966; bh=HjmqAbzFuCK7hCnnJTPlANDIWkUP3qq67yCiWrxLIWQ=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=WOZLCus+mYuRweJbC4myvdwe3AE39vE9GggJBxnWAmPWT6cl5eJbKSET23r5prQ+j /K8u5PcsXXfo6YyOVMGsu2fRW9sCIy5jyUpbBEZwKuILa4uSBEma9BwH7ODasJ/0yc y4TBLxjcQltBYY+GqeUcUEMuAVcU9T0ruCCBD0DE= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Selvamani Rajagopal , Krzysztof Kozlowski , Jakub Kicinski , Sasha Levin Subject: [PATCH 7.1 0801/2077] dt-bindings: net: updated interrupt type to be active low, level triggered Date: Tue, 21 Jul 2026 17:07:54 +0200 Message-ID: <20260721152611.685698227@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260721152552.646164743@linuxfoundation.org> References: <20260721152552.646164743@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 7.1-stable review patch. If anyone has any objections, please let me know. ------------------ From: Selvamani Rajagopal [ Upstream commit 31e56112e6544afba0a50d60251175585ee62943 ] According to OPEN Alliance 10BASE-T1x MACPHY Serial Interface (TC6) specification, interrupt type is active low, level triggered interrupt. Specification calls for when interrupt level will be asserted and what condition it is de-asserted. By using edge triggered interrupt, there is a potential chance to miss it, particularly if it is asserted when interrupt is disabled. Level triggered interrupt can't be missed as it gets de-asserted only on interrupt handler taking actions on interrupting conditions. Fixes: ac49b950bea9 ("dt-bindings: net: add Microchip's LAN865X 10BASE-T1S MACPHY") Signed-off-by: Selvamani Rajagopal Acked-by: Krzysztof Kozlowski Link: https://patch.msgid.link/20260611-level-trigger-v5-4-4533a9e85ce2@onsemi.com Signed-off-by: Jakub Kicinski Signed-off-by: Sasha Levin --- Documentation/devicetree/bindings/net/microchip,lan8650.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/devicetree/bindings/net/microchip,lan8650.yaml b/Documentation/devicetree/bindings/net/microchip,lan8650.yaml index 61e11d4a07c407..766ff58147ae36 100644 --- a/Documentation/devicetree/bindings/net/microchip,lan8650.yaml +++ b/Documentation/devicetree/bindings/net/microchip,lan8650.yaml @@ -67,7 +67,7 @@ examples: pinctrl-names = "default"; pinctrl-0 = <ð0_pins>; interrupt-parent = <&gpio>; - interrupts = <6 IRQ_TYPE_EDGE_FALLING>; + interrupts = <6 IRQ_TYPE_LEVEL_LOW>; local-mac-address = [04 05 06 01 02 03]; spi-max-frequency = <15000000>; }; -- 2.53.0