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 X-Spam-Level: X-Spam-Status: No, score=-0.6 required=3.0 tests=DKIM_INVALID,DKIM_SIGNED, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 22776C3567B for ; Thu, 27 Feb 2020 17:36:50 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id E934E246A4 for ; Thu, 27 Feb 2020 17:36:49 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (1024-bit key) header.d=lunn.ch header.i=@lunn.ch header.b="vJqihBEN" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730030AbgB0Rgt (ORCPT ); Thu, 27 Feb 2020 12:36:49 -0500 Received: from vps0.lunn.ch ([185.16.172.187]:37356 "EHLO vps0.lunn.ch" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729232AbgB0Rgt (ORCPT ); Thu, 27 Feb 2020 12:36:49 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lunn.ch; s=20171124; h=In-Reply-To:Content-Type:MIME-Version:References:Message-ID: Subject:Cc:To:From:Date:Sender:Reply-To:Content-Transfer-Encoding:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:List-Id:List-Help:List-Unsubscribe:List-Subscribe: List-Post:List-Owner:List-Archive; bh=0F0tK5/ubcWROjWTPQxm6Y15x5cP/M3Yx4UdnWKYU5s=; b=vJqihBENKh82ptrEG8k2m+03Hs tf6ULdHn5bXGkWoqJFRY17MR3qEapLlh2RJZ/WBl4zKLI1YzCWGlF/Vjc6MVgFZuwE3OHYVQhdV2b C4EUwx9KiAfS6viubwFhiykxps8m0Jjt30ANmwcdE6FFwga6FOrVfXKrz4UvYwYXaA90=; Received: from andrew by vps0.lunn.ch with local (Exim 4.93) (envelope-from ) id 1j7N5Q-0006eR-NP; Thu, 27 Feb 2020 18:36:36 +0100 Date: Thu, 27 Feb 2020 18:36:36 +0100 From: Andrew Lunn To: Russell King - ARM Linux admin Cc: Rob Herring , Florian Fainelli , Heiner Kallweit , "David S. Miller" , devicetree@vger.kernel.org, Jason Cooper , "moderated list:ARM/FREESCALE IMX / MXC ARM ARCHITECTURE" , Mark Rutland , netdev , Sebastian Hesselbarth Subject: Re: [PATCH net-next 1/3] dt-bindings: net: add dt bindings for marvell10g driver Message-ID: <20200227173636.GE5245@lunn.ch> References: <20200227095159.GJ25745@shell.armlinux.org.uk> <20200227172608.GO25745@shell.armlinux.org.uk> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200227172608.GO25745@shell.armlinux.org.uk> Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org > > > + allOf: > > > + - $ref: /schemas/types.yaml#/definitions/uint16-array > > > + - minItems: 1 > > > + maxItems: 4 > > > + > > > +examples: > > > + - | > > > + ethernet-phy@0 { > > > + reg = <0>; > > > > This needs to be under an 'mdio' node with #address-cells and > > #size-cells set correctly. > > I wish these things were documented somewhere... I'm pretty sure this > passed validation when I wrote it. Documentation/devicetree/bindings/net/mdio.yaml Rob, is there a way to express the hierarchy between yaml files and properties? Can we say that a phy, as defined by ethernet-phy.yaml should always be inside an MDIO bus as defined in mdio.yaml? Thanks Andrew