Searched refs:sts (Results 76 - 100 of 166) sorted by relevance

1234567

/linux-master/arch/sh/kernel/cpu/shmobile/
H A Dsleep.S41 sts pr, r0
53 sts.l pr, @-r15
249 sts pr, k1
/linux-master/block/
H A Dbsg-lib.c280 blk_status_t sts = BLK_STS_IOERR; local
293 sts = BLK_STS_OK;
297 return sts;
/linux-master/drivers/media/platform/aspeed/
H A Daspeed-video.c731 u32 sts = aspeed_video_read(video, VE_INTERRUPT_STATUS); local
737 sts &= aspeed_video_read(video, VE_INTERRUPT_CTRL);
739 v4l2_dbg(2, debug, &video->v4l2_dev, "irq sts=%#x %s%s%s%s\n", sts,
740 sts & VE_INTERRUPT_MODE_DETECT_WD ? ", unlock" : "",
741 sts & VE_INTERRUPT_MODE_DETECT ? ", lock" : "",
742 sts & VE_INTERRUPT_CAPTURE_COMPLETE ? ", capture-done" : "",
743 sts & VE_INTERRUPT_COMP_COMPLETE ? ", comp-done" : "");
749 if (sts & VE_INTERRUPT_MODE_DETECT_WD) {
754 if (sts
835 u32 sts, ctrl; local
[all...]
/linux-master/drivers/infiniband/hw/mlx4/
H A Dcm.c433 int sts; local
450 sts = alloc_rej_tmout(sriov, rem_pv_cm_id, *slave);
451 if (sts)
454 rem_pv_cm_id, *slave, sts);
/linux-master/drivers/spi/
H A Dspi-fsi.c109 u32 sts; local
117 sts = be32_to_cpu(sts_be);
118 if (sts & FSI2SPI_STATUS_ANY_ERROR) {
119 dev_err(ctx->dev, "Error with FSI2SPI interface: %08x.\n", sts);
H A Dspi-sprd-adi.c170 u32 sts; local
173 sts = readl_relaxed(sadi->base + REG_ADI_ARM_FIFO_STS);
174 if (sts & BIT_FIFO_EMPTY)
/linux-master/drivers/net/wireless/realtek/rtw89/
H A Dpci_be.c504 u32 sts; local
507 ret = read_poll_timeout_atomic(rtw89_read32, sts,
508 !(sts & B_BE_HAXI_MST_BUSY),
512 rtw89_err(rtwdev, "pci dmach busy1 0x%X\n", sts);
/linux-master/drivers/soc/qcom/
H A Dspm.c332 unsigned int vctl, data0, data1, avs_ctl, sts; local
365 sts, sts == vlevel,
368 dev_err_ratelimited(drv->dev, "timeout setting the voltage (%x %x)!\n", sts, vlevel);
/linux-master/drivers/usb/gadget/udc/
H A Damd5536udc.h407 u32 sts; member in struct:udc_regs
429 u32 sts; member in struct:udc_ep_regs
/linux-master/drivers/soundwire/
H A Damd_manager.c176 u32 sts; local
179 ret = readl_poll_timeout(amd_manager->mmio + ACP_SW_IMM_CMD_STS, sts,
180 !(sts & AMD_SDW_IMM_CMD_BUSY), ACP_DELAY_US, AMD_SDW_TIMEOUT);
187 if (sts & AMD_SDW_IMM_RES_VALID) {
194 ret = readl_poll_timeout(amd_manager->mmio + ACP_SW_IMM_CMD_STS, sts,
195 (sts & AMD_SDW_IMM_RES_VALID), ACP_DELAY_US, AMD_SDW_TIMEOUT);
205 ret = readl_poll_timeout(amd_manager->mmio + ACP_SW_IMM_CMD_STS, sts,
206 !(sts & AMD_SDW_IMM_RES_VALID), ACP_DELAY_US, AMD_SDW_TIMEOUT);
/linux-master/drivers/i2c/busses/
H A Di2c-eg20t.c596 u32 sts; local
599 sts = ioread32(p + PCH_I2CSR);
600 sts &= (I2CMAL_BIT | I2CMCF_BIT | I2CMIF_BIT);
601 if (sts & I2CMAL_BIT)
604 if (sts & I2CMCF_BIT)
608 pch_clrbit(adap->pch_base_address, PCH_I2CSR, sts);
/linux-master/drivers/net/ethernet/ti/icssg/
H A Dicss_iep.c219 * @sts: Pointer to structure representing PTP system timestamp.
227 struct ptp_system_timestamp *sts)
233 return iep->ops->gettime(iep->clockops_data, sts);
239 ptp_read_system_prets(sts);
241 ptp_read_system_postts(sts);
429 struct ptp_system_timestamp *sts)
435 ns = icss_iep_gettime(iep, sts);
226 icss_iep_gettime(struct icss_iep *iep, struct ptp_system_timestamp *sts) argument
427 icss_iep_ptp_gettimeex(struct ptp_clock_info *ptp, struct timespec64 *ts, struct ptp_system_timestamp *sts) argument
/linux-master/drivers/net/ethernet/intel/igc/
H A Digc_ptp.c93 struct ptp_system_timestamp *sts)
102 ptp_read_system_prets(sts);
105 ptp_read_system_postts(sts);
1067 struct ptp_system_timestamp *sts)
1075 ptp_read_system_prets(sts);
1078 ptp_read_system_postts(sts);
91 igc_ptp_gettimex64_i225(struct ptp_clock_info *ptp, struct timespec64 *ts, struct ptp_system_timestamp *sts) argument
1065 igc_ptp_getcyclesx64(struct ptp_clock_info *ptp, struct timespec64 *ts, struct ptp_system_timestamp *sts) argument
/linux-master/drivers/block/null_blk/
H A Dmain.c1265 blk_status_t sts = BLK_STS_OK;
1277 sts = BLK_STS_DEV_RESOURCE;
1279 return sts;
1372 blk_status_t sts;
1380 sts = null_process_zoned_cmd(cmd, op, sector, nr_sectors);
1382 sts = null_process_cmd(cmd, op, sector, nr_sectors);
1386 cmd->error = sts;
1612 blk_status_t sts = null_handle_throttled(cmd);
1614 if (sts != BLK_STS_OK)
1615 return sts;
1250 blk_status_t sts = BLK_STS_OK; local
1357 blk_status_t sts; local
1597 blk_status_t sts = null_handle_throttled(cmd); local
[all...]
H A Dzoned.c687 blk_status_t sts; local
707 sts = null_process_cmd(cmd, op, sector, nr_sectors);
709 return sts;
/linux-master/drivers/iommu/intel/
H A Ddmar.c1042 u32 ver, sts; local
1112 sts = readl(iommu->reg + DMAR_GSTS_REG);
1113 if (sts & DMA_GSTS_IRES)
1115 if (sts & DMA_GSTS_TES)
1117 if (sts & DMA_GSTS_QIES)
1685 u32 sts; local
1693 sts = readl(iommu->reg + DMAR_GSTS_REG);
1694 if (!(sts & DMA_GSTS_QIES))
1709 !(sts & DMA_GSTS_QIES), sts);
1719 u32 sts; local
[all...]
/linux-master/drivers/mtd/nand/
H A Decc-mxic.c205 u32 sts; local
207 sts = readl(mxic->regs + INTRPT_STS);
208 if (!sts)
211 if (sts & TRANS_CMPLT)
214 writel(sts, mxic->regs + INTRPT_STS);
/linux-master/drivers/net/ethernet/intel/ixgbe/
H A Dixgbe_ptp.c541 * @sts: structure to hold the system time before and after reading the PHC
548 struct ptp_system_timestamp *sts)
567 ptp_read_system_prets(sts);
569 ptp_read_system_postts(sts);
575 ptp_read_system_prets(sts);
577 ptp_read_system_postts(sts);
546 ixgbe_ptp_gettimex(struct ptp_clock_info *ptp, struct timespec64 *ts, struct ptp_system_timestamp *sts) argument
/linux-master/drivers/net/phy/
H A Dbcm-phy-ptp.c218 struct ptp_system_timestamp *sts,
227 ptp_read_system_prets(sts);
232 ptp_read_system_postts(sts);
250 struct ptp_system_timestamp *sts)
256 err = bcm_ptp_framesync_ts(priv->phydev, sts, ts, priv->nse_ctrl);
217 bcm_ptp_framesync_ts(struct phy_device *phydev, struct ptp_system_timestamp *sts, struct timespec64 *ts, u16 orig_ctrl) argument
248 bcm_ptp_gettimex(struct ptp_clock_info *info, struct timespec64 *ts, struct ptp_system_timestamp *sts) argument
/linux-master/drivers/net/ethernet/ti/
H A Dcpts.c192 struct ptp_system_timestamp *sts)
200 ptp_read_system_prets(sts);
203 ptp_read_system_postts(sts);
243 struct ptp_system_timestamp *sts)
250 cpts_update_cur_time(cpts, CPTS_EV_PUSH, sts);
191 cpts_update_cur_time(struct cpts *cpts, int match, struct ptp_system_timestamp *sts) argument
241 cpts_ptp_gettimeex(struct ptp_clock_info *ptp, struct timespec64 *ts, struct ptp_system_timestamp *sts) argument
/linux-master/drivers/char/tpm/
H A Dtpm_crb.c311 u8 sts = 0; local
315 sts |= CRB_DRV_STS_COMPLETE;
317 return sts;
/linux-master/arch/sh/kernel/cpu/sh3/
H A Dentry.S136 sts pr, r10
297 sts pr, k3 ! save original pr value in k3
348 sts pr, k3 ! save original pr value in k3
392 sts.l macl, @-r15
393 sts.l mach, @-r15
439 sts pr, k3 ! save original pr value in k3
H A Dswsusp.S94 sts pr, r0 ! save pr in r0
/linux-master/drivers/dma/
H A Dpch_dma.c300 u32 sts; local
303 sts = pdc_get_status0(pd_chan);
305 sts = pdc_get_status2(pd_chan);
308 if (sts == DMA_STATUS_IDLE)
/linux-master/drivers/net/wireless/mediatek/mt76/mt7925/
H A Dmain.c164 int sts = hweight16(phy->mt76->chainmask); local
182 u8_encode_bits(u8_get_bits(sts - 1, BIT(0)),
186 u8_encode_bits(u8_get_bits(sts - 1, GENMASK(2, 1)),
188 u8_encode_bits(sts - 1,
192 u8_encode_bits(sts - 1, IEEE80211_EHT_PHY_CAP2_SOUNDING_DIM_80MHZ_MASK) |
193 u8_encode_bits(sts - 1, IEEE80211_EHT_PHY_CAP2_SOUNDING_DIM_160MHZ_MASK);
205 u8_encode_bits(min_t(int, sts - 1, 2),

Completed in 275 milliseconds

1234567