Merge tag 'riscv-for-linus-5.20-mw0' of git://git.kernel.org/pub/scm/linux/kernel...
[linux-block.git] / include / scsi / sas_ata.h
CommitLineData
1a59d1b8 1/* SPDX-License-Identifier: GPL-2.0-or-later */
338ec570
DW
2/*
3 * Support for SATA devices on Serial Attached SCSI (SAS) controllers
4 *
5 * Copyright (C) 2006 IBM Corporation
6 *
7 * Written by: Darrick J. Wong <djwong@us.ibm.com>, IBM Corporation
338ec570
DW
8 */
9
10#ifndef _SAS_ATA_H_
11#define _SAS_ATA_H_
12
13#include <linux/libata.h>
14#include <scsi/libsas.h>
15
b9142174
JB
16#ifdef CONFIG_SCSI_SAS_ATA
17
338ec570
DW
18static inline int dev_is_sata(struct domain_device *dev)
19{
aa9f8328
JB
20 return dev->dev_type == SAS_SATA_DEV || dev->dev_type == SAS_SATA_PM ||
21 dev->dev_type == SAS_SATA_PM_PORT || dev->dev_type == SAS_SATA_PENDING;
338ec570
DW
22}
23
354cf829 24int sas_get_ata_info(struct domain_device *dev, struct ex_phy *phy);
b2024459 25int sas_ata_init(struct domain_device *dev);
3a2755af 26void sas_ata_task_abort(struct sas_task *task);
00dd4998 27void sas_ata_strategy_handler(struct Scsi_Host *shost);
3a20e642 28void sas_ata_eh(struct Scsi_Host *shost, struct list_head *work_q);
b52df417 29void sas_ata_schedule_reset(struct domain_device *dev);
81c757bc 30void sas_ata_wait_eh(struct domain_device *dev);
9508a66f 31void sas_probe_sata(struct asd_sas_port *port);
303694ee
DW
32void sas_suspend_sata(struct asd_sas_port *port);
33void sas_resume_sata(struct asd_sas_port *port);
e4a9c373 34void sas_ata_end_eh(struct ata_port *ap);
3f2e252e
JG
35int sas_execute_ata_cmd(struct domain_device *device, u8 *fis,
36 int force_phy_id);
057e5fc0 37int sas_ata_wait_after_reset(struct domain_device *dev, unsigned long deadline);
b9142174
JB
38#else
39
40
41static inline int dev_is_sata(struct domain_device *dev)
42{
43 return 0;
44}
b2024459 45static inline int sas_ata_init(struct domain_device *dev)
b9142174
JB
46{
47 return 0;
48}
79bc1481 49static inline void sas_ata_task_abort(struct sas_task *task)
b9142174
JB
50{
51}
00dd4998
JB
52
53static inline void sas_ata_strategy_handler(struct Scsi_Host *shost)
54{
55}
56
3a20e642 57static inline void sas_ata_eh(struct Scsi_Host *shost, struct list_head *work_q)
00dd4998 58{
00dd4998
JB
59}
60
b52df417
DW
61static inline void sas_ata_schedule_reset(struct domain_device *dev)
62{
63}
64
81c757bc
DW
65static inline void sas_ata_wait_eh(struct domain_device *dev)
66{
67}
354cf829 68
9508a66f
DW
69static inline void sas_probe_sata(struct asd_sas_port *port)
70{
71}
72
303694ee
DW
73static inline void sas_suspend_sata(struct asd_sas_port *port)
74{
75}
76
77static inline void sas_resume_sata(struct asd_sas_port *port)
78{
79}
80
354cf829
DW
81static inline int sas_get_ata_info(struct domain_device *dev, struct ex_phy *phy)
82{
83 return 0;
84}
e4a9c373
DW
85
86static inline void sas_ata_end_eh(struct ata_port *ap)
87{
88}
3f2e252e
JG
89
90static inline int sas_execute_ata_cmd(struct domain_device *device, u8 *fis,
91 int force_phy_id)
92{
93 return 0;
94}
057e5fc0
JG
95
96static inline int sas_ata_wait_after_reset(struct domain_device *dev,
97 unsigned long deadline)
98{
99 return -ETIMEDOUT;
100}
b9142174
JB
101#endif
102
338ec570 103#endif /* _SAS_ATA_H_ */