1 /**
2  * This file is part of the Chelsio T4/T5/T6 Ethernet driver for Linux.
3  *
4  * Copyright (C) 2011-2016 Chelsio Communications.  All rights reserved.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation.
9  *
10  * Written and Maintained by:
11  * Manoj Malviya (manojmalviya@chelsio.com)
12  * Atul Gupta (atul.gupta@chelsio.com)
13  * Jitendra Lulla (jlulla@chelsio.com)
14  * Yeshaswi M R Gowda (yeshaswi@chelsio.com)
15  * Harsh Jain (harsh@chelsio.com)
16  */
17 
18 #include <linux/kernel.h>
19 #include <linux/module.h>
20 #include <linux/skbuff.h>
21 
22 #include <crypto/aes.h>
23 #include <crypto/hash.h>
24 
25 #include "t4_msg.h"
26 #include "chcr_core.h"
27 #include "cxgb4_uld.h"
28 
29 static LIST_HEAD(uld_ctx_list);
30 static DEFINE_MUTEX(dev_mutex);
31 static atomic_t dev_count;
32 static struct uld_ctx *ctx_rr;
33 
34 typedef int (*chcr_handler_func)(struct chcr_dev *dev, unsigned char *input);
35 static int cpl_fw6_pld_handler(struct chcr_dev *dev, unsigned char *input);
36 static void *chcr_uld_add(const struct cxgb4_lld_info *lld);
37 static int chcr_uld_state_change(void *handle, enum cxgb4_state state);
38 
39 static chcr_handler_func work_handlers[NUM_CPL_CMDS] = {
40 	[CPL_FW6_PLD] = cpl_fw6_pld_handler,
41 };
42 
43 static struct cxgb4_uld_info chcr_uld_info = {
44 	.name = DRV_MODULE_NAME,
45 	.nrxq = MAX_ULD_QSETS,
46 	.ntxq = MAX_ULD_QSETS,
47 	.rxq_size = 1024,
48 	.add = chcr_uld_add,
49 	.state_change = chcr_uld_state_change,
50 	.rx_handler = chcr_uld_rx_handler,
51 };
52 
53 struct uld_ctx *assign_chcr_device(void)
54 {
55 	struct uld_ctx *u_ctx = NULL;
56 
57 	/*
58 	 * When multiple devices are present in system select
59 	 * device in round-robin fashion for crypto operations
60 	 * Although One session must use the same device to
61 	 * maintain request-response ordering.
62 	 */
63 	mutex_lock(&dev_mutex);
64 	if (!list_empty(&uld_ctx_list)) {
65 		u_ctx = ctx_rr;
66 		if (list_is_last(&ctx_rr->entry, &uld_ctx_list))
67 			ctx_rr = list_first_entry(&uld_ctx_list,
68 						  struct uld_ctx,
69 						  entry);
70 		else
71 			ctx_rr = list_next_entry(ctx_rr, entry);
72 	}
73 	mutex_unlock(&dev_mutex);
74 	return u_ctx;
75 }
76 
77 static int chcr_dev_add(struct uld_ctx *u_ctx)
78 {
79 	struct chcr_dev *dev;
80 
81 	dev = kzalloc(sizeof(*dev), GFP_KERNEL);
82 	if (!dev)
83 		return -ENXIO;
84 
85 	spin_lock_init(&dev->lock_chcr_dev);
86 	u_ctx->dev = dev;
87 	dev->u_ctx = u_ctx;
88 	atomic_inc(&dev_count);
89 	mutex_lock(&dev_mutex);
90 	list_add_tail(&u_ctx->entry, &uld_ctx_list);
91 	if (!ctx_rr)
92 		ctx_rr = u_ctx;
93 	mutex_unlock(&dev_mutex);
94 	return 0;
95 }
96 
97 static int chcr_dev_remove(struct uld_ctx *u_ctx)
98 {
99 	if (ctx_rr == u_ctx) {
100 		if (list_is_last(&ctx_rr->entry, &uld_ctx_list))
101 			ctx_rr = list_first_entry(&uld_ctx_list,
102 						  struct uld_ctx,
103 						  entry);
104 		else
105 			ctx_rr = list_next_entry(ctx_rr, entry);
106 	}
107 	list_del(&u_ctx->entry);
108 	if (list_empty(&uld_ctx_list))
109 		ctx_rr = NULL;
110 	kfree(u_ctx->dev);
111 	u_ctx->dev = NULL;
112 	atomic_dec(&dev_count);
113 	return 0;
114 }
115 
116 static int cpl_fw6_pld_handler(struct chcr_dev *dev,
117 			       unsigned char *input)
118 {
119 	struct crypto_async_request *req;
120 	struct cpl_fw6_pld *fw6_pld;
121 	u32 ack_err_status = 0;
122 	int error_status = 0;
123 	struct adapter *adap = padap(dev);
124 
125 	fw6_pld = (struct cpl_fw6_pld *)input;
126 	req = (struct crypto_async_request *)(uintptr_t)be64_to_cpu(
127 						    fw6_pld->data[1]);
128 
129 	ack_err_status =
130 		ntohl(*(__be32 *)((unsigned char *)&fw6_pld->data[0] + 4));
131 	if (ack_err_status) {
132 		if (CHK_MAC_ERR_BIT(ack_err_status) ||
133 		    CHK_PAD_ERR_BIT(ack_err_status))
134 			error_status = -EBADMSG;
135 		atomic_inc(&adap->chcr_stats.error);
136 	}
137 	/* call completion callback with failure status */
138 	if (req) {
139 		error_status = chcr_handle_resp(req, input, error_status);
140 	} else {
141 		pr_err("Incorrect request address from the firmware\n");
142 		return -EFAULT;
143 	}
144 	return 0;
145 }
146 
147 int chcr_send_wr(struct sk_buff *skb)
148 {
149 	return cxgb4_crypto_send(skb->dev, skb);
150 }
151 
152 static void *chcr_uld_add(const struct cxgb4_lld_info *lld)
153 {
154 	struct uld_ctx *u_ctx;
155 
156 	/* Create the device and add it in the device list */
157 	if (!(lld->ulp_crypto & ULP_CRYPTO_LOOKASIDE))
158 		return ERR_PTR(-EOPNOTSUPP);
159 
160 	/* Create the device and add it in the device list */
161 	u_ctx = kzalloc(sizeof(*u_ctx), GFP_KERNEL);
162 	if (!u_ctx) {
163 		u_ctx = ERR_PTR(-ENOMEM);
164 		goto out;
165 	}
166 	u_ctx->lldi = *lld;
167 out:
168 	return u_ctx;
169 }
170 
171 int chcr_uld_rx_handler(void *handle, const __be64 *rsp,
172 			const struct pkt_gl *pgl)
173 {
174 	struct uld_ctx *u_ctx = (struct uld_ctx *)handle;
175 	struct chcr_dev *dev = u_ctx->dev;
176 	const struct cpl_fw6_pld *rpl = (struct cpl_fw6_pld *)rsp;
177 
178 	if (rpl->opcode != CPL_FW6_PLD) {
179 		pr_err("Unsupported opcode\n");
180 		return 0;
181 	}
182 
183 	if (!pgl)
184 		work_handlers[rpl->opcode](dev, (unsigned char *)&rsp[1]);
185 	else
186 		work_handlers[rpl->opcode](dev, pgl->va);
187 	return 0;
188 }
189 
190 static int chcr_uld_state_change(void *handle, enum cxgb4_state state)
191 {
192 	struct uld_ctx *u_ctx = handle;
193 	int ret = 0;
194 
195 	switch (state) {
196 	case CXGB4_STATE_UP:
197 		if (!u_ctx->dev) {
198 			ret = chcr_dev_add(u_ctx);
199 			if (ret != 0)
200 				return ret;
201 		}
202 		if (atomic_read(&dev_count) == 1)
203 			ret = start_crypto();
204 		break;
205 
206 	case CXGB4_STATE_DETACH:
207 		if (u_ctx->dev) {
208 			mutex_lock(&dev_mutex);
209 			chcr_dev_remove(u_ctx);
210 			mutex_unlock(&dev_mutex);
211 		}
212 		if (!atomic_read(&dev_count))
213 			stop_crypto();
214 		break;
215 
216 	case CXGB4_STATE_START_RECOVERY:
217 	case CXGB4_STATE_DOWN:
218 	default:
219 		break;
220 	}
221 	return ret;
222 }
223 
224 static int __init chcr_crypto_init(void)
225 {
226 	if (cxgb4_register_uld(CXGB4_ULD_CRYPTO, &chcr_uld_info))
227 		pr_err("ULD register fail: No chcr crypto support in cxgb4\n");
228 
229 	return 0;
230 }
231 
232 static void __exit chcr_crypto_exit(void)
233 {
234 	struct uld_ctx *u_ctx, *tmp;
235 
236 	if (atomic_read(&dev_count))
237 		stop_crypto();
238 
239 	/* Remove all devices from list */
240 	mutex_lock(&dev_mutex);
241 	list_for_each_entry_safe(u_ctx, tmp, &uld_ctx_list, entry) {
242 		if (u_ctx->dev)
243 			chcr_dev_remove(u_ctx);
244 		kfree(u_ctx);
245 	}
246 	mutex_unlock(&dev_mutex);
247 	cxgb4_unregister_uld(CXGB4_ULD_CRYPTO);
248 }
249 
250 module_init(chcr_crypto_init);
251 module_exit(chcr_crypto_exit);
252 
253 MODULE_DESCRIPTION("Crypto Co-processor for Chelsio Terminator cards.");
254 MODULE_LICENSE("GPL");
255 MODULE_AUTHOR("Chelsio Communications");
256 MODULE_VERSION(DRV_VERSION);
257