Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1 | /* |
Ajit Khaparde | 294aedc | 2010-02-19 13:54:58 +0000 | [diff] [blame] | 2 | * Copyright (C) 2005 - 2010 ServerEngines |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [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: |
| 11 | * linux-drivers@serverengines.com |
| 12 | * |
| 13 | * ServerEngines |
| 14 | * 209 N. Fair Oaks Ave |
| 15 | * Sunnyvale, CA 94085 |
| 16 | */ |
| 17 | |
| 18 | #include "be.h" |
Sathya Perla | 8788fdc | 2009-07-27 22:52:03 +0000 | [diff] [blame] | 19 | #include "be_cmds.h" |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 20 | |
Sathya Perla | 8788fdc | 2009-07-27 22:52:03 +0000 | [diff] [blame] | 21 | static void be_mcc_notify(struct be_adapter *adapter) |
Sathya Perla | 5fb379e | 2009-06-18 00:02:59 +0000 | [diff] [blame] | 22 | { |
Sathya Perla | 8788fdc | 2009-07-27 22:52:03 +0000 | [diff] [blame] | 23 | struct be_queue_info *mccq = &adapter->mcc_obj.q; |
Sathya Perla | 5fb379e | 2009-06-18 00:02:59 +0000 | [diff] [blame] | 24 | u32 val = 0; |
| 25 | |
| 26 | val |= mccq->id & DB_MCCQ_RING_ID_MASK; |
| 27 | val |= 1 << DB_MCCQ_NUM_POSTED_SHIFT; |
Sathya Perla | f3eb62d | 2010-06-29 00:11:17 +0000 | [diff] [blame] | 28 | |
| 29 | wmb(); |
Sathya Perla | 8788fdc | 2009-07-27 22:52:03 +0000 | [diff] [blame] | 30 | iowrite32(val, adapter->db + DB_MCCQ_OFFSET); |
Sathya Perla | 5fb379e | 2009-06-18 00:02:59 +0000 | [diff] [blame] | 31 | } |
| 32 | |
| 33 | /* To check if valid bit is set, check the entire word as we don't know |
| 34 | * the endianness of the data (old entry is host endian while a new entry is |
| 35 | * little endian) */ |
Sathya Perla | efd2e40 | 2009-07-27 22:53:10 +0000 | [diff] [blame] | 36 | static inline bool be_mcc_compl_is_new(struct be_mcc_compl *compl) |
Sathya Perla | 5fb379e | 2009-06-18 00:02:59 +0000 | [diff] [blame] | 37 | { |
| 38 | if (compl->flags != 0) { |
| 39 | compl->flags = le32_to_cpu(compl->flags); |
| 40 | BUG_ON((compl->flags & CQE_FLAGS_VALID_MASK) == 0); |
| 41 | return true; |
| 42 | } else { |
| 43 | return false; |
| 44 | } |
| 45 | } |
| 46 | |
| 47 | /* Need to reset the entire word that houses the valid bit */ |
Sathya Perla | efd2e40 | 2009-07-27 22:53:10 +0000 | [diff] [blame] | 48 | static inline void be_mcc_compl_use(struct be_mcc_compl *compl) |
Sathya Perla | 5fb379e | 2009-06-18 00:02:59 +0000 | [diff] [blame] | 49 | { |
| 50 | compl->flags = 0; |
| 51 | } |
| 52 | |
Sathya Perla | 8788fdc | 2009-07-27 22:52:03 +0000 | [diff] [blame] | 53 | static int be_mcc_compl_process(struct be_adapter *adapter, |
Sathya Perla | efd2e40 | 2009-07-27 22:53:10 +0000 | [diff] [blame] | 54 | struct be_mcc_compl *compl) |
Sathya Perla | 5fb379e | 2009-06-18 00:02:59 +0000 | [diff] [blame] | 55 | { |
| 56 | u16 compl_status, extd_status; |
| 57 | |
| 58 | /* Just swap the status to host endian; mcc tag is opaquely copied |
| 59 | * from mcc_wrb */ |
| 60 | be_dws_le_to_cpu(compl, 4); |
| 61 | |
| 62 | compl_status = (compl->status >> CQE_STATUS_COMPL_SHIFT) & |
| 63 | CQE_STATUS_COMPL_MASK; |
Sarveshwar Bandi | dd131e7 | 2010-05-25 16:16:32 -0700 | [diff] [blame] | 64 | |
| 65 | if ((compl->tag0 == OPCODE_COMMON_WRITE_FLASHROM) && |
| 66 | (compl->tag1 == CMD_SUBSYSTEM_COMMON)) { |
| 67 | adapter->flash_status = compl_status; |
| 68 | complete(&adapter->flash_compl); |
| 69 | } |
| 70 | |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 71 | if (compl_status == MCC_STATUS_SUCCESS) { |
| 72 | if (compl->tag0 == OPCODE_ETH_GET_STATISTICS) { |
| 73 | struct be_cmd_resp_get_stats *resp = |
Sathya Perla | 3abcded | 2010-10-03 22:12:27 -0700 | [diff] [blame] | 74 | adapter->stats_cmd.va; |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 75 | be_dws_le_to_cpu(&resp->hw_stats, |
| 76 | sizeof(resp->hw_stats)); |
| 77 | netdev_stats_update(adapter); |
Ajit Khaparde | 0fc48c3 | 2010-07-29 06:18:58 +0000 | [diff] [blame] | 78 | adapter->stats_ioctl_sent = false; |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 79 | } |
Ajit Khaparde | 8943807 | 2010-07-23 12:42:40 -0700 | [diff] [blame] | 80 | } else if ((compl_status != MCC_STATUS_NOT_SUPPORTED) && |
| 81 | (compl->tag0 != OPCODE_COMMON_NTWK_MAC_QUERY)) { |
Sathya Perla | 5fb379e | 2009-06-18 00:02:59 +0000 | [diff] [blame] | 82 | extd_status = (compl->status >> CQE_STATUS_EXTD_SHIFT) & |
| 83 | CQE_STATUS_EXTD_MASK; |
Sathya Perla | 5f0b849 | 2009-07-27 22:52:56 +0000 | [diff] [blame] | 84 | dev_warn(&adapter->pdev->dev, |
Ajit Khaparde | d744b44 | 2009-12-03 06:12:06 +0000 | [diff] [blame] | 85 | "Error in cmd completion - opcode %d, compl %d, extd %d\n", |
| 86 | compl->tag0, compl_status, extd_status); |
Sathya Perla | 5fb379e | 2009-06-18 00:02:59 +0000 | [diff] [blame] | 87 | } |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 88 | return compl_status; |
Sathya Perla | 5fb379e | 2009-06-18 00:02:59 +0000 | [diff] [blame] | 89 | } |
| 90 | |
Sathya Perla | a8f447b | 2009-06-18 00:10:27 +0000 | [diff] [blame] | 91 | /* Link state evt is a string of bytes; no need for endian swapping */ |
Sathya Perla | 8788fdc | 2009-07-27 22:52:03 +0000 | [diff] [blame] | 92 | static void be_async_link_state_process(struct be_adapter *adapter, |
Sathya Perla | a8f447b | 2009-06-18 00:10:27 +0000 | [diff] [blame] | 93 | struct be_async_event_link_state *evt) |
| 94 | { |
Sathya Perla | 8788fdc | 2009-07-27 22:52:03 +0000 | [diff] [blame] | 95 | be_link_status_update(adapter, |
| 96 | evt->port_link_status == ASYNC_EVENT_LINK_UP); |
Sathya Perla | a8f447b | 2009-06-18 00:10:27 +0000 | [diff] [blame] | 97 | } |
| 98 | |
Somnath Kotur | cc4ce02 | 2010-10-21 07:11:14 -0700 | [diff] [blame] | 99 | /* Grp5 CoS Priority evt */ |
| 100 | static void be_async_grp5_cos_priority_process(struct be_adapter *adapter, |
| 101 | struct be_async_event_grp5_cos_priority *evt) |
| 102 | { |
| 103 | if (evt->valid) { |
| 104 | adapter->vlan_prio_bmap = evt->available_priority_bmap; |
| 105 | adapter->recommended_prio = |
| 106 | evt->reco_default_priority << VLAN_PRIO_SHIFT; |
| 107 | } |
| 108 | } |
| 109 | |
| 110 | /* Grp5 QOS Speed evt */ |
| 111 | static void be_async_grp5_qos_speed_process(struct be_adapter *adapter, |
| 112 | struct be_async_event_grp5_qos_link_speed *evt) |
| 113 | { |
| 114 | if (evt->physical_port == adapter->port_num) { |
| 115 | /* qos_link_speed is in units of 10 Mbps */ |
| 116 | adapter->link_speed = evt->qos_link_speed * 10; |
| 117 | } |
| 118 | } |
| 119 | |
| 120 | static void be_async_grp5_evt_process(struct be_adapter *adapter, |
| 121 | u32 trailer, struct be_mcc_compl *evt) |
| 122 | { |
| 123 | u8 event_type = 0; |
| 124 | |
| 125 | event_type = (trailer >> ASYNC_TRAILER_EVENT_TYPE_SHIFT) & |
| 126 | ASYNC_TRAILER_EVENT_TYPE_MASK; |
| 127 | |
| 128 | switch (event_type) { |
| 129 | case ASYNC_EVENT_COS_PRIORITY: |
| 130 | be_async_grp5_cos_priority_process(adapter, |
| 131 | (struct be_async_event_grp5_cos_priority *)evt); |
| 132 | break; |
| 133 | case ASYNC_EVENT_QOS_SPEED: |
| 134 | be_async_grp5_qos_speed_process(adapter, |
| 135 | (struct be_async_event_grp5_qos_link_speed *)evt); |
| 136 | break; |
| 137 | default: |
| 138 | dev_warn(&adapter->pdev->dev, "Unknown grp5 event!\n"); |
| 139 | break; |
| 140 | } |
| 141 | } |
| 142 | |
Sathya Perla | a8f447b | 2009-06-18 00:10:27 +0000 | [diff] [blame] | 143 | static inline bool is_link_state_evt(u32 trailer) |
| 144 | { |
Eric Dumazet | 807540b | 2010-09-23 05:40:09 +0000 | [diff] [blame] | 145 | return ((trailer >> ASYNC_TRAILER_EVENT_CODE_SHIFT) & |
Sathya Perla | a8f447b | 2009-06-18 00:10:27 +0000 | [diff] [blame] | 146 | ASYNC_TRAILER_EVENT_CODE_MASK) == |
Eric Dumazet | 807540b | 2010-09-23 05:40:09 +0000 | [diff] [blame] | 147 | ASYNC_EVENT_CODE_LINK_STATE; |
Sathya Perla | a8f447b | 2009-06-18 00:10:27 +0000 | [diff] [blame] | 148 | } |
Sathya Perla | 5fb379e | 2009-06-18 00:02:59 +0000 | [diff] [blame] | 149 | |
Somnath Kotur | cc4ce02 | 2010-10-21 07:11:14 -0700 | [diff] [blame] | 150 | static inline bool is_grp5_evt(u32 trailer) |
| 151 | { |
| 152 | return (((trailer >> ASYNC_TRAILER_EVENT_CODE_SHIFT) & |
| 153 | ASYNC_TRAILER_EVENT_CODE_MASK) == |
| 154 | ASYNC_EVENT_CODE_GRP_5); |
| 155 | } |
| 156 | |
Sathya Perla | efd2e40 | 2009-07-27 22:53:10 +0000 | [diff] [blame] | 157 | static struct be_mcc_compl *be_mcc_compl_get(struct be_adapter *adapter) |
Sathya Perla | 5fb379e | 2009-06-18 00:02:59 +0000 | [diff] [blame] | 158 | { |
Sathya Perla | 8788fdc | 2009-07-27 22:52:03 +0000 | [diff] [blame] | 159 | struct be_queue_info *mcc_cq = &adapter->mcc_obj.cq; |
Sathya Perla | efd2e40 | 2009-07-27 22:53:10 +0000 | [diff] [blame] | 160 | struct be_mcc_compl *compl = queue_tail_node(mcc_cq); |
Sathya Perla | 5fb379e | 2009-06-18 00:02:59 +0000 | [diff] [blame] | 161 | |
| 162 | if (be_mcc_compl_is_new(compl)) { |
| 163 | queue_tail_inc(mcc_cq); |
| 164 | return compl; |
| 165 | } |
| 166 | return NULL; |
| 167 | } |
| 168 | |
Sathya Perla | 7a1e9b2 | 2010-02-17 01:35:11 +0000 | [diff] [blame] | 169 | void be_async_mcc_enable(struct be_adapter *adapter) |
| 170 | { |
| 171 | spin_lock_bh(&adapter->mcc_cq_lock); |
| 172 | |
| 173 | be_cq_notify(adapter, adapter->mcc_obj.cq.id, true, 0); |
| 174 | adapter->mcc_obj.rearm_cq = true; |
| 175 | |
| 176 | spin_unlock_bh(&adapter->mcc_cq_lock); |
| 177 | } |
| 178 | |
| 179 | void be_async_mcc_disable(struct be_adapter *adapter) |
| 180 | { |
| 181 | adapter->mcc_obj.rearm_cq = false; |
| 182 | } |
| 183 | |
Sathya Perla | f31e50a | 2010-03-02 03:56:39 -0800 | [diff] [blame] | 184 | int be_process_mcc(struct be_adapter *adapter, int *status) |
Sathya Perla | 5fb379e | 2009-06-18 00:02:59 +0000 | [diff] [blame] | 185 | { |
Sathya Perla | efd2e40 | 2009-07-27 22:53:10 +0000 | [diff] [blame] | 186 | struct be_mcc_compl *compl; |
Sathya Perla | f31e50a | 2010-03-02 03:56:39 -0800 | [diff] [blame] | 187 | int num = 0; |
Sathya Perla | 7a1e9b2 | 2010-02-17 01:35:11 +0000 | [diff] [blame] | 188 | struct be_mcc_obj *mcc_obj = &adapter->mcc_obj; |
Sathya Perla | 5fb379e | 2009-06-18 00:02:59 +0000 | [diff] [blame] | 189 | |
Sathya Perla | 8788fdc | 2009-07-27 22:52:03 +0000 | [diff] [blame] | 190 | spin_lock_bh(&adapter->mcc_cq_lock); |
| 191 | while ((compl = be_mcc_compl_get(adapter))) { |
Sathya Perla | a8f447b | 2009-06-18 00:10:27 +0000 | [diff] [blame] | 192 | if (compl->flags & CQE_FLAGS_ASYNC_MASK) { |
| 193 | /* Interpret flags as an async trailer */ |
Ajit Khaparde | 323f30b | 2010-09-03 06:24:13 +0000 | [diff] [blame] | 194 | if (is_link_state_evt(compl->flags)) |
| 195 | be_async_link_state_process(adapter, |
Sathya Perla | a8f447b | 2009-06-18 00:10:27 +0000 | [diff] [blame] | 196 | (struct be_async_event_link_state *) compl); |
Somnath Kotur | cc4ce02 | 2010-10-21 07:11:14 -0700 | [diff] [blame] | 197 | else if (is_grp5_evt(compl->flags)) |
| 198 | be_async_grp5_evt_process(adapter, |
| 199 | compl->flags, compl); |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 200 | } else if (compl->flags & CQE_FLAGS_COMPLETED_MASK) { |
Sathya Perla | f31e50a | 2010-03-02 03:56:39 -0800 | [diff] [blame] | 201 | *status = be_mcc_compl_process(adapter, compl); |
Sathya Perla | 7a1e9b2 | 2010-02-17 01:35:11 +0000 | [diff] [blame] | 202 | atomic_dec(&mcc_obj->q.used); |
Sathya Perla | 5fb379e | 2009-06-18 00:02:59 +0000 | [diff] [blame] | 203 | } |
| 204 | be_mcc_compl_use(compl); |
| 205 | num++; |
| 206 | } |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 207 | |
Sathya Perla | 8788fdc | 2009-07-27 22:52:03 +0000 | [diff] [blame] | 208 | spin_unlock_bh(&adapter->mcc_cq_lock); |
Sathya Perla | f31e50a | 2010-03-02 03:56:39 -0800 | [diff] [blame] | 209 | return num; |
Sathya Perla | 5fb379e | 2009-06-18 00:02:59 +0000 | [diff] [blame] | 210 | } |
| 211 | |
Sathya Perla | 6ac7b68 | 2009-06-18 00:05:54 +0000 | [diff] [blame] | 212 | /* Wait till no more pending mcc requests are present */ |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 213 | static int be_mcc_wait_compl(struct be_adapter *adapter) |
Sathya Perla | 6ac7b68 | 2009-06-18 00:05:54 +0000 | [diff] [blame] | 214 | { |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 215 | #define mcc_timeout 120000 /* 12s timeout */ |
Sathya Perla | f31e50a | 2010-03-02 03:56:39 -0800 | [diff] [blame] | 216 | int i, num, status = 0; |
| 217 | struct be_mcc_obj *mcc_obj = &adapter->mcc_obj; |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 218 | |
Sathya Perla | f31e50a | 2010-03-02 03:56:39 -0800 | [diff] [blame] | 219 | for (i = 0; i < mcc_timeout; i++) { |
| 220 | num = be_process_mcc(adapter, &status); |
| 221 | if (num) |
| 222 | be_cq_notify(adapter, mcc_obj->cq.id, |
| 223 | mcc_obj->rearm_cq, num); |
| 224 | |
| 225 | if (atomic_read(&mcc_obj->q.used) == 0) |
Sathya Perla | 6ac7b68 | 2009-06-18 00:05:54 +0000 | [diff] [blame] | 226 | break; |
| 227 | udelay(100); |
| 228 | } |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 229 | if (i == mcc_timeout) { |
Sathya Perla | 5f0b849 | 2009-07-27 22:52:56 +0000 | [diff] [blame] | 230 | dev_err(&adapter->pdev->dev, "mccq poll timed out\n"); |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 231 | return -1; |
| 232 | } |
Sathya Perla | f31e50a | 2010-03-02 03:56:39 -0800 | [diff] [blame] | 233 | return status; |
Sathya Perla | 6ac7b68 | 2009-06-18 00:05:54 +0000 | [diff] [blame] | 234 | } |
| 235 | |
| 236 | /* Notify MCC requests and wait for completion */ |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 237 | static int be_mcc_notify_wait(struct be_adapter *adapter) |
Sathya Perla | 6ac7b68 | 2009-06-18 00:05:54 +0000 | [diff] [blame] | 238 | { |
Sathya Perla | 8788fdc | 2009-07-27 22:52:03 +0000 | [diff] [blame] | 239 | be_mcc_notify(adapter); |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 240 | return be_mcc_wait_compl(adapter); |
Sathya Perla | 6ac7b68 | 2009-06-18 00:05:54 +0000 | [diff] [blame] | 241 | } |
| 242 | |
Sathya Perla | 5f0b849 | 2009-07-27 22:52:56 +0000 | [diff] [blame] | 243 | static int be_mbox_db_ready_wait(struct be_adapter *adapter, void __iomem *db) |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 244 | { |
Sathya Perla | f25b03a | 2010-05-30 23:34:14 +0000 | [diff] [blame] | 245 | int msecs = 0; |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 246 | u32 ready; |
| 247 | |
| 248 | do { |
Sathya Perla | cf58847 | 2010-02-14 21:22:01 +0000 | [diff] [blame] | 249 | ready = ioread32(db); |
| 250 | if (ready == 0xffffffff) { |
| 251 | dev_err(&adapter->pdev->dev, |
| 252 | "pci slot disconnected\n"); |
| 253 | return -1; |
| 254 | } |
| 255 | |
| 256 | ready &= MPU_MAILBOX_DB_RDY_MASK; |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 257 | if (ready) |
| 258 | break; |
| 259 | |
Sathya Perla | f25b03a | 2010-05-30 23:34:14 +0000 | [diff] [blame] | 260 | if (msecs > 4000) { |
Sathya Perla | 5f0b849 | 2009-07-27 22:52:56 +0000 | [diff] [blame] | 261 | dev_err(&adapter->pdev->dev, "mbox poll timed out\n"); |
Ajit Khaparde | d053de9 | 2010-09-03 06:23:30 +0000 | [diff] [blame] | 262 | be_detect_dump_ue(adapter); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 263 | return -1; |
| 264 | } |
| 265 | |
Sathya Perla | f25b03a | 2010-05-30 23:34:14 +0000 | [diff] [blame] | 266 | set_current_state(TASK_INTERRUPTIBLE); |
| 267 | schedule_timeout(msecs_to_jiffies(1)); |
| 268 | msecs++; |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 269 | } while (true); |
| 270 | |
| 271 | return 0; |
| 272 | } |
| 273 | |
| 274 | /* |
| 275 | * Insert the mailbox address into the doorbell in two steps |
Sathya Perla | 5fb379e | 2009-06-18 00:02:59 +0000 | [diff] [blame] | 276 | * Polls on the mbox doorbell till a command completion (or a timeout) occurs |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 277 | */ |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 278 | static int be_mbox_notify_wait(struct be_adapter *adapter) |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 279 | { |
| 280 | int status; |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 281 | u32 val = 0; |
Sathya Perla | 8788fdc | 2009-07-27 22:52:03 +0000 | [diff] [blame] | 282 | void __iomem *db = adapter->db + MPU_MAILBOX_DB_OFFSET; |
| 283 | struct be_dma_mem *mbox_mem = &adapter->mbox_mem; |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 284 | struct be_mcc_mailbox *mbox = mbox_mem->va; |
Sathya Perla | efd2e40 | 2009-07-27 22:53:10 +0000 | [diff] [blame] | 285 | struct be_mcc_compl *compl = &mbox->compl; |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 286 | |
Sathya Perla | cf58847 | 2010-02-14 21:22:01 +0000 | [diff] [blame] | 287 | /* wait for ready to be set */ |
| 288 | status = be_mbox_db_ready_wait(adapter, db); |
| 289 | if (status != 0) |
| 290 | return status; |
| 291 | |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 292 | val |= MPU_MAILBOX_DB_HI_MASK; |
| 293 | /* at bits 2 - 31 place mbox dma addr msb bits 34 - 63 */ |
| 294 | val |= (upper_32_bits(mbox_mem->dma) >> 2) << 2; |
| 295 | iowrite32(val, db); |
| 296 | |
| 297 | /* wait for ready to be set */ |
Sathya Perla | 5f0b849 | 2009-07-27 22:52:56 +0000 | [diff] [blame] | 298 | status = be_mbox_db_ready_wait(adapter, db); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 299 | if (status != 0) |
| 300 | return status; |
| 301 | |
| 302 | val = 0; |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 303 | /* at bits 2 - 31 place mbox dma addr lsb bits 4 - 33 */ |
| 304 | val |= (u32)(mbox_mem->dma >> 4) << 2; |
| 305 | iowrite32(val, db); |
| 306 | |
Sathya Perla | 5f0b849 | 2009-07-27 22:52:56 +0000 | [diff] [blame] | 307 | status = be_mbox_db_ready_wait(adapter, db); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 308 | if (status != 0) |
| 309 | return status; |
| 310 | |
Sathya Perla | 5fb379e | 2009-06-18 00:02:59 +0000 | [diff] [blame] | 311 | /* A cq entry has been made now */ |
Sathya Perla | efd2e40 | 2009-07-27 22:53:10 +0000 | [diff] [blame] | 312 | if (be_mcc_compl_is_new(compl)) { |
| 313 | status = be_mcc_compl_process(adapter, &mbox->compl); |
| 314 | be_mcc_compl_use(compl); |
Sathya Perla | 5fb379e | 2009-06-18 00:02:59 +0000 | [diff] [blame] | 315 | if (status) |
| 316 | return status; |
| 317 | } else { |
Sathya Perla | 5f0b849 | 2009-07-27 22:52:56 +0000 | [diff] [blame] | 318 | dev_err(&adapter->pdev->dev, "invalid mailbox completion\n"); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 319 | return -1; |
| 320 | } |
Sathya Perla | 5fb379e | 2009-06-18 00:02:59 +0000 | [diff] [blame] | 321 | return 0; |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 322 | } |
| 323 | |
Sathya Perla | 8788fdc | 2009-07-27 22:52:03 +0000 | [diff] [blame] | 324 | static int be_POST_stage_get(struct be_adapter *adapter, u16 *stage) |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 325 | { |
Sathya Perla | fe6d2a3 | 2010-11-21 23:25:50 +0000 | [diff] [blame] | 326 | u32 sem; |
| 327 | |
| 328 | if (lancer_chip(adapter)) |
| 329 | sem = ioread32(adapter->db + MPU_EP_SEMAPHORE_IF_TYPE2_OFFSET); |
| 330 | else |
| 331 | sem = ioread32(adapter->csr + MPU_EP_SEMAPHORE_OFFSET); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 332 | |
| 333 | *stage = sem & EP_SEMAPHORE_POST_STAGE_MASK; |
| 334 | if ((sem >> EP_SEMAPHORE_POST_ERR_SHIFT) & EP_SEMAPHORE_POST_ERR_MASK) |
| 335 | return -1; |
| 336 | else |
| 337 | return 0; |
| 338 | } |
| 339 | |
Sathya Perla | 8788fdc | 2009-07-27 22:52:03 +0000 | [diff] [blame] | 340 | int be_cmd_POST(struct be_adapter *adapter) |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 341 | { |
Sathya Perla | 43a04fdc | 2009-10-14 20:21:17 +0000 | [diff] [blame] | 342 | u16 stage; |
| 343 | int status, timeout = 0; |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 344 | |
Sathya Perla | 43a04fdc | 2009-10-14 20:21:17 +0000 | [diff] [blame] | 345 | do { |
| 346 | status = be_POST_stage_get(adapter, &stage); |
| 347 | if (status) { |
| 348 | dev_err(&adapter->pdev->dev, "POST error; stage=0x%x\n", |
| 349 | stage); |
| 350 | return -1; |
| 351 | } else if (stage != POST_STAGE_ARMFW_RDY) { |
| 352 | set_current_state(TASK_INTERRUPTIBLE); |
| 353 | schedule_timeout(2 * HZ); |
| 354 | timeout += 2; |
| 355 | } else { |
| 356 | return 0; |
| 357 | } |
Sathya Perla | d938a70 | 2010-05-26 00:33:43 -0700 | [diff] [blame] | 358 | } while (timeout < 40); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 359 | |
Sathya Perla | 43a04fdc | 2009-10-14 20:21:17 +0000 | [diff] [blame] | 360 | dev_err(&adapter->pdev->dev, "POST timeout; stage=0x%x\n", stage); |
| 361 | return -1; |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 362 | } |
| 363 | |
| 364 | static inline void *embedded_payload(struct be_mcc_wrb *wrb) |
| 365 | { |
| 366 | return wrb->payload.embedded_payload; |
| 367 | } |
| 368 | |
| 369 | static inline struct be_sge *nonembedded_sgl(struct be_mcc_wrb *wrb) |
| 370 | { |
| 371 | return &wrb->payload.sgl[0]; |
| 372 | } |
| 373 | |
| 374 | /* Don't touch the hdr after it's prepared */ |
| 375 | static void be_wrb_hdr_prepare(struct be_mcc_wrb *wrb, int payload_len, |
Ajit Khaparde | d744b44 | 2009-12-03 06:12:06 +0000 | [diff] [blame] | 376 | bool embedded, u8 sge_cnt, u32 opcode) |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 377 | { |
| 378 | if (embedded) |
| 379 | wrb->embedded |= MCC_WRB_EMBEDDED_MASK; |
| 380 | else |
| 381 | wrb->embedded |= (sge_cnt & MCC_WRB_SGE_CNT_MASK) << |
| 382 | MCC_WRB_SGE_CNT_SHIFT; |
| 383 | wrb->payload_length = payload_len; |
Ajit Khaparde | d744b44 | 2009-12-03 06:12:06 +0000 | [diff] [blame] | 384 | wrb->tag0 = opcode; |
Sathya Perla | fa4281b | 2010-01-21 22:51:36 +0000 | [diff] [blame] | 385 | be_dws_cpu_to_le(wrb, 8); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 386 | } |
| 387 | |
| 388 | /* Don't touch the hdr after it's prepared */ |
| 389 | static void be_cmd_hdr_prepare(struct be_cmd_req_hdr *req_hdr, |
| 390 | u8 subsystem, u8 opcode, int cmd_len) |
| 391 | { |
| 392 | req_hdr->opcode = opcode; |
| 393 | req_hdr->subsystem = subsystem; |
| 394 | req_hdr->request_length = cpu_to_le32(cmd_len - sizeof(*req_hdr)); |
Ajit Khaparde | 07793d3 | 2010-02-16 00:18:46 +0000 | [diff] [blame] | 395 | req_hdr->version = 0; |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 396 | } |
| 397 | |
| 398 | static void be_cmd_page_addrs_prepare(struct phys_addr *pages, u32 max_pages, |
| 399 | struct be_dma_mem *mem) |
| 400 | { |
| 401 | int i, buf_pages = min(PAGES_4K_SPANNED(mem->va, mem->size), max_pages); |
| 402 | u64 dma = (u64)mem->dma; |
| 403 | |
| 404 | for (i = 0; i < buf_pages; i++) { |
| 405 | pages[i].lo = cpu_to_le32(dma & 0xFFFFFFFF); |
| 406 | pages[i].hi = cpu_to_le32(upper_32_bits(dma)); |
| 407 | dma += PAGE_SIZE_4K; |
| 408 | } |
| 409 | } |
| 410 | |
| 411 | /* Converts interrupt delay in microseconds to multiplier value */ |
| 412 | static u32 eq_delay_to_mult(u32 usec_delay) |
| 413 | { |
| 414 | #define MAX_INTR_RATE 651042 |
| 415 | const u32 round = 10; |
| 416 | u32 multiplier; |
| 417 | |
| 418 | if (usec_delay == 0) |
| 419 | multiplier = 0; |
| 420 | else { |
| 421 | u32 interrupt_rate = 1000000 / usec_delay; |
| 422 | /* Max delay, corresponding to the lowest interrupt rate */ |
| 423 | if (interrupt_rate == 0) |
| 424 | multiplier = 1023; |
| 425 | else { |
| 426 | multiplier = (MAX_INTR_RATE - interrupt_rate) * round; |
| 427 | multiplier /= interrupt_rate; |
| 428 | /* Round the multiplier to the closest value.*/ |
| 429 | multiplier = (multiplier + round/2) / round; |
| 430 | multiplier = min(multiplier, (u32)1023); |
| 431 | } |
| 432 | } |
| 433 | return multiplier; |
| 434 | } |
| 435 | |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 436 | static inline struct be_mcc_wrb *wrb_from_mbox(struct be_adapter *adapter) |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 437 | { |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 438 | struct be_dma_mem *mbox_mem = &adapter->mbox_mem; |
| 439 | struct be_mcc_wrb *wrb |
| 440 | = &((struct be_mcc_mailbox *)(mbox_mem->va))->wrb; |
| 441 | memset(wrb, 0, sizeof(*wrb)); |
| 442 | return wrb; |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 443 | } |
| 444 | |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 445 | static struct be_mcc_wrb *wrb_from_mccq(struct be_adapter *adapter) |
Sathya Perla | 5fb379e | 2009-06-18 00:02:59 +0000 | [diff] [blame] | 446 | { |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 447 | struct be_queue_info *mccq = &adapter->mcc_obj.q; |
| 448 | struct be_mcc_wrb *wrb; |
| 449 | |
Sathya Perla | 713d0394 | 2009-11-22 22:02:45 +0000 | [diff] [blame] | 450 | if (atomic_read(&mccq->used) >= mccq->len) { |
| 451 | dev_err(&adapter->pdev->dev, "Out of MCCQ wrbs\n"); |
| 452 | return NULL; |
| 453 | } |
| 454 | |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 455 | wrb = queue_head_node(mccq); |
| 456 | queue_head_inc(mccq); |
| 457 | atomic_inc(&mccq->used); |
| 458 | memset(wrb, 0, sizeof(*wrb)); |
Sathya Perla | 5fb379e | 2009-06-18 00:02:59 +0000 | [diff] [blame] | 459 | return wrb; |
| 460 | } |
| 461 | |
Sathya Perla | 2243e2e | 2009-11-22 22:02:03 +0000 | [diff] [blame] | 462 | /* Tell fw we're about to start firing cmds by writing a |
| 463 | * special pattern across the wrb hdr; uses mbox |
| 464 | */ |
| 465 | int be_cmd_fw_init(struct be_adapter *adapter) |
| 466 | { |
| 467 | u8 *wrb; |
| 468 | int status; |
| 469 | |
Ivan Vecera | 2984961 | 2010-12-14 05:43:19 +0000 | [diff] [blame] | 470 | if (mutex_lock_interruptible(&adapter->mbox_lock)) |
| 471 | return -1; |
Sathya Perla | 2243e2e | 2009-11-22 22:02:03 +0000 | [diff] [blame] | 472 | |
| 473 | wrb = (u8 *)wrb_from_mbox(adapter); |
Sathya Perla | 359a972 | 2010-12-01 01:03:36 +0000 | [diff] [blame] | 474 | *wrb++ = 0xFF; |
| 475 | *wrb++ = 0x12; |
| 476 | *wrb++ = 0x34; |
| 477 | *wrb++ = 0xFF; |
| 478 | *wrb++ = 0xFF; |
| 479 | *wrb++ = 0x56; |
| 480 | *wrb++ = 0x78; |
| 481 | *wrb = 0xFF; |
Sathya Perla | 2243e2e | 2009-11-22 22:02:03 +0000 | [diff] [blame] | 482 | |
| 483 | status = be_mbox_notify_wait(adapter); |
| 484 | |
Ivan Vecera | 2984961 | 2010-12-14 05:43:19 +0000 | [diff] [blame] | 485 | mutex_unlock(&adapter->mbox_lock); |
Sathya Perla | 2243e2e | 2009-11-22 22:02:03 +0000 | [diff] [blame] | 486 | return status; |
| 487 | } |
| 488 | |
| 489 | /* Tell fw we're done with firing cmds by writing a |
| 490 | * special pattern across the wrb hdr; uses mbox |
| 491 | */ |
| 492 | int be_cmd_fw_clean(struct be_adapter *adapter) |
| 493 | { |
| 494 | u8 *wrb; |
| 495 | int status; |
| 496 | |
Sathya Perla | cf58847 | 2010-02-14 21:22:01 +0000 | [diff] [blame] | 497 | if (adapter->eeh_err) |
| 498 | return -EIO; |
| 499 | |
Ivan Vecera | 2984961 | 2010-12-14 05:43:19 +0000 | [diff] [blame] | 500 | if (mutex_lock_interruptible(&adapter->mbox_lock)) |
| 501 | return -1; |
Sathya Perla | 2243e2e | 2009-11-22 22:02:03 +0000 | [diff] [blame] | 502 | |
| 503 | wrb = (u8 *)wrb_from_mbox(adapter); |
| 504 | *wrb++ = 0xFF; |
| 505 | *wrb++ = 0xAA; |
| 506 | *wrb++ = 0xBB; |
| 507 | *wrb++ = 0xFF; |
| 508 | *wrb++ = 0xFF; |
| 509 | *wrb++ = 0xCC; |
| 510 | *wrb++ = 0xDD; |
| 511 | *wrb = 0xFF; |
| 512 | |
| 513 | status = be_mbox_notify_wait(adapter); |
| 514 | |
Ivan Vecera | 2984961 | 2010-12-14 05:43:19 +0000 | [diff] [blame] | 515 | mutex_unlock(&adapter->mbox_lock); |
Sathya Perla | 2243e2e | 2009-11-22 22:02:03 +0000 | [diff] [blame] | 516 | return status; |
| 517 | } |
Sathya Perla | 8788fdc | 2009-07-27 22:52:03 +0000 | [diff] [blame] | 518 | int be_cmd_eq_create(struct be_adapter *adapter, |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 519 | struct be_queue_info *eq, int eq_delay) |
| 520 | { |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 521 | struct be_mcc_wrb *wrb; |
| 522 | struct be_cmd_req_eq_create *req; |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 523 | struct be_dma_mem *q_mem = &eq->dma_mem; |
| 524 | int status; |
| 525 | |
Ivan Vecera | 2984961 | 2010-12-14 05:43:19 +0000 | [diff] [blame] | 526 | if (mutex_lock_interruptible(&adapter->mbox_lock)) |
| 527 | return -1; |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 528 | |
| 529 | wrb = wrb_from_mbox(adapter); |
| 530 | req = embedded_payload(wrb); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 531 | |
Ajit Khaparde | d744b44 | 2009-12-03 06:12:06 +0000 | [diff] [blame] | 532 | be_wrb_hdr_prepare(wrb, sizeof(*req), true, 0, OPCODE_COMMON_EQ_CREATE); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 533 | |
| 534 | be_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, |
| 535 | OPCODE_COMMON_EQ_CREATE, sizeof(*req)); |
| 536 | |
| 537 | req->num_pages = cpu_to_le16(PAGES_4K_SPANNED(q_mem->va, q_mem->size)); |
| 538 | |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 539 | AMAP_SET_BITS(struct amap_eq_context, valid, req->context, 1); |
| 540 | /* 4byte eqe*/ |
| 541 | AMAP_SET_BITS(struct amap_eq_context, size, req->context, 0); |
| 542 | AMAP_SET_BITS(struct amap_eq_context, count, req->context, |
| 543 | __ilog2_u32(eq->len/256)); |
| 544 | AMAP_SET_BITS(struct amap_eq_context, delaymult, req->context, |
| 545 | eq_delay_to_mult(eq_delay)); |
| 546 | be_dws_cpu_to_le(req->context, sizeof(req->context)); |
| 547 | |
| 548 | be_cmd_page_addrs_prepare(req->pages, ARRAY_SIZE(req->pages), q_mem); |
| 549 | |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 550 | status = be_mbox_notify_wait(adapter); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 551 | if (!status) { |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 552 | struct be_cmd_resp_eq_create *resp = embedded_payload(wrb); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 553 | eq->id = le16_to_cpu(resp->eq_id); |
| 554 | eq->created = true; |
| 555 | } |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 556 | |
Ivan Vecera | 2984961 | 2010-12-14 05:43:19 +0000 | [diff] [blame] | 557 | mutex_unlock(&adapter->mbox_lock); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 558 | return status; |
| 559 | } |
| 560 | |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 561 | /* Uses mbox */ |
Sathya Perla | 8788fdc | 2009-07-27 22:52:03 +0000 | [diff] [blame] | 562 | int be_cmd_mac_addr_query(struct be_adapter *adapter, u8 *mac_addr, |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 563 | u8 type, bool permanent, u32 if_handle) |
| 564 | { |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 565 | struct be_mcc_wrb *wrb; |
| 566 | struct be_cmd_req_mac_query *req; |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 567 | int status; |
| 568 | |
Ivan Vecera | 2984961 | 2010-12-14 05:43:19 +0000 | [diff] [blame] | 569 | if (mutex_lock_interruptible(&adapter->mbox_lock)) |
| 570 | return -1; |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 571 | |
| 572 | wrb = wrb_from_mbox(adapter); |
| 573 | req = embedded_payload(wrb); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 574 | |
Ajit Khaparde | d744b44 | 2009-12-03 06:12:06 +0000 | [diff] [blame] | 575 | be_wrb_hdr_prepare(wrb, sizeof(*req), true, 0, |
| 576 | OPCODE_COMMON_NTWK_MAC_QUERY); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 577 | |
| 578 | be_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, |
| 579 | OPCODE_COMMON_NTWK_MAC_QUERY, sizeof(*req)); |
| 580 | |
| 581 | req->type = type; |
| 582 | if (permanent) { |
| 583 | req->permanent = 1; |
| 584 | } else { |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 585 | req->if_id = cpu_to_le16((u16) if_handle); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 586 | req->permanent = 0; |
| 587 | } |
| 588 | |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 589 | status = be_mbox_notify_wait(adapter); |
| 590 | if (!status) { |
| 591 | struct be_cmd_resp_mac_query *resp = embedded_payload(wrb); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 592 | memcpy(mac_addr, resp->mac.addr, ETH_ALEN); |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 593 | } |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 594 | |
Ivan Vecera | 2984961 | 2010-12-14 05:43:19 +0000 | [diff] [blame] | 595 | mutex_unlock(&adapter->mbox_lock); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 596 | return status; |
| 597 | } |
| 598 | |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 599 | /* Uses synchronous MCCQ */ |
Sathya Perla | 8788fdc | 2009-07-27 22:52:03 +0000 | [diff] [blame] | 600 | int be_cmd_pmac_add(struct be_adapter *adapter, u8 *mac_addr, |
Ajit Khaparde | f8617e0 | 2011-02-11 13:36:37 +0000 | [diff] [blame^] | 601 | u32 if_id, u32 *pmac_id, u32 domain) |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 602 | { |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 603 | struct be_mcc_wrb *wrb; |
| 604 | struct be_cmd_req_pmac_add *req; |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 605 | int status; |
| 606 | |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 607 | spin_lock_bh(&adapter->mcc_lock); |
| 608 | |
| 609 | wrb = wrb_from_mccq(adapter); |
Sathya Perla | 713d0394 | 2009-11-22 22:02:45 +0000 | [diff] [blame] | 610 | if (!wrb) { |
| 611 | status = -EBUSY; |
| 612 | goto err; |
| 613 | } |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 614 | req = embedded_payload(wrb); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 615 | |
Ajit Khaparde | d744b44 | 2009-12-03 06:12:06 +0000 | [diff] [blame] | 616 | be_wrb_hdr_prepare(wrb, sizeof(*req), true, 0, |
| 617 | OPCODE_COMMON_NTWK_PMAC_ADD); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 618 | |
| 619 | be_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, |
| 620 | OPCODE_COMMON_NTWK_PMAC_ADD, sizeof(*req)); |
| 621 | |
Ajit Khaparde | f8617e0 | 2011-02-11 13:36:37 +0000 | [diff] [blame^] | 622 | req->hdr.domain = domain; |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 623 | req->if_id = cpu_to_le32(if_id); |
| 624 | memcpy(req->mac_address, mac_addr, ETH_ALEN); |
| 625 | |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 626 | status = be_mcc_notify_wait(adapter); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 627 | if (!status) { |
| 628 | struct be_cmd_resp_pmac_add *resp = embedded_payload(wrb); |
| 629 | *pmac_id = le32_to_cpu(resp->pmac_id); |
| 630 | } |
| 631 | |
Sathya Perla | 713d0394 | 2009-11-22 22:02:45 +0000 | [diff] [blame] | 632 | err: |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 633 | spin_unlock_bh(&adapter->mcc_lock); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 634 | return status; |
| 635 | } |
| 636 | |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 637 | /* Uses synchronous MCCQ */ |
Ajit Khaparde | f8617e0 | 2011-02-11 13:36:37 +0000 | [diff] [blame^] | 638 | int be_cmd_pmac_del(struct be_adapter *adapter, u32 if_id, u32 pmac_id, u32 dom) |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 639 | { |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 640 | struct be_mcc_wrb *wrb; |
| 641 | struct be_cmd_req_pmac_del *req; |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 642 | int status; |
| 643 | |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 644 | spin_lock_bh(&adapter->mcc_lock); |
| 645 | |
| 646 | wrb = wrb_from_mccq(adapter); |
Sathya Perla | 713d0394 | 2009-11-22 22:02:45 +0000 | [diff] [blame] | 647 | if (!wrb) { |
| 648 | status = -EBUSY; |
| 649 | goto err; |
| 650 | } |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 651 | req = embedded_payload(wrb); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 652 | |
Ajit Khaparde | d744b44 | 2009-12-03 06:12:06 +0000 | [diff] [blame] | 653 | be_wrb_hdr_prepare(wrb, sizeof(*req), true, 0, |
| 654 | OPCODE_COMMON_NTWK_PMAC_DEL); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 655 | |
| 656 | be_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, |
| 657 | OPCODE_COMMON_NTWK_PMAC_DEL, sizeof(*req)); |
| 658 | |
Ajit Khaparde | f8617e0 | 2011-02-11 13:36:37 +0000 | [diff] [blame^] | 659 | req->hdr.domain = dom; |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 660 | req->if_id = cpu_to_le32(if_id); |
| 661 | req->pmac_id = cpu_to_le32(pmac_id); |
| 662 | |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 663 | status = be_mcc_notify_wait(adapter); |
| 664 | |
Sathya Perla | 713d0394 | 2009-11-22 22:02:45 +0000 | [diff] [blame] | 665 | err: |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 666 | spin_unlock_bh(&adapter->mcc_lock); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 667 | return status; |
| 668 | } |
| 669 | |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 670 | /* Uses Mbox */ |
Sathya Perla | 8788fdc | 2009-07-27 22:52:03 +0000 | [diff] [blame] | 671 | int be_cmd_cq_create(struct be_adapter *adapter, |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 672 | struct be_queue_info *cq, struct be_queue_info *eq, |
| 673 | bool sol_evts, bool no_delay, int coalesce_wm) |
| 674 | { |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 675 | struct be_mcc_wrb *wrb; |
| 676 | struct be_cmd_req_cq_create *req; |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 677 | struct be_dma_mem *q_mem = &cq->dma_mem; |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 678 | void *ctxt; |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 679 | int status; |
| 680 | |
Ivan Vecera | 2984961 | 2010-12-14 05:43:19 +0000 | [diff] [blame] | 681 | if (mutex_lock_interruptible(&adapter->mbox_lock)) |
| 682 | return -1; |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 683 | |
| 684 | wrb = wrb_from_mbox(adapter); |
| 685 | req = embedded_payload(wrb); |
| 686 | ctxt = &req->context; |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 687 | |
Ajit Khaparde | d744b44 | 2009-12-03 06:12:06 +0000 | [diff] [blame] | 688 | be_wrb_hdr_prepare(wrb, sizeof(*req), true, 0, |
| 689 | OPCODE_COMMON_CQ_CREATE); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 690 | |
| 691 | be_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, |
| 692 | OPCODE_COMMON_CQ_CREATE, sizeof(*req)); |
| 693 | |
| 694 | req->num_pages = cpu_to_le16(PAGES_4K_SPANNED(q_mem->va, q_mem->size)); |
Sathya Perla | fe6d2a3 | 2010-11-21 23:25:50 +0000 | [diff] [blame] | 695 | if (lancer_chip(adapter)) { |
| 696 | req->hdr.version = 1; |
| 697 | req->page_size = 1; /* 1 for 4K */ |
| 698 | AMAP_SET_BITS(struct amap_cq_context_lancer, coalescwm, ctxt, |
| 699 | coalesce_wm); |
| 700 | AMAP_SET_BITS(struct amap_cq_context_lancer, nodelay, ctxt, |
| 701 | no_delay); |
| 702 | AMAP_SET_BITS(struct amap_cq_context_lancer, count, ctxt, |
| 703 | __ilog2_u32(cq->len/256)); |
| 704 | AMAP_SET_BITS(struct amap_cq_context_lancer, valid, ctxt, 1); |
| 705 | AMAP_SET_BITS(struct amap_cq_context_lancer, eventable, |
| 706 | ctxt, 1); |
| 707 | AMAP_SET_BITS(struct amap_cq_context_lancer, eqid, |
| 708 | ctxt, eq->id); |
| 709 | AMAP_SET_BITS(struct amap_cq_context_lancer, armed, ctxt, 1); |
| 710 | } else { |
| 711 | AMAP_SET_BITS(struct amap_cq_context_be, coalescwm, ctxt, |
| 712 | coalesce_wm); |
| 713 | AMAP_SET_BITS(struct amap_cq_context_be, nodelay, |
| 714 | ctxt, no_delay); |
| 715 | AMAP_SET_BITS(struct amap_cq_context_be, count, ctxt, |
| 716 | __ilog2_u32(cq->len/256)); |
| 717 | AMAP_SET_BITS(struct amap_cq_context_be, valid, ctxt, 1); |
| 718 | AMAP_SET_BITS(struct amap_cq_context_be, solevent, |
| 719 | ctxt, sol_evts); |
| 720 | AMAP_SET_BITS(struct amap_cq_context_be, eventable, ctxt, 1); |
| 721 | AMAP_SET_BITS(struct amap_cq_context_be, eqid, ctxt, eq->id); |
| 722 | AMAP_SET_BITS(struct amap_cq_context_be, armed, ctxt, 1); |
| 723 | } |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 724 | |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 725 | be_dws_cpu_to_le(ctxt, sizeof(req->context)); |
| 726 | |
| 727 | be_cmd_page_addrs_prepare(req->pages, ARRAY_SIZE(req->pages), q_mem); |
| 728 | |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 729 | status = be_mbox_notify_wait(adapter); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 730 | if (!status) { |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 731 | struct be_cmd_resp_cq_create *resp = embedded_payload(wrb); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 732 | cq->id = le16_to_cpu(resp->cq_id); |
| 733 | cq->created = true; |
| 734 | } |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 735 | |
Ivan Vecera | 2984961 | 2010-12-14 05:43:19 +0000 | [diff] [blame] | 736 | mutex_unlock(&adapter->mbox_lock); |
Sathya Perla | 5fb379e | 2009-06-18 00:02:59 +0000 | [diff] [blame] | 737 | |
| 738 | return status; |
| 739 | } |
| 740 | |
| 741 | static u32 be_encoded_q_len(int q_len) |
| 742 | { |
| 743 | u32 len_encoded = fls(q_len); /* log2(len) + 1 */ |
| 744 | if (len_encoded == 16) |
| 745 | len_encoded = 0; |
| 746 | return len_encoded; |
| 747 | } |
| 748 | |
Sathya Perla | 8788fdc | 2009-07-27 22:52:03 +0000 | [diff] [blame] | 749 | int be_cmd_mccq_create(struct be_adapter *adapter, |
Sathya Perla | 5fb379e | 2009-06-18 00:02:59 +0000 | [diff] [blame] | 750 | struct be_queue_info *mccq, |
| 751 | struct be_queue_info *cq) |
| 752 | { |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 753 | struct be_mcc_wrb *wrb; |
| 754 | struct be_cmd_req_mcc_create *req; |
Sathya Perla | 5fb379e | 2009-06-18 00:02:59 +0000 | [diff] [blame] | 755 | struct be_dma_mem *q_mem = &mccq->dma_mem; |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 756 | void *ctxt; |
Sathya Perla | 5fb379e | 2009-06-18 00:02:59 +0000 | [diff] [blame] | 757 | int status; |
| 758 | |
Ivan Vecera | 2984961 | 2010-12-14 05:43:19 +0000 | [diff] [blame] | 759 | if (mutex_lock_interruptible(&adapter->mbox_lock)) |
| 760 | return -1; |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 761 | |
| 762 | wrb = wrb_from_mbox(adapter); |
| 763 | req = embedded_payload(wrb); |
| 764 | ctxt = &req->context; |
Sathya Perla | 5fb379e | 2009-06-18 00:02:59 +0000 | [diff] [blame] | 765 | |
Ajit Khaparde | d744b44 | 2009-12-03 06:12:06 +0000 | [diff] [blame] | 766 | be_wrb_hdr_prepare(wrb, sizeof(*req), true, 0, |
Somnath Kotur | cc4ce02 | 2010-10-21 07:11:14 -0700 | [diff] [blame] | 767 | OPCODE_COMMON_MCC_CREATE_EXT); |
Sathya Perla | 5fb379e | 2009-06-18 00:02:59 +0000 | [diff] [blame] | 768 | |
| 769 | be_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, |
Somnath Kotur | cc4ce02 | 2010-10-21 07:11:14 -0700 | [diff] [blame] | 770 | OPCODE_COMMON_MCC_CREATE_EXT, sizeof(*req)); |
Sathya Perla | 5fb379e | 2009-06-18 00:02:59 +0000 | [diff] [blame] | 771 | |
Ajit Khaparde | d4a2ac3 | 2010-03-11 01:35:59 +0000 | [diff] [blame] | 772 | req->num_pages = cpu_to_le16(PAGES_4K_SPANNED(q_mem->va, q_mem->size)); |
Sathya Perla | fe6d2a3 | 2010-11-21 23:25:50 +0000 | [diff] [blame] | 773 | if (lancer_chip(adapter)) { |
| 774 | req->hdr.version = 1; |
| 775 | req->cq_id = cpu_to_le16(cq->id); |
Sathya Perla | 5fb379e | 2009-06-18 00:02:59 +0000 | [diff] [blame] | 776 | |
Sathya Perla | fe6d2a3 | 2010-11-21 23:25:50 +0000 | [diff] [blame] | 777 | AMAP_SET_BITS(struct amap_mcc_context_lancer, ring_size, ctxt, |
| 778 | be_encoded_q_len(mccq->len)); |
| 779 | AMAP_SET_BITS(struct amap_mcc_context_lancer, valid, ctxt, 1); |
| 780 | AMAP_SET_BITS(struct amap_mcc_context_lancer, async_cq_id, |
| 781 | ctxt, cq->id); |
| 782 | AMAP_SET_BITS(struct amap_mcc_context_lancer, async_cq_valid, |
| 783 | ctxt, 1); |
| 784 | |
| 785 | } else { |
| 786 | AMAP_SET_BITS(struct amap_mcc_context_be, valid, ctxt, 1); |
| 787 | AMAP_SET_BITS(struct amap_mcc_context_be, ring_size, ctxt, |
| 788 | be_encoded_q_len(mccq->len)); |
| 789 | AMAP_SET_BITS(struct amap_mcc_context_be, cq_id, ctxt, cq->id); |
| 790 | } |
| 791 | |
Somnath Kotur | cc4ce02 | 2010-10-21 07:11:14 -0700 | [diff] [blame] | 792 | /* Subscribe to Link State and Group 5 Events(bits 1 and 5 set) */ |
Sathya Perla | fe6d2a3 | 2010-11-21 23:25:50 +0000 | [diff] [blame] | 793 | req->async_event_bitmap[0] = cpu_to_le32(0x00000022); |
Sathya Perla | 5fb379e | 2009-06-18 00:02:59 +0000 | [diff] [blame] | 794 | be_dws_cpu_to_le(ctxt, sizeof(req->context)); |
| 795 | |
| 796 | be_cmd_page_addrs_prepare(req->pages, ARRAY_SIZE(req->pages), q_mem); |
| 797 | |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 798 | status = be_mbox_notify_wait(adapter); |
Sathya Perla | 5fb379e | 2009-06-18 00:02:59 +0000 | [diff] [blame] | 799 | if (!status) { |
| 800 | struct be_cmd_resp_mcc_create *resp = embedded_payload(wrb); |
| 801 | mccq->id = le16_to_cpu(resp->id); |
| 802 | mccq->created = true; |
| 803 | } |
Ivan Vecera | 2984961 | 2010-12-14 05:43:19 +0000 | [diff] [blame] | 804 | mutex_unlock(&adapter->mbox_lock); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 805 | |
| 806 | return status; |
| 807 | } |
| 808 | |
Sathya Perla | 8788fdc | 2009-07-27 22:52:03 +0000 | [diff] [blame] | 809 | int be_cmd_txq_create(struct be_adapter *adapter, |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 810 | struct be_queue_info *txq, |
| 811 | struct be_queue_info *cq) |
| 812 | { |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 813 | struct be_mcc_wrb *wrb; |
| 814 | struct be_cmd_req_eth_tx_create *req; |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 815 | struct be_dma_mem *q_mem = &txq->dma_mem; |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 816 | void *ctxt; |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 817 | int status; |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 818 | |
Ivan Vecera | 2984961 | 2010-12-14 05:43:19 +0000 | [diff] [blame] | 819 | if (mutex_lock_interruptible(&adapter->mbox_lock)) |
| 820 | return -1; |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 821 | |
| 822 | wrb = wrb_from_mbox(adapter); |
| 823 | req = embedded_payload(wrb); |
| 824 | ctxt = &req->context; |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 825 | |
Ajit Khaparde | d744b44 | 2009-12-03 06:12:06 +0000 | [diff] [blame] | 826 | be_wrb_hdr_prepare(wrb, sizeof(*req), true, 0, |
| 827 | OPCODE_ETH_TX_CREATE); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 828 | |
| 829 | be_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_ETH, OPCODE_ETH_TX_CREATE, |
| 830 | sizeof(*req)); |
| 831 | |
| 832 | req->num_pages = PAGES_4K_SPANNED(q_mem->va, q_mem->size); |
| 833 | req->ulp_num = BE_ULP1_NUM; |
| 834 | req->type = BE_ETH_TX_RING_TYPE_STANDARD; |
| 835 | |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 836 | AMAP_SET_BITS(struct amap_tx_context, tx_ring_size, ctxt, |
| 837 | be_encoded_q_len(txq->len)); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 838 | AMAP_SET_BITS(struct amap_tx_context, ctx_valid, ctxt, 1); |
| 839 | AMAP_SET_BITS(struct amap_tx_context, cq_id_send, ctxt, cq->id); |
| 840 | |
| 841 | be_dws_cpu_to_le(ctxt, sizeof(req->context)); |
| 842 | |
| 843 | be_cmd_page_addrs_prepare(req->pages, ARRAY_SIZE(req->pages), q_mem); |
| 844 | |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 845 | status = be_mbox_notify_wait(adapter); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 846 | if (!status) { |
| 847 | struct be_cmd_resp_eth_tx_create *resp = embedded_payload(wrb); |
| 848 | txq->id = le16_to_cpu(resp->cid); |
| 849 | txq->created = true; |
| 850 | } |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 851 | |
Ivan Vecera | 2984961 | 2010-12-14 05:43:19 +0000 | [diff] [blame] | 852 | mutex_unlock(&adapter->mbox_lock); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 853 | |
| 854 | return status; |
| 855 | } |
| 856 | |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 857 | /* Uses mbox */ |
Sathya Perla | 8788fdc | 2009-07-27 22:52:03 +0000 | [diff] [blame] | 858 | int be_cmd_rxq_create(struct be_adapter *adapter, |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 859 | struct be_queue_info *rxq, u16 cq_id, u16 frag_size, |
Sathya Perla | 3abcded | 2010-10-03 22:12:27 -0700 | [diff] [blame] | 860 | u16 max_frame_size, u32 if_id, u32 rss, u8 *rss_id) |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 861 | { |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 862 | struct be_mcc_wrb *wrb; |
| 863 | struct be_cmd_req_eth_rx_create *req; |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 864 | struct be_dma_mem *q_mem = &rxq->dma_mem; |
| 865 | int status; |
| 866 | |
Ivan Vecera | 2984961 | 2010-12-14 05:43:19 +0000 | [diff] [blame] | 867 | if (mutex_lock_interruptible(&adapter->mbox_lock)) |
| 868 | return -1; |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 869 | |
| 870 | wrb = wrb_from_mbox(adapter); |
| 871 | req = embedded_payload(wrb); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 872 | |
Ajit Khaparde | d744b44 | 2009-12-03 06:12:06 +0000 | [diff] [blame] | 873 | be_wrb_hdr_prepare(wrb, sizeof(*req), true, 0, |
| 874 | OPCODE_ETH_RX_CREATE); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 875 | |
| 876 | be_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_ETH, OPCODE_ETH_RX_CREATE, |
| 877 | sizeof(*req)); |
| 878 | |
| 879 | req->cq_id = cpu_to_le16(cq_id); |
| 880 | req->frag_size = fls(frag_size) - 1; |
| 881 | req->num_pages = 2; |
| 882 | be_cmd_page_addrs_prepare(req->pages, ARRAY_SIZE(req->pages), q_mem); |
| 883 | req->interface_id = cpu_to_le32(if_id); |
| 884 | req->max_frame_size = cpu_to_le16(max_frame_size); |
| 885 | req->rss_queue = cpu_to_le32(rss); |
| 886 | |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 887 | status = be_mbox_notify_wait(adapter); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 888 | if (!status) { |
| 889 | struct be_cmd_resp_eth_rx_create *resp = embedded_payload(wrb); |
| 890 | rxq->id = le16_to_cpu(resp->id); |
| 891 | rxq->created = true; |
Sathya Perla | 3abcded | 2010-10-03 22:12:27 -0700 | [diff] [blame] | 892 | *rss_id = resp->rss_id; |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 893 | } |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 894 | |
Ivan Vecera | 2984961 | 2010-12-14 05:43:19 +0000 | [diff] [blame] | 895 | mutex_unlock(&adapter->mbox_lock); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 896 | |
| 897 | return status; |
| 898 | } |
| 899 | |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 900 | /* Generic destroyer function for all types of queues |
| 901 | * Uses Mbox |
| 902 | */ |
Sathya Perla | 8788fdc | 2009-07-27 22:52:03 +0000 | [diff] [blame] | 903 | int be_cmd_q_destroy(struct be_adapter *adapter, struct be_queue_info *q, |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 904 | int queue_type) |
| 905 | { |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 906 | struct be_mcc_wrb *wrb; |
| 907 | struct be_cmd_req_q_destroy *req; |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 908 | u8 subsys = 0, opcode = 0; |
| 909 | int status; |
| 910 | |
Sathya Perla | cf58847 | 2010-02-14 21:22:01 +0000 | [diff] [blame] | 911 | if (adapter->eeh_err) |
| 912 | return -EIO; |
| 913 | |
Ivan Vecera | 2984961 | 2010-12-14 05:43:19 +0000 | [diff] [blame] | 914 | if (mutex_lock_interruptible(&adapter->mbox_lock)) |
| 915 | return -1; |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 916 | |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 917 | wrb = wrb_from_mbox(adapter); |
| 918 | req = embedded_payload(wrb); |
| 919 | |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 920 | switch (queue_type) { |
| 921 | case QTYPE_EQ: |
| 922 | subsys = CMD_SUBSYSTEM_COMMON; |
| 923 | opcode = OPCODE_COMMON_EQ_DESTROY; |
| 924 | break; |
| 925 | case QTYPE_CQ: |
| 926 | subsys = CMD_SUBSYSTEM_COMMON; |
| 927 | opcode = OPCODE_COMMON_CQ_DESTROY; |
| 928 | break; |
| 929 | case QTYPE_TXQ: |
| 930 | subsys = CMD_SUBSYSTEM_ETH; |
| 931 | opcode = OPCODE_ETH_TX_DESTROY; |
| 932 | break; |
| 933 | case QTYPE_RXQ: |
| 934 | subsys = CMD_SUBSYSTEM_ETH; |
| 935 | opcode = OPCODE_ETH_RX_DESTROY; |
| 936 | break; |
Sathya Perla | 5fb379e | 2009-06-18 00:02:59 +0000 | [diff] [blame] | 937 | case QTYPE_MCCQ: |
| 938 | subsys = CMD_SUBSYSTEM_COMMON; |
| 939 | opcode = OPCODE_COMMON_MCC_DESTROY; |
| 940 | break; |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 941 | default: |
Sathya Perla | 5f0b849 | 2009-07-27 22:52:56 +0000 | [diff] [blame] | 942 | BUG(); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 943 | } |
Ajit Khaparde | d744b44 | 2009-12-03 06:12:06 +0000 | [diff] [blame] | 944 | |
| 945 | be_wrb_hdr_prepare(wrb, sizeof(*req), true, 0, opcode); |
| 946 | |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 947 | be_cmd_hdr_prepare(&req->hdr, subsys, opcode, sizeof(*req)); |
| 948 | req->id = cpu_to_le16(q->id); |
| 949 | |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 950 | status = be_mbox_notify_wait(adapter); |
Sathya Perla | 5f0b849 | 2009-07-27 22:52:56 +0000 | [diff] [blame] | 951 | |
Ivan Vecera | 2984961 | 2010-12-14 05:43:19 +0000 | [diff] [blame] | 952 | mutex_unlock(&adapter->mbox_lock); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 953 | |
| 954 | return status; |
| 955 | } |
| 956 | |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 957 | /* Create an rx filtering policy configuration on an i/f |
| 958 | * Uses mbox |
| 959 | */ |
Sathya Perla | 73d540f | 2009-10-14 20:20:42 +0000 | [diff] [blame] | 960 | int be_cmd_if_create(struct be_adapter *adapter, u32 cap_flags, u32 en_flags, |
Sarveshwar Bandi | ba343c7 | 2010-03-31 02:56:12 +0000 | [diff] [blame] | 961 | u8 *mac, bool pmac_invalid, u32 *if_handle, u32 *pmac_id, |
| 962 | u32 domain) |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 963 | { |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 964 | struct be_mcc_wrb *wrb; |
| 965 | struct be_cmd_req_if_create *req; |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 966 | int status; |
| 967 | |
Ivan Vecera | 2984961 | 2010-12-14 05:43:19 +0000 | [diff] [blame] | 968 | if (mutex_lock_interruptible(&adapter->mbox_lock)) |
| 969 | return -1; |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 970 | |
| 971 | wrb = wrb_from_mbox(adapter); |
| 972 | req = embedded_payload(wrb); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 973 | |
Ajit Khaparde | d744b44 | 2009-12-03 06:12:06 +0000 | [diff] [blame] | 974 | be_wrb_hdr_prepare(wrb, sizeof(*req), true, 0, |
| 975 | OPCODE_COMMON_NTWK_INTERFACE_CREATE); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 976 | |
| 977 | be_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, |
| 978 | OPCODE_COMMON_NTWK_INTERFACE_CREATE, sizeof(*req)); |
| 979 | |
Sarveshwar Bandi | ba343c7 | 2010-03-31 02:56:12 +0000 | [diff] [blame] | 980 | req->hdr.domain = domain; |
Sathya Perla | 73d540f | 2009-10-14 20:20:42 +0000 | [diff] [blame] | 981 | req->capability_flags = cpu_to_le32(cap_flags); |
| 982 | req->enable_flags = cpu_to_le32(en_flags); |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 983 | req->pmac_invalid = pmac_invalid; |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 984 | if (!pmac_invalid) |
| 985 | memcpy(req->mac_addr, mac, ETH_ALEN); |
| 986 | |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 987 | status = be_mbox_notify_wait(adapter); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 988 | if (!status) { |
| 989 | struct be_cmd_resp_if_create *resp = embedded_payload(wrb); |
| 990 | *if_handle = le32_to_cpu(resp->interface_id); |
| 991 | if (!pmac_invalid) |
| 992 | *pmac_id = le32_to_cpu(resp->pmac_id); |
| 993 | } |
| 994 | |
Ivan Vecera | 2984961 | 2010-12-14 05:43:19 +0000 | [diff] [blame] | 995 | mutex_unlock(&adapter->mbox_lock); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 996 | return status; |
| 997 | } |
| 998 | |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 999 | /* Uses mbox */ |
Ajit Khaparde | 658681f | 2011-02-11 13:34:46 +0000 | [diff] [blame] | 1000 | int be_cmd_if_destroy(struct be_adapter *adapter, u32 interface_id, u32 domain) |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1001 | { |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1002 | struct be_mcc_wrb *wrb; |
| 1003 | struct be_cmd_req_if_destroy *req; |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1004 | int status; |
| 1005 | |
Sathya Perla | cf58847 | 2010-02-14 21:22:01 +0000 | [diff] [blame] | 1006 | if (adapter->eeh_err) |
| 1007 | return -EIO; |
| 1008 | |
Ivan Vecera | 2984961 | 2010-12-14 05:43:19 +0000 | [diff] [blame] | 1009 | if (mutex_lock_interruptible(&adapter->mbox_lock)) |
| 1010 | return -1; |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1011 | |
| 1012 | wrb = wrb_from_mbox(adapter); |
| 1013 | req = embedded_payload(wrb); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1014 | |
Ajit Khaparde | d744b44 | 2009-12-03 06:12:06 +0000 | [diff] [blame] | 1015 | be_wrb_hdr_prepare(wrb, sizeof(*req), true, 0, |
| 1016 | OPCODE_COMMON_NTWK_INTERFACE_DESTROY); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1017 | |
| 1018 | be_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, |
| 1019 | OPCODE_COMMON_NTWK_INTERFACE_DESTROY, sizeof(*req)); |
| 1020 | |
Ajit Khaparde | 658681f | 2011-02-11 13:34:46 +0000 | [diff] [blame] | 1021 | req->hdr.domain = domain; |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1022 | req->interface_id = cpu_to_le32(interface_id); |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1023 | |
| 1024 | status = be_mbox_notify_wait(adapter); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1025 | |
Ivan Vecera | 2984961 | 2010-12-14 05:43:19 +0000 | [diff] [blame] | 1026 | mutex_unlock(&adapter->mbox_lock); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1027 | |
| 1028 | return status; |
| 1029 | } |
| 1030 | |
| 1031 | /* Get stats is a non embedded command: the request is not embedded inside |
| 1032 | * WRB but is a separate dma memory block |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1033 | * Uses asynchronous MCC |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1034 | */ |
Sathya Perla | 8788fdc | 2009-07-27 22:52:03 +0000 | [diff] [blame] | 1035 | int be_cmd_get_stats(struct be_adapter *adapter, struct be_dma_mem *nonemb_cmd) |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1036 | { |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1037 | struct be_mcc_wrb *wrb; |
| 1038 | struct be_cmd_req_get_stats *req; |
| 1039 | struct be_sge *sge; |
Sathya Perla | 713d0394 | 2009-11-22 22:02:45 +0000 | [diff] [blame] | 1040 | int status = 0; |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1041 | |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1042 | spin_lock_bh(&adapter->mcc_lock); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1043 | |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1044 | wrb = wrb_from_mccq(adapter); |
Sathya Perla | 713d0394 | 2009-11-22 22:02:45 +0000 | [diff] [blame] | 1045 | if (!wrb) { |
| 1046 | status = -EBUSY; |
| 1047 | goto err; |
| 1048 | } |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1049 | req = nonemb_cmd->va; |
| 1050 | sge = nonembedded_sgl(wrb); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1051 | |
Ajit Khaparde | d744b44 | 2009-12-03 06:12:06 +0000 | [diff] [blame] | 1052 | be_wrb_hdr_prepare(wrb, sizeof(*req), false, 1, |
| 1053 | OPCODE_ETH_GET_STATISTICS); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1054 | |
| 1055 | be_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_ETH, |
| 1056 | OPCODE_ETH_GET_STATISTICS, sizeof(*req)); |
| 1057 | sge->pa_hi = cpu_to_le32(upper_32_bits(nonemb_cmd->dma)); |
| 1058 | sge->pa_lo = cpu_to_le32(nonemb_cmd->dma & 0xFFFFFFFF); |
| 1059 | sge->len = cpu_to_le32(nonemb_cmd->size); |
| 1060 | |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1061 | be_mcc_notify(adapter); |
Ajit Khaparde | 0fc48c3 | 2010-07-29 06:18:58 +0000 | [diff] [blame] | 1062 | adapter->stats_ioctl_sent = true; |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1063 | |
Sathya Perla | 713d0394 | 2009-11-22 22:02:45 +0000 | [diff] [blame] | 1064 | err: |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1065 | spin_unlock_bh(&adapter->mcc_lock); |
Sathya Perla | 713d0394 | 2009-11-22 22:02:45 +0000 | [diff] [blame] | 1066 | return status; |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1067 | } |
| 1068 | |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1069 | /* Uses synchronous mcc */ |
Sathya Perla | 8788fdc | 2009-07-27 22:52:03 +0000 | [diff] [blame] | 1070 | int be_cmd_link_status_query(struct be_adapter *adapter, |
Sarveshwar Bandi | 0388f25 | 2009-10-28 04:15:20 -0700 | [diff] [blame] | 1071 | bool *link_up, u8 *mac_speed, u16 *link_speed) |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1072 | { |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1073 | struct be_mcc_wrb *wrb; |
| 1074 | struct be_cmd_req_link_status *req; |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1075 | int status; |
| 1076 | |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1077 | spin_lock_bh(&adapter->mcc_lock); |
| 1078 | |
| 1079 | wrb = wrb_from_mccq(adapter); |
Sathya Perla | 713d0394 | 2009-11-22 22:02:45 +0000 | [diff] [blame] | 1080 | if (!wrb) { |
| 1081 | status = -EBUSY; |
| 1082 | goto err; |
| 1083 | } |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1084 | req = embedded_payload(wrb); |
Sathya Perla | a8f447b | 2009-06-18 00:10:27 +0000 | [diff] [blame] | 1085 | |
| 1086 | *link_up = false; |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1087 | |
Ajit Khaparde | d744b44 | 2009-12-03 06:12:06 +0000 | [diff] [blame] | 1088 | be_wrb_hdr_prepare(wrb, sizeof(*req), true, 0, |
| 1089 | OPCODE_COMMON_NTWK_LINK_STATUS_QUERY); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1090 | |
| 1091 | be_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, |
| 1092 | OPCODE_COMMON_NTWK_LINK_STATUS_QUERY, sizeof(*req)); |
| 1093 | |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1094 | status = be_mcc_notify_wait(adapter); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1095 | if (!status) { |
| 1096 | struct be_cmd_resp_link_status *resp = embedded_payload(wrb); |
Sarveshwar Bandi | 0388f25 | 2009-10-28 04:15:20 -0700 | [diff] [blame] | 1097 | if (resp->mac_speed != PHY_LINK_SPEED_ZERO) { |
Sathya Perla | a8f447b | 2009-06-18 00:10:27 +0000 | [diff] [blame] | 1098 | *link_up = true; |
Sarveshwar Bandi | 0388f25 | 2009-10-28 04:15:20 -0700 | [diff] [blame] | 1099 | *link_speed = le16_to_cpu(resp->link_speed); |
| 1100 | *mac_speed = resp->mac_speed; |
| 1101 | } |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1102 | } |
| 1103 | |
Sathya Perla | 713d0394 | 2009-11-22 22:02:45 +0000 | [diff] [blame] | 1104 | err: |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1105 | spin_unlock_bh(&adapter->mcc_lock); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1106 | return status; |
| 1107 | } |
| 1108 | |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1109 | /* Uses Mbox */ |
Sathya Perla | 8788fdc | 2009-07-27 22:52:03 +0000 | [diff] [blame] | 1110 | int be_cmd_get_fw_ver(struct be_adapter *adapter, char *fw_ver) |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1111 | { |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1112 | struct be_mcc_wrb *wrb; |
| 1113 | struct be_cmd_req_get_fw_version *req; |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1114 | int status; |
| 1115 | |
Ivan Vecera | 2984961 | 2010-12-14 05:43:19 +0000 | [diff] [blame] | 1116 | if (mutex_lock_interruptible(&adapter->mbox_lock)) |
| 1117 | return -1; |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1118 | |
| 1119 | wrb = wrb_from_mbox(adapter); |
| 1120 | req = embedded_payload(wrb); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1121 | |
Ajit Khaparde | d744b44 | 2009-12-03 06:12:06 +0000 | [diff] [blame] | 1122 | be_wrb_hdr_prepare(wrb, sizeof(*req), true, 0, |
| 1123 | OPCODE_COMMON_GET_FW_VERSION); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1124 | |
| 1125 | be_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, |
| 1126 | OPCODE_COMMON_GET_FW_VERSION, sizeof(*req)); |
| 1127 | |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1128 | status = be_mbox_notify_wait(adapter); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1129 | if (!status) { |
| 1130 | struct be_cmd_resp_get_fw_version *resp = embedded_payload(wrb); |
| 1131 | strncpy(fw_ver, resp->firmware_version_string, FW_VER_LEN); |
| 1132 | } |
| 1133 | |
Ivan Vecera | 2984961 | 2010-12-14 05:43:19 +0000 | [diff] [blame] | 1134 | mutex_unlock(&adapter->mbox_lock); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1135 | return status; |
| 1136 | } |
| 1137 | |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1138 | /* set the EQ delay interval of an EQ to specified value |
| 1139 | * Uses async mcc |
| 1140 | */ |
Sathya Perla | 8788fdc | 2009-07-27 22:52:03 +0000 | [diff] [blame] | 1141 | int be_cmd_modify_eqd(struct be_adapter *adapter, u32 eq_id, u32 eqd) |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1142 | { |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1143 | struct be_mcc_wrb *wrb; |
| 1144 | struct be_cmd_req_modify_eq_delay *req; |
Sathya Perla | 713d0394 | 2009-11-22 22:02:45 +0000 | [diff] [blame] | 1145 | int status = 0; |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1146 | |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1147 | spin_lock_bh(&adapter->mcc_lock); |
| 1148 | |
| 1149 | wrb = wrb_from_mccq(adapter); |
Sathya Perla | 713d0394 | 2009-11-22 22:02:45 +0000 | [diff] [blame] | 1150 | if (!wrb) { |
| 1151 | status = -EBUSY; |
| 1152 | goto err; |
| 1153 | } |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1154 | req = embedded_payload(wrb); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1155 | |
Ajit Khaparde | d744b44 | 2009-12-03 06:12:06 +0000 | [diff] [blame] | 1156 | be_wrb_hdr_prepare(wrb, sizeof(*req), true, 0, |
| 1157 | OPCODE_COMMON_MODIFY_EQ_DELAY); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1158 | |
| 1159 | be_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, |
| 1160 | OPCODE_COMMON_MODIFY_EQ_DELAY, sizeof(*req)); |
| 1161 | |
| 1162 | req->num_eq = cpu_to_le32(1); |
| 1163 | req->delay[0].eq_id = cpu_to_le32(eq_id); |
| 1164 | req->delay[0].phase = 0; |
| 1165 | req->delay[0].delay_multiplier = cpu_to_le32(eqd); |
| 1166 | |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1167 | be_mcc_notify(adapter); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1168 | |
Sathya Perla | 713d0394 | 2009-11-22 22:02:45 +0000 | [diff] [blame] | 1169 | err: |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1170 | spin_unlock_bh(&adapter->mcc_lock); |
Sathya Perla | 713d0394 | 2009-11-22 22:02:45 +0000 | [diff] [blame] | 1171 | return status; |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1172 | } |
| 1173 | |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1174 | /* Uses sycnhronous mcc */ |
Sathya Perla | 8788fdc | 2009-07-27 22:52:03 +0000 | [diff] [blame] | 1175 | int be_cmd_vlan_config(struct be_adapter *adapter, u32 if_id, u16 *vtag_array, |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1176 | u32 num, bool untagged, bool promiscuous) |
| 1177 | { |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1178 | struct be_mcc_wrb *wrb; |
| 1179 | struct be_cmd_req_vlan_config *req; |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1180 | int status; |
| 1181 | |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1182 | spin_lock_bh(&adapter->mcc_lock); |
| 1183 | |
| 1184 | wrb = wrb_from_mccq(adapter); |
Sathya Perla | 713d0394 | 2009-11-22 22:02:45 +0000 | [diff] [blame] | 1185 | if (!wrb) { |
| 1186 | status = -EBUSY; |
| 1187 | goto err; |
| 1188 | } |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1189 | req = embedded_payload(wrb); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1190 | |
Ajit Khaparde | d744b44 | 2009-12-03 06:12:06 +0000 | [diff] [blame] | 1191 | be_wrb_hdr_prepare(wrb, sizeof(*req), true, 0, |
| 1192 | OPCODE_COMMON_NTWK_VLAN_CONFIG); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1193 | |
| 1194 | be_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, |
| 1195 | OPCODE_COMMON_NTWK_VLAN_CONFIG, sizeof(*req)); |
| 1196 | |
| 1197 | req->interface_id = if_id; |
| 1198 | req->promiscuous = promiscuous; |
| 1199 | req->untagged = untagged; |
| 1200 | req->num_vlan = num; |
| 1201 | if (!promiscuous) { |
| 1202 | memcpy(req->normal_vlan, vtag_array, |
| 1203 | req->num_vlan * sizeof(vtag_array[0])); |
| 1204 | } |
| 1205 | |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1206 | status = be_mcc_notify_wait(adapter); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1207 | |
Sathya Perla | 713d0394 | 2009-11-22 22:02:45 +0000 | [diff] [blame] | 1208 | err: |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1209 | spin_unlock_bh(&adapter->mcc_lock); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1210 | return status; |
| 1211 | } |
| 1212 | |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1213 | /* Uses MCC for this command as it may be called in BH context |
| 1214 | * Uses synchronous mcc |
| 1215 | */ |
Sathya Perla | 8788fdc | 2009-07-27 22:52:03 +0000 | [diff] [blame] | 1216 | int be_cmd_promiscuous_config(struct be_adapter *adapter, u8 port_num, bool en) |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1217 | { |
Sathya Perla | 6ac7b68 | 2009-06-18 00:05:54 +0000 | [diff] [blame] | 1218 | struct be_mcc_wrb *wrb; |
| 1219 | struct be_cmd_req_promiscuous_config *req; |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1220 | int status; |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1221 | |
Sathya Perla | 8788fdc | 2009-07-27 22:52:03 +0000 | [diff] [blame] | 1222 | spin_lock_bh(&adapter->mcc_lock); |
Sathya Perla | 6ac7b68 | 2009-06-18 00:05:54 +0000 | [diff] [blame] | 1223 | |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1224 | wrb = wrb_from_mccq(adapter); |
Sathya Perla | 713d0394 | 2009-11-22 22:02:45 +0000 | [diff] [blame] | 1225 | if (!wrb) { |
| 1226 | status = -EBUSY; |
| 1227 | goto err; |
| 1228 | } |
Sathya Perla | 6ac7b68 | 2009-06-18 00:05:54 +0000 | [diff] [blame] | 1229 | req = embedded_payload(wrb); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1230 | |
Ajit Khaparde | d744b44 | 2009-12-03 06:12:06 +0000 | [diff] [blame] | 1231 | be_wrb_hdr_prepare(wrb, sizeof(*req), true, 0, OPCODE_ETH_PROMISCUOUS); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1232 | |
| 1233 | be_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_ETH, |
| 1234 | OPCODE_ETH_PROMISCUOUS, sizeof(*req)); |
| 1235 | |
Sathya Perla | 69d7ce7 | 2010-04-11 22:35:27 +0000 | [diff] [blame] | 1236 | /* In FW versions X.102.149/X.101.487 and later, |
| 1237 | * the port setting associated only with the |
| 1238 | * issuing pci function will take effect |
| 1239 | */ |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1240 | if (port_num) |
| 1241 | req->port1_promiscuous = en; |
| 1242 | else |
| 1243 | req->port0_promiscuous = en; |
| 1244 | |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1245 | status = be_mcc_notify_wait(adapter); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1246 | |
Sathya Perla | 713d0394 | 2009-11-22 22:02:45 +0000 | [diff] [blame] | 1247 | err: |
Sathya Perla | 8788fdc | 2009-07-27 22:52:03 +0000 | [diff] [blame] | 1248 | spin_unlock_bh(&adapter->mcc_lock); |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1249 | return status; |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1250 | } |
| 1251 | |
Sathya Perla | 6ac7b68 | 2009-06-18 00:05:54 +0000 | [diff] [blame] | 1252 | /* |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1253 | * Uses MCC for this command as it may be called in BH context |
Sathya Perla | 6ac7b68 | 2009-06-18 00:05:54 +0000 | [diff] [blame] | 1254 | * (mc == NULL) => multicast promiscous |
| 1255 | */ |
Sathya Perla | 8788fdc | 2009-07-27 22:52:03 +0000 | [diff] [blame] | 1256 | int be_cmd_multicast_set(struct be_adapter *adapter, u32 if_id, |
Jiri Pirko | 0ddf477 | 2010-02-20 00:13:58 +0000 | [diff] [blame] | 1257 | struct net_device *netdev, struct be_dma_mem *mem) |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1258 | { |
Sathya Perla | 6ac7b68 | 2009-06-18 00:05:54 +0000 | [diff] [blame] | 1259 | struct be_mcc_wrb *wrb; |
Sathya Perla | e7b909a | 2009-11-22 22:01:10 +0000 | [diff] [blame] | 1260 | struct be_cmd_req_mcast_mac_config *req = mem->va; |
| 1261 | struct be_sge *sge; |
| 1262 | int status; |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1263 | |
Sathya Perla | 8788fdc | 2009-07-27 22:52:03 +0000 | [diff] [blame] | 1264 | spin_lock_bh(&adapter->mcc_lock); |
Sathya Perla | 6ac7b68 | 2009-06-18 00:05:54 +0000 | [diff] [blame] | 1265 | |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1266 | wrb = wrb_from_mccq(adapter); |
Sathya Perla | 713d0394 | 2009-11-22 22:02:45 +0000 | [diff] [blame] | 1267 | if (!wrb) { |
| 1268 | status = -EBUSY; |
| 1269 | goto err; |
| 1270 | } |
Sathya Perla | e7b909a | 2009-11-22 22:01:10 +0000 | [diff] [blame] | 1271 | sge = nonembedded_sgl(wrb); |
| 1272 | memset(req, 0, sizeof(*req)); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1273 | |
Ajit Khaparde | d744b44 | 2009-12-03 06:12:06 +0000 | [diff] [blame] | 1274 | be_wrb_hdr_prepare(wrb, sizeof(*req), false, 1, |
| 1275 | OPCODE_COMMON_NTWK_MULTICAST_SET); |
Sathya Perla | e7b909a | 2009-11-22 22:01:10 +0000 | [diff] [blame] | 1276 | sge->pa_hi = cpu_to_le32(upper_32_bits(mem->dma)); |
| 1277 | sge->pa_lo = cpu_to_le32(mem->dma & 0xFFFFFFFF); |
| 1278 | sge->len = cpu_to_le32(mem->size); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1279 | |
| 1280 | be_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, |
| 1281 | OPCODE_COMMON_NTWK_MULTICAST_SET, sizeof(*req)); |
| 1282 | |
| 1283 | req->interface_id = if_id; |
Jiri Pirko | 0ddf477 | 2010-02-20 00:13:58 +0000 | [diff] [blame] | 1284 | if (netdev) { |
Sathya Perla | 24307ee | 2009-06-18 00:09:25 +0000 | [diff] [blame] | 1285 | int i; |
Jiri Pirko | 22bedad | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 1286 | struct netdev_hw_addr *ha; |
Sathya Perla | 24307ee | 2009-06-18 00:09:25 +0000 | [diff] [blame] | 1287 | |
Jiri Pirko | 0ddf477 | 2010-02-20 00:13:58 +0000 | [diff] [blame] | 1288 | req->num_mac = cpu_to_le16(netdev_mc_count(netdev)); |
Sathya Perla | 24307ee | 2009-06-18 00:09:25 +0000 | [diff] [blame] | 1289 | |
Jiri Pirko | 0ddf477 | 2010-02-20 00:13:58 +0000 | [diff] [blame] | 1290 | i = 0; |
Jiri Pirko | 22bedad | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 1291 | netdev_for_each_mc_addr(ha, netdev) |
Joe Jin | 408cc29 | 2010-12-06 03:00:59 +0000 | [diff] [blame] | 1292 | memcpy(req->mac[i++].byte, ha->addr, ETH_ALEN); |
Sathya Perla | 24307ee | 2009-06-18 00:09:25 +0000 | [diff] [blame] | 1293 | } else { |
| 1294 | req->promiscuous = 1; |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1295 | } |
| 1296 | |
Sathya Perla | e7b909a | 2009-11-22 22:01:10 +0000 | [diff] [blame] | 1297 | status = be_mcc_notify_wait(adapter); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1298 | |
Sathya Perla | 713d0394 | 2009-11-22 22:02:45 +0000 | [diff] [blame] | 1299 | err: |
Sathya Perla | 8788fdc | 2009-07-27 22:52:03 +0000 | [diff] [blame] | 1300 | spin_unlock_bh(&adapter->mcc_lock); |
Sathya Perla | e7b909a | 2009-11-22 22:01:10 +0000 | [diff] [blame] | 1301 | return status; |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1302 | } |
| 1303 | |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1304 | /* Uses synchrounous mcc */ |
Sathya Perla | 8788fdc | 2009-07-27 22:52:03 +0000 | [diff] [blame] | 1305 | int be_cmd_set_flow_control(struct be_adapter *adapter, u32 tx_fc, u32 rx_fc) |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1306 | { |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1307 | struct be_mcc_wrb *wrb; |
| 1308 | struct be_cmd_req_set_flow_control *req; |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1309 | int status; |
| 1310 | |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1311 | spin_lock_bh(&adapter->mcc_lock); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1312 | |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1313 | wrb = wrb_from_mccq(adapter); |
Sathya Perla | 713d0394 | 2009-11-22 22:02:45 +0000 | [diff] [blame] | 1314 | if (!wrb) { |
| 1315 | status = -EBUSY; |
| 1316 | goto err; |
| 1317 | } |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1318 | req = embedded_payload(wrb); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1319 | |
Ajit Khaparde | d744b44 | 2009-12-03 06:12:06 +0000 | [diff] [blame] | 1320 | be_wrb_hdr_prepare(wrb, sizeof(*req), true, 0, |
| 1321 | OPCODE_COMMON_SET_FLOW_CONTROL); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1322 | |
| 1323 | be_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, |
| 1324 | OPCODE_COMMON_SET_FLOW_CONTROL, sizeof(*req)); |
| 1325 | |
| 1326 | req->tx_flow_control = cpu_to_le16((u16)tx_fc); |
| 1327 | req->rx_flow_control = cpu_to_le16((u16)rx_fc); |
| 1328 | |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1329 | status = be_mcc_notify_wait(adapter); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1330 | |
Sathya Perla | 713d0394 | 2009-11-22 22:02:45 +0000 | [diff] [blame] | 1331 | err: |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1332 | spin_unlock_bh(&adapter->mcc_lock); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1333 | return status; |
| 1334 | } |
| 1335 | |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1336 | /* Uses sycn mcc */ |
Sathya Perla | 8788fdc | 2009-07-27 22:52:03 +0000 | [diff] [blame] | 1337 | int be_cmd_get_flow_control(struct be_adapter *adapter, u32 *tx_fc, u32 *rx_fc) |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1338 | { |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1339 | struct be_mcc_wrb *wrb; |
| 1340 | struct be_cmd_req_get_flow_control *req; |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1341 | int status; |
| 1342 | |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1343 | spin_lock_bh(&adapter->mcc_lock); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1344 | |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1345 | wrb = wrb_from_mccq(adapter); |
Sathya Perla | 713d0394 | 2009-11-22 22:02:45 +0000 | [diff] [blame] | 1346 | if (!wrb) { |
| 1347 | status = -EBUSY; |
| 1348 | goto err; |
| 1349 | } |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1350 | req = embedded_payload(wrb); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1351 | |
Ajit Khaparde | d744b44 | 2009-12-03 06:12:06 +0000 | [diff] [blame] | 1352 | be_wrb_hdr_prepare(wrb, sizeof(*req), true, 0, |
| 1353 | OPCODE_COMMON_GET_FLOW_CONTROL); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1354 | |
| 1355 | be_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, |
| 1356 | OPCODE_COMMON_GET_FLOW_CONTROL, sizeof(*req)); |
| 1357 | |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1358 | status = be_mcc_notify_wait(adapter); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1359 | if (!status) { |
| 1360 | struct be_cmd_resp_get_flow_control *resp = |
| 1361 | embedded_payload(wrb); |
| 1362 | *tx_fc = le16_to_cpu(resp->tx_flow_control); |
| 1363 | *rx_fc = le16_to_cpu(resp->rx_flow_control); |
| 1364 | } |
| 1365 | |
Sathya Perla | 713d0394 | 2009-11-22 22:02:45 +0000 | [diff] [blame] | 1366 | err: |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1367 | spin_unlock_bh(&adapter->mcc_lock); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1368 | return status; |
| 1369 | } |
| 1370 | |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1371 | /* Uses mbox */ |
Sathya Perla | 3abcded | 2010-10-03 22:12:27 -0700 | [diff] [blame] | 1372 | int be_cmd_query_fw_cfg(struct be_adapter *adapter, u32 *port_num, |
| 1373 | u32 *mode, u32 *caps) |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1374 | { |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1375 | struct be_mcc_wrb *wrb; |
| 1376 | struct be_cmd_req_query_fw_cfg *req; |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1377 | int status; |
| 1378 | |
Ivan Vecera | 2984961 | 2010-12-14 05:43:19 +0000 | [diff] [blame] | 1379 | if (mutex_lock_interruptible(&adapter->mbox_lock)) |
| 1380 | return -1; |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1381 | |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1382 | wrb = wrb_from_mbox(adapter); |
| 1383 | req = embedded_payload(wrb); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1384 | |
Ajit Khaparde | d744b44 | 2009-12-03 06:12:06 +0000 | [diff] [blame] | 1385 | be_wrb_hdr_prepare(wrb, sizeof(*req), true, 0, |
| 1386 | OPCODE_COMMON_QUERY_FIRMWARE_CONFIG); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1387 | |
| 1388 | be_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, |
| 1389 | OPCODE_COMMON_QUERY_FIRMWARE_CONFIG, sizeof(*req)); |
| 1390 | |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1391 | status = be_mbox_notify_wait(adapter); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1392 | if (!status) { |
| 1393 | struct be_cmd_resp_query_fw_cfg *resp = embedded_payload(wrb); |
| 1394 | *port_num = le32_to_cpu(resp->phys_port); |
Ajit Khaparde | 3486be2 | 2010-07-23 02:04:54 +0000 | [diff] [blame] | 1395 | *mode = le32_to_cpu(resp->function_mode); |
Sathya Perla | 3abcded | 2010-10-03 22:12:27 -0700 | [diff] [blame] | 1396 | *caps = le32_to_cpu(resp->function_caps); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1397 | } |
| 1398 | |
Ivan Vecera | 2984961 | 2010-12-14 05:43:19 +0000 | [diff] [blame] | 1399 | mutex_unlock(&adapter->mbox_lock); |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 1400 | return status; |
| 1401 | } |
sarveshwarb | 14074ea | 2009-08-05 13:05:24 -0700 | [diff] [blame] | 1402 | |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1403 | /* Uses mbox */ |
sarveshwarb | 14074ea | 2009-08-05 13:05:24 -0700 | [diff] [blame] | 1404 | int be_cmd_reset_function(struct be_adapter *adapter) |
| 1405 | { |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1406 | struct be_mcc_wrb *wrb; |
| 1407 | struct be_cmd_req_hdr *req; |
sarveshwarb | 14074ea | 2009-08-05 13:05:24 -0700 | [diff] [blame] | 1408 | int status; |
| 1409 | |
Ivan Vecera | 2984961 | 2010-12-14 05:43:19 +0000 | [diff] [blame] | 1410 | if (mutex_lock_interruptible(&adapter->mbox_lock)) |
| 1411 | return -1; |
sarveshwarb | 14074ea | 2009-08-05 13:05:24 -0700 | [diff] [blame] | 1412 | |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1413 | wrb = wrb_from_mbox(adapter); |
| 1414 | req = embedded_payload(wrb); |
sarveshwarb | 14074ea | 2009-08-05 13:05:24 -0700 | [diff] [blame] | 1415 | |
Ajit Khaparde | d744b44 | 2009-12-03 06:12:06 +0000 | [diff] [blame] | 1416 | be_wrb_hdr_prepare(wrb, sizeof(*req), true, 0, |
| 1417 | OPCODE_COMMON_FUNCTION_RESET); |
sarveshwarb | 14074ea | 2009-08-05 13:05:24 -0700 | [diff] [blame] | 1418 | |
| 1419 | be_cmd_hdr_prepare(req, CMD_SUBSYSTEM_COMMON, |
| 1420 | OPCODE_COMMON_FUNCTION_RESET, sizeof(*req)); |
| 1421 | |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1422 | status = be_mbox_notify_wait(adapter); |
sarveshwarb | 14074ea | 2009-08-05 13:05:24 -0700 | [diff] [blame] | 1423 | |
Ivan Vecera | 2984961 | 2010-12-14 05:43:19 +0000 | [diff] [blame] | 1424 | mutex_unlock(&adapter->mbox_lock); |
sarveshwarb | 14074ea | 2009-08-05 13:05:24 -0700 | [diff] [blame] | 1425 | return status; |
| 1426 | } |
Ajit Khaparde | 8451748 | 2009-09-04 03:12:16 +0000 | [diff] [blame] | 1427 | |
Sathya Perla | 3abcded | 2010-10-03 22:12:27 -0700 | [diff] [blame] | 1428 | int be_cmd_rss_config(struct be_adapter *adapter, u8 *rsstable, u16 table_size) |
| 1429 | { |
| 1430 | struct be_mcc_wrb *wrb; |
| 1431 | struct be_cmd_req_rss_config *req; |
| 1432 | u32 myhash[10]; |
| 1433 | int status; |
| 1434 | |
Ivan Vecera | 2984961 | 2010-12-14 05:43:19 +0000 | [diff] [blame] | 1435 | if (mutex_lock_interruptible(&adapter->mbox_lock)) |
| 1436 | return -1; |
Sathya Perla | 3abcded | 2010-10-03 22:12:27 -0700 | [diff] [blame] | 1437 | |
| 1438 | wrb = wrb_from_mbox(adapter); |
| 1439 | req = embedded_payload(wrb); |
| 1440 | |
| 1441 | be_wrb_hdr_prepare(wrb, sizeof(*req), true, 0, |
| 1442 | OPCODE_ETH_RSS_CONFIG); |
| 1443 | |
| 1444 | be_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_ETH, |
| 1445 | OPCODE_ETH_RSS_CONFIG, sizeof(*req)); |
| 1446 | |
| 1447 | req->if_id = cpu_to_le32(adapter->if_handle); |
| 1448 | req->enable_rss = cpu_to_le16(RSS_ENABLE_TCP_IPV4 | RSS_ENABLE_IPV4); |
| 1449 | req->cpu_table_size_log2 = cpu_to_le16(fls(table_size) - 1); |
| 1450 | memcpy(req->cpu_table, rsstable, table_size); |
| 1451 | memcpy(req->hash, myhash, sizeof(myhash)); |
| 1452 | be_dws_cpu_to_le(req->hash, sizeof(req->hash)); |
| 1453 | |
| 1454 | status = be_mbox_notify_wait(adapter); |
| 1455 | |
Ivan Vecera | 2984961 | 2010-12-14 05:43:19 +0000 | [diff] [blame] | 1456 | mutex_unlock(&adapter->mbox_lock); |
Sathya Perla | 3abcded | 2010-10-03 22:12:27 -0700 | [diff] [blame] | 1457 | return status; |
| 1458 | } |
| 1459 | |
Sarveshwar Bandi | fad9ab2 | 2009-10-12 04:23:15 -0700 | [diff] [blame] | 1460 | /* Uses sync mcc */ |
| 1461 | int be_cmd_set_beacon_state(struct be_adapter *adapter, u8 port_num, |
| 1462 | u8 bcn, u8 sts, u8 state) |
| 1463 | { |
| 1464 | struct be_mcc_wrb *wrb; |
| 1465 | struct be_cmd_req_enable_disable_beacon *req; |
| 1466 | int status; |
| 1467 | |
| 1468 | spin_lock_bh(&adapter->mcc_lock); |
| 1469 | |
| 1470 | wrb = wrb_from_mccq(adapter); |
Sathya Perla | 713d0394 | 2009-11-22 22:02:45 +0000 | [diff] [blame] | 1471 | if (!wrb) { |
| 1472 | status = -EBUSY; |
| 1473 | goto err; |
| 1474 | } |
Sarveshwar Bandi | fad9ab2 | 2009-10-12 04:23:15 -0700 | [diff] [blame] | 1475 | req = embedded_payload(wrb); |
| 1476 | |
Ajit Khaparde | d744b44 | 2009-12-03 06:12:06 +0000 | [diff] [blame] | 1477 | be_wrb_hdr_prepare(wrb, sizeof(*req), true, 0, |
| 1478 | OPCODE_COMMON_ENABLE_DISABLE_BEACON); |
Sarveshwar Bandi | fad9ab2 | 2009-10-12 04:23:15 -0700 | [diff] [blame] | 1479 | |
| 1480 | be_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, |
| 1481 | OPCODE_COMMON_ENABLE_DISABLE_BEACON, sizeof(*req)); |
| 1482 | |
| 1483 | req->port_num = port_num; |
| 1484 | req->beacon_state = state; |
| 1485 | req->beacon_duration = bcn; |
| 1486 | req->status_duration = sts; |
| 1487 | |
| 1488 | status = be_mcc_notify_wait(adapter); |
| 1489 | |
Sathya Perla | 713d0394 | 2009-11-22 22:02:45 +0000 | [diff] [blame] | 1490 | err: |
Sarveshwar Bandi | fad9ab2 | 2009-10-12 04:23:15 -0700 | [diff] [blame] | 1491 | spin_unlock_bh(&adapter->mcc_lock); |
| 1492 | return status; |
| 1493 | } |
| 1494 | |
| 1495 | /* Uses sync mcc */ |
| 1496 | int be_cmd_get_beacon_state(struct be_adapter *adapter, u8 port_num, u32 *state) |
| 1497 | { |
| 1498 | struct be_mcc_wrb *wrb; |
| 1499 | struct be_cmd_req_get_beacon_state *req; |
| 1500 | int status; |
| 1501 | |
| 1502 | spin_lock_bh(&adapter->mcc_lock); |
| 1503 | |
| 1504 | wrb = wrb_from_mccq(adapter); |
Sathya Perla | 713d0394 | 2009-11-22 22:02:45 +0000 | [diff] [blame] | 1505 | if (!wrb) { |
| 1506 | status = -EBUSY; |
| 1507 | goto err; |
| 1508 | } |
Sarveshwar Bandi | fad9ab2 | 2009-10-12 04:23:15 -0700 | [diff] [blame] | 1509 | req = embedded_payload(wrb); |
| 1510 | |
Ajit Khaparde | d744b44 | 2009-12-03 06:12:06 +0000 | [diff] [blame] | 1511 | be_wrb_hdr_prepare(wrb, sizeof(*req), true, 0, |
| 1512 | OPCODE_COMMON_GET_BEACON_STATE); |
Sarveshwar Bandi | fad9ab2 | 2009-10-12 04:23:15 -0700 | [diff] [blame] | 1513 | |
| 1514 | be_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, |
| 1515 | OPCODE_COMMON_GET_BEACON_STATE, sizeof(*req)); |
| 1516 | |
| 1517 | req->port_num = port_num; |
| 1518 | |
| 1519 | status = be_mcc_notify_wait(adapter); |
| 1520 | if (!status) { |
| 1521 | struct be_cmd_resp_get_beacon_state *resp = |
| 1522 | embedded_payload(wrb); |
| 1523 | *state = resp->beacon_state; |
| 1524 | } |
| 1525 | |
Sathya Perla | 713d0394 | 2009-11-22 22:02:45 +0000 | [diff] [blame] | 1526 | err: |
Sarveshwar Bandi | fad9ab2 | 2009-10-12 04:23:15 -0700 | [diff] [blame] | 1527 | spin_unlock_bh(&adapter->mcc_lock); |
| 1528 | return status; |
| 1529 | } |
| 1530 | |
Ajit Khaparde | 8451748 | 2009-09-04 03:12:16 +0000 | [diff] [blame] | 1531 | int be_cmd_write_flashrom(struct be_adapter *adapter, struct be_dma_mem *cmd, |
| 1532 | u32 flash_type, u32 flash_opcode, u32 buf_size) |
| 1533 | { |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1534 | struct be_mcc_wrb *wrb; |
Ajit Khaparde | 3f0d456 | 2010-02-09 01:30:35 +0000 | [diff] [blame] | 1535 | struct be_cmd_write_flashrom *req; |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1536 | struct be_sge *sge; |
Ajit Khaparde | 8451748 | 2009-09-04 03:12:16 +0000 | [diff] [blame] | 1537 | int status; |
| 1538 | |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1539 | spin_lock_bh(&adapter->mcc_lock); |
Sarveshwar Bandi | dd131e7 | 2010-05-25 16:16:32 -0700 | [diff] [blame] | 1540 | adapter->flash_status = 0; |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1541 | |
| 1542 | wrb = wrb_from_mccq(adapter); |
Sathya Perla | 713d0394 | 2009-11-22 22:02:45 +0000 | [diff] [blame] | 1543 | if (!wrb) { |
| 1544 | status = -EBUSY; |
Dan Carpenter | 2892d9c | 2010-05-26 04:46:35 +0000 | [diff] [blame] | 1545 | goto err_unlock; |
Sathya Perla | 713d0394 | 2009-11-22 22:02:45 +0000 | [diff] [blame] | 1546 | } |
| 1547 | req = cmd->va; |
Sathya Perla | b31c50a | 2009-09-17 10:30:13 -0700 | [diff] [blame] | 1548 | sge = nonembedded_sgl(wrb); |
| 1549 | |
Ajit Khaparde | d744b44 | 2009-12-03 06:12:06 +0000 | [diff] [blame] | 1550 | be_wrb_hdr_prepare(wrb, cmd->size, false, 1, |
| 1551 | OPCODE_COMMON_WRITE_FLASHROM); |
Sarveshwar Bandi | dd131e7 | 2010-05-25 16:16:32 -0700 | [diff] [blame] | 1552 | wrb->tag1 = CMD_SUBSYSTEM_COMMON; |
Ajit Khaparde | 8451748 | 2009-09-04 03:12:16 +0000 | [diff] [blame] | 1553 | |
| 1554 | be_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, |
| 1555 | OPCODE_COMMON_WRITE_FLASHROM, cmd->size); |
| 1556 | sge->pa_hi = cpu_to_le32(upper_32_bits(cmd->dma)); |
| 1557 | sge->pa_lo = cpu_to_le32(cmd->dma & 0xFFFFFFFF); |
| 1558 | sge->len = cpu_to_le32(cmd->size); |
| 1559 | |
| 1560 | req->params.op_type = cpu_to_le32(flash_type); |
| 1561 | req->params.op_code = cpu_to_le32(flash_opcode); |
| 1562 | req->params.data_buf_size = cpu_to_le32(buf_size); |
| 1563 | |
Sarveshwar Bandi | dd131e7 | 2010-05-25 16:16:32 -0700 | [diff] [blame] | 1564 | be_mcc_notify(adapter); |
| 1565 | spin_unlock_bh(&adapter->mcc_lock); |
| 1566 | |
| 1567 | if (!wait_for_completion_timeout(&adapter->flash_compl, |
| 1568 | msecs_to_jiffies(12000))) |
| 1569 | status = -1; |
| 1570 | else |
| 1571 | status = adapter->flash_status; |
Ajit Khaparde | 8451748 | 2009-09-04 03:12:16 +0000 | [diff] [blame] | 1572 | |
Dan Carpenter | 2892d9c | 2010-05-26 04:46:35 +0000 | [diff] [blame] | 1573 | return status; |
| 1574 | |
| 1575 | err_unlock: |
| 1576 | spin_unlock_bh(&adapter->mcc_lock); |
Ajit Khaparde | 8451748 | 2009-09-04 03:12:16 +0000 | [diff] [blame] | 1577 | return status; |
| 1578 | } |
Sarveshwar Bandi | fa9a6fe | 2009-11-20 14:23:47 -0800 | [diff] [blame] | 1579 | |
Ajit Khaparde | 3f0d456 | 2010-02-09 01:30:35 +0000 | [diff] [blame] | 1580 | int be_cmd_get_flash_crc(struct be_adapter *adapter, u8 *flashed_crc, |
| 1581 | int offset) |
Sarveshwar Bandi | fa9a6fe | 2009-11-20 14:23:47 -0800 | [diff] [blame] | 1582 | { |
| 1583 | struct be_mcc_wrb *wrb; |
| 1584 | struct be_cmd_write_flashrom *req; |
| 1585 | int status; |
| 1586 | |
| 1587 | spin_lock_bh(&adapter->mcc_lock); |
| 1588 | |
| 1589 | wrb = wrb_from_mccq(adapter); |
Sathya Perla | 713d0394 | 2009-11-22 22:02:45 +0000 | [diff] [blame] | 1590 | if (!wrb) { |
| 1591 | status = -EBUSY; |
| 1592 | goto err; |
| 1593 | } |
Sarveshwar Bandi | fa9a6fe | 2009-11-20 14:23:47 -0800 | [diff] [blame] | 1594 | req = embedded_payload(wrb); |
| 1595 | |
Ajit Khaparde | d744b44 | 2009-12-03 06:12:06 +0000 | [diff] [blame] | 1596 | be_wrb_hdr_prepare(wrb, sizeof(*req)+4, true, 0, |
| 1597 | OPCODE_COMMON_READ_FLASHROM); |
Sarveshwar Bandi | fa9a6fe | 2009-11-20 14:23:47 -0800 | [diff] [blame] | 1598 | |
| 1599 | be_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, |
| 1600 | OPCODE_COMMON_READ_FLASHROM, sizeof(*req)+4); |
| 1601 | |
Ajit Khaparde | 3f0d456 | 2010-02-09 01:30:35 +0000 | [diff] [blame] | 1602 | req->params.op_type = cpu_to_le32(IMG_TYPE_REDBOOT); |
Sarveshwar Bandi | fa9a6fe | 2009-11-20 14:23:47 -0800 | [diff] [blame] | 1603 | req->params.op_code = cpu_to_le32(FLASHROM_OPER_REPORT); |
Ajit Khaparde | 8b93b71 | 2010-03-31 01:57:10 +0000 | [diff] [blame] | 1604 | req->params.offset = cpu_to_le32(offset); |
| 1605 | req->params.data_buf_size = cpu_to_le32(0x4); |
Sarveshwar Bandi | fa9a6fe | 2009-11-20 14:23:47 -0800 | [diff] [blame] | 1606 | |
| 1607 | status = be_mcc_notify_wait(adapter); |
| 1608 | if (!status) |
| 1609 | memcpy(flashed_crc, req->params.data_buf, 4); |
| 1610 | |
Sathya Perla | 713d0394 | 2009-11-22 22:02:45 +0000 | [diff] [blame] | 1611 | err: |
Sarveshwar Bandi | fa9a6fe | 2009-11-20 14:23:47 -0800 | [diff] [blame] | 1612 | spin_unlock_bh(&adapter->mcc_lock); |
| 1613 | return status; |
| 1614 | } |
Ajit Khaparde | 71d8d1b | 2009-12-03 06:16:59 +0000 | [diff] [blame] | 1615 | |
Dan Carpenter | c196b02 | 2010-05-26 04:47:39 +0000 | [diff] [blame] | 1616 | int be_cmd_enable_magic_wol(struct be_adapter *adapter, u8 *mac, |
Ajit Khaparde | 71d8d1b | 2009-12-03 06:16:59 +0000 | [diff] [blame] | 1617 | struct be_dma_mem *nonemb_cmd) |
| 1618 | { |
| 1619 | struct be_mcc_wrb *wrb; |
| 1620 | struct be_cmd_req_acpi_wol_magic_config *req; |
| 1621 | struct be_sge *sge; |
| 1622 | int status; |
| 1623 | |
| 1624 | spin_lock_bh(&adapter->mcc_lock); |
| 1625 | |
| 1626 | wrb = wrb_from_mccq(adapter); |
| 1627 | if (!wrb) { |
| 1628 | status = -EBUSY; |
| 1629 | goto err; |
| 1630 | } |
| 1631 | req = nonemb_cmd->va; |
| 1632 | sge = nonembedded_sgl(wrb); |
| 1633 | |
| 1634 | be_wrb_hdr_prepare(wrb, sizeof(*req), false, 1, |
| 1635 | OPCODE_ETH_ACPI_WOL_MAGIC_CONFIG); |
| 1636 | |
| 1637 | be_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_ETH, |
| 1638 | OPCODE_ETH_ACPI_WOL_MAGIC_CONFIG, sizeof(*req)); |
| 1639 | memcpy(req->magic_mac, mac, ETH_ALEN); |
| 1640 | |
| 1641 | sge->pa_hi = cpu_to_le32(upper_32_bits(nonemb_cmd->dma)); |
| 1642 | sge->pa_lo = cpu_to_le32(nonemb_cmd->dma & 0xFFFFFFFF); |
| 1643 | sge->len = cpu_to_le32(nonemb_cmd->size); |
| 1644 | |
| 1645 | status = be_mcc_notify_wait(adapter); |
| 1646 | |
| 1647 | err: |
| 1648 | spin_unlock_bh(&adapter->mcc_lock); |
| 1649 | return status; |
| 1650 | } |
Suresh R | ff33a6e | 2009-12-03 16:15:52 -0800 | [diff] [blame] | 1651 | |
Sarveshwar Bandi | fced999 | 2009-12-23 04:41:44 +0000 | [diff] [blame] | 1652 | int be_cmd_set_loopback(struct be_adapter *adapter, u8 port_num, |
| 1653 | u8 loopback_type, u8 enable) |
| 1654 | { |
| 1655 | struct be_mcc_wrb *wrb; |
| 1656 | struct be_cmd_req_set_lmode *req; |
| 1657 | int status; |
| 1658 | |
| 1659 | spin_lock_bh(&adapter->mcc_lock); |
| 1660 | |
| 1661 | wrb = wrb_from_mccq(adapter); |
| 1662 | if (!wrb) { |
| 1663 | status = -EBUSY; |
| 1664 | goto err; |
| 1665 | } |
| 1666 | |
| 1667 | req = embedded_payload(wrb); |
| 1668 | |
| 1669 | be_wrb_hdr_prepare(wrb, sizeof(*req), true, 0, |
| 1670 | OPCODE_LOWLEVEL_SET_LOOPBACK_MODE); |
| 1671 | |
| 1672 | be_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_LOWLEVEL, |
| 1673 | OPCODE_LOWLEVEL_SET_LOOPBACK_MODE, |
| 1674 | sizeof(*req)); |
| 1675 | |
| 1676 | req->src_port = port_num; |
| 1677 | req->dest_port = port_num; |
| 1678 | req->loopback_type = loopback_type; |
| 1679 | req->loopback_state = enable; |
| 1680 | |
| 1681 | status = be_mcc_notify_wait(adapter); |
| 1682 | err: |
| 1683 | spin_unlock_bh(&adapter->mcc_lock); |
| 1684 | return status; |
| 1685 | } |
| 1686 | |
Suresh R | ff33a6e | 2009-12-03 16:15:52 -0800 | [diff] [blame] | 1687 | int be_cmd_loopback_test(struct be_adapter *adapter, u32 port_num, |
| 1688 | u32 loopback_type, u32 pkt_size, u32 num_pkts, u64 pattern) |
| 1689 | { |
| 1690 | struct be_mcc_wrb *wrb; |
| 1691 | struct be_cmd_req_loopback_test *req; |
| 1692 | int status; |
| 1693 | |
| 1694 | spin_lock_bh(&adapter->mcc_lock); |
| 1695 | |
| 1696 | wrb = wrb_from_mccq(adapter); |
| 1697 | if (!wrb) { |
| 1698 | status = -EBUSY; |
| 1699 | goto err; |
| 1700 | } |
| 1701 | |
| 1702 | req = embedded_payload(wrb); |
| 1703 | |
| 1704 | be_wrb_hdr_prepare(wrb, sizeof(*req), true, 0, |
| 1705 | OPCODE_LOWLEVEL_LOOPBACK_TEST); |
| 1706 | |
| 1707 | be_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_LOWLEVEL, |
| 1708 | OPCODE_LOWLEVEL_LOOPBACK_TEST, sizeof(*req)); |
Sathya Perla | 3ffd051 | 2010-06-01 00:19:33 -0700 | [diff] [blame] | 1709 | req->hdr.timeout = cpu_to_le32(4); |
Suresh R | ff33a6e | 2009-12-03 16:15:52 -0800 | [diff] [blame] | 1710 | |
| 1711 | req->pattern = cpu_to_le64(pattern); |
| 1712 | req->src_port = cpu_to_le32(port_num); |
| 1713 | req->dest_port = cpu_to_le32(port_num); |
| 1714 | req->pkt_size = cpu_to_le32(pkt_size); |
| 1715 | req->num_pkts = cpu_to_le32(num_pkts); |
| 1716 | req->loopback_type = cpu_to_le32(loopback_type); |
| 1717 | |
| 1718 | status = be_mcc_notify_wait(adapter); |
| 1719 | if (!status) { |
| 1720 | struct be_cmd_resp_loopback_test *resp = embedded_payload(wrb); |
| 1721 | status = le32_to_cpu(resp->status); |
| 1722 | } |
| 1723 | |
| 1724 | err: |
| 1725 | spin_unlock_bh(&adapter->mcc_lock); |
| 1726 | return status; |
| 1727 | } |
| 1728 | |
| 1729 | int be_cmd_ddr_dma_test(struct be_adapter *adapter, u64 pattern, |
| 1730 | u32 byte_cnt, struct be_dma_mem *cmd) |
| 1731 | { |
| 1732 | struct be_mcc_wrb *wrb; |
| 1733 | struct be_cmd_req_ddrdma_test *req; |
| 1734 | struct be_sge *sge; |
| 1735 | int status; |
| 1736 | int i, j = 0; |
| 1737 | |
| 1738 | spin_lock_bh(&adapter->mcc_lock); |
| 1739 | |
| 1740 | wrb = wrb_from_mccq(adapter); |
| 1741 | if (!wrb) { |
| 1742 | status = -EBUSY; |
| 1743 | goto err; |
| 1744 | } |
| 1745 | req = cmd->va; |
| 1746 | sge = nonembedded_sgl(wrb); |
| 1747 | be_wrb_hdr_prepare(wrb, cmd->size, false, 1, |
| 1748 | OPCODE_LOWLEVEL_HOST_DDR_DMA); |
| 1749 | be_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_LOWLEVEL, |
| 1750 | OPCODE_LOWLEVEL_HOST_DDR_DMA, cmd->size); |
| 1751 | |
| 1752 | sge->pa_hi = cpu_to_le32(upper_32_bits(cmd->dma)); |
| 1753 | sge->pa_lo = cpu_to_le32(cmd->dma & 0xFFFFFFFF); |
| 1754 | sge->len = cpu_to_le32(cmd->size); |
| 1755 | |
| 1756 | req->pattern = cpu_to_le64(pattern); |
| 1757 | req->byte_count = cpu_to_le32(byte_cnt); |
| 1758 | for (i = 0; i < byte_cnt; i++) { |
| 1759 | req->snd_buff[i] = (u8)(pattern >> (j*8)); |
| 1760 | j++; |
| 1761 | if (j > 7) |
| 1762 | j = 0; |
| 1763 | } |
| 1764 | |
| 1765 | status = be_mcc_notify_wait(adapter); |
| 1766 | |
| 1767 | if (!status) { |
| 1768 | struct be_cmd_resp_ddrdma_test *resp; |
| 1769 | resp = cmd->va; |
| 1770 | if ((memcmp(resp->rcv_buff, req->snd_buff, byte_cnt) != 0) || |
| 1771 | resp->snd_err) { |
| 1772 | status = -1; |
| 1773 | } |
| 1774 | } |
| 1775 | |
| 1776 | err: |
| 1777 | spin_unlock_bh(&adapter->mcc_lock); |
| 1778 | return status; |
| 1779 | } |
Sarveshwar Bandi | 368c0ca | 2010-01-08 00:07:27 -0800 | [diff] [blame] | 1780 | |
Dan Carpenter | c196b02 | 2010-05-26 04:47:39 +0000 | [diff] [blame] | 1781 | int be_cmd_get_seeprom_data(struct be_adapter *adapter, |
Sarveshwar Bandi | 368c0ca | 2010-01-08 00:07:27 -0800 | [diff] [blame] | 1782 | struct be_dma_mem *nonemb_cmd) |
| 1783 | { |
| 1784 | struct be_mcc_wrb *wrb; |
| 1785 | struct be_cmd_req_seeprom_read *req; |
| 1786 | struct be_sge *sge; |
| 1787 | int status; |
| 1788 | |
| 1789 | spin_lock_bh(&adapter->mcc_lock); |
| 1790 | |
| 1791 | wrb = wrb_from_mccq(adapter); |
Ajit Khaparde | e45ff01 | 2011-02-04 17:18:28 +0000 | [diff] [blame] | 1792 | if (!wrb) { |
| 1793 | status = -EBUSY; |
| 1794 | goto err; |
| 1795 | } |
Sarveshwar Bandi | 368c0ca | 2010-01-08 00:07:27 -0800 | [diff] [blame] | 1796 | req = nonemb_cmd->va; |
| 1797 | sge = nonembedded_sgl(wrb); |
| 1798 | |
| 1799 | be_wrb_hdr_prepare(wrb, sizeof(*req), false, 1, |
| 1800 | OPCODE_COMMON_SEEPROM_READ); |
| 1801 | |
| 1802 | be_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, |
| 1803 | OPCODE_COMMON_SEEPROM_READ, sizeof(*req)); |
| 1804 | |
| 1805 | sge->pa_hi = cpu_to_le32(upper_32_bits(nonemb_cmd->dma)); |
| 1806 | sge->pa_lo = cpu_to_le32(nonemb_cmd->dma & 0xFFFFFFFF); |
| 1807 | sge->len = cpu_to_le32(nonemb_cmd->size); |
| 1808 | |
| 1809 | status = be_mcc_notify_wait(adapter); |
| 1810 | |
Ajit Khaparde | e45ff01 | 2011-02-04 17:18:28 +0000 | [diff] [blame] | 1811 | err: |
Sarveshwar Bandi | 368c0ca | 2010-01-08 00:07:27 -0800 | [diff] [blame] | 1812 | spin_unlock_bh(&adapter->mcc_lock); |
| 1813 | return status; |
| 1814 | } |
Ajit Khaparde | ee3cb62 | 2010-07-01 03:51:00 +0000 | [diff] [blame] | 1815 | |
| 1816 | int be_cmd_get_phy_info(struct be_adapter *adapter, struct be_dma_mem *cmd) |
| 1817 | { |
| 1818 | struct be_mcc_wrb *wrb; |
| 1819 | struct be_cmd_req_get_phy_info *req; |
| 1820 | struct be_sge *sge; |
| 1821 | int status; |
| 1822 | |
| 1823 | spin_lock_bh(&adapter->mcc_lock); |
| 1824 | |
| 1825 | wrb = wrb_from_mccq(adapter); |
| 1826 | if (!wrb) { |
| 1827 | status = -EBUSY; |
| 1828 | goto err; |
| 1829 | } |
| 1830 | |
| 1831 | req = cmd->va; |
| 1832 | sge = nonembedded_sgl(wrb); |
| 1833 | |
| 1834 | be_wrb_hdr_prepare(wrb, sizeof(*req), false, 1, |
| 1835 | OPCODE_COMMON_GET_PHY_DETAILS); |
| 1836 | |
| 1837 | be_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, |
| 1838 | OPCODE_COMMON_GET_PHY_DETAILS, |
| 1839 | sizeof(*req)); |
| 1840 | |
| 1841 | sge->pa_hi = cpu_to_le32(upper_32_bits(cmd->dma)); |
| 1842 | sge->pa_lo = cpu_to_le32(cmd->dma & 0xFFFFFFFF); |
| 1843 | sge->len = cpu_to_le32(cmd->size); |
| 1844 | |
| 1845 | status = be_mcc_notify_wait(adapter); |
| 1846 | err: |
| 1847 | spin_unlock_bh(&adapter->mcc_lock); |
| 1848 | return status; |
| 1849 | } |
Ajit Khaparde | e1d1873 | 2010-07-23 01:52:13 +0000 | [diff] [blame] | 1850 | |
| 1851 | int be_cmd_set_qos(struct be_adapter *adapter, u32 bps, u32 domain) |
| 1852 | { |
| 1853 | struct be_mcc_wrb *wrb; |
| 1854 | struct be_cmd_req_set_qos *req; |
| 1855 | int status; |
| 1856 | |
| 1857 | spin_lock_bh(&adapter->mcc_lock); |
| 1858 | |
| 1859 | wrb = wrb_from_mccq(adapter); |
| 1860 | if (!wrb) { |
| 1861 | status = -EBUSY; |
| 1862 | goto err; |
| 1863 | } |
| 1864 | |
| 1865 | req = embedded_payload(wrb); |
| 1866 | |
| 1867 | be_wrb_hdr_prepare(wrb, sizeof(*req), true, 0, |
| 1868 | OPCODE_COMMON_SET_QOS); |
| 1869 | |
| 1870 | be_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, |
| 1871 | OPCODE_COMMON_SET_QOS, sizeof(*req)); |
| 1872 | |
| 1873 | req->hdr.domain = domain; |
Ajit Khaparde | 6bff57a | 2011-02-11 13:33:02 +0000 | [diff] [blame] | 1874 | req->valid_bits = cpu_to_le32(BE_QOS_BITS_NIC); |
| 1875 | req->max_bps_nic = cpu_to_le32(bps); |
Ajit Khaparde | e1d1873 | 2010-07-23 01:52:13 +0000 | [diff] [blame] | 1876 | |
| 1877 | status = be_mcc_notify_wait(adapter); |
| 1878 | |
| 1879 | err: |
| 1880 | spin_unlock_bh(&adapter->mcc_lock); |
| 1881 | return status; |
| 1882 | } |