blob: 4df73d69bb3c554cd0eac9636697f6168b3e36ac [file] [log] [blame]
James Bottomley2908d772006-08-29 09:22:51 -05001/*
2 * Serial Attached SCSI (SAS) Transport Layer initialization
3 *
4 * Copyright (C) 2005 Adaptec, Inc. All rights reserved.
5 * Copyright (C) 2005 Luben Tuikov <luben_tuikov@adaptec.com>
6 *
7 * This file is licensed under GPLv2.
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation; either version 2 of the
12 * License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
22 * USA
23 *
24 */
25
26#include <linux/module.h>
27#include <linux/init.h>
28#include <linux/device.h>
29#include <linux/spinlock.h>
30#include <scsi/scsi_host.h>
31#include <scsi/scsi_device.h>
32#include <scsi/scsi_transport.h>
33#include <scsi/scsi_transport_sas.h>
34
35#include "sas_internal.h"
36
37#include "../scsi_sas_internal.h"
38
Christoph Lametere18b8902006-12-06 20:33:20 -080039struct kmem_cache *sas_task_cache;
James Bottomley2908d772006-08-29 09:22:51 -050040
41/*------------ SAS addr hash -----------*/
42void sas_hash_addr(u8 *hashed, const u8 *sas_addr)
43{
44 const u32 poly = 0x00DB2777;
45 u32 r = 0;
46 int i;
47
48 for (i = 0; i < 8; i++) {
49 int b;
50 for (b = 7; b >= 0; b--) {
51 r <<= 1;
52 if ((1 << b) & sas_addr[i]) {
53 if (!(r & 0x01000000))
54 r ^= poly;
55 } else if (r & 0x01000000)
56 r ^= poly;
57 }
58 }
59
60 hashed[0] = (r >> 16) & 0xFF;
61 hashed[1] = (r >> 8) & 0xFF ;
62 hashed[2] = r & 0xFF;
63}
64
65
66/* ---------- HA events ---------- */
67
David Howellsc4028952006-11-22 14:57:56 +000068void sas_hae_reset(struct work_struct *work)
James Bottomley2908d772006-08-29 09:22:51 -050069{
David Howellsc4028952006-11-22 14:57:56 +000070 struct sas_ha_event *ev =
71 container_of(work, struct sas_ha_event, work);
72 struct sas_ha_struct *ha = ev->ha;
James Bottomley2908d772006-08-29 09:22:51 -050073
74 sas_begin_event(HAE_RESET, &ha->event_lock,
75 &ha->pending);
76}
77
78int sas_register_ha(struct sas_ha_struct *sas_ha)
79{
80 int error = 0;
81
82 spin_lock_init(&sas_ha->phy_port_lock);
83 sas_hash_addr(sas_ha->hashed_sas_addr, sas_ha->sas_addr);
84
85 if (sas_ha->lldd_queue_size == 0)
86 sas_ha->lldd_queue_size = 1;
87 else if (sas_ha->lldd_queue_size == -1)
88 sas_ha->lldd_queue_size = 128; /* Sanity */
89
90 error = sas_register_phys(sas_ha);
91 if (error) {
92 printk(KERN_NOTICE "couldn't register sas phys:%d\n", error);
93 return error;
94 }
95
96 error = sas_register_ports(sas_ha);
97 if (error) {
98 printk(KERN_NOTICE "couldn't register sas ports:%d\n", error);
99 goto Undo_phys;
100 }
101
102 error = sas_init_events(sas_ha);
103 if (error) {
104 printk(KERN_NOTICE "couldn't start event thread:%d\n", error);
105 goto Undo_ports;
106 }
107
108 if (sas_ha->lldd_max_execute_num > 1) {
109 error = sas_init_queue(sas_ha);
110 if (error) {
111 printk(KERN_NOTICE "couldn't start queue thread:%d, "
112 "running in direct mode\n", error);
113 sas_ha->lldd_max_execute_num = 1;
114 }
115 }
116
Darrick J. Wongf4563932006-10-30 15:18:39 -0800117 INIT_LIST_HEAD(&sas_ha->eh_done_q);
118
James Bottomley2908d772006-08-29 09:22:51 -0500119 return 0;
120
121Undo_ports:
122 sas_unregister_ports(sas_ha);
123Undo_phys:
124
125 return error;
126}
127
128int sas_unregister_ha(struct sas_ha_struct *sas_ha)
129{
Darrick J. Wongcde3f742007-01-11 14:15:03 -0800130 sas_unregister_ports(sas_ha);
131
James Bottomley2908d772006-08-29 09:22:51 -0500132 if (sas_ha->lldd_max_execute_num > 1) {
133 sas_shutdown_queue(sas_ha);
Darrick J. Wongcde3f742007-01-11 14:15:03 -0800134 sas_ha->lldd_max_execute_num = 1;
James Bottomley2908d772006-08-29 09:22:51 -0500135 }
136
James Bottomley2908d772006-08-29 09:22:51 -0500137 return 0;
138}
139
140static int sas_get_linkerrors(struct sas_phy *phy)
141{
142 if (scsi_is_sas_phy_local(phy))
143 /* FIXME: we have no local phy stats
144 * gathering at this time */
145 return -EINVAL;
146
147 return sas_smp_get_phy_events(phy);
148}
149
Darrick J. Wongacbf1672007-01-11 14:14:57 -0800150int sas_phy_enable(struct sas_phy *phy, int enable)
151{
152 int ret;
153 enum phy_func command;
154
155 if (enable)
156 command = PHY_FUNC_LINK_RESET;
157 else
158 command = PHY_FUNC_DISABLE;
159
160 if (scsi_is_sas_phy_local(phy)) {
161 struct Scsi_Host *shost = dev_to_shost(phy->dev.parent);
162 struct sas_ha_struct *sas_ha = SHOST_TO_SAS_HA(shost);
163 struct asd_sas_phy *asd_phy = sas_ha->sas_phy[phy->number];
164 struct sas_internal *i =
165 to_sas_internal(sas_ha->core.shost->transportt);
166
167 if (!enable) {
168 sas_phy_disconnected(asd_phy);
169 sas_ha->notify_phy_event(asd_phy, PHYE_LOSS_OF_SIGNAL);
170 }
171 ret = i->dft->lldd_control_phy(asd_phy, command, NULL);
172 } else {
173 struct sas_rphy *rphy = dev_to_rphy(phy->dev.parent);
174 struct domain_device *ddev = sas_find_dev_by_rphy(rphy);
175 ret = sas_smp_phy_control(ddev, phy->number, command, NULL);
176 }
177 return ret;
178}
179
Darrick J. Wongdea22212006-11-07 17:28:55 -0800180int sas_phy_reset(struct sas_phy *phy, int hard_reset)
James Bottomley2908d772006-08-29 09:22:51 -0500181{
182 int ret;
183 enum phy_func reset_type;
184
185 if (hard_reset)
186 reset_type = PHY_FUNC_HARD_RESET;
187 else
188 reset_type = PHY_FUNC_LINK_RESET;
189
190 if (scsi_is_sas_phy_local(phy)) {
191 struct Scsi_Host *shost = dev_to_shost(phy->dev.parent);
192 struct sas_ha_struct *sas_ha = SHOST_TO_SAS_HA(shost);
193 struct asd_sas_phy *asd_phy = sas_ha->sas_phy[phy->number];
194 struct sas_internal *i =
195 to_sas_internal(sas_ha->core.shost->transportt);
196
James Bottomleya01e70e2006-09-06 19:28:07 -0500197 ret = i->dft->lldd_control_phy(asd_phy, reset_type, NULL);
James Bottomley2908d772006-08-29 09:22:51 -0500198 } else {
199 struct sas_rphy *rphy = dev_to_rphy(phy->dev.parent);
200 struct domain_device *ddev = sas_find_dev_by_rphy(rphy);
James Bottomleya01e70e2006-09-06 19:28:07 -0500201 ret = sas_smp_phy_control(ddev, phy->number, reset_type, NULL);
James Bottomley2908d772006-08-29 09:22:51 -0500202 }
203 return ret;
204}
205
Darrick J. Wongacbf1672007-01-11 14:14:57 -0800206int sas_set_phy_speed(struct sas_phy *phy,
207 struct sas_phy_linkrates *rates)
James Bottomleya01e70e2006-09-06 19:28:07 -0500208{
209 int ret;
210
211 if ((rates->minimum_linkrate &&
212 rates->minimum_linkrate > phy->maximum_linkrate) ||
213 (rates->maximum_linkrate &&
214 rates->maximum_linkrate < phy->minimum_linkrate))
215 return -EINVAL;
216
217 if (rates->minimum_linkrate &&
218 rates->minimum_linkrate < phy->minimum_linkrate_hw)
219 rates->minimum_linkrate = phy->minimum_linkrate_hw;
220
221 if (rates->maximum_linkrate &&
222 rates->maximum_linkrate > phy->maximum_linkrate_hw)
223 rates->maximum_linkrate = phy->maximum_linkrate_hw;
224
225 if (scsi_is_sas_phy_local(phy)) {
226 struct Scsi_Host *shost = dev_to_shost(phy->dev.parent);
227 struct sas_ha_struct *sas_ha = SHOST_TO_SAS_HA(shost);
228 struct asd_sas_phy *asd_phy = sas_ha->sas_phy[phy->number];
229 struct sas_internal *i =
230 to_sas_internal(sas_ha->core.shost->transportt);
231
232 ret = i->dft->lldd_control_phy(asd_phy, PHY_FUNC_SET_LINK_RATE,
233 rates);
234 } else {
235 struct sas_rphy *rphy = dev_to_rphy(phy->dev.parent);
236 struct domain_device *ddev = sas_find_dev_by_rphy(rphy);
237 ret = sas_smp_phy_control(ddev, phy->number,
238 PHY_FUNC_LINK_RESET, rates);
239
240 }
241
242 return ret;
243}
244
James Bottomley2908d772006-08-29 09:22:51 -0500245static struct sas_function_template sft = {
Darrick J. Wongacbf1672007-01-11 14:14:57 -0800246 .phy_enable = sas_phy_enable,
James Bottomley2908d772006-08-29 09:22:51 -0500247 .phy_reset = sas_phy_reset,
James Bottomleya01e70e2006-09-06 19:28:07 -0500248 .set_phy_speed = sas_set_phy_speed,
James Bottomley2908d772006-08-29 09:22:51 -0500249 .get_linkerrors = sas_get_linkerrors,
250};
251
252struct scsi_transport_template *
253sas_domain_attach_transport(struct sas_domain_function_template *dft)
254{
255 struct scsi_transport_template *stt = sas_attach_transport(&sft);
256 struct sas_internal *i;
257
258 if (!stt)
259 return stt;
260
261 i = to_sas_internal(stt);
262 i->dft = dft;
263 stt->create_work_queue = 1;
264 stt->eh_timed_out = sas_scsi_timed_out;
265 stt->eh_strategy_handler = sas_scsi_recover_host;
266
267 return stt;
268}
269EXPORT_SYMBOL_GPL(sas_domain_attach_transport);
270
271
272void sas_domain_release_transport(struct scsi_transport_template *stt)
273{
274 sas_release_transport(stt);
275}
276EXPORT_SYMBOL_GPL(sas_domain_release_transport);
277
278/* ---------- SAS Class register/unregister ---------- */
279
280static int __init sas_class_init(void)
281{
282 sas_task_cache = kmem_cache_create("sas_task", sizeof(struct sas_task),
283 0, SLAB_HWCACHE_ALIGN, NULL, NULL);
284 if (!sas_task_cache)
285 return -ENOMEM;
286
287 return 0;
288}
289
290static void __exit sas_class_exit(void)
291{
292 kmem_cache_destroy(sas_task_cache);
293}
294
295MODULE_AUTHOR("Luben Tuikov <luben_tuikov@adaptec.com>");
296MODULE_DESCRIPTION("SAS Transport Layer");
297MODULE_LICENSE("GPL v2");
298
299module_init(sas_class_init);
300module_exit(sas_class_exit);
301
302EXPORT_SYMBOL_GPL(sas_register_ha);
303EXPORT_SYMBOL_GPL(sas_unregister_ha);