1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _SCSI_SCSI_HOST_H
3 #define _SCSI_SCSI_HOST_H
4
5 #include <linux/device.h>
6 #include <linux/list.h>
7 #include <linux/types.h>
8 #include <linux/workqueue.h>
9 #include <linux/mutex.h>
10 #include <linux/seq_file.h>
11 #include <linux/blk-mq.h>
12 #include <scsi/scsi.h>
13 #include <linux/android_kabi.h>
14
15 struct block_device;
16 struct completion;
17 struct module;
18 struct scsi_cmnd;
19 struct scsi_device;
20 struct scsi_host_cmd_pool;
21 struct scsi_target;
22 struct Scsi_Host;
23 struct scsi_transport_template;
24
25
26 #define SG_ALL SG_CHUNK_SIZE
27
28 #define MODE_UNKNOWN 0x00
29 #define MODE_INITIATOR 0x01
30 #define MODE_TARGET 0x02
31
32 struct scsi_host_template {
33 /*
34 * Put fields referenced in IO submission path together in
35 * same cacheline
36 */
37
38 /*
39 * Additional per-command data allocated for the driver.
40 */
41 unsigned int cmd_size;
42
43 /*
44 * The queuecommand function is used to queue up a scsi
45 * command block to the LLDD. When the driver finished
46 * processing the command the done callback is invoked.
47 *
48 * If queuecommand returns 0, then the driver has accepted the
49 * command. It must also push it to the HBA if the scsi_cmnd
50 * flag SCMD_LAST is set, or if the driver does not implement
51 * commit_rqs. The done() function must be called on the command
52 * when the driver has finished with it. (you may call done on the
53 * command before queuecommand returns, but in this case you
54 * *must* return 0 from queuecommand).
55 *
56 * Queuecommand may also reject the command, in which case it may
57 * not touch the command and must not call done() for it.
58 *
59 * There are two possible rejection returns:
60 *
61 * SCSI_MLQUEUE_DEVICE_BUSY: Block this device temporarily, but
62 * allow commands to other devices serviced by this host.
63 *
64 * SCSI_MLQUEUE_HOST_BUSY: Block all devices served by this
65 * host temporarily.
66 *
67 * For compatibility, any other non-zero return is treated the
68 * same as SCSI_MLQUEUE_HOST_BUSY.
69 *
70 * NOTE: "temporarily" means either until the next command for#
71 * this device/host completes, or a period of time determined by
72 * I/O pressure in the system if there are no other outstanding
73 * commands.
74 *
75 * STATUS: REQUIRED
76 */
77 int (* queuecommand)(struct Scsi_Host *, struct scsi_cmnd *);
78
79 /*
80 * The commit_rqs function is used to trigger a hardware
81 * doorbell after some requests have been queued with
82 * queuecommand, when an error is encountered before sending
83 * the request with SCMD_LAST set.
84 *
85 * STATUS: OPTIONAL
86 */
87 void (*commit_rqs)(struct Scsi_Host *, u16);
88
89 struct module *module;
90 const char *name;
91
92 /*
93 * The info function will return whatever useful information the
94 * developer sees fit. If not provided, then the name field will
95 * be used instead.
96 *
97 * Status: OPTIONAL
98 */
99 const char *(*info)(struct Scsi_Host *);
100
101 /*
102 * Ioctl interface
103 *
104 * Status: OPTIONAL
105 */
106 int (*ioctl)(struct scsi_device *dev, unsigned int cmd,
107 void __user *arg);
108
109
110 #ifdef CONFIG_COMPAT
111 /*
112 * Compat handler. Handle 32bit ABI.
113 * When unknown ioctl is passed return -ENOIOCTLCMD.
114 *
115 * Status: OPTIONAL
116 */
117 int (*compat_ioctl)(struct scsi_device *dev, unsigned int cmd,
118 void __user *arg);
119 #endif
120
121 int (*init_cmd_priv)(struct Scsi_Host *shost, struct scsi_cmnd *cmd);
122 int (*exit_cmd_priv)(struct Scsi_Host *shost, struct scsi_cmnd *cmd);
123
124 /*
125 * This is an error handling strategy routine. You don't need to
126 * define one of these if you don't want to - there is a default
127 * routine that is present that should work in most cases. For those
128 * driver authors that have the inclination and ability to write their
129 * own strategy routine, this is where it is specified. Note - the
130 * strategy routine is *ALWAYS* run in the context of the kernel eh
131 * thread. Thus you are guaranteed to *NOT* be in an interrupt
132 * handler when you execute this, and you are also guaranteed to
133 * *NOT* have any other commands being queued while you are in the
134 * strategy routine. When you return from this function, operations
135 * return to normal.
136 *
137 * See scsi_error.c scsi_unjam_host for additional comments about
138 * what this function should and should not be attempting to do.
139 *
140 * Status: REQUIRED (at least one of them)
141 */
142 int (* eh_abort_handler)(struct scsi_cmnd *);
143 int (* eh_device_reset_handler)(struct scsi_cmnd *);
144 int (* eh_target_reset_handler)(struct scsi_cmnd *);
145 int (* eh_bus_reset_handler)(struct scsi_cmnd *);
146 int (* eh_host_reset_handler)(struct scsi_cmnd *);
147
148 /*
149 * Before the mid layer attempts to scan for a new device where none
150 * currently exists, it will call this entry in your driver. Should
151 * your driver need to allocate any structs or perform any other init
152 * items in order to send commands to a currently unused target/lun
153 * combo, then this is where you can perform those allocations. This
154 * is specifically so that drivers won't have to perform any kind of
155 * "is this a new device" checks in their queuecommand routine,
156 * thereby making the hot path a bit quicker.
157 *
158 * Return values: 0 on success, non-0 on failure
159 *
160 * Deallocation: If we didn't find any devices at this ID, you will
161 * get an immediate call to slave_destroy(). If we find something
162 * here then you will get a call to slave_configure(), then the
163 * device will be used for however long it is kept around, then when
164 * the device is removed from the system (or * possibly at reboot
165 * time), you will then get a call to slave_destroy(). This is
166 * assuming you implement slave_configure and slave_destroy.
167 * However, if you allocate memory and hang it off the device struct,
168 * then you must implement the slave_destroy() routine at a minimum
169 * in order to avoid leaking memory
170 * each time a device is tore down.
171 *
172 * Status: OPTIONAL
173 */
174 int (* slave_alloc)(struct scsi_device *);
175
176 /*
177 * Once the device has responded to an INQUIRY and we know the
178 * device is online, we call into the low level driver with the
179 * struct scsi_device *. If the low level device driver implements
180 * this function, it *must* perform the task of setting the queue
181 * depth on the device. All other tasks are optional and depend
182 * on what the driver supports and various implementation details.
183 *
184 * Things currently recommended to be handled at this time include:
185 *
186 * 1. Setting the device queue depth. Proper setting of this is
187 * described in the comments for scsi_change_queue_depth.
188 * 2. Determining if the device supports the various synchronous
189 * negotiation protocols. The device struct will already have
190 * responded to INQUIRY and the results of the standard items
191 * will have been shoved into the various device flag bits, eg.
192 * device->sdtr will be true if the device supports SDTR messages.
193 * 3. Allocating command structs that the device will need.
194 * 4. Setting the default timeout on this device (if needed).
195 * 5. Anything else the low level driver might want to do on a device
196 * specific setup basis...
197 * 6. Return 0 on success, non-0 on error. The device will be marked
198 * as offline on error so that no access will occur. If you return
199 * non-0, your slave_destroy routine will never get called for this
200 * device, so don't leave any loose memory hanging around, clean
201 * up after yourself before returning non-0
202 *
203 * Status: OPTIONAL
204 */
205 int (* slave_configure)(struct scsi_device *);
206
207 /*
208 * Immediately prior to deallocating the device and after all activity
209 * has ceased the mid layer calls this point so that the low level
210 * driver may completely detach itself from the scsi device and vice
211 * versa. The low level driver is responsible for freeing any memory
212 * it allocated in the slave_alloc or slave_configure calls.
213 *
214 * Status: OPTIONAL
215 */
216 void (* slave_destroy)(struct scsi_device *);
217
218 /*
219 * Before the mid layer attempts to scan for a new device attached
220 * to a target where no target currently exists, it will call this
221 * entry in your driver. Should your driver need to allocate any
222 * structs or perform any other init items in order to send commands
223 * to a currently unused target, then this is where you can perform
224 * those allocations.
225 *
226 * Return values: 0 on success, non-0 on failure
227 *
228 * Status: OPTIONAL
229 */
230 int (* target_alloc)(struct scsi_target *);
231
232 /*
233 * Immediately prior to deallocating the target structure, and
234 * after all activity to attached scsi devices has ceased, the
235 * midlayer calls this point so that the driver may deallocate
236 * and terminate any references to the target.
237 *
238 * Status: OPTIONAL
239 */
240 void (* target_destroy)(struct scsi_target *);
241
242 /*
243 * If a host has the ability to discover targets on its own instead
244 * of scanning the entire bus, it can fill in this function and
245 * call scsi_scan_host(). This function will be called periodically
246 * until it returns 1 with the scsi_host and the elapsed time of
247 * the scan in jiffies.
248 *
249 * Status: OPTIONAL
250 */
251 int (* scan_finished)(struct Scsi_Host *, unsigned long);
252
253 /*
254 * If the host wants to be called before the scan starts, but
255 * after the midlayer has set up ready for the scan, it can fill
256 * in this function.
257 *
258 * Status: OPTIONAL
259 */
260 void (* scan_start)(struct Scsi_Host *);
261
262 /*
263 * Fill in this function to allow the queue depth of this host
264 * to be changeable (on a per device basis). Returns either
265 * the current queue depth setting (may be different from what
266 * was passed in) or an error. An error should only be
267 * returned if the requested depth is legal but the driver was
268 * unable to set it. If the requested depth is illegal, the
269 * driver should set and return the closest legal queue depth.
270 *
271 * Status: OPTIONAL
272 */
273 int (* change_queue_depth)(struct scsi_device *, int);
274
275 /*
276 * This functions lets the driver expose the queue mapping
277 * to the block layer.
278 *
279 * Status: OPTIONAL
280 */
281 int (* map_queues)(struct Scsi_Host *shost);
282
283 /*
284 * SCSI interface of blk_poll - poll for IO completions.
285 * Only applicable if SCSI LLD exposes multiple h/w queues.
286 *
287 * Return value: Number of completed entries found.
288 *
289 * Status: OPTIONAL
290 */
291 int (* mq_poll)(struct Scsi_Host *shost, unsigned int queue_num);
292
293 /*
294 * Check if scatterlists need to be padded for DMA draining.
295 *
296 * Status: OPTIONAL
297 */
298 bool (* dma_need_drain)(struct request *rq);
299
300 /*
301 * This function determines the BIOS parameters for a given
302 * harddisk. These tend to be numbers that are made up by
303 * the host adapter. Parameters:
304 * size, device, list (heads, sectors, cylinders)
305 *
306 * Status: OPTIONAL
307 */
308 int (* bios_param)(struct scsi_device *, struct block_device *,
309 sector_t, int []);
310
311 /*
312 * This function is called when one or more partitions on the
313 * device reach beyond the end of the device.
314 *
315 * Status: OPTIONAL
316 */
317 void (*unlock_native_capacity)(struct scsi_device *);
318
319 /*
320 * Can be used to export driver statistics and other infos to the
321 * world outside the kernel ie. userspace and it also provides an
322 * interface to feed the driver with information.
323 *
324 * Status: OBSOLETE
325 */
326 int (*show_info)(struct seq_file *, struct Scsi_Host *);
327 int (*write_info)(struct Scsi_Host *, char *, int);
328
329 /*
330 * This is an optional routine that allows the transport to become
331 * involved when a scsi io timer fires. The return value tells the
332 * timer routine how to finish the io timeout handling.
333 *
334 * Status: OPTIONAL
335 */
336 enum blk_eh_timer_return (*eh_timed_out)(struct scsi_cmnd *);
337 /*
338 * Optional routine that allows the transport to decide if a cmd
339 * is retryable. Return true if the transport is in a state the
340 * cmd should be retried on.
341 */
342 bool (*eh_should_retry_cmd)(struct scsi_cmnd *scmd);
343
344 /* This is an optional routine that allows transport to initiate
345 * LLD adapter or firmware reset using sysfs attribute.
346 *
347 * Return values: 0 on success, -ve value on failure.
348 *
349 * Status: OPTIONAL
350 */
351
352 int (*host_reset)(struct Scsi_Host *shost, int reset_type);
353 #define SCSI_ADAPTER_RESET 1
354 #define SCSI_FIRMWARE_RESET 2
355
356
357 /*
358 * Name of proc directory
359 */
360 const char *proc_name;
361
362 /*
363 * Used to store the procfs directory if a driver implements the
364 * show_info method.
365 */
366 struct proc_dir_entry *proc_dir;
367
368 /*
369 * This determines if we will use a non-interrupt driven
370 * or an interrupt driven scheme. It is set to the maximum number
371 * of simultaneous commands a single hw queue in HBA will accept.
372 */
373 int can_queue;
374
375 /*
376 * In many instances, especially where disconnect / reconnect are
377 * supported, our host also has an ID on the SCSI bus. If this is
378 * the case, then it must be reserved. Please set this_id to -1 if
379 * your setup is in single initiator mode, and the host lacks an
380 * ID.
381 */
382 int this_id;
383
384 /*
385 * This determines the degree to which the host adapter is capable
386 * of scatter-gather.
387 */
388 unsigned short sg_tablesize;
389 unsigned short sg_prot_tablesize;
390
391 /*
392 * Set this if the host adapter has limitations beside segment count.
393 */
394 unsigned int max_sectors;
395
396 /*
397 * Maximum size in bytes of a single segment.
398 */
399 unsigned int max_segment_size;
400
401 /*
402 * DMA scatter gather segment boundary limit. A segment crossing this
403 * boundary will be split in two.
404 */
405 unsigned long dma_boundary;
406
407 unsigned long virt_boundary_mask;
408
409 /*
410 * This specifies "machine infinity" for host templates which don't
411 * limit the transfer size. Note this limit represents an absolute
412 * maximum, and may be over the transfer limits allowed for
413 * individual devices (e.g. 256 for SCSI-1).
414 */
415 #define SCSI_DEFAULT_MAX_SECTORS 1024
416
417 /*
418 * True if this host adapter can make good use of linked commands.
419 * This will allow more than one command to be queued to a given
420 * unit on a given host. Set this to the maximum number of command
421 * blocks to be provided for each device. Set this to 1 for one
422 * command block per lun, 2 for two, etc. Do not set this to 0.
423 * You should make sure that the host adapter will do the right thing
424 * before you try setting this above 1.
425 */
426 short cmd_per_lun;
427
428 /*
429 * present contains counter indicating how many boards of this
430 * type were found when we did the scan.
431 */
432 unsigned char present;
433
434 /* If use block layer to manage tags, this is tag allocation policy */
435 int tag_alloc_policy;
436
437 /*
438 * Track QUEUE_FULL events and reduce queue depth on demand.
439 */
440 unsigned track_queue_depth:1;
441
442 /*
443 * This specifies the mode that a LLD supports.
444 */
445 unsigned supported_mode:2;
446
447 /*
448 * True for emulated SCSI host adapters (e.g. ATAPI).
449 */
450 unsigned emulated:1;
451
452 /*
453 * True if the low-level driver performs its own reset-settle delays.
454 */
455 unsigned skip_settle_delay:1;
456
457 /* True if the controller does not support WRITE SAME */
458 unsigned no_write_same:1;
459
460 /* True if the host uses host-wide tagspace */
461 unsigned host_tagset:1;
462
463 /*
464 * Countdown for host blocking with no commands outstanding.
465 */
466 unsigned int max_host_blocked;
467
468 /*
469 * Default value for the blocking. If the queue is empty,
470 * host_blocked counts down in the request_fn until it restarts
471 * host operations as zero is reached.
472 *
473 * FIXME: This should probably be a value in the template
474 */
475 #define SCSI_DEFAULT_HOST_BLOCKED 7
476
477 /*
478 * Pointer to the sysfs class properties for this host, NULL terminated.
479 */
480 struct device_attribute **shost_attrs;
481
482 /*
483 * Pointer to the SCSI device properties for this host, NULL terminated.
484 */
485 struct device_attribute **sdev_attrs;
486
487 /*
488 * Pointer to the SCSI device attribute groups for this host,
489 * NULL terminated.
490 */
491 const struct attribute_group **sdev_groups;
492
493 /*
494 * Vendor Identifier associated with the host
495 *
496 * Note: When specifying vendor_id, be sure to read the
497 * Vendor Type and ID formatting requirements specified in
498 * scsi_netlink.h
499 */
500 u64 vendor_id;
501
502 struct scsi_host_cmd_pool *cmd_pool;
503
504 /* Delay for runtime autosuspend */
505 int rpm_autosuspend_delay;
506
507 ANDROID_KABI_RESERVE(1);
508 ANDROID_KABI_RESERVE(2);
509 ANDROID_KABI_RESERVE(3);
510 ANDROID_KABI_RESERVE(4);
511 };
512
513 /*
514 * Temporary #define for host lock push down. Can be removed when all
515 * drivers have been updated to take advantage of unlocked
516 * queuecommand.
517 *
518 */
519 #define DEF_SCSI_QCMD(func_name) \
520 int func_name(struct Scsi_Host *shost, struct scsi_cmnd *cmd) \
521 { \
522 unsigned long irq_flags; \
523 int rc; \
524 spin_lock_irqsave(shost->host_lock, irq_flags); \
525 rc = func_name##_lck (cmd, cmd->scsi_done); \
526 spin_unlock_irqrestore(shost->host_lock, irq_flags); \
527 return rc; \
528 }
529
530
531 /*
532 * shost state: If you alter this, you also need to alter scsi_sysfs.c
533 * (for the ascii descriptions) and the state model enforcer:
534 * scsi_host_set_state()
535 */
536 enum scsi_host_state {
537 SHOST_CREATED = 1,
538 SHOST_RUNNING,
539 SHOST_CANCEL,
540 SHOST_DEL,
541 SHOST_RECOVERY,
542 SHOST_CANCEL_RECOVERY,
543 SHOST_DEL_RECOVERY,
544 };
545
546 struct Scsi_Host {
547 /*
548 * __devices is protected by the host_lock, but you should
549 * usually use scsi_device_lookup / shost_for_each_device
550 * to access it and don't care about locking yourself.
551 * In the rare case of being in irq context you can use
552 * their __ prefixed variants with the lock held. NEVER
553 * access this list directly from a driver.
554 */
555 struct list_head __devices;
556 struct list_head __targets;
557
558 struct list_head starved_list;
559
560 spinlock_t default_lock;
561 spinlock_t *host_lock;
562
563 struct mutex scan_mutex;/* serialize scanning activity */
564
565 struct list_head eh_abort_list;
566 struct list_head eh_cmd_q;
567 struct task_struct * ehandler; /* Error recovery thread. */
568 struct completion * eh_action; /* Wait for specific actions on the
569 host. */
570 wait_queue_head_t host_wait;
571 struct scsi_host_template *hostt;
572 struct scsi_transport_template *transportt;
573
574 /* Area to keep a shared tag map */
575 struct blk_mq_tag_set tag_set;
576
577 atomic_t host_blocked;
578
579 unsigned int host_failed; /* commands that failed.
580 protected by host_lock */
581 unsigned int host_eh_scheduled; /* EH scheduled without command */
582
583 unsigned int host_no; /* Used for IOCTL_GET_IDLUN, /proc/scsi et al. */
584
585 /* next two fields are used to bound the time spent in error handling */
586 int eh_deadline;
587 unsigned long last_reset;
588
589
590 /*
591 * These three parameters can be used to allow for wide scsi,
592 * and for host adapters that support multiple busses
593 * The last two should be set to 1 more than the actual max id
594 * or lun (e.g. 8 for SCSI parallel systems).
595 */
596 unsigned int max_channel;
597 unsigned int max_id;
598 u64 max_lun;
599
600 /*
601 * This is a unique identifier that must be assigned so that we
602 * have some way of identifying each detected host adapter properly
603 * and uniquely. For hosts that do not support more than one card
604 * in the system at one time, this does not need to be set. It is
605 * initialized to 0 in scsi_register.
606 */
607 unsigned int unique_id;
608
609 /*
610 * The maximum length of SCSI commands that this host can accept.
611 * Probably 12 for most host adapters, but could be 16 for others.
612 * or 260 if the driver supports variable length cdbs.
613 * For drivers that don't set this field, a value of 12 is
614 * assumed.
615 */
616 unsigned short max_cmd_len;
617
618 int this_id;
619 int can_queue;
620 short cmd_per_lun;
621 short unsigned int sg_tablesize;
622 short unsigned int sg_prot_tablesize;
623 unsigned int max_sectors;
624 unsigned int max_segment_size;
625 unsigned long dma_boundary;
626 unsigned long virt_boundary_mask;
627 /*
628 * In scsi-mq mode, the number of hardware queues supported by the LLD.
629 *
630 * Note: it is assumed that each hardware queue has a queue depth of
631 * can_queue. In other words, the total queue depth per host
632 * is nr_hw_queues * can_queue. However, for when host_tagset is set,
633 * the total queue depth is can_queue.
634 */
635 unsigned nr_hw_queues;
636 unsigned nr_maps;
637 unsigned active_mode:2;
638
639 /*
640 * Host has requested that no further requests come through for the
641 * time being.
642 */
643 unsigned host_self_blocked:1;
644
645 /*
646 * Host uses correct SCSI ordering not PC ordering. The bit is
647 * set for the minority of drivers whose authors actually read
648 * the spec ;).
649 */
650 unsigned reverse_ordering:1;
651
652 /* Task mgmt function in progress */
653 unsigned tmf_in_progress:1;
654
655 /* Asynchronous scan in progress */
656 unsigned async_scan:1;
657
658 /* Don't resume host in EH */
659 unsigned eh_noresume:1;
660
661 /* The controller does not support WRITE SAME */
662 unsigned no_write_same:1;
663
664 /* True if the host uses host-wide tagspace */
665 unsigned host_tagset:1;
666
667 /* Host responded with short (<36 bytes) INQUIRY result */
668 unsigned short_inquiry:1;
669
670 /* The transport requires the LUN bits NOT to be stored in CDB[1] */
671 unsigned no_scsi2_lun_in_cdb:1;
672
673 /*
674 * Optional work queue to be utilized by the transport
675 */
676 char work_q_name[20];
677 struct workqueue_struct *work_q;
678
679 /*
680 * Task management function work queue
681 */
682 struct workqueue_struct *tmf_work_q;
683
684 /*
685 * Value host_blocked counts down from
686 */
687 unsigned int max_host_blocked;
688
689 /* Protection Information */
690 unsigned int prot_capabilities;
691 unsigned char prot_guard_type;
692
693 /* legacy crap */
694 unsigned long base;
695 unsigned long io_port;
696 unsigned char n_io_port;
697 unsigned char dma_channel;
698 unsigned int irq;
699
700
701 enum scsi_host_state shost_state;
702
703 /* ldm bits */
704 struct device shost_gendev, shost_dev;
705
706 /*
707 * Points to the transport data (if any) which is allocated
708 * separately
709 */
710 void *shost_data;
711
712 /*
713 * Points to the physical bus device we'd use to do DMA
714 * Needed just in case we have virtual hosts.
715 */
716 struct device *dma_dev;
717
718 ANDROID_KABI_RESERVE(1);
719
720 /*
721 * We should ensure that this is aligned, both for better performance
722 * and also because some compilers (m68k) don't automatically force
723 * alignment to a long boundary.
724 */
725 unsigned long hostdata[] /* Used for storage of host specific stuff */
726 __attribute__ ((aligned (sizeof(unsigned long))));
727 };
728
729 #define class_to_shost(d) \
730 container_of(d, struct Scsi_Host, shost_dev)
731
732 #define shost_printk(prefix, shost, fmt, a...) \
733 dev_printk(prefix, &(shost)->shost_gendev, fmt, ##a)
734
shost_priv(struct Scsi_Host * shost)735 static inline void *shost_priv(struct Scsi_Host *shost)
736 {
737 return (void *)shost->hostdata;
738 }
739
740 int scsi_is_host_device(const struct device *);
741
dev_to_shost(struct device * dev)742 static inline struct Scsi_Host *dev_to_shost(struct device *dev)
743 {
744 while (!scsi_is_host_device(dev)) {
745 if (!dev->parent)
746 return NULL;
747 dev = dev->parent;
748 }
749 return container_of(dev, struct Scsi_Host, shost_gendev);
750 }
751
scsi_host_in_recovery(struct Scsi_Host * shost)752 static inline int scsi_host_in_recovery(struct Scsi_Host *shost)
753 {
754 return shost->shost_state == SHOST_RECOVERY ||
755 shost->shost_state == SHOST_CANCEL_RECOVERY ||
756 shost->shost_state == SHOST_DEL_RECOVERY ||
757 shost->tmf_in_progress;
758 }
759
760 extern int scsi_queue_work(struct Scsi_Host *, struct work_struct *);
761 extern void scsi_flush_work(struct Scsi_Host *);
762
763 extern struct Scsi_Host *scsi_host_alloc(struct scsi_host_template *, int);
764 extern int __must_check scsi_add_host_with_dma(struct Scsi_Host *,
765 struct device *,
766 struct device *);
767 extern void scsi_scan_host(struct Scsi_Host *);
768 extern void scsi_rescan_device(struct device *);
769 extern void scsi_remove_host(struct Scsi_Host *);
770 extern struct Scsi_Host *scsi_host_get(struct Scsi_Host *);
771 extern int scsi_host_busy(struct Scsi_Host *shost);
772 extern void scsi_host_put(struct Scsi_Host *t);
773 extern struct Scsi_Host *scsi_host_lookup(unsigned short);
774 extern const char *scsi_host_state_name(enum scsi_host_state);
775 extern void scsi_host_complete_all_commands(struct Scsi_Host *shost,
776 enum scsi_host_status status);
777
scsi_add_host(struct Scsi_Host * host,struct device * dev)778 static inline int __must_check scsi_add_host(struct Scsi_Host *host,
779 struct device *dev)
780 {
781 return scsi_add_host_with_dma(host, dev, dev);
782 }
783
scsi_get_device(struct Scsi_Host * shost)784 static inline struct device *scsi_get_device(struct Scsi_Host *shost)
785 {
786 return shost->shost_gendev.parent;
787 }
788
789 /**
790 * scsi_host_scan_allowed - Is scanning of this host allowed
791 * @shost: Pointer to Scsi_Host.
792 **/
scsi_host_scan_allowed(struct Scsi_Host * shost)793 static inline int scsi_host_scan_allowed(struct Scsi_Host *shost)
794 {
795 return shost->shost_state == SHOST_RUNNING ||
796 shost->shost_state == SHOST_RECOVERY;
797 }
798
799 extern void scsi_unblock_requests(struct Scsi_Host *);
800 extern void scsi_block_requests(struct Scsi_Host *);
801 extern int scsi_host_block(struct Scsi_Host *shost);
802 extern int scsi_host_unblock(struct Scsi_Host *shost, int new_state);
803
804 void scsi_host_busy_iter(struct Scsi_Host *,
805 bool (*fn)(struct scsi_cmnd *, void *, bool), void *priv);
806
807 struct class_container;
808
809 /*
810 * These two functions are used to allocate and free a pseudo device
811 * which will connect to the host adapter itself rather than any
812 * physical device. You must deallocate when you are done with the
813 * thing. This physical pseudo-device isn't real and won't be available
814 * from any high-level drivers.
815 */
816 extern void scsi_free_host_dev(struct scsi_device *);
817 extern struct scsi_device *scsi_get_host_dev(struct Scsi_Host *);
818
819 /*
820 * DIF defines the exchange of protection information between
821 * initiator and SBC block device.
822 *
823 * DIX defines the exchange of protection information between OS and
824 * initiator.
825 */
826 enum scsi_host_prot_capabilities {
827 SHOST_DIF_TYPE1_PROTECTION = 1 << 0, /* T10 DIF Type 1 */
828 SHOST_DIF_TYPE2_PROTECTION = 1 << 1, /* T10 DIF Type 2 */
829 SHOST_DIF_TYPE3_PROTECTION = 1 << 2, /* T10 DIF Type 3 */
830
831 SHOST_DIX_TYPE0_PROTECTION = 1 << 3, /* DIX between OS and HBA only */
832 SHOST_DIX_TYPE1_PROTECTION = 1 << 4, /* DIX with DIF Type 1 */
833 SHOST_DIX_TYPE2_PROTECTION = 1 << 5, /* DIX with DIF Type 2 */
834 SHOST_DIX_TYPE3_PROTECTION = 1 << 6, /* DIX with DIF Type 3 */
835 };
836
837 /*
838 * SCSI hosts which support the Data Integrity Extensions must
839 * indicate their capabilities by setting the prot_capabilities using
840 * this call.
841 */
scsi_host_set_prot(struct Scsi_Host * shost,unsigned int mask)842 static inline void scsi_host_set_prot(struct Scsi_Host *shost, unsigned int mask)
843 {
844 shost->prot_capabilities = mask;
845 }
846
scsi_host_get_prot(struct Scsi_Host * shost)847 static inline unsigned int scsi_host_get_prot(struct Scsi_Host *shost)
848 {
849 return shost->prot_capabilities;
850 }
851
scsi_host_prot_dma(struct Scsi_Host * shost)852 static inline int scsi_host_prot_dma(struct Scsi_Host *shost)
853 {
854 return shost->prot_capabilities >= SHOST_DIX_TYPE0_PROTECTION;
855 }
856
scsi_host_dif_capable(struct Scsi_Host * shost,unsigned int target_type)857 static inline unsigned int scsi_host_dif_capable(struct Scsi_Host *shost, unsigned int target_type)
858 {
859 static unsigned char cap[] = { 0,
860 SHOST_DIF_TYPE1_PROTECTION,
861 SHOST_DIF_TYPE2_PROTECTION,
862 SHOST_DIF_TYPE3_PROTECTION };
863
864 if (target_type >= ARRAY_SIZE(cap))
865 return 0;
866
867 return shost->prot_capabilities & cap[target_type] ? target_type : 0;
868 }
869
scsi_host_dix_capable(struct Scsi_Host * shost,unsigned int target_type)870 static inline unsigned int scsi_host_dix_capable(struct Scsi_Host *shost, unsigned int target_type)
871 {
872 #if defined(CONFIG_BLK_DEV_INTEGRITY)
873 static unsigned char cap[] = { SHOST_DIX_TYPE0_PROTECTION,
874 SHOST_DIX_TYPE1_PROTECTION,
875 SHOST_DIX_TYPE2_PROTECTION,
876 SHOST_DIX_TYPE3_PROTECTION };
877
878 if (target_type >= ARRAY_SIZE(cap))
879 return 0;
880
881 return shost->prot_capabilities & cap[target_type];
882 #endif
883 return 0;
884 }
885
886 /*
887 * All DIX-capable initiators must support the T10-mandated CRC
888 * checksum. Controllers can optionally implement the IP checksum
889 * scheme which has much lower impact on system performance. Note
890 * that the main rationale for the checksum is to match integrity
891 * metadata with data. Detecting bit errors are a job for ECC memory
892 * and buses.
893 */
894
895 enum scsi_host_guard_type {
896 SHOST_DIX_GUARD_CRC = 1 << 0,
897 SHOST_DIX_GUARD_IP = 1 << 1,
898 };
899
scsi_host_set_guard(struct Scsi_Host * shost,unsigned char type)900 static inline void scsi_host_set_guard(struct Scsi_Host *shost, unsigned char type)
901 {
902 shost->prot_guard_type = type;
903 }
904
scsi_host_get_guard(struct Scsi_Host * shost)905 static inline unsigned char scsi_host_get_guard(struct Scsi_Host *shost)
906 {
907 return shost->prot_guard_type;
908 }
909
910 extern int scsi_host_set_state(struct Scsi_Host *, enum scsi_host_state);
911
912 #endif /* _SCSI_SCSI_HOST_H */
913