| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 1 | /* | 
 | 2 |  * Copyright (C) ST-Ericsson AB 2010 | 
 | 3 |  * Author:	Sjur Brendeland/sjur.brandeland@stericsson.com | 
 | 4 |  * License terms: GNU General Public License (GPL) version 2 | 
 | 5 |  */ | 
 | 6 |  | 
| Joe Perches | b31fa5b | 2010-09-05 21:31:11 +0000 | [diff] [blame] | 7 | #define pr_fmt(fmt) KBUILD_MODNAME ":%s(): " fmt, __func__ | 
 | 8 |  | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 9 | #include <linux/stddef.h> | 
 | 10 | #include <linux/spinlock.h> | 
 | 11 | #include <linux/slab.h> | 
 | 12 | #include <net/caif/caif_layer.h> | 
 | 13 | #include <net/caif/cfpkt.h> | 
 | 14 | #include <net/caif/cfctrl.h> | 
 | 15 |  | 
 | 16 | #define container_obj(layr) container_of(layr, struct cfctrl, serv.layer) | 
 | 17 | #define UTILITY_NAME_LENGTH 16 | 
 | 18 | #define CFPKT_CTRL_PKT_LEN 20 | 
 | 19 |  | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 20 | #ifdef CAIF_NO_LOOP | 
 | 21 | static int handle_loop(struct cfctrl *ctrl, | 
 | 22 | 			      int cmd, struct cfpkt *pkt){ | 
| Sjur Braendeland | 2aa40ae | 2010-06-17 06:55:40 +0000 | [diff] [blame] | 23 | 	return -1; | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 24 | } | 
 | 25 | #else | 
 | 26 | static int handle_loop(struct cfctrl *ctrl, | 
 | 27 | 		int cmd, struct cfpkt *pkt); | 
 | 28 | #endif | 
 | 29 | static int cfctrl_recv(struct cflayer *layr, struct cfpkt *pkt); | 
 | 30 | static void cfctrl_ctrlcmd(struct cflayer *layr, enum caif_ctrlcmd ctrl, | 
 | 31 | 			   int phyid); | 
 | 32 |  | 
 | 33 |  | 
 | 34 | struct cflayer *cfctrl_create(void) | 
 | 35 | { | 
| Sjur Braendeland | 8d545c8 | 2010-04-28 08:54:37 +0000 | [diff] [blame] | 36 | 	struct dev_info dev_info; | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 37 | 	struct cfctrl *this = | 
 | 38 | 		kmalloc(sizeof(struct cfctrl), GFP_ATOMIC); | 
 | 39 | 	if (!this) { | 
| Joe Perches | b31fa5b | 2010-09-05 21:31:11 +0000 | [diff] [blame] | 40 | 		pr_warn("Out of memory\n"); | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 41 | 		return NULL; | 
 | 42 | 	} | 
 | 43 | 	caif_assert(offsetof(struct cfctrl, serv.layer) == 0); | 
| Sjur Braendeland | 8d545c8 | 2010-04-28 08:54:37 +0000 | [diff] [blame] | 44 | 	memset(&dev_info, 0, sizeof(dev_info)); | 
 | 45 | 	dev_info.id = 0xff; | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 46 | 	memset(this, 0, sizeof(*this)); | 
| Sjur Braendeland | b1c7424 | 2010-06-17 06:55:38 +0000 | [diff] [blame] | 47 | 	cfsrvl_init(&this->serv, 0, &dev_info, false); | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 48 | 	atomic_set(&this->req_seq_no, 1); | 
 | 49 | 	atomic_set(&this->rsp_seq_no, 1); | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 50 | 	this->serv.layer.receive = cfctrl_recv; | 
 | 51 | 	sprintf(this->serv.layer.name, "ctrl"); | 
 | 52 | 	this->serv.layer.ctrlcmd = cfctrl_ctrlcmd; | 
| sjur.brandeland@stericsson.com | c85c295 | 2011-05-13 02:44:06 +0000 | [diff] [blame] | 53 | #ifndef CAIF_NO_LOOP | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 54 | 	spin_lock_init(&this->loop_linkid_lock); | 
| sjur.brandeland@stericsson.com | c85c295 | 2011-05-13 02:44:06 +0000 | [diff] [blame] | 55 | 	this->loop_linkid = 1; | 
 | 56 | #endif | 
| Sjur Braendeland | 7aecf49 | 2010-05-21 02:16:08 +0000 | [diff] [blame] | 57 | 	spin_lock_init(&this->info_list_lock); | 
 | 58 | 	INIT_LIST_HEAD(&this->list); | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 59 | 	return &this->serv.layer; | 
 | 60 | } | 
 | 61 |  | 
| sjur.brandeland@stericsson.com | c85c295 | 2011-05-13 02:44:06 +0000 | [diff] [blame] | 62 | void cfctrl_remove(struct cflayer *layer) | 
 | 63 | { | 
 | 64 | 	struct cfctrl_request_info *p, *tmp; | 
 | 65 | 	struct cfctrl *ctrl = container_obj(layer); | 
 | 66 |  | 
 | 67 | 	spin_lock_bh(&ctrl->info_list_lock); | 
 | 68 | 	list_for_each_entry_safe(p, tmp, &ctrl->list, list) { | 
 | 69 | 		list_del(&p->list); | 
 | 70 | 		kfree(p); | 
 | 71 | 	} | 
 | 72 | 	spin_unlock_bh(&ctrl->info_list_lock); | 
 | 73 | 	kfree(layer); | 
 | 74 | } | 
 | 75 |  | 
