Home
last modified time | relevance | path

Searched refs:did (Results 1 – 25 of 179) sorted by relevance

12345678

/titanic_50/usr/src/uts/intel/io/pciex/
H A Dpcie_nb5000.h36 #define INTEL_NB5000_PCIE_DEV_ID(did) (((did) >= 0x3600 && (did) <= 0x360a) || \ argument
37 ((did) == 0x25d8 || (did) == 0x25d4 || (did) == 0x25c0 || \
38 (did) == 0x25d0 || ((did) >= 0x25e2 && (did) <= 0x25e7)) || \
39 ((did) >= 0x25f7 && (did) <= 0x25fa) || \
40 (did) == 0x4000 || (did) == 0x4001 || (did) == 0x4003 || \
41 ((did) >= 0x4021 && (did) <= 0x402e))
43 #define INTEL_NB5100_PCIE_DEV_ID(did) (((did) >= 0x65e2 && (did) <= 0x65e7) || \ argument
44 ((did) >= 0x65f7 && (did) <= 0x65fa))
46 #define INTEL_NB5500_PCIE_DEV_ID(did) (((did) >= 0x3408 && (did) <= 0x3411) || \ argument
47 (did) == 0x3420 || (did) == 0x3403)
[all …]
H A Dpcie_nvidia.h55 #define NVIDIA_CK804_LPC2PCI_DEVICE_ID(did) \ argument
56 (((did) == NVIDIA_CK804_DEFAULT_ISA_BRIDGE_DEVID) || \
57 ((did) == NVIDIA_CK804_PRO_ISA_BRIDGE_DEVID) || \
58 ((did) == NVIDIA_CK804_SLAVE_ISA_BRIDGE_DEVID))
82 #define NVIDIA_C51_DEVICE_ID(did) \ argument
83 (((did) == NVIDIA_C51_DEVICE_ID_XVR16) || \
84 ((did) == NVIDIA_C51_DEVICE_ID_XVR1_0) || \
85 ((did) == NVIDIA_C51_DEVICE_ID_XVR1_1))
98 #define NVIDIA_MCP55_DEVICE_ID(did) \ argument
99 (((did) == NVIDIA_MCP55_DEVICE_ID_XVR4) || \
[all …]
H A Dpcieb_x86.c460 uint16_t vid, did; in pcieb_intel_serr_workaround() local
473 did = bus_p->bus_dev_ven_id >> 16; in pcieb_intel_serr_workaround()
477 vid, did, rid, bdf); in pcieb_intel_serr_workaround()
482 (did >= tbl->device_id_low) && in pcieb_intel_serr_workaround()
483 (did <= tbl->device_id_high) && in pcieb_intel_serr_workaround()
582 uint16_t vid, did; in pcieb_intel_mps_workaround() local
587 did = bus_p->bus_dev_ven_id >> 16; in pcieb_intel_mps_workaround()
589 if ((vid == INTEL_VENDOR_ID) && (INTEL_NB5000_PCIE_DEV_ID(did) || in pcieb_intel_mps_workaround()
590 INTEL_NB5100_PCIE_DEV_ID(did))) { in pcieb_intel_mps_workaround()
/titanic_50/usr/src/uts/i86pc/sys/
H A Dpci_cfgacc_x86.h52 #define IS_BAD_AMD_NTBRIDGE(vid, did) \ argument
54 (((did) == AMD_HT_NTBRIDGE_DID) || \
55 ((did) == AMD_AM_NTBRIDGE_DID) || \
56 ((did) == AMD_DC_NTBRIDGE_DID) || \
57 ((did) == AMD_MC_NTBRIDGE_DID)))
59 #define IS_K10_AMD_NTBRIDGE(vid, did) \ argument
61 (((did) == AMD_K10_NTBRIDGE_DID_0) || \
62 ((did) == AMD_K10_NTBRIDGE_DID_1) || \
63 ((did) == AMD_K10_NTBRIDGE_DID_2) || \
64 ((did) == AMD_K10_NTBRIDGE_DID_3) || \
[all …]
/titanic_50/usr/src/lib/fm/topo/modules/common/pcibus/
H A Ddid.c255 did_physlot(did_t *did) in did_physlot() argument
257 assert(did != NULL); in did_physlot()
258 return (did->dp_physlot); in did_physlot()
262 did_physlot_exists(did_t *did) in did_physlot_exists() argument
264 assert(did != NULL); in did_physlot_exists()
265 return ((did->dp_physlot >= 0) || (did->dp_nslots > 0)); in did_physlot_exists()
468 did_board(did_t *did) in did_board() argument
470 assert(did != NULL); in did_board()
471 return (did->dp_board); in did_board()
475 did_bridge(did_t *did) in did_bridge() argument
[all …]
H A Ddid_impl.h63 struct did { struct
64 struct did *dp_next; /* for chaining in a hash bucket */ argument
65 struct did *dp_link; /* for chaining to related did_t */ argument
66 struct did *dp_chain; /* for chaining to another chain of did_ts */ argument
/titanic_50/usr/src/lib/fm/topo/modules/i86pc/x86pi/
H A Dx86pi_hostbridge.c100 did_t *did; in pciex_process() local
107 if ((did = did_create(mod, rcn, topo_node_instance(tn_bb), in pciex_process()
111 did_markrc(did); in pciex_process()
116 (void) did_props_set(tn_hbr, did, ExHB_common_props, ExHB_propcnt - 2); in pciex_process()
143 if (did_props_set(tn_rc, did, RC_common_props, RC_propcnt - 2) < 0) { in pciex_process()
159 0, MAX_HB_BUSES, did)); in pciex_process()
165 did_t *did; in pci_process() local
168 if ((did = did_create(mod, bn, topo_node_instance(tn_bb), in pci_process()
175 (void) did_props_set(tn_hbr, did, HB_common_props, HB_propcnt - 2); in pci_process()
185 0, MAX_HB_BUSES, did)); in pci_process()
/titanic_50/usr/src/uts/common/io/fibre-channel/fca/emlxs/
H A Demlxs_node.c378 emlxs_node_match_did(emlxs_port_t *port, NODELIST *ndlp, uint32_t did) in emlxs_node_match_did() argument
384 if (ndlp->nlp_DID == did) in emlxs_node_match_did()
390 mydid.un.word = port->did; in emlxs_node_match_did()
395 ndid.un.word = did; in emlxs_node_match_did()
401 odid.un.word = did; in emlxs_node_match_did()
412 ndid.un.word = did; in emlxs_node_match_did()
475 emlxs_node_find_did(emlxs_port_t *port, uint32_t did, uint32_t lock) in emlxs_node_find_did() argument
482 if ((did == 0) && (!(hba->flag & FC_LOOPBACK_MODE))) { in emlxs_node_find_did()
486 if (did & 0xff000000) { in emlxs_node_find_did()
491 if (did == BCAST_DID) { in emlxs_node_find_did()
[all …]
H A Demlxs_diag.c134 emlxs_diag_echo_run(emlxs_port_t *port, uint32_t did, uint32_t pattern) in emlxs_diag_echo_run() argument
151 if (did == 0) { in emlxs_diag_echo_run()
152 did = port->did; in emlxs_diag_echo_run()
156 if ((hba->state < FC_LINK_UP) || (port->did == 0)) { in emlxs_diag_echo_run()
164 ndlp = emlxs_node_find_did(port, port->did, 1); in emlxs_diag_echo_run()
190 pkt->pkt_cmd_fhdr.d_id = did; in emlxs_diag_echo_run()
192 pkt->pkt_cmd_fhdr.s_id = port->did; in emlxs_diag_echo_run()
267 "value %02x should be %02x.", did, length, i, in emlxs_diag_echo_run()
279 did, length, pattern_buffer[0] & 0xff, in emlxs_diag_echo_run()
H A Demlxs_els.c94 uint32_t did; in emlxs_els_handle_event() local
134 did = LE_SWAP24_LO(pkt->pkt_cmd_fhdr.d_id); in emlxs_els_handle_event()
225 emlxs_elscmd_xlate(command), did); in emlxs_els_handle_event()
244 ndlp = emlxs_node_find_did(port, did, 1); in emlxs_els_handle_event()
256 emlxs_elscmd_xlate(command), did, in emlxs_els_handle_event()
262 emlxs_elscmd_xlate(command), did, in emlxs_els_handle_event()
269 emlxs_elscmd_xlate(command), did, in emlxs_els_handle_event()
279 ndlp = emlxs_node_find_did(port, did, 1); in emlxs_els_handle_event()
301 ndlp = emlxs_node_find_did(port, did, 1); in emlxs_els_handle_event()
321 did, 1); in emlxs_els_handle_event()
[all …]
/titanic_50/usr/src/uts/common/fs/nfs/
H A Dnfs_sys.c375 uint_t did; in nfssys() local
382 if (copyin(arg, &did, sizeof (did))) in nfssys()
384 mountd_args(did); in nfssys()
390 uint_t did; in nfssys() local
397 if (copyin(arg, &did, sizeof (did))) in nfssys()
399 nfscmd_args(did); in nfssys()
/titanic_50/usr/src/cmd/fm/modules/sun4v/etm/
H A Detm_filter.c151 uint64_t did; /* domain id */ in etm_update_prc() local
158 LDOM_RSRC_PCI, &virt_cfg_handle, name, MAX_LDOM_NAME, &did); in etm_update_prc()
164 prc->prc_did = did; in etm_update_prc()
181 int name_size, uint64_t *did) in etm_filter_find_ldom_id() argument
248 *did = prc->prc_did; in etm_filter_find_ldom_id()
271 etm_filter_find_ldom_name(fmd_hdl_t *hdl, uint64_t did, char *name, in etm_filter_find_ldom_name() argument
288 if (prc->prc_status == 0 && prc->prc_did == did) { in etm_filter_find_ldom_name()
H A Detm_filter.h59 int name_size, uint64_t *did);
60 int etm_filter_find_ldom_name(fmd_hdl_t *hdl, uint64_t did, char *name,
/titanic_50/usr/src/uts/common/os/
H A Dcpu_pm.c322 id_t did; in cpupm_domain_init() local
330 did = cpupm_domain_id(cp, type); in cpupm_domain_init()
331 dom = cpupm_domain_find(did, type); in cpupm_domain_init()
333 dom = cpupm_domain_create(did, type); in cpupm_domain_init()
674 id_t did; in cpupm_redefine_max_activepwr_state() local
679 did = cpupm_domain_id(cp, type); in cpupm_redefine_max_activepwr_state()
681 dom = cpupm_domain_find(did, type); in cpupm_redefine_max_activepwr_state()
684 dom = cpupm_domain_find(did, type); in cpupm_redefine_max_activepwr_state()
/titanic_50/usr/src/uts/common/syscall/
H A Dsidsys.c86 idmap_reg(int did) in idmap_reg() argument
95 dh = door_ki_lookup(did); in idmap_reg()
107 idmap_unreg(int did) in idmap_unreg() argument
109 door_handle_t dh = door_ki_lookup(did); in idmap_unreg()
/titanic_50/usr/src/uts/common/fs/autofs/
H A Dauto_sys.c69 uint_t did; in autofssys() local
85 if (copyin((uint_t *)arg, &did, sizeof (uint_t))) in autofssys()
91 fngp->fng_autofs_daemon_dh = door_ki_lookup(did); in autofssys()
/titanic_50/usr/src/lib/libproc/common/
H A Dpr_door.c40 pr_door_info(struct ps_prochandle *Pr, int did, door_info_t *di) in pr_door_info() argument
48 return (door_info(did, di)); in pr_door_info()
50 adp->arg_value = did; in pr_door_info()
/titanic_50/usr/src/uts/intel/io/intel_nhm/
H A Dnhm_init.c283 uint32_t did; in init_dimms() local
290 did = CPU_ID_RD(i); in init_dimms()
291 if (did != NHM_EP_CPU && did != NHM_WS_CPU && in init_dimms()
292 did != NHM_JF_CPU && did != NHM_WM_CPU) { in init_dimms()
/titanic_50/usr/src/cmd/iscsid/
H A Discsid.c86 static boolean_t discovery_event_wait(int did);
566 int did in get_luns_count() argument
584 did, in get_luns_count()
626 int did in discovery_event_wait() argument
649 did, in discovery_event_wait()
664 tmp = get_luns_count(did); in discovery_event_wait()
/titanic_50/usr/src/cmd/prtdiag/i386/
H A Dsmbios.c208 long vid, did; in do_slot_mapping_cb() local
211 did = strtol(didstr, NULL, 16); in do_slot_mapping_cb()
213 did >= 0 && did <= UINT16_MAX) { in do_slot_mapping_cb()
216 pdev = pcidb_lookup_device(prt_php, vid, did); in do_slot_mapping_cb()
/titanic_50/usr/src/lib/libnsl/rpc/
H A Dclnt_door.c86 int did; in clnt_door_create() local
94 if ((did = open(rendezvous, O_RDONLY, 0)) < 0) { in clnt_door_create()
101 if (door_info(did, &info) < 0 || (info.di_attributes & DOOR_REVOKED)) { in clnt_door_create()
102 (void) close(did); in clnt_door_create()
140 cu->cu_fd = did; in clnt_door_create()
169 (void) close(did); in clnt_door_create()
H A Dsvc_door.c320 int did = -1; in svc_door_create() local
371 did = door_create(door_server, (void *)xprt, DOOR_REFUSE_DESC); in svc_door_create()
372 if (did < 0) { in svc_door_create()
378 if (fattach(did, rendezvous) < 0) { in svc_door_create()
380 fattach(did, rendezvous) < 0) { in svc_door_create()
418 xprt->xp_fd = did; in svc_door_create()
431 if (did >= 0) in svc_door_create()
432 (void) door_revoke(did); in svc_door_create()
/titanic_50/usr/src/cmd/mdb/common/modules/mr_sas/
H A Dmr_sas.c110 uint16_t vid, did, svid, sid; in display_deviceinfo() local
113 did = m->device_id; in display_deviceinfo()
123 vid, did, svid, sid); in display_deviceinfo()
/titanic_50/usr/src/cmd/dtrace/test/tst/common/pragma/
H A Dtst.temporal.ksh89 echo $tst: begin probe did not fire
96 echo $tst: end probe did not fire
/titanic_50/usr/src/uts/i86pc/io/
H A Dimmu_regs.c155 immu_regs_iotlb_psi(immu_t *immu, uint_t did, uint64_t dvma, uint_t snpages, in immu_regs_iotlb_psi() argument
168 immu_regs_iotlb_dsi(immu, did, iwp); in immu_regs_iotlb_psi()
196 iotlb_flush(immu, did, dvma, am, hint, IOTLB_PSI); in immu_regs_iotlb_psi()
204 iotlb_flush(immu, did, 0, 0, 0, IOTLB_DSI); in immu_regs_iotlb_psi()
669 uint16_t sid, uint_t did, immu_context_inv_t type) in context_flush() argument
680 | CCMD_INV_DID(did) in context_flush()
685 | CCMD_INV_DID(did); in context_flush()

12345678