/openbmc/linux/drivers/net/wireless/intersil/hostap/ |
H A D | hostap_plx.c | 342 u8 *cis; in prism2_plx_check_cis() local 347 cis = kmalloc(CIS_MAX_LEN, GFP_KERNEL); in prism2_plx_check_cis() 348 if (cis == NULL) in prism2_plx_check_cis() 353 cis[i] = readb(attr_mem + 2 * i); in prism2_plx_check_cis() 354 printk(KERN_DEBUG "%s: CIS: %6ph ...\n", dev_info, cis); in prism2_plx_check_cis() 363 while (pos < CIS_MAX_LEN - 1 && cis[pos] != CISTPL_END) { in prism2_plx_check_cis() 364 if (pos + 2 + cis[pos + 1] > CIS_MAX_LEN) 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() 371 rmsz = (cis[pos + 2] & 0x3c) >> 2; in prism2_plx_check_cis() [all …]
|
/openbmc/linux/net/bluetooth/ |
H A D | hci_conn.c | 671 struct hci_cis_params cis[0x1f]; member 680 u8 cis; member 1756 pdu.cp.num_cis < ARRAY_SIZE(pdu.cis); cis_id++) { in set_cig_params_sync() 1757 struct hci_cis_params *cis; in set_cig_params_sync() local 1765 cis = &pdu.cis[pdu.cp.num_cis++]; in set_cig_params_sync() 1766 cis->cis_id = cis_id; in set_cig_params_sync() 1767 cis->c_sdu = cpu_to_le16(conn->iso_qos.ucast.out.sdu); in set_cig_params_sync() 1768 cis->p_sdu = cpu_to_le16(conn->iso_qos.ucast.in.sdu); in set_cig_params_sync() 1769 cis->c_phy = qos->ucast.out.phy ? qos->ucast.out.phy : in set_cig_params_sync() 1771 cis->p_phy = qos->ucast.in.phy ? qos->ucast.in.phy : in set_cig_params_sync() [all …]
|
H A D | hci_event.c | 3840 cp->cis[i].cis_id); in hci_cc_le_set_cig_params() 4264 handle = __le16_to_cpu(cp->cis[i].cis_handle); in hci_cs_le_create_cis() 6756 struct hci_conn *acl, *cis; in hci_le_cis_req_evt() local 6778 cis = hci_conn_hash_lookup_handle(hdev, cis_handle); in hci_le_cis_req_evt() 6779 if (!cis) { in hci_le_cis_req_evt() 6780 cis = hci_conn_add(hdev, ISO_LINK, &acl->dst, HCI_ROLE_SLAVE, in hci_le_cis_req_evt() 6782 if (IS_ERR(cis)) { in hci_le_cis_req_evt() 6788 cis->iso_qos.ucast.cig = ev->cig_id; in hci_le_cis_req_evt() 6789 cis->iso_qos.ucast.cis = ev->cis_id; in hci_le_cis_req_evt() 6794 cis->state = BT_CONNECT2; in hci_le_cis_req_evt() [all …]
|
H A D | hci_sync.c | 6543 struct hci_cis cis[0x1f]; in hci_le_create_cis_sync() member 6609 struct hci_cis *cis = &cmd.cis[cmd.cp.num_cis]; in hci_le_create_cis_sync() local 6616 cis->acl_handle = cpu_to_le16(conn->parent->handle); in hci_le_create_cis_sync() 6617 cis->cis_handle = cpu_to_le16(conn->handle); in hci_le_create_cis_sync() 6620 if (cmd.cp.num_cis >= ARRAY_SIZE(cmd.cis)) in hci_le_create_cis_sync() 6634 sizeof(cmd.cp) + sizeof(cmd.cis[0]) * in hci_le_create_cis_sync()
|
H A D | iso.c | 1361 if (qos->ucast.cis > 0xef && qos->ucast.cis != BT_ISO_QOS_CIS_UNSET) in check_ucast_qos()
|
/openbmc/linux/drivers/pcmcia/ |
H A 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 …]
|
/openbmc/linux/drivers/mmc/core/ |
H A 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() 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 D | sdio.c | 31 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() 797 mmc_set_clock(host, card->cis.max_dtr); in mmc_sdio_init_card() 834 if (card->cis.vendor == oldcard->cis.vendor && in mmc_sdio_init_card() 835 card->cis.device == oldcard->cis.device) { in mmc_sdio_init_card()
|
H A D | card.h | 196 card->cis.vendor = 0x104c; in wl1251_quirk() 197 card->cis.device = 0x9066; in wl1251_quirk() 198 card->cis.blksize = 512; in wl1251_quirk() 199 card->cis.max_dtr = 24000000; in wl1251_quirk()
|
H A D | quirks.h | 236 f->cis_vendor != card->cis.vendor) in mmc_fixup_device() 239 f->cis_device != card->cis.device) in mmc_fixup_device()
|
H A D | bus.c | 90 card->cis.vendor, card->cis.device); in mmc_bus_uevent()
|
H A D | sd.c | 734 MMC_DEV_ATTR(vendor, "0x%04x\n", card->cis.vendor); 735 MMC_DEV_ATTR(device, "0x%04x\n", card->cis.device);
|
/openbmc/linux/drivers/ata/ |
H A 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()
|
/openbmc/linux/drivers/media/pci/pluto2/ |
H A 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()
|
/openbmc/linux/Documentation/ |
H A D | dontdiff | 7 *.cis
|
/openbmc/linux/drivers/net/wireless/broadcom/brcm80211/brcmfmac/ |
H A D | sdio.h | 262 char cis[512]; /* 0x400-0x5ff, rev6 */ member
|
/openbmc/linux/include/linux/mmc/ |
H A D | card.h | 327 struct sdio_cis cis; /* common tuple info */ member
|
/openbmc/linux/include/net/bluetooth/ |
H A D | bluetooth.h | 180 __u8 cis; member
|
H A D | hci.h | 2054 struct hci_cis_params cis[]; member 2072 struct hci_cis cis[]; member
|
/openbmc/openbmc/poky/meta/files/common-licenses/ |
H A D | LiLiQ-P-1.1 | 16 …eur et sa documentation, pour laquelle le titulaire du droit d'auteur a précisé qu'elle est sujett…
|
H A D | LAL-1.2 | 45 …– joindre aux copies, cette licence à l’identique, ou indiquer précisément où se trouve la licence…
|
H A D | LiLiQ-R-1.1 | 16 …eur et sa documentation, pour laquelle le titulaire du droit d'auteur a précisé qu'elle est sujett…
|
H A D | LiLiQ-Rplus-1.1 | 16 …eur et sa documentation, pour laquelle le titulaire du droit d'auteur a précisé qu'elle est sujett…
|
H A D | LAL-1.3 | 41 …1. joindre aux copies cette licence à l’identique ou indiquer précisément où se trouve la licence ;
|
/openbmc/linux/drivers/mmc/host/ |
H A D | vub300.c | 1359 "vub_%04X%04X", card->cis.vendor, card->cis.device); in download_offload_pseudocode()
|