Home
last modified time | relevance | path

Searched refs:cis (Results 1 – 25 of 39) sorted by relevance

12

/openbmc/linux/drivers/net/wireless/intersil/hostap/
H A Dhostap_plx.c342 u8 *cis; in prism2_plx_check_cis() local
348 if (cis == NULL) in prism2_plx_check_cis()
367 switch (cis[pos]) { in prism2_plx_check_cis()
369 if (cis[pos + 1] < 2) in prism2_plx_check_cis()
385 kfree(cis); in prism2_plx_check_cis()
391 if (cis[pos + 1] < 4) in prism2_plx_check_cis()
393 manfid1 = cis[pos + 2] + (cis[pos + 3] << 8); in prism2_plx_check_cis()
394 manfid2 = cis[pos + 4] + (cis[pos + 5] << 8); in prism2_plx_check_cis()
400 pos += cis[pos + 1] + 2; in prism2_plx_check_cis()
408 kfree(cis); in prism2_plx_check_cis()
[all …]
/openbmc/linux/net/bluetooth/
H A Dhci_conn.c731 u8 cis; member
1846 cis = &pdu.cis[pdu.cp.num_cis++]; in set_cig_params_sync()
1910 qos->ucast.cis = data.cis; in hci_le_set_cig_params()
1933 if (!cis) { in hci_bind_cis()
1936 return cis; in hci_bind_cis()
1940 cis->iso_qos.ucast.cis = BT_ISO_QOS_CIS_UNSET; in hci_bind_cis()
1944 return cis; in hci_bind_cis()
1949 return cis; in hci_bind_cis()
1989 return cis; in hci_bind_cis()
2327 return cis; in hci_connect_cis()
[all …]
H A Dhci_event.c3846 cp->cis[i].cis_id); in hci_cc_le_set_cig_params()
4270 handle = __le16_to_cpu(cp->cis[i].cis_handle); in hci_cs_le_create_cis()
6749 struct hci_conn *acl, *cis; in hci_le_cis_req_evt() local
6771 cis = hci_conn_hash_lookup_handle(hdev, cis_handle); in hci_le_cis_req_evt()
6772 if (!cis) { in hci_le_cis_req_evt()
6773 cis = hci_conn_add(hdev, ISO_LINK, &acl->dst, HCI_ROLE_SLAVE, in hci_le_cis_req_evt()
6775 if (IS_ERR(cis)) { in hci_le_cis_req_evt()
6781 cis->iso_qos.ucast.cig = ev->cig_id; in hci_le_cis_req_evt()
6782 cis->iso_qos.ucast.cis = ev->cis_id; in hci_le_cis_req_evt()
6787 cis->state = BT_CONNECT2; in hci_le_cis_req_evt()
[all …]
H A Dhci_sync.c6317 struct hci_cis cis[0x1f]; in hci_le_create_cis_sync() member
6383 struct hci_cis *cis = &cmd.cis[cmd.cp.num_cis]; in hci_le_create_cis_sync() local
6390 cis->acl_handle = cpu_to_le16(conn->parent->handle); in hci_le_create_cis_sync()
6391 cis->cis_handle = cpu_to_le16(conn->handle); in hci_le_create_cis_sync()
6394 if (cmd.cp.num_cis >= ARRAY_SIZE(cmd.cis)) in hci_le_create_cis_sync()
6408 sizeof(cmd.cp) + sizeof(cmd.cis[0]) * in hci_le_create_cis_sync()
/openbmc/linux/drivers/pcmcia/
H A Dcistpl.c309 if (cis->addr == addr && cis->len == len && cis->attr == attr) { 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()
341 if (cis->addr == addr && cis->len == len && cis->attr == attr) { in remove_cis_cache()
343 kfree(cis); in remove_cis_cache()
363 list_del(&cis->node); in destroy_cis_cache()
364 kfree(cis); in destroy_cis_cache()
387 int len = cis->len; in verify_cis_cache()
[all …]
/openbmc/linux/drivers/mmc/core/
H A Dsdio_cis.c98 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()
411 func->vendor = func->card->cis.vendor; in sdio_read_func_cis()
412 func->device = func->card->cis.device; in sdio_read_func_cis()
H A Dcard.h195 card->cis.vendor = 0x104c; in wl1251_quirk()
196 card->cis.device = 0x9066; in wl1251_quirk()
197 card->cis.blksize = 512; in wl1251_quirk()
198 card->cis.max_dtr = 24000000; in wl1251_quirk()
H A Dsdio.c31 MMC_DEV_ATTR(vendor, "0x%04x\n", card->cis.vendor);
32 MMC_DEV_ATTR(device, "0x%04x\n", card->cis.device);
126 func->vendor = func->card->cis.vendor; in sdio_init_func()
127 func->device = func->card->cis.device; in sdio_init_func()
128 func->max_blksize = func->card->cis.blksize; in sdio_init_func()
455 max_dtr = card->cis.max_dtr; in mmc_sdio_get_max_clock()
795 mmc_set_clock(host, card->cis.max_dtr); in mmc_sdio_init_card()
832 if (card->cis.vendor == oldcard->cis.vendor && in mmc_sdio_init_card()
833 card->cis.device == oldcard->cis.device) { in mmc_sdio_init_card()
H A Dquirks.h223 f->cis_vendor != card->cis.vendor) in mmc_fixup_device()
226 f->cis_device != card->cis.device) in mmc_fixup_device()
H A Dbus.c90 card->cis.vendor, card->cis.device); in mmc_bus_uevent()
H A Dsd.c733 MMC_DEV_ATTR(vendor, "0x%04x\n", card->cis.vendor);
734 MMC_DEV_ATTR(device, "0x%04x\n", card->cis.device);
/openbmc/linux/Documentation/devicetree/bindings/media/
H A Dsamsung,s5c73m3.yaml49 vddio-cis-supply:
99 vddio-cis-supply: false
112 - vddio-cis-supply
138 vddio-cis-supply = <&ldo9_reg>;
/openbmc/qemu/hw/ide/
H A Dmicrodrive.c139 return pcc->cis[at]; in md_attr_read()
544 md->attr_base = pcc->cis[0x74] | (pcc->cis[0x76] << 8); in dscm1xxxx_attach()
583 pcc->cis = dscm1xxxx_cis; in dscm1xxxx_class_init()
/openbmc/linux/drivers/ata/
H A Dpata_pdc202xx_old.c30 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()
/openbmc/linux/drivers/media/pci/pluto2/
H A Dpluto2.c553 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()
/openbmc/qemu/include/hw/
H A Dpcmcia.h33 const uint8_t *cis; member
/openbmc/linux/Documentation/
H A Ddontdiff7 *.cis
/openbmc/linux/drivers/net/wireless/broadcom/brcm80211/brcmfmac/
H A Dsdio.h262 char cis[512]; /* 0x400-0x5ff, rev6 */ member
/openbmc/linux/include/linux/mmc/
H A Dcard.h326 struct sdio_cis cis; /* common tuple info */ member
/openbmc/linux/include/net/bluetooth/
H A Dbluetooth.h179 __u8 cis; member
/openbmc/openbmc/poky/meta/files/common-licenses/
H A DLiLiQ-P-1.116 …eur et sa documentation, pour laquelle le titulaire du droit d'auteur a précisé qu'elle est sujett…
H A DLAL-1.245 …– joindre aux copies, cette licence à l’identique, ou indiquer précisément où se trouve la licence…
H A DLAL-1.341 …1. joindre aux copies cette licence à l’identique ou indiquer précisément où se trouve la licence ;
H A DLiLiQ-Rplus-1.116 …eur et sa documentation, pour laquelle le titulaire du droit d'auteur a précisé qu'elle est sujett…
H A DLiLiQ-R-1.116 …eur et sa documentation, pour laquelle le titulaire du droit d'auteur a précisé qu'elle est sujett…

12