Searched refs:host_status (Results 1 - 25 of 34) sorted by relevance

12

/linux-master/drivers/hid/intel-ish-hid/ipc/
H A Dhw-ish-regs.h176 #define IPC_SET_HOST_READY(host_status) \
177 ((host_status) |= (IPC_HOSTCOMM_READY_BIT))
179 #define IPC_SET_HOST_ILUP(host_status) \
180 ((host_status) |= (IPC_ILUP_BIT))
182 #define IPC_CLEAR_HOST_READY(host_status) \
183 ((host_status) ^= (IPC_HOSTCOMM_READY_BIT))
185 #define IPC_CLEAR_HOST_ILUP(host_status) \
186 ((host_status) ^= (IPC_ILUP_BIT))
194 #define IPC_SET_HOST_BUSY_READING(host_status) \
195 ((host_status) |
[all...]
H A Dipc.c177 uint32_t host_status = ish_reg_read(dev, IPC_REG_HOST_COMM); local
179 IPC_SET_HOST_READY(host_status);
180 ish_reg_write(dev, IPC_REG_HOST_COMM, host_status);
191 uint32_t host_status = ish_reg_read(dev, IPC_REG_HOST_COMM); local
193 IPC_CLEAR_HOST_READY(host_status);
194 ish_reg_write(dev, IPC_REG_HOST_COMM, host_status);
199 uint32_t host_status = ish_reg_read(dev, IPC_REG_HOST_COMM); local
201 return (host_status & IPC_HOSTCOMM_READY_BIT);
/linux-master/include/scsi/
H A Dsg.h60 unsigned short host_status; /* [o] errors from host adapter */ member in struct:sg_io_hdr
89 unsigned short host_status; /* [o] errors from host adapter */ member in struct:compat_sg_io_hdr
291 unsigned int host_status:8; /* [o] host status (see "DID" codes) */ member in struct:sg_header
/linux-master/drivers/mmc/host/
H A Dtifm_sd.c501 unsigned int host_status = 0; local
507 host_status = readl(sock->addr + SOCK_MMCSD_STATUS);
508 dev_dbg(&sock->dev, "host event: host_status %x, flags %x\n",
509 host_status, host->cmd_flags);
514 if (host_status & TIFM_MMCSD_ERRMASK) {
515 writel(host_status & TIFM_MMCSD_ERRMASK,
517 if (host_status & TIFM_MMCSD_CTO)
519 else if (host_status & TIFM_MMCSD_CCRC)
523 if (host_status & TIFM_MMCSD_DTO)
525 else if (host_status
878 unsigned int host_status = 0; local
[all...]
/linux-master/drivers/memstick/host/
H A Dtifm_ms.c384 unsigned int fifo_status = 0, host_status = 0; local
390 host_status = readl(sock->addr + SOCK_MS_STATUS);
392 "data event: fifo_status %x, host_status %x, flags %x\n",
393 fifo_status, host_status, host->cmd_flags);
420 unsigned int host_status = 0; local
425 host_status = readl(sock->addr + SOCK_MS_STATUS);
426 dev_dbg(&sock->dev, "host event: host_status %x, flags %x\n",
427 host_status, host->cmd_flags);
430 if (host_status & TIFM_MS_STAT_TOE)
432 else if (host_status
[all...]
/linux-master/drivers/scsi/
H A Dqlogicpti.c1069 int host_status = DID_ERROR; local
1073 host_status = DID_OK;
1077 host_status = DID_NO_CONNECT;
1079 host_status = DID_BAD_TARGET;
1081 host_status = DID_ERROR;
1083 host_status = DID_ERROR;
1085 host_status = DID_ERROR;
1087 host_status = DID_ERROR;
1091 host_status = DID_ERROR;
1095 host_status
[all...]
H A Dncr53c8xx.c1396 ** The byte corresponding to the host_status must be stored in the
1399 ** has been entirely copied back to the CCB when the host_status is
1431 #define host_status phys.header.status[2] macro
1436 #define host_status phys.header.status[1] macro
4345 cp->host_status = cp->nego_status ? HS_NEGOTIATE : HS_BUSY;
4612 if (cp->host_status) {
4613 printk("%s: shall free an active ccb (host_status=%d)\n",
4614 ncr_name(np), cp->host_status);
4679 cp->host_status,cp->scsi_status);
4743 if (cp->host_status
[all...]
H A Dscsi_ioctl.c384 hdr->host_status = host_byte(scmd->result);
389 if (hdr->masked_status || hdr->host_status || hdr->driver_status)
639 .host_status = hdr->host_status,
687 .host_status = hdr32.host_status,
H A Dqla1280.c1286 int host_status = DID_ERROR; local
1317 host_status = DID_OK;
1322 host_status = DID_NO_CONNECT;
1324 host_status = DID_BAD_TARGET;
1326 host_status = DID_ERROR;
1328 host_status = DID_ERROR;
1330 host_status = DID_ERROR;
1332 host_status = DID_ERROR;
1336 host_status = DID_RESET;
1340 host_status
[all...]
H A Dsg.c498 old_hdr->host_status = hp->host_status;
506 switch (hp->host_status) {
592 if (hp->masked_status || hp->host_status || hp->driver_status)
794 hp->host_status = 0;
873 srp->header.host_status &
1358 srp->header.host_status = host_byte(result);
/linux-master/drivers/xen/
H A Dxen-scsiback.c285 int32_t host_status; local
289 host_status = XEN_VSCSIIF_RSLT_HOST_OK;
292 host_status = XEN_VSCSIIF_RSLT_HOST_NO_CONNECT;
295 host_status = XEN_VSCSIIF_RSLT_HOST_BUS_BUSY;
298 host_status = XEN_VSCSIIF_RSLT_HOST_TIME_OUT;
301 host_status = XEN_VSCSIIF_RSLT_HOST_BAD_TARGET;
304 host_status = XEN_VSCSIIF_RSLT_HOST_ABORT;
307 host_status = XEN_VSCSIIF_RSLT_HOST_PARITY;
310 host_status = XEN_VSCSIIF_RSLT_HOST_ERROR;
313 host_status
[all...]
/linux-master/drivers/scsi/qla2xxx/
H A Dqla_dbg.h59 __be32 host_status; member in struct:qla24xx_fw_dump
91 __be32 host_status; member in struct:qla25xx_fw_dump
130 __be32 host_status; member in struct:qla81xx_fw_dump
169 __be32 host_status; member in struct:qla83xx_fw_dump
H A Dqla_inline.h540 return ((rd_reg_dword(&reg->host_status)) ==
551 stat = rd_reg_dword(&reg->host_status);
H A Dqla_dbg.c147 stat = rd_reg_dword(&reg->host_status);
232 stat = rd_reg_dword(&reg->host_status);
316 if (rd_reg_dword(&reg->host_status) & HSRX_RISC_PAUSED)
412 stat = rd_reg_dword(&reg->u.isp2300.host_status);
1117 fw->host_status = htonl(rd_reg_dword(&reg->host_status));
1360 fw->host_status = htonl(rd_reg_dword(&reg->host_status));
1671 fw->host_status = htonl(rd_reg_dword(&reg->host_status));
[all...]
H A Dqla_nx.h847 __le32 host_status; /* host status */ member in struct:device_reg_82xx
H A Dqla_mbx.c419 uint32_t ictrl, host_status, hccr; local
429 host_status = rd_reg_dword(&reg->isp24.host_status);
434 "mb[0-3]=[0x%x 0x%x 0x%x 0x%x] mb7 0x%x host_status 0x%x hccr 0x%x\n",
436 mb[7], host_status, hccr);
587 "host_status=%#x intr_ctrl=%#x intr_status=%#x\n",
588 rd_reg_dword(&reg->isp24.host_status),
5529 stat = rd_reg_dword(&reg->host_status);
/linux-master/drivers/scsi/csiostor/
H A Dcsio_scsi.c1570 uint32_t host_status = DID_OK; local
1580 host_status = DID_ERROR;
1595 host_status = DID_ERROR;
1621 host_status = DID_ERROR;
1623 host_status = DID_ERROR;
1633 host_status = DID_ERROR;
1644 host_status = DID_ERROR;
1659 host_status = DID_REQUEUE;
1670 host_status = DID_ERROR;
1682 host_status
1745 uint32_t host_status = DID_OK; local
[all...]
/linux-master/drivers/scsi/sym53c8xx_2/
H A Dsym_hipd.c1638 if (cp->host_status == HS_WAIT)
2201 cp->host_status = hsts;
2703 cp->host_status = HS_BUSY;
3151 cp->host_status = cp->nego_status ? HS_NEGOTIATE : HS_BUSY;
3208 if (cp->host_status != HS_DISCONNECT ||
3314 if (cp->host_status != HS_DISCONNECT)
3346 if (cp->host_status != HS_BUSY &&
3347 cp->host_status != HS_NEGOTIATE)
3462 if (cp->host_status != HS_DISCONNECT)
4841 cp->host_status
[all...]
H A Dsym_glue.c182 if (cp->host_status == HS_COMPLETE &&
217 } else if (cp->host_status == HS_COMPLETE) /* Bad SCSI status */
219 else if (cp->host_status == HS_SEL_TIMEOUT) /* Selection timeout */
221 else if (cp->host_status == HS_UNEXPECTED) /* Unexpected BUS FREE*/
226 cp->host_status, cp->ssss_status,
H A Dsym_hipd.h599 #define host_status phys.head.status[1] macro
/linux-master/drivers/scsi/qla4xxx/
H A Dql4_isr.c1254 intr_status = readl(&ha->qla4_82xx_reg->host_status);
1409 intr_status = readl(&ha->qla4_82xx_reg->host_status);
1446 intr_status = readl(&ha->qla4_82xx_reg->host_status);
H A Dql4_fw.h59 __le32 host_status; /* Offset 0x500 (R): host status */ member in struct:device_reg_82xx
/linux-master/drivers/scsi/bfa/
H A Dbfad_im.c41 u8 host_status = DID_OK; local
62 host_status = DID_ERROR;
65 cmnd->result = host_status << 16 | scsi_status;
/linux-master/drivers/scsi/lpfc/
H A Dlpfc_scsi.c3822 uint32_t host_status = DID_OK; local
3847 host_status = DID_ERROR;
3858 host_status = DID_ERROR;
3920 host_status = DID_ERROR;
3938 host_status = DID_ERROR;
3945 host_status = DID_ERROR;
3975 host_status = DID_ERROR;
3982 cmnd->result = host_status << 16 | scsi_status;
/linux-master/drivers/ata/
H A Dpata_mpc52xx.c211 u32 host_status; /* ATA + 0x04 Host controller status */ member in struct:mpc52xx_ata

Completed in 649 milliseconds

12