Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 1 | /** |
John Soni Jose | 5faf17b | 2012-10-20 04:45:27 +0530 | [diff] [blame] | 2 | * Copyright (C) 2005 - 2012 Emulex |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 3 | * All rights reserved. |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or |
| 6 | * modify it under the terms of the GNU General Public License version 2 |
| 7 | * as published by the Free Software Foundation. The full GNU General |
| 8 | * Public License is included in this distribution in the file called COPYING. |
| 9 | * |
| 10 | * Contact Information: |
Jayamohan Kallickal | 255fa9a | 2011-03-25 14:23:57 -0700 | [diff] [blame] | 11 | * linux-drivers@emulex.com |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 12 | * |
Jayamohan Kallickal | 255fa9a | 2011-03-25 14:23:57 -0700 | [diff] [blame] | 13 | * Emulex |
| 14 | * 3333 Susan Street |
| 15 | * Costa Mesa, CA 92626 |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 16 | */ |
| 17 | |
John Soni Jose | 2177199 | 2012-04-03 23:41:49 -0500 | [diff] [blame] | 18 | #include <scsi/iscsi_proto.h> |
| 19 | |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 20 | #include "be.h" |
| 21 | #include "be_mgmt.h" |
| 22 | #include "be_main.h" |
| 23 | |
Jayamohan Kallickal | e9b9119 | 2010-07-22 04:24:53 +0530 | [diff] [blame] | 24 | int beiscsi_pci_soft_reset(struct beiscsi_hba *phba) |
| 25 | { |
| 26 | u32 sreset; |
| 27 | u8 *pci_reset_offset = 0; |
| 28 | u8 *pci_online0_offset = 0; |
| 29 | u8 *pci_online1_offset = 0; |
| 30 | u32 pconline0 = 0; |
| 31 | u32 pconline1 = 0; |
| 32 | u32 i; |
| 33 | |
| 34 | pci_reset_offset = (u8 *)phba->pci_va + BE2_SOFT_RESET; |
| 35 | pci_online0_offset = (u8 *)phba->pci_va + BE2_PCI_ONLINE0; |
| 36 | pci_online1_offset = (u8 *)phba->pci_va + BE2_PCI_ONLINE1; |
| 37 | sreset = readl((void *)pci_reset_offset); |
| 38 | sreset |= BE2_SET_RESET; |
| 39 | writel(sreset, (void *)pci_reset_offset); |
| 40 | |
| 41 | i = 0; |
| 42 | while (sreset & BE2_SET_RESET) { |
| 43 | if (i > 64) |
| 44 | break; |
| 45 | msleep(100); |
| 46 | sreset = readl((void *)pci_reset_offset); |
| 47 | i++; |
| 48 | } |
| 49 | |
| 50 | if (sreset & BE2_SET_RESET) { |
John Soni Jose | 99bc5d5 | 2012-08-20 23:00:18 +0530 | [diff] [blame] | 51 | printk(KERN_ERR DRV_NAME |
| 52 | " Soft Reset did not deassert\n"); |
Jayamohan Kallickal | e9b9119 | 2010-07-22 04:24:53 +0530 | [diff] [blame] | 53 | return -EIO; |
| 54 | } |
| 55 | pconline1 = BE2_MPU_IRAM_ONLINE; |
| 56 | writel(pconline0, (void *)pci_online0_offset); |
| 57 | writel(pconline1, (void *)pci_online1_offset); |
| 58 | |
Minh Tran | 1d8bc70 | 2012-10-20 04:41:24 +0530 | [diff] [blame] | 59 | sreset |= BE2_SET_RESET; |
Jayamohan Kallickal | e9b9119 | 2010-07-22 04:24:53 +0530 | [diff] [blame] | 60 | writel(sreset, (void *)pci_reset_offset); |
| 61 | |
| 62 | i = 0; |
| 63 | while (sreset & BE2_SET_RESET) { |
| 64 | if (i > 64) |
| 65 | break; |
| 66 | msleep(1); |
| 67 | sreset = readl((void *)pci_reset_offset); |
| 68 | i++; |
| 69 | } |
| 70 | if (sreset & BE2_SET_RESET) { |
John Soni Jose | 99bc5d5 | 2012-08-20 23:00:18 +0530 | [diff] [blame] | 71 | printk(KERN_ERR DRV_NAME |
| 72 | " MPU Online Soft Reset did not deassert\n"); |
Jayamohan Kallickal | e9b9119 | 2010-07-22 04:24:53 +0530 | [diff] [blame] | 73 | return -EIO; |
| 74 | } |
| 75 | return 0; |
| 76 | } |
| 77 | |
| 78 | int be_chk_reset_complete(struct beiscsi_hba *phba) |
| 79 | { |
| 80 | unsigned int num_loop; |
| 81 | u8 *mpu_sem = 0; |
| 82 | u32 status; |
| 83 | |
| 84 | num_loop = 1000; |
| 85 | mpu_sem = (u8 *)phba->csr_va + MPU_EP_SEMAPHORE; |
| 86 | msleep(5000); |
| 87 | |
| 88 | while (num_loop) { |
| 89 | status = readl((void *)mpu_sem); |
| 90 | |
| 91 | if ((status & 0x80000000) || (status & 0x0000FFFF) == 0xC000) |
| 92 | break; |
| 93 | msleep(60); |
| 94 | num_loop--; |
| 95 | } |
| 96 | |
| 97 | if ((status & 0x80000000) || (!num_loop)) { |
John Soni Jose | 99bc5d5 | 2012-08-20 23:00:18 +0530 | [diff] [blame] | 98 | beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT, |
| 99 | "BC_%d : Failed in be_chk_reset_complete" |
| 100 | "status = 0x%x\n", status); |
Jayamohan Kallickal | e9b9119 | 2010-07-22 04:24:53 +0530 | [diff] [blame] | 101 | return -EIO; |
| 102 | } |
| 103 | |
| 104 | return 0; |
| 105 | } |
| 106 | |
Jayamohan Kallickal | 756d29c | 2010-01-05 05:10:46 +0530 | [diff] [blame] | 107 | void be_mcc_notify(struct beiscsi_hba *phba) |
Jayamohan Kallickal | bfead3b | 2009-10-23 11:52:33 +0530 | [diff] [blame] | 108 | { |
| 109 | struct be_queue_info *mccq = &phba->ctrl.mcc_obj.q; |
| 110 | u32 val = 0; |
| 111 | |
| 112 | val |= mccq->id & DB_MCCQ_RING_ID_MASK; |
| 113 | val |= 1 << DB_MCCQ_NUM_POSTED_SHIFT; |
| 114 | iowrite32(val, phba->db_va + DB_MCCQ_OFFSET); |
| 115 | } |
| 116 | |
Jayamohan Kallickal | 756d29c | 2010-01-05 05:10:46 +0530 | [diff] [blame] | 117 | unsigned int alloc_mcc_tag(struct beiscsi_hba *phba) |
| 118 | { |
| 119 | unsigned int tag = 0; |
Jayamohan Kallickal | 756d29c | 2010-01-05 05:10:46 +0530 | [diff] [blame] | 120 | |
Jayamohan Kallickal | 756d29c | 2010-01-05 05:10:46 +0530 | [diff] [blame] | 121 | if (phba->ctrl.mcc_tag_available) { |
| 122 | tag = phba->ctrl.mcc_tag[phba->ctrl.mcc_alloc_index]; |
| 123 | phba->ctrl.mcc_tag[phba->ctrl.mcc_alloc_index] = 0; |
| 124 | phba->ctrl.mcc_numtag[tag] = 0; |
Jayamohan Kallickal | 756d29c | 2010-01-05 05:10:46 +0530 | [diff] [blame] | 125 | } |
| 126 | if (tag) { |
| 127 | phba->ctrl.mcc_tag_available--; |
| 128 | if (phba->ctrl.mcc_alloc_index == (MAX_MCC_CMD - 1)) |
| 129 | phba->ctrl.mcc_alloc_index = 0; |
| 130 | else |
| 131 | phba->ctrl.mcc_alloc_index++; |
| 132 | } |
| 133 | return tag; |
| 134 | } |
| 135 | |
John Soni Jose | e175def | 2012-10-20 04:45:40 +0530 | [diff] [blame] | 136 | /* |
| 137 | * beiscsi_mccq_compl()- Wait for completion of MBX |
| 138 | * @phba: Driver private structure |
| 139 | * @tag: Tag for the MBX Command |
| 140 | * @wrb: the WRB used for the MBX Command |
| 141 | * @cmd_hdr: IOCTL Hdr for the MBX Cmd |
| 142 | * |
| 143 | * Waits for MBX completion with the passed TAG. |
| 144 | * |
| 145 | * return |
| 146 | * Success: 0 |
| 147 | * Failure: Non-Zero |
| 148 | **/ |
| 149 | int beiscsi_mccq_compl(struct beiscsi_hba *phba, |
| 150 | uint32_t tag, struct be_mcc_wrb **wrb, |
| 151 | void *cmd_hdr) |
| 152 | { |
| 153 | int rc = 0; |
| 154 | uint32_t mcc_tag_response; |
| 155 | uint16_t status = 0, addl_status = 0, wrb_num = 0; |
| 156 | struct be_mcc_wrb *temp_wrb; |
| 157 | struct be_cmd_req_hdr *ioctl_hdr; |
| 158 | struct be_queue_info *mccq = &phba->ctrl.mcc_obj.q; |
| 159 | |
John Soni Jose | 7a15800 | 2012-10-20 04:45:51 +0530 | [diff] [blame] | 160 | if (beiscsi_error(phba)) |
| 161 | return -EIO; |
| 162 | |
John Soni Jose | e175def | 2012-10-20 04:45:40 +0530 | [diff] [blame] | 163 | /* wait for the mccq completion */ |
| 164 | rc = wait_event_interruptible_timeout( |
| 165 | phba->ctrl.mcc_wait[tag], |
| 166 | phba->ctrl.mcc_numtag[tag], |
| 167 | msecs_to_jiffies( |
| 168 | BEISCSI_HOST_MBX_TIMEOUT)); |
| 169 | |
| 170 | if (rc <= 0) { |
| 171 | beiscsi_log(phba, KERN_ERR, |
| 172 | BEISCSI_LOG_INIT | BEISCSI_LOG_EH | |
| 173 | BEISCSI_LOG_CONFIG, |
| 174 | "BC_%d : MBX Cmd Completion timed out\n"); |
| 175 | rc = -EAGAIN; |
| 176 | goto release_mcc_tag; |
| 177 | } else |
| 178 | rc = 0; |
| 179 | |
| 180 | mcc_tag_response = phba->ctrl.mcc_numtag[tag]; |
| 181 | status = (mcc_tag_response & CQE_STATUS_MASK); |
| 182 | addl_status = ((mcc_tag_response & CQE_STATUS_ADDL_MASK) >> |
| 183 | CQE_STATUS_ADDL_SHIFT); |
| 184 | |
| 185 | if (cmd_hdr) { |
| 186 | ioctl_hdr = (struct be_cmd_req_hdr *)cmd_hdr; |
| 187 | } else { |
| 188 | wrb_num = (mcc_tag_response & CQE_STATUS_WRB_MASK) >> |
| 189 | CQE_STATUS_WRB_SHIFT; |
| 190 | temp_wrb = (struct be_mcc_wrb *)queue_get_wrb(mccq, wrb_num); |
| 191 | ioctl_hdr = embedded_payload(temp_wrb); |
| 192 | |
| 193 | if (wrb) |
| 194 | *wrb = temp_wrb; |
| 195 | } |
| 196 | |
| 197 | if (status || addl_status) { |
| 198 | beiscsi_log(phba, KERN_ERR, |
| 199 | BEISCSI_LOG_INIT | BEISCSI_LOG_EH | |
| 200 | BEISCSI_LOG_CONFIG, |
| 201 | "BC_%d : MBX Cmd Failed for " |
| 202 | "Subsys : %d Opcode : %d with " |
| 203 | "Status : %d and Extd_Status : %d\n", |
| 204 | ioctl_hdr->subsystem, |
| 205 | ioctl_hdr->opcode, |
| 206 | status, addl_status); |
| 207 | rc = -EAGAIN; |
| 208 | } |
| 209 | |
| 210 | release_mcc_tag: |
| 211 | /* Release the MCC entry */ |
| 212 | free_mcc_tag(&phba->ctrl, tag); |
| 213 | |
| 214 | return rc; |
| 215 | } |
| 216 | |
Jayamohan Kallickal | 756d29c | 2010-01-05 05:10:46 +0530 | [diff] [blame] | 217 | void free_mcc_tag(struct be_ctrl_info *ctrl, unsigned int tag) |
| 218 | { |
| 219 | spin_lock(&ctrl->mbox_lock); |
| 220 | tag = tag & 0x000000FF; |
| 221 | ctrl->mcc_tag[ctrl->mcc_free_index] = tag; |
| 222 | if (ctrl->mcc_free_index == (MAX_MCC_CMD - 1)) |
| 223 | ctrl->mcc_free_index = 0; |
| 224 | else |
| 225 | ctrl->mcc_free_index++; |
| 226 | ctrl->mcc_tag_available++; |
| 227 | spin_unlock(&ctrl->mbox_lock); |
| 228 | } |
| 229 | |
| 230 | bool is_link_state_evt(u32 trailer) |
| 231 | { |
| 232 | return (((trailer >> ASYNC_TRAILER_EVENT_CODE_SHIFT) & |
| 233 | ASYNC_TRAILER_EVENT_CODE_MASK) == |
| 234 | ASYNC_EVENT_CODE_LINK_STATE); |
| 235 | } |
| 236 | |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 237 | static inline bool be_mcc_compl_is_new(struct be_mcc_compl *compl) |
| 238 | { |
| 239 | if (compl->flags != 0) { |
| 240 | compl->flags = le32_to_cpu(compl->flags); |
| 241 | WARN_ON((compl->flags & CQE_FLAGS_VALID_MASK) == 0); |
| 242 | return true; |
| 243 | } else |
| 244 | return false; |
| 245 | } |
| 246 | |
| 247 | static inline void be_mcc_compl_use(struct be_mcc_compl *compl) |
| 248 | { |
| 249 | compl->flags = 0; |
| 250 | } |
| 251 | |
John Soni Jose | e175def | 2012-10-20 04:45:40 +0530 | [diff] [blame] | 252 | /* |
| 253 | * be_mcc_compl_process()- Check the MBX comapletion status |
| 254 | * @ctrl: Function specific MBX data structure |
| 255 | * @compl: Completion status of MBX Command |
| 256 | * |
| 257 | * Check for the MBX completion status when BMBX method used |
| 258 | * |
| 259 | * return |
| 260 | * Success: Zero |
| 261 | * Failure: Non-Zero |
| 262 | **/ |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 263 | static int be_mcc_compl_process(struct be_ctrl_info *ctrl, |
| 264 | struct be_mcc_compl *compl) |
| 265 | { |
| 266 | u16 compl_status, extd_status; |
John Soni Jose | e175def | 2012-10-20 04:45:40 +0530 | [diff] [blame] | 267 | struct be_mcc_wrb *wrb = wrb_from_mbox(&ctrl->mbox_mem); |
John Soni Jose | 99bc5d5 | 2012-08-20 23:00:18 +0530 | [diff] [blame] | 268 | struct beiscsi_hba *phba = pci_get_drvdata(ctrl->pdev); |
John Soni Jose | e175def | 2012-10-20 04:45:40 +0530 | [diff] [blame] | 269 | struct be_cmd_req_hdr *hdr = embedded_payload(wrb); |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 270 | |
| 271 | be_dws_le_to_cpu(compl, 4); |
| 272 | |
| 273 | compl_status = (compl->status >> CQE_STATUS_COMPL_SHIFT) & |
| 274 | CQE_STATUS_COMPL_MASK; |
| 275 | if (compl_status != MCC_STATUS_SUCCESS) { |
| 276 | extd_status = (compl->status >> CQE_STATUS_EXTD_SHIFT) & |
| 277 | CQE_STATUS_EXTD_MASK; |
John Soni Jose | 99bc5d5 | 2012-08-20 23:00:18 +0530 | [diff] [blame] | 278 | |
| 279 | beiscsi_log(phba, KERN_ERR, |
| 280 | BEISCSI_LOG_CONFIG | BEISCSI_LOG_MBOX, |
John Soni Jose | e175def | 2012-10-20 04:45:40 +0530 | [diff] [blame] | 281 | "BC_%d : error in cmd completion: " |
| 282 | "Subsystem : %d Opcode : %d " |
| 283 | "status(compl/extd)=%d/%d\n", |
| 284 | hdr->subsystem, hdr->opcode, |
John Soni Jose | 99bc5d5 | 2012-08-20 23:00:18 +0530 | [diff] [blame] | 285 | compl_status, extd_status); |
| 286 | |
Jayamohan Kallickal | d3ad2bb | 2010-07-22 04:16:38 +0530 | [diff] [blame] | 287 | return -EBUSY; |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 288 | } |
| 289 | return 0; |
| 290 | } |
| 291 | |
Jayamohan Kallickal | 756d29c | 2010-01-05 05:10:46 +0530 | [diff] [blame] | 292 | int be_mcc_compl_process_isr(struct be_ctrl_info *ctrl, |
| 293 | struct be_mcc_compl *compl) |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 294 | { |
Jayamohan Kallickal | 756d29c | 2010-01-05 05:10:46 +0530 | [diff] [blame] | 295 | u16 compl_status, extd_status; |
| 296 | unsigned short tag; |
| 297 | |
| 298 | be_dws_le_to_cpu(compl, 4); |
| 299 | |
| 300 | compl_status = (compl->status >> CQE_STATUS_COMPL_SHIFT) & |
| 301 | CQE_STATUS_COMPL_MASK; |
| 302 | /* The ctrl.mcc_numtag[tag] is filled with |
| 303 | * [31] = valid, [30:24] = Rsvd, [23:16] = wrb, [15:8] = extd_status, |
| 304 | * [7:0] = compl_status |
| 305 | */ |
| 306 | tag = (compl->tag0 & 0x000000FF); |
| 307 | extd_status = (compl->status >> CQE_STATUS_EXTD_SHIFT) & |
| 308 | CQE_STATUS_EXTD_MASK; |
| 309 | |
| 310 | ctrl->mcc_numtag[tag] = 0x80000000; |
| 311 | ctrl->mcc_numtag[tag] |= (compl->tag0 & 0x00FF0000); |
| 312 | ctrl->mcc_numtag[tag] |= (extd_status & 0x000000FF) << 8; |
| 313 | ctrl->mcc_numtag[tag] |= (compl_status & 0x000000FF); |
| 314 | wake_up_interruptible(&ctrl->mcc_wait[tag]); |
| 315 | return 0; |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 316 | } |
| 317 | |
Jayamohan Kallickal | bfead3b | 2009-10-23 11:52:33 +0530 | [diff] [blame] | 318 | static struct be_mcc_compl *be_mcc_compl_get(struct beiscsi_hba *phba) |
| 319 | { |
| 320 | struct be_queue_info *mcc_cq = &phba->ctrl.mcc_obj.cq; |
| 321 | struct be_mcc_compl *compl = queue_tail_node(mcc_cq); |
| 322 | |
| 323 | if (be_mcc_compl_is_new(compl)) { |
| 324 | queue_tail_inc(mcc_cq); |
| 325 | return compl; |
| 326 | } |
| 327 | return NULL; |
| 328 | } |
| 329 | |
| 330 | static void be2iscsi_fail_session(struct iscsi_cls_session *cls_session) |
| 331 | { |
| 332 | iscsi_session_failure(cls_session->dd_data, ISCSI_ERR_CONN_FAILED); |
| 333 | } |
| 334 | |
Jayamohan Kallickal | 756d29c | 2010-01-05 05:10:46 +0530 | [diff] [blame] | 335 | void beiscsi_async_link_state_process(struct beiscsi_hba *phba, |
Jayamohan Kallickal | bfead3b | 2009-10-23 11:52:33 +0530 | [diff] [blame] | 336 | struct be_async_event_link_state *evt) |
| 337 | { |
| 338 | switch (evt->port_link_status) { |
| 339 | case ASYNC_EVENT_LINK_DOWN: |
John Soni Jose | 99bc5d5 | 2012-08-20 23:00:18 +0530 | [diff] [blame] | 340 | beiscsi_log(phba, KERN_ERR, |
| 341 | BEISCSI_LOG_CONFIG | BEISCSI_LOG_INIT, |
| 342 | "BC_%d : Link Down on Physical Port %d\n", |
| 343 | evt->physical_port); |
| 344 | |
Jayamohan Kallickal | bfead3b | 2009-10-23 11:52:33 +0530 | [diff] [blame] | 345 | phba->state |= BE_ADAPTER_LINK_DOWN; |
Jayamohan Kallickal | da7408c | 2010-01-05 05:11:23 +0530 | [diff] [blame] | 346 | iscsi_host_for_each_session(phba->shost, |
| 347 | be2iscsi_fail_session); |
Jayamohan Kallickal | bfead3b | 2009-10-23 11:52:33 +0530 | [diff] [blame] | 348 | break; |
| 349 | case ASYNC_EVENT_LINK_UP: |
| 350 | phba->state = BE_ADAPTER_UP; |
John Soni Jose | 99bc5d5 | 2012-08-20 23:00:18 +0530 | [diff] [blame] | 351 | beiscsi_log(phba, KERN_ERR, |
| 352 | BEISCSI_LOG_CONFIG | BEISCSI_LOG_INIT, |
| 353 | "BC_%d : Link UP on Physical Port %d\n", |
| 354 | evt->physical_port); |
Jayamohan Kallickal | bfead3b | 2009-10-23 11:52:33 +0530 | [diff] [blame] | 355 | break; |
| 356 | default: |
John Soni Jose | 99bc5d5 | 2012-08-20 23:00:18 +0530 | [diff] [blame] | 357 | beiscsi_log(phba, KERN_ERR, |
| 358 | BEISCSI_LOG_CONFIG | BEISCSI_LOG_INIT, |
| 359 | "BC_%d : Unexpected Async Notification %d on" |
| 360 | "Physical Port %d\n", |
| 361 | evt->port_link_status, |
| 362 | evt->physical_port); |
Jayamohan Kallickal | bfead3b | 2009-10-23 11:52:33 +0530 | [diff] [blame] | 363 | } |
| 364 | } |
| 365 | |
| 366 | static void beiscsi_cq_notify(struct beiscsi_hba *phba, u16 qid, bool arm, |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 367 | u16 num_popped) |
| 368 | { |
| 369 | u32 val = 0; |
| 370 | val |= qid & DB_CQ_RING_ID_MASK; |
| 371 | if (arm) |
| 372 | val |= 1 << DB_CQ_REARM_SHIFT; |
| 373 | val |= num_popped << DB_CQ_NUM_POPPED_SHIFT; |
Jayamohan Kallickal | bfead3b | 2009-10-23 11:52:33 +0530 | [diff] [blame] | 374 | iowrite32(val, phba->db_va + DB_CQ_OFFSET); |
| 375 | } |
| 376 | |
| 377 | |
Jayamohan Kallickal | 35e6601 | 2009-10-23 11:53:49 +0530 | [diff] [blame] | 378 | int beiscsi_process_mcc(struct beiscsi_hba *phba) |
Jayamohan Kallickal | bfead3b | 2009-10-23 11:52:33 +0530 | [diff] [blame] | 379 | { |
| 380 | struct be_mcc_compl *compl; |
| 381 | int num = 0, status = 0; |
| 382 | struct be_ctrl_info *ctrl = &phba->ctrl; |
| 383 | |
| 384 | spin_lock_bh(&phba->ctrl.mcc_cq_lock); |
| 385 | while ((compl = be_mcc_compl_get(phba))) { |
| 386 | if (compl->flags & CQE_FLAGS_ASYNC_MASK) { |
| 387 | /* Interpret flags as an async trailer */ |
Jayamohan Kallickal | 78b9fb6 | 2009-11-25 01:41:37 +0530 | [diff] [blame] | 388 | if (is_link_state_evt(compl->flags)) |
| 389 | /* Interpret compl as a async link evt */ |
| 390 | beiscsi_async_link_state_process(phba, |
| 391 | (struct be_async_event_link_state *) compl); |
| 392 | else |
John Soni Jose | 99bc5d5 | 2012-08-20 23:00:18 +0530 | [diff] [blame] | 393 | beiscsi_log(phba, KERN_ERR, |
| 394 | BEISCSI_LOG_CONFIG | |
| 395 | BEISCSI_LOG_MBOX, |
| 396 | "BC_%d : Unsupported Async Event, flags" |
| 397 | " = 0x%08x\n", compl->flags); |
Jayamohan Kallickal | bfead3b | 2009-10-23 11:52:33 +0530 | [diff] [blame] | 398 | |
Jayamohan Kallickal | bfead3b | 2009-10-23 11:52:33 +0530 | [diff] [blame] | 399 | } else if (compl->flags & CQE_FLAGS_COMPLETED_MASK) { |
| 400 | status = be_mcc_compl_process(ctrl, compl); |
| 401 | atomic_dec(&phba->ctrl.mcc_obj.q.used); |
| 402 | } |
| 403 | be_mcc_compl_use(compl); |
| 404 | num++; |
| 405 | } |
| 406 | |
| 407 | if (num) |
| 408 | beiscsi_cq_notify(phba, phba->ctrl.mcc_obj.cq.id, true, num); |
| 409 | |
| 410 | spin_unlock_bh(&phba->ctrl.mcc_cq_lock); |
| 411 | return status; |
| 412 | } |
| 413 | |
John Soni Jose | e175def | 2012-10-20 04:45:40 +0530 | [diff] [blame] | 414 | /* |
| 415 | * be_mcc_wait_compl()- Wait for MBX completion |
| 416 | * @phba: driver private structure |
| 417 | * |
| 418 | * Wait till no more pending mcc requests are present |
| 419 | * |
| 420 | * return |
| 421 | * Success: 0 |
| 422 | * Failure: Non-Zero |
| 423 | * |
| 424 | **/ |
Jayamohan Kallickal | bfead3b | 2009-10-23 11:52:33 +0530 | [diff] [blame] | 425 | static int be_mcc_wait_compl(struct beiscsi_hba *phba) |
| 426 | { |
Jayamohan Kallickal | bfead3b | 2009-10-23 11:52:33 +0530 | [diff] [blame] | 427 | int i, status; |
| 428 | for (i = 0; i < mcc_timeout; i++) { |
John Soni Jose | 7a15800 | 2012-10-20 04:45:51 +0530 | [diff] [blame] | 429 | if (beiscsi_error(phba)) |
John Soni Jose | e175def | 2012-10-20 04:45:40 +0530 | [diff] [blame] | 430 | return -EIO; |
| 431 | |
Jayamohan Kallickal | 35e6601 | 2009-10-23 11:53:49 +0530 | [diff] [blame] | 432 | status = beiscsi_process_mcc(phba); |
Jayamohan Kallickal | bfead3b | 2009-10-23 11:52:33 +0530 | [diff] [blame] | 433 | if (status) |
| 434 | return status; |
| 435 | |
| 436 | if (atomic_read(&phba->ctrl.mcc_obj.q.used) == 0) |
| 437 | break; |
| 438 | udelay(100); |
| 439 | } |
| 440 | if (i == mcc_timeout) { |
John Soni Jose | 99bc5d5 | 2012-08-20 23:00:18 +0530 | [diff] [blame] | 441 | beiscsi_log(phba, KERN_ERR, |
| 442 | BEISCSI_LOG_CONFIG | BEISCSI_LOG_MBOX, |
John Soni Jose | e175def | 2012-10-20 04:45:40 +0530 | [diff] [blame] | 443 | "BC_%d : FW Timed Out\n"); |
| 444 | phba->fw_timeout = true; |
John Soni Jose | 7a15800 | 2012-10-20 04:45:51 +0530 | [diff] [blame] | 445 | beiscsi_ue_detect(phba); |
Jayamohan Kallickal | d3ad2bb | 2010-07-22 04:16:38 +0530 | [diff] [blame] | 446 | return -EBUSY; |
Jayamohan Kallickal | bfead3b | 2009-10-23 11:52:33 +0530 | [diff] [blame] | 447 | } |
| 448 | return 0; |
| 449 | } |
| 450 | |
John Soni Jose | e175def | 2012-10-20 04:45:40 +0530 | [diff] [blame] | 451 | /* |
| 452 | * be_mcc_notify_wait()- Notify and wait for Compl |
| 453 | * @phba: driver private structure |
| 454 | * |
| 455 | * Notify MCC requests and wait for completion |
| 456 | * |
| 457 | * return |
| 458 | * Success: 0 |
| 459 | * Failure: Non-Zero |
| 460 | **/ |
Jayamohan Kallickal | bfead3b | 2009-10-23 11:52:33 +0530 | [diff] [blame] | 461 | int be_mcc_notify_wait(struct beiscsi_hba *phba) |
| 462 | { |
| 463 | be_mcc_notify(phba); |
| 464 | return be_mcc_wait_compl(phba); |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 465 | } |
| 466 | |
John Soni Jose | e175def | 2012-10-20 04:45:40 +0530 | [diff] [blame] | 467 | /* |
| 468 | * be_mbox_db_ready_wait()- Check ready status |
| 469 | * @ctrl: Function specific MBX data structure |
| 470 | * |
| 471 | * Check for the ready status of FW to send BMBX |
| 472 | * commands to adapter. |
| 473 | * |
| 474 | * return |
| 475 | * Success: 0 |
| 476 | * Failure: Non-Zero |
| 477 | **/ |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 478 | static int be_mbox_db_ready_wait(struct be_ctrl_info *ctrl) |
| 479 | { |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 480 | void __iomem *db = ctrl->db + MPU_MAILBOX_DB_OFFSET; |
John Soni Jose | e175def | 2012-10-20 04:45:40 +0530 | [diff] [blame] | 481 | struct beiscsi_hba *phba = pci_get_drvdata(ctrl->pdev); |
| 482 | int wait = 0; |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 483 | u32 ready; |
| 484 | |
| 485 | do { |
John Soni Jose | 7a15800 | 2012-10-20 04:45:51 +0530 | [diff] [blame] | 486 | |
| 487 | if (beiscsi_error(phba)) |
John Soni Jose | e175def | 2012-10-20 04:45:40 +0530 | [diff] [blame] | 488 | return -EIO; |
| 489 | |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 490 | ready = ioread32(db) & MPU_MAILBOX_DB_RDY_MASK; |
| 491 | if (ready) |
| 492 | break; |
| 493 | |
John Soni Jose | e175def | 2012-10-20 04:45:40 +0530 | [diff] [blame] | 494 | if (wait > BEISCSI_HOST_MBX_TIMEOUT) { |
John Soni Jose | 99bc5d5 | 2012-08-20 23:00:18 +0530 | [diff] [blame] | 495 | beiscsi_log(phba, KERN_ERR, |
| 496 | BEISCSI_LOG_CONFIG | BEISCSI_LOG_MBOX, |
John Soni Jose | e175def | 2012-10-20 04:45:40 +0530 | [diff] [blame] | 497 | "BC_%d : FW Timed Out\n"); |
| 498 | phba->fw_timeout = true; |
John Soni Jose | 7a15800 | 2012-10-20 04:45:51 +0530 | [diff] [blame] | 499 | beiscsi_ue_detect(phba); |
Jayamohan Kallickal | d3ad2bb | 2010-07-22 04:16:38 +0530 | [diff] [blame] | 500 | return -EBUSY; |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 501 | } |
| 502 | |
John Soni Jose | e175def | 2012-10-20 04:45:40 +0530 | [diff] [blame] | 503 | mdelay(1); |
| 504 | wait++; |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 505 | } while (true); |
| 506 | return 0; |
| 507 | } |
| 508 | |
John Soni Jose | e175def | 2012-10-20 04:45:40 +0530 | [diff] [blame] | 509 | /* |
| 510 | * be_mbox_notify: Notify adapter of new BMBX command |
| 511 | * @ctrl: Function specific MBX data structure |
| 512 | * |
| 513 | * Ring doorbell to inform adapter of a BMBX command |
| 514 | * to process |
| 515 | * |
| 516 | * return |
| 517 | * Success: 0 |
| 518 | * Failure: Non-Zero |
| 519 | **/ |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 520 | int be_mbox_notify(struct be_ctrl_info *ctrl) |
| 521 | { |
| 522 | int status; |
| 523 | u32 val = 0; |
| 524 | void __iomem *db = ctrl->db + MPU_MAILBOX_DB_OFFSET; |
| 525 | struct be_dma_mem *mbox_mem = &ctrl->mbox_mem; |
| 526 | struct be_mcc_mailbox *mbox = mbox_mem->va; |
| 527 | struct be_mcc_compl *compl = &mbox->compl; |
John Soni Jose | 99bc5d5 | 2012-08-20 23:00:18 +0530 | [diff] [blame] | 528 | struct beiscsi_hba *phba = pci_get_drvdata(ctrl->pdev); |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 529 | |
| 530 | val &= ~MPU_MAILBOX_DB_RDY_MASK; |
| 531 | val |= MPU_MAILBOX_DB_HI_MASK; |
| 532 | val |= (upper_32_bits(mbox_mem->dma) >> 2) << 2; |
| 533 | iowrite32(val, db); |
| 534 | |
| 535 | status = be_mbox_db_ready_wait(ctrl); |
John Soni Jose | e175def | 2012-10-20 04:45:40 +0530 | [diff] [blame] | 536 | if (status) |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 537 | return status; |
John Soni Jose | e175def | 2012-10-20 04:45:40 +0530 | [diff] [blame] | 538 | |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 539 | val = 0; |
| 540 | val &= ~MPU_MAILBOX_DB_RDY_MASK; |
| 541 | val &= ~MPU_MAILBOX_DB_HI_MASK; |
| 542 | val |= (u32) (mbox_mem->dma >> 4) << 2; |
| 543 | iowrite32(val, db); |
| 544 | |
| 545 | status = be_mbox_db_ready_wait(ctrl); |
John Soni Jose | e175def | 2012-10-20 04:45:40 +0530 | [diff] [blame] | 546 | if (status) |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 547 | return status; |
John Soni Jose | e175def | 2012-10-20 04:45:40 +0530 | [diff] [blame] | 548 | |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 549 | if (be_mcc_compl_is_new(compl)) { |
| 550 | status = be_mcc_compl_process(ctrl, &mbox->compl); |
| 551 | be_mcc_compl_use(compl); |
| 552 | if (status) { |
John Soni Jose | 99bc5d5 | 2012-08-20 23:00:18 +0530 | [diff] [blame] | 553 | beiscsi_log(phba, KERN_ERR, |
| 554 | BEISCSI_LOG_CONFIG | BEISCSI_LOG_MBOX, |
| 555 | "BC_%d : After be_mcc_compl_process\n"); |
| 556 | |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 557 | return status; |
| 558 | } |
| 559 | } else { |
John Soni Jose | 99bc5d5 | 2012-08-20 23:00:18 +0530 | [diff] [blame] | 560 | beiscsi_log(phba, KERN_ERR, |
| 561 | BEISCSI_LOG_CONFIG | BEISCSI_LOG_MBOX, |
| 562 | "BC_%d : Invalid Mailbox Completion\n"); |
| 563 | |
Jayamohan Kallickal | d3ad2bb | 2010-07-22 04:16:38 +0530 | [diff] [blame] | 564 | return -EBUSY; |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 565 | } |
| 566 | return 0; |
| 567 | } |
| 568 | |
Jayamohan Kallickal | bfead3b | 2009-10-23 11:52:33 +0530 | [diff] [blame] | 569 | /* |
| 570 | * Insert the mailbox address into the doorbell in two steps |
| 571 | * Polls on the mbox doorbell till a command completion (or a timeout) occurs |
| 572 | */ |
| 573 | static int be_mbox_notify_wait(struct beiscsi_hba *phba) |
| 574 | { |
| 575 | int status; |
| 576 | u32 val = 0; |
| 577 | void __iomem *db = phba->ctrl.db + MPU_MAILBOX_DB_OFFSET; |
| 578 | struct be_dma_mem *mbox_mem = &phba->ctrl.mbox_mem; |
| 579 | struct be_mcc_mailbox *mbox = mbox_mem->va; |
| 580 | struct be_mcc_compl *compl = &mbox->compl; |
| 581 | struct be_ctrl_info *ctrl = &phba->ctrl; |
| 582 | |
| 583 | val |= MPU_MAILBOX_DB_HI_MASK; |
| 584 | /* at bits 2 - 31 place mbox dma addr msb bits 34 - 63 */ |
| 585 | val |= (upper_32_bits(mbox_mem->dma) >> 2) << 2; |
| 586 | iowrite32(val, db); |
| 587 | |
| 588 | /* wait for ready to be set */ |
| 589 | status = be_mbox_db_ready_wait(ctrl); |
| 590 | if (status != 0) |
| 591 | return status; |
| 592 | |
| 593 | val = 0; |
| 594 | /* at bits 2 - 31 place mbox dma addr lsb bits 4 - 33 */ |
| 595 | val |= (u32)(mbox_mem->dma >> 4) << 2; |
| 596 | iowrite32(val, db); |
| 597 | |
| 598 | status = be_mbox_db_ready_wait(ctrl); |
| 599 | if (status != 0) |
| 600 | return status; |
| 601 | |
| 602 | /* A cq entry has been made now */ |
| 603 | if (be_mcc_compl_is_new(compl)) { |
| 604 | status = be_mcc_compl_process(ctrl, &mbox->compl); |
| 605 | be_mcc_compl_use(compl); |
| 606 | if (status) |
| 607 | return status; |
| 608 | } else { |
John Soni Jose | 99bc5d5 | 2012-08-20 23:00:18 +0530 | [diff] [blame] | 609 | beiscsi_log(phba, KERN_ERR, |
| 610 | BEISCSI_LOG_CONFIG | BEISCSI_LOG_MBOX, |
| 611 | "BC_%d : invalid mailbox completion\n"); |
| 612 | |
Jayamohan Kallickal | d3ad2bb | 2010-07-22 04:16:38 +0530 | [diff] [blame] | 613 | return -EBUSY; |
Jayamohan Kallickal | bfead3b | 2009-10-23 11:52:33 +0530 | [diff] [blame] | 614 | } |
| 615 | return 0; |
| 616 | } |
| 617 | |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 618 | void be_wrb_hdr_prepare(struct be_mcc_wrb *wrb, int payload_len, |
| 619 | bool embedded, u8 sge_cnt) |
| 620 | { |
| 621 | if (embedded) |
| 622 | wrb->embedded |= MCC_WRB_EMBEDDED_MASK; |
| 623 | else |
| 624 | wrb->embedded |= (sge_cnt & MCC_WRB_SGE_CNT_MASK) << |
| 625 | MCC_WRB_SGE_CNT_SHIFT; |
| 626 | wrb->payload_length = payload_len; |
| 627 | be_dws_cpu_to_le(wrb, 8); |
| 628 | } |
| 629 | |
| 630 | void be_cmd_hdr_prepare(struct be_cmd_req_hdr *req_hdr, |
| 631 | u8 subsystem, u8 opcode, int cmd_len) |
| 632 | { |
| 633 | req_hdr->opcode = opcode; |
| 634 | req_hdr->subsystem = subsystem; |
| 635 | req_hdr->request_length = cpu_to_le32(cmd_len - sizeof(*req_hdr)); |
John Soni Jose | e175def | 2012-10-20 04:45:40 +0530 | [diff] [blame] | 636 | req_hdr->timeout = BEISCSI_FW_MBX_TIMEOUT; |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 637 | } |
| 638 | |
| 639 | static void be_cmd_page_addrs_prepare(struct phys_addr *pages, u32 max_pages, |
| 640 | struct be_dma_mem *mem) |
| 641 | { |
| 642 | int i, buf_pages; |
| 643 | u64 dma = (u64) mem->dma; |
| 644 | |
| 645 | buf_pages = min(PAGES_4K_SPANNED(mem->va, mem->size), max_pages); |
| 646 | for (i = 0; i < buf_pages; i++) { |
| 647 | pages[i].lo = cpu_to_le32(dma & 0xFFFFFFFF); |
| 648 | pages[i].hi = cpu_to_le32(upper_32_bits(dma)); |
| 649 | dma += PAGE_SIZE_4K; |
| 650 | } |
| 651 | } |
| 652 | |
| 653 | static u32 eq_delay_to_mult(u32 usec_delay) |
| 654 | { |
| 655 | #define MAX_INTR_RATE 651042 |
| 656 | const u32 round = 10; |
| 657 | u32 multiplier; |
| 658 | |
| 659 | if (usec_delay == 0) |
| 660 | multiplier = 0; |
| 661 | else { |
| 662 | u32 interrupt_rate = 1000000 / usec_delay; |
| 663 | if (interrupt_rate == 0) |
| 664 | multiplier = 1023; |
| 665 | else { |
| 666 | multiplier = (MAX_INTR_RATE - interrupt_rate) * round; |
| 667 | multiplier /= interrupt_rate; |
| 668 | multiplier = (multiplier + round / 2) / round; |
| 669 | multiplier = min(multiplier, (u32) 1023); |
| 670 | } |
| 671 | } |
| 672 | return multiplier; |
| 673 | } |
| 674 | |
| 675 | struct be_mcc_wrb *wrb_from_mbox(struct be_dma_mem *mbox_mem) |
| 676 | { |
| 677 | return &((struct be_mcc_mailbox *)(mbox_mem->va))->wrb; |
| 678 | } |
| 679 | |
Jayamohan Kallickal | bfead3b | 2009-10-23 11:52:33 +0530 | [diff] [blame] | 680 | struct be_mcc_wrb *wrb_from_mccq(struct beiscsi_hba *phba) |
| 681 | { |
| 682 | struct be_queue_info *mccq = &phba->ctrl.mcc_obj.q; |
| 683 | struct be_mcc_wrb *wrb; |
| 684 | |
| 685 | BUG_ON(atomic_read(&mccq->used) >= mccq->len); |
| 686 | wrb = queue_head_node(mccq); |
Jayamohan Kallickal | 756d29c | 2010-01-05 05:10:46 +0530 | [diff] [blame] | 687 | memset(wrb, 0, sizeof(*wrb)); |
| 688 | wrb->tag0 = (mccq->head & 0x000000FF) << 16; |
Jayamohan Kallickal | bfead3b | 2009-10-23 11:52:33 +0530 | [diff] [blame] | 689 | queue_head_inc(mccq); |
| 690 | atomic_inc(&mccq->used); |
Jayamohan Kallickal | bfead3b | 2009-10-23 11:52:33 +0530 | [diff] [blame] | 691 | return wrb; |
| 692 | } |
| 693 | |
| 694 | |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 695 | int beiscsi_cmd_eq_create(struct be_ctrl_info *ctrl, |
| 696 | struct be_queue_info *eq, int eq_delay) |
| 697 | { |
| 698 | struct be_mcc_wrb *wrb = wrb_from_mbox(&ctrl->mbox_mem); |
| 699 | struct be_cmd_req_eq_create *req = embedded_payload(wrb); |
| 700 | struct be_cmd_resp_eq_create *resp = embedded_payload(wrb); |
| 701 | struct be_dma_mem *q_mem = &eq->dma_mem; |
| 702 | int status; |
| 703 | |
| 704 | spin_lock(&ctrl->mbox_lock); |
| 705 | memset(wrb, 0, sizeof(*wrb)); |
| 706 | |
| 707 | be_wrb_hdr_prepare(wrb, sizeof(*req), true, 0); |
| 708 | |
| 709 | be_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, |
| 710 | OPCODE_COMMON_EQ_CREATE, sizeof(*req)); |
| 711 | |
| 712 | req->num_pages = cpu_to_le16(PAGES_4K_SPANNED(q_mem->va, q_mem->size)); |
| 713 | |
| 714 | AMAP_SET_BITS(struct amap_eq_context, func, req->context, |
| 715 | PCI_FUNC(ctrl->pdev->devfn)); |
| 716 | AMAP_SET_BITS(struct amap_eq_context, valid, req->context, 1); |
| 717 | AMAP_SET_BITS(struct amap_eq_context, size, req->context, 0); |
| 718 | AMAP_SET_BITS(struct amap_eq_context, count, req->context, |
| 719 | __ilog2_u32(eq->len / 256)); |
| 720 | AMAP_SET_BITS(struct amap_eq_context, delaymult, req->context, |
| 721 | eq_delay_to_mult(eq_delay)); |
| 722 | be_dws_cpu_to_le(req->context, sizeof(req->context)); |
| 723 | |
| 724 | be_cmd_page_addrs_prepare(req->pages, ARRAY_SIZE(req->pages), q_mem); |
| 725 | |
| 726 | status = be_mbox_notify(ctrl); |
| 727 | if (!status) { |
| 728 | eq->id = le16_to_cpu(resp->eq_id); |
| 729 | eq->created = true; |
| 730 | } |
| 731 | spin_unlock(&ctrl->mbox_lock); |
| 732 | return status; |
| 733 | } |
| 734 | |
Jayamohan Kallickal | 0283fbb | 2013-04-05 20:38:21 -0700 | [diff] [blame^] | 735 | /** |
| 736 | * be_cmd_fw_initialize()- Initialize FW |
| 737 | * @ctrl: Pointer to function control structure |
| 738 | * |
| 739 | * Send FW initialize pattern for the function. |
| 740 | * |
| 741 | * return |
| 742 | * Success: 0 |
| 743 | * Failure: Non-Zero value |
| 744 | **/ |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 745 | int be_cmd_fw_initialize(struct be_ctrl_info *ctrl) |
| 746 | { |
| 747 | struct be_mcc_wrb *wrb = wrb_from_mbox(&ctrl->mbox_mem); |
John Soni Jose | 99bc5d5 | 2012-08-20 23:00:18 +0530 | [diff] [blame] | 748 | struct beiscsi_hba *phba = pci_get_drvdata(ctrl->pdev); |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 749 | int status; |
| 750 | u8 *endian_check; |
| 751 | |
| 752 | spin_lock(&ctrl->mbox_lock); |
| 753 | memset(wrb, 0, sizeof(*wrb)); |
| 754 | |
| 755 | endian_check = (u8 *) wrb; |
| 756 | *endian_check++ = 0xFF; |
| 757 | *endian_check++ = 0x12; |
| 758 | *endian_check++ = 0x34; |
| 759 | *endian_check++ = 0xFF; |
| 760 | *endian_check++ = 0xFF; |
| 761 | *endian_check++ = 0x56; |
| 762 | *endian_check++ = 0x78; |
| 763 | *endian_check++ = 0xFF; |
| 764 | be_dws_cpu_to_le(wrb, sizeof(*wrb)); |
| 765 | |
| 766 | status = be_mbox_notify(ctrl); |
| 767 | if (status) |
John Soni Jose | 99bc5d5 | 2012-08-20 23:00:18 +0530 | [diff] [blame] | 768 | beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT, |
| 769 | "BC_%d : be_cmd_fw_initialize Failed\n"); |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 770 | |
| 771 | spin_unlock(&ctrl->mbox_lock); |
| 772 | return status; |
| 773 | } |
| 774 | |
Jayamohan Kallickal | 0283fbb | 2013-04-05 20:38:21 -0700 | [diff] [blame^] | 775 | /** |
| 776 | * be_cmd_fw_uninit()- Uinitialize FW |
| 777 | * @ctrl: Pointer to function control structure |
| 778 | * |
| 779 | * Send FW uninitialize pattern for the function |
| 780 | * |
| 781 | * return |
| 782 | * Success: 0 |
| 783 | * Failure: Non-Zero value |
| 784 | **/ |
| 785 | int be_cmd_fw_uninit(struct be_ctrl_info *ctrl) |
| 786 | { |
| 787 | struct be_mcc_wrb *wrb = wrb_from_mbox(&ctrl->mbox_mem); |
| 788 | struct beiscsi_hba *phba = pci_get_drvdata(ctrl->pdev); |
| 789 | int status; |
| 790 | u8 *endian_check; |
| 791 | |
| 792 | spin_lock(&ctrl->mbox_lock); |
| 793 | memset(wrb, 0, sizeof(*wrb)); |
| 794 | |
| 795 | endian_check = (u8 *) wrb; |
| 796 | *endian_check++ = 0xFF; |
| 797 | *endian_check++ = 0xAA; |
| 798 | *endian_check++ = 0xBB; |
| 799 | *endian_check++ = 0xFF; |
| 800 | *endian_check++ = 0xFF; |
| 801 | *endian_check++ = 0xCC; |
| 802 | *endian_check++ = 0xDD; |
| 803 | *endian_check = 0xFF; |
| 804 | |
| 805 | be_dws_cpu_to_le(wrb, sizeof(*wrb)); |
| 806 | |
| 807 | status = be_mbox_notify(ctrl); |
| 808 | if (status) |
| 809 | beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT, |
| 810 | "BC_%d : be_cmd_fw_uninit Failed\n"); |
| 811 | |
| 812 | spin_unlock(&ctrl->mbox_lock); |
| 813 | return status; |
| 814 | } |
| 815 | |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 816 | int beiscsi_cmd_cq_create(struct be_ctrl_info *ctrl, |
| 817 | struct be_queue_info *cq, struct be_queue_info *eq, |
| 818 | bool sol_evts, bool no_delay, int coalesce_wm) |
| 819 | { |
| 820 | struct be_mcc_wrb *wrb = wrb_from_mbox(&ctrl->mbox_mem); |
| 821 | struct be_cmd_req_cq_create *req = embedded_payload(wrb); |
| 822 | struct be_cmd_resp_cq_create *resp = embedded_payload(wrb); |
John Soni Jose | 99bc5d5 | 2012-08-20 23:00:18 +0530 | [diff] [blame] | 823 | struct beiscsi_hba *phba = pci_get_drvdata(ctrl->pdev); |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 824 | struct be_dma_mem *q_mem = &cq->dma_mem; |
| 825 | void *ctxt = &req->context; |
| 826 | int status; |
| 827 | |
| 828 | spin_lock(&ctrl->mbox_lock); |
| 829 | memset(wrb, 0, sizeof(*wrb)); |
| 830 | |
| 831 | be_wrb_hdr_prepare(wrb, sizeof(*req), true, 0); |
| 832 | |
| 833 | be_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, |
| 834 | OPCODE_COMMON_CQ_CREATE, sizeof(*req)); |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 835 | |
| 836 | req->num_pages = cpu_to_le16(PAGES_4K_SPANNED(q_mem->va, q_mem->size)); |
John Soni Jose | eaae526 | 2012-10-20 04:43:44 +0530 | [diff] [blame] | 837 | if (chip_skh_r(ctrl->pdev)) { |
| 838 | req->hdr.version = MBX_CMD_VER2; |
| 839 | req->page_size = 1; |
| 840 | AMAP_SET_BITS(struct amap_cq_context_v2, coalescwm, |
| 841 | ctxt, coalesce_wm); |
| 842 | AMAP_SET_BITS(struct amap_cq_context_v2, nodelay, |
| 843 | ctxt, no_delay); |
| 844 | AMAP_SET_BITS(struct amap_cq_context_v2, count, ctxt, |
| 845 | __ilog2_u32(cq->len / 256)); |
| 846 | AMAP_SET_BITS(struct amap_cq_context_v2, valid, ctxt, 1); |
| 847 | AMAP_SET_BITS(struct amap_cq_context_v2, eventable, ctxt, 1); |
| 848 | AMAP_SET_BITS(struct amap_cq_context_v2, eqid, ctxt, eq->id); |
| 849 | AMAP_SET_BITS(struct amap_cq_context_v2, armed, ctxt, 1); |
| 850 | } else { |
| 851 | AMAP_SET_BITS(struct amap_cq_context, coalescwm, |
| 852 | ctxt, coalesce_wm); |
| 853 | AMAP_SET_BITS(struct amap_cq_context, nodelay, ctxt, no_delay); |
| 854 | AMAP_SET_BITS(struct amap_cq_context, count, ctxt, |
| 855 | __ilog2_u32(cq->len / 256)); |
| 856 | AMAP_SET_BITS(struct amap_cq_context, valid, ctxt, 1); |
| 857 | AMAP_SET_BITS(struct amap_cq_context, solevent, ctxt, sol_evts); |
| 858 | AMAP_SET_BITS(struct amap_cq_context, eventable, ctxt, 1); |
| 859 | AMAP_SET_BITS(struct amap_cq_context, eqid, ctxt, eq->id); |
| 860 | AMAP_SET_BITS(struct amap_cq_context, armed, ctxt, 1); |
| 861 | AMAP_SET_BITS(struct amap_cq_context, func, ctxt, |
| 862 | PCI_FUNC(ctrl->pdev->devfn)); |
| 863 | } |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 864 | |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 865 | be_dws_cpu_to_le(ctxt, sizeof(req->context)); |
| 866 | |
| 867 | be_cmd_page_addrs_prepare(req->pages, ARRAY_SIZE(req->pages), q_mem); |
| 868 | |
| 869 | status = be_mbox_notify(ctrl); |
| 870 | if (!status) { |
| 871 | cq->id = le16_to_cpu(resp->cq_id); |
| 872 | cq->created = true; |
| 873 | } else |
John Soni Jose | 99bc5d5 | 2012-08-20 23:00:18 +0530 | [diff] [blame] | 874 | beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT, |
| 875 | "BC_%d : In be_cmd_cq_create, status=ox%08x\n", |
| 876 | status); |
| 877 | |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 878 | spin_unlock(&ctrl->mbox_lock); |
| 879 | |
| 880 | return status; |
| 881 | } |
| 882 | |
| 883 | static u32 be_encoded_q_len(int q_len) |
| 884 | { |
| 885 | u32 len_encoded = fls(q_len); /* log2(len) + 1 */ |
| 886 | if (len_encoded == 16) |
| 887 | len_encoded = 0; |
| 888 | return len_encoded; |
| 889 | } |
Jayamohan Kallickal | bfead3b | 2009-10-23 11:52:33 +0530 | [diff] [blame] | 890 | |
Jayamohan Kallickal | 35e6601 | 2009-10-23 11:53:49 +0530 | [diff] [blame] | 891 | int beiscsi_cmd_mccq_create(struct beiscsi_hba *phba, |
Jayamohan Kallickal | bfead3b | 2009-10-23 11:52:33 +0530 | [diff] [blame] | 892 | struct be_queue_info *mccq, |
| 893 | struct be_queue_info *cq) |
| 894 | { |
| 895 | struct be_mcc_wrb *wrb; |
| 896 | struct be_cmd_req_mcc_create *req; |
| 897 | struct be_dma_mem *q_mem = &mccq->dma_mem; |
| 898 | struct be_ctrl_info *ctrl; |
| 899 | void *ctxt; |
| 900 | int status; |
| 901 | |
| 902 | spin_lock(&phba->ctrl.mbox_lock); |
| 903 | ctrl = &phba->ctrl; |
| 904 | wrb = wrb_from_mbox(&ctrl->mbox_mem); |
Jayamohan Kallickal | 3760976 | 2011-10-07 19:31:11 -0500 | [diff] [blame] | 905 | memset(wrb, 0, sizeof(*wrb)); |
Jayamohan Kallickal | bfead3b | 2009-10-23 11:52:33 +0530 | [diff] [blame] | 906 | req = embedded_payload(wrb); |
| 907 | ctxt = &req->context; |
| 908 | |
| 909 | be_wrb_hdr_prepare(wrb, sizeof(*req), true, 0); |
| 910 | |
| 911 | be_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, |
| 912 | OPCODE_COMMON_MCC_CREATE, sizeof(*req)); |
| 913 | |
| 914 | req->num_pages = PAGES_4K_SPANNED(q_mem->va, q_mem->size); |
| 915 | |
| 916 | AMAP_SET_BITS(struct amap_mcc_context, fid, ctxt, |
| 917 | PCI_FUNC(phba->pcidev->devfn)); |
| 918 | AMAP_SET_BITS(struct amap_mcc_context, valid, ctxt, 1); |
| 919 | AMAP_SET_BITS(struct amap_mcc_context, ring_size, ctxt, |
| 920 | be_encoded_q_len(mccq->len)); |
| 921 | AMAP_SET_BITS(struct amap_mcc_context, cq_id, ctxt, cq->id); |
| 922 | |
| 923 | be_dws_cpu_to_le(ctxt, sizeof(req->context)); |
| 924 | |
| 925 | be_cmd_page_addrs_prepare(req->pages, ARRAY_SIZE(req->pages), q_mem); |
| 926 | |
| 927 | status = be_mbox_notify_wait(phba); |
| 928 | if (!status) { |
| 929 | struct be_cmd_resp_mcc_create *resp = embedded_payload(wrb); |
| 930 | mccq->id = le16_to_cpu(resp->id); |
| 931 | mccq->created = true; |
| 932 | } |
| 933 | spin_unlock(&phba->ctrl.mbox_lock); |
| 934 | |
| 935 | return status; |
| 936 | } |
| 937 | |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 938 | int beiscsi_cmd_q_destroy(struct be_ctrl_info *ctrl, struct be_queue_info *q, |
| 939 | int queue_type) |
| 940 | { |
| 941 | struct be_mcc_wrb *wrb = wrb_from_mbox(&ctrl->mbox_mem); |
| 942 | struct be_cmd_req_q_destroy *req = embedded_payload(wrb); |
John Soni Jose | 99bc5d5 | 2012-08-20 23:00:18 +0530 | [diff] [blame] | 943 | struct beiscsi_hba *phba = pci_get_drvdata(ctrl->pdev); |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 944 | u8 subsys = 0, opcode = 0; |
| 945 | int status; |
| 946 | |
John Soni Jose | 99bc5d5 | 2012-08-20 23:00:18 +0530 | [diff] [blame] | 947 | beiscsi_log(phba, KERN_INFO, BEISCSI_LOG_INIT, |
| 948 | "BC_%d : In beiscsi_cmd_q_destroy " |
| 949 | "queue_type : %d\n", queue_type); |
| 950 | |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 951 | spin_lock(&ctrl->mbox_lock); |
| 952 | memset(wrb, 0, sizeof(*wrb)); |
| 953 | be_wrb_hdr_prepare(wrb, sizeof(*req), true, 0); |
| 954 | |
| 955 | switch (queue_type) { |
| 956 | case QTYPE_EQ: |
| 957 | subsys = CMD_SUBSYSTEM_COMMON; |
| 958 | opcode = OPCODE_COMMON_EQ_DESTROY; |
| 959 | break; |
| 960 | case QTYPE_CQ: |
| 961 | subsys = CMD_SUBSYSTEM_COMMON; |
| 962 | opcode = OPCODE_COMMON_CQ_DESTROY; |
| 963 | break; |
Jayamohan Kallickal | bfead3b | 2009-10-23 11:52:33 +0530 | [diff] [blame] | 964 | case QTYPE_MCCQ: |
| 965 | subsys = CMD_SUBSYSTEM_COMMON; |
| 966 | opcode = OPCODE_COMMON_MCC_DESTROY; |
| 967 | break; |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 968 | case QTYPE_WRBQ: |
| 969 | subsys = CMD_SUBSYSTEM_ISCSI; |
| 970 | opcode = OPCODE_COMMON_ISCSI_WRBQ_DESTROY; |
| 971 | break; |
| 972 | case QTYPE_DPDUQ: |
| 973 | subsys = CMD_SUBSYSTEM_ISCSI; |
| 974 | opcode = OPCODE_COMMON_ISCSI_DEFQ_DESTROY; |
| 975 | break; |
| 976 | case QTYPE_SGL: |
| 977 | subsys = CMD_SUBSYSTEM_ISCSI; |
| 978 | opcode = OPCODE_COMMON_ISCSI_CFG_REMOVE_SGL_PAGES; |
| 979 | break; |
| 980 | default: |
| 981 | spin_unlock(&ctrl->mbox_lock); |
| 982 | BUG(); |
Jayamohan Kallickal | d3ad2bb | 2010-07-22 04:16:38 +0530 | [diff] [blame] | 983 | return -ENXIO; |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 984 | } |
| 985 | be_cmd_hdr_prepare(&req->hdr, subsys, opcode, sizeof(*req)); |
| 986 | if (queue_type != QTYPE_SGL) |
| 987 | req->id = cpu_to_le16(q->id); |
| 988 | |
| 989 | status = be_mbox_notify(ctrl); |
| 990 | |
| 991 | spin_unlock(&ctrl->mbox_lock); |
| 992 | return status; |
| 993 | } |
| 994 | |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 995 | int be_cmd_create_default_pdu_queue(struct be_ctrl_info *ctrl, |
| 996 | struct be_queue_info *cq, |
| 997 | struct be_queue_info *dq, int length, |
| 998 | int entry_size) |
| 999 | { |
| 1000 | struct be_mcc_wrb *wrb = wrb_from_mbox(&ctrl->mbox_mem); |
| 1001 | struct be_defq_create_req *req = embedded_payload(wrb); |
| 1002 | struct be_dma_mem *q_mem = &dq->dma_mem; |
| 1003 | void *ctxt = &req->context; |
| 1004 | int status; |
| 1005 | |
| 1006 | spin_lock(&ctrl->mbox_lock); |
| 1007 | memset(wrb, 0, sizeof(*wrb)); |
| 1008 | |
| 1009 | be_wrb_hdr_prepare(wrb, sizeof(*req), true, 0); |
| 1010 | |
| 1011 | be_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_ISCSI, |
| 1012 | OPCODE_COMMON_ISCSI_DEFQ_CREATE, sizeof(*req)); |
| 1013 | |
| 1014 | req->num_pages = PAGES_4K_SPANNED(q_mem->va, q_mem->size); |
| 1015 | AMAP_SET_BITS(struct amap_be_default_pdu_context, rx_pdid, ctxt, 0); |
| 1016 | AMAP_SET_BITS(struct amap_be_default_pdu_context, rx_pdid_valid, ctxt, |
| 1017 | 1); |
| 1018 | AMAP_SET_BITS(struct amap_be_default_pdu_context, pci_func_id, ctxt, |
| 1019 | PCI_FUNC(ctrl->pdev->devfn)); |
| 1020 | AMAP_SET_BITS(struct amap_be_default_pdu_context, ring_size, ctxt, |
| 1021 | be_encoded_q_len(length / sizeof(struct phys_addr))); |
| 1022 | AMAP_SET_BITS(struct amap_be_default_pdu_context, default_buffer_size, |
| 1023 | ctxt, entry_size); |
| 1024 | AMAP_SET_BITS(struct amap_be_default_pdu_context, cq_id_recv, ctxt, |
| 1025 | cq->id); |
| 1026 | |
| 1027 | be_dws_cpu_to_le(ctxt, sizeof(req->context)); |
| 1028 | |
| 1029 | be_cmd_page_addrs_prepare(req->pages, ARRAY_SIZE(req->pages), q_mem); |
| 1030 | |
| 1031 | status = be_mbox_notify(ctrl); |
| 1032 | if (!status) { |
| 1033 | struct be_defq_create_resp *resp = embedded_payload(wrb); |
| 1034 | |
| 1035 | dq->id = le16_to_cpu(resp->id); |
| 1036 | dq->created = true; |
| 1037 | } |
| 1038 | spin_unlock(&ctrl->mbox_lock); |
| 1039 | |
| 1040 | return status; |
| 1041 | } |
| 1042 | |
| 1043 | int be_cmd_wrbq_create(struct be_ctrl_info *ctrl, struct be_dma_mem *q_mem, |
| 1044 | struct be_queue_info *wrbq) |
| 1045 | { |
| 1046 | struct be_mcc_wrb *wrb = wrb_from_mbox(&ctrl->mbox_mem); |
| 1047 | struct be_wrbq_create_req *req = embedded_payload(wrb); |
| 1048 | struct be_wrbq_create_resp *resp = embedded_payload(wrb); |
| 1049 | int status; |
| 1050 | |
| 1051 | spin_lock(&ctrl->mbox_lock); |
| 1052 | memset(wrb, 0, sizeof(*wrb)); |
| 1053 | |
| 1054 | be_wrb_hdr_prepare(wrb, sizeof(*req), true, 0); |
| 1055 | |
| 1056 | be_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_ISCSI, |
| 1057 | OPCODE_COMMON_ISCSI_WRBQ_CREATE, sizeof(*req)); |
| 1058 | req->num_pages = PAGES_4K_SPANNED(q_mem->va, q_mem->size); |
| 1059 | be_cmd_page_addrs_prepare(req->pages, ARRAY_SIZE(req->pages), q_mem); |
| 1060 | |
| 1061 | status = be_mbox_notify(ctrl); |
Jayamohan Kallickal | bfead3b | 2009-10-23 11:52:33 +0530 | [diff] [blame] | 1062 | if (!status) { |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 1063 | wrbq->id = le16_to_cpu(resp->cid); |
Jayamohan Kallickal | bfead3b | 2009-10-23 11:52:33 +0530 | [diff] [blame] | 1064 | wrbq->created = true; |
| 1065 | } |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 1066 | spin_unlock(&ctrl->mbox_lock); |
| 1067 | return status; |
| 1068 | } |
| 1069 | |
| 1070 | int be_cmd_iscsi_post_sgl_pages(struct be_ctrl_info *ctrl, |
| 1071 | struct be_dma_mem *q_mem, |
| 1072 | u32 page_offset, u32 num_pages) |
| 1073 | { |
| 1074 | struct be_mcc_wrb *wrb = wrb_from_mbox(&ctrl->mbox_mem); |
| 1075 | struct be_post_sgl_pages_req *req = embedded_payload(wrb); |
John Soni Jose | 99bc5d5 | 2012-08-20 23:00:18 +0530 | [diff] [blame] | 1076 | struct beiscsi_hba *phba = pci_get_drvdata(ctrl->pdev); |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 1077 | int status; |
| 1078 | unsigned int curr_pages; |
| 1079 | u32 internal_page_offset = 0; |
| 1080 | u32 temp_num_pages = num_pages; |
| 1081 | |
| 1082 | if (num_pages == 0xff) |
| 1083 | num_pages = 1; |
| 1084 | |
| 1085 | spin_lock(&ctrl->mbox_lock); |
| 1086 | do { |
| 1087 | memset(wrb, 0, sizeof(*wrb)); |
| 1088 | be_wrb_hdr_prepare(wrb, sizeof(*req), true, 0); |
| 1089 | be_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_ISCSI, |
| 1090 | OPCODE_COMMON_ISCSI_CFG_POST_SGL_PAGES, |
| 1091 | sizeof(*req)); |
| 1092 | curr_pages = BE_NUMBER_OF_FIELD(struct be_post_sgl_pages_req, |
| 1093 | pages); |
| 1094 | req->num_pages = min(num_pages, curr_pages); |
| 1095 | req->page_offset = page_offset; |
| 1096 | be_cmd_page_addrs_prepare(req->pages, req->num_pages, q_mem); |
| 1097 | q_mem->dma = q_mem->dma + (req->num_pages * PAGE_SIZE); |
| 1098 | internal_page_offset += req->num_pages; |
| 1099 | page_offset += req->num_pages; |
| 1100 | num_pages -= req->num_pages; |
| 1101 | |
| 1102 | if (temp_num_pages == 0xff) |
| 1103 | req->num_pages = temp_num_pages; |
| 1104 | |
| 1105 | status = be_mbox_notify(ctrl); |
| 1106 | if (status) { |
John Soni Jose | 99bc5d5 | 2012-08-20 23:00:18 +0530 | [diff] [blame] | 1107 | beiscsi_log(phba, KERN_ERR, BEISCSI_LOG_INIT, |
| 1108 | "BC_%d : FW CMD to map iscsi frags failed.\n"); |
| 1109 | |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 1110 | goto error; |
| 1111 | } |
| 1112 | } while (num_pages > 0); |
| 1113 | error: |
| 1114 | spin_unlock(&ctrl->mbox_lock); |
| 1115 | if (status != 0) |
| 1116 | beiscsi_cmd_q_destroy(ctrl, NULL, QTYPE_SGL); |
| 1117 | return status; |
| 1118 | } |
Jayamohan Kallickal | e528586 | 2011-10-07 19:31:08 -0500 | [diff] [blame] | 1119 | |
| 1120 | int beiscsi_cmd_reset_function(struct beiscsi_hba *phba) |
| 1121 | { |
| 1122 | struct be_ctrl_info *ctrl = &phba->ctrl; |
| 1123 | struct be_mcc_wrb *wrb = wrb_from_mbox(&ctrl->mbox_mem); |
| 1124 | struct be_post_sgl_pages_req *req = embedded_payload(wrb); |
| 1125 | int status; |
| 1126 | |
| 1127 | spin_lock(&ctrl->mbox_lock); |
| 1128 | |
| 1129 | req = embedded_payload(wrb); |
| 1130 | be_wrb_hdr_prepare(wrb, sizeof(*req), true, 0); |
| 1131 | be_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, |
| 1132 | OPCODE_COMMON_FUNCTION_RESET, sizeof(*req)); |
| 1133 | status = be_mbox_notify_wait(phba); |
| 1134 | |
| 1135 | spin_unlock(&ctrl->mbox_lock); |
| 1136 | return status; |
| 1137 | } |
John Soni Jose | 6f72238 | 2012-08-20 23:00:43 +0530 | [diff] [blame] | 1138 | |
| 1139 | /** |
| 1140 | * be_cmd_set_vlan()- Configure VLAN paramters on the adapter |
| 1141 | * @phba: device priv structure instance |
| 1142 | * @vlan_tag: TAG to be set |
| 1143 | * |
| 1144 | * Set the VLAN_TAG for the adapter or Disable VLAN on adapter |
| 1145 | * |
| 1146 | * returns |
| 1147 | * TAG for the MBX Cmd |
| 1148 | * **/ |
| 1149 | int be_cmd_set_vlan(struct beiscsi_hba *phba, |
| 1150 | uint16_t vlan_tag) |
| 1151 | { |
| 1152 | unsigned int tag = 0; |
| 1153 | struct be_mcc_wrb *wrb; |
| 1154 | struct be_cmd_set_vlan_req *req; |
| 1155 | struct be_ctrl_info *ctrl = &phba->ctrl; |
| 1156 | |
| 1157 | spin_lock(&ctrl->mbox_lock); |
| 1158 | tag = alloc_mcc_tag(phba); |
| 1159 | if (!tag) { |
| 1160 | spin_unlock(&ctrl->mbox_lock); |
| 1161 | return tag; |
| 1162 | } |
| 1163 | |
| 1164 | wrb = wrb_from_mccq(phba); |
| 1165 | req = embedded_payload(wrb); |
| 1166 | wrb->tag0 |= tag; |
| 1167 | be_wrb_hdr_prepare(wrb, sizeof(*wrb), true, 0); |
| 1168 | be_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_ISCSI, |
| 1169 | OPCODE_COMMON_ISCSI_NTWK_SET_VLAN, |
| 1170 | sizeof(*req)); |
| 1171 | |
| 1172 | req->interface_hndl = phba->interface_handle; |
| 1173 | req->vlan_priority = vlan_tag; |
| 1174 | |
| 1175 | be_mcc_notify(phba); |
| 1176 | spin_unlock(&ctrl->mbox_lock); |
| 1177 | |
| 1178 | return tag; |
| 1179 | } |