/drivers/iommu/intel/ |
D | pasid.c | 407 u16 did, u32 pasid) in pasid_cache_invalidation_with_pasid() argument 411 desc.qw0 = QI_PC_DID(did) | QI_PC_GRAN(QI_PC_PASID_SEL) | in pasid_cache_invalidation_with_pasid() 454 u16 did, pgtt; in intel_pasid_tear_down_entry() local 463 did = pasid_get_domain_id(pte); in intel_pasid_tear_down_entry() 471 pasid_cache_invalidation_with_pasid(iommu, did, pasid); in intel_pasid_tear_down_entry() 474 qi_flush_piotlb(iommu, did, pasid, 0, -1, 0); in intel_pasid_tear_down_entry() 476 iommu->flush.flush_iotlb(iommu, did, 0, 0, DMA_TLB_DSI_FLUSH); in intel_pasid_tear_down_entry() 489 u32 pasid, u16 did) in pasid_flush_caches() argument 495 pasid_cache_invalidation_with_pasid(iommu, did, pasid); in pasid_flush_caches() 496 qi_flush_piotlb(iommu, did, pasid, 0, -1, 0); in pasid_flush_caches() [all …]
|
D | iommu.h | 405 #define QI_IOTLB_DID(did) (((u64)did) << 16) argument 415 #define QI_CC_DID(did) (((u64)did) << 16) argument 427 #define QI_PC_DID(did) (((u64)did) << 16) argument 439 #define QI_EIOTLB_DID(did) (((u64)did) << 16) argument 521 void (*flush_context)(struct intel_iommu *iommu, u16 did, u16 sid, 523 void (*flush_iotlb)(struct intel_iommu *iommu, u16 did, u64 addr, 577 u16 did; /* Domain ids per IOMMU. Use u16 since member 750 return info->did; in domain_id_iommu() 815 void qi_flush_context(struct intel_iommu *iommu, u16 did, 817 void qi_flush_iotlb(struct intel_iommu *iommu, u16 did, u64 addr, [all …]
|
/drivers/staging/wlan-ng/ |
D | p80211types.h | 215 u32 did; member 222 u32 did; member 230 u32 did; member 238 u32 did; member 246 u32 did; member 254 u32 did; member 262 u32 did; member 270 u32 did; member 278 u32 did; member 286 u32 did; member
|
D | cfg80211.c | 74 u32 did, u32 data) in prism2_domibset_uint32() argument 81 mibitem->did = did; in prism2_domibset_uint32() 88 u32 did, u8 len, const u8 *data) in prism2_domibset_pstr32() argument 95 mibitem->did = did; in prism2_domibset_pstr32() 150 u32 did; in prism2_add_key() local 167 did = didmib_dot11smt_wepdefaultkeystable_key(key_index + 1); in prism2_add_key() 169 if (prism2_domibset_pstr32(wlandev, did, params->key_len, params->key)) in prism2_add_key() 209 u32 did; in prism2_del_key() local 221 did = didmib_dot11smt_wepdefaultkeystable_key(key_index + 1); in prism2_del_key() 222 result = prism2_domibset_pstr32(wlandev, did, 13, "0000000000000"); in prism2_del_key() [all …]
|
D | prism2mib.c | 63 u32 did; member 262 for (mib = mibtab; mib->did != 0; mib++) in prism2mgmt_mibset_mibget() 263 if (mib->did == mibitem->did && (mib->flag & which)) in prism2mgmt_mibset_mibget() 266 if (mib->did == 0) { in prism2mgmt_mibset_mibget() 648 switch (mib->did) { in prism2mib_priv() 673 netdev_err(wlandev->netdev, "Unhandled DID 0x%08x\n", mib->did); in prism2mib_priv()
|
D | prism2mgmt.h | 82 void prism2mgmt_get_grpaddr(u32 did, struct p80211pstrd *pstr, 84 int prism2mgmt_set_grpaddr(u32 did, 87 int prism2mgmt_get_grpaddr_index(u32 did);
|
D | prism2fw.c | 280 getmsg.mibattribute.did = DIDMSG_DOT11REQ_MIBGET_MIBATTRIBUTE; in prism2_fwapply() 282 getmsg.resultcode.did = DIDMSG_DOT11REQ_MIBGET_RESULTCODE; in prism2_fwapply() 286 item->did = DIDMIB_P2_NIC_PRISUPRANGE; in prism2_fwapply() 768 msg->pda.did = DIDMSG_P2REQ_READPDA_PDA; in read_cardpda() 771 msg->resultcode.did = DIDMSG_P2REQ_READPDA_RESULTCODE; in read_cardpda() 1000 rstmsg->enable.did = DIDMSG_P2REQ_RAMDL_STATE_ENABLE; in writeimage() 1001 rstmsg->exeaddr.did = DIDMSG_P2REQ_RAMDL_STATE_EXEADDR; in writeimage() 1002 rstmsg->resultcode.did = DIDMSG_P2REQ_RAMDL_STATE_RESULTCODE; in writeimage() 1013 rwrmsg->addr.did = DIDMSG_P2REQ_RAMDL_WRITE_ADDR; in writeimage() 1014 rwrmsg->len.did = DIDMSG_P2REQ_RAMDL_WRITE_LEN; in writeimage() [all …]
|
/drivers/pcmcia/ |
D | ds.c | 45 const struct pcmcia_device_id *did = p_drv->id_table; in pcmcia_check_driver() local 53 while (did && did->match_flags) { in pcmcia_check_driver() 55 if (!did->prod_id[i]) in pcmcia_check_driver() 58 hash = crc32(0, did->prod_id[i], strlen(did->prod_id[i])); in pcmcia_check_driver() 59 if (hash == did->prod_id_hash[i]) in pcmcia_check_driver() 64 "be 0x%x\n", p_drv->name, did->prod_id[i], in pcmcia_check_driver() 65 did->prod_id_hash[i], hash); in pcmcia_check_driver() 70 did++; in pcmcia_check_driver() 801 const struct pcmcia_device_id *did) in pcmcia_devmatch() argument 803 if (did->match_flags & PCMCIA_DEV_ID_MATCH_MANF_ID) { in pcmcia_devmatch() [all …]
|
/drivers/watchdog/ |
D | exar_wdt.c | 60 unsigned short did; member 291 priv->did, timeout, nowayout); in exar_wdt_probe() 302 unsigned short vid, did; in exar_detect() local 309 did = exar_sio_read16(config_port, EXAR_DID); in exar_detect() 313 (did == EXAR_DEV_382 || in exar_detect() 314 did == EXAR_DEV_384)) { in exar_detect() 325 did, config_port, base); in exar_detect() 327 return did; in exar_detect() 387 unsigned short did, rt_base = 0; in exar_wdt_init() local 389 did = exar_detect(sio_config_ports[i], in exar_wdt_init() [all …]
|
/drivers/gpu/drm/amd/display/dc/clk_mgr/dce100/ |
D | dce_clk_mgr.c | 79 int dentist_get_divider_from_did(int did) in dentist_get_divider_from_did() argument 81 if (did < DENTIST_BASE_DID_1) in dentist_get_divider_from_did() 82 did = DENTIST_BASE_DID_1; in dentist_get_divider_from_did() 83 if (did > DENTIST_MAX_DID) in dentist_get_divider_from_did() 84 did = DENTIST_MAX_DID; in dentist_get_divider_from_did() 86 if (did < DENTIST_BASE_DID_2) { in dentist_get_divider_from_did() 88 * (did - DENTIST_BASE_DID_1); in dentist_get_divider_from_did() 89 } else if (did < DENTIST_BASE_DID_3) { in dentist_get_divider_from_did() 91 * (did - DENTIST_BASE_DID_2); in dentist_get_divider_from_did() 92 } else if (did < DENTIST_BASE_DID_4) { in dentist_get_divider_from_did() [all …]
|
/drivers/scsi/libfc/ |
D | fc_elsct.c | 31 struct fc_seq *fc_elsct_send(struct fc_lport *lport, u32 did, in fc_elsct_send() argument 44 rc = fc_els_fill(lport, did, fp, op, &r_ctl, &fh_type); in fc_elsct_send() 47 rc = fc_ct_fill(lport, did, fp, op, &r_ctl, &fh_type, &did); in fc_elsct_send() 55 fc_fill_fc_hdr(fp, r_ctl, did, lport->port_id, fh_type, in fc_elsct_send()
|
/drivers/usb/cdns3/ |
D | drd.h | 17 __le32 did; member 61 __le32 did; member 83 #define OTG_CDNSP_CHECK_DID(did) (((did) & GENMASK(31, 8)) == 0x00040300) argument 86 #define OTG_CDNS3_CHECK_DID(did) (((did) & GENMASK(31, 8)) == 0x00040200) argument
|
/drivers/bcma/ |
D | main.c | 592 const struct bcma_device_id *did; in bcma_bus_match() local 594 for (did = adrv->id_table; did->manuf || did->id || did->rev; did++) { in bcma_bus_match() 595 if ((did->manuf == cid->manuf || did->manuf == BCMA_ANY_MANUF) && in bcma_bus_match() 596 (did->id == cid->id || did->id == BCMA_ANY_ID) && in bcma_bus_match() 597 (did->rev == cid->rev || did->rev == BCMA_ANY_REV) && in bcma_bus_match() 598 (did->class == cid->class || did->class == BCMA_ANY_CLASS)) in bcma_bus_match()
|
/drivers/media/pci/cx18/ |
D | cx18-av-vbi.c | 50 u8 did; member 252 int did, sdid, l, err = 0; in cx18_av_decode_vbi_line() local 259 (anc->did != sliced_vbi_did[0] && in cx18_av_decode_vbi_line() 260 anc->did != sliced_vbi_did[1])) { in cx18_av_decode_vbi_line() 265 did = anc->did; in cx18_av_decode_vbi_line() 296 vbi->is_second_field = err ? 0 : (did == sliced_vbi_did[1]); in cx18_av_decode_vbi_line()
|
/drivers/clk/ |
D | clk-renesas-pcie.c | 64 u8 did; member 293 unsigned int vid, did; in rs9_probe() local 334 ret = regmap_read(rs9->regmap, RS9_REG_DID, &did); in rs9_probe() 338 if (vid != RS9_REG_VID_IDT || did != rs9->chip_info->did) in rs9_probe() 341 vid, did, RS9_REG_VID_IDT, in rs9_probe() 342 rs9->chip_info->did); in rs9_probe() 387 .did = RS9_REG_DID_TYPE_FGV | 0x02, 393 .did = RS9_REG_DID_TYPE_FGV | 0x04,
|
/drivers/input/keyboard/ |
D | hil_kbd.c | 329 uint8_t did = kbd->idd[0]; in hil_dev_keyboard_setup() local 350 did, hil_language[did & HIL_IDD_DID_TYPE_KB_LANG_MASK]); in hil_dev_keyboard_setup() 356 uint8_t did = ptr->idd[0]; in hil_dev_pointer_setup() local 364 switch (did & HIL_IDD_DID_TYPE_MASK) { in hil_dev_pointer_setup() 410 if ((did & HIL_IDD_DID_ABS_TABLET_MASK) == HIL_IDD_DID_ABS_TABLET) in hil_dev_pointer_setup() 416 if ((did & HIL_IDD_DID_ABS_TSCREEN_MASK) == HIL_IDD_DID_ABS_TSCREEN) in hil_dev_pointer_setup() 419 if ((did & HIL_IDD_DID_REL_MOUSE_MASK) == HIL_IDD_DID_REL_MOUSE) in hil_dev_pointer_setup() 437 did, txt); in hil_dev_pointer_setup() 447 uint8_t did, *idd; in hil_dev_connect() local 503 did = dev->idd[0]; in hil_dev_connect() [all …]
|
/drivers/nfc/st21nfca/ |
D | dep.c | 65 u8 did; member 77 u8 did; member 89 u8 did; member 98 u8 did; member 106 u8 did; member 242 psl_res->did = psl_req->did; in st21nfca_tm_send_psl_res() 415 static void st21nfca_im_send_psl_req(struct nfc_hci_dev *hdev, u8 did, u8 bsi, in st21nfca_im_send_psl_req() argument 434 psl_req->did = did; in st21nfca_im_send_psl_req() 481 st21nfca_im_send_psl_req(info->hdev, atr_res->did, in st21nfca_im_recv_atr_res_cb() 529 atr_req->did = 0x0; in st21nfca_im_send_atr_req()
|
/drivers/gpu/drm/amd/amdgpu/ |
D | amdgpu_trace.h | 39 TP_PROTO(unsigned did, uint32_t reg, uint32_t value), 40 TP_ARGS(did, reg, value), 42 __field(unsigned, did) 47 __entry->did = did; 52 (unsigned long)__entry->did, 58 TP_PROTO(unsigned did, uint32_t reg, uint32_t value), 59 TP_ARGS(did, reg, value), 61 __field(unsigned, did) 66 __entry->did = did; 71 (unsigned long)__entry->did,
|
/drivers/net/wireless/atmel/ |
D | atmel_cs.c | 129 const struct pcmcia_device_id *did; in atmel_config() local 131 did = dev_get_drvdata(&link->dev); in atmel_config() 153 did ? did->driver_info : ATMEL_FW_TYPE_NONE, in atmel_config()
|
/drivers/rapidio/ |
D | rio-driver.c | 32 ((id->did == RIO_ANY_ID) || (id->did == rdev->did)) && in rio_match_device() 219 rdev->vid, rdev->did, rdev->asm_vid, rdev->asm_did)) in rio_uevent()
|
/drivers/gpu/drm/amd/display/dc/dce/ |
D | dce_clk_mgr.c | 99 int dentist_get_divider_from_did(int did) in dentist_get_divider_from_did() argument 101 if (did < DENTIST_BASE_DID_1) in dentist_get_divider_from_did() 102 did = DENTIST_BASE_DID_1; in dentist_get_divider_from_did() 103 if (did > DENTIST_MAX_DID) in dentist_get_divider_from_did() 104 did = DENTIST_MAX_DID; in dentist_get_divider_from_did() 106 if (did < DENTIST_BASE_DID_2) { in dentist_get_divider_from_did() 108 * (did - DENTIST_BASE_DID_1); in dentist_get_divider_from_did() 109 } else if (did < DENTIST_BASE_DID_3) { in dentist_get_divider_from_did() 111 * (did - DENTIST_BASE_DID_2); in dentist_get_divider_from_did() 112 } else if (did < DENTIST_BASE_DID_4) { in dentist_get_divider_from_did() [all …]
|
/drivers/iio/temperature/ |
D | tmp006.c | 184 int mid, did; in tmp006_check_identification() local 190 did = i2c_smbus_read_word_swapped(client, TMP006_DEVICE_ID); in tmp006_check_identification() 191 if (did < 0) in tmp006_check_identification() 194 return mid == TMP006_MANUFACTURER_MAGIC && did == TMP006_DEVICE_MAGIC; in tmp006_check_identification()
|
/drivers/video/fbdev/ |
D | offb.c | 361 const u32 *vid, *did; in offb_init_palette_hacks() local 363 did = of_get_property(pciparent, "device-id", NULL); in offb_init_palette_hacks() 365 if (vid && did && *vid == 0x1002 && in offb_init_palette_hacks() 366 ((*did >= 0x7100 && *did < 0x7800) || in offb_init_palette_hacks() 367 (*did >= 0x9400))) { in offb_init_palette_hacks() 637 u32 vid, did; in offb_init_nodriver() local 644 did = be32_to_cpup(didp); in offb_init_nodriver() 645 pdev = pci_get_device(vid, did, NULL); in offb_init_nodriver()
|
/drivers/scsi/lpfc/ |
D | lpfc_els.c | 165 struct lpfc_nodelist *ndlp, u32 did, in lpfc_prep_els_iocb() argument 186 if ((did == Fabric_DID) && in lpfc_prep_els_iocb() 265 lpfc_sli_prep_els_req_rsp(phba, elsiocb, vport, bmp, cmd_size, did, in lpfc_prep_els_iocb() 296 elscmd, did, elsiocb->iotag, in lpfc_prep_els_iocb() 1300 uint32_t tmo, did; in lpfc_issue_els_flogi() local 1416 did = vport->fc_myDID; in lpfc_issue_els_flogi() 1446 vport->fc_myDID = did; in lpfc_issue_els_flogi() 2013 u32 ulp_status, ulp_word4, did, iotag; in lpfc_cmpl_els_plogi() local 2021 did = get_job_els_rsp64_did(phba, cmdiocb); in lpfc_cmpl_els_plogi() 2032 ulp_status, ulp_word4, did); in lpfc_cmpl_els_plogi() [all …]
|
/drivers/usb/typec/tcpm/ |
D | tcpci_rt1711h.c | 60 u16 did; member 108 if (chip->did == RT1715_DID) { in rt1711h_init() 203 if (chip->did == RT1715_DID) in rt1711h_init_cc_params() 322 if (ret != chip->did) { in rt1711h_check_revision() 339 chip->did = (size_t)device_get_match_data(&client->dev); in rt1711h_probe()
|