]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/scsi/scsi_transport_sas.h
[SCSI] scsi-driver ultrastore replace Scsi_Cmnd with struct scsi_cmnd
[mirror_ubuntu-bionic-kernel.git] / include / scsi / scsi_transport_sas.h
CommitLineData
c7ebbbce
CH
1#ifndef SCSI_TRANSPORT_SAS_H
2#define SCSI_TRANSPORT_SAS_H
3
4#include <linux/transport_class.h>
5#include <linux/types.h>
65c92b09 6#include <linux/mutex.h>
c7ebbbce
CH
7
8struct scsi_transport_template;
9struct sas_rphy;
10
11
12enum sas_device_type {
13 SAS_PHY_UNUSED,
14 SAS_END_DEVICE,
15 SAS_EDGE_EXPANDER_DEVICE,
16 SAS_FANOUT_EXPANDER_DEVICE,
17};
18
19enum sas_protocol {
20 SAS_PROTOCOL_SATA = 0x01,
21 SAS_PROTOCOL_SMP = 0x02,
22 SAS_PROTOCOL_STP = 0x04,
23 SAS_PROTOCOL_SSP = 0x08,
24};
25
26enum sas_linkrate {
27 SAS_LINK_RATE_UNKNOWN,
28 SAS_PHY_DISABLED,
29 SAS_LINK_RATE_FAILED,
30 SAS_SATA_SPINUP_HOLD,
31 SAS_SATA_PORT_SELECTOR,
32 SAS_LINK_RATE_1_5_GBPS,
33 SAS_LINK_RATE_3_0_GBPS,
7e6dff62 34 SAS_LINK_RATE_6_0_GBPS,
c7ebbbce
CH
35 SAS_LINK_VIRTUAL,
36};
37
38struct sas_identify {
39 enum sas_device_type device_type;
40 enum sas_protocol initiator_port_protocols;
41 enum sas_protocol target_port_protocols;
42 u64 sas_address;
43 u8 phy_identifier;
44};
45
c7ebbbce
CH
46struct sas_phy {
47 struct device dev;
48 int number;
c3ee74c4
CH
49
50 /* phy identification */
c7ebbbce 51 struct sas_identify identify;
c3ee74c4
CH
52
53 /* phy attributes */
c7ebbbce
CH
54 enum sas_linkrate negotiated_linkrate;
55 enum sas_linkrate minimum_linkrate_hw;
56 enum sas_linkrate minimum_linkrate;
57 enum sas_linkrate maximum_linkrate_hw;
58 enum sas_linkrate maximum_linkrate;
c3ee74c4
CH
59
60 /* link error statistics */
61 u32 invalid_dword_count;
62 u32 running_disparity_error_count;
63 u32 loss_of_dword_sync_count;
64 u32 phy_reset_problem_count;
65
65c92b09
JB
66 /* for the list of phys belonging to a port */
67 struct list_head port_siblings;
c7ebbbce
CH
68};
69
70#define dev_to_phy(d) \
71 container_of((d), struct sas_phy, dev)
72#define transport_class_to_phy(cdev) \
73 dev_to_phy((cdev)->dev)
74#define phy_to_shost(phy) \
75 dev_to_shost((phy)->dev.parent)
76
77struct sas_rphy {
78 struct device dev;
79 struct sas_identify identify;
80 struct list_head list;
81 u32 scsi_target_id;
82};
83
84#define dev_to_rphy(d) \
85 container_of((d), struct sas_rphy, dev)
86#define transport_class_to_rphy(cdev) \
87 dev_to_rphy((cdev)->dev)
88#define rphy_to_shost(rphy) \
89 dev_to_shost((rphy)->dev.parent)
42ab0360
JB
90#define target_to_rphy(targ) \
91 dev_to_rphy((targ)->dev.parent)
92
93struct sas_end_device {
94 struct sas_rphy rphy;
95 /* flags */
96 unsigned ready_led_meaning:1;
97 /* parameters */
98 u16 I_T_nexus_loss_timeout;
99 u16 initiator_response_timeout;
100};
101#define rphy_to_end_device(r) \
102 container_of((r), struct sas_end_device, rphy)
c7ebbbce 103
79cb1819
JB
104struct sas_expander_device {
105 int level;
c9fefeb2 106 int next_port_id;
79cb1819
JB
107
108 #define SAS_EXPANDER_VENDOR_ID_LEN 8
109 char vendor_id[SAS_EXPANDER_VENDOR_ID_LEN+1];
110 #define SAS_EXPANDER_PRODUCT_ID_LEN 16
111 char product_id[SAS_EXPANDER_PRODUCT_ID_LEN+1];
112 #define SAS_EXPANDER_PRODUCT_REV_LEN 4
113 char product_rev[SAS_EXPANDER_PRODUCT_REV_LEN+1];
114 #define SAS_EXPANDER_COMPONENT_VENDOR_ID_LEN 8
115 char component_vendor_id[SAS_EXPANDER_COMPONENT_VENDOR_ID_LEN+1];
116 u16 component_id;
117 u8 component_revision_id;
118
119 struct sas_rphy rphy;
120
121};
122#define rphy_to_expander_device(r) \
123 container_of((r), struct sas_expander_device, rphy)
c3ee74c4 124
65c92b09
JB
125struct sas_port {
126 struct device dev;
127
c9fefeb2 128 int port_identifier;
65c92b09 129 int num_phys;
a0e1b6ef
JB
130 /* port flags */
131 unsigned int is_backlink:1;
65c92b09
JB
132
133 /* the other end of the link */
134 struct sas_rphy *rphy;
135
136 struct mutex phy_list_mutex;
137 struct list_head phy_list;
138};
139
140#define dev_to_sas_port(d) \
141 container_of((d), struct sas_port, dev)
142#define transport_class_to_sas_port(cdev) \
143 dev_to_sas_port((cdev)->dev)
144
c3ee74c4
CH
145/* The functions by which the transport class and the driver communicate */
146struct sas_function_template {
147 int (*get_linkerrors)(struct sas_phy *);
a0125641
CH
148 int (*get_enclosure_identifier)(struct sas_rphy *, u64 *);
149 int (*get_bay_identifier)(struct sas_rphy *);
07ba3a95 150 int (*phy_reset)(struct sas_phy *, int);
c3ee74c4
CH
151};
152
153
65c92b09 154void sas_remove_children(struct device *);
c7ebbbce
CH
155extern void sas_remove_host(struct Scsi_Host *);
156
157extern struct sas_phy *sas_phy_alloc(struct device *, int);
158extern void sas_phy_free(struct sas_phy *);
159extern int sas_phy_add(struct sas_phy *);
160extern void sas_phy_delete(struct sas_phy *);
161extern int scsi_is_sas_phy(const struct device *);
162
65c92b09
JB
163extern struct sas_rphy *sas_end_device_alloc(struct sas_port *);
164extern struct sas_rphy *sas_expander_alloc(struct sas_port *, enum sas_device_type);
c7ebbbce
CH
165void sas_rphy_free(struct sas_rphy *);
166extern int sas_rphy_add(struct sas_rphy *);
167extern void sas_rphy_delete(struct sas_rphy *);
168extern int scsi_is_sas_rphy(const struct device *);
169
65c92b09 170struct sas_port *sas_port_alloc(struct device *, int);
c9fefeb2 171struct sas_port *sas_port_alloc_num(struct device *);
65c92b09
JB
172int sas_port_add(struct sas_port *);
173void sas_port_free(struct sas_port *);
174void sas_port_delete(struct sas_port *);
175void sas_port_add_phy(struct sas_port *, struct sas_phy *);
176void sas_port_delete_phy(struct sas_port *, struct sas_phy *);
a0e1b6ef 177void sas_port_mark_backlink(struct sas_port *);
65c92b09
JB
178int scsi_is_sas_port(const struct device *);
179
c7ebbbce
CH
180extern struct scsi_transport_template *
181sas_attach_transport(struct sas_function_template *);
182extern void sas_release_transport(struct scsi_transport_template *);
42ab0360 183int sas_read_port_mode_page(struct scsi_device *);
c7ebbbce 184
79cb1819
JB
185static inline int
186scsi_is_sas_expander_device(struct device *dev)
187{
188 struct sas_rphy *rphy;
189 if (!scsi_is_sas_rphy(dev))
190 return 0;
191 rphy = dev_to_rphy(dev);
192 return rphy->identify.device_type == SAS_FANOUT_EXPANDER_DEVICE ||
193 rphy->identify.device_type == SAS_EDGE_EXPANDER_DEVICE;
194}
195
f4ad7b58
JB
196#define scsi_is_sas_phy_local(phy) scsi_is_host_device((phy)->dev.parent)
197
c7ebbbce 198#endif /* SCSI_TRANSPORT_SAS_H */