xref: /freebsd/sys/dev/isci/scil/scic_port.h (revision 95ee2897e98f5d444f26ed2334cc7c439f9c16c6)
1f11c7f63SJim Harris /*-
2*718cf2ccSPedro F. Giffuni  * SPDX-License-Identifier: BSD-2-Clause OR GPL-2.0
3*718cf2ccSPedro F. Giffuni  *
4f11c7f63SJim Harris  * This file is provided under a dual BSD/GPLv2 license.  When using or
5f11c7f63SJim Harris  * redistributing this file, you may do so under either license.
6f11c7f63SJim Harris  *
7f11c7f63SJim Harris  * GPL LICENSE SUMMARY
8f11c7f63SJim Harris  *
9f11c7f63SJim Harris  * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved.
10f11c7f63SJim Harris  *
11f11c7f63SJim Harris  * This program is free software; you can redistribute it and/or modify
12f11c7f63SJim Harris  * it under the terms of version 2 of the GNU General Public License as
13f11c7f63SJim Harris  * published by the Free Software Foundation.
14f11c7f63SJim Harris  *
15f11c7f63SJim Harris  * This program is distributed in the hope that it will be useful, but
16f11c7f63SJim Harris  * WITHOUT ANY WARRANTY; without even the implied warranty of
17f11c7f63SJim Harris  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18f11c7f63SJim Harris  * General Public License for more details.
19f11c7f63SJim Harris  *
20f11c7f63SJim Harris  * You should have received a copy of the GNU General Public License
21f11c7f63SJim Harris  * along with this program; if not, write to the Free Software
22f11c7f63SJim Harris  * Foundation, Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
23f11c7f63SJim Harris  * The full GNU General Public License is included in this distribution
24f11c7f63SJim Harris  * in the file called LICENSE.GPL.
25f11c7f63SJim Harris  *
26f11c7f63SJim Harris  * BSD LICENSE
27f11c7f63SJim Harris  *
28f11c7f63SJim Harris  * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved.
29f11c7f63SJim Harris  * All rights reserved.
30f11c7f63SJim Harris  *
31f11c7f63SJim Harris  * Redistribution and use in source and binary forms, with or without
32f11c7f63SJim Harris  * modification, are permitted provided that the following conditions
33f11c7f63SJim Harris  * are met:
34f11c7f63SJim Harris  *
35f11c7f63SJim Harris  *   * Redistributions of source code must retain the above copyright
36f11c7f63SJim Harris  *     notice, this list of conditions and the following disclaimer.
37f11c7f63SJim Harris  *   * Redistributions in binary form must reproduce the above copyright
38f11c7f63SJim Harris  *     notice, this list of conditions and the following disclaimer in
39f11c7f63SJim Harris  *     the documentation and/or other materials provided with the
40f11c7f63SJim Harris  *     distribution.
41f11c7f63SJim Harris  *
42f11c7f63SJim Harris  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
43f11c7f63SJim Harris  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
44f11c7f63SJim Harris  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
45f11c7f63SJim Harris  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
46f11c7f63SJim Harris  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
47f11c7f63SJim Harris  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
48f11c7f63SJim Harris  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
49f11c7f63SJim Harris  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
50f11c7f63SJim Harris  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
51f11c7f63SJim Harris  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
52f11c7f63SJim Harris  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
53f11c7f63SJim Harris  */
54f11c7f63SJim Harris #ifndef _SCIC_PORT_H_
55f11c7f63SJim Harris #define _SCIC_PORT_H_
56f11c7f63SJim Harris 
57f11c7f63SJim Harris /**
58f11c7f63SJim Harris  * @file
59f11c7f63SJim Harris  *
60f11c7f63SJim Harris  * @brief This file contains all of the interface methods that can be called
61f11c7f63SJim Harris  *        by an SCI Core user on a SAS or SATA port.
62f11c7f63SJim Harris  */
63f11c7f63SJim Harris 
64f11c7f63SJim Harris #ifdef __cplusplus
65f11c7f63SJim Harris extern "C" {
66f11c7f63SJim Harris #endif // __cplusplus
67f11c7f63SJim Harris 
68f11c7f63SJim Harris #include <dev/isci/scil/sci_types.h>
69f11c7f63SJim Harris #include <dev/isci/scil/sci_status.h>
70f11c7f63SJim Harris #include <dev/isci/scil/intel_sas.h>
71f11c7f63SJim Harris 
72f11c7f63SJim Harris enum SCIC_PORT_NOT_READY_REASON_CODE
73f11c7f63SJim Harris {
74f11c7f63SJim Harris    SCIC_PORT_NOT_READY_NO_ACTIVE_PHYS,
75f11c7f63SJim Harris    SCIC_PORT_NOT_READY_HARD_RESET_REQUESTED,
76f11c7f63SJim Harris    SCIC_PORT_NOT_READY_INVALID_PORT_CONFIGURATION,
77f11c7f63SJim Harris    SCIC_PORT_NOT_READY_RECONFIGURING,
78f11c7f63SJim Harris 
79f11c7f63SJim Harris    SCIC_PORT_NOT_READY_REASON_CODE_MAX
80f11c7f63SJim Harris };
81f11c7f63SJim Harris 
82f11c7f63SJim Harris /**
83f11c7f63SJim Harris  * @struct SCIC_PORT_END_POINT_PROPERTIES
84f11c7f63SJim Harris  * @brief  This structure defines the properties that can be retrieved
85f11c7f63SJim Harris  *         for each end-point local or remote (attached) port in the
86f11c7f63SJim Harris  *         controller.
87f11c7f63SJim Harris  */
88f11c7f63SJim Harris typedef struct SCIC_PORT_END_POINT_PROPERTIES
89f11c7f63SJim Harris {
90f11c7f63SJim Harris    /**
91f11c7f63SJim Harris     * This field indicates the SAS address for the associated end
92f11c7f63SJim Harris     * point in the port.
93f11c7f63SJim Harris     */
94f11c7f63SJim Harris    SCI_SAS_ADDRESS_T  sas_address;
95f11c7f63SJim Harris 
96f11c7f63SJim Harris    /**
97f11c7f63SJim Harris     * This field indicates the protocols supported by the associated
98f11c7f63SJim Harris     * end-point in the port.
99f11c7f63SJim Harris     */
100f11c7f63SJim Harris    SCI_SAS_IDENTIFY_ADDRESS_FRAME_PROTOCOLS_T  protocols;
101f11c7f63SJim Harris 
102f11c7f63SJim Harris } SCIC_PORT_END_POINT_PROPERTIES_T;
103f11c7f63SJim Harris 
104f11c7f63SJim Harris /**
105f11c7f63SJim Harris  * @struct SCIC_PORT_PROPERTIES
106f11c7f63SJim Harris  * @brief  This structure defines the properties that can be retrieved
107f11c7f63SJim Harris  *         for each port in the controller.
108f11c7f63SJim Harris  */
109f11c7f63SJim Harris typedef struct SCIC_PORT_PROPERTIES
110f11c7f63SJim Harris {
111f11c7f63SJim Harris    /**
112f11c7f63SJim Harris     * This field specifies the logical index of the port (0 relative).
113f11c7f63SJim Harris     */
114f11c7f63SJim Harris    U32  index;
115f11c7f63SJim Harris 
116f11c7f63SJim Harris    /**
117f11c7f63SJim Harris     * This field indicates the local end-point properties for port.
118f11c7f63SJim Harris     */
119f11c7f63SJim Harris    SCIC_PORT_END_POINT_PROPERTIES_T  local;
120f11c7f63SJim Harris 
121f11c7f63SJim Harris    /**
122f11c7f63SJim Harris     * This field indicates the remote (attached) end-point properties
123f11c7f63SJim Harris     * for the port.
124f11c7f63SJim Harris     */
125f11c7f63SJim Harris    SCIC_PORT_END_POINT_PROPERTIES_T  remote;
126f11c7f63SJim Harris 
127f11c7f63SJim Harris    /**
128f11c7f63SJim Harris     * This field specifies the phys contained inside the port.
129f11c7f63SJim Harris     */
130f11c7f63SJim Harris    U32  phy_mask;
131f11c7f63SJim Harris 
132f11c7f63SJim Harris } SCIC_PORT_PROPERTIES_T;
133f11c7f63SJim Harris 
134f11c7f63SJim Harris /**
135f11c7f63SJim Harris  * @brief This method simply returns the properties regarding the
136f11c7f63SJim Harris  *        port, such as: physical index, protocols, sas address, etc.
137f11c7f63SJim Harris  *
138f11c7f63SJim Harris  * @param[in]  port this parameter specifies the port for which to retrieve
139f11c7f63SJim Harris  *             the physical index.
140f11c7f63SJim Harris  * @param[out] properties This parameter specifies the properties
141f11c7f63SJim Harris  *             structure into which to copy the requested information.
142f11c7f63SJim Harris  *
143f11c7f63SJim Harris  * @return Indicate if the user specified a valid port.
144f11c7f63SJim Harris  * @retval SCI_SUCCESS This value is returned if the specified port was valid.
145f11c7f63SJim Harris  * @retval SCI_FAILURE_INVALID_PORT This value is returned if the specified port
146f11c7f63SJim Harris  *         is not valid.  When this value is returned, no data is copied to the
147f11c7f63SJim Harris  *         properties output parameter.
148f11c7f63SJim Harris  */
149f11c7f63SJim Harris SCI_STATUS scic_port_get_properties(
150f11c7f63SJim Harris    SCI_PORT_HANDLE_T        port,
151f11c7f63SJim Harris    SCIC_PORT_PROPERTIES_T * properties
152f11c7f63SJim Harris );
153f11c7f63SJim Harris 
154f11c7f63SJim Harris /**
155f11c7f63SJim Harris  * @brief This method will add a phy to an existing port.
156f11c7f63SJim Harris  *
157f11c7f63SJim Harris  * @param[in]  port This parameter specifies the port in which to add a new
158f11c7f63SJim Harris  *             phy.
159f11c7f63SJim Harris  * @param[in]  phy This parameter specifies the phy to be added to the port.
160f11c7f63SJim Harris  *
161f11c7f63SJim Harris  * @return Indicate if the phy was successfully added to the port.
162f11c7f63SJim Harris  * @retval SCI_SUCCESS This value is returned if the phy was successfully
163f11c7f63SJim Harris  *         added to the port.
164f11c7f63SJim Harris  * @retval SCI_FAILURE_INVALID_PORT This value is returned if the supplied
165f11c7f63SJim Harris  *         port is not valid.
166f11c7f63SJim Harris  * @retval SCI_FAILURE_INVALID_PHY This value is returned if the supplied
167f11c7f63SJim Harris  *         phy is either invalid or already contained in another port.
168f11c7f63SJim Harris  */
169f11c7f63SJim Harris SCI_STATUS scic_port_add_phy(
170f11c7f63SJim Harris    SCI_PORT_HANDLE_T port,
171f11c7f63SJim Harris    SCI_PHY_HANDLE_T  phy
172f11c7f63SJim Harris );
173f11c7f63SJim Harris 
174f11c7f63SJim Harris /**
175f11c7f63SJim Harris  * @brief This method will remove a phy from an existing port.
176f11c7f63SJim Harris  *
177f11c7f63SJim Harris  * @param[in]  port This parameter specifies the port in which to remove a
178f11c7f63SJim Harris  *             phy.
179f11c7f63SJim Harris  * @param[in]  phy This parameter specifies the phy to be removed from the
180f11c7f63SJim Harris  *             port.
181f11c7f63SJim Harris  *
182f11c7f63SJim Harris  * @return Indicate if the phy was successfully removed from the port.
183f11c7f63SJim Harris  * @retval SCI_SUCCESS This value is returned if the phy was successfully
184f11c7f63SJim Harris  *         removed from the port.
185f11c7f63SJim Harris  * @retval SCI_FAILURE_INVALID_PORT This value is returned if the supplied
186f11c7f63SJim Harris  *         port is not valid.
187f11c7f63SJim Harris  * @retval SCI_FAILURE_INVALID_PHY This value is returned if the supplied
188f11c7f63SJim Harris  *         phy is either invalid or
189f11c7f63SJim Harris  *         not contained in the port.
190f11c7f63SJim Harris  */
191f11c7f63SJim Harris SCI_STATUS scic_port_remove_phy(
192f11c7f63SJim Harris    SCI_PORT_HANDLE_T  port,
193f11c7f63SJim Harris    SCI_PHY_HANDLE_T   phy
194f11c7f63SJim Harris );
195f11c7f63SJim Harris 
196f11c7f63SJim Harris /**
197f11c7f63SJim Harris  * @brief This method will request the SCI implementation to perform a
198f11c7f63SJim Harris  *        HARD RESET on the SAS Port.  If/When the HARD RESET completes
199f11c7f63SJim Harris  *        the SCI user will be notified via an SCI OS callback indicating
200f11c7f63SJim Harris  *        a direct attached device was found.
201f11c7f63SJim Harris  *
202f11c7f63SJim Harris  * @note The SCI User callback in SCIC_USER_CALLBACKS_T will only be called
203f11c7f63SJim Harris  *       once for each phy in the SAS Port at completion of the hard reset
204f11c7f63SJim Harris  *       sequence.
205f11c7f63SJim Harris  *
206f11c7f63SJim Harris  * @param[in]  port a handle corresponding to the SAS port to be
207f11c7f63SJim Harris  *             hard reset.
208f11c7f63SJim Harris  * @param[in]  reset_timeout This parameter specifies the number of
209f11c7f63SJim Harris  *             milliseconds in which the port reset operation should complete.
210f11c7f63SJim Harris  *
211f11c7f63SJim Harris  * @return Return a status indicating whether the hard reset started
212f11c7f63SJim Harris  *         successfully.
213f11c7f63SJim Harris  * @retval SCI_SUCCESS This value is returned if the hard reset operation
214f11c7f63SJim Harris  *         started successfully.
215f11c7f63SJim Harris  */
216f11c7f63SJim Harris SCI_STATUS scic_port_hard_reset(
217f11c7f63SJim Harris    SCI_PORT_HANDLE_T port,
218f11c7f63SJim Harris    U32               reset_timeout
219f11c7f63SJim Harris );
220f11c7f63SJim Harris 
221f11c7f63SJim Harris /**
222f11c7f63SJim Harris  * @brief This API method enables the broadcast change notification from
223f11c7f63SJim Harris  *        underneath hardware.
224f11c7f63SJim Harris  *
225f11c7f63SJim Harris  * @param[in] port The port upon which broadcast change notifications
226f11c7f63SJim Harris  *            (BCN) are to be enabled.
227f11c7f63SJim Harris  *
228f11c7f63SJim Harris  * @return none
229f11c7f63SJim Harris  */
230f11c7f63SJim Harris void scic_port_enable_broadcast_change_notification(
231f11c7f63SJim Harris    SCI_PORT_HANDLE_T  port
232f11c7f63SJim Harris );
233f11c7f63SJim Harris 
234f11c7f63SJim Harris #ifdef __cplusplus
235f11c7f63SJim Harris }
236f11c7f63SJim Harris #endif // __cplusplus
237f11c7f63SJim Harris 
238f11c7f63SJim Harris #endif // _SCIC_PORT_H_
239f11c7f63SJim Harris 
240