| Stephen Hemminger | 73d6ac6 | 2011-04-11 10:43:50 +0000 | [diff] [blame] | 76 | static bool param_eq(const struct cfctrl_link_param *p1, | 
 | 77 | 			const struct cfctrl_link_param *p2) | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 78 | { | 
 | 79 | 	bool eq = | 
 | 80 | 	    p1->linktype == p2->linktype && | 
 | 81 | 	    p1->priority == p2->priority && | 
 | 82 | 	    p1->phyid == p2->phyid && | 
 | 83 | 	    p1->endpoint == p2->endpoint && p1->chtype == p2->chtype; | 
 | 84 |  | 
 | 85 | 	if (!eq) | 
 | 86 | 		return false; | 
 | 87 |  | 
 | 88 | 	switch (p1->linktype) { | 
 | 89 | 	case CFCTRL_SRV_VEI: | 
 | 90 | 		return true; | 
 | 91 | 	case CFCTRL_SRV_DATAGRAM: | 
 | 92 | 		return p1->u.datagram.connid == p2->u.datagram.connid; | 
 | 93 | 	case CFCTRL_SRV_RFM: | 
 | 94 | 		return | 
 | 95 | 		    p1->u.rfm.connid == p2->u.rfm.connid && | 
 | 96 | 		    strcmp(p1->u.rfm.volume, p2->u.rfm.volume) == 0; | 
 | 97 | 	case CFCTRL_SRV_UTIL: | 
 | 98 | 		return | 
 | 99 | 		    p1->u.utility.fifosize_kb == p2->u.utility.fifosize_kb | 
 | 100 | 		    && p1->u.utility.fifosize_bufs == | 
 | 101 | 		    p2->u.utility.fifosize_bufs | 
 | 102 | 		    && strcmp(p1->u.utility.name, p2->u.utility.name) == 0 | 
 | 103 | 		    && p1->u.utility.paramlen == p2->u.utility.paramlen | 
 | 104 | 		    && memcmp(p1->u.utility.params, p2->u.utility.params, | 
 | 105 | 			      p1->u.utility.paramlen) == 0; | 
 | 106 |  | 
 | 107 | 	case CFCTRL_SRV_VIDEO: | 
 | 108 | 		return p1->u.video.connid == p2->u.video.connid; | 
 | 109 | 	case CFCTRL_SRV_DBG: | 
 | 110 | 		return true; | 
 | 111 | 	case CFCTRL_SRV_DECM: | 
 | 112 | 		return false; | 
 | 113 | 	default: | 
 | 114 | 		return false; | 
 | 115 | 	} | 
 | 116 | 	return false; | 
 | 117 | } | 
 | 118 |  | 
| Stephen Hemminger | 73d6ac6 | 2011-04-11 10:43:50 +0000 | [diff] [blame] | 119 | static bool cfctrl_req_eq(const struct cfctrl_request_info *r1, | 
 | 120 | 			  const struct cfctrl_request_info *r2) | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 121 | { | 
 | 122 | 	if (r1->cmd != r2->cmd) | 
 | 123 | 		return false; | 
 | 124 | 	if (r1->cmd == CFCTRL_CMD_LINK_SETUP) | 
 | 125 | 		return param_eq(&r1->param, &r2->param); | 
 | 126 | 	else | 
 | 127 | 		return r1->channel_id == r2->channel_id; | 
 | 128 | } | 
 | 129 |  | 
 | 130 | /* Insert request at the end */ | 
| Stephen Hemminger | 73d6ac6 | 2011-04-11 10:43:50 +0000 | [diff] [blame] | 131 | static void cfctrl_insert_req(struct cfctrl *ctrl, | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 132 | 			      struct cfctrl_request_info *req) | 
 | 133 | { | 
| sjur.brandeland@stericsson.com | c85c295 | 2011-05-13 02:44:06 +0000 | [diff] [blame] | 134 | 	spin_lock_bh(&ctrl->info_list_lock); | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 135 | 	atomic_inc(&ctrl->req_seq_no); | 
 | 136 | 	req->sequence_no = atomic_read(&ctrl->req_seq_no); | 
| Sjur Braendeland | 7aecf49 | 2010-05-21 02:16:08 +0000 | [diff] [blame] | 137 | 	list_add_tail(&req->list, &ctrl->list); | 
| sjur.brandeland@stericsson.com | c85c295 | 2011-05-13 02:44:06 +0000 | [diff] [blame] | 138 | 	spin_unlock_bh(&ctrl->info_list_lock); | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 139 | } | 
 | 140 |  | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 141 | /* Compare and remove request */ | 
