Searched refs:status (Results 201 - 225 of 567) sorted by relevance

1234567891011>>

/u-boot/drivers/clk/at91/
H A Dclk-utmi.c42 unsigned int status; local
44 pmc_read(regmap, AT91_PMC_SR, &status);
46 return !!(status & AT91_PMC_LOCKU);
/u-boot/drivers/usb/emul/
H A Dsandbox_flash.c47 * @status_buff: Data buffer for outgoing status
54 struct umass_bbb_csw status; member in struct:sandbox_flash_priv
160 struct umass_bbb_csw *csw = &priv->status;
177 struct umass_bbb_csw *csw = &priv->status;
297 debug("status in, len=%x\n", len);
298 if (len > sizeof(priv->status))
299 len = sizeof(priv->status);
300 memcpy(buff, &priv->status, len);
/u-boot/drivers/misc/
H A Drockchip-otp.c120 u32 status; local
123 ret = readl_poll_sleep_timeout(otp->base + reg, status,
124 (status & flag), 1, OTPC_TIMEOUT);
268 u32 status = 0; local
276 status, !status, OTPC_TIMEOUT);
/u-boot/drivers/mmc/
H A Dmeson_gx_mmc.c202 uint32_t status; local
218 status = meson_read(mmc, MESON_SD_EMMC_STATUS);
219 } while(!(status & STATUS_END_OF_CHAIN) && get_timer(start) < 10000);
221 if (!(status & STATUS_END_OF_CHAIN))
223 else if (status & STATUS_RESP_TIMEOUT)
225 else if (status & STATUS_ERR_MASK)
233 /* reset status bits */
301 /* reset all status bits */
/u-boot/include/
H A Dfis.h61 u8 status; member in struct:sata_fis_d2h
99 u8 status; member in struct:sata_fis_pio_setup
/u-boot/arch/arm/mach-zynq/include/mach/
H A Dhardware.h93 u32 status; /* 0x14 */ member in struct:devcfg_regs
127 u32 status; member in struct:efuse_reg
/u-boot/include/xen/interface/
H A Devent_channel.h120 * EVTCHNOP_status: Get the current status of the communication channel which
124 * 2. Only a sufficiently-privileged domain may obtain the status of an event
139 u32 status; member in struct:evtchn_status
236 struct evtchn_status status; member in union:evtchn_op::__anon8
/u-boot/drivers/net/pfe_eth/
H A Dpfe_driver.c50 debug(" Pkt ptr(%p), len(%d), gemac_port(%d) status(%08x)\n",
51 hif_header, len, hif_header->port_no, readl(&bd->status));
92 writel(0, &bd->status);
94 debug("Rx Done : status: %08x, ctrl: %08x\n", readl(&bd->status),
172 debug("Tx Done: status: %08x, ctrl: %08x\n", readl(&bd->status),
178 writel(0, &bd->status);
212 writel(0, &bd->status);
214 debug("Tx Done : status
[all...]
/u-boot/drivers/net/octeontx2/
H A Dcgx.h93 u64 *status);
94 int cgx_lmac_link_status(struct lmac *lmac, int lmac_id, u64 *status);
/u-boot/drivers/fpga/
H A Dcyclon2.c107 "status:\t0x%p\n"
110 &fn, fn, fn->config, fn->status,
139 } while (!(*fn->status) (cookie));
/u-boot/arch/arm/mach-imx/imx9/
H A Dclock_root.c247 u32 mux, status; local
266 ret = readl_poll_timeout(&ccm_reg->clk_roots[clk_root_id].status0, status,
267 !(status & CLK_ROOT_STATUS_CHANGING), 200000);
269 printf("%s: failed, status: 0x%x\n", __func__,
277 u32 mux, status, div, rate; local
283 status = readl(&ccm_reg->clk_roots[clk_root_id].control);
285 if (status & CLK_ROOT_STATUS_OFF)
288 mux = (status & CLK_ROOT_MUX_MASK) >> CLK_ROOT_MUX_SHIFT;
289 div = status & CLK_ROOT_DIV_MASK;
/u-boot/drivers/usb/musb-new/
H A Dmusb_uboot.c32 urb->dev->status &= ~USB_ST_NOT_PROC;
50 urb->status = -EINPROGRESS;
84 } while (urb->status == -EINPROGRESS &&
87 if (urb->status == -EINPROGRESS)
90 return urb->status;
165 if (queue->urb.status == -EINPROGRESS)
176 if (queue->urb.status != -EINPROGRESS)
181 if (queue->urb.status != -EINPROGRESS)
H A Dmusb_host.h88 int musb_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, int status);
/u-boot/arch/arm/include/asm/arch-tegra/
H A Dtegra_i2c.h60 u32 status; /* 0C: DVC_STATUS_REG */ member in struct:dvc_ctlr
84 u32 status; /* 1C: I2C_I2C_STATUS */ member in struct:i2c_ctlr
/u-boot/drivers/nvme/
H A Dnvme.c132 return readw(&(nvmeq->cqes[index].status));
169 u16 status; local
179 status = nvme_read_completion_status(nvmeq, head);
180 if ((status & 0x01) == phase)
191 status >>= 1;
192 if (status) {
193 printf("ERROR: status = %x, phase = %d, head = %d\n",
194 status, phase, head);
195 status = 0;
218 return status;
566 int status; local
752 int status; local
[all...]
/u-boot/drivers/net/
H A Dfec_mxc.c276 int status; local
288 status = fec_mdio_read(eth, fec->phy_id, MII_BMSR);
289 if (status < 0) {
290 printf("%s: Autonegotiation failed. status: %d\n",
291 dev->name, status);
294 } while (!(status & BMSR_LSTATUS));
347 fec->rbd_base[i].status = FEC_RBD_EMPTY;
352 fec->rbd_base[i - 1].status = FEC_RBD_WRAP | FEC_RBD_EMPTY;
378 fec->tbd_base[0].status = 0;
379 fec->tbd_base[1].status
665 unsigned int status; local
[all...]
/u-boot/drivers/usb/musb/
H A Dam35x.h33 u32 status; member in struct:am35x_usb_regs
H A Dmusb_hcd.c128 dev->status = USB_ST_CRC_ERR;
137 dev->status = USB_ST_STALLED;
146 dev->status = USB_ST_STALLED;
156 dev->status = USB_ST_STALLED;
168 dev->status = USB_ST_CRC_ERR;
187 dev->status = USB_ST_STALLED;
193 dev->status = USB_ST_CRC_ERR;
201 dev->status = USB_ST_CRC_ERR;
219 dev->status = USB_ST_STALLED;
225 dev->status
[all...]
/u-boot/drivers/i2c/
H A Dat91_i2c.h70 u32 status; member in struct:at91_i2c_bus
/u-boot/include/xen/interface/io/
H A Dblkif.h669 s16 status; /* BLKIF_RSP_??? */ member in struct:blkif_response
/u-boot/arch/arm/mach-davinci/include/mach/
H A Dda8xx-usb.h32 dv_reg status; member in struct:da8xx_usb_regs
/u-boot/drivers/ddr/marvell/a38x/
H A Dddr3_init.h26 int status; \
27 status = orig_func; \
28 if (MV_OK != status) \
29 return status; \
/u-boot/lib/lzma/
H A DLzmaDec.c735 ELzmaFinishMode finishMode, ELzmaStatus *status)
741 *status = LZMA_STATUS_NOT_SPECIFIED;
753 *status = LZMA_STATUS_NEEDS_MORE_INPUT;
768 *status = LZMA_STATUS_MAYBE_FINISHED_WITHOUT_MARK;
773 *status = LZMA_STATUS_NOT_FINISHED;
778 *status = LZMA_STATUS_NOT_FINISHED;
799 *status = LZMA_STATUS_NEEDS_MORE_INPUT;
804 *status = LZMA_STATUS_NOT_FINISHED;
831 *status = LZMA_STATUS_NEEDS_MORE_INPUT;
836 *status
734 LzmaDec_DecodeToDic(CLzmaDec *p, SizeT dicLimit, const Byte *src, SizeT *srcLen, ELzmaFinishMode finishMode, ELzmaStatus *status) argument
855 LzmaDec_DecodeToBuf(CLzmaDec *p, Byte *dest, SizeT *destLen, const Byte *src, SizeT *srcLen, ELzmaFinishMode finishMode, ELzmaStatus *status) argument
984 LzmaDecode(Byte *dest, SizeT *destLen, const Byte *src, SizeT *srcLen, const Byte *propData, unsigned propSize, ELzmaFinishMode finishMode, ELzmaStatus *status, ISzAlloc *alloc) argument
[all...]
/u-boot/drivers/power/pmic/
H A Dab8500.c115 u8 status; local
147 ret = prcmu_tcdm_readb(priv->regmap, PRCM_ACK_MB5_I2C_STATUS, &status);
161 if (status != expected_status) {
172 printf("%s: return status %d\n", __func__, status);
/u-boot/arch/arm/mach-omap2/omap3/
H A Dboot.c50 /* Grab the first 5 bits of the status register for SYS_BOOT. */
51 sys_boot = readl(&ctrl_base->status) & ((1 << 5) - 1);

Completed in 182 milliseconds

1234567891011>>