Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752501AbdF0Oos (ORCPT ); Tue, 27 Jun 2017 10:44:48 -0400 Received: from lucky1.263xmail.com ([211.157.147.134]:41457 "EHLO lucky1.263xmail.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751776AbdF0Ood (ORCPT ); Tue, 27 Jun 2017 10:44:33 -0400 X-263anti-spam: X-MAIL-GRAY: 1 X-MAIL-DELIVERY: 0 X-ABS-CHECKED: 4 X-RL-SENDER: david.wu@rock-chips.com X-FST-TO: linux-kernel@vger.kernel.org X-SENDER-IP: 58.22.7.114 X-LOGIN-NAME: david.wu@rock-chips.com X-UNIQUE-TAG: X-ATTACHMENT-NUM: 0 X-DNS-TYPE: 0 Subject: Re: [PATCH 01/11] net: phy: Add rockchip phy driver support To: Andrew Lunn Cc: davem@davemloft.net, heiko@sntech.de, robh+dt@kernel.org, mark.rutland@arm.com, catalin.marinas@arm.com, will.deacon@arm.com, olof@lixom.net, linux@armlinux.org.uk, arnd@arndb.de, f.fainelli@gmail.com, peppe.cavallaro@st.com, alexandre.torgue@st.com, huangtao@rock-chips.com, hwg@rock-chips.com, netdev@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-rockchip@lists.infradead.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org References: <1498192929-7519-1-git-send-email-david.wu@rock-chips.com> <1498192929-7519-2-git-send-email-david.wu@rock-chips.com> <20170624021910.GB4875@lunn.ch> From: "David.Wu" Message-ID: <38394157-adae-3476-55f3-ab5838744033@rock-chips.com> Date: Tue, 27 Jun 2017 22:44:10 +0800 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 Thunderbird/52.2.1 MIME-Version: 1.0 In-Reply-To: <20170624021910.GB4875@lunn.ch> Content-Type: text/plain; charset=gbk; format=flowed Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1591 Lines: 47 Hi Andrew, ?? 2017/6/24 10:19, Andrew Lunn ะด??: > On Fri, Jun 23, 2017 at 12:41:59PM +0800, David Wu wrote: >> Support internal ephy currently. >> >> Signed-off-by: David Wu >> --- >> drivers/net/phy/Kconfig | 4 ++ >> drivers/net/phy/Makefile | 1 + >> drivers/net/phy/rockchip.c | 94 ++++++++++++++++++++++++++++++++++++++++++++++ >> 3 files changed, 99 insertions(+) >> create mode 100644 drivers/net/phy/rockchip.c >> >> diff --git a/drivers/net/phy/Kconfig b/drivers/net/phy/Kconfig >> index c360dd6..86010d4 100644 >> --- a/drivers/net/phy/Kconfig >> +++ b/drivers/net/phy/Kconfig >> @@ -350,6 +350,10 @@ config XILINX_GMII2RGMII >> the Reduced Gigabit Media Independent Interface(RGMII) between >> Ethernet physical media devices and the Gigabit Ethernet controller. >> >> +config ROCKCHIP_MAC_PHY > > This is a bit of an odd name, having both MAC and PHY in it. Are there > any other RockChip PHYs? Any external PHYS? Are they register > incompatible with the internal PHY? Is it even RockChip IP? Or has it > been licensed from somebody else? > Maybe I just want to highlight it applies to the PHY with Mac connection, actually I was named Rockchip at the beginning, as Heiko said, PHY is a wide range, so add a modifier to restrict it. Yes, we use other external phys, like realtek and etc... If we have any other phy in our socs, it also could be expanded at rockchip_phy_tbl{} at rockchip.c it has been licensed from somebody. > I would more likely just call it ROCKCHIP_PHY. > > Andrew > > >