Skip to content

Commit

Permalink
dpll: remove leftover mode_supported() op and use mode_get() instead
Browse files Browse the repository at this point in the history
Mode supported is currently reported to the user exactly the same, as
the current mode. That's because mode changing is not implemented.
Remove the leftover mode_supported() op and use mode_get() to fill up
the supported mode exposed to user.

One, if even, mode changing is going to be introduced, this could be
very easily taken back. In the meantime, prevent drivers form
implementing this in wrong way (as for example recent netdevsim
implementation attempt intended to do).

Signed-off-by: Jiri Pirko <jiri@nvidia.com>
Reviewed-by: Simon Horman <horms@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Jiri Pirko authored and David S. Miller committed Dec 13, 2023
1 parent 9bab51b commit 4f7aa12
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 52 deletions.
16 changes: 10 additions & 6 deletions drivers/dpll/dpll_netlink.c
Original file line number Diff line number Diff line change
Expand Up @@ -101,13 +101,17 @@ dpll_msg_add_mode_supported(struct sk_buff *msg, struct dpll_device *dpll,
{
const struct dpll_device_ops *ops = dpll_device_ops(dpll);
enum dpll_mode mode;
int ret;

if (!ops->mode_supported)
return 0;
for (mode = DPLL_MODE_MANUAL; mode <= DPLL_MODE_MAX; mode++)
if (ops->mode_supported(dpll, dpll_priv(dpll), mode, extack))
if (nla_put_u32(msg, DPLL_A_MODE_SUPPORTED, mode))
return -EMSGSIZE;
/* No mode change is supported now, so the only supported mode is the
* one obtained by mode_get().
*/

ret = ops->mode_get(dpll, dpll_priv(dpll), &mode, extack);
if (ret)
return ret;
if (nla_put_u32(msg, DPLL_A_MODE_SUPPORTED, mode))
return -EMSGSIZE;

return 0;
}
Expand Down
26 changes: 0 additions & 26 deletions drivers/net/ethernet/intel/ice/ice_dpll.c
Original file line number Diff line number Diff line change
Expand Up @@ -512,31 +512,6 @@ ice_dpll_lock_status_get(const struct dpll_device *dpll, void *dpll_priv,
return 0;
}

/**
* ice_dpll_mode_supported - check if dpll's working mode is supported
* @dpll: registered dpll pointer
* @dpll_priv: private data pointer passed on dpll registration
* @mode: mode to be checked for support
* @extack: error reporting
*
* Dpll subsystem callback. Provides information if working mode is supported
* by dpll.
*
* Return:
* * true - mode is supported
* * false - mode is not supported
*/
static bool ice_dpll_mode_supported(const struct dpll_device *dpll,
void *dpll_priv,
enum dpll_mode mode,
struct netlink_ext_ack *extack)
{
if (mode == DPLL_MODE_AUTOMATIC)
return true;

return false;
}

/**
* ice_dpll_mode_get - get dpll's working mode
* @dpll: registered dpll pointer
Expand Down Expand Up @@ -1197,7 +1172,6 @@ static const struct dpll_pin_ops ice_dpll_output_ops = {

static const struct dpll_device_ops ice_dpll_ops = {
.lock_status_get = ice_dpll_lock_status_get,
.mode_supported = ice_dpll_mode_supported,
.mode_get = ice_dpll_mode_get,
};

Expand Down
9 changes: 0 additions & 9 deletions drivers/net/ethernet/mellanox/mlx5/core/dpll.c
Original file line number Diff line number Diff line change
Expand Up @@ -128,18 +128,9 @@ static int mlx5_dpll_device_mode_get(const struct dpll_device *dpll,
return 0;
}

static bool mlx5_dpll_device_mode_supported(const struct dpll_device *dpll,
void *priv,
enum dpll_mode mode,
struct netlink_ext_ack *extack)
{
return mode == DPLL_MODE_MANUAL;
}

static const struct dpll_device_ops mlx5_dpll_device_ops = {
.lock_status_get = mlx5_dpll_device_lock_status_get,
.mode_get = mlx5_dpll_device_mode_get,
.mode_supported = mlx5_dpll_device_mode_supported,
};

static int mlx5_dpll_pin_direction_get(const struct dpll_pin *pin,
Expand Down
8 changes: 0 additions & 8 deletions drivers/ptp/ptp_ocp.c
Original file line number Diff line number Diff line change
Expand Up @@ -4260,13 +4260,6 @@ static int ptp_ocp_dpll_mode_get(const struct dpll_device *dpll, void *priv,
return 0;
}

static bool ptp_ocp_dpll_mode_supported(const struct dpll_device *dpll,
void *priv, const enum dpll_mode mode,
struct netlink_ext_ack *extack)
{
return mode == DPLL_MODE_AUTOMATIC;
}

static int ptp_ocp_dpll_direction_get(const struct dpll_pin *pin,
void *pin_priv,
const struct dpll_device *dpll,
Expand Down Expand Up @@ -4350,7 +4343,6 @@ static int ptp_ocp_dpll_frequency_get(const struct dpll_pin *pin,
static const struct dpll_device_ops dpll_ops = {
.lock_status_get = ptp_ocp_dpll_lock_status_get,
.mode_get = ptp_ocp_dpll_mode_get,
.mode_supported = ptp_ocp_dpll_mode_supported,
};

static const struct dpll_pin_ops dpll_pins_ops = {
Expand Down
3 changes: 0 additions & 3 deletions include/linux/dpll.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,6 @@ struct dpll_pin;
struct dpll_device_ops {
int (*mode_get)(const struct dpll_device *dpll, void *dpll_priv,
enum dpll_mode *mode, struct netlink_ext_ack *extack);
bool (*mode_supported)(const struct dpll_device *dpll, void *dpll_priv,
const enum dpll_mode mode,
struct netlink_ext_ack *extack);
int (*lock_status_get)(const struct dpll_device *dpll, void *dpll_priv,
enum dpll_lock_status *status,
struct netlink_ext_ack *extack);
Expand Down

0 comments on commit 4f7aa12

Please sign in to comment.