From: Arkadiusz Kubalewski <arkadiusz.kubalewski@intel.com>
To: donald.hunter@gmail.com, kuba@kernel.org, davem@davemloft.net,
edumazet@google.com, pabeni@redhat.com, horms@kernel.org,
vadim.fedorenko@linux.dev, jiri@resnulli.us,
anthony.l.nguyen@intel.com, przemyslaw.kitszel@intel.com,
andrew+netdev@lunn.ch, saeedm@nvidia.com, leon@kernel.org,
tariqt@nvidia.com, jonathan.lemon@gmail.com,
richardcochran@gmail.com, aleksandr.loktionov@intel.com,
milena.olech@intel.com
Cc: netdev@vger.kernel.org, linux-kernel@vger.kernel.org,
intel-wired-lan@lists.osuosl.org, linux-rdma@vger.kernel.org,
Arkadiusz Kubalewski <arkadiusz.kubalewski@intel.com>
Subject: [PATCH net-next v2 3/4] dpll: features_get/set callbacks
Date: Tue, 15 Apr 2025 20:15:42 +0200 [thread overview]
Message-ID: <20250415181543.1072342-4-arkadiusz.kubalewski@intel.com> (raw)
In-Reply-To: <20250415181543.1072342-1-arkadiusz.kubalewski@intel.com>
Add new callback ops for a dpll device.
- features_get(..) - to obtain currently configured features from dpll
device,
- feature_set(..) - to allow dpll device features configuration.
Provide features attribute and allow control over it to the users if
device driver implements callbacks.
Reviewed-by: Milena Olech <milena.olech@intel.com>
Signed-off-by: Arkadiusz Kubalewski <arkadiusz.kubalewski@intel.com>
---
v2:
- adapt changes and align wiht new dpll_device_info struct
---
drivers/dpll/dpll_netlink.c | 79 ++++++++++++++++++++++++++++++++++++-
include/linux/dpll.h | 5 +++
2 files changed, 82 insertions(+), 2 deletions(-)
diff --git a/drivers/dpll/dpll_netlink.c b/drivers/dpll/dpll_netlink.c
index 2de9ec08d551..acfdd87fcffe 100644
--- a/drivers/dpll/dpll_netlink.c
+++ b/drivers/dpll/dpll_netlink.c
@@ -126,6 +126,25 @@ dpll_msg_add_mode_supported(struct sk_buff *msg, struct dpll_device *dpll,
return 0;
}
+static int
+dpll_msg_add_features(struct sk_buff *msg, struct dpll_device *dpll,
+ struct netlink_ext_ack *extack)
+{
+ const struct dpll_device_ops *ops = dpll_device_ops(dpll);
+ u32 features;
+ int ret;
+
+ if (!ops->features_get)
+ return 0;
+ ret = ops->features_get(dpll, dpll_priv(dpll), &features, extack);
+ if (ret)
+ return ret;
+ if (nla_put_u32(msg, DPLL_A_FEATURES, features))
+ return -EMSGSIZE;
+
+ return 0;
+}
+
static int
dpll_msg_add_lock_status(struct sk_buff *msg, struct dpll_device *dpll,
struct netlink_ext_ack *extack)
@@ -592,6 +611,11 @@ dpll_device_get_one(struct dpll_device *dpll, struct sk_buff *msg,
return ret;
if (nla_put_u32(msg, DPLL_A_TYPE, info->type))
return -EMSGSIZE;
+ if (nla_put_u32(msg, DPLL_A_CAPABILITIES, info->capabilities))
+ return -EMSGSIZE;
+ ret = dpll_msg_add_features(msg, dpll, extack);
+ if (ret)
+ return ret;
return 0;
}
@@ -747,6 +771,34 @@ int dpll_pin_change_ntf(struct dpll_pin *pin)
}
EXPORT_SYMBOL_GPL(dpll_pin_change_ntf);
+static int
+dpll_features_set(struct dpll_device *dpll, struct nlattr *a,
+ struct netlink_ext_ack *extack)
+{
+ const struct dpll_device_info *info = dpll_device_info(dpll);
+ const struct dpll_device_ops *ops = dpll_device_ops(dpll);
+ u32 features = nla_get_u32(a), old_features;
+ int ret;
+
+ if (features && !(info->capabilities & features)) {
+ NL_SET_ERR_MSG_ATTR(extack, a, "dpll device not capable of this features");
+ return -EOPNOTSUPP;
+ }
+ if (!ops->features_get || !ops->features_set) {
+ NL_SET_ERR_MSG(extack, "dpll device not supporting any features");
+ return -EOPNOTSUPP;
+ }
+ ret = ops->features_get(dpll, dpll_priv(dpll), &old_features, extack);
+ if (ret) {
+ NL_SET_ERR_MSG(extack, "unable to get old features value");
+ return ret;
+ }
+ if (old_features == features)
+ return -EINVAL;
+
+ return ops->features_set(dpll, dpll_priv(dpll), features, extack);
+}
+
static int
dpll_pin_freq_set(struct dpll_pin *pin, struct nlattr *a,
struct netlink_ext_ack *extack)
@@ -1536,10 +1588,33 @@ int dpll_nl_device_get_doit(struct sk_buff *skb, struct genl_info *info)
return genlmsg_reply(msg, info);
}
+static int
+dpll_set_from_nlattr(struct dpll_device *dpll, struct genl_info *info)
+{
+ struct nlattr *a;
+ int rem, ret;
+
+ nla_for_each_attr(a, genlmsg_data(info->genlhdr),
+ genlmsg_len(info->genlhdr), rem) {
+ switch (nla_type(a)) {
+ case DPLL_A_FEATURES:
+ ret = dpll_features_set(dpll, a, info->extack);
+ if (ret)
+ return ret;
+ break;
+ default:
+ break;
+ }
+ }
+
+ return 0;
+}
+
int dpll_nl_device_set_doit(struct sk_buff *skb, struct genl_info *info)
{
- /* placeholder for set command */
- return 0;
+ struct dpll_device *dpll = info->user_ptr[0];
+
+ return dpll_set_from_nlattr(dpll, info);
}
int dpll_nl_device_get_dumpit(struct sk_buff *skb, struct netlink_callback *cb)
diff --git a/include/linux/dpll.h b/include/linux/dpll.h
index 0489464af958..90c743daf64b 100644
--- a/include/linux/dpll.h
+++ b/include/linux/dpll.h
@@ -30,6 +30,10 @@ struct dpll_device_ops {
void *dpll_priv,
unsigned long *qls,
struct netlink_ext_ack *extack);
+ int (*features_set)(const struct dpll_device *dpll, void *dpll_priv,
+ u32 features, struct netlink_ext_ack *extack);
+ int (*features_get)(const struct dpll_device *dpll, void *dpll_priv,
+ u32 *features, struct netlink_ext_ack *extack);
};
struct dpll_pin_ops {
@@ -99,6 +103,7 @@ struct dpll_pin_ops {
struct dpll_device_info {
enum dpll_type type;
+ u32 capabilities;
const struct dpll_device_ops *ops;
};
--
2.38.1
next prev parent reply other threads:[~2025-04-15 18:23 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-04-15 18:15 [PATCH net-next v2 0/4] dpll: add all inputs phase offset monitor Arkadiusz Kubalewski
2025-04-15 18:15 ` [PATCH net-next v2 1/4] dpll: use struct dpll_device_info for dpll registration Arkadiusz Kubalewski
2025-04-16 12:13 ` Jiri Pirko
2025-04-17 9:33 ` Kubalewski, Arkadiusz
2025-04-17 9:56 ` Jiri Pirko
2025-04-17 2:09 ` Jakub Kicinski
2025-04-17 9:34 ` Kubalewski, Arkadiusz
2025-04-15 18:15 ` [PATCH net-next v2 2/4] dpll: add features and capabilities to dpll device spec Arkadiusz Kubalewski
2025-04-15 18:15 ` Arkadiusz Kubalewski [this message]
2025-04-16 12:10 ` [PATCH net-next v2 3/4] dpll: features_get/set callbacks Jiri Pirko
2025-04-17 9:23 ` Kubalewski, Arkadiusz
2025-04-17 9:59 ` Jiri Pirko
2025-05-08 12:30 ` Kubalewski, Arkadiusz
2025-04-15 18:15 ` [PATCH net-next v2 4/4] ice: add phase offset monitor for all PPS dpll inputs Arkadiusz Kubalewski
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20250415181543.1072342-4-arkadiusz.kubalewski@intel.com \
--to=arkadiusz.kubalewski@intel.com \
--cc=aleksandr.loktionov@intel.com \
--cc=andrew+netdev@lunn.ch \
--cc=anthony.l.nguyen@intel.com \
--cc=davem@davemloft.net \
--cc=donald.hunter@gmail.com \
--cc=edumazet@google.com \
--cc=horms@kernel.org \
--cc=intel-wired-lan@lists.osuosl.org \
--cc=jiri@resnulli.us \
--cc=jonathan.lemon@gmail.com \
--cc=kuba@kernel.org \
--cc=leon@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-rdma@vger.kernel.org \
--cc=milena.olech@intel.com \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=przemyslaw.kitszel@intel.com \
--cc=richardcochran@gmail.com \
--cc=saeedm@nvidia.com \
--cc=tariqt@nvidia.com \
--cc=vadim.fedorenko@linux.dev \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox