• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/scsi/

Lines Matching defs:HostAdapter

183 #define BusLogic_MultiMasterHostAdapterP(HostAdapter) \
184 (HostAdapter->HostAdapterType == BusLogic_MultiMaster)
186 #define BusLogic_FlashPointHostAdapterP(HostAdapter) \
187 (HostAdapter->HostAdapterType == BusLogic_FlashPoint)
191 #define BusLogic_MultiMasterHostAdapterP(HostAdapter) \
194 #define BusLogic_FlashPointHostAdapterP(HostAdapter) \
888 struct BusLogic_HostAdapter *HostAdapter;
1168 static inline void BusLogic_SCSIBusReset(struct BusLogic_HostAdapter *HostAdapter)
1173 outb(ControlRegister.All, HostAdapter->IO_Address + BusLogic_ControlRegisterOffset);
1176 static inline void BusLogic_InterruptReset(struct BusLogic_HostAdapter *HostAdapter)
1181 outb(ControlRegister.All, HostAdapter->IO_Address + BusLogic_ControlRegisterOffset);
1184 static inline void BusLogic_SoftReset(struct BusLogic_HostAdapter *HostAdapter)
1189 outb(ControlRegister.All, HostAdapter->IO_Address + BusLogic_ControlRegisterOffset);
1192 static inline void BusLogic_HardReset(struct BusLogic_HostAdapter *HostAdapter)
1197 outb(ControlRegister.All, HostAdapter->IO_Address + BusLogic_ControlRegisterOffset);
1200 static inline unsigned char BusLogic_ReadStatusRegister(struct BusLogic_HostAdapter *HostAdapter)
1202 return inb(HostAdapter->IO_Address + BusLogic_StatusRegisterOffset);
1206 *HostAdapter, unsigned char Value)
1208 outb(Value, HostAdapter->IO_Address + BusLogic_CommandParameterRegisterOffset);
1211 static inline unsigned char BusLogic_ReadDataInRegister(struct BusLogic_HostAdapter *HostAdapter)
1213 return inb(HostAdapter->IO_Address + BusLogic_DataInRegisterOffset);
1216 static inline unsigned char BusLogic_ReadInterruptRegister(struct BusLogic_HostAdapter *HostAdapter)
1218 return inb(HostAdapter->IO_Address + BusLogic_InterruptRegisterOffset);
1221 static inline unsigned char BusLogic_ReadGeometryRegister(struct BusLogic_HostAdapter *HostAdapter)
1223 return inb(HostAdapter->IO_Address + BusLogic_GeometryRegisterOffset);
1232 static inline void BusLogic_StartMailboxCommand(struct BusLogic_HostAdapter *HostAdapter)
1234 BusLogic_WriteCommandParameterRegister(HostAdapter, BusLogic_ExecuteMailboxCommand);