• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/scsi/

Lines Matching refs:HostAdapter

166 #define BusLogic_MultiMasterHostAdapterP(HostAdapter) \
167 (HostAdapter->HostAdapterType == BusLogic_MultiMaster)
169 #define BusLogic_FlashPointHostAdapterP(HostAdapter) \
170 (HostAdapter->HostAdapterType == BusLogic_FlashPoint)
174 #define BusLogic_MultiMasterHostAdapterP(HostAdapter) \
177 #define BusLogic_FlashPointHostAdapterP(HostAdapter) \
871 struct BusLogic_HostAdapter *HostAdapter;
1151 static inline void BusLogic_SCSIBusReset(struct BusLogic_HostAdapter *HostAdapter)
1156 outb(ControlRegister.All, HostAdapter->IO_Address + BusLogic_ControlRegisterOffset);
1159 static inline void BusLogic_InterruptReset(struct BusLogic_HostAdapter *HostAdapter)
1164 outb(ControlRegister.All, HostAdapter->IO_Address + BusLogic_ControlRegisterOffset);
1167 static inline void BusLogic_SoftReset(struct BusLogic_HostAdapter *HostAdapter)
1172 outb(ControlRegister.All, HostAdapter->IO_Address + BusLogic_ControlRegisterOffset);
1175 static inline void BusLogic_HardReset(struct BusLogic_HostAdapter *HostAdapter)
1180 outb(ControlRegister.All, HostAdapter->IO_Address + BusLogic_ControlRegisterOffset);
1183 static inline unsigned char BusLogic_ReadStatusRegister(struct BusLogic_HostAdapter *HostAdapter)
1185 return inb(HostAdapter->IO_Address + BusLogic_StatusRegisterOffset);
1189 *HostAdapter, unsigned char Value)
1191 outb(Value, HostAdapter->IO_Address + BusLogic_CommandParameterRegisterOffset);
1194 static inline unsigned char BusLogic_ReadDataInRegister(struct BusLogic_HostAdapter *HostAdapter)
1196 return inb(HostAdapter->IO_Address + BusLogic_DataInRegisterOffset);
1199 static inline unsigned char BusLogic_ReadInterruptRegister(struct BusLogic_HostAdapter *HostAdapter)
1201 return inb(HostAdapter->IO_Address + BusLogic_InterruptRegisterOffset);
1204 static inline unsigned char BusLogic_ReadGeometryRegister(struct BusLogic_HostAdapter *HostAdapter)
1206 return inb(HostAdapter->IO_Address + BusLogic_GeometryRegisterOffset);
1215 static inline void BusLogic_StartMailboxCommand(struct BusLogic_HostAdapter *HostAdapter)
1217 BusLogic_WriteCommandParameterRegister(HostAdapter, BusLogic_ExecuteMailboxCommand);