1 /* 2 * Copyright (c) 2016 Hisilicon Limited. 3 * 4 * This software is available to you under a choice of one of two 5 * licenses. You may choose to be licensed under the terms of the GNU 6 * General Public License (GPL) Version 2, available from the file 7 * COPYING in the main directory of this source tree, or the 8 * OpenIB.org BSD license below: 9 * 10 * Redistribution and use in source and binary forms, with or 11 * without modification, are permitted provided that the following 12 * conditions are met: 13 * 14 * - Redistributions of source code must retain the above 15 * copyright notice, this list of conditions and the following 16 * disclaimer. 17 * 18 * - Redistributions in binary form must reproduce the above 19 * copyright notice, this list of conditions and the following 20 * disclaimer in the documentation and/or other materials 21 * provided with the distribution. 22 * 23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 24 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 25 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 26 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS 27 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN 28 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 29 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 30 * SOFTWARE. 31 */ 32 33 #include <linux/dmapool.h> 34 #include <linux/platform_device.h> 35 #include "hns_roce_common.h" 36 #include "hns_roce_device.h" 37 #include "hns_roce_cmd.h" 38 39 #define CMD_POLL_TOKEN 0xffff 40 #define CMD_MAX_NUM 32 41 #define CMD_TOKEN_MASK 0x1f 42 43 static int hns_roce_cmd_mbox_post_hw(struct hns_roce_dev *hr_dev, u64 in_param, 44 u64 out_param, u32 in_modifier, 45 u8 op_modifier, u16 op, u16 token, 46 int event) 47 { 48 struct hns_roce_cmdq *cmd = &hr_dev->cmd; 49 int ret; 50 51 mutex_lock(&cmd->hcr_mutex); 52 ret = hr_dev->hw->post_mbox(hr_dev, in_param, out_param, in_modifier, 53 op_modifier, op, token, event); 54 mutex_unlock(&cmd->hcr_mutex); 55 56 return ret; 57 } 58 59 /* this should be called with "poll_sem" */ 60 static int __hns_roce_cmd_mbox_poll(struct hns_roce_dev *hr_dev, u64 in_param, 61 u64 out_param, unsigned long in_modifier, 62 u8 op_modifier, u16 op, 63 unsigned long timeout) 64 { 65 struct device *dev = hr_dev->dev; 66 int ret; 67 68 ret = hns_roce_cmd_mbox_post_hw(hr_dev, in_param, out_param, 69 in_modifier, op_modifier, op, 70 CMD_POLL_TOKEN, 0); 71 if (ret) { 72 dev_err(dev, "[cmd_poll]hns_roce_cmd_mbox_post_hw failed\n"); 73 return ret; 74 } 75 76 return hr_dev->hw->chk_mbox(hr_dev, timeout); 77 } 78 79 static int hns_roce_cmd_mbox_poll(struct hns_roce_dev *hr_dev, u64 in_param, 80 u64 out_param, unsigned long in_modifier, 81 u8 op_modifier, u16 op, unsigned long timeout) 82 { 83 int ret; 84 85 down(&hr_dev->cmd.poll_sem); 86 ret = __hns_roce_cmd_mbox_poll(hr_dev, in_param, out_param, in_modifier, 87 op_modifier, op, timeout); 88 up(&hr_dev->cmd.poll_sem); 89 90 return ret; 91 } 92 93 void hns_roce_cmd_event(struct hns_roce_dev *hr_dev, u16 token, u8 status, 94 u64 out_param) 95 { 96 struct hns_roce_cmd_context 97 *context = &hr_dev->cmd.context[token & hr_dev->cmd.token_mask]; 98 99 if (token != context->token) 100 return; 101 102 context->result = (status == HNS_ROCE_CMD_SUCCESS) ? 0 : (-EIO); 103 context->out_param = out_param; 104 complete(&context->done); 105 } 106 107 /* this should be called with "use_events" */ 108 static int __hns_roce_cmd_mbox_wait(struct hns_roce_dev *hr_dev, u64 in_param, 109 u64 out_param, unsigned long in_modifier, 110 u8 op_modifier, u16 op, 111 unsigned long timeout) 112 { 113 struct hns_roce_cmdq *cmd = &hr_dev->cmd; 114 struct hns_roce_cmd_context *context; 115 struct device *dev = hr_dev->dev; 116 int ret; 117 118 spin_lock(&cmd->context_lock); 119 WARN_ON(cmd->free_head < 0); 120 context = &cmd->context[cmd->free_head]; 121 context->token += cmd->token_mask + 1; 122 cmd->free_head = context->next; 123 spin_unlock(&cmd->context_lock); 124 125 init_completion(&context->done); 126 127 ret = hns_roce_cmd_mbox_post_hw(hr_dev, in_param, out_param, 128 in_modifier, op_modifier, op, 129 context->token, 1); 130 if (ret) 131 goto out; 132 133 /* 134 * It is timeout when wait_for_completion_timeout return 0 135 * The return value is the time limit set in advance 136 * how many seconds showing 137 */ 138 if (!wait_for_completion_timeout(&context->done, 139 msecs_to_jiffies(timeout))) { 140 dev_err(dev, "[cmd]wait_for_completion_timeout timeout\n"); 141 ret = -EBUSY; 142 goto out; 143 } 144 145 ret = context->result; 146 if (ret) { 147 dev_err(dev, "[cmd]event mod cmd process error!err=%d\n", ret); 148 goto out; 149 } 150 151 out: 152 spin_lock(&cmd->context_lock); 153 context->next = cmd->free_head; 154 cmd->free_head = context - cmd->context; 155 spin_unlock(&cmd->context_lock); 156 157 return ret; 158 } 159 160 static int hns_roce_cmd_mbox_wait(struct hns_roce_dev *hr_dev, u64 in_param, 161 u64 out_param, unsigned long in_modifier, 162 u8 op_modifier, u16 op, unsigned long timeout) 163 { 164 int ret = 0; 165 166 down(&hr_dev->cmd.event_sem); 167 ret = __hns_roce_cmd_mbox_wait(hr_dev, in_param, out_param, 168 in_modifier, op_modifier, op, timeout); 169 up(&hr_dev->cmd.event_sem); 170 171 return ret; 172 } 173 174 int hns_roce_cmd_mbox(struct hns_roce_dev *hr_dev, u64 in_param, u64 out_param, 175 unsigned long in_modifier, u8 op_modifier, u16 op, 176 unsigned long timeout) 177 { 178 if (hr_dev->cmd.use_events) 179 return hns_roce_cmd_mbox_wait(hr_dev, in_param, out_param, 180 in_modifier, op_modifier, op, 181 timeout); 182 else 183 return hns_roce_cmd_mbox_poll(hr_dev, in_param, out_param, 184 in_modifier, op_modifier, op, 185 timeout); 186 } 187 EXPORT_SYMBOL_GPL(hns_roce_cmd_mbox); 188 189 int hns_roce_cmd_init(struct hns_roce_dev *hr_dev) 190 { 191 struct device *dev = hr_dev->dev; 192 193 mutex_init(&hr_dev->cmd.hcr_mutex); 194 sema_init(&hr_dev->cmd.poll_sem, 1); 195 hr_dev->cmd.use_events = 0; 196 hr_dev->cmd.toggle = 1; 197 hr_dev->cmd.max_cmds = CMD_MAX_NUM; 198 hr_dev->cmd.pool = dma_pool_create("hns_roce_cmd", dev, 199 HNS_ROCE_MAILBOX_SIZE, 200 HNS_ROCE_MAILBOX_SIZE, 0); 201 if (!hr_dev->cmd.pool) 202 return -ENOMEM; 203 204 return 0; 205 } 206 207 void hns_roce_cmd_cleanup(struct hns_roce_dev *hr_dev) 208 { 209 dma_pool_destroy(hr_dev->cmd.pool); 210 } 211 212 int hns_roce_cmd_use_events(struct hns_roce_dev *hr_dev) 213 { 214 struct hns_roce_cmdq *hr_cmd = &hr_dev->cmd; 215 int i; 216 217 hr_cmd->context = kmalloc_array(hr_cmd->max_cmds, 218 sizeof(*hr_cmd->context), 219 GFP_KERNEL); 220 if (!hr_cmd->context) 221 return -ENOMEM; 222 223 for (i = 0; i < hr_cmd->max_cmds; ++i) { 224 hr_cmd->context[i].token = i; 225 hr_cmd->context[i].next = i + 1; 226 } 227 228 hr_cmd->context[hr_cmd->max_cmds - 1].next = -1; 229 hr_cmd->free_head = 0; 230 231 sema_init(&hr_cmd->event_sem, hr_cmd->max_cmds); 232 spin_lock_init(&hr_cmd->context_lock); 233 234 hr_cmd->token_mask = CMD_TOKEN_MASK; 235 hr_cmd->use_events = 1; 236 237 down(&hr_cmd->poll_sem); 238 239 return 0; 240 } 241 242 void hns_roce_cmd_use_polling(struct hns_roce_dev *hr_dev) 243 { 244 struct hns_roce_cmdq *hr_cmd = &hr_dev->cmd; 245 int i; 246 247 hr_cmd->use_events = 0; 248 249 for (i = 0; i < hr_cmd->max_cmds; ++i) 250 down(&hr_cmd->event_sem); 251 252 kfree(hr_cmd->context); 253 up(&hr_cmd->poll_sem); 254 } 255 256 struct hns_roce_cmd_mailbox 257 *hns_roce_alloc_cmd_mailbox(struct hns_roce_dev *hr_dev) 258 { 259 struct hns_roce_cmd_mailbox *mailbox; 260 261 mailbox = kmalloc(sizeof(*mailbox), GFP_KERNEL); 262 if (!mailbox) 263 return ERR_PTR(-ENOMEM); 264 265 mailbox->buf = dma_pool_alloc(hr_dev->cmd.pool, GFP_KERNEL, 266 &mailbox->dma); 267 if (!mailbox->buf) { 268 kfree(mailbox); 269 return ERR_PTR(-ENOMEM); 270 } 271 272 return mailbox; 273 } 274 EXPORT_SYMBOL_GPL(hns_roce_alloc_cmd_mailbox); 275 276 void hns_roce_free_cmd_mailbox(struct hns_roce_dev *hr_dev, 277 struct hns_roce_cmd_mailbox *mailbox) 278 { 279 if (!mailbox) 280 return; 281 282 dma_pool_free(hr_dev->cmd.pool, mailbox->buf, mailbox->dma); 283 kfree(mailbox); 284 } 285 EXPORT_SYMBOL_GPL(hns_roce_free_cmd_mailbox); 286