/kernel/linux/linux-6.6/drivers/usb/fotg210/ |
H A D | fotg210-hcd.c | 177 dbg_status_buf(char *buf, unsigned len, const char *label, u32 status) in dbg_status_buf() argument 180 label, label[0] ? " " : "", status, in dbg_status_buf() 181 (status & STS_ASS) ? " Async" : "", in dbg_status_buf() 182 (status & STS_PSS) ? " Periodic" : "", in dbg_status_buf() 183 (status & STS_RECL) ? " Recl" : "", in dbg_status_buf() 184 (status & STS_HALT) ? " Halt" : "", in dbg_status_buf() 185 (status & STS_IAA) ? " IAA" : "", in dbg_status_buf() 186 (status & STS_FATAL) ? " FATAL" : "", in dbg_status_buf() 187 (status & STS_FLR) ? " FLR" : "", in dbg_status_buf() 188 (status in dbg_status_buf() 225 dbg_port_buf(char *buf, unsigned len, const char *label, int port, u32 status) dbg_port_buf() argument 1266 u32 cmd, status; fotg210_iaa_watchdog() local 1392 u32 temp, status; fotg210_hub_status_data() local 1462 u32 temp, temp1, status; fotg210_hub_control() local 2136 int status = -EINPROGRESS; qtd_copy_status() local 2230 usb_hcd_giveback_urb(fotg210_to_hcd(fotg210), urb, status); global() variable 3753 int status; qh_schedule() local 3824 int status; intr_submit() local 4162 int status; iso_stream_schedule() local 4518 int status = -EINVAL; itd_submit() local 5113 u32 status, masked_status, pcd_status = 0, cmd; fotg210_irq() local 5293 fotg210_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, int status) fotg210_urb_dequeue() argument [all...] |
/base/notification/distributed_notification_service/services/distributed/src/ |
H A D | distributed_screen_status_manager.cpp | 144 DistributedKv::Status status = kvDataManager_->GetSingleKvStore(options, appId, storeId, kvStore_); in GetKvStore() local 145 if (status != DistributedKv::Status::SUCCESS) { in GetKvStore() 146 ANS_LOGE("kvDataManager GetSingleKvStore failed ret = 0x%{public}x", status); in GetKvStore() 195 DistributedKv::Status status = kvStore_->GetEntries(prefixKey, entries); in CheckRemoteDevicesIsUsing() local 196 if (status != DistributedKv::Status::SUCCESS) { in CheckRemoteDevicesIsUsing() 197 ANS_LOGE("kvStore GetEntries() failed ret = 0x%{public}x", status); in CheckRemoteDevicesIsUsing() 244 DistributedKv::Status status = kvStore_->Put(kvStoreKey, kvStoreValue); in SetLocalScreenStatus() local 245 if (status != DistributedKv::Status::SUCCESS) { in SetLocalScreenStatus() 246 ANS_LOGE("kvStore Put() failed ret = 0x%{public}x", status); in SetLocalScreenStatus()
|
/base/security/device_auth/services/legacy/authenticators/src/account_unrelated/pake_task/pake_v1_task/pake_v1_protocol_task/ |
H A D | pake_v1_server_protocol_task.c | 80 static int PakeResponse(AsyBaseCurTask *task, PakeParams *params, const CJson *in, CJson *out, int *status) in PakeResponse() argument 84 LOGI("The message is repeated, ignore it, status: %d", task->taskStatus); in PakeResponse() 85 *status = IGNORE_MSG; in PakeResponse() 130 *status = CONTINUE; in PakeResponse() 134 static int PakeServerConfirm(AsyBaseCurTask *task, PakeParams *params, const CJson *in, CJson *out, int *status) in PakeServerConfirm() argument 142 LOGI("The message is repeated, ignore it, status: %d", task->taskStatus); in PakeServerConfirm() 143 *status = IGNORE_MSG; in PakeServerConfirm() 186 *status = FINISH; in PakeServerConfirm() 190 static int Process(struct AsyBaseCurTaskT *task, PakeParams *params, const CJson *in, CJson *out, int *status) in Process() argument 201 res = PakeResponse(task, params, in, out, status); in Process() [all...] |
/kernel/linux/linux-5.10/drivers/acpi/ |
H A D | ioapic.c | 69 acpi_status status; in acpi_is_ioapic() local 77 status = acpi_get_object_info(handle, &info); in acpi_is_ioapic() 78 if (ACPI_SUCCESS(status)) { in acpi_is_ioapic() 99 acpi_status status; in handle_ioapic_add() local 116 status = acpi_evaluate_integer(handle, "_GSB", NULL, &gsi_base); in handle_ioapic_add() 117 if (ACPI_FAILURE(status)) { in handle_ioapic_add() 203 acpi_status status, retval = AE_OK; in acpi_ioapic_add() local 205 status = acpi_walk_namespace(ACPI_TYPE_DEVICE, root_handle, in acpi_ioapic_add() 209 return ACPI_SUCCESS(status) && ACPI_SUCCESS(retval) ? 0 : -ENODEV; in acpi_ioapic_add()
|
/kernel/linux/linux-5.10/arch/arm/mach-iop32x/ |
H A D | pci.c | 52 * This routine checks the status of the last configuration cycle. If an error 60 unsigned int status; in iop3xx_pci_status() local 64 * Check the status registers. in iop3xx_pci_status() 66 status = *IOP3XX_ATUSR; in iop3xx_pci_status() 67 if (status & 0xf900) { in iop3xx_pci_status() 68 DBG("\t\t\tPCI: P0 - status = 0x%08x\n", status); in iop3xx_pci_status() 69 *IOP3XX_ATUSR = status & 0xf900; in iop3xx_pci_status() 73 status = *IOP3XX_ATUISR; in iop3xx_pci_status() 74 if (status in iop3xx_pci_status() [all...] |
/kernel/linux/linux-5.10/drivers/mtd/nand/raw/ingenic/ |
H A D | jz4740_ecc.c | 49 /* Clear interrupt status */ in jz4740_ecc_reset() 69 uint32_t reg, status; in jz4740_ecc_calculate() local 76 status = readl(ecc->base + JZ_REG_NAND_IRQ_STAT); in jz4740_ecc_calculate() 77 } while (!(status & JZ_NAND_STATUS_ENC_FINISH) && --timeout); in jz4740_ecc_calculate() 122 uint32_t reg, status, error; in jz4740_ecc_correct() local 135 status = readl(ecc->base + JZ_REG_NAND_IRQ_STAT); in jz4740_ecc_correct() 136 } while (!(status & JZ_NAND_STATUS_DEC_FINISH) && --timeout); in jz4740_ecc_correct() 145 if (status & JZ_NAND_STATUS_ERROR) { in jz4740_ecc_correct() 146 if (status & JZ_NAND_STATUS_UNCOR_ERROR) in jz4740_ecc_correct() 149 error_count = (status in jz4740_ecc_correct() [all...] |
/kernel/linux/linux-5.10/drivers/input/serio/ |
H A D | pcips2.c | 61 unsigned char status, scancode; in pcips2_interrupt() local 67 status = inb(ps2if->base + PS2_STATUS); in pcips2_interrupt() 68 if (!(status & PS2_STAT_RXFULL)) in pcips2_interrupt() 72 if (status == 0xff && scancode == 0xff) in pcips2_interrupt() 75 flag = (status & PS2_STAT_PARITY) ? 0 : SERIO_PARITY; in pcips2_interrupt() 87 unsigned char status, scancode; in pcips2_flush_input() local 90 status = inb(ps2if->base + PS2_STATUS); in pcips2_flush_input() 91 if (!(status & PS2_STAT_RXFULL)) in pcips2_flush_input() 94 if (status == 0xff && scancode == 0xff) in pcips2_flush_input()
|
/kernel/linux/linux-5.10/drivers/irqchip/ |
H A D | irq-versatile-fpga.c | 74 u32 status; in fpga_irq_handle() local 78 status = readl(f->base + IRQ_STATUS); in fpga_irq_handle() 79 if (status == 0) { in fpga_irq_handle() 85 unsigned int irq = ffs(status) - 1; in fpga_irq_handle() 87 status &= ~(1 << irq); in fpga_irq_handle() 89 } while (status); in fpga_irq_handle() 98 * status register and handles all interrupts in order from LSB first. 104 u32 status; in handle_one_fpga() local 106 while ((status = readl(f->base + IRQ_STATUS))) { in handle_one_fpga() 107 irq = ffs(status) in handle_one_fpga() [all...] |
/kernel/linux/linux-5.10/drivers/gpu/drm/panfrost/ |
H A D | panfrost_devfreq.c | 54 struct devfreq_dev_status *status) in panfrost_devfreq_get_dev_status() 60 status->current_frequency = clk_get_rate(pfdev->clock); in panfrost_devfreq_get_dev_status() 66 status->total_time = ktime_to_ns(ktime_add(pfdevfreq->busy_time, in panfrost_devfreq_get_dev_status() 69 status->busy_time = ktime_to_ns(pfdevfreq->busy_time); in panfrost_devfreq_get_dev_status() 76 status->busy_time, status->total_time, in panfrost_devfreq_get_dev_status() 77 status->busy_time / (status->total_time / 100), in panfrost_devfreq_get_dev_status() 78 status->current_frequency / 1000 / 1000); in panfrost_devfreq_get_dev_status() 53 panfrost_devfreq_get_dev_status(struct device *dev, struct devfreq_dev_status *status) panfrost_devfreq_get_dev_status() argument
|
/kernel/linux/linux-5.10/drivers/misc/ |
H A D | lattice-ecp3-config.c | 35 * The status register is 32bit revered, DONE is bit 17 from the TN1222.pdf 75 u32 status; in firmware_load() local 113 status = get_unaligned_be32(&rxbuf[4]); in firmware_load() 114 dev_dbg(&spi->dev, "FPGA Status=%08x\n", status); in firmware_load() 146 status = get_unaligned_be32(&rxbuf[4]); in firmware_load() 147 if (status == FPGA_STATUS_CLEARED) in firmware_load() 155 "Error: Timeout waiting for FPGA to clear (status=%08x)!\n", in firmware_load() 156 status); in firmware_load() 169 status = get_unaligned_be32(&rxbuf[4]); in firmware_load() 170 dev_dbg(&spi->dev, "FPGA Status=%08x\n", status); in firmware_load() [all...] |
/kernel/linux/linux-5.10/drivers/net/ethernet/samsung/sxgbe/ |
H A D | sxgbe_core.c | 50 int status = 0; in sxgbe_get_lpi_status() local 53 /* Reading this register shall clear all the LPI status bits */ in sxgbe_get_lpi_status() 57 status |= TX_ENTRY_LPI_MODE; in sxgbe_get_lpi_status() 59 status |= TX_EXIT_LPI_MODE; in sxgbe_get_lpi_status() 61 status |= RX_ENTRY_LPI_MODE; in sxgbe_get_lpi_status() 63 status |= RX_EXIT_LPI_MODE; in sxgbe_get_lpi_status() 65 return status; in sxgbe_get_lpi_status() 72 int irq_status, status = 0; in sxgbe_core_host_irq_status() local 77 status |= sxgbe_get_lpi_status(ioaddr, irq_status); in sxgbe_core_host_irq_status() 79 return status; in sxgbe_core_host_irq_status() [all...] |
/kernel/linux/linux-5.10/drivers/staging/rtl8712/ |
H A D | usb_ops.c | 32 int status; in usb_read8() local 41 status = r8712_usbctrl_vendorreq(intfpriv, request, wvalue, index, in usb_read8() 43 if (status < 0) in usb_read8() 55 int status; in usb_read16() local 64 status = r8712_usbctrl_vendorreq(intfpriv, request, wvalue, index, in usb_read16() 66 if (status < 0) in usb_read16() 78 int status; in usb_read32() local 87 status = r8712_usbctrl_vendorreq(intfpriv, request, wvalue, index, in usb_read32() 89 if (status < 0) in usb_read32()
|
/kernel/linux/linux-5.10/drivers/gpu/drm/lima/ |
H A D | lima_devfreq.c | 60 struct devfreq_dev_status *status) in lima_devfreq_get_dev_status() 66 status->current_frequency = clk_get_rate(ldev->clk_gpu); in lima_devfreq_get_dev_status() 72 status->total_time = ktime_to_ns(ktime_add(devfreq->busy_time, in lima_devfreq_get_dev_status() 74 status->busy_time = ktime_to_ns(devfreq->busy_time); in lima_devfreq_get_dev_status() 81 status->busy_time, status->total_time, in lima_devfreq_get_dev_status() 82 status->busy_time / (status->total_time / 100), in lima_devfreq_get_dev_status() 83 status->current_frequency / 1000 / 1000); in lima_devfreq_get_dev_status() 59 lima_devfreq_get_dev_status(struct device *dev, struct devfreq_dev_status *status) lima_devfreq_get_dev_status() argument
|
/kernel/linux/linux-6.6/drivers/misc/ |
H A D | lattice-ecp3-config.c | 35 * The status register is 32bit revered, DONE is bit 17 from the TN1222.pdf 75 u32 status; in firmware_load() local 113 status = get_unaligned_be32(&rxbuf[4]); in firmware_load() 114 dev_dbg(&spi->dev, "FPGA Status=%08x\n", status); in firmware_load() 146 status = get_unaligned_be32(&rxbuf[4]); in firmware_load() 147 if (status == FPGA_STATUS_CLEARED) in firmware_load() 155 "Error: Timeout waiting for FPGA to clear (status=%08x)!\n", in firmware_load() 156 status); in firmware_load() 169 status = get_unaligned_be32(&rxbuf[4]); in firmware_load() 170 dev_dbg(&spi->dev, "FPGA Status=%08x\n", status); in firmware_load() [all...] |
/kernel/linux/linux-6.6/drivers/mtd/nand/raw/ingenic/ |
H A D | jz4740_ecc.c | 49 /* Clear interrupt status */ in jz4740_ecc_reset() 69 uint32_t reg, status; in jz4740_ecc_calculate() local 76 status = readl(ecc->base + JZ_REG_NAND_IRQ_STAT); in jz4740_ecc_calculate() 77 } while (!(status & JZ_NAND_STATUS_ENC_FINISH) && --timeout); in jz4740_ecc_calculate() 122 uint32_t reg, status, error; in jz4740_ecc_correct() local 135 status = readl(ecc->base + JZ_REG_NAND_IRQ_STAT); in jz4740_ecc_correct() 136 } while (!(status & JZ_NAND_STATUS_DEC_FINISH) && --timeout); in jz4740_ecc_correct() 145 if (status & JZ_NAND_STATUS_ERROR) { in jz4740_ecc_correct() 146 if (status & JZ_NAND_STATUS_UNCOR_ERROR) in jz4740_ecc_correct() 149 error_count = (status in jz4740_ecc_correct() [all...] |
/kernel/linux/linux-6.6/drivers/net/ethernet/samsung/sxgbe/ |
H A D | sxgbe_core.c | 50 int status = 0; in sxgbe_get_lpi_status() local 53 /* Reading this register shall clear all the LPI status bits */ in sxgbe_get_lpi_status() 57 status |= TX_ENTRY_LPI_MODE; in sxgbe_get_lpi_status() 59 status |= TX_EXIT_LPI_MODE; in sxgbe_get_lpi_status() 61 status |= RX_ENTRY_LPI_MODE; in sxgbe_get_lpi_status() 63 status |= RX_EXIT_LPI_MODE; in sxgbe_get_lpi_status() 65 return status; in sxgbe_get_lpi_status() 72 int irq_status, status = 0; in sxgbe_core_host_irq_status() local 77 status |= sxgbe_get_lpi_status(ioaddr, irq_status); in sxgbe_core_host_irq_status() 79 return status; in sxgbe_core_host_irq_status() [all...] |
/kernel/linux/linux-6.6/drivers/acpi/ |
H A D | ioapic.c | 70 acpi_status status; in acpi_is_ioapic() local 78 status = acpi_get_object_info(handle, &info); in acpi_is_ioapic() 79 if (ACPI_SUCCESS(status)) { in acpi_is_ioapic() 100 acpi_status status; in handle_ioapic_add() local 117 status = acpi_evaluate_integer(handle, "_GSB", NULL, &gsi_base); in handle_ioapic_add() 118 if (ACPI_FAILURE(status)) { in handle_ioapic_add() 204 acpi_status status, retval = AE_OK; in acpi_ioapic_add() local 206 status = acpi_walk_namespace(ACPI_TYPE_DEVICE, root_handle, in acpi_ioapic_add() 210 return ACPI_SUCCESS(status) && ACPI_SUCCESS(retval) ? 0 : -ENODEV; in acpi_ioapic_add()
|
/kernel/linux/linux-6.6/drivers/ata/ |
H A D | libata-trace.c | 14 libata_trace_parse_status(struct trace_seq *p, unsigned char status) in libata_trace_parse_status() argument 19 if (status & ATA_BUSY) in libata_trace_parse_status() 21 if (status & ATA_DRDY) in libata_trace_parse_status() 23 if (status & ATA_DF) in libata_trace_parse_status() 25 if (status & ATA_DSC) in libata_trace_parse_status() 27 if (status & ATA_DRQ) in libata_trace_parse_status() 29 if (status & ATA_CORR) in libata_trace_parse_status() 31 if (status & ATA_SENSE) in libata_trace_parse_status() 33 if (status & ATA_ERR) in libata_trace_parse_status()
|
/kernel/linux/linux-6.6/include/linux/pds/ |
H A D | pds_core_if.h | 153 * @status: Status of the command (enum pds_core_status_code) 161 u8 status; member 177 * @status: Status of the command (enum pds_core_status_code) 180 u8 status; member 222 * @status: Status of the command (enum pds_core_status_code) 228 u8 status; member 249 * @status: Status of the command (enum pds_core_status_code) 252 u8 status; member 258 * @PDS_CORE_FW_INSTALL_STATUS: Firmware installation status 260 * @PDS_CORE_FW_ACTIVATE_STATUS: Firmware activate status 307 u8 status; global() member 385 u8 status; global() member 406 u8 status; global() member 445 u8 status; global() member 470 u8 status; global() member [all...] |
/kernel/linux/linux-6.6/drivers/staging/rtl8712/ |
H A D | usb_ops.c | 32 int status; in usb_read8() local 41 status = r8712_usbctrl_vendorreq(intfpriv, request, wvalue, index, in usb_read8() 43 if (status < 0) in usb_read8() 55 int status; in usb_read16() local 64 status = r8712_usbctrl_vendorreq(intfpriv, request, wvalue, index, in usb_read16() 66 if (status < 0) in usb_read16() 78 int status; in usb_read32() local 87 status = r8712_usbctrl_vendorreq(intfpriv, request, wvalue, index, in usb_read32() 89 if (status < 0) in usb_read32()
|
/kernel/linux/linux-6.6/drivers/pmdomain/sunxi/ |
H A D | sun20i-ppu.c | 53 u32 status = readl(pd->base + PD_STATUS_REG); in sun20i_ppu_pd_is_on() local 55 return FIELD_GET(PD_STATUS_STATE, status) == PD_STATE_ON; in sun20i_ppu_pd_is_on() 60 u32 state, status; in sun20i_ppu_pd_set_power() local 67 ret = readl_poll_timeout(pd->base + PD_STATUS_REG, status, in sun20i_ppu_pd_set_power() 68 !(status & PD_STATUS_BUSY), 100, 1000); in sun20i_ppu_pd_set_power() 76 ret = readl_poll_timeout(pd->base + PD_STATUS_REG, status, in sun20i_ppu_pd_set_power() 77 FIELD_GET(PD_STATUS_STATE, status) == state && in sun20i_ppu_pd_set_power() 78 (status & PD_STATUS_COMPLETE), 100, 1000); in sun20i_ppu_pd_set_power() 83 writel(status, pd->base + PD_STATUS_REG); in sun20i_ppu_pd_set_power()
|
/kernel/linux/linux-6.6/arch/x86/hyperv/ |
H A D | hv_apic.c | 113 u64 status = HV_STATUS_INVALID_PARAMETER; in __send_ipi_mask_ex() local 149 status = hv_do_rep_hypercall(HVCALL_SEND_IPI_EX, 0, nr_bank, in __send_ipi_mask_ex() 154 return hv_result_success(status); in __send_ipi_mask_ex() 162 u64 status; in __send_ipi_mask() local 220 status = hv_do_fast_hypercall16(HVCALL_SEND_IPI, ipi_arg.vector, in __send_ipi_mask() 222 return hv_result_success(status); in __send_ipi_mask() 231 u64 status; in __send_ipi_one() local 250 status = hv_do_fast_hypercall16(HVCALL_SEND_IPI, vector, BIT_ULL(vp)); in __send_ipi_one() 251 return hv_result_success(status); in __send_ipi_one()
|
/kernel/linux/linux-6.6/drivers/gpu/drm/panfrost/ |
H A D | panfrost_devfreq.c | 50 struct devfreq_dev_status *status) in panfrost_devfreq_get_dev_status() 56 status->current_frequency = clk_get_rate(pfdev->clock); in panfrost_devfreq_get_dev_status() 62 status->total_time = ktime_to_ns(ktime_add(pfdevfreq->busy_time, in panfrost_devfreq_get_dev_status() 65 status->busy_time = ktime_to_ns(pfdevfreq->busy_time); in panfrost_devfreq_get_dev_status() 72 status->busy_time, status->total_time, in panfrost_devfreq_get_dev_status() 73 status->busy_time / (status->total_time / 100), in panfrost_devfreq_get_dev_status() 74 status->current_frequency / 1000 / 1000); in panfrost_devfreq_get_dev_status() 49 panfrost_devfreq_get_dev_status(struct device *dev, struct devfreq_dev_status *status) panfrost_devfreq_get_dev_status() argument
|
/kernel/linux/linux-6.6/drivers/irqchip/ |
H A D | irq-versatile-fpga.c | 86 u32 status; in fpga_irq_handle() local 90 status = readl(f->base + IRQ_STATUS); in fpga_irq_handle() 91 if (status == 0) { in fpga_irq_handle() 97 unsigned int irq = ffs(status) - 1; in fpga_irq_handle() 99 status &= ~(1 << irq); in fpga_irq_handle() 101 } while (status); in fpga_irq_handle() 110 * status register and handles all interrupts in order from LSB first. 116 u32 status; in handle_one_fpga() local 118 while ((status = readl(f->base + IRQ_STATUS))) { in handle_one_fpga() 119 irq = ffs(status) in handle_one_fpga() [all...] |
/kernel/linux/linux-6.6/drivers/input/serio/ |
H A D | pcips2.c | 61 unsigned char status, scancode; in pcips2_interrupt() local 67 status = inb(ps2if->base + PS2_STATUS); in pcips2_interrupt() 68 if (!(status & PS2_STAT_RXFULL)) in pcips2_interrupt() 72 if (status == 0xff && scancode == 0xff) in pcips2_interrupt() 75 flag = (status & PS2_STAT_PARITY) ? 0 : SERIO_PARITY; in pcips2_interrupt() 87 unsigned char status, scancode; in pcips2_flush_input() local 90 status = inb(ps2if->base + PS2_STATUS); in pcips2_flush_input() 91 if (!(status & PS2_STAT_RXFULL)) in pcips2_flush_input() 94 if (status == 0xff && scancode == 0xff) in pcips2_flush_input()
|