/linux-6.12.1/drivers/thunderbolt/ |
D | nhi.c | 57 bit += ring->nhi->hop_count; in ring_interrupt_index() 61 static void nhi_mask_interrupt(struct tb_nhi *nhi, int mask, int ring) in nhi_mask_interrupt() argument 63 if (nhi->quirks & QUIRK_AUTO_CLEAR_INT) { in nhi_mask_interrupt() 66 val = ioread32(nhi->iobase + REG_RING_INTERRUPT_BASE + ring); in nhi_mask_interrupt() 67 iowrite32(val & ~mask, nhi->iobase + REG_RING_INTERRUPT_BASE + ring); in nhi_mask_interrupt() 69 iowrite32(mask, nhi->iobase + REG_RING_INTERRUPT_MASK_CLEAR_BASE + ring); in nhi_mask_interrupt() 73 static void nhi_clear_interrupt(struct tb_nhi *nhi, int ring) in nhi_clear_interrupt() argument 75 if (nhi->quirks & QUIRK_AUTO_CLEAR_INT) in nhi_clear_interrupt() 76 ioread32(nhi->iobase + REG_RING_NOTIFY_BASE + ring); in nhi_clear_interrupt() 78 iowrite32(~0, nhi->iobase + REG_RING_INT_CLEAR + ring); in nhi_clear_interrupt() [all …]
|
D | nhi_ops.c | 25 static bool icl_nhi_is_device_connected(struct tb_nhi *nhi) in icl_nhi_is_device_connected() argument 27 struct tb *tb = pci_get_drvdata(nhi->pdev); in icl_nhi_is_device_connected() 35 static int icl_nhi_force_power(struct tb_nhi *nhi, bool power) in icl_nhi_force_power() argument 51 pci_read_config_dword(nhi->pdev, VS_CAP_22, &vs_cap); in icl_nhi_force_power() 59 pci_write_config_dword(nhi->pdev, VS_CAP_22, vs_cap); in icl_nhi_force_power() 67 pci_read_config_dword(nhi->pdev, VS_CAP_9, &val); in icl_nhi_force_power() 79 static void icl_nhi_lc_mailbox_cmd(struct tb_nhi *nhi, enum icl_lc_mailbox_cmd cmd) in icl_nhi_lc_mailbox_cmd() argument 84 pci_write_config_dword(nhi->pdev, VS_CAP_19, data | VS_CAP_19_VALID); in icl_nhi_lc_mailbox_cmd() 87 static int icl_nhi_lc_mailbox_cmd_complete(struct tb_nhi *nhi, int timeout) in icl_nhi_lc_mailbox_cmd_complete() argument 97 pci_read_config_dword(nhi->pdev, VS_CAP_18, &data); in icl_nhi_lc_mailbox_cmd_complete() [all …]
|
D | nhi.h | 30 int nhi_mailbox_cmd(struct tb_nhi *nhi, enum nhi_mailbox_cmd cmd, u32 data); 31 enum nhi_fw_mode nhi_mailbox_mode(struct tb_nhi *nhi); 43 int (*init)(struct tb_nhi *nhi); 44 int (*suspend_noirq)(struct tb_nhi *nhi, bool wakeup); 45 int (*resume_noirq)(struct tb_nhi *nhi); 46 int (*runtime_suspend)(struct tb_nhi *nhi); 47 int (*runtime_resume)(struct tb_nhi *nhi); 48 void (*shutdown)(struct tb_nhi *nhi);
|
D | acpi.c | 19 struct tb_nhi *nhi = data; in tb_acpi_add_link() local 31 if (dev_fwnode(&nhi->pdev->dev) != fwnode) in tb_acpi_add_link() 60 link = device_link_add(&pdev->dev, &nhi->pdev->dev, in tb_acpi_add_link() 65 dev_dbg(&nhi->pdev->dev, "created link from %s\n", in tb_acpi_add_link() 69 dev_warn(&nhi->pdev->dev, "device link creation from %s failed\n", in tb_acpi_add_link() 91 bool tb_acpi_add_links(struct tb_nhi *nhi) in tb_acpi_add_links() argument 96 if (!has_acpi_companion(&nhi->pdev->dev)) in tb_acpi_add_links() 104 tb_acpi_add_link, NULL, nhi, (void **)&ret); in tb_acpi_add_links() 106 dev_warn(&nhi->pdev->dev, "failed to enumerate tunneled ports\n"); in tb_acpi_add_links() 303 struct tb_nhi *nhi = sw->tb->nhi; in tb_acpi_switch_find_companion() local [all …]
|
D | nhi_regs.h | 85 #define RING_NOTIFY_REG_COUNT(nhi) ((31 + 3 * nhi->hop_count) / 32) argument 94 #define RING_INTERRUPT_REG_COUNT(nhi) ((31 + 2 * nhi->hop_count) / 32) argument
|
D | icm.c | 374 static bool icm_firmware_running(const struct tb_nhi *nhi) in icm_firmware_running() argument 378 val = ioread32(nhi->iobase + REG_FW_STS); in icm_firmware_running() 451 nhi_mailbox_cmd(tb->nhi, NHI_MAILBOX_SAVE_DEVS, 0); in icm_fr_save_devices() 603 nhi_mailbox_cmd(tb->nhi, cmd, 1); in icm_fr_disconnect_xdomain_paths() 605 nhi_mailbox_cmd(tb->nhi, cmd, 2); in icm_fr_disconnect_xdomain_paths() 1435 if (icm_firmware_running(tb->nhi)) in icm_ar_is_supported() 1444 upstream_port = get_upstream_port(tb->nhi->pdev); in icm_ar_is_supported() 1468 struct tb_nhi *nhi = tb->nhi; in icm_ar_get_mode() local 1473 val = ioread32(nhi->iobase + REG_FW_STS); in icm_ar_get_mode() 1480 dev_err(&nhi->pdev->dev, "ICM firmware not authenticated\n"); in icm_ar_get_mode() [all …]
|
D | ctl.c | 40 struct tb_nhi *nhi; member 59 dev_WARN(&(ctl)->nhi->pdev->dev, format, ## arg) 62 dev_err(&(ctl)->nhi->pdev->dev, format, ## arg) 65 dev_warn(&(ctl)->nhi->pdev->dev, format, ## arg) 68 dev_info(&(ctl)->nhi->pdev->dev, format, ## arg) 71 dev_dbg(&(ctl)->nhi->pdev->dev, format, ## arg) 638 struct tb_ctl *tb_ctl_alloc(struct tb_nhi *nhi, int index, int timeout_msec, in tb_ctl_alloc() argument 646 ctl->nhi = nhi; in tb_ctl_alloc() 654 ctl->frame_pool = dma_pool_create("thunderbolt_ctl", &nhi->pdev->dev, in tb_ctl_alloc() 659 ctl->tx = tb_ring_alloc_tx(nhi, 0, 10, RING_FLAG_NO_SUSPEND); in tb_ctl_alloc() [all …]
|
D | test.c | 1791 struct tb_port *nhi, *port; in tb_test_tunnel_dma() local 1807 nhi = &host->ports[7]; in tb_test_tunnel_dma() 1810 tunnel = tb_tunnel_alloc_dma(NULL, nhi, port, 8, 1, 8, 1); in tb_test_tunnel_dma() 1813 KUNIT_EXPECT_PTR_EQ(test, tunnel->src_port, nhi); in tb_test_tunnel_dma() 1820 KUNIT_EXPECT_PTR_EQ(test, tunnel->paths[0]->hops[0].out_port, nhi); in tb_test_tunnel_dma() 1824 KUNIT_EXPECT_PTR_EQ(test, tunnel->paths[1]->hops[0].in_port, nhi); in tb_test_tunnel_dma() 1834 struct tb_port *nhi, *port; in tb_test_tunnel_dma_rx() local 1850 nhi = &host->ports[7]; in tb_test_tunnel_dma_rx() 1853 tunnel = tb_tunnel_alloc_dma(NULL, nhi, port, -1, -1, 15, 2); in tb_test_tunnel_dma_rx() 1856 KUNIT_EXPECT_PTR_EQ(test, tunnel->src_port, nhi); in tb_test_tunnel_dma_rx() [all …]
|
D | tb.h | 721 #define tb_err(tb, fmt, arg...) dev_err(&(tb)->nhi->pdev->dev, fmt, ## arg) 722 #define tb_WARN(tb, fmt, arg...) dev_WARN(&(tb)->nhi->pdev->dev, fmt, ## arg) 723 #define tb_warn(tb, fmt, arg...) dev_warn(&(tb)->nhi->pdev->dev, fmt, ## arg) 724 #define tb_info(tb, fmt, arg...) dev_info(&(tb)->nhi->pdev->dev, fmt, ## arg) 725 #define tb_dbg(tb, fmt, arg...) dev_dbg(&(tb)->nhi->pdev->dev, fmt, ## arg) 753 struct tb *icm_probe(struct tb_nhi *nhi); 754 struct tb *tb_probe(struct tb_nhi *nhi); 766 struct tb *tb_domain_alloc(struct tb_nhi *nhi, int timeout_msec, size_t privsize); 1467 bool tb_acpi_add_links(struct tb_nhi *nhi); 1480 static inline bool tb_acpi_add_links(struct tb_nhi *nhi) { return false; } in tb_acpi_add_links() argument
|
D | domain.c | 258 return sysfs_emit(buf, "%d\n", tb->nhi->iommu_dma_protection); in iommu_dma_protection_show() 373 struct tb *tb_domain_alloc(struct tb_nhi *nhi, int timeout_msec, size_t privsize) in tb_domain_alloc() argument 389 tb->nhi = nhi; in tb_domain_alloc() 400 tb->ctl = tb_ctl_alloc(nhi, tb->index, timeout_msec, tb_domain_event_cb, tb); in tb_domain_alloc() 404 tb->dev.parent = &nhi->pdev->dev; in tb_domain_alloc()
|
D | Makefile | 4 thunderbolt-objs := nhi.o nhi_ops.o ctl.o tb.o switch.o cap.o path.o tunnel.o eeprom.o
|
D | tb.c | 3150 static bool tb_apple_add_links(struct tb_nhi *nhi) in tb_apple_add_links() argument 3158 switch (nhi->pdev->device) { in tb_apple_add_links() 3168 upstream = pci_upstream_bridge(nhi->pdev); in tb_apple_add_links() 3195 link = device_link_add(&pdev->dev, &nhi->pdev->dev, in tb_apple_add_links() 3199 dev_dbg(&nhi->pdev->dev, "created link from %s\n", in tb_apple_add_links() 3203 dev_warn(&nhi->pdev->dev, "device link creation from %s failed\n", in tb_apple_add_links() 3211 struct tb *tb_probe(struct tb_nhi *nhi) in tb_probe() argument 3216 tb = tb_domain_alloc(nhi, TB_TIMEOUT, sizeof(*tcm)); in tb_probe() 3240 if (!tb_apple_add_links(nhi) && !tb_acpi_add_links(nhi)) in tb_probe()
|
D | ctl.h | 24 struct tb_ctl *tb_ctl_alloc(struct tb_nhi *nhi, int index, int timeout_msec,
|
D | tunnel.h | 90 struct tb_tunnel *tb_tunnel_alloc_dma(struct tb *tb, struct tb_port *nhi,
|
D | tunnel.c | 1656 struct tb_tunnel *tb_tunnel_alloc_dma(struct tb *tb, struct tb_port *nhi, in tb_tunnel_alloc_dma() argument 1682 tunnel->src_port = nhi; in tb_tunnel_alloc_dma() 1686 credits = min_not_zero(dma_credits, nhi->sw->max_dma_credits); in tb_tunnel_alloc_dma() 1689 path = tb_path_alloc(tb, dst, receive_path, nhi, receive_ring, 0, in tb_tunnel_alloc_dma() 1701 path = tb_path_alloc(tb, nhi, transmit_ring, dst, transmit_path, 0, in tb_tunnel_alloc_dma()
|
D | dma_test.c | 152 ring = tb_ring_alloc_tx(xd->tb->nhi, -1, DMA_TEST_TX_RING_SIZE, in dma_test_start_rings() 175 ring = tb_ring_alloc_rx(xd->tb->nhi, -1, DMA_TEST_RX_RING_SIZE, in dma_test_start_rings()
|
D | eeprom.c | 443 struct device *dev = &sw->tb->nhi->pdev->dev; in tb_drom_copy_efi()
|
D | switch.c | 221 root_port = pcie_find_root_port(sw->tb->nhi->pdev); in nvm_authenticate_start_dma_port() 230 root_port = pcie_find_root_port(sw->tb->nhi->pdev); in nvm_authenticate_complete_dma_port()
|
/linux-6.12.1/include/net/ |
D | nexthop.h | 287 const struct nh_info *nhi; in nexthop_is_fdb() local 289 nhi = rcu_dereference_rtnl(nh->nh_info); in nexthop_is_fdb() 290 return nhi->fdb_nh; in nexthop_is_fdb() 354 struct nh_info *nhi = rcu_dereference_rtnl(nhe->nh_info); in nexthop_mpath_fill_node() local 355 struct fib_nh_common *nhc = &nhi->fib_nhc; in nexthop_mpath_fill_node() 368 const struct nh_info *nhi; in nexthop_is_blackhole() local 380 nhi = rcu_dereference_rtnl(nh->nh_info); in nexthop_is_blackhole() 381 return nhi->reject_nh; in nexthop_is_blackhole() 386 struct nh_info *nhi; in nexthop_path_fib_result() local 390 nhi = rcu_dereference(nh->nh_info); in nexthop_path_fib_result() [all …]
|
/linux-6.12.1/net/ipv4/ |
D | nexthop.c | 98 const struct nh_info *nhi) in __nh_notifier_single_info_init() argument 100 nh_info->dev = nhi->fib_nhc.nhc_dev; in __nh_notifier_single_info_init() 101 nh_info->gw_family = nhi->fib_nhc.nhc_gw_family; in __nh_notifier_single_info_init() 103 nh_info->ipv4 = nhi->fib_nhc.nhc_gw.ipv4; in __nh_notifier_single_info_init() 105 nh_info->ipv6 = nhi->fib_nhc.nhc_gw.ipv6; in __nh_notifier_single_info_init() 107 nh_info->id = nhi->nh_parent->id; in __nh_notifier_single_info_init() 108 nh_info->is_reject = nhi->reject_nh; in __nh_notifier_single_info_init() 109 nh_info->is_fdb = nhi->fdb_nh; in __nh_notifier_single_info_init() 110 nh_info->has_encap = !!nhi->fib_nhc.nhc_lwtstate; in __nh_notifier_single_info_init() 116 struct nh_info *nhi = rtnl_dereference(nh->nh_info); in nh_notifier_single_info_init() local [all …]
|
/linux-6.12.1/include/linux/ |
D | thunderbolt.h | 77 struct tb_nhi *nhi; member 533 struct tb_nhi *nhi; member 606 struct tb_ring *tb_ring_alloc_tx(struct tb_nhi *nhi, int hop, int size, 608 struct tb_ring *tb_ring_alloc_rx(struct tb_nhi *nhi, int hop, int size, 674 return &ring->nhi->pdev->dev; in tb_ring_dma_device()
|
/linux-6.12.1/drivers/net/ethernet/mellanox/mlxsw/ |
D | spectrum_router.c | 5650 int nhi; in mlxsw_sp_nexthop_obj_mp_hw_stats_get() local 5652 for (nhi = 0; nhi < info->num_nh; nhi++) { in mlxsw_sp_nexthop_obj_mp_hw_stats_get() 5653 struct mlxsw_sp_nexthop *nh = &nhgi->nexthops[nhi]; in mlxsw_sp_nexthop_obj_mp_hw_stats_get() 5661 nh_grp_hw_stats_report_delta(info, nhi, packets); in mlxsw_sp_nexthop_obj_mp_hw_stats_get() 5670 int nhi = -1; in mlxsw_sp_nexthop_obj_res_hw_stats_get() local 5678 if (nhi == -1 || info->stats[nhi].id != nh->id) { in mlxsw_sp_nexthop_obj_res_hw_stats_get() 5679 for (nhi = 0; nhi < info->num_nh; nhi++) in mlxsw_sp_nexthop_obj_res_hw_stats_get() 5680 if (info->stats[nhi].id == nh->id) in mlxsw_sp_nexthop_obj_res_hw_stats_get() 5682 if (WARN_ON_ONCE(nhi == info->num_nh)) { in mlxsw_sp_nexthop_obj_res_hw_stats_get() 5683 nhi = -1; in mlxsw_sp_nexthop_obj_res_hw_stats_get() [all …]
|
/linux-6.12.1/drivers/net/thunderbolt/ |
D | main.c | 927 ring = tb_ring_alloc_tx(xd->tb->nhi, -1, TBNET_RING_SIZE, in tbnet_open() 952 ring = tb_ring_alloc_rx(xd->tb->nhi, -1, TBNET_RING_SIZE, flags, in tbnet_open()
|