/Linux-v5.10/drivers/usb/usbip/ |
D | usbip_event.c | 16 struct usbip_device *ud; member 22 static void set_event(struct usbip_device *ud, unsigned long event) in set_event() argument 26 spin_lock_irqsave(&ud->lock, flags); in set_event() 27 ud->event |= event; in set_event() 28 spin_unlock_irqrestore(&ud->lock, flags); in set_event() 31 static void unset_event(struct usbip_device *ud, unsigned long event) in unset_event() argument 35 spin_lock_irqsave(&ud->lock, flags); in unset_event() 36 ud->event &= ~event; in unset_event() 37 spin_unlock_irqrestore(&ud->lock, flags); in unset_event() 43 struct usbip_device *ud = NULL; in get_event() local [all …]
|
D | stub_dev.c | 29 spin_lock_irq(&sdev->ud.lock); in usbip_status_show() 30 status = sdev->ud.status; in usbip_status_show() 31 spin_unlock_irq(&sdev->ud.lock); in usbip_status_show() 64 spin_lock_irq(&sdev->ud.lock); in usbip_sockfd_store() 66 if (sdev->ud.status != SDEV_ST_AVAILABLE) { in usbip_sockfd_store() 75 sdev->ud.tcp_socket = socket; in usbip_sockfd_store() 76 sdev->ud.sockfd = sockfd; in usbip_sockfd_store() 78 spin_unlock_irq(&sdev->ud.lock); in usbip_sockfd_store() 80 sdev->ud.tcp_rx = kthread_get_run(stub_rx_loop, &sdev->ud, in usbip_sockfd_store() 82 sdev->ud.tcp_tx = kthread_get_run(stub_tx_loop, &sdev->ud, in usbip_sockfd_store() [all …]
|
D | vudc_sysfs.c | 127 spin_lock_irq(&udc->ud.lock); in usbip_sockfd_store() 129 if (udc->ud.status != SDEV_ST_AVAILABLE) { in usbip_sockfd_store() 141 udc->ud.tcp_socket = socket; in usbip_sockfd_store() 143 spin_unlock_irq(&udc->ud.lock); in usbip_sockfd_store() 146 udc->ud.tcp_rx = kthread_get_run(&v_rx_loop, in usbip_sockfd_store() 147 &udc->ud, "vudc_rx"); in usbip_sockfd_store() 148 udc->ud.tcp_tx = kthread_get_run(&v_tx_loop, in usbip_sockfd_store() 149 &udc->ud, "vudc_tx"); in usbip_sockfd_store() 152 spin_lock_irq(&udc->ud.lock); in usbip_sockfd_store() 153 udc->ud.status = SDEV_ST_USED; in usbip_sockfd_store() [all …]
|
D | vudc_dev.c | 176 usbip_start_eh(&udc->ud); in vgadget_pullup() 182 usbip_event_add(&udc->ud, VUDC_EVENT_REMOVED); in vgadget_pullup() 183 usbip_stop_eh(&udc->ud); /* Wait for eh completion */ in vgadget_pullup() 429 static void vudc_shutdown(struct usbip_device *ud) in vudc_shutdown() argument 431 struct vudc *udc = container_of(ud, struct vudc, ud); in vudc_shutdown() 436 if (ud->tcp_socket) in vudc_shutdown() 437 kernel_sock_shutdown(ud->tcp_socket, SHUT_RDWR); in vudc_shutdown() 439 if (ud->tcp_rx) { in vudc_shutdown() 440 kthread_stop_put(ud->tcp_rx); in vudc_shutdown() 441 ud->tcp_rx = NULL; in vudc_shutdown() [all …]
|
D | vhci_rx.c | 60 struct usbip_device *ud = &vdev->ud; in vhci_recv_ret_submit() local 72 usbip_event_add(ud, VDEV_EVENT_ERROR_TCP); in vhci_recv_ret_submit() 80 if (usbip_recv_xbuff(ud, urb) < 0) { in vhci_recv_ret_submit() 86 if (usbip_recv_iso(ud, urb) < 0) { in vhci_recv_ret_submit() 92 usbip_pad_iso(ud, urb); in vhci_recv_ret_submit() 197 static void vhci_rx_pdu(struct usbip_device *ud) in vhci_rx_pdu() argument 201 struct vhci_device *vdev = container_of(ud, struct vhci_device, ud); in vhci_rx_pdu() 208 ret = usbip_recv(ud->tcp_socket, &pdu, sizeof(pdu)); in vhci_rx_pdu() 220 usbip_event_add(ud, VDEV_EVENT_ERROR_TCP); in vhci_rx_pdu() 225 usbip_event_add(ud, VDEV_EVENT_DOWN); in vhci_rx_pdu() [all …]
|
D | vudc_rx.c | 98 usbip_event_add(&udc->ud, VUDC_EVENT_ERROR_MALLOC); in v_recv_cmd_submit() 113 usbip_event_add(&udc->ud, VUDC_EVENT_ERROR_TCP); in v_recv_cmd_submit() 144 usbip_event_add(&udc->ud, VUDC_EVENT_ERROR_MALLOC); in v_recv_cmd_submit() 167 ret = usbip_recv_xbuff(&udc->ud, urb_p->urb); in v_recv_cmd_submit() 171 ret = usbip_recv_iso(&udc->ud, urb_p->urb); in v_recv_cmd_submit() 187 static int v_rx_pdu(struct usbip_device *ud) in v_rx_pdu() argument 191 struct vudc *udc = container_of(ud, struct vudc, ud); in v_rx_pdu() 194 ret = usbip_recv(ud->tcp_socket, &pdu, sizeof(pdu)); in v_rx_pdu() 196 usbip_event_add(ud, VUDC_EVENT_ERROR_TCP); in v_rx_pdu() 203 spin_lock_irq(&ud->lock); in v_rx_pdu() [all …]
|
D | vhci_sysfs.c | 42 port, vdev->ud.status); in port_show_vhci() 45 port, vdev->ud.status); in port_show_vhci() 47 if (vdev->ud.status == VDEV_ST_USED) { in port_show_vhci() 51 vdev->ud.sockfd, in port_show_vhci() 87 spin_lock(&vdev->ud.lock); in status_show_vhci() 90 spin_unlock(&vdev->ud.lock); in status_show_vhci() 96 spin_lock(&vdev->ud.lock); in status_show_vhci() 99 spin_unlock(&vdev->ud.lock); in status_show_vhci() 190 spin_lock(&vdev->ud.lock); in vhci_port_disconnect() 192 if (vdev->ud.status == VDEV_ST_NULL) { in vhci_port_disconnect() [all …]
|
D | vudc_tx.c | 60 ret = kernel_sendmsg(udc->ud.tcp_socket, &msg, iov, in v_send_ret_unlink() 63 usbip_event_add(&udc->ud, VUDC_EVENT_ERROR_TCP); in v_send_ret_unlink() 102 usbip_event_add(&udc->ud, VUDC_EVENT_ERROR_MALLOC); in v_send_ret_submit() 141 usbip_event_add(&udc->ud, VUDC_EVENT_ERROR_TCP); in v_send_ret_submit() 154 usbip_event_add(&udc->ud, in v_send_ret_submit() 166 ret = kernel_sendmsg(udc->ud.tcp_socket, &msg, in v_send_ret_submit() 169 usbip_event_add(&udc->ud, VUDC_EVENT_ERROR_TCP); in v_send_ret_submit() 223 struct usbip_device *ud = (struct usbip_device *) data; in v_tx_loop() local 224 struct vudc *udc = container_of(ud, struct vudc, ud); in v_tx_loop() 228 if (usbip_event_happened(&udc->ud)) in v_tx_loop() [all …]
|
D | stub_rx.c | 279 struct usbip_device *ud = &sdev->ud; in valid_request() local 283 spin_lock_irq(&ud->lock); in valid_request() 284 if (ud->status == SDEV_ST_USED) { in valid_request() 288 spin_unlock_irq(&ud->lock); in valid_request() 298 struct usbip_device *ud = &sdev->ud; in stub_priv_alloc() local 307 usbip_event_add(ud, SDEV_EVENT_ERROR_MALLOC); in stub_priv_alloc() 439 static int stub_recv_xbuff(struct usbip_device *ud, struct stub_priv *priv) in stub_recv_xbuff() argument 445 ret = usbip_recv_xbuff(ud, priv->urbs[i]); in stub_recv_xbuff() 457 struct usbip_device *ud = &sdev->ud; in stub_recv_cmd_submit() local 553 usbip_event_add(ud, SDEV_EVENT_ERROR_MALLOC); in stub_recv_cmd_submit() [all …]
|
D | vhci_hcd.c | 456 if (vhci_hcd->vdev[rhport].ud.status == in vhci_hub_control() 461 vhci_hcd->vdev[rhport].ud.status); in vhci_hub_control() 662 usbip_event_add(&vdev->ud, VDEV_EVENT_ERROR_MALLOC); in vhci_tx_urb() 714 spin_lock(&vdev->ud.lock); in vhci_urb_enqueue() 715 if (vdev->ud.status == VDEV_ST_NULL || in vhci_urb_enqueue() 716 vdev->ud.status == VDEV_ST_ERROR) { in vhci_urb_enqueue() 718 spin_unlock(&vdev->ud.lock); in vhci_urb_enqueue() 722 spin_unlock(&vdev->ud.lock); in vhci_urb_enqueue() 757 spin_lock(&vdev->ud.lock); in vhci_urb_enqueue() 758 vdev->ud.status = VDEV_ST_USED; in vhci_urb_enqueue() [all …]
|
D | vhci_tx.c | 87 usbip_event_add(&vdev->ud, SDEV_EVENT_ERROR_MALLOC); in vhci_send_cmd_submit() 128 usbip_event_add(&vdev->ud, in vhci_send_cmd_submit() 139 ret = kernel_sendmsg(vdev->ud.tcp_socket, &msg, iov, iovnum, in vhci_send_cmd_submit() 144 usbip_event_add(&vdev->ud, VDEV_EVENT_ERROR_TCP); in vhci_send_cmd_submit() 219 ret = kernel_sendmsg(vdev->ud.tcp_socket, &msg, &iov, 1, txsize); in vhci_send_cmd_unlink() 223 usbip_event_add(&vdev->ud, VDEV_EVENT_ERROR_TCP); in vhci_send_cmd_unlink() 237 struct usbip_device *ud = data; in vhci_tx_loop() local 238 struct vhci_device *vdev = container_of(ud, struct vhci_device, ud); in vhci_tx_loop()
|
D | usbip_common.c | 579 int usbip_recv_iso(struct usbip_device *ud, struct urb *urb) in usbip_recv_iso() argument 600 ret = usbip_recv(ud->tcp_socket, buff, size); in usbip_recv_iso() 606 if (ud->side == USBIP_STUB || ud->side == USBIP_VUDC) in usbip_recv_iso() 607 usbip_event_add(ud, SDEV_EVENT_ERROR_TCP); in usbip_recv_iso() 609 usbip_event_add(ud, VDEV_EVENT_ERROR_TCP); in usbip_recv_iso() 628 if (ud->side == USBIP_STUB || ud->side == USBIP_VUDC) in usbip_recv_iso() 629 usbip_event_add(ud, SDEV_EVENT_ERROR_TCP); in usbip_recv_iso() 631 usbip_event_add(ud, VDEV_EVENT_ERROR_TCP); in usbip_recv_iso() 647 void usbip_pad_iso(struct usbip_device *ud, struct urb *urb) in usbip_pad_iso() argument 681 int usbip_recv_xbuff(struct usbip_device *ud, struct urb *urb) in usbip_recv_xbuff() argument [all …]
|
D | stub_tx.c | 21 usbip_event_add(&sdev->ud, VDEV_EVENT_ERROR_MALLOC); in stub_enqueue_ret_unlink() 92 if (sdev->ud.tcp_socket == NULL) { in stub_complete() 196 usbip_event_add(&sdev->ud, SDEV_EVENT_ERROR_MALLOC); in stub_send_ret_submit() 292 usbip_event_add(&sdev->ud, in stub_send_ret_submit() 304 usbip_event_add(&sdev->ud, in stub_send_ret_submit() 316 ret = kernel_sendmsg(sdev->ud.tcp_socket, &msg, in stub_send_ret_submit() 324 usbip_event_add(&sdev->ud, SDEV_EVENT_ERROR_TCP); in stub_send_ret_submit() 391 ret = kernel_sendmsg(sdev->ud.tcp_socket, &msg, iov, in stub_send_ret_unlink() 397 usbip_event_add(&sdev->ud, SDEV_EVENT_ERROR_TCP); in stub_send_ret_unlink() 419 struct usbip_device *ud = data; in stub_tx_loop() local [all …]
|
D | usbip_common.h | 313 int usbip_recv_iso(struct usbip_device *ud, struct urb *urb); 314 void usbip_pad_iso(struct usbip_device *ud, struct urb *urb); 315 int usbip_recv_xbuff(struct usbip_device *ud, struct urb *urb); 320 int usbip_start_eh(struct usbip_device *ud); 321 void usbip_stop_eh(struct usbip_device *ud); 322 void usbip_event_add(struct usbip_device *ud, unsigned long event); 323 int usbip_event_happened(struct usbip_device *ud);
|
/Linux-v5.10/drivers/dma/ti/ |
D | k3-udma.c | 215 struct udma_dev *ud; member 335 static int navss_psil_pair(struct udma_dev *ud, u32 src_thread, u32 dst_thread) in navss_psil_pair() argument 337 struct udma_tisci_rm *tisci_rm = &ud->tisci_rm; in navss_psil_pair() 345 static int navss_psil_unpair(struct udma_dev *ud, u32 src_thread, in navss_psil_unpair() argument 348 struct udma_tisci_rm *tisci_rm = &ud->tisci_rm; in navss_psil_unpair() 365 struct device *dev = uc->ud->dev; in udma_dump_chan_stdata() 442 struct udma_dev *ud = uc->ud; in udma_free_hwdesc() local 444 dma_free_coherent(ud->dev, d->hwdesc[0].cppi5_desc_size, in udma_free_hwdesc() 454 struct udma_dev *ud = container_of(work, typeof(*ud), purge_work); in udma_purge_desc_work() local 459 spin_lock_irqsave(&ud->lock, flags); in udma_purge_desc_work() [all …]
|
D | k3-udma-private.c | 7 int xudma_navss_psil_pair(struct udma_dev *ud, u32 src_thread, u32 dst_thread) in xudma_navss_psil_pair() argument 9 return navss_psil_pair(ud, src_thread, dst_thread); in xudma_navss_psil_pair() 13 int xudma_navss_psil_unpair(struct udma_dev *ud, u32 src_thread, u32 dst_thread) in xudma_navss_psil_unpair() argument 15 return navss_psil_unpair(ud, src_thread, dst_thread); in xudma_navss_psil_unpair() 23 struct udma_dev *ud; in of_xudma_dev_get() local 42 ud = platform_get_drvdata(pdev); in of_xudma_dev_get() 43 if (!ud) { in of_xudma_dev_get() 49 return ud; in of_xudma_dev_get() 53 u32 xudma_dev_get_psil_base(struct udma_dev *ud) in xudma_dev_get_psil_base() argument 55 return ud->psil_base; in xudma_dev_get_psil_base() [all …]
|
D | k3-udma.h | 110 int xudma_navss_psil_pair(struct udma_dev *ud, u32 src_thread, u32 dst_thread); 111 int xudma_navss_psil_unpair(struct udma_dev *ud, u32 src_thread, 115 void xudma_dev_put(struct udma_dev *ud); 116 u32 xudma_dev_get_psil_base(struct udma_dev *ud); 117 struct udma_tisci_rm *xudma_dev_get_tisci_rm(struct udma_dev *ud); 119 int xudma_alloc_gp_rflow_range(struct udma_dev *ud, int from, int cnt); 120 int xudma_free_gp_rflow_range(struct udma_dev *ud, int from, int cnt); 122 struct udma_tchan *xudma_tchan_get(struct udma_dev *ud, int id); 123 struct udma_rchan *xudma_rchan_get(struct udma_dev *ud, int id); 124 struct udma_rflow *xudma_rflow_get(struct udma_dev *ud, int id); [all …]
|
/Linux-v5.10/drivers/gpu/drm/i915/gt/shaders/clear_kernel/ |
D | hsw.asm | 39 add(1) g1.2<1>UD g1.2<0,1,0>UD 0x00000001UD { align1 1N }; /* Loop count to del… 40 cmp.z.f0.0(1) null<1>UD g1.3<0,1,0>UD 0x00000000UD { align1 1N }; 48 mov(8) g3<1>UD 0x00000000UD { align1 1Q }; 60 mov(8) g5<1>UD 0x00000000UD { align1 1Q }; 64 mov(8) g4<1>UD g0<8,8,1>UD { align1 1Q }; /* Initialize messag… 65 mov(1) g4<1>UD g3.3<0,1,0>UD { align1 1N }; /* Block offset */ 66 mov(1) g4.1<1>UD g3.2<0,1,0>UD { align1 1N }; /* Block offset */ 67 mov(1) g4.2<1>UD 0x00000003UD { align1 1N }; /* Block size (1 row… 68 and(1) g4.3<1>UD g4.3<0,1,0>UW 0xffffffffUD { align1 1N }; 71 sendc(8) g5<1>UD g4<8,8,1>F 0x02190001 [all …]
|
D | ivb.asm | 39 add(1) g1.2<1>UD g1.2<0,1,0>UD 0x00000001UD { align1 1N }; /* Loop count to del… 40 cmp.z.f0.0(1) null<1>UD g1.3<0,1,0>UD 0x00000000UD { align1 1N }; 48 mov(8) g3<1>UD 0x00000000UD { align1 1Q }; 60 mov(8) g5<1>UD 0x00000000UD { align1 1Q }; 64 mov(8) g4<1>UD g0<8,8,1>UD { align1 1Q }; /* Initialize messag… 65 mov(1) g4<1>UD g3.3<0,1,0>UD { align1 1N }; /* Block offset */ 66 mov(1) g4.1<1>UD g3.2<0,1,0>UD { align1 1N }; /* Block offset */ 67 mov(1) g4.2<1>UD 0x00000003UD { align1 1N }; /* Block size (1 row… 68 and(1) g4.3<1>UD g4.3<0,1,0>UW 0xffffffffUD { align1 1N }; 71 sendc(8) g5<1>UD g4<8,8,1>F 0x02190001 [all …]
|
/Linux-v5.10/Documentation/devicetree/bindings/display/panel/ |
D | sharp,lq150x1lg11.yaml | 25 GPIO for the RL/UD (rotate 180 degrees) pin. 27 the RL/UD and/or SELLVDS pins are assumed to be handled 35 the RL/UD and/or SELLVDS pins are assumed to be handled 54 rlud-gpios = <&gpio 17 GPIO_ACTIVE_HIGH>; /* RL/UD */
|
/Linux-v5.10/drivers/net/wireless/ath/ath5k/ |
D | desc.c | 91 tx_ctl = &desc->ud.ds_tx5210.tx_ctl; in ath5k_hw_setup_2word_tx_desc() 111 memset(&desc->ud.ds_tx5210, 0, sizeof(struct ath5k_hw_5210_tx_desc)); in ath5k_hw_setup_2word_tx_desc() 262 tx_ctl = &desc->ud.ds_tx5212.tx_ctl; in ath5k_hw_setup_4word_tx_desc() 286 memset(&desc->ud.ds_tx5212.tx_stat, 0, in ath5k_hw_setup_4word_tx_desc() 287 sizeof(desc->ud.ds_tx5212.tx_stat)); in ath5k_hw_setup_4word_tx_desc() 406 tx_ctl = &desc->ud.ds_tx5212.tx_ctl; in ath5k_hw_setup_mrr_tx_desc() 448 tx_status = &desc->ud.ds_tx5210.tx_stat; in ath5k_hw_proc_2word_tx_status() 501 tx_status = &desc->ud.ds_tx5212.tx_stat; in ath5k_hw_proc_4word_tx_status() 565 rx_ctl = &desc->ud.ds_rx.rx_ctl; in ath5k_hw_setup_rx_desc() 574 memset(&desc->ud.ds_rx, 0, sizeof(struct ath5k_hw_all_rx_desc)); in ath5k_hw_setup_rx_desc() [all …]
|
/Linux-v5.10/tools/lib/traceevent/plugins/ |
D | plugin_kvm.c | 17 static ud_t ud; variable 21 ud_init(&ud); in init_disassembler() 22 ud_set_syntax(&ud, UD_SYN_ATT); in init_disassembler() 42 ud_set_pc(&ud, rip); in disassemble() 43 ud_set_mode(&ud, mode); in disassemble() 44 ud_set_input_buffer(&ud, insn, len); in disassemble() 45 ud_disassemble(&ud); in disassemble() 46 return ud_insn_asm(&ud); in disassemble()
|
/Linux-v5.10/drivers/block/ |
D | ataflop.c | 306 #define UD unit[drive] macro 525 FDC_WRITE( FDCREG_TRACK, UD.track ); in fd_select_drive() 605 if (++drive > 1 || !UD.connected) in check_change() 619 if (stat != UD.wpstat) { in check_change() 621 UD.wpstat = stat; in check_change() 839 if (UD.track == -1) in do_fd_action() 841 else if (UD.track != ReqTrack << UDT->stretch) in do_fd_action() 1419 if (UD.wpstat) { in floppy_check_events() 1437 if (UD.flags & FTD_MSG) in floppy_revalidate() 1507 if (!UD.connected) { in ataflop_queue_rq() [all …]
|
/Linux-v5.10/arch/powerpc/platforms/powermac/ |
D | pfunc_core.c | 273 LOG_PARSE("pmf: read_i2c(bytes: %ud)\n", bytes); in pmf_parser_read_i2c() 283 LOG_PARSE("pmf: write_i2c(bytes: %ud) ...\n", bytes); in pmf_parser_write_i2c() 298 LOG_PARSE("pmf: rmw_i2c(maskbytes: %ud, valuebytes: %ud, " in pmf_parser_rmw_i2c() 313 LOG_PARSE("pmf: read_cfg(offset: %x, bytes: %ud)\n", offset, bytes); in pmf_parser_read_cfg() 325 LOG_PARSE("pmf: write_cfg(offset: %x, bytes: %ud)\n", offset, bytes); in pmf_parser_write_cfg() 340 LOG_PARSE("pmf: rmw_cfg(maskbytes: %ud, valuebytes: %ud," in pmf_parser_rmw_cfg() 356 LOG_PARSE("pmf: read_i2c_sub(subaddr: %x, bytes: %ud)\n", in pmf_parser_read_i2c_sub() 368 LOG_PARSE("pmf: write_i2c_sub(subaddr: %x, bytes: %ud) ...\n", in pmf_parser_write_i2c_sub() 394 LOG_PARSE("pmf: rmw_i2c_sub(subaddr: %x, maskbytes: %ud, valuebytes: %ud" in pmf_parser_rmw_i2c_sub() 491 LOG_PARSE("pmf: mask_and_compare(length: %ud ...\n", bytes); in pmf_parser_mask_and_compare()
|
/Linux-v5.10/net/sunrpc/auth_gss/ |
D | svcauth_gss.c | 1270 struct gssp_upcall_data *ud, in gss_proxy_save_rsc() argument 1298 if (!ud->found_creds) { in gss_proxy_save_rsc() 1306 rsci.cred = ud->creds; in gss_proxy_save_rsc() 1307 memset(&ud->creds, 0, sizeof(struct svc_cred)); in gss_proxy_save_rsc() 1311 gm = gss_mech_get_by_OID(&ud->mech_oid); in gss_proxy_save_rsc() 1318 status = gss_import_sec_context(ud->out_handle.data, in gss_proxy_save_rsc() 1319 ud->out_handle.len, in gss_proxy_save_rsc() 1346 struct gssp_upcall_data ud; in svcauth_gss_proxy_init() local 1353 memset(&ud, 0, sizeof(ud)); in svcauth_gss_proxy_init() 1355 &ud.in_handle, &ud.in_token); in svcauth_gss_proxy_init() [all …]
|