2
0
mirror of git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git synced 2025-09-04 20:19:47 +08:00
linux/drivers/net/ethernet/intel/ice/ice_irq.c
Michal Swiatkowski 79d97b8cf9 ice: remove splitting MSI-X between features
With dynamic approach to alloc MSI-X there is no sense to statically
split MSI-X between PF features.

Splitting was also calculating needed MSI-X. Move this part to separate
function and use as max value.

Remove ICE_ESWITCH_MSIX, as there is no need for additional MSI-X for
switchdev.

Reviewed-by: Jacob Keller <jacob.e.keller@intel.com>
Reviewed-by: Wojciech Drewek <wojciech.drewek@intel.com>
Tested-by: Pucha Himasekhar Reddy <himasekharx.reddy.pucha@intel.com>
Signed-off-by: Michal Swiatkowski <michal.swiatkowski@linux.intel.com>
Signed-off-by: Tony Nguyen <anthony.l.nguyen@intel.com>
2025-02-05 09:04:57 -08:00

246 lines
6.4 KiB
C

// SPDX-License-Identifier: GPL-2.0
/* Copyright (C) 2023, Intel Corporation. */
#include "ice.h"
#include "ice_lib.h"
#include "ice_irq.h"
/**
* ice_init_irq_tracker - initialize interrupt tracker
* @pf: board private structure
* @max_vectors: maximum number of vectors that tracker can hold
* @num_static: number of preallocated interrupts
*/
static void
ice_init_irq_tracker(struct ice_pf *pf, unsigned int max_vectors,
unsigned int num_static)
{
pf->irq_tracker.num_entries = max_vectors;
pf->irq_tracker.num_static = num_static;
xa_init_flags(&pf->irq_tracker.entries, XA_FLAGS_ALLOC);
}
/**
* ice_deinit_irq_tracker - free xarray tracker
* @pf: board private structure
*/
static void ice_deinit_irq_tracker(struct ice_pf *pf)
{
xa_destroy(&pf->irq_tracker.entries);
}
/**
* ice_free_irq_res - free a block of resources
* @pf: board private structure
* @index: starting index previously returned by ice_get_res
*/
static void ice_free_irq_res(struct ice_pf *pf, u16 index)
{
struct ice_irq_entry *entry;
entry = xa_erase(&pf->irq_tracker.entries, index);
kfree(entry);
}
/**
* ice_get_irq_res - get an interrupt resource
* @pf: board private structure
* @dyn_only: force entry to be dynamically allocated
*
* Allocate new irq entry in the free slot of the tracker. Since xarray
* is used, always allocate new entry at the lowest possible index. Set
* proper allocation limit for maximum tracker entries.
*
* Returns allocated irq entry or NULL on failure.
*/
static struct ice_irq_entry *ice_get_irq_res(struct ice_pf *pf, bool dyn_only)
{
struct xa_limit limit = { .max = pf->irq_tracker.num_entries,
.min = 0 };
unsigned int num_static = pf->irq_tracker.num_static;
struct ice_irq_entry *entry;
unsigned int index;
int ret;
entry = kzalloc(sizeof(*entry), GFP_KERNEL);
if (!entry)
return NULL;
/* skip preallocated entries if the caller says so */
if (dyn_only)
limit.min = num_static;
ret = xa_alloc(&pf->irq_tracker.entries, &index, entry, limit,
GFP_KERNEL);
if (ret) {
kfree(entry);
entry = NULL;
} else {
entry->index = index;
entry->dynamic = index >= num_static;
}
return entry;
}
static int ice_get_default_msix_amount(struct ice_pf *pf)
{
return ICE_MIN_LAN_OICR_MSIX + num_online_cpus() +
(test_bit(ICE_FLAG_FD_ENA, pf->flags) ? ICE_FDIR_MSIX : 0) +
(ice_is_rdma_ena(pf) ? num_online_cpus() + ICE_RDMA_NUM_AEQ_MSIX : 0);
}
/**
* ice_clear_interrupt_scheme - Undo things done by ice_init_interrupt_scheme
* @pf: board private structure
*/
void ice_clear_interrupt_scheme(struct ice_pf *pf)
{
pci_free_irq_vectors(pf->pdev);
ice_deinit_irq_tracker(pf);
}
/**
* ice_init_interrupt_scheme - Determine proper interrupt scheme
* @pf: board private structure to initialize
*/
int ice_init_interrupt_scheme(struct ice_pf *pf)
{
int total_vectors = pf->hw.func_caps.common_cap.num_msix_vectors;
int vectors, max_vectors;
/* load default PF MSI-X range */
if (!pf->msix.min)
pf->msix.min = ICE_MIN_MSIX;
if (!pf->msix.max)
pf->msix.max = min(total_vectors,
ice_get_default_msix_amount(pf));
if (pci_msix_can_alloc_dyn(pf->pdev)) {
vectors = pf->msix.min;
max_vectors = total_vectors;
} else {
vectors = pf->msix.max;
max_vectors = vectors;
}
vectors = pci_alloc_irq_vectors(pf->pdev, pf->msix.min, vectors,
PCI_IRQ_MSIX);
if (vectors < pf->msix.min)
return -ENOMEM;
ice_init_irq_tracker(pf, max_vectors, vectors);
return 0;
}
/**
* ice_alloc_irq - Allocate new interrupt vector
* @pf: board private structure
* @dyn_only: force dynamic allocation of the interrupt
*
* Allocate new interrupt vector for a given owner id.
* return struct msi_map with interrupt details and track
* allocated interrupt appropriately.
*
* This function reserves new irq entry from the irq_tracker.
* if according to the tracker information all interrupts that
* were allocated with ice_pci_alloc_irq_vectors are already used
* and dynamically allocated interrupts are supported then new
* interrupt will be allocated with pci_msix_alloc_irq_at.
*
* Some callers may only support dynamically allocated interrupts.
* This is indicated with dyn_only flag.
*
* On failure, return map with negative .index. The caller
* is expected to check returned map index.
*
*/
struct msi_map ice_alloc_irq(struct ice_pf *pf, bool dyn_only)
{
int sriov_base_vector = pf->sriov_base_vector;
struct msi_map map = { .index = -ENOENT };
struct device *dev = ice_pf_to_dev(pf);
struct ice_irq_entry *entry;
entry = ice_get_irq_res(pf, dyn_only);
if (!entry)
return map;
/* fail if we're about to violate SRIOV vectors space */
if (sriov_base_vector && entry->index >= sriov_base_vector)
goto exit_free_res;
if (pci_msix_can_alloc_dyn(pf->pdev) && entry->dynamic) {
map = pci_msix_alloc_irq_at(pf->pdev, entry->index, NULL);
if (map.index < 0)
goto exit_free_res;
dev_dbg(dev, "allocated new irq at index %d\n", map.index);
} else {
map.index = entry->index;
map.virq = pci_irq_vector(pf->pdev, map.index);
}
return map;
exit_free_res:
dev_err(dev, "Could not allocate irq at idx %d\n", entry->index);
ice_free_irq_res(pf, entry->index);
return map;
}
/**
* ice_free_irq - Free interrupt vector
* @pf: board private structure
* @map: map with interrupt details
*
* Remove allocated interrupt from the interrupt tracker. If interrupt was
* allocated dynamically, free respective interrupt vector.
*/
void ice_free_irq(struct ice_pf *pf, struct msi_map map)
{
struct ice_irq_entry *entry;
entry = xa_load(&pf->irq_tracker.entries, map.index);
if (!entry) {
dev_err(ice_pf_to_dev(pf), "Failed to get MSIX interrupt entry at index %d",
map.index);
return;
}
dev_dbg(ice_pf_to_dev(pf), "Free irq at index %d\n", map.index);
if (entry->dynamic)
pci_msix_free_irq(pf->pdev, map);
ice_free_irq_res(pf, map.index);
}
/**
* ice_get_max_used_msix_vector - Get the max used interrupt vector
* @pf: board private structure
*
* Return index of maximum used interrupt vectors with respect to the
* beginning of the MSIX table. Take into account that some interrupts
* may have been dynamically allocated after MSIX was initially enabled.
*/
int ice_get_max_used_msix_vector(struct ice_pf *pf)
{
unsigned long start, index, max_idx;
void *entry;
/* Treat all preallocated interrupts as used */
start = pf->irq_tracker.num_static;
max_idx = start - 1;
xa_for_each_start(&pf->irq_tracker.entries, index, entry, start) {
if (index > max_idx)
max_idx = index;
}
return max_idx;
}