Allocate BAR for ENA MSIx vector table
In the new ENA-based instances like c6gn, the vector table moved to a new PCIe bar - BAR1. Previously it was always located on the BAR0, so the resources were already allocated together with the registers. As the FreeBSD isn't doing any resource allocation behind the scenes, the driver is responsible to allocate them explicitly, before other parts of the OS (like the PCI code allocating MSIx) will be able to access them. To determine dynamically BAR on which the MSIx vector table is present the pci_msix_table_bar() is being used and the new BAR is allocated if needed. Submitted by: Michal Krawczyk <mk@semihalf.com> Obtained from: Semihalf Sponsored by: Amazon, Inc MFC after: 3 days
This commit is contained in:
parent
e13e4fa6c4
commit
1c808fcd85
@ -299,6 +299,11 @@ ena_free_pci_resources(struct ena_adapter *adapter)
|
||||
bus_release_resource(pdev, SYS_RES_MEMORY,
|
||||
PCIR_BAR(ENA_REG_BAR), adapter->registers);
|
||||
}
|
||||
|
||||
if (adapter->msix != NULL) {
|
||||
bus_release_resource(pdev, SYS_RES_MEMORY,
|
||||
adapter->msix_rid, adapter->msix);
|
||||
}
|
||||
}
|
||||
|
||||
static int
|
||||
@ -3532,6 +3537,7 @@ ena_attach(device_t pdev)
|
||||
struct ena_adapter *adapter;
|
||||
struct ena_com_dev *ena_dev = NULL;
|
||||
uint32_t max_num_io_queues;
|
||||
int msix_rid;
|
||||
int rid, rc;
|
||||
|
||||
adapter = device_get_softc(pdev);
|
||||
@ -3570,6 +3576,20 @@ ena_attach(device_t pdev)
|
||||
goto err_dev_free;
|
||||
}
|
||||
|
||||
/* MSIx vector table may reside on BAR0 with registers or on BAR1. */
|
||||
msix_rid = pci_msix_table_bar(pdev);
|
||||
if (msix_rid != rid) {
|
||||
adapter->msix = bus_alloc_resource_any(pdev, SYS_RES_MEMORY,
|
||||
&msix_rid, RF_ACTIVE);
|
||||
if (unlikely(adapter->msix == NULL)) {
|
||||
device_printf(pdev,
|
||||
"unable to allocate bus resource: msix!\n");
|
||||
rc = ENOMEM;
|
||||
goto err_pci_free;
|
||||
}
|
||||
adapter->msix_rid = msix_rid;
|
||||
}
|
||||
|
||||
ena_dev->bus = malloc(sizeof(struct ena_bus), M_DEVBUF,
|
||||
M_WAITOK | M_ZERO);
|
||||
|
||||
@ -3735,6 +3755,7 @@ ena_attach(device_t pdev)
|
||||
ena_com_mmio_reg_read_request_destroy(ena_dev);
|
||||
err_bus_free:
|
||||
free(ena_dev->bus, M_DEVBUF);
|
||||
err_pci_free:
|
||||
ena_free_pci_resources(adapter);
|
||||
err_dev_free:
|
||||
free(ena_dev, M_DEVBUF);
|
||||
|
@ -41,7 +41,7 @@
|
||||
|
||||
#define DRV_MODULE_VER_MAJOR 2
|
||||
#define DRV_MODULE_VER_MINOR 3
|
||||
#define DRV_MODULE_VER_SUBMINOR 0
|
||||
#define DRV_MODULE_VER_SUBMINOR 1
|
||||
|
||||
#define DRV_MODULE_NAME "ena"
|
||||
|
||||
@ -398,6 +398,8 @@ struct ena_adapter {
|
||||
/* OS resources */
|
||||
struct resource *memory;
|
||||
struct resource *registers;
|
||||
struct resource *msix;
|
||||
int msix_rid;
|
||||
|
||||
struct sx global_lock;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user