/openbmc/linux/drivers/video/fbdev/ |
H A D | cg14.c | 277 static int cg14_ioctl(struct fb_info *info, unsigned int cmd, unsigned long arg) in cg14_ioctl() argument 285 switch (cmd) { in cg14_ioctl() 344 ret = sbusfb_ioctl_helper(cmd, arg, info, in cg14_ioctl()
|
/openbmc/linux/drivers/media/platform/amphion/ |
H A D | vpu_rpc.h | 63 struct vpu_rpc_event *cmd); 259 static inline int vpu_iface_send_cmd(struct vpu_core *core, struct vpu_rpc_event *cmd) in vpu_iface_send_cmd() argument 266 return ops->send_cmd_buf(core->iface, cmd); in vpu_iface_send_cmd()
|
/openbmc/linux/drivers/vdpa/vdpa_sim/ |
H A D | vdpa_sim_net.c | 106 u8 cmd) in vdpasim_handle_ctrl_mac() argument 113 switch (cmd) { in vdpasim_handle_ctrl_mac() 160 status = vdpasim_handle_ctrl_mac(vdpasim, ctrl.cmd); in vdpasim_handle_cvq()
|
/openbmc/linux/drivers/media/pci/cx88/ |
H A D | cx88-input.c | 132 u8 cmd; in cx88_ir_handle_key() local 136 cmd = (data >> 0) & 0x00ff; in cx88_ir_handle_key() 137 scancode = RC_SCANCODE_NECX(addr, cmd); in cx88_ir_handle_key()
|
/openbmc/linux/drivers/usb/serial/ |
H A D | kobil_sct.c | 58 unsigned int cmd, unsigned long arg); 536 unsigned int cmd, unsigned long arg) in kobil_ioctl() argument 547 switch (cmd) { in kobil_ioctl()
|
/openbmc/linux/include/linux/ |
H A D | ethtool.h | 33 u32 cmd; member 933 bool ethtool_virtdev_validate_cmd(const struct ethtool_link_ksettings *cmd); 935 const struct ethtool_link_ksettings *cmd,
|
/openbmc/linux/include/scsi/ |
H A D | libfc.h | 319 struct scsi_cmnd *cmd; member 889 if (fsp && fsp->cmd) in fc_fcp_is_read() 890 return fsp->cmd->sc_data_direction == DMA_FROM_DEVICE; in fc_fcp_is_read()
|
/openbmc/linux/drivers/gpu/drm/panel/ |
H A D | panel-novatek-nt36672a.c | 92 const struct nt36672a_panel_cmd *cmd = &cmds[i]; in nt36672a_send_cmds() local 94 err = mipi_dsi_dcs_write(pinfo->link, cmd->data[0], cmd->data + 1, 1); in nt36672a_send_cmds()
|
H A D | panel-samsung-s6e8aa0.c | 152 static int s6e8aa0_dcs_read(struct s6e8aa0 *ctx, u8 cmd, void *data, size_t len) in s6e8aa0_dcs_read() argument 160 ret = mipi_dsi_dcs_read(dsi, cmd, data, len); in s6e8aa0_dcs_read() 162 dev_err(ctx->dev, "error %d reading dcs seq(%#x)\n", ret, cmd); in s6e8aa0_dcs_read()
|
/openbmc/linux/arch/powerpc/include/asm/ |
H A D | kvm_book3s.h | 275 extern int kvmppc_h_pr(struct kvm_vcpu *vcpu, unsigned long cmd); 277 extern int kvmppc_hcall_impl_pr(unsigned long cmd); 278 extern int kvmppc_hcall_impl_hv_realmode(unsigned long cmd);
|
/openbmc/linux/drivers/leds/ |
H A D | leds-lp5521.c | 218 unsigned cmd; in lp5521_update_program_memory() local 231 ret = sscanf(c, "%2x", &cmd); in lp5521_update_program_memory() 235 pattern[i] = (u8)cmd; in lp5521_update_program_memory()
|
/openbmc/linux/drivers/gpu/drm/msm/adreno/ |
H A D | a3xx_gpu.c | 37 switch (submit->cmd[i].type) { in a3xx_submit() 48 OUT_RING(ring, lower_32_bits(submit->cmd[i].iova)); in a3xx_submit() 49 OUT_RING(ring, submit->cmd[i].size); in a3xx_submit()
|
/openbmc/u-boot/drivers/usb/dwc3/ |
H A D | ep0.c | 1024 u32 cmd; in dwc3_ep0_end_control_data() local 1030 cmd = DWC3_DEPCMD_ENDTRANSFER; in dwc3_ep0_end_control_data() 1031 cmd |= DWC3_DEPCMD_CMDIOC; in dwc3_ep0_end_control_data() 1032 cmd |= DWC3_DEPCMD_PARAM(dep->resource_index); in dwc3_ep0_end_control_data() 1034 ret = dwc3_send_gadget_ep_cmd(dwc, dep->number, cmd, ¶ms); in dwc3_ep0_end_control_data()
|
/openbmc/linux/drivers/watchdog/ |
H A D | watchdog_dev.c | 675 static int watchdog_ioctl_op(struct watchdog_device *wdd, unsigned int cmd, in watchdog_ioctl_op() argument 681 return wdd->ops->ioctl(wdd, cmd, arg); in watchdog_ioctl_op() 750 static long watchdog_ioctl(struct file *file, unsigned int cmd, in watchdog_ioctl() argument 768 err = watchdog_ioctl_op(wdd, cmd, arg); in watchdog_ioctl() 772 switch (cmd) { in watchdog_ioctl()
|
/openbmc/linux/drivers/s390/cio/ |
H A D | chsc_sch.c | 232 sch->schib.scsw.cmd.fctl |= SCSW_FCTL_START_FUNC; in chsc_async() 270 request->irb.scsw.cmd.cstat &= ~SCHN_STAT_CHAIN_CHECK; in chsc_examine_irb() 842 static long chsc_ioctl(struct file *filp, unsigned int cmd, in chsc_ioctl() argument 847 CHSC_MSG(2, "chsc_ioctl called, cmd=%x\n", cmd); in chsc_ioctl() 852 switch (cmd) { in chsc_ioctl()
|
/openbmc/linux/fs/coda/ |
H A D | upcall.c | 476 unsigned int cmd, struct PioctlData *data) in venus_pioctl() argument 502 inp->coda_ioctl.cmd = (cmd & ~(PIOCPARM_MASK << 16)); in venus_pioctl() 503 iocsize = ((cmd >> 16) & PIOCPARM_MASK) - sizeof(char *) - sizeof(int); in venus_pioctl() 504 inp->coda_ioctl.cmd |= (iocsize & PIOCPARM_MASK) << 16; in venus_pioctl()
|
/openbmc/linux/drivers/dma/ |
H A D | tegra210-adma.c | 110 unsigned int cmd; member 745 ch_reg->cmd = tdma_ch_read(tdc, ADMA_CH_CMD); in tegra_adma_runtime_suspend() 747 if (!ch_reg->cmd) in tegra_adma_runtime_suspend() 784 if (!ch_reg->cmd) in tegra_adma_runtime_resume() 792 tdma_ch_write(tdc, ADMA_CH_CMD, ch_reg->cmd); in tegra_adma_runtime_resume()
|
/openbmc/linux/drivers/scsi/libsas/ |
H A D | sas_ata.c | 871 struct scsi_cmnd *cmd, *n; in sas_ata_eh() local 878 list_for_each_entry_safe(cmd, n, work_q, eh_entry) { in sas_ata_eh() 879 struct domain_device *ddev = cmd_to_domain_dev(cmd); in sas_ata_eh() 881 if (!dev_is_sata(ddev) || TO_SAS_TASK(cmd)) in sas_ata_eh() 886 list_move(&cmd->eh_entry, &sata_q); in sas_ata_eh()
|
/openbmc/linux/drivers/net/wireless/ath/ath11k/ |
H A D | hal_desc.h | 893 struct hal_reo_cmd_hdr cmd; member 935 struct hal_reo_cmd_hdr cmd; member 950 struct hal_reo_cmd_hdr cmd; member 2120 struct hal_reo_cmd_hdr cmd; member 2132 struct hal_reo_cmd_hdr cmd; member
|
/openbmc/linux/tools/testing/selftests/bpf/ |
H A D | test_lpm_map.c | 683 int cmd; /* 0: update, 1: delete, 2: lookup, 3: get_next_key */ member 708 if (info->cmd == 0) { in lpm_test_command() 712 } else if (info->cmd == 1) { in lpm_test_command() 715 } else if (info->cmd == 2) { in lpm_test_command() 763 info[i].cmd = i; in test_lpm_multi_thread()
|
/openbmc/linux/drivers/net/ethernet/intel/ice/ |
H A D | ice_ethtool.c | 2255 safe_ks.base.cmd = copy_ks.base.cmd; in ice_set_link_ksettings() 2614 switch (cmd->cmd) { in ice_set_rxnfc() 2616 return ice_add_fdir_ethtool(vsi, cmd); in ice_set_rxnfc() 2618 return ice_del_fdir_ethtool(vsi, cmd); in ice_set_rxnfc() 2620 return ice_set_rss_hash_opt(vsi, cmd); in ice_set_rxnfc() 2646 switch (cmd->cmd) { in ice_get_rxnfc() 2648 cmd->data = vsi->rss_size; in ice_get_rxnfc() 2652 cmd->rule_cnt = hw->fdir_active_fltr; in ice_get_rxnfc() 2654 cmd->data = ice_get_fdir_cnt_all(hw); in ice_get_rxnfc() 2658 ret = ice_get_ethtool_fdir_entry(hw, cmd); in ice_get_rxnfc() [all …]
|
/openbmc/linux/drivers/scsi/lpfc/ |
H A D | lpfc_ct.c | 2243 uint32_t latt, cmd, err; in lpfc_cmpl_ct_disc_fdmi() local 2300 cmd = be16_to_cpu(fdmi_cmd); in lpfc_cmpl_ct_disc_fdmi() 2307 switch (cmd) { in lpfc_cmpl_ct_disc_fdmi() 2375 switch (cmd) { in lpfc_cmpl_ct_disc_fdmi() 3596 u32 cmd, hash, bucket; in lpfc_cmpl_ct_cmd_vmid() local 3602 if (cmd == SLI_CTAS_DALLAPP_ID) in lpfc_cmpl_ct_cmd_vmid() 3606 if (cmd != SLI_CTAS_DALLAPP_ID) in lpfc_cmpl_ct_cmd_vmid() 3611 if (cmd != SLI_CTAS_DALLAPP_ID) in lpfc_cmpl_ct_cmd_vmid() 3614 cmd, ctrsp->ReasonCode, in lpfc_cmpl_ct_cmd_vmid() 3620 if (cmd == SLI_CTAS_DALLAPP_ID) in lpfc_cmpl_ct_cmd_vmid() [all …]
|
/openbmc/u-boot/ |
H A D | MAINTAINERS | 442 F: cmd/dfu.c 443 F: cmd/usb_*.c 476 F: cmd/bootefi.c 477 F: cmd/efidebug.c 478 F: cmd/nvedit_efi.c 486 F: cmd/fpga.c 497 F: cmd/fdt.c 521 F: cmd/log.c 537 F: cmd/mfsl.c 677 F: cmd/rockusb.c
|
/openbmc/linux/drivers/phy/ |
H A D | phy-xgene.c | 556 u32 cmd; in sds_wr() local 558 cmd = CFG_IND_WR_CMD_MASK | CFG_IND_CMD_DONE_MASK; in sds_wr() 559 cmd = CFG_IND_ADDR_SET(cmd, addr); in sds_wr() 562 writel(cmd, csr_base + indirect_cmd_reg); in sds_wr() 578 u32 cmd; in sds_rd() local 580 cmd = CFG_IND_RD_CMD_MASK | CFG_IND_CMD_DONE_MASK; in sds_rd() 581 cmd = CFG_IND_ADDR_SET(cmd, addr); in sds_rd() 582 writel(cmd, csr_base + indirect_cmd_reg); in sds_rd()
|
/openbmc/qemu/qga/ |
H A D | commands-linux.c | 912 struct nvme_admin_cmd cmd = { in get_nvme_smart() local 927 if (ioctl(fd, NVME_IOCTL_ADMIN_CMD, &cmd)) { in get_nvme_smart() 1239 const char *cmd[4] = {"systemctl", "status", systemctl_args[mode], NULL}; in systemd_supports_mode() local 1242 status = run_process_child(cmd, errp); in systemd_supports_mode() 1263 const char *cmd[3] = {"systemctl", systemctl_args[mode], NULL}; in systemd_suspend() local 1266 status = run_process_child(cmd, &local_err); in systemd_suspend() 1292 const char *cmd[3] = {"pm-is-supported", pmutils_args[mode], NULL}; in pmutils_supports_mode() local 1295 status = run_process_child(cmd, &local_err); in pmutils_supports_mode() 1321 const char *cmd[2] = {pmutils_binaries[mode], NULL}; in pmutils_suspend() local 1324 status = run_process_child(cmd, &local_err); in pmutils_suspend()
|