| Stephen Hemminger | 73d6ac6 | 2011-04-11 10:43:50 +0000 | [diff] [blame] | 142 | static struct cfctrl_request_info *cfctrl_remove_req(struct cfctrl *ctrl, | 
 | 143 | 						struct cfctrl_request_info *req) | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 144 | { | 
| Sjur Braendeland | 7aecf49 | 2010-05-21 02:16:08 +0000 | [diff] [blame] | 145 | 	struct cfctrl_request_info *p, *tmp, *first; | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 146 |  | 
| Sjur Braendeland | 7aecf49 | 2010-05-21 02:16:08 +0000 | [diff] [blame] | 147 | 	first = list_first_entry(&ctrl->list, struct cfctrl_request_info, list); | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 148 |  | 
| Sjur Braendeland | 7aecf49 | 2010-05-21 02:16:08 +0000 | [diff] [blame] | 149 | 	list_for_each_entry_safe(p, tmp, &ctrl->list, list) { | 
 | 150 | 		if (cfctrl_req_eq(req, p)) { | 
 | 151 | 			if (p != first) | 
| Joe Perches | b31fa5b | 2010-09-05 21:31:11 +0000 | [diff] [blame] | 152 | 				pr_warn("Requests are not received in order\n"); | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 153 |  | 
| Sjur Braendeland | 7aecf49 | 2010-05-21 02:16:08 +0000 | [diff] [blame] | 154 | 			atomic_set(&ctrl->rsp_seq_no, | 
 | 155 | 					 p->sequence_no); | 
 | 156 | 			list_del(&p->list); | 
 | 157 | 			goto out; | 
 | 158 | 		} | 
 | 159 | 	} | 
 | 160 | 	p = NULL; | 
 | 161 | out: | 
| Sjur Braendeland | 7aecf49 | 2010-05-21 02:16:08 +0000 | [diff] [blame] | 162 | 	return p; | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 163 | } | 
 | 164 |  | 
 | 165 | struct cfctrl_rsp *cfctrl_get_respfuncs(struct cflayer *layer) | 
 | 166 | { | 
 | 167 | 	struct cfctrl *this = container_obj(layer); | 
 | 168 | 	return &this->res; | 
 | 169 | } | 
 | 170 |  | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 171 | static void init_info(struct caif_payload_info *info, struct cfctrl *cfctrl) | 
 | 172 | { | 
 | 173 | 	info->hdr_len = 0; | 
 | 174 | 	info->channel_id = cfctrl->serv.layer.id; | 
 | 175 | 	info->dev_info = &cfctrl->serv.dev_info; | 
 | 176 | } | 
 | 177 |  | 
 | 178 | void cfctrl_enum_req(struct cflayer *layer, u8 physlinkid) | 
 | 179 | { | 
 | 180 | 	struct cfctrl *cfctrl = container_obj(layer); | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 181 | 	struct cfpkt *pkt = cfpkt_create(CFPKT_CTRL_PKT_LEN); | 
| sjur.brandeland@stericsson.com | 0e5a117 | 2011-05-22 11:18:50 +0000 | [diff] [blame] | 182 | 	struct cflayer *dn = cfctrl->serv.layer.dn; | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 183 | 	if (!pkt) { | 
| Joe Perches | b31fa5b | 2010-09-05 21:31:11 +0000 | [diff] [blame] | 184 | 		pr_warn("Out of memory\n"); | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 185 | 		return; | 
 | 186 | 	} | 
| sjur.brandeland@stericsson.com | 0e5a117 | 2011-05-22 11:18:50 +0000 | [diff] [blame] | 187 | 	if (!dn) { | 
 | 188 | 		pr_debug("not able to send enum request\n"); | 
 | 189 | 		return; | 
 | 190 | 	} | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 191 | 	caif_assert(offsetof(struct cfctrl, serv.layer) == 0); | 
 | 192 | 	init_info(cfpkt_info(pkt), cfctrl); | 
 | 193 | 	cfpkt_info(pkt)->dev_info->id = physlinkid; | 
 | 194 | 	cfctrl->serv.dev_info.id = physlinkid; | 
 | 195 | 	cfpkt_addbdy(pkt, CFCTRL_CMD_ENUM); | 
 | 196 | 	cfpkt_addbdy(pkt, physlinkid); | 
| sjur.brandeland@stericsson.com | 0e5a117 | 2011-05-22 11:18:50 +0000 | [diff] [blame] | 197 | 	dn->transmit(dn, pkt); | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 198 | } | 
 | 199 |  | 
