[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20241017165225.21206-17-alejandro.lucero-palau@amd.com>
Date: Thu, 17 Oct 2024 17:52:15 +0100
From: <alejandro.lucero-palau@....com>
To: <linux-cxl@...r.kernel.org>, <netdev@...r.kernel.org>,
<dan.j.williams@...el.com>, <martin.habets@...inx.com>,
<edward.cree@....com>, <davem@...emloft.net>, <kuba@...nel.org>,
<pabeni@...hat.com>, <edumazet@...gle.com>
CC: Alejandro Lucero <alucerop@....com>
Subject: [PATCH v4 16/26] sfc: obtain root decoder with enough HPA free space
From: Alejandro Lucero <alucerop@....com>
Asking for availbale HPA space is the previous step to try to obtain
an HPA range suitable to accel driver purposes.
Add this call to efx cxl initialization.
Signed-off-by: Alejandro Lucero <alucerop@....com>
---
drivers/net/ethernet/sfc/efx_cxl.c | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
diff --git a/drivers/net/ethernet/sfc/efx_cxl.c b/drivers/net/ethernet/sfc/efx_cxl.c
index 452421d71fbf..399bd60f2e40 100644
--- a/drivers/net/ethernet/sfc/efx_cxl.c
+++ b/drivers/net/ethernet/sfc/efx_cxl.c
@@ -26,6 +26,7 @@ int efx_cxl_init(struct efx_nic *efx)
DECLARE_BITMAP(found, CXL_MAX_CAPS);
struct efx_cxl *cxl;
struct resource res;
+ resource_size_t max;
u16 dvsec;
int rc;
@@ -101,6 +102,23 @@ int efx_cxl_init(struct efx_nic *efx)
goto err3;
}
+ cxl->cxlrd = cxl_get_hpa_freespace(cxl->cxlmd,
+ CXL_DECODER_F_RAM | CXL_DECODER_F_TYPE2,
+ &max);
+
+ if (IS_ERR(cxl->cxlrd)) {
+ pci_err(pci_dev, "cxl_get_hpa_freespace failed\n");
+ rc = PTR_ERR(cxl->cxlrd);
+ goto err3;
+ }
+
+ if (max < EFX_CTPIO_BUFFER_SIZE) {
+ pci_err(pci_dev, "%s: no enough free HPA space %llu < %u\n",
+ __func__, max, EFX_CTPIO_BUFFER_SIZE);
+ rc = -ENOSPC;
+ goto err3;
+ }
+
efx->cxl = cxl;
#endif
--
2.17.1
Powered by blists - more mailing lists