xref: /OK3568_Linux_fs/kernel/drivers/infiniband/hw/hfi1/exp_rcv.c (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun /*
2*4882a593Smuzhiyun  * Copyright(c) 2017 Intel Corporation.
3*4882a593Smuzhiyun  *
4*4882a593Smuzhiyun  * This file is provided under a dual BSD/GPLv2 license.  When using or
5*4882a593Smuzhiyun  * redistributing this file, you may do so under either license.
6*4882a593Smuzhiyun  *
7*4882a593Smuzhiyun  * GPL LICENSE SUMMARY
8*4882a593Smuzhiyun  *
9*4882a593Smuzhiyun  * This program is free software; you can redistribute it and/or modify
10*4882a593Smuzhiyun  * it under the terms of version 2 of the GNU General Public License as
11*4882a593Smuzhiyun  * published by the Free Software Foundation.
12*4882a593Smuzhiyun  *
13*4882a593Smuzhiyun  * This program is distributed in the hope that it will be useful, but
14*4882a593Smuzhiyun  * WITHOUT ANY WARRANTY; without even the implied warranty of
15*4882a593Smuzhiyun  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16*4882a593Smuzhiyun  * General Public License for more details.
17*4882a593Smuzhiyun  *
18*4882a593Smuzhiyun  * BSD LICENSE
19*4882a593Smuzhiyun  *
20*4882a593Smuzhiyun  * Redistribution and use in source and binary forms, with or without
21*4882a593Smuzhiyun  * modification, are permitted provided that the following conditions
22*4882a593Smuzhiyun  * are met:
23*4882a593Smuzhiyun  *
24*4882a593Smuzhiyun  *  - Redistributions of source code must retain the above copyright
25*4882a593Smuzhiyun  *    notice, this list of conditions and the following disclaimer.
26*4882a593Smuzhiyun  *  - Redistributions in binary form must reproduce the above copyright
27*4882a593Smuzhiyun  *    notice, this list of conditions and the following disclaimer in
28*4882a593Smuzhiyun  *    the documentation and/or other materials provided with the
29*4882a593Smuzhiyun  *    distribution.
30*4882a593Smuzhiyun  *  - Neither the name of Intel Corporation nor the names of its
31*4882a593Smuzhiyun  *    contributors may be used to endorse or promote products derived
32*4882a593Smuzhiyun  *    from this software without specific prior written permission.
33*4882a593Smuzhiyun  *
34*4882a593Smuzhiyun  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
35*4882a593Smuzhiyun  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
36*4882a593Smuzhiyun  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
37*4882a593Smuzhiyun  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
38*4882a593Smuzhiyun  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
39*4882a593Smuzhiyun  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
40*4882a593Smuzhiyun  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
41*4882a593Smuzhiyun  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
42*4882a593Smuzhiyun  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
43*4882a593Smuzhiyun  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
44*4882a593Smuzhiyun  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
45*4882a593Smuzhiyun  *
46*4882a593Smuzhiyun  */
47*4882a593Smuzhiyun 
48*4882a593Smuzhiyun #include "exp_rcv.h"
49*4882a593Smuzhiyun #include "trace.h"
50*4882a593Smuzhiyun 
51*4882a593Smuzhiyun /**
52*4882a593Smuzhiyun  * exp_tid_group_init - initialize exp_tid_set
53*4882a593Smuzhiyun  * @set - the set
54*4882a593Smuzhiyun  */
hfi1_exp_tid_set_init(struct exp_tid_set * set)55*4882a593Smuzhiyun static void hfi1_exp_tid_set_init(struct exp_tid_set *set)
56*4882a593Smuzhiyun {
57*4882a593Smuzhiyun 	INIT_LIST_HEAD(&set->list);
58*4882a593Smuzhiyun 	set->count = 0;
59*4882a593Smuzhiyun }
60*4882a593Smuzhiyun 
61*4882a593Smuzhiyun /**
62*4882a593Smuzhiyun  * hfi1_exp_tid_group_init - initialize rcd expected receive
63*4882a593Smuzhiyun  * @rcd - the rcd
64*4882a593Smuzhiyun  */
hfi1_exp_tid_group_init(struct hfi1_ctxtdata * rcd)65*4882a593Smuzhiyun void hfi1_exp_tid_group_init(struct hfi1_ctxtdata *rcd)
66*4882a593Smuzhiyun {
67*4882a593Smuzhiyun 	hfi1_exp_tid_set_init(&rcd->tid_group_list);
68*4882a593Smuzhiyun 	hfi1_exp_tid_set_init(&rcd->tid_used_list);
69*4882a593Smuzhiyun 	hfi1_exp_tid_set_init(&rcd->tid_full_list);
70*4882a593Smuzhiyun }
71*4882a593Smuzhiyun 
72*4882a593Smuzhiyun /**
73*4882a593Smuzhiyun  * alloc_ctxt_rcv_groups - initialize expected receive groups
74*4882a593Smuzhiyun  * @rcd - the context to add the groupings to
75*4882a593Smuzhiyun  */
hfi1_alloc_ctxt_rcv_groups(struct hfi1_ctxtdata * rcd)76*4882a593Smuzhiyun int hfi1_alloc_ctxt_rcv_groups(struct hfi1_ctxtdata *rcd)
77*4882a593Smuzhiyun {
78*4882a593Smuzhiyun 	struct hfi1_devdata *dd = rcd->dd;
79*4882a593Smuzhiyun 	u32 tidbase;
80*4882a593Smuzhiyun 	struct tid_group *grp;
81*4882a593Smuzhiyun 	int i;
82*4882a593Smuzhiyun 	u32 ngroups;
83*4882a593Smuzhiyun 
84*4882a593Smuzhiyun 	ngroups = rcd->expected_count / dd->rcv_entries.group_size;
85*4882a593Smuzhiyun 	rcd->groups =
86*4882a593Smuzhiyun 		kcalloc_node(ngroups, sizeof(*rcd->groups),
87*4882a593Smuzhiyun 			     GFP_KERNEL, rcd->numa_id);
88*4882a593Smuzhiyun 	if (!rcd->groups)
89*4882a593Smuzhiyun 		return -ENOMEM;
90*4882a593Smuzhiyun 	tidbase = rcd->expected_base;
91*4882a593Smuzhiyun 	for (i = 0; i < ngroups; i++) {
92*4882a593Smuzhiyun 		grp = &rcd->groups[i];
93*4882a593Smuzhiyun 		grp->size = dd->rcv_entries.group_size;
94*4882a593Smuzhiyun 		grp->base = tidbase;
95*4882a593Smuzhiyun 		tid_group_add_tail(grp, &rcd->tid_group_list);
96*4882a593Smuzhiyun 		tidbase += dd->rcv_entries.group_size;
97*4882a593Smuzhiyun 	}
98*4882a593Smuzhiyun 
99*4882a593Smuzhiyun 	return 0;
100*4882a593Smuzhiyun }
101*4882a593Smuzhiyun 
102*4882a593Smuzhiyun /**
103*4882a593Smuzhiyun  * free_ctxt_rcv_groups - free  expected receive groups
104*4882a593Smuzhiyun  * @rcd - the context to free
105*4882a593Smuzhiyun  *
106*4882a593Smuzhiyun  * The routine dismantles the expect receive linked
107*4882a593Smuzhiyun  * list and clears any tids associated with the receive
108*4882a593Smuzhiyun  * context.
109*4882a593Smuzhiyun  *
110*4882a593Smuzhiyun  * This should only be called for kernel contexts and the
111*4882a593Smuzhiyun  * a base user context.
112*4882a593Smuzhiyun  */
hfi1_free_ctxt_rcv_groups(struct hfi1_ctxtdata * rcd)113*4882a593Smuzhiyun void hfi1_free_ctxt_rcv_groups(struct hfi1_ctxtdata *rcd)
114*4882a593Smuzhiyun {
115*4882a593Smuzhiyun 	kfree(rcd->groups);
116*4882a593Smuzhiyun 	rcd->groups = NULL;
117*4882a593Smuzhiyun 	hfi1_exp_tid_group_init(rcd);
118*4882a593Smuzhiyun 
119*4882a593Smuzhiyun 	hfi1_clear_tids(rcd);
120*4882a593Smuzhiyun }
121