| Sjur Braendeland | 8d545c8 | 2010-04-28 08:54:37 +0000 | [diff] [blame] | 200 | int cfctrl_linkup_request(struct cflayer *layer, | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 201 | 			   struct cfctrl_link_param *param, | 
 | 202 | 			   struct cflayer *user_layer) | 
 | 203 | { | 
 | 204 | 	struct cfctrl *cfctrl = container_obj(layer); | 
 | 205 | 	u32 tmp32; | 
 | 206 | 	u16 tmp16; | 
 | 207 | 	u8 tmp8; | 
 | 208 | 	struct cfctrl_request_info *req; | 
 | 209 | 	int ret; | 
 | 210 | 	char utility_name[16]; | 
| sjur.brandeland@stericsson.com | c85c295 | 2011-05-13 02:44:06 +0000 | [diff] [blame] | 211 | 	struct cfpkt *pkt; | 
| sjur.brandeland@stericsson.com | 0e5a117 | 2011-05-22 11:18:50 +0000 | [diff] [blame] | 212 | 	struct cflayer *dn = cfctrl->serv.layer.dn; | 
 | 213 |  | 
 | 214 | 	if (!dn) { | 
 | 215 | 		pr_debug("not able to send linkup request\n"); | 
 | 216 | 		return -ENODEV; | 
 | 217 | 	} | 
| sjur.brandeland@stericsson.com | c85c295 | 2011-05-13 02:44:06 +0000 | [diff] [blame] | 218 |  | 
 | 219 | 	if (cfctrl_cancel_req(layer, user_layer) > 0) { | 
 | 220 | 		/* Slight Paranoia, check if already connecting */ | 
 | 221 | 		pr_err("Duplicate connect request for same client\n"); | 
 | 222 | 		WARN_ON(1); | 
 | 223 | 		return -EALREADY; | 
 | 224 | 	} | 
 | 225 |  | 
 | 226 | 	pkt = cfpkt_create(CFPKT_CTRL_PKT_LEN); | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 227 | 	if (!pkt) { | 
| Joe Perches | b31fa5b | 2010-09-05 21:31:11 +0000 | [diff] [blame] | 228 | 		pr_warn("Out of memory\n"); | 
| Sjur Braendeland | 8d545c8 | 2010-04-28 08:54:37 +0000 | [diff] [blame] | 229 | 		return -ENOMEM; | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 230 | 	} | 
 | 231 | 	cfpkt_addbdy(pkt, CFCTRL_CMD_LINK_SETUP); | 
| sjur.brandeland@stericsson.com | c85c295 | 2011-05-13 02:44:06 +0000 | [diff] [blame] | 232 | 	cfpkt_addbdy(pkt, (param->chtype << 4) | param->linktype); | 
 | 233 | 	cfpkt_addbdy(pkt, (param->priority << 3) | param->phyid); | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 234 | 	cfpkt_addbdy(pkt, param->endpoint & 0x03); | 
 | 235 |  | 
 | 236 | 	switch (param->linktype) { | 
 | 237 | 	case CFCTRL_SRV_VEI: | 
 | 238 | 		break; | 
 | 239 | 	case CFCTRL_SRV_VIDEO: | 
 | 240 | 		cfpkt_addbdy(pkt, (u8) param->u.video.connid); | 
 | 241 | 		break; | 
 | 242 | 	case CFCTRL_SRV_DBG: | 
 | 243 | 		break; | 
 | 244 | 	case CFCTRL_SRV_DATAGRAM: | 
 | 245 | 		tmp32 = cpu_to_le32(param->u.datagram.connid); | 
 | 246 | 		cfpkt_add_body(pkt, &tmp32, 4); | 
 | 247 | 		break; | 
 | 248 | 	case CFCTRL_SRV_RFM: | 
 | 249 | 		/* Construct a frame, convert DatagramConnectionID to network | 
 | 250 | 		 * format long and copy it out... | 
 | 251 | 		 */ | 
 | 252 | 		tmp32 = cpu_to_le32(param->u.rfm.connid); | 
 | 253 | 		cfpkt_add_body(pkt, &tmp32, 4); | 
 | 254 | 		/* Add volume name, including zero termination... */ | 
 | 255 | 		cfpkt_add_body(pkt, param->u.rfm.volume, | 
 | 256 | 			       strlen(param->u.rfm.volume) + 1); | 
 | 257 | 		break; | 
 | 258 | 	case CFCTRL_SRV_UTIL: | 
 | 259 | 		tmp16 = cpu_to_le16(param->u.utility.fifosize_kb); | 
 | 260 | 		cfpkt_add_body(pkt, &tmp16, 2); | 
 | 261 | 		tmp16 = cpu_to_le16(param->u.utility.fifosize_bufs); | 
 | 262 | 		cfpkt_add_body(pkt, &tmp16, 2); | 
 | 263 | 		memset(utility_name, 0, sizeof(utility_name)); | 
 | 264 | 		strncpy(utility_name, param->u.utility.name, | 
 | 265 | 			UTILITY_NAME_LENGTH - 1); | 
 | 266 | 		cfpkt_add_body(pkt, utility_name, UTILITY_NAME_LENGTH); | 
 | 267 | 		tmp8 = param->u.utility.paramlen; | 
 | 268 | 		cfpkt_add_body(pkt, &tmp8, 1); | 
 | 269 | 		cfpkt_add_body(pkt, param->u.utility.params, | 
 | 270 | 			       param->u.utility.paramlen); | 
 | 271 | 		break; | 
 | 272 | 	default: | 
| Joe Perches | b31fa5b | 2010-09-05 21:31:11 +0000 | [diff] [blame] | 273 | 		pr_warn("Request setup of bad link type = %d\n", | 
 | 274 | 			param->linktype); | 
| Sjur Braendeland | 8d545c8 | 2010-04-28 08:54:37 +0000 | [diff] [blame] | 275 | 		return -EINVAL; | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 276 | 	} | 
| Julia Lawall | 49afa55 | 2010-05-13 10:03:32 +0000 | [diff] [blame] | 277 | 	req = kzalloc(sizeof(*req), GFP_KERNEL); | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 278 | 	if (!req) { | 
| Joe Perches | b31fa5b | 2010-09-05 21:31:11 +0000 | [diff] [blame] | 279 | 		pr_warn("Out of memory\n"); | 
| Sjur Braendeland | 8d545c8 | 2010-04-28 08:54:37 +0000 | [diff] [blame] | 280 | 		return -ENOMEM; | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 281 | 	} | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 282 | 	req->client_layer = user_layer; | 
 | 283 | 	req->cmd = CFCTRL_CMD_LINK_SETUP; | 
 | 284 | 	req->param = *param; | 
 | 285 | 	cfctrl_insert_req(cfctrl, req); | 
 | 286 | 	init_info(cfpkt_info(pkt), cfctrl); | 
| Sjur Braendeland | 8d545c8 | 2010-04-28 08:54:37 +0000 | [diff] [blame] | 287 | 	/* | 
 | 288 | 	 * NOTE:Always send linkup and linkdown request on the same | 
 | 289 | 	 *	device as the payload. Otherwise old queued up payload | 
 | 290 | 	 *	might arrive with the newly allocated channel ID. | 
 | 291 | 	 */ | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 292 | 	cfpkt_info(pkt)->dev_info->id = param->phyid; | 
 | 293 | 	ret = | 
| sjur.brandeland@stericsson.com | 0e5a117 | 2011-05-22 11:18:50 +0000 | [diff] [blame] | 294 | 	    dn->transmit(dn, pkt); | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 295 | 	if (ret < 0) { | 
| sjur.brandeland@stericsson.com | c85c295 | 2011-05-13 02:44:06 +0000 | [diff] [blame] | 296 | 		int count; | 
 | 297 |  | 
 | 298 | 		count = cfctrl_cancel_req(&cfctrl->serv.layer, | 
 | 299 | 						user_layer); | 
 | 300 | 		if (count != 1) | 
 | 301 | 			pr_err("Could not remove request (%d)", count); | 
 | 302 | 			return -ENODEV; | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 303 | 	} | 
| Sjur Braendeland | 8d545c8 | 2010-04-28 08:54:37 +0000 | [diff] [blame] | 304 | 	return 0; | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 305 | } | 
 | 306 |  | 
 | 307 | int cfctrl_linkdown_req(struct cflayer *layer, u8 channelid, | 
 | 308 | 				struct cflayer *client) | 
 | 309 | { | 
 | 310 | 	int ret; | 
 | 311 | 	struct cfctrl *cfctrl = container_obj(layer); | 
 | 312 | 	struct cfpkt *pkt = cfpkt_create(CFPKT_CTRL_PKT_LEN); | 
| sjur.brandeland@stericsson.com | 0e5a117 | 2011-05-22 11:18:50 +0000 | [diff] [blame] | 313 | 	struct cflayer *dn = cfctrl->serv.layer.dn; | 
 | 314 |  | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 315 | 	if (!pkt) { | 
| Joe Perches | b31fa5b | 2010-09-05 21:31:11 +0000 | [diff] [blame] | 316 | 		pr_warn("Out of memory\n"); | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 317 | 		return -ENOMEM; | 
 | 318 | 	} | 
| sjur.brandeland@stericsson.com | 0e5a117 | 2011-05-22 11:18:50 +0000 | [diff] [blame] | 319 |  | 
 | 320 | 	if (!dn) { | 
 | 321 | 		pr_debug("not able to send link-down request\n"); | 
 | 322 | 		return -ENODEV; | 
 | 323 | 	} | 
 | 324 |  | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 325 | 	cfpkt_addbdy(pkt, CFCTRL_CMD_LINK_DESTROY); | 
 | 326 | 	cfpkt_addbdy(pkt, channelid); | 
 | 327 | 	init_info(cfpkt_info(pkt), cfctrl); | 
 | 328 | 	ret = | 
| sjur.brandeland@stericsson.com | 0e5a117 | 2011-05-22 11:18:50 +0000 | [diff] [blame] | 329 | 	    dn->transmit(dn, pkt); | 
| sjur.brandeland@stericsson.com | c85c295 | 2011-05-13 02:44:06 +0000 | [diff] [blame] | 330 | #ifndef CAIF_NO_LOOP | 
 | 331 | 	cfctrl->loop_linkused[channelid] = 0; | 
 | 332 | #endif | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 333 | 	return ret; | 
 | 334 | } | 
 | 335 |  | 
