| 
									
										
										
										
											2013-11-29 12:25:16 +01:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright (c) 2013 Broadcom Corporation | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Permission to use, copy, modify, and/or distribute this software for any | 
					
						
							|  |  |  |  * purpose with or without fee is hereby granted, provided that the above | 
					
						
							|  |  |  |  * copyright notice and this permission notice appear in all copies. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | 
					
						
							|  |  |  |  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | 
					
						
							|  |  |  |  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY | 
					
						
							|  |  |  |  * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | 
					
						
							|  |  |  |  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION | 
					
						
							|  |  |  |  * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN | 
					
						
							|  |  |  |  * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  #include <linux/types.h>
 | 
					
						
							|  |  |  | #include <linux/slab.h>
 | 
					
						
							|  |  |  | #include <linux/netdevice.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <brcmu_wifi.h>
 | 
					
						
							| 
									
										
										
										
											2014-10-28 14:56:18 +01:00
										 |  |  | #include "core.h"
 | 
					
						
							| 
									
										
										
										
											2014-10-28 14:56:14 +01:00
										 |  |  | #include "bus.h"
 | 
					
						
							| 
									
										
										
										
											2014-10-28 14:56:13 +01:00
										 |  |  | #include "debug.h"
 | 
					
						
							| 
									
										
										
										
											2013-11-29 12:25:16 +01:00
										 |  |  | #include "proto.h"
 | 
					
						
							|  |  |  | #include "bcdc.h"
 | 
					
						
							| 
									
										
										
										
											2014-07-30 13:20:03 +02:00
										 |  |  | #include "msgbuf.h"
 | 
					
						
							| 
									
										
										
										
											2013-11-29 12:25:16 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int brcmf_proto_attach(struct brcmf_pub *drvr) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct brcmf_proto *proto; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-30 13:20:02 +02:00
										 |  |  | 	brcmf_dbg(TRACE, "Enter\n"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-29 12:25:16 +01:00
										 |  |  | 	proto = kzalloc(sizeof(*proto), GFP_ATOMIC); | 
					
						
							|  |  |  | 	if (!proto) | 
					
						
							|  |  |  | 		goto fail; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	drvr->proto = proto; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-30 13:20:03 +02:00
										 |  |  | 	if (drvr->bus_if->proto_type == BRCMF_PROTO_BCDC) { | 
					
						
							|  |  |  | 		if (brcmf_proto_bcdc_attach(drvr)) | 
					
						
							|  |  |  | 			goto fail; | 
					
						
							|  |  |  | 	} else if (drvr->bus_if->proto_type == BRCMF_PROTO_MSGBUF) { | 
					
						
							|  |  |  | 		if (brcmf_proto_msgbuf_attach(drvr)) | 
					
						
							|  |  |  | 			goto fail; | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		brcmf_err("Unsupported proto type %d\n", | 
					
						
							|  |  |  | 			  drvr->bus_if->proto_type); | 
					
						
							|  |  |  | 		goto fail; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-12-12 11:59:03 +01:00
										 |  |  | 	if ((proto->txdata == NULL) || (proto->hdrpull == NULL) || | 
					
						
							| 
									
										
										
										
											2014-07-30 13:20:02 +02:00
										 |  |  | 	    (proto->query_dcmd == NULL) || (proto->set_dcmd == NULL) || | 
					
						
							|  |  |  | 	    (proto->configure_addr_mode == NULL) || | 
					
						
							| 
									
										
										
										
											2014-07-30 13:20:07 +02:00
										 |  |  | 	    (proto->delete_peer == NULL) || (proto->add_tdls_peer == NULL)) { | 
					
						
							| 
									
										
										
										
											2013-11-29 12:25:16 +01:00
										 |  |  | 		brcmf_err("Not all proto handlers have been installed\n"); | 
					
						
							|  |  |  | 		goto fail; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | fail: | 
					
						
							|  |  |  | 	kfree(proto); | 
					
						
							|  |  |  | 	drvr->proto = NULL; | 
					
						
							|  |  |  | 	return -ENOMEM; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void brcmf_proto_detach(struct brcmf_pub *drvr) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2014-07-30 13:20:02 +02:00
										 |  |  | 	brcmf_dbg(TRACE, "Enter\n"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-29 12:25:16 +01:00
										 |  |  | 	if (drvr->proto) { | 
					
						
							| 
									
										
										
										
											2014-07-30 13:20:03 +02:00
										 |  |  | 		if (drvr->bus_if->proto_type == BRCMF_PROTO_BCDC) | 
					
						
							|  |  |  | 			brcmf_proto_bcdc_detach(drvr); | 
					
						
							|  |  |  | 		else if (drvr->bus_if->proto_type == BRCMF_PROTO_MSGBUF) | 
					
						
							|  |  |  | 			brcmf_proto_msgbuf_detach(drvr); | 
					
						
							| 
									
										
										
										
											2013-11-29 12:25:16 +01:00
										 |  |  | 		kfree(drvr->proto); | 
					
						
							|  |  |  | 		drvr->proto = NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } |