Message ID | 20250107024553.2926983-3-kalesh-anakkur.purayil@broadcom.com (mailing list archive) |
---|---|
State | Not Applicable |
Headers | show |
Series | RDMA/bnxt_re: Support for FW async event handling | expand |
Context | Check | Description |
---|---|---|
netdev/tree_selection | success | Guessing tree name failed - patch did not apply |
On Tue, Jan 07, 2025 at 08:15:50AM +0530, Kalesh AP wrote: > Using the option provided by Ethernet driver, register for FW Async > event. During probe, while registeriung with Ethernet driver, provide > the ulp hook 'ulp_async_notifier' for receiving the firmware events. > > Signed-off-by: Selvin Xavier <selvin.xavier@broadcom.com> > Signed-off-by: Kalesh AP <kalesh-anakkur.purayil@broadcom.com> > --- > drivers/infiniband/hw/bnxt_re/bnxt_re.h | 1 + > drivers/infiniband/hw/bnxt_re/main.c | 47 +++++++++++++++++++++++++ > 2 files changed, 48 insertions(+) <...> > +static void bnxt_re_net_unregister_async_event(struct bnxt_re_dev *rdev) > +{ > + int rc; > + > + if (rdev->is_virtfn) > + return; > + > + memset(&rdev->event_bitmap, 0, sizeof(rdev->event_bitmap)); > + rc = bnxt_register_async_events(rdev->en_dev, &rdev->event_bitmap, > + ASYNC_EVENT_CMPL_EVENT_ID_DCB_CONFIG_CHANGE); > + if (rc) > + ibdev_err(&rdev->ibdev, "Failed to unregister async event"); > +} > + > +static void bnxt_re_net_register_async_event(struct bnxt_re_dev *rdev) > +{ > + int rc; > + > + if (rdev->is_virtfn) > + return; > + > + rdev->event_bitmap |= (1 << ASYNC_EVENT_CMPL_EVENT_ID_DCB_CONFIG_CHANGE); > + rc = bnxt_register_async_events(rdev->en_dev, &rdev->event_bitmap, > + ASYNC_EVENT_CMPL_EVENT_ID_DCB_CONFIG_CHANGE); > + if (rc) > + ibdev_err(&rdev->ibdev, "Failed to unregister async event"); s/Failed to unregister async event/Failed to register async event If it is the only comment, we will get for this series. You don't need to resend, I'll fix it. Thanks > +}
On Tue, Jan 7, 2025 at 8:54 PM Leon Romanovsky <leon@kernel.org> wrote: > > On Tue, Jan 07, 2025 at 08:15:50AM +0530, Kalesh AP wrote: > > Using the option provided by Ethernet driver, register for FW Async > > event. During probe, while registeriung with Ethernet driver, provide > > the ulp hook 'ulp_async_notifier' for receiving the firmware events. > > > > Signed-off-by: Selvin Xavier <selvin.xavier@broadcom.com> > > Signed-off-by: Kalesh AP <kalesh-anakkur.purayil@broadcom.com> > > --- > > drivers/infiniband/hw/bnxt_re/bnxt_re.h | 1 + > > drivers/infiniband/hw/bnxt_re/main.c | 47 +++++++++++++++++++++++++ > > 2 files changed, 48 insertions(+) > > <...> > > > +static void bnxt_re_net_unregister_async_event(struct bnxt_re_dev *rdev) > > +{ > > + int rc; > > + > > + if (rdev->is_virtfn) > > + return; > > + > > + memset(&rdev->event_bitmap, 0, sizeof(rdev->event_bitmap)); > > + rc = bnxt_register_async_events(rdev->en_dev, &rdev->event_bitmap, > > + ASYNC_EVENT_CMPL_EVENT_ID_DCB_CONFIG_CHANGE); > > + if (rc) > > + ibdev_err(&rdev->ibdev, "Failed to unregister async event"); > > +} > > + > > +static void bnxt_re_net_register_async_event(struct bnxt_re_dev *rdev) > > +{ > > + int rc; > > + > > + if (rdev->is_virtfn) > > + return; > > + > > + rdev->event_bitmap |= (1 << ASYNC_EVENT_CMPL_EVENT_ID_DCB_CONFIG_CHANGE); > > + rc = bnxt_register_async_events(rdev->en_dev, &rdev->event_bitmap, > > + ASYNC_EVENT_CMPL_EVENT_ID_DCB_CONFIG_CHANGE); > > + if (rc) > > + ibdev_err(&rdev->ibdev, "Failed to unregister async event"); > > s/Failed to unregister async event/Failed to register async event Looks like it was a copy-paste error :) > > If it is the only comment, we will get for this series. You don't need to resend, I'll fix it. > > Thanks Thank you Leon. > > > +}
diff --git a/drivers/infiniband/hw/bnxt_re/bnxt_re.h b/drivers/infiniband/hw/bnxt_re/bnxt_re.h index 2975b11b79bf..018386295bcd 100644 --- a/drivers/infiniband/hw/bnxt_re/bnxt_re.h +++ b/drivers/infiniband/hw/bnxt_re/bnxt_re.h @@ -229,6 +229,7 @@ struct bnxt_re_dev { DECLARE_HASHTABLE(srq_hash, MAX_SRQ_HASH_BITS); struct dentry *dbg_root; struct dentry *qp_debugfs; + unsigned long event_bitmap; }; #define to_bnxt_re_dev(ptr, member) \ diff --git a/drivers/infiniband/hw/bnxt_re/main.c b/drivers/infiniband/hw/bnxt_re/main.c index 6d1800e285ef..1dc305689d7b 100644 --- a/drivers/infiniband/hw/bnxt_re/main.c +++ b/drivers/infiniband/hw/bnxt_re/main.c @@ -295,6 +295,20 @@ static void bnxt_re_vf_res_config(struct bnxt_re_dev *rdev) &rdev->qplib_ctx); } +static void bnxt_re_async_notifier(void *handle, struct hwrm_async_event_cmpl *cmpl) +{ + struct bnxt_re_dev *rdev = (struct bnxt_re_dev *)handle; + u32 data1, data2; + u16 event_id; + + event_id = le16_to_cpu(cmpl->event_id); + data1 = le32_to_cpu(cmpl->event_data1); + data2 = le32_to_cpu(cmpl->event_data2); + + ibdev_dbg(&rdev->ibdev, "Async event_id = %d data1 = %d data2 = %d", + event_id, data1, data2); +} + static void bnxt_re_stop_irq(void *handle) { struct bnxt_re_en_dev_info *en_info = auxiliary_get_drvdata(handle); @@ -361,6 +375,7 @@ static void bnxt_re_start_irq(void *handle, struct bnxt_msix_entry *ent) } static struct bnxt_ulp_ops bnxt_re_ulp_ops = { + .ulp_async_notifier = bnxt_re_async_notifier, .ulp_irq_stop = bnxt_re_stop_irq, .ulp_irq_restart = bnxt_re_start_irq }; @@ -1785,6 +1800,34 @@ static int bnxt_re_setup_qos(struct bnxt_re_dev *rdev) return 0; } +static void bnxt_re_net_unregister_async_event(struct bnxt_re_dev *rdev) +{ + int rc; + + if (rdev->is_virtfn) + return; + + memset(&rdev->event_bitmap, 0, sizeof(rdev->event_bitmap)); + rc = bnxt_register_async_events(rdev->en_dev, &rdev->event_bitmap, + ASYNC_EVENT_CMPL_EVENT_ID_DCB_CONFIG_CHANGE); + if (rc) + ibdev_err(&rdev->ibdev, "Failed to unregister async event"); +} + +static void bnxt_re_net_register_async_event(struct bnxt_re_dev *rdev) +{ + int rc; + + if (rdev->is_virtfn) + return; + + rdev->event_bitmap |= (1 << ASYNC_EVENT_CMPL_EVENT_ID_DCB_CONFIG_CHANGE); + rc = bnxt_register_async_events(rdev->en_dev, &rdev->event_bitmap, + ASYNC_EVENT_CMPL_EVENT_ID_DCB_CONFIG_CHANGE); + if (rc) + ibdev_err(&rdev->ibdev, "Failed to unregister async event"); +} + static void bnxt_re_query_hwrm_intf_version(struct bnxt_re_dev *rdev) { struct bnxt_en_dev *en_dev = rdev->en_dev; @@ -1864,6 +1907,8 @@ static void bnxt_re_dev_uninit(struct bnxt_re_dev *rdev, u8 op_type) bnxt_re_debugfs_rem_pdev(rdev); + bnxt_re_net_unregister_async_event(rdev); + if (test_and_clear_bit(BNXT_RE_FLAG_QOS_WORK_REG, &rdev->flags)) cancel_delayed_work_sync(&rdev->worker); @@ -2077,6 +2122,8 @@ static int bnxt_re_dev_init(struct bnxt_re_dev *rdev, u8 op_type) bnxt_re_debugfs_add_pdev(rdev); + bnxt_re_net_register_async_event(rdev); + return 0; free_sctx: bnxt_re_net_stats_ctx_free(rdev, rdev->qplib_ctx.stats.fw_id);