| /freebsd-10-stable/sys/dev/ntb/ntb_hw/ |
| D | ntb_hw.c | 124 #define HAS_FEATURE(ntb, feature) \ argument 125 (((ntb)->features & (feature)) != 0) 157 struct ntb_softc *ntb; member 288 bus_space_read_ ## SIZE (ntb->bar_info[(bar)].pci_bus_tag, \ 289 ntb->bar_info[(bar)].pci_bus_handle, (offset)) 291 bus_space_write_ ## SIZE (ntb->bar_info[(bar)].pci_bus_tag, \ 292 ntb->bar_info[(bar)].pci_bus_handle, (offset), (val)) 298 intel_ntb_bar_read(SIZE, intel_ntb_mw_to_bar(ntb, ntb->b2b_mw_idx), \ 301 intel_ntb_bar_write(SIZE, intel_ntb_mw_to_bar(ntb, ntb->b2b_mw_idx), \ 323 static int intel_ntb_map_pci_bars(struct ntb_softc *ntb); [all …]
|
| /freebsd-10-stable/sys/dev/ntb/ |
| D | ntb.h | 37 int ntb_register_device(device_t ntb); 38 int ntb_unregister_device(device_t ntb); 47 void ntb_link_event(device_t ntb); 62 void ntb_db_event(device_t ntb, uint32_t vec); 72 bool ntb_link_is_up(device_t ntb, enum ntb_speed *speed, enum ntb_width *width); 90 int ntb_link_enable(device_t ntb, enum ntb_speed speed, enum ntb_width width); 104 int ntb_link_disable(device_t ntb); 109 bool ntb_link_enabled(device_t ntb); 123 int ntb_set_ctx(device_t ntb, void *ctx, const struct ntb_ctx_ops *ctx_ops); 132 void * ntb_get_ctx(device_t ntb, const struct ntb_ctx_ops **ctx_ops); [all …]
|
| D | ntb.c | 43 SYSCTL_NODE(_hw, OID_AUTO, ntb, CTLFLAG_RW, 0, "NTB sysctls"); 197 ntb_link_is_up(device_t ntb, enum ntb_speed *speed, enum ntb_width *width) in ntb_link_is_up() argument 200 return (NTB_LINK_IS_UP(device_get_parent(ntb), speed, width)); in ntb_link_is_up() 204 ntb_link_enable(device_t ntb, enum ntb_speed speed, enum ntb_width width) in ntb_link_enable() argument 206 struct ntb_child *nc = device_get_ivars(ntb); in ntb_link_enable() 217 return (NTB_LINK_ENABLE(device_get_parent(ntb), speed, width)); in ntb_link_enable() 221 ntb_link_disable(device_t ntb) in ntb_link_disable() argument 223 struct ntb_child *nc = device_get_ivars(ntb); in ntb_link_disable() 234 return (NTB_LINK_DISABLE(device_get_parent(ntb))); in ntb_link_disable() 238 ntb_link_enabled(device_t ntb) in ntb_link_enabled() argument [all …]
|
| D | ntb_if.m | 26 # $FreeBSD: stable/10/sys/dev/ntb/ntb_if.m 304404 2016-08-18 10:59:12Z mav $ 32 INTERFACE ntb; 64 device_t ntb; 70 device_t ntb; 76 device_t ntb; 80 device_t ntb; 84 device_t ntb; 90 device_t ntb; 95 device_t ntb; 99 device_t ntb; [all …]
|
| D | ntb_transport.c | 1520 MODULE_DEPEND(ntb_transport, ntb, 1, 1, 1);
|
| /freebsd-10-stable/sys/modules/ntb/ntb/ |
| D | Makefile | 3 .PATH: ${.CURDIR}/../../../dev/ntb 5 KMOD = ntb 6 SRCS = ntb.c ntb_if.c 9 MFILES= kern/bus_if.m kern/device_if.m dev/ntb/ntb_if.m
|
| /freebsd-10-stable/sys/modules/ntb/ntb_transport/ |
| D | Makefile | 3 .PATH: ${.CURDIR}/../../../dev/ntb 9 MFILES= kern/bus_if.m kern/device_if.m dev/ntb/ntb_if.m
|
| /freebsd-10-stable/sys/modules/ntb/ntb_hw/ |
| D | Makefile | 3 .PATH: ${.CURDIR}/../../../dev/ntb/ntb_hw 9 MFILES= kern/bus_if.m kern/device_if.m dev/pci/pci_if.m dev/ntb/ntb_if.m
|
| /freebsd-10-stable/sbin/dump/ |
| D | tape.c | 395 union u_spcl *ntb, *otb; in rollforward() local 397 ntb = (union u_spcl *)tslp->tblock[1]; in rollforward() 417 *ntb++ = *otb++; /* copy the datablock also */ in rollforward() 426 ntb--; in rollforward() 441 size = (char *)ntb - (char *)q; in rollforward() 460 ntb = (union u_spcl *)tslp->tblock; in rollforward() 467 *((union u_spcl *)tslp->tblock) = *ntb; in rollforward() 468 ntb = (union u_spcl *)tslp->tblock[1]; in rollforward()
|
| /freebsd-10-stable/sys/modules/ntb/ |
| D | Makefile | 3 SUBDIR= ntb ntb_hw ntb_transport if_ntb
|
| /freebsd-10-stable/sys/modules/ntb/if_ntb/ |
| D | Makefile | 3 .PATH: ${.CURDIR}/../../../dev/ntb/if_ntb
|
| /freebsd-10-stable/sys/conf/ |
| D | files.i386 | 287 dev/ntb/if_ntb/if_ntb.c optional if_ntb 288 dev/ntb/ntb_transport.c optional if_ntb 289 dev/ntb/ntb.c optional if_ntb | ntb_hw 290 dev/ntb/ntb_if.m optional if_ntb | ntb_hw 291 dev/ntb/ntb_hw/ntb_hw.c optional ntb_hw
|
| D | files.amd64 | 293 dev/ntb/if_ntb/if_ntb.c optional if_ntb 294 dev/ntb/ntb_transport.c optional if_ntb 295 dev/ntb/ntb.c optional if_ntb | ntb_hw 296 dev/ntb/ntb_if.m optional if_ntb | ntb_hw 297 dev/ntb/ntb_hw/ntb_hw.c optional ntb_hw
|
| /freebsd-10-stable/sys/dev/ntb/if_ntb/ |
| D | if_ntb.c | 516 static DEFINE_CLASS_0(ntb, ntb_net_driver, ntb_net_methods,
|
| /freebsd-10-stable/sys/modules/ |
| D | Makefile | 779 _ntb= ntb
|
| /freebsd-10-stable/share/man/man4/ |
| D | Makefile | 830 _ntb.4= ntb.4
|