/kernel/linux/linux-5.10/drivers/net/wireless/intersil/hostap/ |
D | hostap_plx.c | 343 u8 *cis; in prism2_plx_check_cis() local 348 cis = kmalloc(CIS_MAX_LEN, GFP_KERNEL); in prism2_plx_check_cis() 349 if (cis == NULL) in prism2_plx_check_cis() 354 cis[i] = readb(attr_mem + 2 * i); in prism2_plx_check_cis() 355 printk(KERN_DEBUG "%s: CIS: %6ph ...\n", dev_info, cis); in prism2_plx_check_cis() 364 while (pos < CIS_MAX_LEN - 1 && cis[pos] != CISTPL_END) { in prism2_plx_check_cis() 365 if (pos + 2 + cis[pos + 1] > CIS_MAX_LEN) in prism2_plx_check_cis() 368 switch (cis[pos]) { in prism2_plx_check_cis() 370 if (cis[pos + 1] < 2) in prism2_plx_check_cis() 372 rmsz = (cis[pos + 2] & 0x3c) >> 2; in prism2_plx_check_cis() [all …]
|
/kernel/linux/linux-5.10/drivers/pcmcia/ |
D | cistpl.c | 290 struct cis_cache_entry *cis; in read_cis_cache() local 308 list_for_each_entry(cis, &s->cis_cache, node) { in read_cis_cache() 309 if (cis->addr == addr && cis->len == len && cis->attr == attr) { in read_cis_cache() 310 memcpy(ptr, cis->cache, len); in read_cis_cache() 320 cis = kmalloc(sizeof(struct cis_cache_entry) + len, GFP_KERNEL); in read_cis_cache() 321 if (cis) { in read_cis_cache() 322 cis->addr = addr; in read_cis_cache() 323 cis->len = len; in read_cis_cache() 324 cis->attr = attr; in read_cis_cache() 325 memcpy(cis->cache, ptr, len); in read_cis_cache() [all …]
|
/kernel/linux/linux-5.10/drivers/mmc/core/ |
D | sdio_cis.c | 98 card->cis.vendor = vendor; in cistpl_manfid() 99 card->cis.device = device; in cistpl_manfid() 163 card->cis.blksize = buf[1] | (buf[2] << 8); in cistpl_funce_common() 166 card->cis.max_dtr = speed_val[(buf[3] >> 3) & 15] * in cistpl_funce_common() 405 func->vendor = func->card->cis.vendor; in sdio_read_func_cis() 406 func->device = func->card->cis.device; in sdio_read_func_cis()
|
D | sdio.c | 30 MMC_DEV_ATTR(vendor, "0x%04x\n", card->cis.vendor); 31 MMC_DEV_ATTR(device, "0x%04x\n", card->cis.device); 125 func->vendor = func->card->cis.vendor; in sdio_init_func() 126 func->device = func->card->cis.device; in sdio_init_func() 127 func->max_blksize = func->card->cis.blksize; in sdio_init_func() 440 max_dtr = card->cis.max_dtr; in mmc_sdio_get_max_clock() 779 mmc_set_clock(host, card->cis.max_dtr); in mmc_sdio_init_card() 816 if (card->cis.vendor == oldcard->cis.vendor && in mmc_sdio_init_card() 817 card->cis.device == oldcard->cis.device) { in mmc_sdio_init_card()
|
D | quirks.h | 162 (f->cis_vendor == card->cis.vendor || in mmc_fixup_device() 164 (f->cis_device == card->cis.device || in mmc_fixup_device()
|
D | bus.c | 99 card->cis.vendor, card->cis.device); in mmc_bus_uevent()
|
D | sd.c | 716 MMC_DEV_ATTR(vendor, "0x%04x\n", card->cis.vendor); 717 MMC_DEV_ATTR(device, "0x%04x\n", card->cis.device);
|
/kernel/linux/linux-5.10/drivers/ata/ |
D | pata_pdc202xx_old.c | 30 u16 cis; in pdc2026x_cable_detect() local 32 pci_read_config_word(pdev, 0x50, &cis); in pdc2026x_cable_detect() 33 if (cis & (1 << (10 + ap->port_no))) in pdc2026x_cable_detect()
|
/kernel/linux/linux-5.10/drivers/media/pci/pluto2/ |
D | pluto2.c | 553 u8 __iomem *cis; in pluto_read_serial() local 555 cis = pci_iomap(pdev, 1, 0); in pluto_read_serial() 556 if (!cis) in pluto_read_serial() 562 u32 val = readl(&cis[i]); in pluto_read_serial() 572 pci_iounmap(pdev, cis); in pluto_read_serial()
|
/kernel/linux/linux-5.10/Documentation/devicetree/bindings/media/ |
D | samsung-s5c73m3.txt | 21 - vddio-cis-supply : CIS I/O power supply (1.2V to 1.8V); 74 vddio-cis-supply = <&ldo9_reg>;
|
/kernel/linux/linux-5.10/include/linux/mmc/ |
D | card.h | 297 struct sdio_cis cis; /* common tuple info */ member
|
/kernel/linux/linux-5.10/Documentation/ |
D | dontdiff | 7 *.cis
|
/kernel/linux/linux-5.10/drivers/net/wireless/broadcom/brcm80211/brcmfmac/ |
D | sdio.h | 258 char cis[512]; /* 0x400-0x5ff, rev6 */ member
|
/kernel/linux/linux-5.10/drivers/mmc/host/ |
D | omap_hsmmc.c | 1532 card->cis.vendor = 0x104c; in omap_hsmmc_init_card() 1533 card->cis.device = 0x9066; in omap_hsmmc_init_card() 1534 card->cis.blksize = 512; in omap_hsmmc_init_card() 1535 card->cis.max_dtr = 24000000; in omap_hsmmc_init_card()
|
D | vub300.c | 1361 "vub_%04X%04X", card->cis.vendor, card->cis.device); in download_offload_pseudocode()
|
/kernel/linux/linux-5.10/include/net/bluetooth/ |
D | hci.h | 1853 struct hci_cis_params cis[]; member 1871 struct hci_cis cis[]; member
|
/kernel/linux/linux-5.10/drivers/usb/storage/ |
D | ene_ub6250.c | 387 struct ms_bootblock_cis cis; member 389 } cis; member
|
/kernel/linux/linux-5.10/drivers/net/wireless/rsi/ |
D | rsi_91x_sdio.c | 307 clock = card->cis.max_dtr; in rsi_reset_card()
|
/kernel/linux/linux-5.10/arch/arm/boot/dts/ |
D | exynos4412-midas.dtsi | 558 vddio-cis-supply = <&ldo9_reg>;
|
/kernel/linux/patches/linux-5.10/imx8mm_patch/patches/drivers/ |
D | 0030_linux_drivers_pci_misc_nvmem_of_mtd_mmc.patch | 2219 - card->cis.vendor, card->cis.device); 4112 -MMC_DEV_ATTR(vendor, "0x%04x\n", card->cis.vendor); 4113 -MMC_DEV_ATTR(device, "0x%04x\n", card->cis.device); 4224 -MMC_DEV_ATTR(vendor, "0x%04x\n", card->cis.vendor); 4225 -MMC_DEV_ATTR(device, "0x%04x\n", card->cis.device); 4514 - if (card->cis.vendor == oldcard->cis.vendor && 4515 - card->cis.device == oldcard->cis.device) { 4521 + int same = (card->cis.vendor == oldcard->cis.vendor && 4522 + card->cis.device == oldcard->cis.device);
|
/kernel/linux/linux-5.10/ |
D | CREDITS | 191 E: balasub@cis.ohio-state.edu 462 E: boyd@cis.ohio-state.edu
|
/kernel/linux/patches/linux-5.10/yangfan_patch/ |
D | drivers.patch | 42839 -MMC_DEV_ATTR(vendor, "0x%04x\n", card->cis.vendor); 42840 -MMC_DEV_ATTR(device, "0x%04x\n", card->cis.device); 43181 - if (card->cis.vendor == oldcard->cis.vendor && 43182 - card->cis.device == oldcard->cis.device) { 43189 + int same = (card->cis.vendor == oldcard->cis.vendor && 43190 + card->cis.device == oldcard->cis.device);
|