Searched refs:status (Results 26 - 50 of 567) sorted by relevance

1234567891011>>

/u-boot/include/
H A Dscmi_protocols.h74 * @status: SCMI command status
78 s32 status; member in struct:scmi_protocol_version_out
85 * @status: SCMI command status
89 s32 status; member in struct:scmi_protocol_attrs_out
101 * @status: SCMI command status
105 s32 status; member in struct:scmi_protocol_msg_attrs_out
113 * @status
117 s32 status; member in struct:scmi_base_discover_vendor_out
128 s32 status; member in struct:scmi_base_discover_impl_version_out
140 s32 status; member in struct:scmi_base_discover_list_protocols_out
153 s32 status; member in struct:scmi_base_discover_agent_out
573 s32 status; member in struct:scmi_pwd_protocol_attrs_out
588 s32 status; member in struct:scmi_pwd_protocol_msg_attrs_out
601 s32 status; member in struct:scmi_pwd_attrs_out
632 s32 status; member in struct:scmi_pwd_state_get_out
644 s32 status; member in struct:scmi_pwd_name_get_out
751 s32 status; member in struct:scmi_clk_protocol_attr_out
770 s32 status; member in struct:scmi_clk_attribute_out
790 s32 status; member in struct:scmi_clk_state_out
809 s32 status; member in struct:scmi_clk_rate_get_out
833 s32 status; member in struct:scmi_clk_rate_set_out
870 s32 status; member in struct:scmi_rd_attr_out
893 s32 status; member in struct:scmi_rd_reset_out
929 s32 status; member in struct:scmi_voltd_attr_out
949 s32 status; member in struct:scmi_voltd_config_set_out
966 s32 status; member in struct:scmi_voltd_config_get_out
987 s32 status; member in struct:scmi_voltd_level_set_out
1004 s32 status; member in struct:scmi_voltd_level_get_out
[all...]
/u-boot/lib/efi_loader/
H A Defi_rng.c28 * Return: status code
56 * Return: status code
103 * Return: status code
111 efi_status_t status = EFI_SUCCESS; local
119 status = EFI_INVALID_PARAMETER;
126 status = EFI_UNSUPPORTED;
134 status = EFI_UNSUPPORTED;
141 status = EFI_DEVICE_ERROR;
146 return EFI_EXIT(status);
160 * Return: An error status i
[all...]
/u-boot/drivers/net/phy/
H A Dxilinx_phy.c37 int status = 0; local
48 status = phy_read(phydev, MDIO_DEVAD_NONE, MII_LPA);
49 status = status & MII_PHY_STATUS_SPD_MASK;
51 if (status & MII_PHY_STATUS_FULLDUPLEX)
56 switch (status) {
/u-boot/drivers/mtd/nand/
H A Dbbt.c72 * nanddev_bbt_get_block_status() - Return the status of an eraseblock
76 * Return: a positive number nand_bbt_block_status status or -%ERANGE if @entry
86 unsigned long status; local
91 status = pos[0] >> offs;
93 status |= pos[1] << (BITS_PER_LONG - offs);
95 return status & GENMASK(bits_per_block - 1, 0);
100 * nanddev_bbt_set_block_status() - Update the status of an eraseblock in the
104 * @status: the new status
113 enum nand_bbt_block_status status)
112 nanddev_bbt_set_block_status(struct nand_device *nand, unsigned int entry, enum nand_bbt_block_status status) argument
[all...]
H A Dcore.c33 int status; local
36 status = nanddev_bbt_get_block_status(nand, entry);
37 /* Lazy block status retrieval */
38 if (status == NAND_BBT_BLOCK_STATUS_UNKNOWN) {
40 status = NAND_BBT_BLOCK_FACTORY_BAD;
42 status = NAND_BBT_BLOCK_GOOD;
44 nanddev_bbt_set_block_status(nand, entry, status);
47 if (status == NAND_BBT_BLOCK_WORN ||
48 status == NAND_BBT_BLOCK_FACTORY_BAD)
112 int status; local
[all...]
/u-boot/arch/x86/lib/
H A Dinterrupts.c51 int status; local
63 status = disable_interrupts();
72 if (status)
80 int status; local
87 status = disable_interrupts();
95 if (status)
/u-boot/arch/arm/mach-socfpga/include/mach/
H A Dmisc.h48 void force_periph_program(unsigned int status);
51 void set_regular_boot(unsigned int status);
/u-boot/arch/arm/mach-nexell/
H A Dreset.c23 void nx_rstcon_setrst(u32 rstindex, enum rstcon status) argument
31 curstat |= (status & 0x01) << bitpos;
/u-boot/drivers/firmware/scmi/
H A Dbase.c44 if (out.status)
45 return scmi_to_linux_errno(out.status);
94 if (out.status)
95 return scmi_to_linux_errno(out.status);
131 if (out.status)
132 return scmi_to_linux_errno(out.status);
166 if (out.status)
167 return scmi_to_linux_errno(out.status);
204 if (out.status)
205 return scmi_to_linux_errno(out.status);
371 s32 status; local
416 s32 status; local
454 s32 status; local
[all...]
/u-boot/drivers/crypto/nuvoton/
H A Dnpcm_sha.c108 int npcm_sha_check(int status) argument
110 if (status != 0) {
112 return status;
135 int status; local
142 status = SHA_Update(&handle, inbuff, len);
143 npcm_sha_check(status);
144 status = SHA_Finish(&handle, hashdigest);
145 npcm_sha_check(status);
237 int status; local
239 status
321 int status; local
412 int status; local
572 int status; local
[all...]
/u-boot/drivers/tpm/
H A Dtpm_tis_st33zp24_i2c.c70 int status; local
74 status = st33zp24_i2c_write8_reg(dev, tpm_register, &data, 1);
75 if (status < 0)
76 return status;
132 u8 status; local
134 status = st33zp24_i2c_read(dev, TPM_ACCESS, &data, 1);
135 if (!status && (data &
198 int burstcnt, status; local
206 status = st33zp24_i2c_read(dev, tpm_reg, &temp, 1);
207 if (status <
246 st33zp24_i2c_wait_for_stat(struct udevice *dev, u8 mask, unsigned long timeout, int *status) argument
278 int size = 0, burstcnt, len, ret, status; local
356 int burstcnt, ret, status; local
[all...]
/u-boot/include/xen/
H A Dgnttab.h19 const char *gnttabop_error(int16_t status);
/u-boot/arch/x86/include/asm/fsp1/
H A Dfsp_support.h33 * @status: Always 0
38 void fsp_continue(u32 status, void *hob_list);
/u-boot/drivers/crypto/fsl/
H A Djr.h60 uint32_t status; member in struct:op_ring
64 void (*callback)(uint32_t status, void *arg);
116 uint32_t status; member in struct:result
132 void caam_jr_strstatus(u32 status);
/u-boot/drivers/demo/
H A Ddemo-uclass.c33 int demo_status(struct udevice *dev, int *status) argument
37 if (!ops->status)
40 return ops->status(dev, status);
/u-boot/arch/arc/lib/
H A Dinterrupts.c25 int status = read_aux_reg(ARC_AUX_STATUS32); local
26 int state = (status & (E1_MASK | E2_MASK)) ? 1 : 0;
28 status &= ~(E1_MASK | E2_MASK);
30 __asm__("flag %0" : : "r" (status));
36 unsigned int status = read_aux_reg(ARC_AUX_STATUS32); local
38 status |= E1_MASK | E2_MASK;
40 __asm__("flag %0" : : "r" (status));
/u-boot/arch/arm/mach-socfpga/
H A Dmisc_arria10.c138 * This flag is used to force periph RBF program regardless FPGA status
142 void force_periph_program(unsigned int status) argument
144 if (status)
159 unsigned int status; local
161 status = readl(socfpga_get_sysmgr_addr() +
164 if (status == PERIPH_RBF_PROG_FORCE)
176 void set_regular_boot(unsigned int status) argument
178 if (status)
193 unsigned int status; local
195 status
[all...]
H A Dscan_manager.c40 * Function to check IO scan chain engine status and wait if the engine is
46 u32 status; local
50 status = readl(&scan_manager_base->stat);
51 if (!(status & mask))
198 int status = 0; local
201 status |= scan_mgr_io_scan_chain_prg(0);
202 status |= scan_mgr_io_scan_chain_prg(1);
203 status |= scan_mgr_io_scan_chain_prg(2);
204 status |= scan_mgr_io_scan_chain_prg(3);
205 return status;
[all...]
/u-boot/drivers/hwspinlock/
H A Dstm32_hwspinlock.c27 u32 status; local
32 status = readl(priv->base + index * sizeof(u32));
33 if (status == (STM32_MUTEX_LOCK_BIT | STM32_MUTEX_COREID))
39 status = readl(priv->base + index * sizeof(u32));
40 if (status != (STM32_MUTEX_LOCK_BIT | STM32_MUTEX_COREID))
/u-boot/include/xen/interface/
H A Dgrant_table.h231 * is a negative status code.
252 s16 status; /* GNTST_* */ member in struct:gnttab_map_grant_ref
277 s16 status; /* GNTST_* */ member in struct:gnttab_unmap_grant_ref
297 s16 status; /* GNTST_* */ member in struct:gnttab_setup_table
313 s16 status; /* GNTST_* */ member in struct:gnttab_dump_table
333 s16 status; member in struct:gnttab_transfer
375 s16 status; member in struct:gnttab_copy
394 s16 status; /* GNTST_* */ member in struct:gnttab_query_size
417 s16 status; /* GNTST_* */ member in struct:gnttab_unmap_and_replace
439 * status fo
455 s16 status; /* GNTST_* */ member in struct:gnttab_get_status_frames
[all...]
/u-boot/drivers/mtd/nand/spi/
H A Dxtx.c73 u8 status)
75 status = status & XT26G0XA_STATUS_ECC_MASK;
77 switch (status) {
89 if (status > XT26G0XA_STATUS_ECC_UNCOR_ERROR)
93 return status >> 2;
126 u8 status)
128 switch (FIELD_GET(STATUS_ECC_MASK, status)) {
134 return 4 + FIELD_GET(XT26XXXD_STATUS_ECC3_ECC2_MASK, status);
72 xt26g0xa_ecc_get_status(struct spinand_device *spinand, u8 status) argument
125 xt26xxxd_ecc_get_status(struct spinand_device *spinand, u8 status) argument
/u-boot/drivers/crypto/
H A Dace_sha.c126 int i, status; local
134 status = readl(&reg->hash_status);
135 if ((status & ACE_HASH_SEEDSETTING_MASK) ||
136 (status & ACE_HASH_PRNGERROR_MASK))
147 int i, status; local
148 unsigned int seed = (unsigned int)&status;
159 status = readl(&reg->hash_status);
160 if (status & ACE_HASH_PRNGDONE_MASK)
162 if (status & ACE_HASH_PRNGERROR_MASK) {
/u-boot/drivers/virtio/
H A Dvirtio_sandbox.c20 u8 status; member in struct:virtio_sandbox_priv
40 static int virtio_sandbox_get_status(struct udevice *udev, u8 *status) argument
44 *status = priv->status;
49 static int virtio_sandbox_set_status(struct udevice *udev, u8 status) argument
53 /* We should never be setting status to 0 */
54 WARN_ON(status == 0);
56 priv->status = status;
65 /* 0 status mean
[all...]
/u-boot/include/linux/usb/
H A Dusb_urb_compat.h16 int (*urb_dequeue)(struct usb_hcd *hcd, struct urb *urb, int status);
51 int status; /* (return) non-ISO status */ member in struct:urb
67 #define usb_hcd_check_unlink_urb(hdc, urb, status) 0
71 int status)
73 urb->status = status;
69 usb_hcd_giveback_urb(struct usb_hcd *hcd, struct urb *urb, int status) argument
/u-boot/board/xilinx/zynq/
H A Dcmds.c154 int status; local
178 status = zynq_pow_mod((u32 *)key, (u32 *)buf);
179 if (status == -1) {
181 return status;
184 status = zynq_pad_and_check((u8 *)buf, (u8 *)hash);
187 return status;
199 u32 status; local
231 status = zynq_rsa_verify_key(&public_key, signature_ptr,
234 if (status)
235 return status;
259 u32 silicon_ver, image_base_addr, status; local
442 int status; local
[all...]

Completed in 391 milliseconds

1234567891011>>