2020-05-05 06:38:09

by Oleksij Rempel

[permalink] [raw]
Subject: [PATCH net-next v6 0/2] provide support for PHY master/slave configuration

changes v6:
- use NL_SET_ERR_MSG_ATTR in ethnl_update_linkmodes
- add sanity checks in the ioctl interface
- use bool for ethnl_validate_master_slave_cfg()

changes v5:
- set MASTER_SLAVE_CFG_UNSUPPORTED as default value
- send a netlink error message on validation error
- more code fixes

changes v4:
- rename port_mode to master_slave
- move validation code to net/ethtool/linkmodes.c
- add UNSUPPORTED state and avoid sending unsupported fields
- more formatting and naming fixes
- tja11xx: support only force mode
- tja11xx: mark state as unsupported

changes v3:
- provide separate field for config and state.
- make state rejected on set
- add validation

changes v2:
- change names. Use MASTER_PREFERRED instead of MULTIPORT
- configure master/slave only on request. Default configuration can be
provided by PHY or eeprom
- status and configuration to the user space.

Oleksij Rempel (2):
ethtool: provide UAPI for PHY master/slave configuration.
net: phy: tja11xx: add support for master-slave configuration

Documentation/networking/ethtool-netlink.rst | 35 ++++----
drivers/net/phy/nxp-tja11xx.c | 43 +++++++++
drivers/net/phy/phy.c | 4 +-
drivers/net/phy/phy_device.c | 94 ++++++++++++++++++++
include/linux/phy.h | 3 +
include/uapi/linux/ethtool.h | 16 +++-
include/uapi/linux/ethtool_netlink.h | 2 +
include/uapi/linux/mii.h | 2 +
net/ethtool/ioctl.c | 6 ++
net/ethtool/linkmodes.c | 53 +++++++++++
10 files changed, 240 insertions(+), 18 deletions(-)

--
2.26.2


2020-05-07 03:17:23

by David Miller

[permalink] [raw]
Subject: Re: [PATCH net-next v6 0/2] provide support for PHY master/slave configuration

From: Oleksij Rempel <[email protected]>
Date: Tue, 5 May 2020 08:35:04 +0200

> changes v6:
> - use NL_SET_ERR_MSG_ATTR in ethnl_update_linkmodes
> - add sanity checks in the ioctl interface
> - use bool for ethnl_validate_master_slave_cfg()
...

Series applied, thank you.