| sjur.brandeland@stericsson.com | c85c295 | 2011-05-13 02:44:06 +0000 | [diff] [blame] | 336 | int cfctrl_cancel_req(struct cflayer *layr, struct cflayer *adap_layer) | 
| Sjur Braendeland | 8d545c8 | 2010-04-28 08:54:37 +0000 | [diff] [blame] | 337 | { | 
| Sjur Braendeland | 7aecf49 | 2010-05-21 02:16:08 +0000 | [diff] [blame] | 338 | 	struct cfctrl_request_info *p, *tmp; | 
| Sjur Braendeland | 8d545c8 | 2010-04-28 08:54:37 +0000 | [diff] [blame] | 339 | 	struct cfctrl *ctrl = container_obj(layr); | 
| sjur.brandeland@stericsson.com | c85c295 | 2011-05-13 02:44:06 +0000 | [diff] [blame] | 340 | 	int found = 0; | 
 | 341 | 	spin_lock_bh(&ctrl->info_list_lock); | 
| Sjur Braendeland | 8d545c8 | 2010-04-28 08:54:37 +0000 | [diff] [blame] | 342 |  | 
| Sjur Braendeland | 7aecf49 | 2010-05-21 02:16:08 +0000 | [diff] [blame] | 343 | 	list_for_each_entry_safe(p, tmp, &ctrl->list, list) { | 
 | 344 | 		if (p->client_layer == adap_layer) { | 
| Sjur Braendeland | 7aecf49 | 2010-05-21 02:16:08 +0000 | [diff] [blame] | 345 | 			list_del(&p->list); | 
 | 346 | 			kfree(p); | 
| sjur.brandeland@stericsson.com | c85c295 | 2011-05-13 02:44:06 +0000 | [diff] [blame] | 347 | 			found++; | 
| Sjur Braendeland | 8d545c8 | 2010-04-28 08:54:37 +0000 | [diff] [blame] | 348 | 		} | 
| Sjur Braendeland | 8d545c8 | 2010-04-28 08:54:37 +0000 | [diff] [blame] | 349 | 	} | 
 | 350 |  | 
| sjur.brandeland@stericsson.com | c85c295 | 2011-05-13 02:44:06 +0000 | [diff] [blame] | 351 | 	spin_unlock_bh(&ctrl->info_list_lock); | 
 | 352 | 	return found; | 
| Sjur Braendeland | 8d545c8 | 2010-04-28 08:54:37 +0000 | [diff] [blame] | 353 | } | 
 | 354 |  | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 355 | static int cfctrl_recv(struct cflayer *layer, struct cfpkt *pkt) | 
 | 356 | { | 
 | 357 | 	u8 cmdrsp; | 
 | 358 | 	u8 cmd; | 
 | 359 | 	int ret = -1; | 
 | 360 | 	u16 tmp16; | 
 | 361 | 	u8 len; | 
 | 362 | 	u8 param[255]; | 
 | 363 | 	u8 linkid; | 
 | 364 | 	struct cfctrl *cfctrl = container_obj(layer); | 
 | 365 | 	struct cfctrl_request_info rsp, *req; | 
 | 366 |  | 
 | 367 |  | 
 | 368 | 	cfpkt_extr_head(pkt, &cmdrsp, 1); | 
 | 369 | 	cmd = cmdrsp & CFCTRL_CMD_MASK; | 
 | 370 | 	if (cmd != CFCTRL_CMD_LINK_ERR | 
| sjur.brandeland@stericsson.com | 96796ea | 2011-05-22 11:18:52 +0000 | [diff] [blame] | 371 | 	    && CFCTRL_RSP_BIT != (CFCTRL_RSP_BIT & cmdrsp) | 
 | 372 | 		&& CFCTRL_ERR_BIT != (CFCTRL_ERR_BIT & cmdrsp)) { | 
| Sjur Braendeland | 2aa40ae | 2010-06-17 06:55:40 +0000 | [diff] [blame] | 373 | 		if (handle_loop(cfctrl, cmd, pkt) != 0) | 
| Sjur Braendeland | 8d545c8 | 2010-04-28 08:54:37 +0000 | [diff] [blame] | 374 | 			cmdrsp |= CFCTRL_ERR_BIT; | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 375 | 	} | 
 | 376 |  | 
 | 377 | 	switch (cmd) { | 
 | 378 | 	case CFCTRL_CMD_LINK_SETUP: | 
 | 379 | 		{ | 
 | 380 | 			enum cfctrl_srv serv; | 
 | 381 | 			enum cfctrl_srv servtype; | 
 | 382 | 			u8 endpoint; | 
 | 383 | 			u8 physlinkid; | 
 | 384 | 			u8 prio; | 
 | 385 | 			u8 tmp; | 
 | 386 | 			u32 tmp32; | 
 | 387 | 			u8 *cp; | 
 | 388 | 			int i; | 
 | 389 | 			struct cfctrl_link_param linkparam; | 
 | 390 | 			memset(&linkparam, 0, sizeof(linkparam)); | 
 | 391 |  | 
 | 392 | 			cfpkt_extr_head(pkt, &tmp, 1); | 
 | 393 |  | 
 | 394 | 			serv = tmp & CFCTRL_SRV_MASK; | 
 | 395 | 			linkparam.linktype = serv; | 
 | 396 |  | 
 | 397 | 			servtype = tmp >> 4; | 
 | 398 | 			linkparam.chtype = servtype; | 
 | 399 |  | 
 | 400 | 			cfpkt_extr_head(pkt, &tmp, 1); | 
 | 401 | 			physlinkid = tmp & 0x07; | 
 | 402 | 			prio = tmp >> 3; | 
 | 403 |  | 
 | 404 | 			linkparam.priority = prio; | 
 | 405 | 			linkparam.phyid = physlinkid; | 
 | 406 | 			cfpkt_extr_head(pkt, &endpoint, 1); | 
 | 407 | 			linkparam.endpoint = endpoint & 0x03; | 
 | 408 |  | 
 | 409 | 			switch (serv) { | 
 | 410 | 			case CFCTRL_SRV_VEI: | 
 | 411 | 			case CFCTRL_SRV_DBG: | 
| Sjur Braendeland | 8d545c8 | 2010-04-28 08:54:37 +0000 | [diff] [blame] | 412 | 				if (CFCTRL_ERR_BIT & cmdrsp) | 
 | 413 | 					break; | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 414 | 				/* Link ID */ | 
 | 415 | 				cfpkt_extr_head(pkt, &linkid, 1); | 
 | 416 | 				break; | 
 | 417 | 			case CFCTRL_SRV_VIDEO: | 
 | 418 | 				cfpkt_extr_head(pkt, &tmp, 1); | 
 | 419 | 				linkparam.u.video.connid = tmp; | 
| Sjur Braendeland | 8d545c8 | 2010-04-28 08:54:37 +0000 | [diff] [blame] | 420 | 				if (CFCTRL_ERR_BIT & cmdrsp) | 
 | 421 | 					break; | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 422 | 				/* Link ID */ | 
 | 423 | 				cfpkt_extr_head(pkt, &linkid, 1); | 
 | 424 | 				break; | 
 | 425 |  | 
 | 426 | 			case CFCTRL_SRV_DATAGRAM: | 
 | 427 | 				cfpkt_extr_head(pkt, &tmp32, 4); | 
 | 428 | 				linkparam.u.datagram.connid = | 
 | 429 | 				    le32_to_cpu(tmp32); | 
| Sjur Braendeland | 8d545c8 | 2010-04-28 08:54:37 +0000 | [diff] [blame] | 430 | 				if (CFCTRL_ERR_BIT & cmdrsp) | 
 | 431 | 					break; | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 432 | 				/* Link ID */ | 
 | 433 | 				cfpkt_extr_head(pkt, &linkid, 1); | 
 | 434 | 				break; | 
 | 435 | 			case CFCTRL_SRV_RFM: | 
 | 436 | 				/* Construct a frame, convert | 
 | 437 | 				 * DatagramConnectionID | 
 | 438 | 				 * to network format long and copy it out... | 
 | 439 | 				 */ | 
 | 440 | 				cfpkt_extr_head(pkt, &tmp32, 4); | 
 | 441 | 				linkparam.u.rfm.connid = | 
 | 442 | 				  le32_to_cpu(tmp32); | 
 | 443 | 				cp = (u8 *) linkparam.u.rfm.volume; | 
 | 444 | 				for (cfpkt_extr_head(pkt, &tmp, 1); | 
 | 445 | 				     cfpkt_more(pkt) && tmp != '\0'; | 
 | 446 | 				     cfpkt_extr_head(pkt, &tmp, 1)) | 
 | 447 | 					*cp++ = tmp; | 
 | 448 | 				*cp = '\0'; | 
 | 449 |  | 
| Sjur Braendeland | 8d545c8 | 2010-04-28 08:54:37 +0000 | [diff] [blame] | 450 | 				if (CFCTRL_ERR_BIT & cmdrsp) | 
 | 451 | 					break; | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 452 | 				/* Link ID */ | 
 | 453 | 				cfpkt_extr_head(pkt, &linkid, 1); | 
 | 454 |  | 
 | 455 | 				break; | 
 | 456 | 			case CFCTRL_SRV_UTIL: | 
 | 457 | 				/* Construct a frame, convert | 
 | 458 | 				 * DatagramConnectionID | 
 | 459 | 				 * to network format long and copy it out... | 
 | 460 | 				 */ | 
 | 461 | 				/* Fifosize KB */ | 
 | 462 | 				cfpkt_extr_head(pkt, &tmp16, 2); | 
 | 463 | 				linkparam.u.utility.fifosize_kb = | 
 | 464 | 				    le16_to_cpu(tmp16); | 
 | 465 | 				/* Fifosize bufs */ | 
 | 466 | 				cfpkt_extr_head(pkt, &tmp16, 2); | 
 | 467 | 				linkparam.u.utility.fifosize_bufs = | 
 | 468 | 				    le16_to_cpu(tmp16); | 
 | 469 | 				/* name */ | 
 | 470 | 				cp = (u8 *) linkparam.u.utility.name; | 
 | 471 | 				caif_assert(sizeof(linkparam.u.utility.name) | 
 | 472 | 					     >= UTILITY_NAME_LENGTH); | 
 | 473 | 				for (i = 0; | 
 | 474 | 				     i < UTILITY_NAME_LENGTH | 
 | 475 | 				     && cfpkt_more(pkt); i++) { | 
 | 476 | 					cfpkt_extr_head(pkt, &tmp, 1); | 
 | 477 | 					*cp++ = tmp; | 
 | 478 | 				} | 
 | 479 | 				/* Length */ | 
 | 480 | 				cfpkt_extr_head(pkt, &len, 1); | 
 | 481 | 				linkparam.u.utility.paramlen = len; | 
 | 482 | 				/* Param Data */ | 
 | 483 | 				cp = linkparam.u.utility.params; | 
 | 484 | 				while (cfpkt_more(pkt) && len--) { | 
 | 485 | 					cfpkt_extr_head(pkt, &tmp, 1); | 
 | 486 | 					*cp++ = tmp; | 
 | 487 | 				} | 
| Sjur Braendeland | 8d545c8 | 2010-04-28 08:54:37 +0000 | [diff] [blame] | 488 | 				if (CFCTRL_ERR_BIT & cmdrsp) | 
 | 489 | 					break; | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 490 | 				/* Link ID */ | 
 | 491 | 				cfpkt_extr_head(pkt, &linkid, 1); | 
 | 492 | 				/* Length */ | 
 | 493 | 				cfpkt_extr_head(pkt, &len, 1); | 
 | 494 | 				/* Param Data */ | 
 | 495 | 				cfpkt_extr_head(pkt, ¶m, len); | 
 | 496 | 				break; | 
 | 497 | 			default: | 
| sjur.brandeland@stericsson.com | 0e5a117 | 2011-05-22 11:18:50 +0000 | [diff] [blame] | 498 | 				pr_warn("Request setup, invalid type (%d)\n", | 
| Joe Perches | b31fa5b | 2010-09-05 21:31:11 +0000 | [diff] [blame] | 499 | 					serv); | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 500 | 				goto error; | 
 | 501 | 			} | 
 | 502 |  | 
 | 503 | 			rsp.cmd = cmd; | 
 | 504 | 			rsp.param = linkparam; | 
| sjur.brandeland@stericsson.com | c85c295 | 2011-05-13 02:44:06 +0000 | [diff] [blame] | 505 | 			spin_lock_bh(&cfctrl->info_list_lock); | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 506 | 			req = cfctrl_remove_req(cfctrl, &rsp); | 
 | 507 |  | 
 | 508 | 			if (CFCTRL_ERR_BIT == (CFCTRL_ERR_BIT & cmdrsp) || | 
 | 509 | 				cfpkt_erroneous(pkt)) { | 
| sjur.brandeland@stericsson.com | 0e5a117 | 2011-05-22 11:18:50 +0000 | [diff] [blame] | 510 | 				pr_err("Invalid O/E bit or parse error " | 
 | 511 | 						"on CAIF control channel\n"); | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 512 | 				cfctrl->res.reject_rsp(cfctrl->serv.layer.up, | 
 | 513 | 						       0, | 
 | 514 | 						       req ? req->client_layer | 
 | 515 | 						       : NULL); | 
 | 516 | 			} else { | 
 | 517 | 				cfctrl->res.linksetup_rsp(cfctrl->serv. | 
 | 518 | 							  layer.up, linkid, | 
 | 519 | 							  serv, physlinkid, | 
 | 520 | 							  req ? req-> | 
 | 521 | 							  client_layer : NULL); | 
 | 522 | 			} | 
 | 523 |  | 
 | 524 | 			if (req != NULL) | 
 | 525 | 				kfree(req); | 
| sjur.brandeland@stericsson.com | c85c295 | 2011-05-13 02:44:06 +0000 | [diff] [blame] | 526 |  | 
 | 527 | 			spin_unlock_bh(&cfctrl->info_list_lock); | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 528 | 		} | 
 | 529 | 		break; | 
 | 530 | 	case CFCTRL_CMD_LINK_DESTROY: | 
 | 531 | 		cfpkt_extr_head(pkt, &linkid, 1); | 
| Sjur Braendeland | 8d545c8 | 2010-04-28 08:54:37 +0000 | [diff] [blame] | 532 | 		cfctrl->res.linkdestroy_rsp(cfctrl->serv.layer.up, linkid); | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 533 | 		break; | 
 | 534 | 	case CFCTRL_CMD_LINK_ERR: | 
| Joe Perches | b31fa5b | 2010-09-05 21:31:11 +0000 | [diff] [blame] | 535 | 		pr_err("Frame Error Indication received\n"); | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 536 | 		cfctrl->res.linkerror_ind(); | 
 | 537 | 		break; | 
 | 538 | 	case CFCTRL_CMD_ENUM: | 
 | 539 | 		cfctrl->res.enum_rsp(); | 
 | 540 | 		break; | 
 | 541 | 	case CFCTRL_CMD_SLEEP: | 
 | 542 | 		cfctrl->res.sleep_rsp(); | 
 | 543 | 		break; | 
 | 544 | 	case CFCTRL_CMD_WAKE: | 
 | 545 | 		cfctrl->res.wake_rsp(); | 
 | 546 | 		break; | 
 | 547 | 	case CFCTRL_CMD_LINK_RECONF: | 
 | 548 | 		cfctrl->res.restart_rsp(); | 
 | 549 | 		break; | 
 | 550 | 	case CFCTRL_CMD_RADIO_SET: | 
 | 551 | 		cfctrl->res.radioset_rsp(); | 
 | 552 | 		break; | 
 | 553 | 	default: | 
| Joe Perches | b31fa5b | 2010-09-05 21:31:11 +0000 | [diff] [blame] | 554 | 		pr_err("Unrecognized Control Frame\n"); | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 555 | 		goto error; | 
 | 556 | 		break; | 
 | 557 | 	} | 
 | 558 | 	ret = 0; | 
 | 559 | error: | 
 | 560 | 	cfpkt_destroy(pkt); | 
 | 561 | 	return ret; | 
 | 562 | } | 
 | 563 |  | 
 | 564 | static void cfctrl_ctrlcmd(struct cflayer *layr, enum caif_ctrlcmd ctrl, | 
 | 565 | 			int phyid) | 
 | 566 | { | 
 | 567 | 	struct cfctrl *this = container_obj(layr); | 
 | 568 | 	switch (ctrl) { | 
 | 569 | 	case _CAIF_CTRLCMD_PHYIF_FLOW_OFF_IND: | 
 | 570 | 	case CAIF_CTRLCMD_FLOW_OFF_IND: | 
| sjur.brandeland@stericsson.com | c85c295 | 2011-05-13 02:44:06 +0000 | [diff] [blame] | 571 | 		spin_lock_bh(&this->info_list_lock); | 
| sjur.brandeland@stericsson.com | 0e5a117 | 2011-05-22 11:18:50 +0000 | [diff] [blame] | 572 | 		if (!list_empty(&this->list)) | 
| Joe Perches | b31fa5b | 2010-09-05 21:31:11 +0000 | [diff] [blame] | 573 | 			pr_debug("Received flow off in control layer\n"); | 
| sjur.brandeland@stericsson.com | c85c295 | 2011-05-13 02:44:06 +0000 | [diff] [blame] | 574 | 		spin_unlock_bh(&this->info_list_lock); | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 575 | 		break; | 
| sjur.brandeland@stericsson.com | c85c295 | 2011-05-13 02:44:06 +0000 | [diff] [blame] | 576 | 	case _CAIF_CTRLCMD_PHYIF_DOWN_IND: { | 
 | 577 | 		struct cfctrl_request_info *p, *tmp; | 
 | 578 |  | 
 | 579 | 		/* Find all connect request and report failure */ | 
 | 580 | 		spin_lock_bh(&this->info_list_lock); | 
 | 581 | 		list_for_each_entry_safe(p, tmp, &this->list, list) { | 
 | 582 | 			if (p->param.phyid == phyid) { | 
 | 583 | 				list_del(&p->list); | 
 | 584 | 				p->client_layer->ctrlcmd(p->client_layer, | 
 | 585 | 						CAIF_CTRLCMD_INIT_FAIL_RSP, | 
 | 586 | 						phyid); | 
 | 587 | 				kfree(p); | 
 | 588 | 			} | 
 | 589 | 		} | 
 | 590 | 		spin_unlock_bh(&this->info_list_lock); | 
 | 591 | 		break; | 
 | 592 | 	} | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 593 | 	default: | 
 | 594 | 		break; | 
 | 595 | 	} | 
 | 596 | } | 
 | 597 |  | 
 | 598 | #ifndef CAIF_NO_LOOP | 
 | 599 | static int handle_loop(struct cfctrl *ctrl, int cmd, struct cfpkt *pkt) | 
 | 600 | { | 
 | 601 | 	static int last_linkid; | 
| sjur.brandeland@stericsson.com | c85c295 | 2011-05-13 02:44:06 +0000 | [diff] [blame] | 602 | 	static int dec; | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 603 | 	u8 linkid, linktype, tmp; | 
 | 604 | 	switch (cmd) { | 
 | 605 | 	case CFCTRL_CMD_LINK_SETUP: | 
| sjur.brandeland@stericsson.com | c85c295 | 2011-05-13 02:44:06 +0000 | [diff] [blame] | 606 | 		spin_lock_bh(&ctrl->loop_linkid_lock); | 
 | 607 | 		if (!dec) { | 
| sjur.brandeland@stericsson.com | 96796ea | 2011-05-22 11:18:52 +0000 | [diff] [blame] | 608 | 			for (linkid = last_linkid + 1; linkid < 254; linkid++) | 
| sjur.brandeland@stericsson.com | c85c295 | 2011-05-13 02:44:06 +0000 | [diff] [blame] | 609 | 				if (!ctrl->loop_linkused[linkid]) | 
 | 610 | 					goto found; | 
 | 611 | 		} | 
 | 612 | 		dec = 1; | 
| sjur.brandeland@stericsson.com | 96796ea | 2011-05-22 11:18:52 +0000 | [diff] [blame] | 613 | 		for (linkid = last_linkid - 1; linkid > 1; linkid--) | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 614 | 			if (!ctrl->loop_linkused[linkid]) | 
 | 615 | 				goto found; | 
| sjur.brandeland@stericsson.com | c85c295 | 2011-05-13 02:44:06 +0000 | [diff] [blame] | 616 | 		spin_unlock_bh(&ctrl->loop_linkid_lock); | 
| sjur.brandeland@stericsson.com | 96796ea | 2011-05-22 11:18:52 +0000 | [diff] [blame] | 617 | 		return -1; | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 618 | found: | 
| sjur.brandeland@stericsson.com | c85c295 | 2011-05-13 02:44:06 +0000 | [diff] [blame] | 619 | 		if (linkid < 10) | 
 | 620 | 			dec = 0; | 
 | 621 |  | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 622 | 		if (!ctrl->loop_linkused[linkid]) | 
 | 623 | 			ctrl->loop_linkused[linkid] = 1; | 
 | 624 |  | 
 | 625 | 		last_linkid = linkid; | 
 | 626 |  | 
 | 627 | 		cfpkt_add_trail(pkt, &linkid, 1); | 
| sjur.brandeland@stericsson.com | c85c295 | 2011-05-13 02:44:06 +0000 | [diff] [blame] | 628 | 		spin_unlock_bh(&ctrl->loop_linkid_lock); | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 629 | 		cfpkt_peek_head(pkt, &linktype, 1); | 
 | 630 | 		if (linktype ==  CFCTRL_SRV_UTIL) { | 
 | 631 | 			tmp = 0x01; | 
 | 632 | 			cfpkt_add_trail(pkt, &tmp, 1); | 
 | 633 | 			cfpkt_add_trail(pkt, &tmp, 1); | 
 | 634 | 		} | 
 | 635 | 		break; | 
 | 636 |  | 
 | 637 | 	case CFCTRL_CMD_LINK_DESTROY: | 
| sjur.brandeland@stericsson.com | c85c295 | 2011-05-13 02:44:06 +0000 | [diff] [blame] | 638 | 		spin_lock_bh(&ctrl->loop_linkid_lock); | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 639 | 		cfpkt_peek_head(pkt, &linkid, 1); | 
 | 640 | 		ctrl->loop_linkused[linkid] = 0; | 
| sjur.brandeland@stericsson.com | c85c295 | 2011-05-13 02:44:06 +0000 | [diff] [blame] | 641 | 		spin_unlock_bh(&ctrl->loop_linkid_lock); | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 642 | 		break; | 
 | 643 | 	default: | 
 | 644 | 		break; | 
 | 645 | 	} | 
| Sjur Braendeland | 2aa40ae | 2010-06-17 06:55:40 +0000 | [diff] [blame] | 646 | 	return 0; | 
| Sjur Braendeland | b482cd2 | 2010-03-30 13:56:23 +0000 | [diff] [blame] | 647 | } | 
 | 648 | #endif |