/src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/ |
omap34xx.dtsi | 12 #include <dt-bindings/media/omap3-isp.h> 93 isp: isp@480bc000 { label 94 compatible = "ti,omap3-isp";
|
omap36xx.dtsi | 12 #include <dt-bindings/media/omap3-isp.h> 125 isp: isp@480bc000 { label 126 compatible = "ti,omap3-isp";
|
/src/sys/arch/x86/x86/ |
x86_softintr.c | 226 struct intrsource *isp; local in function:x86_init_preempt 228 isp = kmem_zalloc(sizeof(*isp), KM_SLEEP); 229 isp->is_recurse = Xrecurse_preempt; 230 isp->is_resume = Xresume_preempt; 233 isp->is_handlers = &fake_preempt_intrhand; 234 isp->is_pic = &softintr_pic; 235 ci->ci_isources[SIR_PREEMPT] = isp; 248 struct intrsource *isp; local in function:softint_init_md 254 isp = kmem_zalloc(sizeof(*isp), KM_SLEEP) [all...] |
intr.c | 364 struct intrsource *isp; local in function:intr_get_io_intrsource 368 SIMPLEQ_FOREACH(isp, &io_interrupt_sources, is_list) { 369 KASSERT(isp->is_intrid != NULL); 370 if (strncmp(intrid, isp->is_intrid, INTRIDBUF - 1) == 0) 371 return isp; 384 struct intrsource *isp; local in function:intr_allocate_io_intrsource 392 isp = kmem_zalloc(sizeof(*isp), KM_SLEEP); 394 isp->is_saved_evcnt = pep; 399 strlcpy(isp->is_intrid, intrid, sizeof(isp->is_intrid)) 435 struct intrsource *isp; local in function:intr_free_io_intrsource 459 struct intrsource *isp; local in function:intr_allocate_slot_cpu 524 struct intrsource *isp; local in function:intr_allocate_slot 644 struct intrsource *isp; local in function:intr_source_free 940 struct intrsource *isp, *nisp; local in function:intr_establish_xname 1274 struct intrsource *isp; local in function:intr_disestablish 1407 struct intrsource *isp; local in function:cpu_intr_init 1497 struct intrsource *isp; local in function:intr_printconfig 1585 struct intrsource *isp; local in function:intr_redistribute_xc_t 1609 struct intrsource *isp; local in function:intr_redistribute_xc_s1 1662 struct intrsource *isp; local in function:intr_redistribute 1870 struct intrsource *isp; local in function:intr_deactivate_xcall 2090 struct intrsource *isp; local in function:intr_get_handler 2105 struct intrsource *isp; local in function:x86_intr_get_count 2161 struct intrsource *isp; local in function:x86_intr_get_devname 2184 struct intrsource *isp; local in function:interrupt_get_count 2201 struct intrsource *isp; local in function:interrupt_get_assigned 2236 struct intrsource *isp; local in function:interrupt_get_devname 2255 struct intrsource *isp; local in function:intr_distribute_locked 2324 struct intrsource *isp; local in function:interrupt_construct_intrids [all...] |
/src/sys/arch/x86/isa/ |
isa_machdep.c | 124 struct intrsource *isp; local in function:isa_intr_alloc 149 isp = ci->ci_isources[i]; 150 if (isp == NULL) { 157 switch(isp->is_type) { 160 if (type != isp->is_type) 171 for (p = &isp->is_handlers, tmp = 0; (q = *p) != NULL;
|
/src/sys/arch/x86/pci/ |
pci_intr_machdep.c | 441 struct intrsource *isp; local in function:pci_intx_alloc 460 isp = intr_allocate_io_intrsource(intrstr); 462 if (isp == NULL) {
|
pci_msi_machdep.c | 95 struct intrsource *isp; local in function:pci_msi_alloc_vectors 115 isp = intr_allocate_io_intrsource(intrstr); 116 if (isp == NULL) {
|
/src/sys/dev/sbus/ |
isp_sbus.c | 3 * SBus specific probe and attach routines for Qlogic ISP SCSI adapters. 63 #include <dev/microcode/isp/asm_sbus.h> 111 strcmp("SUNW,isp", sa->sa_name) == 0 || 112 strcmp("QLGC,isp", sa->sa_name) == 0); 125 ispsoftc_t *isp = &sbc->sbus_isp; local in function:isp_sbus_attach 127 isp->isp_osinfo.dev = self; 131 isp->isp_nchan = isp->isp_osinfo.adapter.adapt_nchannels = 1; 188 isp->isp_mdvec = &sbc->sbus_mdvec; 189 isp->isp_bustype = ISP_BT_SBUS 277 ispsoftc_t *isp = arg; local in function:isp_sbus_intr [all...] |
/src/sys/arch/macppc/pci/ |
pci_machdep.c | 181 pcireg_t isp, reg; local in function:fixpci 186 * look at 00:0d:00 for a Qlogic ISP 1020 to 190 isp = pci_conf_read(pc, tag_isp, PCI_ID_REG); 191 if ((PCI_VENDOR(isp) == PCI_VENDOR_QLOGIC) && 192 (PCI_PRODUCT(isp) == PCI_PRODUCT_QLOGIC_ISP1020)) {
|
/src/sys/dev/usb/ |
uirda.c | 792 u_int isp; local in function:uirda_get_speeds 801 isp = 0; 802 if (usp & UI_BR_4000000) isp |= IRDA_SPEED_4000000; 803 if (usp & UI_BR_1152000) isp |= IRDA_SPEED_1152000; 804 if (usp & UI_BR_576000) isp |= IRDA_SPEED_576000; 805 if (usp & UI_BR_115200) isp |= IRDA_SPEED_115200; 806 if (usp & UI_BR_57600) isp |= IRDA_SPEED_57600; 807 if (usp & UI_BR_38400) isp |= IRDA_SPEED_38400; 808 if (usp & UI_BR_19200) isp |= IRDA_SPEED_19200; 809 if (usp & UI_BR_9600) isp |= IRDA_SPEED_9600 [all...] |
ehci.c | 4101 struct ehci_soft_islot *isp; local in function:ehci_device_setintr 4115 isp = &sc->sc_islots[islot]; 4117 ehci_add_qh(sc, sqh, isp->sqh); 4263 struct ehci_soft_islot *isp; local in function:ehci_device_intr_close 4267 isp = &sc->sc_islots[epipe->sqh->islot]; 4268 ehci_close_pipe(pipe, isp->sqh);
|
/src/sys/dev/ic/ |
isp_netbsd.c | 91 isp_attach(struct ispsoftc *isp) 93 device_t self = isp->isp_osinfo.dev; 96 isp->isp_state = ISP_RUNSTATE; 98 isp->isp_osinfo.adapter.adapt_dev = self; 99 isp->isp_osinfo.adapter.adapt_openings = isp->isp_maxcmds; 100 isp->isp_osinfo.loop_down_limit = 300; 106 isp->isp_osinfo.adapter.adapt_max_periph = uimin(isp->isp_maxcmds, 255); 107 isp->isp_osinfo.adapter.adapt_ioctl = ispioctl 165 struct ispsoftc *isp = device_private(self); local in function:isp_config_interrupts 210 struct ispsoftc *isp = device_private(chan->chan_adapter->adapt_dev); local in function:ispioctl 702 struct ispsoftc *isp = device_private(chan->chan_adapter->adapt_dev); local in function:isprequest 786 struct ispsoftc *isp = XS_ISP(xs); local in function:isp_done 823 struct ispsoftc *isp = XS_ISP(xs); local in function:isp_dog 923 ispsoftc_t *isp = arg; local in function:isp_gdt 976 ispsoftc_t *isp = arg; local in function:isp_ldt 1044 ispsoftc_t *isp = arg; local in function:isp_fc_worker [all...] |
isp.c | 1 /* $NetBSD: isp.c,v 1.135 2021/12/12 13:05:14 andvar Exp $ */ 4 * code for the Qlogic ISP SCSI adapters. 46 __KERNEL_RCSID(0, "$NetBSD: isp.c,v 1.135 2021/12/12 13:05:14 andvar Exp $"); 52 #include <dev/isp/isp_freebsd.h> 69 isp_prt(isp, ISP_LOGSANCFG, \ 160 isp_reset(ispsoftc_t *isp, int do_load_defaults) 168 isp->isp_state = ISP_NILSTATE; 169 if (isp->isp_dead) { 170 isp_shutdown(isp); 171 ISP_DISABLE_INTS(isp); 4189 ispsoftc_t *isp; local in function:isp_start [all...] |
/src/sys/dev/pci/ |
isp_pci.c | 32 * PCI specific probe and attach routines for Qlogic ISP SCSI adapters. 85 #include <dev/microcode/isp/asm_1040.h> 92 #include <dev/microcode/isp/asm_1080.h> 99 #include <dev/microcode/isp/asm_12160.h> 106 #include <dev/microcode/isp/asm_2100.h> 113 #include <dev/microcode/isp/asm_2200.h> 120 #include <dev/microcode/isp/asm_2300.h> 126 #include <dev/microcode/isp/asm_2322.h> 137 #include <dev/microcode/isp/asm_2400.h> 138 #include <dev/microcode/isp/asm_2500.h 486 struct ispsoftc *isp = &pcs->pci_isp; local in function:isp_pci_attach 1396 struct ispsoftc *isp = arg; local in function:isp_pci_intr [all...] |
/src/sys/external/bsd/ipf/netinet/ |
ip_state.c | 2627 ipstate_t *is, **isp; local in function:ipf_checkicmpmatchingstate 2777 for (isp = &softs->ipf_state_table[hv]; 2778 ((is = *isp) != NULL); ) { 2779 isp = &is->is_hnext; 2808 for (isp = &softs->ipf_state_table[hv]; ((is = *isp) != NULL); ) { 2809 isp = &is->is_hnext; 2914 ipstate_t **isp; local in function:ipf_ipsmove 2924 isp = is->is_phnext; 2926 is->is_hnext->is_phnext = isp; 2973 ipstate_t *is, **isp; local in function:ipf_state_lookup 3743 ipstate_t *is, **isp; local in function:ipf_state_flush 4369 ipstate_t *is, **isp; local in function:ipf_checkicmp6matchingstate [all...] |
/src/usr.bin/telnet/ |
telnet.c | 803 long osp, isp; 807 TerminalSpeeds(&isp, &osp); 810 TELOPT_TSPEED, TELQUAL_IS, osp, isp, IAC, SE); 801 long osp, isp; local in function:suboption
|