| /OK3568_Linux_fs/kernel/drivers/infiniband/hw/hns/ |
| H A D | hns_roce_hw_v1.c | 1595 u32 status = readl(hr_dev->reg_base + ROCEE_MB6_REG); in hns_roce_v1_cmd_pending() local 1597 return (!!(status & (1 << HCR_GO_BIT))); in hns_roce_v1_cmd_pending() 1646 u32 status = 0; in hns_roce_v1_chk_mbox() local 1657 status = le32_to_cpu((__force __le32) in hns_roce_v1_chk_mbox() 1659 if ((status & STATUS_MASK) != 0x1) { in hns_roce_v1_chk_mbox() 1660 dev_err(hr_dev->dev, "mailbox status 0x%x!\n", status); in hns_roce_v1_chk_mbox() 2105 u32 status; in hns_roce_v1_poll_one() local 2152 status = roce_get_field(cqe->cqe_byte_4, in hns_roce_v1_poll_one() 2156 switch (status) { in hns_roce_v1_poll_one() 2158 wc->status = IB_WC_SUCCESS; in hns_roce_v1_poll_one() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8723bs/core/ |
| H A D | rtw_xmit.c | 5485 u8 status = RTW_AMSDU_TIMER_UNSET; in rtw_amsdu_get_timer_status() local 5491 status = pxmitpriv->amsdu_bk_timeout; in rtw_amsdu_get_timer_status() 5495 status = pxmitpriv->amsdu_vi_timeout; in rtw_amsdu_get_timer_status() 5499 status = pxmitpriv->amsdu_vo_timeout; in rtw_amsdu_get_timer_status() 5504 status = pxmitpriv->amsdu_be_timeout; in rtw_amsdu_get_timer_status() 5507 return status; in rtw_amsdu_get_timer_status() 5510 void rtw_amsdu_set_timer_status(_adapter *padapter, u8 priority, u8 status) in rtw_amsdu_set_timer_status() argument 5518 pxmitpriv->amsdu_bk_timeout = status; in rtw_amsdu_set_timer_status() 5522 pxmitpriv->amsdu_vi_timeout = status; in rtw_amsdu_set_timer_status() 5526 pxmitpriv->amsdu_vo_timeout = status; in rtw_amsdu_set_timer_status() [all …]
|
| H A D | rtw_cmd.c | 1308 if (sctx.status == RTW_SCTX_SUBMITTED) in rtw_createbss_cmd() 1611 if (sctx.status == RTW_SCTX_SUBMITTED) in rtw_disassoc_cmd() 1939 u8 rtw_addbarsp_cmd(_adapter *padapter, u8 *addr, u16 tid, u8 status, u8 size, u16 start_seq) in rtw_addbarsp_cmd() argument 1963 paddBaRsp_parm->status = status; in rtw_addbarsp_cmd() 2146 if (sctx.status == RTW_SCTX_SUBMITTED) in rtw_set_chbw_cmd() 2223 if (sctx.status == RTW_SCTX_SUBMITTED) in _rtw_set_chplan_cmd() 3256 if (sctx.status == RTW_SCTX_SUBMITTED) in _p2p_roch_cmd() 3259 if (sctx.status != RTW_SCTX_DONE_SUCCESS) in _p2p_roch_cmd() 3343 if (sctx.status == RTW_SCTX_SUBMITTED) in rtw_mgnt_tx_cmd() 3346 if (sctx.status != RTW_SCTX_DONE_SUCCESS) in rtw_mgnt_tx_cmd() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/ethernet/realtek/ |
| H A D | r8169_main.c | 4472 u32 status; in rtl_tx() local 4474 status = le32_to_cpu(tp->TxDescArray[entry].opts1); in rtl_tx() 4475 if (status & DescOwn) in rtl_tx() 4517 static inline int rtl8169_fragmented_frame(u32 status) in rtl8169_fragmented_frame() argument 4519 return (status & (FirstFrag | LastFrag)) != (FirstFrag | LastFrag); in rtl8169_fragmented_frame() 4524 u32 status = opts1 & RxProtoMask; in rtl8169_rx_csum() local 4526 if (((status == RxProtoTCP) && !(opts1 & TCPFail)) || in rtl8169_rx_csum() 4527 ((status == RxProtoUDP) && !(opts1 & UDPFail))) in rtl8169_rx_csum() 4546 u32 status; in rtl_rx() local 4548 status = le32_to_cpu(desc->opts1); in rtl_rx() [all …]
|
| /OK3568_Linux_fs/kernel/Documentation/networking/ |
| H A D | packet_mmap.rst | 139 | struct tpacket_hdr | Header. It contains the status of 432 At the beginning of each frame there is an status field (see 483 receives a packet it puts in the buffer and updates the status with 485 once the packet is read the user must zero the status field, so the kernel 497 if (status == TP_STATUS_KERNEL) 500 It doesn't incur in a race condition to first check the status value and 515 current data buffer size and sets its status field to TP_STATUS_SEND_REQUEST. 517 calls send(). Then all buffers with status equal to TP_STATUS_SEND_REQUEST are 518 forwarded to the network device. The kernel updates each status of sent 521 At the end of each transfer, buffer status returns to TP_STATUS_AVAILABLE. [all …]
|
| /OK3568_Linux_fs/kernel/arch/powerpc/platforms/cell/spufs/ |
| H A D | file.c | 1479 static int spufs_read_mfc_tagstatus(struct spu_context *ctx, u32 *status) in spufs_read_mfc_tagstatus() argument 1483 *status = ctx->ops->read_mfc_tagstatus(ctx) & ctx->tagwait; in spufs_read_mfc_tagstatus() 1484 ctx->tagwait &= ~*status; in spufs_read_mfc_tagstatus() 1485 if (*status) in spufs_read_mfc_tagstatus() 1499 u32 status; in spufs_mfc_read() local 1510 status = ctx->ops->read_mfc_tagstatus(ctx); in spufs_mfc_read() 1511 if (!(status & ctx->tagwait)) in spufs_mfc_read() 1515 ctx->tagwait &= ~status; in spufs_mfc_read() 1518 spufs_read_mfc_tagstatus(ctx, &status)); in spufs_mfc_read() 1525 if (copy_to_user(buffer, &status, 4)) in spufs_mfc_read() [all …]
|
| /OK3568_Linux_fs/kernel/sound/usb/ |
| H A D | mixer_quirks.c | 198 if (urb->status < 0 || urb->actual_length < rc->min_packet_length) in snd_usb_soundblaster_remote_complete() 539 unsigned char status) in snd_xonar_u1_switch_update() argument 550 50, 0, &status, 1); in snd_xonar_u1_switch_update() 1508 ucontrol->value.iec958.status[0] = kcontrol->private_value & 0xff; in snd_microii_spdif_default_get() 1509 ucontrol->value.iec958.status[1] = (kcontrol->private_value >> 8) & 0xff; in snd_microii_spdif_default_get() 1510 ucontrol->value.iec958.status[2] = 0x00; in snd_microii_spdif_default_get() 1537 ucontrol->value.iec958.status[3] = (rate == 48000) ? in snd_microii_spdif_default_get() 1596 pval |= (ucontrol->value.iec958.status[1] & 0x0f) << 8; in snd_microii_spdif_default_put() 1597 pval |= (ucontrol->value.iec958.status[0] & 0x0f); in snd_microii_spdif_default_put() 1600 pval |= (ucontrol->value.iec958.status[1] & 0xf0) << 8; in snd_microii_spdif_default_put() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/media/usb/s2255/ |
| H A D | s2255drv.c | 497 if (urb->status) { in s2255_fwchunk_complete() 498 dev_err(&udev->dev, "URB failed with status %d\n", urb->status); in s2255_fwchunk_complete() 1157 u32 status = 0; in vidioc_enum_input() local 1163 inp->status = 0; in vidioc_enum_input() 1166 rc = s2255_cmd_status(vc, &status); in vidioc_enum_input() 1168 rc, status); in vidioc_enum_input() 1170 inp->status = (status & 0x01) ? 0 in vidioc_enum_input() 2039 int status; in read_pipe_completion() local 2051 status = purb->status; in read_pipe_completion() 2053 if (status == -ESHUTDOWN) { in read_pipe_completion() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/ethernet/ti/ |
| H A D | tlan.c | 2233 u16 status; in tlan_finish_reset() local 2256 status = MII_GS_LINK; in tlan_finish_reset() 2259 tlan_mii_read_reg(dev, phy, MII_GEN_STS, &status); in tlan_finish_reset() 2261 tlan_mii_read_reg(dev, phy, MII_GEN_STS, &status); in tlan_finish_reset() 2262 if (status & MII_GS_LINK) { in tlan_finish_reset() 2305 if (status & MII_GS_LINK) { in tlan_finish_reset() 2576 u16 status; in tlan_phy_start_link() local 2581 tlan_mii_read_reg(dev, phy, MII_GEN_STS, &status); in tlan_phy_start_link() 2584 if ((status & MII_GS_AUTONEG) && in tlan_phy_start_link() 2586 ability = status >> 11; in tlan_phy_start_link() [all …]
|
| /OK3568_Linux_fs/kernel/sound/pci/ |
| H A D | via82xx.c | 621 unsigned int status; in snd_via686_interrupt() local 624 status = inl(VIAREG(chip, SGD_SHADOW)); in snd_via686_interrupt() 625 if (! (status & chip->intr_mask)) { in snd_via686_interrupt() 667 unsigned int status; in snd_via8233_interrupt() local 673 status = inl(VIAREG(chip, SGD_SHADOW)); in snd_via8233_interrupt() 680 shadow_status = (status >> viadev->shadow_shift) & in snd_via8233_interrupt() 863 int status; in snd_via8233_pcm_pointer() local 870 status = viadev->in_interrupt; in snd_via8233_pcm_pointer() 871 if (!status) in snd_via8233_pcm_pointer() 872 status = inb(VIADEV_REG(viadev, OFFSET_STATUS)); in snd_via8233_pcm_pointer() [all …]
|
| /OK3568_Linux_fs/kernel/arch/arm64/boot/dts/ti/ |
| H A D | k3-j721e-main.dtsi | 365 status = "okay"; 1335 status = "disabled"; 1359 status = "disabled"; 1378 status = "disabled"; 1397 status = "disabled"; 1416 status = "disabled"; 1435 status = "disabled"; 1454 status = "disabled"; 1473 status = "disabled"; 1492 status = "disabled"; [all …]
|
| /OK3568_Linux_fs/u-boot/arch/arm/dts/ |
| H A D | am335x-evm-u-boot.dtsi | 9 status = "disabled";
|
| /OK3568_Linux_fs/kernel/drivers/staging/media/atomisp/pci/css_2401_system/host/ |
| H A D | isys_irq_local.h | 28 hrt_data status; member
|
| /OK3568_Linux_fs/kernel/net/bpfilter/ |
| H A D | msgfmt.h | 14 __u32 status; member
|
| /OK3568_Linux_fs/kernel/drivers/of/unittest-data/ |
| H A D | overlay_6.dts | 9 status = "okay";
|
| H A D | overlay_7.dts | 9 status = "okay";
|
| H A D | overlay_8.dts | 9 status = "okay";
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/sync/ |
| H A D | sync.h | 38 int sync_fence_count_with_status(int fd, int status);
|
| /OK3568_Linux_fs/kernel/net/mac80211/ |
| H A D | util.c | 1678 u16 transaction, u16 auth_alg, u16 status, in ieee80211_send_auth() argument 1704 mgmt->u.auth.status_code = cpu_to_le16(status); in ieee80211_send_auth() 3669 struct ieee80211_rx_status *status, in ieee80211_calculate_rx_timestamp() argument 3673 u64 ts = status->mactime; in ieee80211_calculate_rx_timestamp() 3677 if (WARN_ON(!ieee80211_have_rx_timestamp(status))) in ieee80211_calculate_rx_timestamp() 3682 ri.bw = status->bw; in ieee80211_calculate_rx_timestamp() 3685 switch (status->encoding) { in ieee80211_calculate_rx_timestamp() 3687 ri.mcs = status->rate_idx; in ieee80211_calculate_rx_timestamp() 3689 if (status->enc_flags & RX_ENC_FLAG_SHORT_GI) in ieee80211_calculate_rx_timestamp() 3694 ri.mcs = status->rate_idx; in ieee80211_calculate_rx_timestamp() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/rockchip/ |
| H A D | rockchip_vop2_reg.c | 517 .status = VOP_REG(RK3568_SYS0_INT_STATUS, 0xfe, 0), 527 .status = VOP_REG(RK3568_SYS0_INT_STATUS, 0xfe, 0), 535 .status = VOP_REG(RK3568_SYS1_INT_STATUS, 0xfe, 0), 556 .status = VOP_REG(RK3568_VP0_INT_STATUS, 0xffff, 0), 566 .status = VOP_REG(RK3568_VP1_INT_STATUS, 0xffff, 0), 576 .status = VOP_REG(RK3568_VP2_INT_STATUS, 0xffff, 0), 586 .status = VOP_REG(RK3588_VP3_INT_STATUS, 0xffff, 0), 2858 .status = VOP_REG(RK3568_SYS_STATUS0, 0x1, 8), 2865 .status = VOP_REG(RK3568_SYS_STATUS0, 0x1, 9), 2872 .status = VOP_REG(RK3568_SYS_STATUS0, 0x1, 10), [all …]
|
| /OK3568_Linux_fs/kernel/arch/arm/boot/dts/ |
| H A D | dm3725.dtsi | 9 status = "disabled";
|
| H A D | am3715.dtsi | 9 status = "disabled";
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/runtime/cases/ |
| H A D | _qemutiny.py | 10 status, output = self.target.run_serial('uname -a')
|
| /OK3568_Linux_fs/kernel/fs/dlm/ |
| H A D | user.h | 10 int status, uint32_t sbflags, uint64_t seq);
|
| /OK3568_Linux_fs/u-boot/drivers/ufs/ |
| H A D | ufshcd-dwc.h | 20 enum ufs_notify_change_status status);
|