summaryrefslogtreecommitdiffstats
path: root/sys/dev/isci/scil/scif_sas_smp_remote_device.h
blob: a28683d7beb550f625077863cf47910bcc919362 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
/*-
 * This file is provided under a dual BSD/GPLv2 license.  When using or
 * redistributing this file, you may do so under either license.
 *
 * GPL LICENSE SUMMARY
 *
 * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of version 2 of the GNU General Public License as
 * published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
 * The full GNU General Public License is included in this distribution
 * in the file called LICENSE.GPL.
 *
 * BSD LICENSE
 *
 * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved.
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 *   * Redistributions of source code must retain the above copyright
 *     notice, this list of conditions and the following disclaimer.
 *   * Redistributions in binary form must reproduce the above copyright
 *     notice, this list of conditions and the following disclaimer in
 *     the documentation and/or other materials provided with the
 *     distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 * $FreeBSD$
 */
#ifndef _SCIF_SAS_SMP_REMOTE_DEVICE_H_
#define _SCIF_SAS_SMP_REMOTE_DEVICE_H_

#ifdef __cplusplus
extern "C" {
#endif // __cplusplus


#include <dev/isci/scil/sci_fast_list.h>
#include <dev/isci/scil/scif_sas_smp_phy.h>

/**
 * @file
 *
 * @brief This file contains the protected interface structures, constants,
 *        and methods for the SCIF_SAS_SMP_REMOTE_DEVICE object.
 */

struct SCIF_SAS_CONTROLLER;
struct SCIF_SAS_REMOTE_DEVICE;
struct SCIF_SAS_INTERNAL_IO_REQUEST;
struct SCIF_SAS_REQUEST;
struct SCIF_SAS_SMP_PHY;

#define SMP_REQUEST_RETRY_WAIT_DURATION   20
#define SMP_SPINUP_HOLD_RELEASE_WAIT_DURATION 100

/**
 * @name SCIF_SAS_SMP_REMOTE_DEVICE_ACTIVITY_CODES
 *
 * These constants depict the various SMP remote device activities.
 */
/*@{*/
#define NOT_IN_SMP_ACTIVITY 0xff
#define SCIF_SAS_SMP_REMOTE_DEVICE_ACTIVITY_NONE         0x0
#define SCIF_SAS_SMP_REMOTE_DEVICE_ACTIVITY_DISCOVER     0x1
#define SCIF_SAS_SMP_REMOTE_DEVICE_ACTIVITY_TARGET_RESET 0x2
#define SCIF_SAS_SMP_REMOTE_DEVICE_ACTIVITY_SATA_SPINUP_HOLD_RELEASE 0x3
#define SCIF_SAS_SMP_REMOTE_DEVICE_ACTIVITY_CONFIG_ROUTE_TABLE 0x4
#define SCIF_SAS_SMP_REMOTE_DEVICE_ACTIVITY_CLEAN_ROUTE_TABLE 0x5
#define SCIF_SAS_SMP_REMOTE_DEVICE_ACTIVITY_CLEAR_AFFILIATION 0x6
/*@}*/



/**
 * @name SCIF_SAS_CONFIG_ROUTE_TABLE_OPTION_CODES
 *
 * These constants depict the various configure route table options.
 */
/*@{*/
#define SCIF_SAS_CONFIG_ROUTE_TABLE_LOWEST_PHY_ONLY   0
#define SCIF_SAS_CONFIG_ROUTE_TABLE_MIDDLE_PHY_ONLY   1
#define SCIF_SAS_CONFIG_ROUTE_TABLE_HIGHEST_PHY_ONLY  2
#define SCIF_SAS_CONFIG_ROUTE_TABLE_ALL_PHYS          3
/*@}*/

/**
 * @struct SCIF_SAS_SMP_REMOTE_DEVICE
 *
 * @brief The SCIF_SAS_SMP_REMOTE_DEVICE stores data for smp remote devices
 *        (expanders) discovering attached targets.
 *
 */
typedef struct SCIF_SAS_SMP_REMOTE_DEVICE
{
   /**
    * This field stores the current SMP request function in the discovering
    * sequence.
    */
   U32 current_smp_request;

   /**
    * This field indicates a smp device is either in the middle of normal discover
    * process or in the middle of resetting a expander attahced remote device.
    */
   U8 current_activity;

   /**
    * This field stores the current expander phy index for sending out SMP
    * DISCOVER request.
    */
   U8 current_activity_phy_index;

   /**
    * This field stores the current route index to config route table for
    * a phy.
    */
   U16 curr_config_route_index;

   /**
    * This field indicates whether a route table of an expander has been cleaned
    * since a DISCOVER process starts.
    */
   BOOL is_route_table_cleaned;

   /**
    * This field stores the smp phy whose route entries are edited by sending
    * CONFIG ROUTE INFO commands.
    */
   struct SCIF_SAS_SMP_PHY * config_route_smp_phy_anchor;

   /*
    * This field stores the current smp phy on a destination device's smp phy list whose
    * attached device's sas address is to be edited into this smp device's route table.
    * When one config route info response is processed, we can find the next smp phy to edit
    * using this field's value.
    */
   struct SCIF_SAS_SMP_PHY * curr_config_route_destination_smp_phy;

   /*
    * This field stores the current smp phy to which a PHY CONTROL (clear affiliation)
    * command is sent out.
    */
   struct SCIF_SAS_SMP_PHY * curr_clear_affiliation_phy;

   /**
    * This field is to indicate a smp activity for this smp device is
    * to be started (not yet). The scheduled activity could be Discover or Config
    * Route Table.
    */
   U8 scheduled_activity;

   /**
    * This timer is used for waiting before retrying a smp request, or before
    * sending Discover request after Phy Control during Target Reset.
    */
   void * smp_activity_timer;

   /**
    * This field save the retry count for internal smp request. Since when
    * an internal smp request gets retried, it has been destructed already.
    */
   U8 io_retry_count;

   /**
    * This field stores the number of phys for expander device found by decoding
    * the SMP REPORT GENERAL response.
    */
   U8  number_of_phys;

   /**
    * This field indicates the maximum number of expander route indexes per phy for
    * this expander device.
    */
   U16 expander_route_indexes;

   /**
    * This field indicates whether an expander device supports table-to-table
    * connection.
    */
   BOOL is_table_to_table_supported;

   /**
    * This field indicates whether an expander device is externally configurable.
    * If it is, it is not self-configuring and is not able to config others.
    */
   BOOL is_externally_configurable;

   /**
    * This field indicates whether an expander device is able to config others.
    */
   BOOL is_able_to_config_others;

   /**
    * This field contains the list of all smp phys that connect to another smp phy.
    */
   SCI_FAST_LIST_T smp_phy_list;

}SCIF_SAS_SMP_REMOTE_DEVICE_T;

void scif_sas_smp_remote_device_clear(
   struct SCIF_SAS_REMOTE_DEVICE * fw_device
);

void scif_sas_smp_remote_device_construct(
   struct SCIF_SAS_REMOTE_DEVICE * fw_device
);

SCI_STATUS scif_sas_smp_remote_device_decode_smp_response(
   struct SCIF_SAS_REMOTE_DEVICE * fw_device,
   struct SCIF_SAS_REQUEST       * fw_request,
   void                          * response_data,
   SCI_IO_STATUS                   completion_status
);

SCI_STATUS scif_sas_smp_remote_device_decode_report_general_response(
   struct SCIF_SAS_REMOTE_DEVICE * fw_device,
   SMP_RESPONSE_T                * smp_response
);

SCI_STATUS scif_sas_smp_remote_device_decode_initial_discover_response(
   struct SCIF_SAS_REMOTE_DEVICE * fw_device,
   SMP_RESPONSE_T                * smp_response
);

SCI_STATUS scif_sas_smp_remote_device_decode_report_phy_sata_response(
   struct SCIF_SAS_REMOTE_DEVICE * fw_device,
   SMP_RESPONSE_T                * smp_response
);

SCI_STATUS scif_sas_smp_remote_device_decode_target_reset_phy_control_response(
   struct SCIF_SAS_REMOTE_DEVICE * fw_device,
   SMP_RESPONSE_T           * smp_response
);

SCI_STATUS scif_sas_smp_remote_device_decode_discover_phy_control_response(
   struct SCIF_SAS_REMOTE_DEVICE * fw_device,
   SMP_RESPONSE_T           * smp_response
);

SCI_STATUS scif_sas_smp_remote_device_decode_target_reset_discover_response(
   struct SCIF_SAS_REMOTE_DEVICE * fw_device,
   SMP_RESPONSE_T           * smp_response
);

SCI_STATUS scif_sas_smp_remote_device_decode_spinup_hold_release_discover_response(
   struct SCIF_SAS_REMOTE_DEVICE * fw_device,
   SMP_RESPONSE_T           * smp_response
);

SCI_STATUS scif_sas_smp_remote_device_decode_config_route_info_response(
   struct SCIF_SAS_REMOTE_DEVICE * fw_device,
   SMP_RESPONSE_T           * smp_response
);

void scif_sas_smp_remote_device_start_discover(
   struct SCIF_SAS_REMOTE_DEVICE * fw_device
);

void scif_sas_smp_remote_device_continue_discover(
   struct SCIF_SAS_REMOTE_DEVICE * fw_device
);

void scif_sas_smp_remote_device_finish_initial_discover(
   struct SCIF_SAS_REMOTE_DEVICE * fw_device
);

void scif_sas_smp_remote_device_finish_discover(
   struct SCIF_SAS_REMOTE_DEVICE * fw_device
);

void scif_sas_smp_remote_device_continue_target_reset(
   struct SCIF_SAS_REMOTE_DEVICE * fw_device,
   struct SCIF_SAS_REQUEST       * fw_request
);

void scif_sas_smp_remote_device_fail_discover(
   struct SCIF_SAS_REMOTE_DEVICE * fw_device
);

void scif_sas_smp_remote_device_fail_target_reset(
   struct SCIF_SAS_REMOTE_DEVICE * fw_device,
   struct SCIF_SAS_REQUEST       * fw_request
);

void scif_sas_smp_remote_device_continue_current_activity(
   struct SCIF_SAS_REMOTE_DEVICE * fw_device,
   struct SCIF_SAS_REQUEST       * fw_request,
   SCI_STATUS                      status
);

void scif_sas_smp_remote_device_target_reset_poll(
   struct SCIF_SAS_REQUEST       * fw_request
);

void scif_sas_smp_remote_device_sata_spinup_hold_release(
   struct SCIF_SAS_REMOTE_DEVICE * fw_device
);

void scif_sas_smp_remote_device_fail_target_spinup_hold_release(
   struct SCIF_SAS_REMOTE_DEVICE * fw_device,
   struct SCIF_SAS_REMOTE_DEVICE * target_device
);

void scif_sas_smp_remote_device_retry_internal_io(
   struct SCIF_SAS_REMOTE_DEVICE * fw_device,
   U8                         io_retry_count,
   U32                        delay
);

BOOL scif_sas_smp_remote_device_is_in_activity(
   struct SCIF_SAS_REMOTE_DEVICE * fw_device
);

SCIF_SAS_SMP_PHY_T * scif_sas_smp_remote_device_find_smp_phy_by_id(
   U8                                  phy_identifier,
   struct SCIF_SAS_SMP_REMOTE_DEVICE * smp_remote_device
);

void scif_sas_smp_remote_device_removed(
   struct SCIF_SAS_REMOTE_DEVICE * this_device
);

void scif_sas_smp_remote_device_terminated_request_handler(
   struct SCIF_SAS_REMOTE_DEVICE * fw_device,
   struct SCIF_SAS_REQUEST       * fw_request
);

void scif_sas_smp_remote_device_populate_smp_phy_list(
   struct SCIF_SAS_REMOTE_DEVICE * fw_device
);

SCI_STATUS scif_sas_smp_remote_device_save_smp_phy_info(
   struct SCIF_SAS_REMOTE_DEVICE * fw_device,
   SMP_RESPONSE_DISCOVER_T       * discover_response
);

#ifdef SCI_SMP_PHY_LIST_DEBUG_PRINT
void scif_sas_smp_remote_device_print_smp_phy_list(
   struct SCIF_SAS_REMOTE_DEVICE * fw_device
);
#endif

void scif_sas_smp_remote_device_configure_upstream_expander_route_info(
   struct SCIF_SAS_REMOTE_DEVICE * this_device
);

struct SCIF_SAS_REMOTE_DEVICE * scif_sas_remote_device_find_upstream_expander(
   struct SCIF_SAS_REMOTE_DEVICE * this_device
);

struct SCIF_SAS_REMOTE_DEVICE * scif_sas_remote_device_find_downstream_expander(
   struct SCIF_SAS_REMOTE_DEVICE * this_device
);

BOOL scif_sas_smp_remote_device_do_config_route_info(
   struct SCIF_SAS_REMOTE_DEVICE * device_being_config,
   struct SCIF_SAS_SMP_PHY       * destination_smp_phy
);

void scif_sas_smp_remote_device_configure_route_table(
   struct SCIF_SAS_REMOTE_DEVICE * device_being_config
);

void scif_sas_smp_remote_device_clean_route_table(
   struct SCIF_SAS_REMOTE_DEVICE * fw_device
);

void scif_sas_smp_remote_device_clean_route_table_entry(
   struct SCIF_SAS_REMOTE_DEVICE * fw_device
);

void scif_sas_smp_remote_device_cancel_config_route_table_activity(
   struct SCIF_SAS_REMOTE_DEVICE * fw_device
);

void scif_sas_smp_remote_device_cancel_smp_activity(
   struct SCIF_SAS_REMOTE_DEVICE * fw_device
);

U8 scif_sas_smp_remote_device_get_config_route_table_method(
   struct SCIF_SAS_REMOTE_DEVICE * fw_device
);

void scif_sas_smp_remote_device_start_clear_affiliation(
   struct SCIF_SAS_REMOTE_DEVICE * fw_device
);

void scif_sas_smp_remote_device_continue_clear_affiliation(
   struct SCIF_SAS_REMOTE_DEVICE * fw_device
);

void scif_sas_smp_remote_device_finish_clear_affiliation(
   struct SCIF_SAS_REMOTE_DEVICE * fw_device
);

void scif_sas_smp_remote_device_start_target_reset(
   struct SCIF_SAS_REMOTE_DEVICE * expander_device,
   struct SCIF_SAS_REMOTE_DEVICE * target_device,
   struct SCIF_SAS_REQUEST       * fw_request
);

#ifdef __cplusplus
}
#endif // __cplusplus

#endif // _SCIF_SAS_SMP_REMOTE_DEVICE_H_
OpenPOWER on IntegriCloud