Searched refs:max_functions (Results 1 – 10 of 10) sorted by relevance
/linux-6.3-rc2/drivers/net/ethernet/mellanox/mlx5/core/sf/dev/ |
A D | dev.c | 162 u16 max_functions; in mlx5_sf_dev_state_change_handler() local 166 max_functions = mlx5_sf_max_functions(table->dev); in mlx5_sf_dev_state_change_handler() 167 if (!max_functions) in mlx5_sf_dev_state_change_handler() 171 if (event->function_id < base_id || event->function_id >= (base_id + max_functions)) in mlx5_sf_dev_state_change_handler() 206 u16 max_functions; in mlx5_sf_dev_vhca_arm_all() local 211 max_functions = mlx5_sf_max_functions(dev); in mlx5_sf_dev_vhca_arm_all() 214 for (i = 0; i < max_functions; i++) { in mlx5_sf_dev_vhca_arm_all() 229 u16 max_functions; in mlx5_sf_dev_add_active_work() local 236 max_functions = mlx5_sf_max_functions(dev); in mlx5_sf_dev_add_active_work() 238 for (i = 0; i < max_functions; i++, function_id++) { in mlx5_sf_dev_add_active_work()
|
/linux-6.3-rc2/drivers/pci/endpoint/ |
A D | pci-epc-core.c | 152 if (IS_ERR_OR_NULL(epc) || func_no >= epc->max_functions) in pci_epc_get_features() 225 if (IS_ERR_OR_NULL(epc) || func_no >= epc->max_functions) in pci_epc_raise_irq() 300 if (IS_ERR_OR_NULL(epc) || func_no >= epc->max_functions) in pci_epc_get_msi() 336 if (IS_ERR_OR_NULL(epc) || func_no >= epc->max_functions || in pci_epc_set_msi() 368 if (IS_ERR_OR_NULL(epc) || func_no >= epc->max_functions) in pci_epc_get_msix() 404 if (IS_ERR_OR_NULL(epc) || func_no >= epc->max_functions || in pci_epc_set_msix() 435 if (IS_ERR_OR_NULL(epc) || func_no >= epc->max_functions) in pci_epc_unmap_addr() 466 if (IS_ERR_OR_NULL(epc) || func_no >= epc->max_functions) in pci_epc_map_addr() 496 if (IS_ERR_OR_NULL(epc) || func_no >= epc->max_functions || in pci_epc_clear_bar() 568 if (IS_ERR_OR_NULL(epc) || func_no >= epc->max_functions) in pci_epc_write_header() [all …]
|
/linux-6.3-rc2/drivers/pci/controller/ |
A D | pcie-rcar-ep.c | 26 u8 max_functions; member 152 &ep->max_functions); in rcar_pcie_ep_get_pdata() 153 if (err < 0 || ep->max_functions > RCAR_EPC_MAX_FUNCTIONS) in rcar_pcie_ep_get_pdata() 154 ep->max_functions = RCAR_EPC_MAX_FUNCTIONS; in rcar_pcie_ep_get_pdata() 531 epc->max_functions = ep->max_functions; in rcar_pcie_ep_probe()
|
A D | pcie-rockchip-ep.c | 551 &ep->epc->max_functions); in rockchip_pcie_parse_ep_dt() 553 ep->epc->max_functions = 1; in rockchip_pcie_parse_ep_dt()
|
/linux-6.3-rc2/drivers/pci/hotplug/ |
A D | cpqphp_pci.c | 310 int max_functions; in cpqhp_save_config() local 367 max_functions = 8; in cpqhp_save_config() 369 max_functions = 1; in cpqhp_save_config() 434 while ((function < max_functions) && (!stop_it)) { in cpqhp_save_config() 451 } while (function < max_functions); in cpqhp_save_config() 474 int max_functions; in cpqhp_save_slot_config() local 491 max_functions = 8; in cpqhp_save_slot_config() 493 max_functions = 1; in cpqhp_save_slot_config() 495 while (function < max_functions) { in cpqhp_save_slot_config() 524 while ((function < max_functions) && (!stop_it)) { in cpqhp_save_slot_config()
|
A D | cpqphp_ctrl.c | 2213 u8 temp_byte, function, max_functions, stop_it; in configure_new_device() local 2231 max_functions = 8; in configure_new_device() 2233 max_functions = 1; in configure_new_device() 2261 while ((function < max_functions) && (!stop_it)) { in configure_new_device() 2283 } while (function < max_functions); in configure_new_device()
|
/linux-6.3-rc2/drivers/pinctrl/berlin/ |
A D | berlin.c | 206 int i, max_functions = 0; in berlin_pinctrl_build_state() local 213 max_functions += 1 << (desc_group->bit_width + 1); in berlin_pinctrl_build_state() 217 pctrl->functions = kcalloc(max_functions, in berlin_pinctrl_build_state()
|
/linux-6.3-rc2/drivers/pci/controller/cadence/ |
A D | pcie-cadence-ep.c | 687 if (of_property_read_u8(np, "max-functions", &epc->max_functions) < 0) in cdns_pcie_ep_setup() 688 epc->max_functions = 1; in cdns_pcie_ep_setup() 690 ep->epf = devm_kcalloc(dev, epc->max_functions, sizeof(*ep->epf), in cdns_pcie_ep_setup() 695 epc->max_vfs = devm_kcalloc(dev, epc->max_functions, in cdns_pcie_ep_setup() 701 epc->max_vfs, epc->max_functions); in cdns_pcie_ep_setup() 703 for (i = 0; i < epc->max_functions; i++) { in cdns_pcie_ep_setup()
|
/linux-6.3-rc2/drivers/pci/controller/dwc/ |
A D | pcie-designware-ep.c | 79 funcs = pci->ep.epc->max_functions; in dw_pcie_ep_reset_bar() 755 ret = of_property_read_u8(np, "max-functions", &epc->max_functions); in dw_pcie_ep_init() 757 epc->max_functions = 1; in dw_pcie_ep_init() 759 for (func_no = 0; func_no < epc->max_functions; func_no++) { in dw_pcie_ep_init()
|
/linux-6.3-rc2/include/linux/ |
A D | pci-epc.h | 147 u8 max_functions; member
|
Completed in 20 milliseconds