Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932088AbeABNeA (ORCPT + 1 other); Tue, 2 Jan 2018 08:34:00 -0500 Received: from vps0.lunn.ch ([185.16.172.187]:50306 "EHLO vps0.lunn.ch" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752899AbeABNd6 (ORCPT ); Tue, 2 Jan 2018 08:33:58 -0500 Date: Tue, 2 Jan 2018 14:33:47 +0100 From: Andrew Lunn To: Marcin Wojtas Cc: linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, netdev , linux-acpi@vger.kernel.org, Graeme Gregory , "David S. Miller" , Russell King - ARM Linux , "Rafael J. Wysocki" , Florian Fainelli , Antoine =?iso-8859-1?Q?T=E9nart?= , Thomas Petazzoni , Gregory =?iso-8859-1?Q?Cl=E9ment?= , Ezequiel Garcia , nadavh@marvell.com, Neta Zur Hershkovits , Ard Biesheuvel , Grzegorz Jaszczyk , Tomasz Nowicki Subject: Re: [net-next: PATCH v2 5/5] net: mvpp2: enable ACPI support in the driver Message-ID: <20180102133347.GB15036@lunn.ch> References: <1514721520-18964-1-git-send-email-mw@semihalf.com> <1514721520-18964-6-git-send-email-mw@semihalf.com> <20171231192354.GB20455@lunn.ch> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Return-Path: > Apart from the phylink's SFP support that may require in-band > management, it's an alternative to the normal PHY handling. Once MDIO > bus + PHYs are supported for ACPI, phylib support will be used instead > of the IRQs, so there should be no problem here. Hi Marcin However, phylib and phylink can use IRQs. The PHY can interrupt when there is a change of state. This can be seen in the DT binding documentation example: ethernet-phy@0 { compatible = "ethernet-phy-id0141.0e90", "ethernet-phy-ieee802.3-c22"; interrupt-parent = <&PIC>; interrupts = <35 IRQ_TYPE_EDGE_RISING>; reg = <0>; Whatever ACPI support you propose needs to include interrupts. May i suggest you take a look at arch/arm/boot/dts/vf610-zii-dev-rev-c.dts and ensure your ACPI work can support this. I know you tend to concentrate of Marvell parts. Although it is a Freescale SoC, the Ethernet parts are all Marvell. The SoC exports an MDIO bus. We then have an MDIO multiplexer, which exports 8 MDIO busses. Of these only 2 are used in this design. Each bus has an Ethernet switch. Each switch has an MDIO bus, which the embedded PHYs are on. The Ethernet switch is also an interrupt controller for the PHYs interrupts. So the PHYs have interrupt properties pointing back to the switch. Andrew