xref: /openbmc/linux/include/scsi/scsi_host.h (revision 46eeaa11bdd1bc9e077bdf741d32ca7235d263c6)
1b2441318SGreg Kroah-Hartman /* SPDX-License-Identifier: GPL-2.0 */
21da177e4SLinus Torvalds #ifndef _SCSI_SCSI_HOST_H
31da177e4SLinus Torvalds #define _SCSI_SCSI_HOST_H
41da177e4SLinus Torvalds 
51da177e4SLinus Torvalds #include <linux/device.h>
61da177e4SLinus Torvalds #include <linux/list.h>
71da177e4SLinus Torvalds #include <linux/types.h>
81da177e4SLinus Torvalds #include <linux/workqueue.h>
90b950672SArjan van de Ven #include <linux/mutex.h>
100ffddfbbSAl Viro #include <linux/seq_file.h>
11d285203cSChristoph Hellwig #include <linux/blk-mq.h>
124660c8edSJames Bottomley #include <scsi/scsi.h>
131da177e4SLinus Torvalds 
141da177e4SLinus Torvalds struct block_device;
157dfdc9a5SChristoph Hellwig struct completion;
161da177e4SLinus Torvalds struct module;
171da177e4SLinus Torvalds struct scsi_cmnd;
181da177e4SLinus Torvalds struct scsi_device;
19a283bd37SJames Bottomley struct scsi_target;
201da177e4SLinus Torvalds struct Scsi_Host;
211da177e4SLinus Torvalds struct scsi_transport_template;
221da177e4SLinus Torvalds 
231da177e4SLinus Torvalds 
2465e8617fSMing Lin #define SG_ALL	SG_CHUNK_SIZE
251da177e4SLinus Torvalds 
265dc2b89eSFUJITA Tomonori #define MODE_UNKNOWN 0x00
275dc2b89eSFUJITA Tomonori #define MODE_INITIATOR 0x01
285dc2b89eSFUJITA Tomonori #define MODE_TARGET 0x02
291da177e4SLinus Torvalds 
30dee7121eSBart Van Assche /**
31dee7121eSBart Van Assche  * enum scsi_timeout_action - How to handle a command that timed out.
32dee7121eSBart Van Assche  * @SCSI_EH_DONE: The command has already been completed.
33dee7121eSBart Van Assche  * @SCSI_EH_RESET_TIMER: Reset the timer and continue waiting for completion.
34dee7121eSBart Van Assche  * @SCSI_EH_NOT_HANDLED: The command has not yet finished. Abort the command.
35dee7121eSBart Van Assche  */
36dee7121eSBart Van Assche enum scsi_timeout_action {
37dee7121eSBart Van Assche 	SCSI_EH_DONE,
38dee7121eSBart Van Assche 	SCSI_EH_RESET_TIMER,
39dee7121eSBart Van Assche 	SCSI_EH_NOT_HANDLED,
40dee7121eSBart Van Assche };
41dee7121eSBart Van Assche 
421da177e4SLinus Torvalds struct scsi_host_template {
439ebb4d70SMing Lei 	/*
449ebb4d70SMing Lei 	 * Put fields referenced in IO submission path together in
459ebb4d70SMing Lei 	 * same cacheline
469ebb4d70SMing Lei 	 */
471da177e4SLinus Torvalds 
481da177e4SLinus Torvalds 	/*
499ebb4d70SMing Lei 	 * Additional per-command data allocated for the driver.
501da177e4SLinus Torvalds 	 */
519ebb4d70SMing Lei 	unsigned int cmd_size;
5265ca846aSBart Van Assche 
531da177e4SLinus Torvalds 	/*
541da177e4SLinus Torvalds 	 * The queuecommand function is used to queue up a scsi
551da177e4SLinus Torvalds 	 * command block to the LLDD.  When the driver finished
561da177e4SLinus Torvalds 	 * processing the command the done callback is invoked.
571da177e4SLinus Torvalds 	 *
588930a6c2SPaolo Bonzini 	 * If queuecommand returns 0, then the driver has accepted the
598930a6c2SPaolo Bonzini 	 * command.  It must also push it to the HBA if the scsi_cmnd
608930a6c2SPaolo Bonzini 	 * flag SCMD_LAST is set, or if the driver does not implement
618930a6c2SPaolo Bonzini 	 * commit_rqs.  The done() function must be called on the command
621da177e4SLinus Torvalds 	 * when the driver has finished with it. (you may call done on the
631da177e4SLinus Torvalds 	 * command before queuecommand returns, but in this case you
641da177e4SLinus Torvalds 	 * *must* return 0 from queuecommand).
651da177e4SLinus Torvalds 	 *
661da177e4SLinus Torvalds 	 * Queuecommand may also reject the command, in which case it may
671da177e4SLinus Torvalds 	 * not touch the command and must not call done() for it.
681da177e4SLinus Torvalds 	 *
691da177e4SLinus Torvalds 	 * There are two possible rejection returns:
701da177e4SLinus Torvalds 	 *
711da177e4SLinus Torvalds 	 *   SCSI_MLQUEUE_DEVICE_BUSY: Block this device temporarily, but
721da177e4SLinus Torvalds 	 *   allow commands to other devices serviced by this host.
731da177e4SLinus Torvalds 	 *
741da177e4SLinus Torvalds 	 *   SCSI_MLQUEUE_HOST_BUSY: Block all devices served by this
751da177e4SLinus Torvalds 	 *   host temporarily.
761da177e4SLinus Torvalds 	 *
771da177e4SLinus Torvalds          * For compatibility, any other non-zero return is treated the
781da177e4SLinus Torvalds          * same as SCSI_MLQUEUE_HOST_BUSY.
791da177e4SLinus Torvalds 	 *
801da177e4SLinus Torvalds 	 * NOTE: "temporarily" means either until the next command for#
811da177e4SLinus Torvalds 	 * this device/host completes, or a period of time determined by
821da177e4SLinus Torvalds 	 * I/O pressure in the system if there are no other outstanding
831da177e4SLinus Torvalds 	 * commands.
841da177e4SLinus Torvalds 	 *
851da177e4SLinus Torvalds 	 * STATUS: REQUIRED
861da177e4SLinus Torvalds 	 */
87f281233dSJeff Garzik 	int (* queuecommand)(struct Scsi_Host *, struct scsi_cmnd *);
881da177e4SLinus Torvalds 
891da177e4SLinus Torvalds 	/*
908930a6c2SPaolo Bonzini 	 * The commit_rqs function is used to trigger a hardware
918930a6c2SPaolo Bonzini 	 * doorbell after some requests have been queued with
928930a6c2SPaolo Bonzini 	 * queuecommand, when an error is encountered before sending
938930a6c2SPaolo Bonzini 	 * the request with SCMD_LAST set.
948930a6c2SPaolo Bonzini 	 *
958930a6c2SPaolo Bonzini 	 * STATUS: OPTIONAL
968930a6c2SPaolo Bonzini 	 */
978930a6c2SPaolo Bonzini 	void (*commit_rqs)(struct Scsi_Host *, u16);
988930a6c2SPaolo Bonzini 
999ebb4d70SMing Lei 	struct module *module;
1009ebb4d70SMing Lei 	const char *name;
1019ebb4d70SMing Lei 
1029ebb4d70SMing Lei 	/*
1039ebb4d70SMing Lei 	 * The info function will return whatever useful information the
1049ebb4d70SMing Lei 	 * developer sees fit.  If not provided, then the name field will
1059ebb4d70SMing Lei 	 * be used instead.
1069ebb4d70SMing Lei 	 *
1079ebb4d70SMing Lei 	 * Status: OPTIONAL
1089ebb4d70SMing Lei 	 */
1099ebb4d70SMing Lei 	const char *(*info)(struct Scsi_Host *);
1109ebb4d70SMing Lei 
1119ebb4d70SMing Lei 	/*
1129ebb4d70SMing Lei 	 * Ioctl interface
1139ebb4d70SMing Lei 	 *
1149ebb4d70SMing Lei 	 * Status: OPTIONAL
1159ebb4d70SMing Lei 	 */
1169ebb4d70SMing Lei 	int (*ioctl)(struct scsi_device *dev, unsigned int cmd,
1179ebb4d70SMing Lei 		     void __user *arg);
1189ebb4d70SMing Lei 
1199ebb4d70SMing Lei 
1209ebb4d70SMing Lei #ifdef CONFIG_COMPAT
1219ebb4d70SMing Lei 	/*
1229ebb4d70SMing Lei 	 * Compat handler. Handle 32bit ABI.
1239ebb4d70SMing Lei 	 * When unknown ioctl is passed return -ENOIOCTLCMD.
1249ebb4d70SMing Lei 	 *
1259ebb4d70SMing Lei 	 * Status: OPTIONAL
1269ebb4d70SMing Lei 	 */
1279ebb4d70SMing Lei 	int (*compat_ioctl)(struct scsi_device *dev, unsigned int cmd,
1289ebb4d70SMing Lei 			    void __user *arg);
1299ebb4d70SMing Lei #endif
1309ebb4d70SMing Lei 
1319ebb4d70SMing Lei 	int (*init_cmd_priv)(struct Scsi_Host *shost, struct scsi_cmnd *cmd);
1329ebb4d70SMing Lei 	int (*exit_cmd_priv)(struct Scsi_Host *shost, struct scsi_cmnd *cmd);
1339ebb4d70SMing Lei 
1348930a6c2SPaolo Bonzini 	/*
1351da177e4SLinus Torvalds 	 * This is an error handling strategy routine.  You don't need to
1361da177e4SLinus Torvalds 	 * define one of these if you don't want to - there is a default
1371da177e4SLinus Torvalds 	 * routine that is present that should work in most cases.  For those
1381da177e4SLinus Torvalds 	 * driver authors that have the inclination and ability to write their
1391da177e4SLinus Torvalds 	 * own strategy routine, this is where it is specified.  Note - the
1401da177e4SLinus Torvalds 	 * strategy routine is *ALWAYS* run in the context of the kernel eh
1411da177e4SLinus Torvalds 	 * thread.  Thus you are guaranteed to *NOT* be in an interrupt
1421da177e4SLinus Torvalds 	 * handler when you execute this, and you are also guaranteed to
1431da177e4SLinus Torvalds 	 * *NOT* have any other commands being queued while you are in the
1441da177e4SLinus Torvalds 	 * strategy routine. When you return from this function, operations
1451da177e4SLinus Torvalds 	 * return to normal.
1461da177e4SLinus Torvalds 	 *
1471da177e4SLinus Torvalds 	 * See scsi_error.c scsi_unjam_host for additional comments about
1481da177e4SLinus Torvalds 	 * what this function should and should not be attempting to do.
1491da177e4SLinus Torvalds 	 *
1501da177e4SLinus Torvalds 	 * Status: REQUIRED	(at least one of them)
1511da177e4SLinus Torvalds 	 */
1521da177e4SLinus Torvalds 	int (* eh_abort_handler)(struct scsi_cmnd *);
1531da177e4SLinus Torvalds 	int (* eh_device_reset_handler)(struct scsi_cmnd *);
15430bd7df8SMike Christie 	int (* eh_target_reset_handler)(struct scsi_cmnd *);
1551da177e4SLinus Torvalds 	int (* eh_bus_reset_handler)(struct scsi_cmnd *);
1561da177e4SLinus Torvalds 	int (* eh_host_reset_handler)(struct scsi_cmnd *);
1571da177e4SLinus Torvalds 
1581da177e4SLinus Torvalds 	/*
1591da177e4SLinus Torvalds 	 * Before the mid layer attempts to scan for a new device where none
1601da177e4SLinus Torvalds 	 * currently exists, it will call this entry in your driver.  Should
1611da177e4SLinus Torvalds 	 * your driver need to allocate any structs or perform any other init
1621da177e4SLinus Torvalds 	 * items in order to send commands to a currently unused target/lun
1631da177e4SLinus Torvalds 	 * combo, then this is where you can perform those allocations.  This
1641da177e4SLinus Torvalds 	 * is specifically so that drivers won't have to perform any kind of
1651da177e4SLinus Torvalds 	 * "is this a new device" checks in their queuecommand routine,
1661da177e4SLinus Torvalds 	 * thereby making the hot path a bit quicker.
1671da177e4SLinus Torvalds 	 *
1681da177e4SLinus Torvalds 	 * Return values: 0 on success, non-0 on failure
1691da177e4SLinus Torvalds 	 *
1701da177e4SLinus Torvalds 	 * Deallocation:  If we didn't find any devices at this ID, you will
1711da177e4SLinus Torvalds 	 * get an immediate call to slave_destroy().  If we find something
1721da177e4SLinus Torvalds 	 * here then you will get a call to slave_configure(), then the
1731da177e4SLinus Torvalds 	 * device will be used for however long it is kept around, then when
1741da177e4SLinus Torvalds 	 * the device is removed from the system (or * possibly at reboot
1751da177e4SLinus Torvalds 	 * time), you will then get a call to slave_destroy().  This is
1761da177e4SLinus Torvalds 	 * assuming you implement slave_configure and slave_destroy.
1771da177e4SLinus Torvalds 	 * However, if you allocate memory and hang it off the device struct,
1781da177e4SLinus Torvalds 	 * then you must implement the slave_destroy() routine at a minimum
1791da177e4SLinus Torvalds 	 * in order to avoid leaking memory
1801da177e4SLinus Torvalds 	 * each time a device is tore down.
1811da177e4SLinus Torvalds 	 *
1821da177e4SLinus Torvalds 	 * Status: OPTIONAL
1831da177e4SLinus Torvalds 	 */
1841da177e4SLinus Torvalds 	int (* slave_alloc)(struct scsi_device *);
1851da177e4SLinus Torvalds 
1861da177e4SLinus Torvalds 	/*
1871da177e4SLinus Torvalds 	 * Once the device has responded to an INQUIRY and we know the
1881da177e4SLinus Torvalds 	 * device is online, we call into the low level driver with the
1891da177e4SLinus Torvalds 	 * struct scsi_device *.  If the low level device driver implements
1901da177e4SLinus Torvalds 	 * this function, it *must* perform the task of setting the queue
1911da177e4SLinus Torvalds 	 * depth on the device.  All other tasks are optional and depend
1921da177e4SLinus Torvalds 	 * on what the driver supports and various implementation details.
1931da177e4SLinus Torvalds 	 *
1941da177e4SLinus Torvalds 	 * Things currently recommended to be handled at this time include:
1951da177e4SLinus Torvalds 	 *
1961da177e4SLinus Torvalds 	 * 1.  Setting the device queue depth.  Proper setting of this is
197db5ed4dfSChristoph Hellwig 	 *     described in the comments for scsi_change_queue_depth.
1981da177e4SLinus Torvalds 	 * 2.  Determining if the device supports the various synchronous
1991da177e4SLinus Torvalds 	 *     negotiation protocols.  The device struct will already have
2001da177e4SLinus Torvalds 	 *     responded to INQUIRY and the results of the standard items
2011da177e4SLinus Torvalds 	 *     will have been shoved into the various device flag bits, eg.
2021da177e4SLinus Torvalds 	 *     device->sdtr will be true if the device supports SDTR messages.
2031da177e4SLinus Torvalds 	 * 3.  Allocating command structs that the device will need.
2041da177e4SLinus Torvalds 	 * 4.  Setting the default timeout on this device (if needed).
2051da177e4SLinus Torvalds 	 * 5.  Anything else the low level driver might want to do on a device
2061da177e4SLinus Torvalds 	 *     specific setup basis...
2071da177e4SLinus Torvalds 	 * 6.  Return 0 on success, non-0 on error.  The device will be marked
2081da177e4SLinus Torvalds 	 *     as offline on error so that no access will occur.  If you return
2091da177e4SLinus Torvalds 	 *     non-0, your slave_destroy routine will never get called for this
2101da177e4SLinus Torvalds 	 *     device, so don't leave any loose memory hanging around, clean
2111da177e4SLinus Torvalds 	 *     up after yourself before returning non-0
2121da177e4SLinus Torvalds 	 *
2131da177e4SLinus Torvalds 	 * Status: OPTIONAL
2141da177e4SLinus Torvalds 	 */
2151da177e4SLinus Torvalds 	int (* slave_configure)(struct scsi_device *);
2161da177e4SLinus Torvalds 
2171da177e4SLinus Torvalds 	/*
2181da177e4SLinus Torvalds 	 * Immediately prior to deallocating the device and after all activity
2191da177e4SLinus Torvalds 	 * has ceased the mid layer calls this point so that the low level
2201da177e4SLinus Torvalds 	 * driver may completely detach itself from the scsi device and vice
2211da177e4SLinus Torvalds 	 * versa.  The low level driver is responsible for freeing any memory
2221da177e4SLinus Torvalds 	 * it allocated in the slave_alloc or slave_configure calls.
2231da177e4SLinus Torvalds 	 *
2241da177e4SLinus Torvalds 	 * Status: OPTIONAL
2251da177e4SLinus Torvalds 	 */
2261da177e4SLinus Torvalds 	void (* slave_destroy)(struct scsi_device *);
2271da177e4SLinus Torvalds 
2281da177e4SLinus Torvalds 	/*
229a283bd37SJames Bottomley 	 * Before the mid layer attempts to scan for a new device attached
230a283bd37SJames Bottomley 	 * to a target where no target currently exists, it will call this
231a283bd37SJames Bottomley 	 * entry in your driver.  Should your driver need to allocate any
232a283bd37SJames Bottomley 	 * structs or perform any other init items in order to send commands
233a283bd37SJames Bottomley 	 * to a currently unused target, then this is where you can perform
234a283bd37SJames Bottomley 	 * those allocations.
235a283bd37SJames Bottomley 	 *
236a283bd37SJames Bottomley 	 * Return values: 0 on success, non-0 on failure
237a283bd37SJames Bottomley 	 *
238a283bd37SJames Bottomley 	 * Status: OPTIONAL
239a283bd37SJames Bottomley 	 */
240a283bd37SJames Bottomley 	int (* target_alloc)(struct scsi_target *);
241a283bd37SJames Bottomley 
242a283bd37SJames Bottomley 	/*
243a283bd37SJames Bottomley 	 * Immediately prior to deallocating the target structure, and
244a283bd37SJames Bottomley 	 * after all activity to attached scsi devices has ceased, the
245a283bd37SJames Bottomley 	 * midlayer calls this point so that the driver may deallocate
246a283bd37SJames Bottomley 	 * and terminate any references to the target.
247a283bd37SJames Bottomley 	 *
248a283bd37SJames Bottomley 	 * Status: OPTIONAL
249a283bd37SJames Bottomley 	 */
250a283bd37SJames Bottomley 	void (* target_destroy)(struct scsi_target *);
251a283bd37SJames Bottomley 
252a283bd37SJames Bottomley 	/*
2531aa8fab2SMatthew Wilcox 	 * If a host has the ability to discover targets on its own instead
2541aa8fab2SMatthew Wilcox 	 * of scanning the entire bus, it can fill in this function and
2551aa8fab2SMatthew Wilcox 	 * call scsi_scan_host().  This function will be called periodically
2561aa8fab2SMatthew Wilcox 	 * until it returns 1 with the scsi_host and the elapsed time of
2571aa8fab2SMatthew Wilcox 	 * the scan in jiffies.
2581aa8fab2SMatthew Wilcox 	 *
2591aa8fab2SMatthew Wilcox 	 * Status: OPTIONAL
2601aa8fab2SMatthew Wilcox 	 */
2611aa8fab2SMatthew Wilcox 	int (* scan_finished)(struct Scsi_Host *, unsigned long);
2621aa8fab2SMatthew Wilcox 
2631aa8fab2SMatthew Wilcox 	/*
2641aa8fab2SMatthew Wilcox 	 * If the host wants to be called before the scan starts, but
2651aa8fab2SMatthew Wilcox 	 * after the midlayer has set up ready for the scan, it can fill
2661aa8fab2SMatthew Wilcox 	 * in this function.
267d850bd34SPavel Machek 	 *
268d850bd34SPavel Machek 	 * Status: OPTIONAL
2691aa8fab2SMatthew Wilcox 	 */
2701aa8fab2SMatthew Wilcox 	void (* scan_start)(struct Scsi_Host *);
2711aa8fab2SMatthew Wilcox 
2721aa8fab2SMatthew Wilcox 	/*
273d850bd34SPavel Machek 	 * Fill in this function to allow the queue depth of this host
274d850bd34SPavel Machek 	 * to be changeable (on a per device basis).  Returns either
2751da177e4SLinus Torvalds 	 * the current queue depth setting (may be different from what
2761da177e4SLinus Torvalds 	 * was passed in) or an error.  An error should only be
2771da177e4SLinus Torvalds 	 * returned if the requested depth is legal but the driver was
2781da177e4SLinus Torvalds 	 * unable to set it.  If the requested depth is illegal, the
2791da177e4SLinus Torvalds 	 * driver should set and return the closest legal queue depth.
2801da177e4SLinus Torvalds 	 *
281d850bd34SPavel Machek 	 * Status: OPTIONAL
2821da177e4SLinus Torvalds 	 */
283db5ed4dfSChristoph Hellwig 	int (* change_queue_depth)(struct scsi_device *, int);
2841da177e4SLinus Torvalds 
2851da177e4SLinus Torvalds 	/*
2862d9c5c20SChristoph Hellwig 	 * This functions lets the driver expose the queue mapping
2872d9c5c20SChristoph Hellwig 	 * to the block layer.
2882d9c5c20SChristoph Hellwig 	 *
2892d9c5c20SChristoph Hellwig 	 * Status: OPTIONAL
2902d9c5c20SChristoph Hellwig 	 */
291a4e1d0b7SBart Van Assche 	void (* map_queues)(struct Scsi_Host *shost);
2922d9c5c20SChristoph Hellwig 
2932d9c5c20SChristoph Hellwig 	/*
294af183095SKashyap Desai 	 * SCSI interface of blk_poll - poll for IO completions.
295af183095SKashyap Desai 	 * Only applicable if SCSI LLD exposes multiple h/w queues.
296af183095SKashyap Desai 	 *
297af183095SKashyap Desai 	 * Return value: Number of completed entries found.
298af183095SKashyap Desai 	 *
299af183095SKashyap Desai 	 * Status: OPTIONAL
300af183095SKashyap Desai 	 */
301af183095SKashyap Desai 	int (* mq_poll)(struct Scsi_Host *shost, unsigned int queue_num);
302af183095SKashyap Desai 
303af183095SKashyap Desai 	/*
304cc97923aSChristoph Hellwig 	 * Check if scatterlists need to be padded for DMA draining.
305cc97923aSChristoph Hellwig 	 *
306cc97923aSChristoph Hellwig 	 * Status: OPTIONAL
307cc97923aSChristoph Hellwig 	 */
308cc97923aSChristoph Hellwig 	bool (* dma_need_drain)(struct request *rq);
309cc97923aSChristoph Hellwig 
310cc97923aSChristoph Hellwig 	/*
311d850bd34SPavel Machek 	 * This function determines the BIOS parameters for a given
3121da177e4SLinus Torvalds 	 * harddisk.  These tend to be numbers that are made up by
3131da177e4SLinus Torvalds 	 * the host adapter.  Parameters:
3141da177e4SLinus Torvalds 	 * size, device, list (heads, sectors, cylinders)
3151da177e4SLinus Torvalds 	 *
316d850bd34SPavel Machek 	 * Status: OPTIONAL
317d850bd34SPavel Machek 	 */
3181da177e4SLinus Torvalds 	int (* bios_param)(struct scsi_device *, struct block_device *,
3191da177e4SLinus Torvalds 			sector_t, int []);
3201da177e4SLinus Torvalds 
3211da177e4SLinus Torvalds 	/*
32272ec24bdSTejun Heo 	 * This function is called when one or more partitions on the
32372ec24bdSTejun Heo 	 * device reach beyond the end of the device.
32472ec24bdSTejun Heo 	 *
32572ec24bdSTejun Heo 	 * Status: OPTIONAL
32672ec24bdSTejun Heo 	 */
32772ec24bdSTejun Heo 	void (*unlock_native_capacity)(struct scsi_device *);
32872ec24bdSTejun Heo 
32972ec24bdSTejun Heo 	/*
3301da177e4SLinus Torvalds 	 * Can be used to export driver statistics and other infos to the
3311da177e4SLinus Torvalds 	 * world outside the kernel ie. userspace and it also provides an
3321da177e4SLinus Torvalds 	 * interface to feed the driver with information.
3331da177e4SLinus Torvalds 	 *
3341da177e4SLinus Torvalds 	 * Status: OBSOLETE
3351da177e4SLinus Torvalds 	 */
3360ffddfbbSAl Viro 	int (*show_info)(struct seq_file *, struct Scsi_Host *);
3370ffddfbbSAl Viro 	int (*write_info)(struct Scsi_Host *, char *, int);
3381da177e4SLinus Torvalds 
3391da177e4SLinus Torvalds 	/*
3406c5f8ce1SJames Bottomley 	 * This is an optional routine that allows the transport to become
3416c5f8ce1SJames Bottomley 	 * involved when a scsi io timer fires. The return value tells the
34282c10ac7SAvri Altman 	 * timer routine how to finish the io timeout handling.
3436c5f8ce1SJames Bottomley 	 *
3446c5f8ce1SJames Bottomley 	 * Status: OPTIONAL
3456c5f8ce1SJames Bottomley 	 */
346dee7121eSBart Van Assche 	enum scsi_timeout_action (*eh_timed_out)(struct scsi_cmnd *);
34760bee27bSMuneendra Kumar 	/*
34860bee27bSMuneendra Kumar 	 * Optional routine that allows the transport to decide if a cmd
34960bee27bSMuneendra Kumar 	 * is retryable. Return true if the transport is in a state the
35060bee27bSMuneendra Kumar 	 * cmd should be retried on.
35160bee27bSMuneendra Kumar 	 */
35260bee27bSMuneendra Kumar 	bool (*eh_should_retry_cmd)(struct scsi_cmnd *scmd);
3536c5f8ce1SJames Bottomley 
35429443691SVikas Chaudhary 	/* This is an optional routine that allows transport to initiate
35529443691SVikas Chaudhary 	 * LLD adapter or firmware reset using sysfs attribute.
35629443691SVikas Chaudhary 	 *
35729443691SVikas Chaudhary 	 * Return values: 0 on success, -ve value on failure.
35829443691SVikas Chaudhary 	 *
35929443691SVikas Chaudhary 	 * Status: OPTIONAL
36029443691SVikas Chaudhary 	 */
36129443691SVikas Chaudhary 
36229443691SVikas Chaudhary 	int (*host_reset)(struct Scsi_Host *shost, int reset_type);
36329443691SVikas Chaudhary #define SCSI_ADAPTER_RESET	1
36429443691SVikas Chaudhary #define SCSI_FIRMWARE_RESET	2
36529443691SVikas Chaudhary 
36629443691SVikas Chaudhary 
3676c5f8ce1SJames Bottomley 	/*
3681da177e4SLinus Torvalds 	 * Name of proc directory
3691da177e4SLinus Torvalds 	 */
370b02b6bc4SKristian Høgsberg 	const char *proc_name;
3711da177e4SLinus Torvalds 
3721da177e4SLinus Torvalds 	/*
3731da177e4SLinus Torvalds 	 * This determines if we will use a non-interrupt driven
374d850bd34SPavel Machek 	 * or an interrupt driven scheme.  It is set to the maximum number
3756eb045e0SMing Lei 	 * of simultaneous commands a single hw queue in HBA will accept.
3761da177e4SLinus Torvalds 	 */
3771da177e4SLinus Torvalds 	int can_queue;
3781da177e4SLinus Torvalds 
3791da177e4SLinus Torvalds 	/*
3801da177e4SLinus Torvalds 	 * In many instances, especially where disconnect / reconnect are
3811da177e4SLinus Torvalds 	 * supported, our host also has an ID on the SCSI bus.  If this is
3821da177e4SLinus Torvalds 	 * the case, then it must be reserved.  Please set this_id to -1 if
3831da177e4SLinus Torvalds 	 * your setup is in single initiator mode, and the host lacks an
3841da177e4SLinus Torvalds 	 * ID.
3851da177e4SLinus Torvalds 	 */
3861da177e4SLinus Torvalds 	int this_id;
3871da177e4SLinus Torvalds 
3881da177e4SLinus Torvalds 	/*
3891da177e4SLinus Torvalds 	 * This determines the degree to which the host adapter is capable
3901da177e4SLinus Torvalds 	 * of scatter-gather.
3911da177e4SLinus Torvalds 	 */
3921da177e4SLinus Torvalds 	unsigned short sg_tablesize;
39313f05c8dSMartin K. Petersen 	unsigned short sg_prot_tablesize;
3941da177e4SLinus Torvalds 
3951da177e4SLinus Torvalds 	/*
396d850bd34SPavel Machek 	 * Set this if the host adapter has limitations beside segment count.
3971da177e4SLinus Torvalds 	 */
3988ed5a4d2SAkinobu Mita 	unsigned int max_sectors;
3991da177e4SLinus Torvalds 
4001da177e4SLinus Torvalds 	/*
40150c2e910SChristoph Hellwig 	 * Maximum size in bytes of a single segment.
40250c2e910SChristoph Hellwig 	 */
40350c2e910SChristoph Hellwig 	unsigned int max_segment_size;
40450c2e910SChristoph Hellwig 
40550c2e910SChristoph Hellwig 	/*
406d850bd34SPavel Machek 	 * DMA scatter gather segment boundary limit. A segment crossing this
4071da177e4SLinus Torvalds 	 * boundary will be split in two.
4081da177e4SLinus Torvalds 	 */
4091da177e4SLinus Torvalds 	unsigned long dma_boundary;
4101da177e4SLinus Torvalds 
4117ad388d8SChristoph Hellwig 	unsigned long virt_boundary_mask;
4127ad388d8SChristoph Hellwig 
4131da177e4SLinus Torvalds 	/*
4141da177e4SLinus Torvalds 	 * This specifies "machine infinity" for host templates which don't
4151da177e4SLinus Torvalds 	 * limit the transfer size.  Note this limit represents an absolute
4161da177e4SLinus Torvalds 	 * maximum, and may be over the transfer limits allowed for
417d850bd34SPavel Machek 	 * individual devices (e.g. 256 for SCSI-1).
4181da177e4SLinus Torvalds 	 */
4191da177e4SLinus Torvalds #define SCSI_DEFAULT_MAX_SECTORS	1024
4201da177e4SLinus Torvalds 
4211da177e4SLinus Torvalds 	/*
4221da177e4SLinus Torvalds 	 * True if this host adapter can make good use of linked commands.
4231da177e4SLinus Torvalds 	 * This will allow more than one command to be queued to a given
4241da177e4SLinus Torvalds 	 * unit on a given host.  Set this to the maximum number of command
4251da177e4SLinus Torvalds 	 * blocks to be provided for each device.  Set this to 1 for one
4261da177e4SLinus Torvalds 	 * command block per lun, 2 for two, etc.  Do not set this to 0.
4271da177e4SLinus Torvalds 	 * You should make sure that the host adapter will do the right thing
4281da177e4SLinus Torvalds 	 * before you try setting this above 1.
4291da177e4SLinus Torvalds 	 */
4301da177e4SLinus Torvalds 	short cmd_per_lun;
4311da177e4SLinus Torvalds 
432ee1b6f7aSShaohua Li 	/* If use block layer to manage tags, this is tag allocation policy */
433ee1b6f7aSShaohua Li 	int tag_alloc_policy;
434ee1b6f7aSShaohua Li 
4351da177e4SLinus Torvalds 	/*
436c40ecc12SChristoph Hellwig 	 * Track QUEUE_FULL events and reduce queue depth on demand.
437c40ecc12SChristoph Hellwig 	 */
438c40ecc12SChristoph Hellwig 	unsigned track_queue_depth:1;
439c40ecc12SChristoph Hellwig 
440c40ecc12SChristoph Hellwig 	/*
4415dc2b89eSFUJITA Tomonori 	 * This specifies the mode that a LLD supports.
4425dc2b89eSFUJITA Tomonori 	 */
4435dc2b89eSFUJITA Tomonori 	unsigned supported_mode:2;
4445dc2b89eSFUJITA Tomonori 
4455dc2b89eSFUJITA Tomonori 	/*
446d850bd34SPavel Machek 	 * True for emulated SCSI host adapters (e.g. ATAPI).
4471da177e4SLinus Torvalds 	 */
4481da177e4SLinus Torvalds 	unsigned emulated:1;
4491da177e4SLinus Torvalds 
4501da177e4SLinus Torvalds 	/*
4511da177e4SLinus Torvalds 	 * True if the low-level driver performs its own reset-settle delays.
4521da177e4SLinus Torvalds 	 */
4531da177e4SLinus Torvalds 	unsigned skip_settle_delay:1;
4541da177e4SLinus Torvalds 
45554b2b50cSMartin K. Petersen 	/* True if the controller does not support WRITE SAME */
45654b2b50cSMartin K. Petersen 	unsigned no_write_same:1;
45754b2b50cSMartin K. Petersen 
458bdb01301SHannes Reinecke 	/* True if the host uses host-wide tagspace */
459bdb01301SHannes Reinecke 	unsigned host_tagset:1;
460bdb01301SHannes Reinecke 
461b125bb99SBart Van Assche 	/* The queuecommand callback may block. See also BLK_MQ_F_BLOCKING. */
462b125bb99SBart Van Assche 	unsigned queuecommand_may_block:1;
463b125bb99SBart Van Assche 
4641da177e4SLinus Torvalds 	/*
465d850bd34SPavel Machek 	 * Countdown for host blocking with no commands outstanding.
4661da177e4SLinus Torvalds 	 */
4671da177e4SLinus Torvalds 	unsigned int max_host_blocked;
4681da177e4SLinus Torvalds 
4691da177e4SLinus Torvalds 	/*
4701da177e4SLinus Torvalds 	 * Default value for the blocking.  If the queue is empty,
4711da177e4SLinus Torvalds 	 * host_blocked counts down in the request_fn until it restarts
4721da177e4SLinus Torvalds 	 * host operations as zero is reached.
4731da177e4SLinus Torvalds 	 *
4741da177e4SLinus Torvalds 	 * FIXME: This should probably be a value in the template
4751da177e4SLinus Torvalds 	 */
4761da177e4SLinus Torvalds #define SCSI_DEFAULT_HOST_BLOCKED	7
4771da177e4SLinus Torvalds 
4781da177e4SLinus Torvalds 	/*
47992c4b58bSBart Van Assche 	 * Pointer to the SCSI host sysfs attribute groups, NULL terminated.
48092c4b58bSBart Van Assche 	 */
48192c4b58bSBart Van Assche 	const struct attribute_group **shost_groups;
48292c4b58bSBart Van Assche 
48392c4b58bSBart Van Assche 	/*
48486b87cdeSStanislav Nijnikov 	 * Pointer to the SCSI device attribute groups for this host,
48586b87cdeSStanislav Nijnikov 	 * NULL terminated.
48686b87cdeSStanislav Nijnikov 	 */
48786b87cdeSStanislav Nijnikov 	const struct attribute_group **sdev_groups;
48886b87cdeSStanislav Nijnikov 
48986b87cdeSStanislav Nijnikov 	/*
4909e4f5e29SJames Smart 	 * Vendor Identifier associated with the host
4919e4f5e29SJames Smart 	 *
4929e4f5e29SJames Smart 	 * Note: When specifying vendor_id, be sure to read the
4939e4f5e29SJames Smart 	 *   Vendor Type and ID formatting requirements specified in
4949e4f5e29SJames Smart 	 *   scsi_netlink.h
4959e4f5e29SJames Smart 	 */
4969e4f5e29SJames Smart 	u64 vendor_id;
49789d9a567SChristoph Hellwig 
498c74f8056SStanley Chu 	/* Delay for runtime autosuspend */
499c74f8056SStanley Chu 	int rpm_autosuspend_delay;
5001da177e4SLinus Torvalds };
5011da177e4SLinus Torvalds 
5021da177e4SLinus Torvalds /*
503f281233dSJeff Garzik  * Temporary #define for host lock push down. Can be removed when all
504f281233dSJeff Garzik  * drivers have been updated to take advantage of unlocked
505f281233dSJeff Garzik  * queuecommand.
506f281233dSJeff Garzik  *
507f281233dSJeff Garzik  */
508f281233dSJeff Garzik #define DEF_SCSI_QCMD(func_name) \
509f281233dSJeff Garzik 	int func_name(struct Scsi_Host *shost, struct scsi_cmnd *cmd)	\
510f281233dSJeff Garzik 	{								\
511f281233dSJeff Garzik 		unsigned long irq_flags;				\
512f281233dSJeff Garzik 		int rc;							\
513f281233dSJeff Garzik 		spin_lock_irqsave(shost->host_lock, irq_flags);		\
514af049dfdSBart Van Assche 		rc = func_name##_lck(cmd);				\
515f281233dSJeff Garzik 		spin_unlock_irqrestore(shost->host_lock, irq_flags);	\
516f281233dSJeff Garzik 		return rc;						\
517f281233dSJeff Garzik 	}
518f281233dSJeff Garzik 
519f281233dSJeff Garzik 
520f281233dSJeff Garzik /*
521d3301874SMike Anderson  * shost state: If you alter this, you also need to alter scsi_sysfs.c
522d3301874SMike Anderson  * (for the ascii descriptions) and the state model enforcer:
523d3301874SMike Anderson  * scsi_host_set_state()
5241da177e4SLinus Torvalds  */
525d3301874SMike Anderson enum scsi_host_state {
526d3301874SMike Anderson 	SHOST_CREATED = 1,
527d3301874SMike Anderson 	SHOST_RUNNING,
5281da177e4SLinus Torvalds 	SHOST_CANCEL,
529d3301874SMike Anderson 	SHOST_DEL,
5301da177e4SLinus Torvalds 	SHOST_RECOVERY,
531939647eeSJames Bottomley 	SHOST_CANCEL_RECOVERY,
532939647eeSJames Bottomley 	SHOST_DEL_RECOVERY,
5331da177e4SLinus Torvalds };
5341da177e4SLinus Torvalds 
5351da177e4SLinus Torvalds struct Scsi_Host {
5361da177e4SLinus Torvalds 	/*
5371da177e4SLinus Torvalds 	 * __devices is protected by the host_lock, but you should
5381da177e4SLinus Torvalds 	 * usually use scsi_device_lookup / shost_for_each_device
5391da177e4SLinus Torvalds 	 * to access it and don't care about locking yourself.
540542cb459SFinn Thain 	 * In the rare case of being in irq context you can use
5411da177e4SLinus Torvalds 	 * their __ prefixed variants with the lock held. NEVER
5421da177e4SLinus Torvalds 	 * access this list directly from a driver.
5431da177e4SLinus Torvalds 	 */
5441da177e4SLinus Torvalds 	struct list_head	__devices;
5451da177e4SLinus Torvalds 	struct list_head	__targets;
5461da177e4SLinus Torvalds 
5471da177e4SLinus Torvalds 	struct list_head	starved_list;
5481da177e4SLinus Torvalds 
5491da177e4SLinus Torvalds 	spinlock_t		default_lock;
5501da177e4SLinus Torvalds 	spinlock_t		*host_lock;
5511da177e4SLinus Torvalds 
5520b950672SArjan van de Ven 	struct mutex		scan_mutex;/* serialize scanning activity */
5531da177e4SLinus Torvalds 
5545ae17501SEwan D. Milne 	struct list_head	eh_abort_list;
5551da177e4SLinus Torvalds 	struct list_head	eh_cmd_q;
5561da177e4SLinus Torvalds 	struct task_struct    * ehandler;  /* Error recovery thread. */
5577dfdc9a5SChristoph Hellwig 	struct completion     * eh_action; /* Wait for specific actions on the
5581da177e4SLinus Torvalds 					      host. */
5591da177e4SLinus Torvalds 	wait_queue_head_t       host_wait;
560e0d3f2c6SBart Van Assche 	const struct scsi_host_template *hostt;
5611da177e4SLinus Torvalds 	struct scsi_transport_template *transportt;
56206f81ea8S 
5638fe4ce58SBart Van Assche 	struct kref		tagset_refcnt;
5648fe4ce58SBart Van Assche 	struct completion	tagset_freed;
565f664a3ccSJens Axboe 	/* Area to keep a shared tag map */
566d285203cSChristoph Hellwig 	struct blk_mq_tag_set	tag_set;
56786e33a29SJames Bottomley 
568cd9070c9SChristoph Hellwig 	atomic_t host_blocked;
569cd9070c9SChristoph Hellwig 
57074665016SChristoph Hellwig 	unsigned int host_failed;	   /* commands that failed.
57174665016SChristoph Hellwig 					      protected by host_lock */
572ee7863bcSTejun Heo 	unsigned int host_eh_scheduled;    /* EH scheduled without command */
5731da177e4SLinus Torvalds 
5746d49f63bSMatthew Wilcox 	unsigned int host_no;  /* Used for IOCTL_GET_IDLUN, /proc/scsi et al. */
5751da177e4SLinus Torvalds 
576b4562022SHannes Reinecke 	/* next two fields are used to bound the time spent in error handling */
577b4562022SHannes Reinecke 	int eh_deadline;
578b4562022SHannes Reinecke 	unsigned long last_reset;
579b4562022SHannes Reinecke 
580b4562022SHannes Reinecke 
5811da177e4SLinus Torvalds 	/*
5821da177e4SLinus Torvalds 	 * These three parameters can be used to allow for wide scsi,
5831da177e4SLinus Torvalds 	 * and for host adapters that support multiple busses
5848e4a5da6SSebastian Herbszt 	 * The last two should be set to 1 more than the actual max id
5851abf635dSHannes Reinecke 	 * or lun (e.g. 8 for SCSI parallel systems).
5861da177e4SLinus Torvalds 	 */
5871da177e4SLinus Torvalds 	unsigned int max_channel;
5881abf635dSHannes Reinecke 	unsigned int max_id;
5891abf635dSHannes Reinecke 	u64 max_lun;
5901da177e4SLinus Torvalds 
5911da177e4SLinus Torvalds 	/*
5921da177e4SLinus Torvalds 	 * This is a unique identifier that must be assigned so that we
5931da177e4SLinus Torvalds 	 * have some way of identifying each detected host adapter properly
5941da177e4SLinus Torvalds 	 * and uniquely.  For hosts that do not support more than one card
5951da177e4SLinus Torvalds 	 * in the system at one time, this does not need to be set.  It is
5961da177e4SLinus Torvalds 	 * initialized to 0 in scsi_register.
5971da177e4SLinus Torvalds 	 */
5981da177e4SLinus Torvalds 	unsigned int unique_id;
5991da177e4SLinus Torvalds 
6001da177e4SLinus Torvalds 	/*
6011da177e4SLinus Torvalds 	 * The maximum length of SCSI commands that this host can accept.
6021da177e4SLinus Torvalds 	 * Probably 12 for most host adapters, but could be 16 for others.
603db4742ddSBoaz Harrosh 	 * or 260 if the driver supports variable length cdbs.
6041da177e4SLinus Torvalds 	 * For drivers that don't set this field, a value of 12 is
605db4742ddSBoaz Harrosh 	 * assumed.
6061da177e4SLinus Torvalds 	 */
607db4742ddSBoaz Harrosh 	unsigned short max_cmd_len;
6081da177e4SLinus Torvalds 
6091da177e4SLinus Torvalds 	int this_id;
6101da177e4SLinus Torvalds 	int can_queue;
6111da177e4SLinus Torvalds 	short cmd_per_lun;
6121da177e4SLinus Torvalds 	short unsigned int sg_tablesize;
61313f05c8dSMartin K. Petersen 	short unsigned int sg_prot_tablesize;
6148ed5a4d2SAkinobu Mita 	unsigned int max_sectors;
615608128d3SJohn Garry 	unsigned int opt_sectors;
61650c2e910SChristoph Hellwig 	unsigned int max_segment_size;
6171da177e4SLinus Torvalds 	unsigned long dma_boundary;
6187ad388d8SChristoph Hellwig 	unsigned long virt_boundary_mask;
6191da177e4SLinus Torvalds 	/*
620efec4b90SBart Van Assche 	 * In scsi-mq mode, the number of hardware queues supported by the LLD.
621efec4b90SBart Van Assche 	 *
622efec4b90SBart Van Assche 	 * Note: it is assumed that each hardware queue has a queue depth of
623efec4b90SBart Van Assche 	 * can_queue. In other words, the total queue depth per host
624bdb01301SHannes Reinecke 	 * is nr_hw_queues * can_queue. However, for when host_tagset is set,
625bdb01301SHannes Reinecke 	 * the total queue depth is can_queue.
626efec4b90SBart Van Assche 	 */
627efec4b90SBart Van Assche 	unsigned nr_hw_queues;
628af183095SKashyap Desai 	unsigned nr_maps;
6295dc2b89eSFUJITA Tomonori 	unsigned active_mode:2;
6301da177e4SLinus Torvalds 
6311da177e4SLinus Torvalds 	/*
6321da177e4SLinus Torvalds 	 * Host has requested that no further requests come through for the
6331da177e4SLinus Torvalds 	 * time being.
6341da177e4SLinus Torvalds 	 */
6351da177e4SLinus Torvalds 	unsigned host_self_blocked:1;
6361da177e4SLinus Torvalds 
6371da177e4SLinus Torvalds 	/*
6381da177e4SLinus Torvalds 	 * Host uses correct SCSI ordering not PC ordering. The bit is
6391da177e4SLinus Torvalds 	 * set for the minority of drivers whose authors actually read
640d850bd34SPavel Machek 	 * the spec ;).
6411da177e4SLinus Torvalds 	 */
6421da177e4SLinus Torvalds 	unsigned reverse_ordering:1;
6431da177e4SLinus Torvalds 
644d850bd34SPavel Machek 	/* Task mgmt function in progress */
645d7a1bb0aSJames Smart 	unsigned tmf_in_progress:1;
646d7a1bb0aSJames Smart 
6473e082a91SMatthew Wilcox 	/* Asynchronous scan in progress */
6483e082a91SMatthew Wilcox 	unsigned async_scan:1;
6493e082a91SMatthew Wilcox 
650ae0751ffSLin Ming 	/* Don't resume host in EH */
651ae0751ffSLin Ming 	unsigned eh_noresume:1;
652ae0751ffSLin Ming 
65354b2b50cSMartin K. Petersen 	/* The controller does not support WRITE SAME */
65454b2b50cSMartin K. Petersen 	unsigned no_write_same:1;
65554b2b50cSMartin K. Petersen 
656bdb01301SHannes Reinecke 	/* True if the host uses host-wide tagspace */
657bdb01301SHannes Reinecke 	unsigned host_tagset:1;
658bdb01301SHannes Reinecke 
659b125bb99SBart Van Assche 	/* The queuecommand callback may block. See also BLK_MQ_F_BLOCKING. */
660b125bb99SBart Van Assche 	unsigned queuecommand_may_block:1;
661b125bb99SBart Van Assche 
662a35bb445SVitaly Kuznetsov 	/* Host responded with short (<36 bytes) INQUIRY result */
663a35bb445SVitaly Kuznetsov 	unsigned short_inquiry:1;
664a35bb445SVitaly Kuznetsov 
66593ab8c8fSHannes Reinecke 	/* The transport requires the LUN bits NOT to be stored in CDB[1] */
66693ab8c8fSHannes Reinecke 	unsigned no_scsi2_lun_in_cdb:1;
66793ab8c8fSHannes Reinecke 
6681da177e4SLinus Torvalds 	/*
6691da177e4SLinus Torvalds 	 * Optional work queue to be utilized by the transport
6701da177e4SLinus Torvalds 	 */
671aab0de24SKay Sievers 	char work_q_name[20];
6721da177e4SLinus Torvalds 	struct workqueue_struct *work_q;
6731da177e4SLinus Torvalds 
6741da177e4SLinus Torvalds 	/*
675e494f6a7SHannes Reinecke 	 * Task management function work queue
676e494f6a7SHannes Reinecke 	 */
677e494f6a7SHannes Reinecke 	struct workqueue_struct *tmf_work_q;
678e494f6a7SHannes Reinecke 
679e494f6a7SHannes Reinecke 	/*
6801da177e4SLinus Torvalds 	 * Value host_blocked counts down from
6811da177e4SLinus Torvalds 	 */
6821da177e4SLinus Torvalds 	unsigned int max_host_blocked;
6831da177e4SLinus Torvalds 
6844469f987SMartin K. Petersen 	/* Protection Information */
6854469f987SMartin K. Petersen 	unsigned int prot_capabilities;
6864469f987SMartin K. Petersen 	unsigned char prot_guard_type;
6874469f987SMartin K. Petersen 
6881da177e4SLinus Torvalds 	/* legacy crap */
6891da177e4SLinus Torvalds 	unsigned long base;
6901da177e4SLinus Torvalds 	unsigned long io_port;
6911da177e4SLinus Torvalds 	unsigned char n_io_port;
6921da177e4SLinus Torvalds 	unsigned char dma_channel;
6931da177e4SLinus Torvalds 	unsigned int  irq;
6941da177e4SLinus Torvalds 
6951da177e4SLinus Torvalds 
696d3301874SMike Anderson 	enum scsi_host_state shost_state;
6971da177e4SLinus Torvalds 
6981da177e4SLinus Torvalds 	/* ldm bits */
699ee959b00STony Jones 	struct device		shost_gendev, shost_dev;
7001da177e4SLinus Torvalds 
7011da177e4SLinus Torvalds 	/*
7021da177e4SLinus Torvalds 	 * Points to the transport data (if any) which is allocated
7031da177e4SLinus Torvalds 	 * separately
7041da177e4SLinus Torvalds 	 */
7051da177e4SLinus Torvalds 	void *shost_data;
7061da177e4SLinus Torvalds 
7071da177e4SLinus Torvalds 	/*
708d139b9bdSJames Bottomley 	 * Points to the physical bus device we'd use to do DMA
709d139b9bdSJames Bottomley 	 * Needed just in case we have virtual hosts.
710d139b9bdSJames Bottomley 	 */
711d139b9bdSJames Bottomley 	struct device *dma_dev;
712d139b9bdSJames Bottomley 
713d139b9bdSJames Bottomley 	/*
7141da177e4SLinus Torvalds 	 * We should ensure that this is aligned, both for better performance
7151da177e4SLinus Torvalds 	 * and also because some compilers (m68k) don't automatically force
7161da177e4SLinus Torvalds 	 * alignment to a long boundary.
7171da177e4SLinus Torvalds 	 */
7185febf6d6SGustavo A. R. Silva 	unsigned long hostdata[]  /* Used for storage of host specific stuff */
7191da177e4SLinus Torvalds 		__attribute__ ((aligned (sizeof(unsigned long))));
7201da177e4SLinus Torvalds };
7211da177e4SLinus Torvalds 
7221da177e4SLinus Torvalds #define		class_to_shost(d)	\
723ee959b00STony Jones 	container_of(d, struct Scsi_Host, shost_dev)
7241da177e4SLinus Torvalds 
7259ccfc756SJames Bottomley #define shost_printk(prefix, shost, fmt, a...)	\
7269ccfc756SJames Bottomley 	dev_printk(prefix, &(shost)->shost_gendev, fmt, ##a)
7279ccfc756SJames Bottomley 
shost_priv(struct Scsi_Host * shost)728bcd92c9fSChristoph Hellwig static inline void *shost_priv(struct Scsi_Host *shost)
729bcd92c9fSChristoph Hellwig {
730bcd92c9fSChristoph Hellwig 	return (void *)shost->hostdata;
731bcd92c9fSChristoph Hellwig }
7329ccfc756SJames Bottomley 
7331da177e4SLinus Torvalds int scsi_is_host_device(const struct device *);
7341da177e4SLinus Torvalds 
dev_to_shost(struct device * dev)7351da177e4SLinus Torvalds static inline struct Scsi_Host *dev_to_shost(struct device *dev)
7361da177e4SLinus Torvalds {
7371da177e4SLinus Torvalds 	while (!scsi_is_host_device(dev)) {
7381da177e4SLinus Torvalds 		if (!dev->parent)
7391da177e4SLinus Torvalds 			return NULL;
7401da177e4SLinus Torvalds 		dev = dev->parent;
7411da177e4SLinus Torvalds 	}
7421da177e4SLinus Torvalds 	return container_of(dev, struct Scsi_Host, shost_gendev);
7431da177e4SLinus Torvalds }
7441da177e4SLinus Torvalds 
scsi_host_in_recovery(struct Scsi_Host * shost)745939647eeSJames Bottomley static inline int scsi_host_in_recovery(struct Scsi_Host *shost)
746939647eeSJames Bottomley {
747939647eeSJames Bottomley 	return shost->shost_state == SHOST_RECOVERY ||
748939647eeSJames Bottomley 		shost->shost_state == SHOST_CANCEL_RECOVERY ||
749d7a1bb0aSJames Smart 		shost->shost_state == SHOST_DEL_RECOVERY ||
750d7a1bb0aSJames Smart 		shost->tmf_in_progress;
751939647eeSJames Bottomley }
752939647eeSJames Bottomley 
7531da177e4SLinus Torvalds extern int scsi_queue_work(struct Scsi_Host *, struct work_struct *);
7541da177e4SLinus Torvalds extern void scsi_flush_work(struct Scsi_Host *);
7551da177e4SLinus Torvalds 
756e0d3f2c6SBart Van Assche extern struct Scsi_Host *scsi_host_alloc(const struct scsi_host_template *, int);
757d139b9bdSJames Bottomley extern int __must_check scsi_add_host_with_dma(struct Scsi_Host *,
758d139b9bdSJames Bottomley 					       struct device *,
759d139b9bdSJames Bottomley 					       struct device *);
76077916da7SBart Van Assche #if defined(CONFIG_SCSI_PROC_FS)
76177916da7SBart Van Assche struct proc_dir_entry *
76277916da7SBart Van Assche scsi_template_proc_dir(const struct scsi_host_template *sht);
76377916da7SBart Van Assche #else
76477916da7SBart Van Assche #define scsi_template_proc_dir(sht) NULL
76577916da7SBart Van Assche #endif
7661da177e4SLinus Torvalds extern void scsi_scan_host(struct Scsi_Host *);
767*a1f506afSDamien Le Moal extern int scsi_resume_device(struct scsi_device *sdev);
768ff48b378SDamien Le Moal extern int scsi_rescan_device(struct scsi_device *sdev);
7691da177e4SLinus Torvalds extern void scsi_remove_host(struct Scsi_Host *);
7701da177e4SLinus Torvalds extern struct Scsi_Host *scsi_host_get(struct Scsi_Host *);
771c84b023aSMing Lei extern int scsi_host_busy(struct Scsi_Host *shost);
7721da177e4SLinus Torvalds extern void scsi_host_put(struct Scsi_Host *t);
77362ec2092STony Battersby extern struct Scsi_Host *scsi_host_lookup(unsigned int hostnum);
774d3301874SMike Anderson extern const char *scsi_host_state_name(enum scsi_host_state);
775466552b9SHannes Reinecke extern void scsi_host_complete_all_commands(struct Scsi_Host *shost,
77662af0ee9SBart Van Assche 					    enum scsi_host_status status);
7771da177e4SLinus Torvalds 
scsi_add_host(struct Scsi_Host * host,struct device * dev)778d139b9bdSJames Bottomley static inline int __must_check scsi_add_host(struct Scsi_Host *host,
779d139b9bdSJames Bottomley 					     struct device *dev)
780d139b9bdSJames Bottomley {
781d139b9bdSJames Bottomley 	return scsi_add_host_with_dma(host, dev, dev);
782d139b9bdSJames Bottomley }
783d139b9bdSJames Bottomley 
scsi_get_device(struct Scsi_Host * shost)7841da177e4SLinus Torvalds static inline struct device *scsi_get_device(struct Scsi_Host *shost)
7851da177e4SLinus Torvalds {
7861da177e4SLinus Torvalds         return shost->shost_gendev.parent;
7871da177e4SLinus Torvalds }
7881da177e4SLinus Torvalds 
78982f29467SMike Anderson /**
79082f29467SMike Anderson  * scsi_host_scan_allowed - Is scanning of this host allowed
79182f29467SMike Anderson  * @shost:	Pointer to Scsi_Host.
79282f29467SMike Anderson  **/
scsi_host_scan_allowed(struct Scsi_Host * shost)79382f29467SMike Anderson static inline int scsi_host_scan_allowed(struct Scsi_Host *shost)
79482f29467SMike Anderson {
79576e4e12fSMike Christie 	return shost->shost_state == SHOST_RUNNING ||
79676e4e12fSMike Christie 	       shost->shost_state == SHOST_RECOVERY;
79782f29467SMike Anderson }
79882f29467SMike Anderson 
7991da177e4SLinus Torvalds extern void scsi_unblock_requests(struct Scsi_Host *);
8001da177e4SLinus Torvalds extern void scsi_block_requests(struct Scsi_Host *);
8012bb95584SHannes Reinecke extern int scsi_host_block(struct Scsi_Host *shost);
8022bb95584SHannes Reinecke extern int scsi_host_unblock(struct Scsi_Host *shost, int new_state);
8031da177e4SLinus Torvalds 
804dcece99eSHannes Reinecke void scsi_host_busy_iter(struct Scsi_Host *,
8052dd6532eSJohn Garry 			 bool (*fn)(struct scsi_cmnd *, void *), void *priv);
806dcece99eSHannes Reinecke 
8071da177e4SLinus Torvalds struct class_container;
808b58d9154SFUJITA Tomonori 
8091da177e4SLinus Torvalds /*
8104469f987SMartin K. Petersen  * DIF defines the exchange of protection information between
8114469f987SMartin K. Petersen  * initiator and SBC block device.
8124469f987SMartin K. Petersen  *
8134469f987SMartin K. Petersen  * DIX defines the exchange of protection information between OS and
8144469f987SMartin K. Petersen  * initiator.
8154469f987SMartin K. Petersen  */
8164469f987SMartin K. Petersen enum scsi_host_prot_capabilities {
8174469f987SMartin K. Petersen 	SHOST_DIF_TYPE1_PROTECTION = 1 << 0, /* T10 DIF Type 1 */
8184469f987SMartin K. Petersen 	SHOST_DIF_TYPE2_PROTECTION = 1 << 1, /* T10 DIF Type 2 */
8194469f987SMartin K. Petersen 	SHOST_DIF_TYPE3_PROTECTION = 1 << 2, /* T10 DIF Type 3 */
8204469f987SMartin K. Petersen 
8214469f987SMartin K. Petersen 	SHOST_DIX_TYPE0_PROTECTION = 1 << 3, /* DIX between OS and HBA only */
8224469f987SMartin K. Petersen 	SHOST_DIX_TYPE1_PROTECTION = 1 << 4, /* DIX with DIF Type 1 */
8234469f987SMartin K. Petersen 	SHOST_DIX_TYPE2_PROTECTION = 1 << 5, /* DIX with DIF Type 2 */
8244469f987SMartin K. Petersen 	SHOST_DIX_TYPE3_PROTECTION = 1 << 6, /* DIX with DIF Type 3 */
8254469f987SMartin K. Petersen };
8264469f987SMartin K. Petersen 
8274469f987SMartin K. Petersen /*
8284469f987SMartin K. Petersen  * SCSI hosts which support the Data Integrity Extensions must
8294469f987SMartin K. Petersen  * indicate their capabilities by setting the prot_capabilities using
8304469f987SMartin K. Petersen  * this call.
8314469f987SMartin K. Petersen  */
scsi_host_set_prot(struct Scsi_Host * shost,unsigned int mask)8324469f987SMartin K. Petersen static inline void scsi_host_set_prot(struct Scsi_Host *shost, unsigned int mask)
8334469f987SMartin K. Petersen {
8344469f987SMartin K. Petersen 	shost->prot_capabilities = mask;
8354469f987SMartin K. Petersen }
8364469f987SMartin K. Petersen 
scsi_host_get_prot(struct Scsi_Host * shost)8374469f987SMartin K. Petersen static inline unsigned int scsi_host_get_prot(struct Scsi_Host *shost)
8384469f987SMartin K. Petersen {
8394469f987SMartin K. Petersen 	return shost->prot_capabilities;
8404469f987SMartin K. Petersen }
8414469f987SMartin K. Petersen 
scsi_host_prot_dma(struct Scsi_Host * shost)84213f05c8dSMartin K. Petersen static inline int scsi_host_prot_dma(struct Scsi_Host *shost)
84313f05c8dSMartin K. Petersen {
84413f05c8dSMartin K. Petersen 	return shost->prot_capabilities >= SHOST_DIX_TYPE0_PROTECTION;
84513f05c8dSMartin K. Petersen }
84613f05c8dSMartin K. Petersen 
scsi_host_dif_capable(struct Scsi_Host * shost,unsigned int target_type)8474469f987SMartin K. Petersen static inline unsigned int scsi_host_dif_capable(struct Scsi_Host *shost, unsigned int target_type)
8484469f987SMartin K. Petersen {
849b2b465e9SMartin K. Petersen 	static unsigned char cap[] = { 0,
850b2b465e9SMartin K. Petersen 				       SHOST_DIF_TYPE1_PROTECTION,
851b2b465e9SMartin K. Petersen 				       SHOST_DIF_TYPE2_PROTECTION,
852b2b465e9SMartin K. Petersen 				       SHOST_DIF_TYPE3_PROTECTION };
8534469f987SMartin K. Petersen 
8544d24834dSMartin K. Petersen 	if (target_type >= ARRAY_SIZE(cap))
855fe542396SMartin K. Petersen 		return 0;
856fe542396SMartin K. Petersen 
857b2b465e9SMartin K. Petersen 	return shost->prot_capabilities & cap[target_type] ? target_type : 0;
8584469f987SMartin K. Petersen }
8594469f987SMartin K. Petersen 
scsi_host_dix_capable(struct Scsi_Host * shost,unsigned int target_type)8604469f987SMartin K. Petersen static inline unsigned int scsi_host_dix_capable(struct Scsi_Host *shost, unsigned int target_type)
8614469f987SMartin K. Petersen {
86235e1a5d9SMartin K. Petersen #if defined(CONFIG_BLK_DEV_INTEGRITY)
863b2b465e9SMartin K. Petersen 	static unsigned char cap[] = { SHOST_DIX_TYPE0_PROTECTION,
864b2b465e9SMartin K. Petersen 				       SHOST_DIX_TYPE1_PROTECTION,
865b2b465e9SMartin K. Petersen 				       SHOST_DIX_TYPE2_PROTECTION,
866b2b465e9SMartin K. Petersen 				       SHOST_DIX_TYPE3_PROTECTION };
867b2b465e9SMartin K. Petersen 
8684d24834dSMartin K. Petersen 	if (target_type >= ARRAY_SIZE(cap))
869fe542396SMartin K. Petersen 		return 0;
870fe542396SMartin K. Petersen 
871b2b465e9SMartin K. Petersen 	return shost->prot_capabilities & cap[target_type];
87235e1a5d9SMartin K. Petersen #endif
8734469f987SMartin K. Petersen 	return 0;
8744469f987SMartin K. Petersen }
8754469f987SMartin K. Petersen 
8764469f987SMartin K. Petersen /*
8774469f987SMartin K. Petersen  * All DIX-capable initiators must support the T10-mandated CRC
8784469f987SMartin K. Petersen  * checksum.  Controllers can optionally implement the IP checksum
8794469f987SMartin K. Petersen  * scheme which has much lower impact on system performance.  Note
8804469f987SMartin K. Petersen  * that the main rationale for the checksum is to match integrity
8814469f987SMartin K. Petersen  * metadata with data.  Detecting bit errors are a job for ECC memory
8824469f987SMartin K. Petersen  * and buses.
8834469f987SMartin K. Petersen  */
8844469f987SMartin K. Petersen 
8854469f987SMartin K. Petersen enum scsi_host_guard_type {
8864469f987SMartin K. Petersen 	SHOST_DIX_GUARD_CRC = 1 << 0,
8874469f987SMartin K. Petersen 	SHOST_DIX_GUARD_IP  = 1 << 1,
8884469f987SMartin K. Petersen };
8894469f987SMartin K. Petersen 
scsi_host_set_guard(struct Scsi_Host * shost,unsigned char type)8904469f987SMartin K. Petersen static inline void scsi_host_set_guard(struct Scsi_Host *shost, unsigned char type)
8914469f987SMartin K. Petersen {
8924469f987SMartin K. Petersen 	shost->prot_guard_type = type;
8934469f987SMartin K. Petersen }
8944469f987SMartin K. Petersen 
scsi_host_get_guard(struct Scsi_Host * shost)8954469f987SMartin K. Petersen static inline unsigned char scsi_host_get_guard(struct Scsi_Host *shost)
8964469f987SMartin K. Petersen {
8974469f987SMartin K. Petersen 	return shost->prot_guard_type;
8984469f987SMartin K. Petersen }
8994469f987SMartin K. Petersen 
90047ba39eeSJames Bottomley extern int scsi_host_set_state(struct Scsi_Host *, enum scsi_host_state);
9011da177e4SLinus Torvalds 
9021da177e4SLinus Torvalds #endif /* _SCSI_SCSI_HOST_H */
903