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.7 required=3.0 tests=BAYES_00,DKIM_ADSP_CUSTOM_MED, FREEMAIL_FORGED_FROMDOMAIN,FREEMAIL_FROM,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 33D60C6369E for ; Wed, 2 Dec 2020 21:24:44 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id CFA4D22201 for ; Wed, 2 Dec 2020 21:24:43 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1731267AbgLBVY1 (ORCPT ); Wed, 2 Dec 2020 16:24:27 -0500 Received: from static.214.254.202.116.clients.your-server.de ([116.202.254.214]:34584 "EHLO ciao.gmane.io" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729401AbgLBVY1 (ORCPT ); Wed, 2 Dec 2020 16:24:27 -0500 Received: from list by ciao.gmane.io with local (Exim 4.92) (envelope-from ) id 1kkZbF-0004ym-9y for netdev@vger.kernel.org; Wed, 02 Dec 2020 22:23:45 +0100 X-Injected-Via-Gmane: http://gmane.org/ To: netdev@vger.kernel.org From: Grant Edwards Subject: Re: net: macb: fail when there's no PHY Date: Wed, 2 Dec 2020 21:23:40 -0000 (UTC) Message-ID: References: <20170921195905.GA29873@grante> <66c0a032-4d20-69f1-deb4-6c65af6ec740@gmail.com> <6a9c1d4a-ed73-3074-f9fa-158c697c7bfe@gmail.com> <20201202183531.GJ2324545@lunn.ch> <20201202211134.GM2324545@lunn.ch> User-Agent: slrn/1.0.3 (Linux) Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org On 2020-12-02, Andrew Lunn wrote: >> > So it will access the MDIO bus of the PHY that is attached to the >> > MAC. >> >> If that's the case, wouldn't the ioctl() calls "just work" even when >> only the fixed-phy mdio bus and fake PHY are declared in the device >> tree? > > The fixed-link PHY is connected to the MAC. So the IOCTL calls will be > made to the fixed-link fake MDIO bus. So how do you control which of the two mdio buses is connected to the MAC? > There are plenty of examples to follow. That's true, but knowing which ones do what you're trying to do is the hard part. If you already know how to do it, it's easy to find examples showing it. :) -- Grant