[PATCH net-next 4/6] drivers: net: xgene-v2: Add base driver
Iyappan Subramanian
isubramanian at apm.com
Sun Feb 26 20:33:23 PST 2017
Hi Andrew,
On Tue, Jan 31, 2017 at 12:01 PM, Andrew Lunn <andrew at lunn.ch> wrote:
>> + phy_mode = device_get_phy_mode(dev);
>> + if (phy_mode < 0) {
>> + dev_err(dev, "Unable to get phy-connection-type\n");
>> + return phy_mode;
>> + }
>> + pdata->resources.phy_mode = phy_mode;
>> +
>> + if (pdata->resources.phy_mode != PHY_INTERFACE_MODE_RGMII) {
>> + dev_err(dev, "Incorrect phy-connection-type specified\n");
>> + return -ENODEV;
>> + }
>
> This seems a bit limiting. What if you need to use:
>
> PHY_INTERFACE_MODE_RGMII_ID,
> PHY_INTERFACE_MODE_RGMII_RXID,
> PHY_INTERFACE_MODE_RGMII_TXID,
>
> in order to set the RGMII delays.
This version of the driver doesn't support setting delays. The delay
support will be added in the future.
>
> Andrew
>
More information about the linux-arm-kernel
mailing list