Home
last modified time | relevance | path

Searched refs:slot_id (Results 1 – 16 of 16) sorted by relevance

/linux/drivers/usb/host/
H A Dxhci-trace.h169 __field(int, slot_id)
177 __entry->slot_id = (int) vdev->slot_id;
181 __entry->vdev, __entry->slot_id, __entry->in_ctx,
203 __field(int, slot_id)
214 __entry->slot_id = vdev->udev->slot_id;
219 __entry->portnum, __entry->level, __entry->slot_id
260 __field(int, slot_id)
276 __entry->slot_id = urb->dev->slot_id;
286 __entry->urb, __entry->pipe, __entry->slot_id,
H A Dxhci-debugfs.h111 void xhci_debugfs_create_slot(struct xhci_hcd *xhci, int slot_id);
112 void xhci_debugfs_remove_slot(struct xhci_hcd *xhci, int slot_id);
H A Dxhci-debugfs.c456 int slot_id) in xhci_debugfs_create_context_files() argument
458 struct xhci_virt_device *dev = xhci->devs[slot_id]; in xhci_debugfs_create_context_files()
614 void xhci_debugfs_create_slot(struct xhci_hcd *xhci, int slot_id) in xhci_debugfs_create_slot() argument
617 struct xhci_virt_device *dev = xhci->devs[slot_id]; in xhci_debugfs_create_slot()
623 snprintf(priv->name, sizeof(priv->name), "%02d", slot_id); in xhci_debugfs_create_slot()
631 xhci_debugfs_create_context_files(xhci, priv->root, slot_id); in xhci_debugfs_create_slot()
634 void xhci_debugfs_remove_slot(struct xhci_hcd *xhci, int slot_id) in xhci_debugfs_remove_slot() argument
638 struct xhci_virt_device *dev = xhci->devs[slot_id]; in xhci_debugfs_remove_slot()
H A Dxhci-sideband.c414 if (!udev->slot_id || type != XHCI_SIDEBAND_VENDOR) in xhci_sideband_register()
426 vdev = xhci->devs[udev->slot_id]; in xhci_sideband_register()
430 udev->slot_id); in xhci_sideband_register()
H A Dxhci-mtk-sch.c134 virt_dev = xhci->devs[udev->slot_id]; in get_bw_info()
920 virt_dev = xhci->devs[udev->slot_id]; in add_ep_quirk()
976 struct xhci_virt_device *virt_dev = xhci->devs[udev->slot_id]; in xhci_mtk_check_bandwidth()
/linux/drivers/media/platform/mediatek/vcodec/decoder/vdec/
H A Dvdec_av1_req_lat_if.c664 s8 slot_id; member
874 int slot_id, ref_id; in vdec_av1_slice_cleanup_slots() local
879 for (slot_id = 0; slot_id < AV1_MAX_FRAME_BUF_COUNT; slot_id++) { in vdec_av1_slice_cleanup_slots()
880 u64 timestamp = slots->timestamp[slot_id]; in vdec_av1_slice_cleanup_slots()
884 if (slots->frame_info[slot_id].ref_count == 0) in vdec_av1_slice_cleanup_slots()
889 frame->ref_frame_map[ref_id] = slot_id; in vdec_av1_slice_cleanup_slots()
895 vdec_av1_slice_decrease_ref_count(slots, slot_id); in vdec_av1_slice_cleanup_slots()
909 vsi->slot_id = vdec_av1_slice_get_new_slot(vsi); in vdec_av1_slice_setup_slot()
911 if (vsi->slot_id == AV1_INVALID_IDX) { in vdec_av1_slice_setup_slot()
913 vsi->slot_id = 0; in vdec_av1_slice_setup_slot()
[all …]
/linux/drivers/pci/hotplug/
H A Dacpiphp_ibm.c58 u16 slot_id; member
176 ibm_slot->slot.slot_num, ibm_slot->slot.slot_id, in ibm_set_attention_status()
180 args[0].integer.value = ibm_slot->slot.slot_id; in ibm_set_attention_status()
226 ibm_slot->slot.slot_num, ibm_slot->slot.slot_id, in ibm_get_attention_status()
/linux/sound/usb/qcom/
H A Dusb_audio_qmi_v01.h108 u32 slot_id; member
138 u32 slot_id; member
H A Dusb_audio_qmi_v01.c443 slot_id),
672 slot_id),
H A Dqc_audio_offload.c360 disconnect_ind.slot_id = dev->udev->slot_id; in uaudio_send_disconnect_ind()
1397 resp->slot_id = subs->dev->slot_id; in prepare_qmi_response()
/linux/Documentation/devicetree/bindings/mailbox/
H A Dhisilicon,hi6220-mailbox.txt21 <&phandle slot_id dst_irq ack_irq>
23 slot_id: Slot id used either for TX or RX
/linux/drivers/net/wireless/broadcom/brcm80211/brcmfmac/
H A Dfwsignal.c582 struct sk_buff *pkt, u32 slot_id) in brcmf_fws_hanger_pushpkt() argument
584 if (slot_id >= BRCMF_FWS_HANGER_MAXITEMS) in brcmf_fws_hanger_pushpkt()
587 if (h->items[slot_id].state != BRCMF_FWS_HANGER_ITEM_STATE_FREE) { in brcmf_fws_hanger_pushpkt()
593 h->items[slot_id].state = BRCMF_FWS_HANGER_ITEM_STATE_INUSE; in brcmf_fws_hanger_pushpkt()
594 h->items[slot_id].pkt = pkt; in brcmf_fws_hanger_pushpkt()
600 u32 slot_id, struct sk_buff **pktout, in brcmf_fws_hanger_poppkt() argument
603 if (slot_id >= BRCMF_FWS_HANGER_MAXITEMS) in brcmf_fws_hanger_poppkt()
606 if (h->items[slot_id].state == BRCMF_FWS_HANGER_ITEM_STATE_FREE) { in brcmf_fws_hanger_poppkt()
612 *pktout = h->items[slot_id].pkt; in brcmf_fws_hanger_poppkt()
614 h->items[slot_id].state = BRCMF_FWS_HANGER_ITEM_STATE_FREE; in brcmf_fws_hanger_poppkt()
[all …]
/linux/drivers/scsi/device_handler/
H A Dscsi_dh_rdac.c128 u8 slot_id[SLOT_ID_LEN]; member
446 if (inqp->slot_id[1] == 0x31) in initialize_controller()
/linux/arch/powerpc/include/asm/
H A Dopal.h150 int64_t opal_set_slot_led_status(uint64_t phb_id, uint64_t slot_id, uint8_t led_type, uint8_t led_a…
/linux/net/packet/
H A Daf_packet.c2245 unsigned int slot_id = 0; in tpacket_rcv() local
2356 slot_id = po->rx_ring.head; in tpacket_rcv()
2357 if (test_bit(slot_id, po->rx_ring.rx_owner_map)) in tpacket_rcv()
2359 __set_bit(slot_id, po->rx_ring.rx_owner_map); in tpacket_rcv()
2484 __clear_bit(slot_id, po->rx_ring.rx_owner_map); in tpacket_rcv()
/linux/include/linux/
H A Dusb.h738 int slot_id; member