/linux-6.1.9/drivers/scsi/ ! |
D | wd33c93.c | 87 #define optimum_sx_per(hostdata) (hostdata)->sx_table[1].period_ns argument 308 struct WD33C93_hostdata *hostdata; in wd33c93_queuecommand_lck() local 311 hostdata = (struct WD33C93_hostdata *) cmd->device->host->hostdata; in wd33c93_queuecommand_lck() 375 spin_lock_irq(&hostdata->lock); in wd33c93_queuecommand_lck() 377 if (!(hostdata->input_Q) || (cmd->cmnd[0] == REQUEST_SENSE)) { in wd33c93_queuecommand_lck() 378 cmd->host_scribble = (uchar *) hostdata->input_Q; in wd33c93_queuecommand_lck() 379 hostdata->input_Q = cmd; in wd33c93_queuecommand_lck() 381 for (tmp = (struct scsi_cmnd *) hostdata->input_Q; in wd33c93_queuecommand_lck() 395 spin_unlock_irq(&hostdata->lock); in wd33c93_queuecommand_lck() 415 struct WD33C93_hostdata *hostdata = in DEF_SCSI_QCMD() local [all …]
|
D | 53c700.c | 231 NCR_700_offset_period_to_sxfer(struct NCR_700_Host_Parameters *hostdata, in NCR_700_offset_period_to_sxfer() argument 236 __u8 min_xferp = (hostdata->chip710 in NCR_700_offset_period_to_sxfer() 238 __u8 max_offset = (hostdata->chip710 in NCR_700_offset_period_to_sxfer() 244 if(period < hostdata->min_period) { in NCR_700_offset_period_to_sxfer() 246 period = hostdata->min_period; in NCR_700_offset_period_to_sxfer() 248 XFERP = (period*4 * hostdata->sync_clock)/1000 - 4; in NCR_700_offset_period_to_sxfer() 263 struct NCR_700_Host_Parameters *hostdata = in NCR_700_get_SXFER() local 264 (struct NCR_700_Host_Parameters *)SDp->host->hostdata[0]; in NCR_700_get_SXFER() 266 return NCR_700_offset_period_to_sxfer(hostdata, in NCR_700_get_SXFER() 294 struct NCR_700_Host_Parameters *hostdata, struct device *dev) in NCR_700_detect() argument [all …]
|
D | NCR5380.c | 207 static int NCR5380_poll_politely2(struct NCR5380_hostdata *hostdata, in NCR5380_poll_politely2() argument 212 unsigned long n = hostdata->poll_loops; in NCR5380_poll_politely2() 296 struct NCR5380_hostdata *hostdata = shost_priv(instance); in NCR5380_print() local 345 struct NCR5380_hostdata *hostdata = shost_priv(instance); in NCR5380_print_phase() local 370 struct NCR5380_hostdata *hostdata = shost_priv(instance); in NCR5380_info() local 372 return hostdata->info; in NCR5380_info() 391 struct NCR5380_hostdata *hostdata = shost_priv(instance); in NCR5380_init() local 398 hostdata->host = instance; in NCR5380_init() 399 hostdata->id_mask = 1 << instance->this_id; in NCR5380_init() 400 hostdata->id_higher_mask = 0; in NCR5380_init() [all …]
|
D | g_NCR5380.c | 39 ioread8(hostdata->io + hostdata->offset + (reg)) 41 iowrite8(value, hostdata->io + hostdata->offset + (reg)) 117 struct NCR5380_hostdata *hostdata = shost_priv(instance); in g_NCR5380_trigger_irq() local 129 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask); in g_NCR5380_trigger_irq() 130 NCR5380_write(OUTPUT_DATA_REG, hostdata->id_mask); in g_NCR5380_trigger_irq() 151 struct NCR5380_hostdata *hostdata = shost_priv(instance); in g_NCR5380_probe_irq() local 234 struct NCR5380_hostdata *hostdata; in generic_NCR5380_init_one() local 319 hostdata = shost_priv(instance); in generic_NCR5380_init_one() 321 hostdata->board = board; in generic_NCR5380_init_one() 322 hostdata->io = iomem; in generic_NCR5380_init_one() [all …]
|
D | mac_scsi.c | 38 #define NCR5380_read(reg) in_8(hostdata->io + ((reg) << 4)) 39 #define NCR5380_write(reg, value) out_8(hostdata->io + ((reg) << 4), value) 272 static inline void write_ctrl_reg(struct NCR5380_hostdata *hostdata, u32 value) in write_ctrl_reg() argument 274 out_be32(hostdata->io + (CTRL_REG << 4), value); in write_ctrl_reg() 277 static inline int macscsi_pread(struct NCR5380_hostdata *hostdata, in macscsi_pread() argument 280 u8 __iomem *s = hostdata->pdma_io + (INPUT_DATA_REG << 4); in macscsi_pread() 284 hostdata->pdma_residual = len; in macscsi_pread() 286 while (!NCR5380_poll_politely(hostdata, BUS_AND_STATUS_REG, in macscsi_pread() 292 write_ctrl_reg(hostdata, CTRL_HANDSHAKE_MODE | in macscsi_pread() 295 bytes = mac_pdma_recv(s, d, min(hostdata->pdma_residual, 512)); in macscsi_pread() [all …]
|
D | lasi700.c | 88 struct NCR_700_Host_Parameters *hostdata; in lasi700_probe() local 91 hostdata = kzalloc(sizeof(*hostdata), GFP_KERNEL); in lasi700_probe() 92 if (!hostdata) { in lasi700_probe() 97 hostdata->dev = &dev->dev; in lasi700_probe() 99 hostdata->base = ioremap(base, 0x100); in lasi700_probe() 100 hostdata->differential = 0; in lasi700_probe() 103 hostdata->clock = LASI700_CLOCK; in lasi700_probe() 104 hostdata->force_le_on_be = 1; in lasi700_probe() 106 hostdata->clock = LASI710_CLOCK; in lasi700_probe() 107 hostdata->force_le_on_be = 0; in lasi700_probe() [all …]
|
D | sni_53c710.c | 57 struct NCR_700_Host_Parameters *hostdata; in snirm710_probe() local 67 hostdata = kzalloc(sizeof(*hostdata), GFP_KERNEL); in snirm710_probe() 68 if (!hostdata) in snirm710_probe() 71 hostdata->dev = &dev->dev; in snirm710_probe() 73 hostdata->base = ioremap(base, 0x100); in snirm710_probe() 74 hostdata->differential = 0; in snirm710_probe() 76 hostdata->clock = SNIRM710_CLOCK; in snirm710_probe() 77 hostdata->force_le_on_be = 1; in snirm710_probe() 78 hostdata->chip710 = 1; in snirm710_probe() 79 hostdata->burst_length = 4; in snirm710_probe() [all …]
|
D | bvme6000_scsi.c | 42 struct NCR_700_Host_Parameters *hostdata; in bvme6000_probe() local 47 hostdata = kzalloc(sizeof(struct NCR_700_Host_Parameters), GFP_KERNEL); in bvme6000_probe() 48 if (!hostdata) { in bvme6000_probe() 55 hostdata->base = (void __iomem *)BVME_NCR53C710_BASE; in bvme6000_probe() 56 hostdata->clock = 40; /* XXX - depends on the CPU clock! */ in bvme6000_probe() 57 hostdata->chip710 = 1; in bvme6000_probe() 58 hostdata->dmode_extra = DMODE_FC2; in bvme6000_probe() 59 hostdata->dcntl_extra = EA_710; in bvme6000_probe() 60 hostdata->ctest7_extra = CTEST7_TT1; in bvme6000_probe() 63 host = NCR_700_detect(&bvme6000_scsi_driver_template, hostdata, in bvme6000_probe() [all …]
|
D | mvme16x_scsi.c | 41 struct NCR_700_Host_Parameters *hostdata; in mvme16x_probe() local 52 hostdata = kzalloc(sizeof(struct NCR_700_Host_Parameters), GFP_KERNEL); in mvme16x_probe() 53 if (hostdata == NULL) { in mvme16x_probe() 60 hostdata->base = (void __iomem *)0xfff47000UL; in mvme16x_probe() 61 hostdata->clock = 50; /* XXX - depends on the CPU clock! */ in mvme16x_probe() 62 hostdata->chip710 = 1; in mvme16x_probe() 63 hostdata->dmode_extra = DMODE_FC2; in mvme16x_probe() 64 hostdata->dcntl_extra = EA_710; in mvme16x_probe() 65 hostdata->ctest7_extra = CTEST7_TT1; in mvme16x_probe() 68 host = NCR_700_detect(&mvme16x_scsi_driver_template, hostdata, in mvme16x_probe() [all …]
|
D | zorro7xx.c | 79 struct NCR_700_Host_Parameters *hostdata; in zorro7xx_init_one() local 98 hostdata = kzalloc(sizeof(struct NCR_700_Host_Parameters), GFP_KERNEL); in zorro7xx_init_one() 99 if (!hostdata) { in zorro7xx_init_one() 106 hostdata->base = ioremap(ioaddr, zorro_resource_len(z)); in zorro7xx_init_one() 108 hostdata->base = ZTWO_VADDR(ioaddr); in zorro7xx_init_one() 110 hostdata->clock = 50; in zorro7xx_init_one() 111 hostdata->chip710 = 1; in zorro7xx_init_one() 114 hostdata->ctest7_extra = CTEST7_TT1; in zorro7xx_init_one() 119 host = NCR_700_detect(&zorro7xx_scsi_driver_template, hostdata, in zorro7xx_init_one() 146 iounmap(hostdata->base); in zorro7xx_init_one() [all …]
|
D | a4000t.c | 39 struct NCR_700_Host_Parameters *hostdata; in amiga_a4000t_scsi_probe() local 50 hostdata = kzalloc(sizeof(struct NCR_700_Host_Parameters), in amiga_a4000t_scsi_probe() 52 if (!hostdata) { in amiga_a4000t_scsi_probe() 60 hostdata->base = ZTWO_VADDR(scsi_addr); in amiga_a4000t_scsi_probe() 61 hostdata->clock = 50; in amiga_a4000t_scsi_probe() 62 hostdata->chip710 = 1; in amiga_a4000t_scsi_probe() 63 hostdata->dmode_extra = DMODE_FC2; in amiga_a4000t_scsi_probe() 64 hostdata->dcntl_extra = EA_710; in amiga_a4000t_scsi_probe() 67 host = NCR_700_detect(&a4000t_scsi_driver_template, hostdata, in amiga_a4000t_scsi_probe() 92 kfree(hostdata); in amiga_a4000t_scsi_probe() [all …]
|
D | 53c700.h | 109 struct NCR_700_Device_Parameters *hostdata = SDp->hostdata; in NCR_700_get_sense_cmnd() local 111 return hostdata->cmnd; in NCR_700_get_sense_cmnd() 117 struct NCR_700_Device_Parameters *hostdata = SDp->hostdata; in NCR_700_set_depth() local 119 hostdata->depth = depth; in NCR_700_set_depth() 124 struct NCR_700_Device_Parameters *hostdata = SDp->hostdata; in NCR_700_get_depth() local 126 return hostdata->depth; in NCR_700_get_depth() 258 #define bE (hostdata->force_le_on_be ? 0 : 3) 259 #define bSWAP (hostdata->force_le_on_be) 260 #define bEBus (!hostdata->force_le_on_be) 483 const struct NCR_700_Host_Parameters *hostdata in NCR_700_readb() local [all …]
|
D | sim710.c | 89 struct NCR_700_Host_Parameters *hostdata = in sim710_probe_common() local 96 if(hostdata == NULL) { in sim710_probe_common() 108 hostdata->base = ioport_map(base_addr, 64); in sim710_probe_common() 109 hostdata->differential = differential; in sim710_probe_common() 110 hostdata->clock = clock; in sim710_probe_common() 111 hostdata->chip710 = 1; in sim710_probe_common() 112 hostdata->burst_length = 8; in sim710_probe_common() 115 if((host = NCR_700_detect(&sim710_driver_template, hostdata, dev)) in sim710_probe_common() 138 kfree(hostdata); in sim710_probe_common() 146 struct NCR_700_Host_Parameters *hostdata = in sim710_device_remove() local [all …]
|
D | dmx3191d.c | 25 #define NCR5380_read(reg) inb(hostdata->base + (reg)) 26 #define NCR5380_write(reg, value) outb(value, hostdata->base + (reg)) 62 struct NCR5380_hostdata *hostdata; in dmx3191d_probe_one() local 81 hostdata = shost_priv(shost); in dmx3191d_probe_one() 82 hostdata->base = io; in dmx3191d_probe_one() 119 struct NCR5380_hostdata *hostdata = shost_priv(shost); in dmx3191d_remove_one() local 120 unsigned long io = hostdata->base; in dmx3191d_remove_one()
|
D | sun3_scsi.c | 46 #define NCR5380_read(reg) in_8(hostdata->io + (reg)) 47 #define NCR5380_write(reg, value) out_8(hostdata->io + (reg), value) 220 static int sun3scsi_dma_setup(struct NCR5380_hostdata *hostdata, in sun3scsi_dma_setup() argument 273 shost_printk(KERN_ERR, hostdata->host, in sun3scsi_dma_setup() 276 NCR5380_dprint(NDEBUG_DMA, hostdata->host); in sun3scsi_dma_setup() 311 static int sun3scsi_dma_count(struct NCR5380_hostdata *hostdata, in sun3scsi_dma_count() argument 317 static inline int sun3scsi_dma_recv_setup(struct NCR5380_hostdata *hostdata, in sun3scsi_dma_recv_setup() argument 320 return sun3scsi_dma_setup(hostdata, data, count, 0); in sun3scsi_dma_recv_setup() 323 static inline int sun3scsi_dma_send_setup(struct NCR5380_hostdata *hostdata, in sun3scsi_dma_send_setup() argument 326 return sun3scsi_dma_setup(hostdata, data, count, 1); in sun3scsi_dma_send_setup() [all …]
|
D | atari_scsi.c | 184 struct NCR5380_hostdata *hostdata = shost_priv(instance); in scsi_tt_intr() local 213 atari_dma_residual = hostdata->dma_len - in scsi_tt_intr() 273 struct NCR5380_hostdata *hostdata = shost_priv(instance); in scsi_falcon_intr() local 308 atari_dma_residual = hostdata->dma_len - transferred; in scsi_falcon_intr() 320 hostdata->dma_len - atari_dma_residual); in scsi_falcon_intr() 421 static unsigned long atari_scsi_dma_setup(struct NCR5380_hostdata *hostdata, in atari_scsi_dma_setup() argument 428 hostdata->host->host_no, data, addr, count, dir); in atari_scsi_dma_setup() 485 static inline int atari_scsi_dma_recv_setup(struct NCR5380_hostdata *hostdata, in atari_scsi_dma_recv_setup() argument 488 return atari_scsi_dma_setup(hostdata, data, count, 0); in atari_scsi_dma_recv_setup() 491 static inline int atari_scsi_dma_send_setup(struct NCR5380_hostdata *hostdata, in atari_scsi_dma_send_setup() argument [all …]
|
D | NCR5380.h | 295 static inline int NCR5380_poll_politely(struct NCR5380_hostdata *hostdata, in NCR5380_poll_politely() argument 302 return NCR5380_poll_politely2(hostdata, reg, bit, val, in NCR5380_poll_politely() 314 static inline int NCR5380_dma_xfer_none(struct NCR5380_hostdata *hostdata, in NCR5380_dma_xfer_none() argument 320 static inline int NCR5380_dma_setup_none(struct NCR5380_hostdata *hostdata, in NCR5380_dma_setup_none() argument 326 static inline int NCR5380_dma_residual_none(struct NCR5380_hostdata *hostdata) in NCR5380_dma_residual_none() argument
|
/linux-6.1.9/drivers/scsi/ibmvscsi/ ! |
D | ibmvscsi.c | 110 struct ibmvscsi_host_data *hostdata); 125 struct ibmvscsi_host_data *hostdata = in ibmvscsi_handle_event() local 127 vio_disable_interrupts(to_vio_dev(hostdata->dev)); in ibmvscsi_handle_event() 128 tasklet_schedule(&hostdata->srp_task); in ibmvscsi_handle_event() 142 struct ibmvscsi_host_data *hostdata, in ibmvscsi_release_crq_queue() argument 146 struct vio_dev *vdev = to_vio_dev(hostdata->dev); in ibmvscsi_release_crq_queue() 147 free_irq(vdev->irq, (void *)hostdata); in ibmvscsi_release_crq_queue() 148 tasklet_kill(&hostdata->srp_task); in ibmvscsi_release_crq_queue() 154 dma_unmap_single(hostdata->dev, in ibmvscsi_release_crq_queue() 195 static int ibmvscsi_send_crq(struct ibmvscsi_host_data *hostdata, in ibmvscsi_send_crq() argument [all …]
|
/linux-6.1.9/drivers/scsi/arm/ ! |
D | cumana_1.c | 17 #define priv(host) ((struct NCR5380_hostdata *)(host)->hostdata) 18 #define NCR5380_read(reg) cumanascsi_read(hostdata, reg) 19 #define NCR5380_write(reg, value) cumanascsi_write(hostdata, reg, value) 44 static inline int cumanascsi_pwrite(struct NCR5380_hostdata *hostdata, in cumanascsi_pwrite() argument 48 u8 __iomem *base = hostdata->io; in cumanascsi_pwrite() 49 u8 __iomem *dma = hostdata->pdma_io + 0x2000; in cumanascsi_pwrite() 104 writeb(hostdata->ctrl | 0x40, base + CTRL); in cumanascsi_pwrite() 111 static inline int cumanascsi_pread(struct NCR5380_hostdata *hostdata, in cumanascsi_pread() argument 115 u8 __iomem *base = hostdata->io; in cumanascsi_pread() 116 u8 __iomem *dma = hostdata->pdma_io + 0x2000; in cumanascsi_pread() [all …]
|
D | oak.c | 18 #define priv(host) ((struct NCR5380_hostdata *)(host)->hostdata) 20 #define NCR5380_read(reg) readb(hostdata->io + ((reg) << 2)) 21 #define NCR5380_write(reg, value) writeb(value, hostdata->io + ((reg) << 2)) 41 static inline int oakscsi_pwrite(struct NCR5380_hostdata *hostdata, in oakscsi_pwrite() argument 44 u8 __iomem *base = hostdata->io; in oakscsi_pwrite() 56 static inline int oakscsi_pread(struct NCR5380_hostdata *hostdata, in oakscsi_pread() argument 59 u8 __iomem *base = hostdata->io; in oakscsi_pread()
|
D | powertec.c | 105 struct powertec_info *info = (struct powertec_info *)host->hostdata; in powertecscsi_terminator_ctl() 135 struct powertec_info *info = (struct powertec_info *)host->hostdata; in powertecscsi_dma_setup() 177 struct powertec_info *info = (struct powertec_info *)host->hostdata; in powertecscsi_dma_stop() 189 struct powertec_info *info = (struct powertec_info *)host->hostdata; in powertecscsi_info() 246 info = (struct powertec_info *)host->hostdata; in powertecscsi_show_info() 262 struct powertec_info *info = (struct powertec_info *)host->hostdata; in powertecscsi_show_term() 329 info = (struct powertec_info *)host->hostdata; in powertecscsi_probe() 405 struct powertec_info *info = (struct powertec_info *)host->hostdata; in powertecscsi_remove()
|
/linux-6.1.9/drivers/scsi/arcmsr/ ! |
D | arcmsr_attr.c | 69 struct AdapterControlBlock *acb = (struct AdapterControlBlock *) host->hostdata; in arcmsr_sysfs_iop_message_read() 116 struct AdapterControlBlock *acb = (struct AdapterControlBlock *) host->hostdata; in arcmsr_sysfs_iop_message_write() 164 struct AdapterControlBlock *acb = (struct AdapterControlBlock *) host->hostdata; in arcmsr_sysfs_iop_message_clear() 272 (struct AdapterControlBlock *) host->hostdata; in arcmsr_attr_host_driver_posted_cmd() 284 (struct AdapterControlBlock *) host->hostdata; in arcmsr_attr_host_driver_reset() 296 (struct AdapterControlBlock *) host->hostdata; in arcmsr_attr_host_driver_abort() 308 (struct AdapterControlBlock *) host->hostdata; in arcmsr_attr_host_fw_model() 320 (struct AdapterControlBlock *) host->hostdata; in arcmsr_attr_host_fw_version() 333 (struct AdapterControlBlock *) host->hostdata; in arcmsr_attr_host_fw_request_len() 346 (struct AdapterControlBlock *) host->hostdata; in arcmsr_attr_host_fw_numbers_queue() [all …]
|
/linux-6.1.9/include/linux/ ! |
D | logic_pio.h | 26 void *hostdata; member 31 u32 (*in)(void *hostdata, unsigned long addr, size_t dwidth); 32 void (*out)(void *hostdata, unsigned long addr, u32 val, 34 u32 (*ins)(void *hostdata, unsigned long addr, void *buffer, 36 void (*outs)(void *hostdata, unsigned long addr, const void *buffer,
|
/linux-6.1.9/drivers/scsi/bfa/ ! |
D | bfad_attr.c | 32 im_port = (struct bfad_im_port_s *) shost->hostdata[0]; in bfad_im_get_starget_port_id() 58 im_port = (struct bfad_im_port_s *) shost->hostdata[0]; in bfad_im_get_starget_node_name() 84 im_port = (struct bfad_im_port_s *) shost->hostdata[0]; in bfad_im_get_starget_port_name() 103 (struct bfad_im_port_s *) shost->hostdata[0]; in bfad_im_get_host_port_id() 117 (struct bfad_im_port_s *) shost->hostdata[0]; in bfad_im_get_host_port_type() 149 (struct bfad_im_port_s *) shost->hostdata[0]; in bfad_im_get_host_port_state() 186 (struct bfad_im_port_s *) shost->hostdata[0]; in bfad_im_get_host_active_fc4s() 205 (struct bfad_im_port_s *) shost->hostdata[0]; in bfad_im_get_host_speed() 242 (struct bfad_im_port_s *) shost->hostdata[0]; in bfad_im_get_host_fabric_name() 259 (struct bfad_im_port_s *) shost->hostdata[0]; in bfad_im_get_stats() [all …]
|
/linux-6.1.9/drivers/scsi/lpfc/ ! |
D | lpfc_attr.c | 122 struct lpfc_vport *vport = (struct lpfc_vport *)shost->hostdata; in lpfc_cmf_info_show() 322 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata; in lpfc_enable_fip_show() 758 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata; in lpfc_bg_info_show() 778 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata; in lpfc_bg_guard_err_show() 790 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata; in lpfc_bg_apptag_err_show() 802 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata; in lpfc_bg_reftag_err_show() 839 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata; in lpfc_serialnum_show() 862 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata; in lpfc_temp_sensor_show() 880 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata; in lpfc_modeldesc_show() 899 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata; in lpfc_modelname_show() [all …]
|