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 vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 0434BC433EF for ; Thu, 24 Feb 2022 15:57:14 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S236674AbiBXP5l (ORCPT ); Thu, 24 Feb 2022 10:57:41 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:42718 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S236684AbiBXP5H (ORCPT ); Thu, 24 Feb 2022 10:57:07 -0500 Received: from esa.microchip.iphmx.com (esa.microchip.iphmx.com [68.232.153.233]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 1B50CBC1C; Thu, 24 Feb 2022 07:56:36 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=microchip.com; i=@microchip.com; q=dns/txt; s=mchp; t=1645718197; x=1677254197; h=message-id:date:mime-version:subject:to:cc:references: from:in-reply-to:content-transfer-encoding; bh=n6pr0cu3VN6p2h9F5Q0h3H6YltMPTU+Ogr3c4MyROG8=; b=UE+h5+FJi/KQ4+sOjr9J/yTFdZR9KWdJU7vQceIcUENN9nXFDrZwCYRd TTjsYpUiKY9SXLX7p+8IQ1jR3NAct5y0GSvD2SQ0l1HFZM4lZUcVO/SIt w2zEFpDxIW5g0TJg6+0AZ9BypynwhEgYIItW8OWH20tClSW53bfyulXO2 R1FkDoDDQFNGnBUHXCWNSDz3lcd7mdYJD9e0v/jVR2Jmb6I6tRtJuRjF0 gyhtW1BL4LonKTWfm4ka7F8kb9Z+xXmmzxS6a6RyggPweyCooZw2MhLAx 5CPneEKYP06MXLjInb78QW6qduntCzaBKiXQCiaYePzd5ozgsDRcrQTZV A==; X-IronPort-AV: E=Sophos;i="5.90,134,1643698800"; d="scan'208";a="163514224" Received: from smtpout.microchip.com (HELO email.microchip.com) ([198.175.253.82]) by esa1.microchip.iphmx.com with ESMTP/TLS/AES256-SHA256; 24 Feb 2022 08:56:36 -0700 Received: from chn-vm-ex02.mchp-main.com (10.10.85.144) by chn-vm-ex01.mchp-main.com (10.10.85.143) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2375.17; Thu, 24 Feb 2022 08:56:36 -0700 Received: from [10.12.73.51] (10.10.115.15) by chn-vm-ex02.mchp-main.com (10.10.85.144) with Microsoft SMTP Server id 15.1.2375.17 via Frontend Transport; Thu, 24 Feb 2022 08:56:34 -0700 Message-ID: Date: Thu, 24 Feb 2022 16:56:33 +0100 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.5.0 Subject: Re: [PATCH v2] dt-bindings: arm: at91: add Kontron's new KSwitches Content-Language: en-US To: Michael Walle , , , CC: Rob Herring , Krzysztof Kozlowski , Alexandre Belloni , Ludovic Desroches References: <20220210131817.484922-1-michael@walle.cc> From: Nicolas Ferre Organization: microchip In-Reply-To: <20220210131817.484922-1-michael@walle.cc> Content-Type: text/plain; charset="UTF-8"; format=flowed Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 10/02/2022 at 14:18, Michael Walle wrote: > The Kontron KSwitch D10 MMT series ethernet switches features a LAN9668 > SoC with either 8 copper ports or 6 copper port and two SFP cages. > > Signed-off-by: Michael Walle Acked-by: Nicolas Ferre Taken in at91-dt branch for reaching 5.18 via arm-soc tree. Thanks for your patch! Best regards, Nicolas > --- > changes since v1: > - just use one entry with an enum, thanks Krzysztof > > Documentation/devicetree/bindings/arm/atmel-at91.yaml | 9 +++++++++ > 1 file changed, 9 insertions(+) > > diff --git a/Documentation/devicetree/bindings/arm/atmel-at91.yaml b/Documentation/devicetree/bindings/arm/atmel-at91.yaml > index c612e1f48dba..9d46ff78739f 100644 > --- a/Documentation/devicetree/bindings/arm/atmel-at91.yaml > +++ b/Documentation/devicetree/bindings/arm/atmel-at91.yaml > @@ -174,6 +174,15 @@ properties: > - const: microchip,lan9668 > - const: microchip,lan966 > > + - description: Kontron KSwitch D10 MMT series > + items: > + - enum: > + - kontron,kswitch-d10-mmt-8g > + - kontron,kswitch-d10-mmt-6g-2gs > + - const: kontron,s1921 > + - const: microchip,lan9668 > + - const: microchip,lan966 > + > - items: > - enum: > - atmel,sams70j19 > -- > 2.30.2 > -- Nicolas Ferre 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 bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id B9F6BC433FE for ; Thu, 24 Feb 2022 15:57:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender:Content-Type: Content-Transfer-Encoding:List-Subscribe:List-Help:List-Post:List-Archive: List-Unsubscribe:List-Id:In-Reply-To:From:References:CC:To:Subject: MIME-Version:Date:Message-ID:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=EhiKQBPOx4jY/nkCDj/v3Ip2aJhYOtkzJD9eFeX/wkg=; b=m5CVnPWGV94DNz GqPp4/I/y+NkLaYtTLBtpGEa6ThhK/D2fztYWEt2uitae/7hhje+SiJL8loT9VHqUfnr2BGT+86q2 KdSJcFJ4qo6SHqpv7928g/s36V1i6b/F6QvfVHayuPoBBPRWydJ+CkfS6V8qY1zNNgLkSoD4e6iyX wzqaDN+FwAOlNglO57hmYOzsqy/ZOWt0E0dAkr4HNfXUaW+Hv69qUBJATYv++dY7xbmwjNz8dttQf pZv7mPmHWjosUdcjp2S0X7C8F1y7pqyI9gB3F1CN9l9JcqsQD9Qn5LC81OKHSf0WVYWx083WWA09H KEvlREz5nRrIlziGCONg==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1nNGTy-001Oa1-1L; Thu, 24 Feb 2022 15:56:42 +0000 Received: from esa.microchip.iphmx.com ([68.232.153.233]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1nNGTt-001OX4-0K for linux-arm-kernel@lists.infradead.org; Thu, 24 Feb 2022 15:56:38 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=microchip.com; i=@microchip.com; q=dns/txt; s=mchp; t=1645718196; x=1677254196; h=message-id:date:mime-version:subject:to:cc:references: from:in-reply-to:content-transfer-encoding; bh=n6pr0cu3VN6p2h9F5Q0h3H6YltMPTU+Ogr3c4MyROG8=; b=StDUdoSPVXEhUY03OPXcFfFJ/7so3bLegwQa6s2lQQ068u3cW2Nf0XrX xtgF6WEFpFpVJbuGJdfdy3V1oSJjFVcEiuB1F2Uu1FYQccd554H9t5RqI KtxBCsCEhS+HbCTuLv8fAnktldQtcW00D+rIcDc/8QFe1BUy9Ys6PhT22 NbJ3etE9hluOYINpJ/3PwudgnPSSOAiWPw2hGIGFU+1EZHW1XnCOAaJT3 dlj9xl8pB23vaWIdYE7NO9nY6/FO+ktQxUUu4ad3KDPleOTiS806cEY4q x8sODJtFlGZG7/y0J1ZoXlGd6gFIakE1X+N6sEov5pQnR/O6+bZa/ps/H Q==; X-IronPort-AV: E=Sophos;i="5.90,134,1643698800"; d="scan'208";a="163514224" Received: from smtpout.microchip.com (HELO email.microchip.com) ([198.175.253.82]) by esa1.microchip.iphmx.com with ESMTP/TLS/AES256-SHA256; 24 Feb 2022 08:56:36 -0700 Received: from chn-vm-ex02.mchp-main.com (10.10.85.144) by chn-vm-ex01.mchp-main.com (10.10.85.143) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2375.17; Thu, 24 Feb 2022 08:56:36 -0700 Received: from [10.12.73.51] (10.10.115.15) by chn-vm-ex02.mchp-main.com (10.10.85.144) with Microsoft SMTP Server id 15.1.2375.17 via Frontend Transport; Thu, 24 Feb 2022 08:56:34 -0700 Message-ID: Date: Thu, 24 Feb 2022 16:56:33 +0100 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.5.0 Subject: Re: [PATCH v2] dt-bindings: arm: at91: add Kontron's new KSwitches Content-Language: en-US To: Michael Walle , , , CC: Rob Herring , Krzysztof Kozlowski , Alexandre Belloni , Ludovic Desroches References: <20220210131817.484922-1-michael@walle.cc> From: Nicolas Ferre Organization: microchip In-Reply-To: <20220210131817.484922-1-michael@walle.cc> X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20220224_075637_095659_E12A0F93 X-CRM114-Status: GOOD ( 13.52 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="us-ascii"; Format="flowed" Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org On 10/02/2022 at 14:18, Michael Walle wrote: > The Kontron KSwitch D10 MMT series ethernet switches features a LAN9668 > SoC with either 8 copper ports or 6 copper port and two SFP cages. > > Signed-off-by: Michael Walle Acked-by: Nicolas Ferre Taken in at91-dt branch for reaching 5.18 via arm-soc tree. Thanks for your patch! Best regards, Nicolas > --- > changes since v1: > - just use one entry with an enum, thanks Krzysztof > > Documentation/devicetree/bindings/arm/atmel-at91.yaml | 9 +++++++++ > 1 file changed, 9 insertions(+) > > diff --git a/Documentation/devicetree/bindings/arm/atmel-at91.yaml b/Documentation/devicetree/bindings/arm/atmel-at91.yaml > index c612e1f48dba..9d46ff78739f 100644 > --- a/Documentation/devicetree/bindings/arm/atmel-at91.yaml > +++ b/Documentation/devicetree/bindings/arm/atmel-at91.yaml > @@ -174,6 +174,15 @@ properties: > - const: microchip,lan9668 > - const: microchip,lan966 > > + - description: Kontron KSwitch D10 MMT series > + items: > + - enum: > + - kontron,kswitch-d10-mmt-8g > + - kontron,kswitch-d10-mmt-6g-2gs > + - const: kontron,s1921 > + - const: microchip,lan9668 > + - const: microchip,lan966 > + > - items: > - enum: > - atmel,sams70j19 > -- > 2.30.2 > -- Nicolas Ferre _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel