Yuval Mintz | 0a7fb11 | 2016-10-01 21:59:55 +0300 | [diff] [blame] | 1 | /* QLogic qed NIC Driver |
Mintz, Yuval | e8f1cb5 | 2017-01-01 13:57:00 +0200 | [diff] [blame] | 2 | * Copyright (c) 2015-2017 QLogic Corporation |
Yuval Mintz | 0a7fb11 | 2016-10-01 21:59:55 +0300 | [diff] [blame] | 3 | * |
Mintz, Yuval | e8f1cb5 | 2017-01-01 13:57:00 +0200 | [diff] [blame] | 4 | * This software is available to you under a choice of one of two |
| 5 | * licenses. You may choose to be licensed under the terms of the GNU |
| 6 | * General Public License (GPL) Version 2, available from the file |
| 7 | * COPYING in the main directory of this source tree, or the |
| 8 | * OpenIB.org BSD license below: |
Yuval Mintz | 0a7fb11 | 2016-10-01 21:59:55 +0300 | [diff] [blame] | 9 | * |
Mintz, Yuval | e8f1cb5 | 2017-01-01 13:57:00 +0200 | [diff] [blame] | 10 | * Redistribution and use in source and binary forms, with or |
| 11 | * without modification, are permitted provided that the following |
| 12 | * conditions are met: |
| 13 | * |
| 14 | * - Redistributions of source code must retain the above |
| 15 | * copyright notice, this list of conditions and the following |
| 16 | * disclaimer. |
| 17 | * |
| 18 | * - Redistributions in binary form must reproduce the above |
| 19 | * copyright notice, this list of conditions and the following |
| 20 | * disclaimer in the documentation and /or other materials |
| 21 | * provided with the distribution. |
| 22 | * |
| 23 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
| 24 | * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| 25 | * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
| 26 | * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS |
| 27 | * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN |
| 28 | * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN |
| 29 | * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
| 30 | * SOFTWARE. |
Yuval Mintz | 0a7fb11 | 2016-10-01 21:59:55 +0300 | [diff] [blame] | 31 | */ |
| 32 | |
| 33 | #ifndef _QED_LL2_H |
| 34 | #define _QED_LL2_H |
| 35 | |
| 36 | #include <linux/types.h> |
| 37 | #include <linux/kernel.h> |
| 38 | #include <linux/list.h> |
| 39 | #include <linux/mutex.h> |
| 40 | #include <linux/slab.h> |
| 41 | #include <linux/spinlock.h> |
| 42 | #include <linux/qed/qed_chain.h> |
| 43 | #include <linux/qed/qed_ll2_if.h> |
| 44 | #include "qed.h" |
| 45 | #include "qed_hsi.h" |
| 46 | #include "qed_sp.h" |
| 47 | |
| 48 | #define QED_MAX_NUM_OF_LL2_CONNECTIONS (4) |
| 49 | |
Yuval Mintz | 0a7fb11 | 2016-10-01 21:59:55 +0300 | [diff] [blame] | 50 | struct qed_ll2_rx_packet { |
| 51 | struct list_head list_entry; |
| 52 | struct core_rx_bd_with_buff_len *rxq_bd; |
| 53 | dma_addr_t rx_buf_addr; |
| 54 | u16 buf_length; |
| 55 | void *cookie; |
| 56 | u8 placement_offset; |
| 57 | u16 parse_flags; |
| 58 | u16 packet_length; |
| 59 | u16 vlan; |
| 60 | u32 opaque_data[2]; |
| 61 | }; |
| 62 | |
| 63 | struct qed_ll2_tx_packet { |
| 64 | struct list_head list_entry; |
| 65 | u16 bd_used; |
Yuval Mintz | 0a7fb11 | 2016-10-01 21:59:55 +0300 | [diff] [blame] | 66 | bool notify_fw; |
| 67 | void *cookie; |
Michal Kalderon | f5823fe | 2017-10-09 12:37:43 +0300 | [diff] [blame] | 68 | /* Flexible Array of bds_set determined by max_bds_per_packet */ |
Yuval Mintz | 0a7fb11 | 2016-10-01 21:59:55 +0300 | [diff] [blame] | 69 | struct { |
| 70 | struct core_tx_bd *txq_bd; |
| 71 | dma_addr_t tx_frag; |
| 72 | u16 frag_len; |
Michal Kalderon | f5823fe | 2017-10-09 12:37:43 +0300 | [diff] [blame] | 73 | } bds_set[1]; |
Yuval Mintz | 0a7fb11 | 2016-10-01 21:59:55 +0300 | [diff] [blame] | 74 | }; |
| 75 | |
| 76 | struct qed_ll2_rx_queue { |
| 77 | /* Lock protecting the Rx queue manipulation */ |
| 78 | spinlock_t lock; |
| 79 | struct qed_chain rxq_chain; |
| 80 | struct qed_chain rcq_chain; |
| 81 | u8 rx_sb_index; |
| 82 | bool b_cb_registred; |
| 83 | __le16 *p_fw_cons; |
| 84 | struct list_head active_descq; |
| 85 | struct list_head free_descq; |
| 86 | struct list_head posting_descq; |
| 87 | struct qed_ll2_rx_packet *descq_array; |
| 88 | void __iomem *set_prod_addr; |
| 89 | }; |
| 90 | |
| 91 | struct qed_ll2_tx_queue { |
| 92 | /* Lock protecting the Tx queue manipulation */ |
| 93 | spinlock_t lock; |
| 94 | struct qed_chain txq_chain; |
| 95 | u8 tx_sb_index; |
| 96 | bool b_cb_registred; |
| 97 | __le16 *p_fw_cons; |
| 98 | struct list_head active_descq; |
| 99 | struct list_head free_descq; |
| 100 | struct list_head sending_descq; |
Michal Kalderon | f5823fe | 2017-10-09 12:37:43 +0300 | [diff] [blame] | 101 | void *descq_mem; /* memory for variable sized qed_ll2_tx_packet*/ |
Yuval Mintz | 0a7fb11 | 2016-10-01 21:59:55 +0300 | [diff] [blame] | 102 | struct qed_ll2_tx_packet *cur_send_packet; |
| 103 | struct qed_ll2_tx_packet cur_completing_packet; |
| 104 | u16 cur_completing_bd_idx; |
| 105 | void __iomem *doorbell_addr; |
| 106 | u16 bds_idx; |
| 107 | u16 cur_send_frag_num; |
| 108 | u16 cur_completing_frag_num; |
| 109 | bool b_completing_packet; |
| 110 | }; |
| 111 | |
Arnd Bergmann | 0629a33 | 2017-01-18 15:52:52 +0100 | [diff] [blame] | 112 | struct qed_ll2_info { |
| 113 | /* Lock protecting the state of LL2 */ |
| 114 | struct mutex mutex; |
Mintz, Yuval | 13c5477 | 2017-06-09 17:13:20 +0300 | [diff] [blame] | 115 | |
| 116 | struct qed_ll2_acquire_data_inputs input; |
Arnd Bergmann | 0629a33 | 2017-01-18 15:52:52 +0100 | [diff] [blame] | 117 | u32 cid; |
| 118 | u8 my_id; |
| 119 | u8 queue_id; |
| 120 | u8 tx_stats_id; |
| 121 | bool b_active; |
Mintz, Yuval | 13c5477 | 2017-06-09 17:13:20 +0300 | [diff] [blame] | 122 | enum core_tx_dest tx_dest; |
Yuval Mintz | 0a7fb11 | 2016-10-01 21:59:55 +0300 | [diff] [blame] | 123 | u8 tx_stats_en; |
Michal Kalderon | ed468eb | 2017-10-09 12:37:44 +0300 | [diff] [blame] | 124 | bool main_func_queue; |
Yuval Mintz | 0a7fb11 | 2016-10-01 21:59:55 +0300 | [diff] [blame] | 125 | struct qed_ll2_rx_queue rx_queue; |
| 126 | struct qed_ll2_tx_queue tx_queue; |
Michal Kalderon | 0518c12 | 2017-06-09 17:13:22 +0300 | [diff] [blame] | 127 | struct qed_ll2_cbs cbs; |
Yuval Mintz | 0a7fb11 | 2016-10-01 21:59:55 +0300 | [diff] [blame] | 128 | }; |
| 129 | |
| 130 | /** |
| 131 | * @brief qed_ll2_acquire_connection - allocate resources, |
| 132 | * starts rx & tx (if relevant) queues pair. Provides |
| 133 | * connecion handler as output parameter. |
| 134 | * |
Mintz, Yuval | 13c5477 | 2017-06-09 17:13:20 +0300 | [diff] [blame] | 135 | * |
Michal Kalderon | 0518c12 | 2017-06-09 17:13:22 +0300 | [diff] [blame] | 136 | * @param cxt - pointer to the hw-function [opaque to some] |
Mintz, Yuval | 13c5477 | 2017-06-09 17:13:20 +0300 | [diff] [blame] | 137 | * @param data - describes connection parameters |
| 138 | * @return int |
Yuval Mintz | 0a7fb11 | 2016-10-01 21:59:55 +0300 | [diff] [blame] | 139 | */ |
Michal Kalderon | 0518c12 | 2017-06-09 17:13:22 +0300 | [diff] [blame] | 140 | int qed_ll2_acquire_connection(void *cxt, struct qed_ll2_acquire_data *data); |
Yuval Mintz | 0a7fb11 | 2016-10-01 21:59:55 +0300 | [diff] [blame] | 141 | |
| 142 | /** |
| 143 | * @brief qed_ll2_establish_connection - start previously |
| 144 | * allocated LL2 queues pair |
| 145 | * |
Michal Kalderon | 0518c12 | 2017-06-09 17:13:22 +0300 | [diff] [blame] | 146 | * @param cxt - pointer to the hw-function [opaque to some] |
Yuval Mintz | 0a7fb11 | 2016-10-01 21:59:55 +0300 | [diff] [blame] | 147 | * @param p_ptt |
| 148 | * @param connection_handle LL2 connection's handle obtained from |
| 149 | * qed_ll2_require_connection |
| 150 | * |
| 151 | * @return 0 on success, failure otherwise |
| 152 | */ |
Michal Kalderon | 0518c12 | 2017-06-09 17:13:22 +0300 | [diff] [blame] | 153 | int qed_ll2_establish_connection(void *cxt, u8 connection_handle); |
Yuval Mintz | 0a7fb11 | 2016-10-01 21:59:55 +0300 | [diff] [blame] | 154 | |
| 155 | /** |
| 156 | * @brief qed_ll2_post_rx_buffers - submit buffers to LL2 Rx queue. |
| 157 | * |
Michal Kalderon | 0518c12 | 2017-06-09 17:13:22 +0300 | [diff] [blame] | 158 | * @param cxt - pointer to the hw-function [opaque to some] |
Yuval Mintz | 0a7fb11 | 2016-10-01 21:59:55 +0300 | [diff] [blame] | 159 | * @param connection_handle LL2 connection's handle obtained from |
| 160 | * qed_ll2_require_connection |
| 161 | * @param addr rx (physical address) buffers to submit |
| 162 | * @param cookie |
| 163 | * @param notify_fw produce corresponding Rx BD immediately |
| 164 | * |
| 165 | * @return 0 on success, failure otherwise |
| 166 | */ |
Michal Kalderon | 0518c12 | 2017-06-09 17:13:22 +0300 | [diff] [blame] | 167 | int qed_ll2_post_rx_buffer(void *cxt, |
Yuval Mintz | 0a7fb11 | 2016-10-01 21:59:55 +0300 | [diff] [blame] | 168 | u8 connection_handle, |
| 169 | dma_addr_t addr, |
| 170 | u16 buf_len, void *cookie, u8 notify_fw); |
| 171 | |
| 172 | /** |
| 173 | * @brief qed_ll2_prepare_tx_packet - request for start Tx BD |
| 174 | * to prepare Tx packet submission to FW. |
| 175 | * |
Michal Kalderon | 0518c12 | 2017-06-09 17:13:22 +0300 | [diff] [blame] | 176 | * @param cxt - pointer to the hw-function [opaque to some] |
Mintz, Yuval | 7c7973b | 2017-06-09 17:13:18 +0300 | [diff] [blame] | 177 | * @param connection_handle |
| 178 | * @param pkt - info regarding the tx packet |
| 179 | * @param notify_fw - issue doorbell to fw for this packet |
Yuval Mintz | 0a7fb11 | 2016-10-01 21:59:55 +0300 | [diff] [blame] | 180 | * |
| 181 | * @return 0 on success, failure otherwise |
| 182 | */ |
Michal Kalderon | 0518c12 | 2017-06-09 17:13:22 +0300 | [diff] [blame] | 183 | int qed_ll2_prepare_tx_packet(void *cxt, |
Yuval Mintz | 0a7fb11 | 2016-10-01 21:59:55 +0300 | [diff] [blame] | 184 | u8 connection_handle, |
Mintz, Yuval | 7c7973b | 2017-06-09 17:13:18 +0300 | [diff] [blame] | 185 | struct qed_ll2_tx_pkt_info *pkt, |
| 186 | bool notify_fw); |
Yuval Mintz | 0a7fb11 | 2016-10-01 21:59:55 +0300 | [diff] [blame] | 187 | |
| 188 | /** |
| 189 | * @brief qed_ll2_release_connection - releases resources |
| 190 | * allocated for LL2 connection |
| 191 | * |
Michal Kalderon | 0518c12 | 2017-06-09 17:13:22 +0300 | [diff] [blame] | 192 | * @param cxt - pointer to the hw-function [opaque to some] |
Yuval Mintz | 0a7fb11 | 2016-10-01 21:59:55 +0300 | [diff] [blame] | 193 | * @param connection_handle LL2 connection's handle obtained from |
| 194 | * qed_ll2_require_connection |
| 195 | */ |
Michal Kalderon | 0518c12 | 2017-06-09 17:13:22 +0300 | [diff] [blame] | 196 | void qed_ll2_release_connection(void *cxt, u8 connection_handle); |
Yuval Mintz | 0a7fb11 | 2016-10-01 21:59:55 +0300 | [diff] [blame] | 197 | |
| 198 | /** |
| 199 | * @brief qed_ll2_set_fragment_of_tx_packet - provides fragments to fill |
| 200 | * Tx BD of BDs requested by |
| 201 | * qed_ll2_prepare_tx_packet |
| 202 | * |
Michal Kalderon | 0518c12 | 2017-06-09 17:13:22 +0300 | [diff] [blame] | 203 | * @param cxt - pointer to the hw-function [opaque to some] |
Yuval Mintz | 0a7fb11 | 2016-10-01 21:59:55 +0300 | [diff] [blame] | 204 | * @param connection_handle LL2 connection's handle |
| 205 | * obtained from |
| 206 | * qed_ll2_require_connection |
| 207 | * @param addr |
| 208 | * @param nbytes |
| 209 | * |
| 210 | * @return 0 on success, failure otherwise |
| 211 | */ |
Michal Kalderon | 0518c12 | 2017-06-09 17:13:22 +0300 | [diff] [blame] | 212 | int qed_ll2_set_fragment_of_tx_packet(void *cxt, |
Yuval Mintz | 0a7fb11 | 2016-10-01 21:59:55 +0300 | [diff] [blame] | 213 | u8 connection_handle, |
| 214 | dma_addr_t addr, u16 nbytes); |
| 215 | |
| 216 | /** |
| 217 | * @brief qed_ll2_terminate_connection - stops Tx/Rx queues |
| 218 | * |
| 219 | * |
Michal Kalderon | 0518c12 | 2017-06-09 17:13:22 +0300 | [diff] [blame] | 220 | * @param cxt - pointer to the hw-function [opaque to some] |
Yuval Mintz | 0a7fb11 | 2016-10-01 21:59:55 +0300 | [diff] [blame] | 221 | * @param connection_handle LL2 connection's handle |
| 222 | * obtained from |
| 223 | * qed_ll2_require_connection |
| 224 | * |
| 225 | * @return 0 on success, failure otherwise |
| 226 | */ |
Michal Kalderon | 0518c12 | 2017-06-09 17:13:22 +0300 | [diff] [blame] | 227 | int qed_ll2_terminate_connection(void *cxt, u8 connection_handle); |
Yuval Mintz | 0a7fb11 | 2016-10-01 21:59:55 +0300 | [diff] [blame] | 228 | |
| 229 | /** |
| 230 | * @brief qed_ll2_get_stats - get LL2 queue's statistics |
| 231 | * |
| 232 | * |
Michal Kalderon | 0518c12 | 2017-06-09 17:13:22 +0300 | [diff] [blame] | 233 | * @param cxt - pointer to the hw-function [opaque to some] |
Yuval Mintz | 0a7fb11 | 2016-10-01 21:59:55 +0300 | [diff] [blame] | 234 | * @param connection_handle LL2 connection's handle obtained from |
| 235 | * qed_ll2_require_connection |
| 236 | * @param p_stats |
| 237 | * |
| 238 | * @return 0 on success, failure otherwise |
| 239 | */ |
Michal Kalderon | 0518c12 | 2017-06-09 17:13:22 +0300 | [diff] [blame] | 240 | int qed_ll2_get_stats(void *cxt, |
Yuval Mintz | 0a7fb11 | 2016-10-01 21:59:55 +0300 | [diff] [blame] | 241 | u8 connection_handle, struct qed_ll2_stats *p_stats); |
| 242 | |
| 243 | /** |
| 244 | * @brief qed_ll2_alloc - Allocates LL2 connections set |
| 245 | * |
| 246 | * @param p_hwfn |
| 247 | * |
Tomer Tayar | 3587cb8 | 2017-05-21 12:10:56 +0300 | [diff] [blame] | 248 | * @return int |
Yuval Mintz | 0a7fb11 | 2016-10-01 21:59:55 +0300 | [diff] [blame] | 249 | */ |
Tomer Tayar | 3587cb8 | 2017-05-21 12:10:56 +0300 | [diff] [blame] | 250 | int qed_ll2_alloc(struct qed_hwfn *p_hwfn); |
Yuval Mintz | 0a7fb11 | 2016-10-01 21:59:55 +0300 | [diff] [blame] | 251 | |
| 252 | /** |
| 253 | * @brief qed_ll2_setup - Inits LL2 connections set |
| 254 | * |
| 255 | * @param p_hwfn |
Yuval Mintz | 0a7fb11 | 2016-10-01 21:59:55 +0300 | [diff] [blame] | 256 | * |
| 257 | */ |
Tomer Tayar | 3587cb8 | 2017-05-21 12:10:56 +0300 | [diff] [blame] | 258 | void qed_ll2_setup(struct qed_hwfn *p_hwfn); |
Yuval Mintz | 0a7fb11 | 2016-10-01 21:59:55 +0300 | [diff] [blame] | 259 | |
| 260 | /** |
| 261 | * @brief qed_ll2_free - Releases LL2 connections set |
| 262 | * |
| 263 | * @param p_hwfn |
Yuval Mintz | 0a7fb11 | 2016-10-01 21:59:55 +0300 | [diff] [blame] | 264 | * |
| 265 | */ |
Tomer Tayar | 3587cb8 | 2017-05-21 12:10:56 +0300 | [diff] [blame] | 266 | void qed_ll2_free(struct qed_hwfn *p_hwfn); |
| 267 | |
Yuval Mintz | 0a7fb11 | 2016-10-01 21:59:55 +0300 | [diff] [blame] | 268 | #endif |