| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2014-02-12 16:09:07 +05:30
										 |  |  |  * Copyright (C) 2005 - 2014 Emulex | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  |  * All rights reserved. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is free software; you can redistribute it and/or | 
					
						
							|  |  |  |  * modify it under the terms of the GNU General Public License version 2 | 
					
						
							|  |  |  |  * as published by the Free Software Foundation.  The full GNU General | 
					
						
							|  |  |  |  * Public License is included in this distribution in the file called COPYING. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Contact Information: | 
					
						
							| 
									
										
										
										
											2011-03-16 08:20:46 +00:00
										 |  |  |  * linux-drivers@emulex.com | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2011-03-16 08:20:46 +00:00
										 |  |  |  * Emulex | 
					
						
							|  |  |  |  * 3333 Susan Street | 
					
						
							|  |  |  |  * Costa Mesa, CA 92626 | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-26 14:27:12 +00:00
										 |  |  | #include <linux/module.h>
 | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | #include "be.h"
 | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | #include "be_cmds.h"
 | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-20 06:02:52 +00:00
										 |  |  | static struct be_cmd_priv_map cmd_priv_map[] = { | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		OPCODE_ETH_ACPI_WOL_MAGIC_CONFIG, | 
					
						
							|  |  |  | 		CMD_SUBSYSTEM_ETH, | 
					
						
							|  |  |  | 		BE_PRIV_LNKMGMT | BE_PRIV_VHADM | | 
					
						
							|  |  |  | 		BE_PRIV_DEVCFG | BE_PRIV_DEVSEC | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		OPCODE_COMMON_GET_FLOW_CONTROL, | 
					
						
							|  |  |  | 		CMD_SUBSYSTEM_COMMON, | 
					
						
							|  |  |  | 		BE_PRIV_LNKQUERY | BE_PRIV_VHADM | | 
					
						
							|  |  |  | 		BE_PRIV_DEVCFG | BE_PRIV_DEVSEC | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		OPCODE_COMMON_SET_FLOW_CONTROL, | 
					
						
							|  |  |  | 		CMD_SUBSYSTEM_COMMON, | 
					
						
							|  |  |  | 		BE_PRIV_LNKMGMT | BE_PRIV_VHADM | | 
					
						
							|  |  |  | 		BE_PRIV_DEVCFG | BE_PRIV_DEVSEC | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		OPCODE_ETH_GET_PPORT_STATS, | 
					
						
							|  |  |  | 		CMD_SUBSYSTEM_ETH, | 
					
						
							|  |  |  | 		BE_PRIV_LNKMGMT | BE_PRIV_VHADM | | 
					
						
							|  |  |  | 		BE_PRIV_DEVCFG | BE_PRIV_DEVSEC | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		OPCODE_COMMON_GET_PHY_DETAILS, | 
					
						
							|  |  |  | 		CMD_SUBSYSTEM_COMMON, | 
					
						
							|  |  |  | 		BE_PRIV_LNKMGMT | BE_PRIV_VHADM | | 
					
						
							|  |  |  | 		BE_PRIV_DEVCFG | BE_PRIV_DEVSEC | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | static bool be_cmd_allowed(struct be_adapter *adapter, u8 opcode, u8 subsystem) | 
					
						
							| 
									
										
										
										
											2012-10-20 06:02:52 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	int i; | 
					
						
							|  |  |  | 	int num_entries = sizeof(cmd_priv_map)/sizeof(struct be_cmd_priv_map); | 
					
						
							|  |  |  | 	u32 cmd_privileges = adapter->cmd_privileges; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (i = 0; i < num_entries; i++) | 
					
						
							|  |  |  | 		if (opcode == cmd_priv_map[i].opcode && | 
					
						
							|  |  |  | 		    subsystem == cmd_priv_map[i].subsystem) | 
					
						
							|  |  |  | 			if (!(cmd_privileges & cmd_priv_map[i].priv_mask)) | 
					
						
							|  |  |  | 				return false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return true; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-30 07:25:05 +00:00
										 |  |  | static inline void *embedded_payload(struct be_mcc_wrb *wrb) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return wrb->payload.embedded_payload; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2011-02-20 11:42:07 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | static void be_mcc_notify(struct be_adapter *adapter) | 
					
						
							| 
									
										
										
										
											2009-06-18 00:02:59 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | 	struct be_queue_info *mccq = &adapter->mcc_obj.q; | 
					
						
							| 
									
										
										
										
											2009-06-18 00:02:59 +00:00
										 |  |  | 	u32 val = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-10 19:18:00 +00:00
										 |  |  | 	if (be_error(adapter)) | 
					
						
							| 
									
										
										
										
											2011-02-11 13:38:17 +00:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-18 00:02:59 +00:00
										 |  |  | 	val |= mccq->id & DB_MCCQ_RING_ID_MASK; | 
					
						
							|  |  |  | 	val |= 1 << DB_MCCQ_NUM_POSTED_SHIFT; | 
					
						
							| 
									
										
										
										
											2010-06-29 00:11:17 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	wmb(); | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | 	iowrite32(val, adapter->db + DB_MCCQ_OFFSET); | 
					
						
							| 
									
										
										
										
											2009-06-18 00:02:59 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* To check if valid bit is set, check the entire word as we don't know
 | 
					
						
							|  |  |  |  * the endianness of the data (old entry is host endian while a new entry is | 
					
						
							|  |  |  |  * little endian) */ | 
					
						
							| 
									
										
										
										
											2009-07-27 22:53:10 +00:00
										 |  |  | static inline bool be_mcc_compl_is_new(struct be_mcc_compl *compl) | 
					
						
							| 
									
										
										
										
											2009-06-18 00:02:59 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-02-12 23:05:19 +00:00
										 |  |  | 	u32 flags; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-18 00:02:59 +00:00
										 |  |  | 	if (compl->flags != 0) { | 
					
						
							| 
									
										
										
										
											2013-02-12 23:05:19 +00:00
										 |  |  | 		flags = le32_to_cpu(compl->flags); | 
					
						
							|  |  |  | 		if (flags & CQE_FLAGS_VALID_MASK) { | 
					
						
							|  |  |  | 			compl->flags = flags; | 
					
						
							|  |  |  | 			return true; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2009-06-18 00:02:59 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-02-12 23:05:19 +00:00
										 |  |  | 	return false; | 
					
						
							| 
									
										
										
										
											2009-06-18 00:02:59 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Need to reset the entire word that houses the valid bit */ | 
					
						
							| 
									
										
										
										
											2009-07-27 22:53:10 +00:00
										 |  |  | static inline void be_mcc_compl_use(struct be_mcc_compl *compl) | 
					
						
							| 
									
										
										
										
											2009-06-18 00:02:59 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	compl->flags = 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-25 01:47:03 +00:00
										 |  |  | static struct be_cmd_resp_hdr *be_decode_resp_hdr(u32 tag0, u32 tag1) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	unsigned long addr; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	addr = tag1; | 
					
						
							|  |  |  | 	addr = ((addr << 16) << 16) | tag0; | 
					
						
							|  |  |  | 	return (void *)addr; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-30 19:06:26 +05:30
										 |  |  | static bool be_skip_err_log(u8 opcode, u16 base_status, u16 addl_status) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (base_status == MCC_STATUS_NOT_SUPPORTED || | 
					
						
							|  |  |  | 	    base_status == MCC_STATUS_ILLEGAL_REQUEST || | 
					
						
							|  |  |  | 	    addl_status == MCC_ADDL_STATUS_TOO_MANY_INTERFACES || | 
					
						
							|  |  |  | 	    (opcode == OPCODE_COMMON_WRITE_FLASHROM && | 
					
						
							|  |  |  | 	    (base_status == MCC_STATUS_ILLEGAL_FIELD || | 
					
						
							|  |  |  | 	     addl_status == MCC_ADDL_STATUS_FLASH_IMAGE_CRC_MISMATCH))) | 
					
						
							|  |  |  | 		return true; | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		return false; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-30 19:06:27 +05:30
										 |  |  | /* Place holder for all the async MCC cmds wherein the caller is not in a busy
 | 
					
						
							|  |  |  |  * loop (has not issued be_mcc_notify_wait()) | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static void be_async_cmd_process(struct be_adapter *adapter, | 
					
						
							|  |  |  | 				 struct be_mcc_compl *compl, | 
					
						
							|  |  |  | 				 struct be_cmd_resp_hdr *resp_hdr) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	enum mcc_base_status base_status = base_status(compl->status); | 
					
						
							|  |  |  | 	u8 opcode = 0, subsystem = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (resp_hdr) { | 
					
						
							|  |  |  | 		opcode = resp_hdr->opcode; | 
					
						
							|  |  |  | 		subsystem = resp_hdr->subsystem; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (opcode == OPCODE_LOWLEVEL_LOOPBACK_TEST && | 
					
						
							|  |  |  | 	    subsystem == CMD_SUBSYSTEM_LOWLEVEL) { | 
					
						
							|  |  |  | 		complete(&adapter->et_cmd_compl); | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if ((opcode == OPCODE_COMMON_WRITE_FLASHROM || | 
					
						
							|  |  |  | 	     opcode == OPCODE_COMMON_WRITE_OBJECT) && | 
					
						
							|  |  |  | 	    subsystem == CMD_SUBSYSTEM_COMMON) { | 
					
						
							|  |  |  | 		adapter->flash_status = compl->status; | 
					
						
							|  |  |  | 		complete(&adapter->et_cmd_compl); | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if ((opcode == OPCODE_ETH_GET_STATISTICS || | 
					
						
							|  |  |  | 	     opcode == OPCODE_ETH_GET_PPORT_STATS) && | 
					
						
							|  |  |  | 	    subsystem == CMD_SUBSYSTEM_ETH && | 
					
						
							|  |  |  | 	    base_status == MCC_STATUS_SUCCESS) { | 
					
						
							|  |  |  | 		be_parse_stats(adapter); | 
					
						
							|  |  |  | 		adapter->stats_cmd_sent = false; | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (opcode == OPCODE_COMMON_GET_CNTL_ADDITIONAL_ATTRIBUTES && | 
					
						
							|  |  |  | 	    subsystem == CMD_SUBSYSTEM_COMMON) { | 
					
						
							|  |  |  | 		if (base_status == MCC_STATUS_SUCCESS) { | 
					
						
							|  |  |  | 			struct be_cmd_resp_get_cntl_addnl_attribs *resp = | 
					
						
							|  |  |  | 							(void *)resp_hdr; | 
					
						
							|  |  |  | 			adapter->drv_stats.be_on_die_temperature = | 
					
						
							|  |  |  | 						resp->on_die_temperature; | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			adapter->be_get_temp_freq = 0; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | static int be_mcc_compl_process(struct be_adapter *adapter, | 
					
						
							| 
									
										
										
										
											2012-04-25 01:47:03 +00:00
										 |  |  | 				struct be_mcc_compl *compl) | 
					
						
							| 
									
										
										
										
											2009-06-18 00:02:59 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2014-05-30 19:06:26 +05:30
										 |  |  | 	enum mcc_base_status base_status; | 
					
						
							|  |  |  | 	enum mcc_addl_status addl_status; | 
					
						
							| 
									
										
										
										
											2012-04-25 01:47:03 +00:00
										 |  |  | 	struct be_cmd_resp_hdr *resp_hdr; | 
					
						
							|  |  |  | 	u8 opcode = 0, subsystem = 0; | 
					
						
							| 
									
										
										
										
											2009-06-18 00:02:59 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* Just swap the status to host endian; mcc tag is opaquely copied
 | 
					
						
							|  |  |  | 	 * from mcc_wrb */ | 
					
						
							|  |  |  | 	be_dws_le_to_cpu(compl, 4); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-30 19:06:26 +05:30
										 |  |  | 	base_status = base_status(compl->status); | 
					
						
							|  |  |  | 	addl_status = addl_status(compl->status); | 
					
						
							| 
									
										
										
										
											2014-05-30 19:06:25 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-25 01:47:03 +00:00
										 |  |  | 	resp_hdr = be_decode_resp_hdr(compl->tag0, compl->tag1); | 
					
						
							|  |  |  | 	if (resp_hdr) { | 
					
						
							|  |  |  | 		opcode = resp_hdr->opcode; | 
					
						
							|  |  |  | 		subsystem = resp_hdr->subsystem; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-30 19:06:27 +05:30
										 |  |  | 	be_async_cmd_process(adapter, compl, resp_hdr); | 
					
						
							| 
									
										
										
										
											2011-09-30 07:25:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-30 19:06:27 +05:30
										 |  |  | 	if (base_status != MCC_STATUS_SUCCESS && | 
					
						
							|  |  |  | 	    !be_skip_err_log(opcode, base_status, addl_status)) { | 
					
						
							| 
									
										
										
										
											2014-05-30 19:06:26 +05:30
										 |  |  | 		if (base_status == MCC_STATUS_UNAUTHORIZED_REQUEST) { | 
					
						
							| 
									
										
										
										
											2012-06-13 19:51:44 +00:00
										 |  |  | 			dev_warn(&adapter->pdev->dev, | 
					
						
							| 
									
										
										
										
											2012-08-28 20:37:44 +00:00
										 |  |  | 				 "VF is not privileged to issue opcode %d-%d\n", | 
					
						
							| 
									
										
										
										
											2012-06-13 19:51:44 +00:00
										 |  |  | 				 opcode, subsystem); | 
					
						
							| 
									
										
										
										
											2011-06-29 23:32:56 +00:00
										 |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2012-06-13 19:51:44 +00:00
										 |  |  | 			dev_err(&adapter->pdev->dev, | 
					
						
							|  |  |  | 				"opcode %d-%d failed:status %d-%d\n", | 
					
						
							| 
									
										
										
										
											2014-05-30 19:06:26 +05:30
										 |  |  | 				opcode, subsystem, base_status, addl_status); | 
					
						
							| 
									
										
										
										
											2011-06-29 23:32:56 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2009-06-18 00:02:59 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-05-30 19:06:26 +05:30
										 |  |  | 	return compl->status; | 
					
						
							| 
									
										
										
										
											2009-06-18 00:02:59 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-18 00:10:27 +00:00
										 |  |  | /* Link state evt is a string of bytes; no need for endian swapping */ | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | static void be_async_link_state_process(struct be_adapter *adapter, | 
					
						
							| 
									
										
										
										
											2014-05-30 19:06:28 +05:30
										 |  |  | 					struct be_mcc_compl *compl) | 
					
						
							| 
									
										
										
										
											2009-06-18 00:10:27 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2014-05-30 19:06:28 +05:30
										 |  |  | 	struct be_async_event_link_state *evt = | 
					
						
							|  |  |  | 			(struct be_async_event_link_state *)compl; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-30 12:15:40 +00:00
										 |  |  | 	/* When link status changes, link speed must be re-queried from FW */ | 
					
						
							| 
									
										
										
										
											2012-04-21 18:53:22 +00:00
										 |  |  | 	adapter->phy.link_speed = -1; | 
					
						
							| 
									
										
										
										
											2011-12-30 12:15:40 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-11 18:53:04 +05:30
										 |  |  | 	/* On BEx the FW does not send a separate link status
 | 
					
						
							|  |  |  | 	 * notification for physical and logical link. | 
					
						
							|  |  |  | 	 * On other chips just process the logical link | 
					
						
							|  |  |  | 	 * status notification | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	if (!BEx_chip(adapter) && | 
					
						
							| 
									
										
										
										
											2012-07-18 02:52:15 +00:00
										 |  |  | 	    !(evt->port_link_status & LOGICAL_LINK_STATUS_MASK)) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-30 12:15:40 +00:00
										 |  |  | 	/* For the initial link status do not rely on the ASYNC event as
 | 
					
						
							|  |  |  | 	 * it may not be received in some cases. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	if (adapter->flags & BE_FLAGS_LINK_STATUS_INIT) | 
					
						
							| 
									
										
										
										
											2014-03-11 18:53:04 +05:30
										 |  |  | 		be_link_status_update(adapter, | 
					
						
							|  |  |  | 				      evt->port_link_status & LINK_STATUS_MASK); | 
					
						
							| 
									
										
										
										
											2009-06-18 00:10:27 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-21 07:11:14 -07:00
										 |  |  | /* Grp5 CoS Priority evt */ | 
					
						
							|  |  |  | static void be_async_grp5_cos_priority_process(struct be_adapter *adapter, | 
					
						
							| 
									
										
										
										
											2014-05-30 19:06:28 +05:30
										 |  |  | 					       struct be_mcc_compl *compl) | 
					
						
							| 
									
										
										
										
											2010-10-21 07:11:14 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2014-05-30 19:06:28 +05:30
										 |  |  | 	struct be_async_event_grp5_cos_priority *evt = | 
					
						
							|  |  |  | 			(struct be_async_event_grp5_cos_priority *)compl; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-21 07:11:14 -07:00
										 |  |  | 	if (evt->valid) { | 
					
						
							|  |  |  | 		adapter->vlan_prio_bmap = evt->available_priority_bmap; | 
					
						
							| 
									
										
										
										
											2011-02-11 13:37:25 +00:00
										 |  |  | 		adapter->recommended_prio &= ~VLAN_PRIO_MASK; | 
					
						
							| 
									
										
										
										
											2010-10-21 07:11:14 -07:00
										 |  |  | 		adapter->recommended_prio = | 
					
						
							|  |  |  | 			evt->reco_default_priority << VLAN_PRIO_SHIFT; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-28 04:39:43 +00:00
										 |  |  | /* Grp5 QOS Speed evt: qos_link_speed is in units of 10 Mbps */ | 
					
						
							| 
									
										
										
										
											2010-10-21 07:11:14 -07:00
										 |  |  | static void be_async_grp5_qos_speed_process(struct be_adapter *adapter, | 
					
						
							| 
									
										
										
										
											2014-05-30 19:06:28 +05:30
										 |  |  | 					    struct be_mcc_compl *compl) | 
					
						
							| 
									
										
										
										
											2010-10-21 07:11:14 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2014-05-30 19:06:28 +05:30
										 |  |  | 	struct be_async_event_grp5_qos_link_speed *evt = | 
					
						
							|  |  |  | 			(struct be_async_event_grp5_qos_link_speed *)compl; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-28 04:39:43 +00:00
										 |  |  | 	if (adapter->phy.link_speed >= 0 && | 
					
						
							|  |  |  | 	    evt->physical_port == adapter->port_num) | 
					
						
							|  |  |  | 		adapter->phy.link_speed = le16_to_cpu(evt->qos_link_speed) * 10; | 
					
						
							| 
									
										
										
										
											2010-10-21 07:11:14 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-20 11:41:53 +00:00
										 |  |  | /*Grp5 PVID evt*/ | 
					
						
							|  |  |  | static void be_async_grp5_pvid_state_process(struct be_adapter *adapter, | 
					
						
							| 
									
										
										
										
											2014-05-30 19:06:28 +05:30
										 |  |  | 					     struct be_mcc_compl *compl) | 
					
						
							| 
									
										
										
										
											2011-02-20 11:41:53 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2014-05-30 19:06:28 +05:30
										 |  |  | 	struct be_async_event_grp5_pvid_state *evt = | 
					
						
							|  |  |  | 			(struct be_async_event_grp5_pvid_state *)compl; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-11 18:53:05 +05:30
										 |  |  | 	if (evt->enabled) { | 
					
						
							| 
									
										
										
										
											2011-08-18 21:51:49 -07:00
										 |  |  | 		adapter->pvid = le16_to_cpu(evt->tag) & VLAN_VID_MASK; | 
					
						
							| 
									
										
										
										
											2014-03-11 18:53:05 +05:30
										 |  |  | 		dev_info(&adapter->pdev->dev, "LPVID: %d\n", adapter->pvid); | 
					
						
							|  |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2011-02-20 11:41:53 +00:00
										 |  |  | 		adapter->pvid = 0; | 
					
						
							| 
									
										
										
										
											2014-03-11 18:53:05 +05:30
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-02-20 11:41:53 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-21 07:11:14 -07:00
										 |  |  | static void be_async_grp5_evt_process(struct be_adapter *adapter, | 
					
						
							| 
									
										
										
										
											2014-05-30 19:06:28 +05:30
										 |  |  | 				      struct be_mcc_compl *compl) | 
					
						
							| 
									
										
										
										
											2010-10-21 07:11:14 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2014-05-30 19:06:28 +05:30
										 |  |  | 	u8 event_type = (compl->flags >> ASYNC_EVENT_TYPE_SHIFT) & | 
					
						
							|  |  |  | 				ASYNC_EVENT_TYPE_MASK; | 
					
						
							| 
									
										
										
										
											2010-10-21 07:11:14 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	switch (event_type) { | 
					
						
							|  |  |  | 	case ASYNC_EVENT_COS_PRIORITY: | 
					
						
							| 
									
										
										
										
											2014-05-30 19:06:28 +05:30
										 |  |  | 		be_async_grp5_cos_priority_process(adapter, compl); | 
					
						
							|  |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2010-10-21 07:11:14 -07:00
										 |  |  | 	case ASYNC_EVENT_QOS_SPEED: | 
					
						
							| 
									
										
										
										
											2014-05-30 19:06:28 +05:30
										 |  |  | 		be_async_grp5_qos_speed_process(adapter, compl); | 
					
						
							|  |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2011-02-20 11:41:53 +00:00
										 |  |  | 	case ASYNC_EVENT_PVID_STATE: | 
					
						
							| 
									
										
										
										
											2014-05-30 19:06:28 +05:30
										 |  |  | 		be_async_grp5_pvid_state_process(adapter, compl); | 
					
						
							|  |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2010-10-21 07:11:14 -07:00
										 |  |  | 	default: | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-24 11:52:50 +00:00
										 |  |  | static void be_async_dbg_evt_process(struct be_adapter *adapter, | 
					
						
							| 
									
										
										
										
											2014-05-30 19:06:28 +05:30
										 |  |  | 				     struct be_mcc_compl *cmp) | 
					
						
							| 
									
										
										
										
											2013-04-24 11:52:50 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	u8 event_type = 0; | 
					
						
							| 
									
										
										
										
											2014-09-19 15:47:00 +05:30
										 |  |  | 	struct be_async_event_qnq *evt = (struct be_async_event_qnq *)cmp; | 
					
						
							| 
									
										
										
										
											2013-04-24 11:52:50 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-30 19:06:28 +05:30
										 |  |  | 	event_type = (cmp->flags >> ASYNC_EVENT_TYPE_SHIFT) & | 
					
						
							|  |  |  | 			ASYNC_EVENT_TYPE_MASK; | 
					
						
							| 
									
										
										
										
											2013-04-24 11:52:50 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	switch (event_type) { | 
					
						
							|  |  |  | 	case ASYNC_DEBUG_EVENT_TYPE_QNQ: | 
					
						
							|  |  |  | 		if (evt->valid) | 
					
						
							|  |  |  | 			adapter->qnq_vid = le16_to_cpu(evt->vlan_tag); | 
					
						
							|  |  |  | 		adapter->flags |= BE_FLAGS_QNQ_ASYNC_EVT_RCVD; | 
					
						
							|  |  |  | 	break; | 
					
						
							|  |  |  | 	default: | 
					
						
							| 
									
										
										
										
											2013-08-06 09:27:19 +05:30
										 |  |  | 		dev_warn(&adapter->pdev->dev, "Unknown debug event 0x%x!\n", | 
					
						
							|  |  |  | 			 event_type); | 
					
						
							| 
									
										
										
										
											2013-04-24 11:52:50 +00:00
										 |  |  | 	break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-30 19:06:28 +05:30
										 |  |  | static inline bool is_link_state_evt(u32 flags) | 
					
						
							| 
									
										
										
										
											2009-06-18 00:10:27 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2014-05-30 19:06:28 +05:30
										 |  |  | 	return ((flags >> ASYNC_EVENT_CODE_SHIFT) & ASYNC_EVENT_CODE_MASK) == | 
					
						
							|  |  |  | 			ASYNC_EVENT_CODE_LINK_STATE; | 
					
						
							| 
									
										
										
										
											2009-06-18 00:10:27 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2009-06-18 00:02:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-30 19:06:28 +05:30
										 |  |  | static inline bool is_grp5_evt(u32 flags) | 
					
						
							| 
									
										
										
										
											2010-10-21 07:11:14 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2014-05-30 19:06:28 +05:30
										 |  |  | 	return ((flags >> ASYNC_EVENT_CODE_SHIFT) & ASYNC_EVENT_CODE_MASK) == | 
					
						
							|  |  |  | 			ASYNC_EVENT_CODE_GRP_5; | 
					
						
							| 
									
										
										
										
											2010-10-21 07:11:14 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-30 19:06:28 +05:30
										 |  |  | static inline bool is_dbg_evt(u32 flags) | 
					
						
							| 
									
										
										
										
											2013-04-24 11:52:50 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2014-05-30 19:06:28 +05:30
										 |  |  | 	return ((flags >> ASYNC_EVENT_CODE_SHIFT) & ASYNC_EVENT_CODE_MASK) == | 
					
						
							|  |  |  | 			ASYNC_EVENT_CODE_QNQ; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void be_mcc_event_process(struct be_adapter *adapter, | 
					
						
							|  |  |  | 				 struct be_mcc_compl *compl) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (is_link_state_evt(compl->flags)) | 
					
						
							|  |  |  | 		be_async_link_state_process(adapter, compl); | 
					
						
							|  |  |  | 	else if (is_grp5_evt(compl->flags)) | 
					
						
							|  |  |  | 		be_async_grp5_evt_process(adapter, compl); | 
					
						
							|  |  |  | 	else if (is_dbg_evt(compl->flags)) | 
					
						
							|  |  |  | 		be_async_dbg_evt_process(adapter, compl); | 
					
						
							| 
									
										
										
										
											2013-04-24 11:52:50 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-27 22:53:10 +00:00
										 |  |  | static struct be_mcc_compl *be_mcc_compl_get(struct be_adapter *adapter) | 
					
						
							| 
									
										
										
										
											2009-06-18 00:02:59 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | 	struct be_queue_info *mcc_cq = &adapter->mcc_obj.cq; | 
					
						
							| 
									
										
										
										
											2009-07-27 22:53:10 +00:00
										 |  |  | 	struct be_mcc_compl *compl = queue_tail_node(mcc_cq); | 
					
						
							| 
									
										
										
										
											2009-06-18 00:02:59 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (be_mcc_compl_is_new(compl)) { | 
					
						
							|  |  |  | 		queue_tail_inc(mcc_cq); | 
					
						
							|  |  |  | 		return compl; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-17 01:35:11 +00:00
										 |  |  | void be_async_mcc_enable(struct be_adapter *adapter) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	spin_lock_bh(&adapter->mcc_cq_lock); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	be_cq_notify(adapter, adapter->mcc_obj.cq.id, true, 0); | 
					
						
							|  |  |  | 	adapter->mcc_obj.rearm_cq = true; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	spin_unlock_bh(&adapter->mcc_cq_lock); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void be_async_mcc_disable(struct be_adapter *adapter) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2012-12-17 19:38:50 +00:00
										 |  |  | 	spin_lock_bh(&adapter->mcc_cq_lock); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-17 01:35:11 +00:00
										 |  |  | 	adapter->mcc_obj.rearm_cq = false; | 
					
						
							| 
									
										
										
										
											2012-12-17 19:38:50 +00:00
										 |  |  | 	be_cq_notify(adapter, adapter->mcc_obj.cq.id, false, 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	spin_unlock_bh(&adapter->mcc_cq_lock); | 
					
						
							| 
									
										
										
										
											2010-02-17 01:35:11 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-09 18:05:27 +00:00
										 |  |  | int be_process_mcc(struct be_adapter *adapter) | 
					
						
							| 
									
										
										
										
											2009-06-18 00:02:59 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-07-27 22:53:10 +00:00
										 |  |  | 	struct be_mcc_compl *compl; | 
					
						
							| 
									
										
										
										
											2012-02-09 18:05:27 +00:00
										 |  |  | 	int num = 0, status = 0; | 
					
						
							| 
									
										
										
										
											2010-02-17 01:35:11 +00:00
										 |  |  | 	struct be_mcc_obj *mcc_obj = &adapter->mcc_obj; | 
					
						
							| 
									
										
										
										
											2009-06-18 00:02:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-24 21:41:11 +00:00
										 |  |  | 	spin_lock(&adapter->mcc_cq_lock); | 
					
						
							| 
									
										
										
										
											2014-05-30 19:06:28 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | 	while ((compl = be_mcc_compl_get(adapter))) { | 
					
						
							| 
									
										
										
										
											2009-06-18 00:10:27 +00:00
										 |  |  | 		if (compl->flags & CQE_FLAGS_ASYNC_MASK) { | 
					
						
							| 
									
										
										
										
											2014-05-30 19:06:28 +05:30
										 |  |  | 			be_mcc_event_process(adapter, compl); | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 		} else if (compl->flags & CQE_FLAGS_COMPLETED_MASK) { | 
					
						
							| 
									
										
										
										
											2014-05-30 19:06:28 +05:30
										 |  |  | 			status = be_mcc_compl_process(adapter, compl); | 
					
						
							|  |  |  | 			atomic_dec(&mcc_obj->q.used); | 
					
						
							| 
									
										
										
										
											2009-06-18 00:02:59 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		be_mcc_compl_use(compl); | 
					
						
							|  |  |  | 		num++; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-09 18:05:27 +00:00
										 |  |  | 	if (num) | 
					
						
							|  |  |  | 		be_cq_notify(adapter, mcc_obj->cq.id, mcc_obj->rearm_cq, num); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-24 21:41:11 +00:00
										 |  |  | 	spin_unlock(&adapter->mcc_cq_lock); | 
					
						
							| 
									
										
										
										
											2012-02-09 18:05:27 +00:00
										 |  |  | 	return status; | 
					
						
							| 
									
										
										
										
											2009-06-18 00:02:59 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-18 00:05:54 +00:00
										 |  |  | /* Wait till no more pending mcc requests are present */ | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | static int be_mcc_wait_compl(struct be_adapter *adapter) | 
					
						
							| 
									
										
										
										
											2009-06-18 00:05:54 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | #define mcc_timeout		120000 /* 12s timeout */
 | 
					
						
							| 
									
										
										
										
											2012-02-09 18:05:27 +00:00
										 |  |  | 	int i, status = 0; | 
					
						
							| 
									
										
										
										
											2010-03-02 03:56:39 -08:00
										 |  |  | 	struct be_mcc_obj *mcc_obj = &adapter->mcc_obj; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-18 00:05:54 +00:00
										 |  |  | 	for (i = 0; i < mcc_timeout; i++) { | 
					
						
							| 
									
										
										
										
											2011-11-10 19:18:00 +00:00
										 |  |  | 		if (be_error(adapter)) | 
					
						
							|  |  |  | 			return -EIO; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-24 21:41:11 +00:00
										 |  |  | 		local_bh_disable(); | 
					
						
							| 
									
										
										
										
											2012-02-09 18:05:27 +00:00
										 |  |  | 		status = be_process_mcc(adapter); | 
					
						
							| 
									
										
										
										
											2012-08-24 21:41:11 +00:00
										 |  |  | 		local_bh_enable(); | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-02 03:56:39 -08:00
										 |  |  | 		if (atomic_read(&mcc_obj->q.used) == 0) | 
					
						
							| 
									
										
										
										
											2009-06-18 00:05:54 +00:00
										 |  |  | 			break; | 
					
						
							|  |  |  | 		udelay(100); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	if (i == mcc_timeout) { | 
					
						
							| 
									
										
										
										
											2011-11-10 19:18:00 +00:00
										 |  |  | 		dev_err(&adapter->pdev->dev, "FW not responding\n"); | 
					
						
							|  |  |  | 		adapter->fw_timeout = true; | 
					
						
							| 
									
										
										
										
											2012-04-25 01:47:03 +00:00
										 |  |  | 		return -EIO; | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-03-02 03:56:39 -08:00
										 |  |  | 	return status; | 
					
						
							| 
									
										
										
										
											2009-06-18 00:05:54 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Notify MCC requests and wait for completion */ | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | static int be_mcc_notify_wait(struct be_adapter *adapter) | 
					
						
							| 
									
										
										
										
											2009-06-18 00:05:54 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-04-25 01:47:03 +00:00
										 |  |  | 	int status; | 
					
						
							|  |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							|  |  |  | 	struct be_mcc_obj *mcc_obj = &adapter->mcc_obj; | 
					
						
							|  |  |  | 	u16 index = mcc_obj->q.head; | 
					
						
							|  |  |  | 	struct be_cmd_resp_hdr *resp; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	index_dec(&index, mcc_obj->q.len); | 
					
						
							|  |  |  | 	wrb = queue_index_node(&mcc_obj->q, index); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	resp = be_decode_resp_hdr(wrb->tag0, wrb->tag1); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | 	be_mcc_notify(adapter); | 
					
						
							| 
									
										
										
										
											2012-04-25 01:47:03 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	status = be_mcc_wait_compl(adapter); | 
					
						
							|  |  |  | 	if (status == -EIO) | 
					
						
							|  |  |  | 		goto out; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-30 19:06:26 +05:30
										 |  |  | 	status = (resp->base_status | | 
					
						
							|  |  |  | 		  ((resp->addl_status & CQE_ADDL_STATUS_MASK) << | 
					
						
							|  |  |  | 		   CQE_ADDL_STATUS_SHIFT)); | 
					
						
							| 
									
										
										
										
											2012-04-25 01:47:03 +00:00
										 |  |  | out: | 
					
						
							|  |  |  | 	return status; | 
					
						
							| 
									
										
										
										
											2009-06-18 00:05:54 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:56 +00:00
										 |  |  | static int be_mbox_db_ready_wait(struct be_adapter *adapter, void __iomem *db) | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-30 23:34:14 +00:00
										 |  |  | 	int msecs = 0; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	u32 ready; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	do { | 
					
						
							| 
									
										
										
										
											2011-11-10 19:18:00 +00:00
										 |  |  | 		if (be_error(adapter)) | 
					
						
							|  |  |  | 			return -EIO; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-14 21:22:01 +00:00
										 |  |  | 		ready = ioread32(db); | 
					
						
							| 
									
										
										
										
											2011-11-10 19:17:59 +00:00
										 |  |  | 		if (ready == 0xffffffff) | 
					
						
							| 
									
										
										
										
											2010-02-14 21:22:01 +00:00
										 |  |  | 			return -1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		ready &= MPU_MAILBOX_DB_RDY_MASK; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 		if (ready) | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-30 23:34:14 +00:00
										 |  |  | 		if (msecs > 4000) { | 
					
						
							| 
									
										
										
										
											2011-11-10 19:18:00 +00:00
										 |  |  | 			dev_err(&adapter->pdev->dev, "FW not responding\n"); | 
					
						
							|  |  |  | 			adapter->fw_timeout = true; | 
					
						
							| 
									
										
										
										
											2012-07-12 03:57:09 +00:00
										 |  |  | 			be_detect_error(adapter); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 			return -1; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-12 19:32:16 +00:00
										 |  |  | 		msleep(1); | 
					
						
							| 
									
										
										
										
											2010-05-30 23:34:14 +00:00
										 |  |  | 		msecs++; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	} while (true); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Insert the mailbox address into the doorbell in two steps | 
					
						
							| 
									
										
										
										
											2009-06-18 00:02:59 +00:00
										 |  |  |  * Polls on the mbox doorbell till a command completion (or a timeout) occurs | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | static int be_mbox_notify_wait(struct be_adapter *adapter) | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	int status; | 
					
						
							|  |  |  | 	u32 val = 0; | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | 	void __iomem *db = adapter->db + MPU_MAILBOX_DB_OFFSET; | 
					
						
							|  |  |  | 	struct be_dma_mem *mbox_mem = &adapter->mbox_mem; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	struct be_mcc_mailbox *mbox = mbox_mem->va; | 
					
						
							| 
									
										
										
										
											2009-07-27 22:53:10 +00:00
										 |  |  | 	struct be_mcc_compl *compl = &mbox->compl; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-14 21:22:01 +00:00
										 |  |  | 	/* wait for ready to be set */ | 
					
						
							|  |  |  | 	status = be_mbox_db_ready_wait(adapter, db); | 
					
						
							|  |  |  | 	if (status != 0) | 
					
						
							|  |  |  | 		return status; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	val |= MPU_MAILBOX_DB_HI_MASK; | 
					
						
							|  |  |  | 	/* at bits 2 - 31 place mbox dma addr msb bits 34 - 63 */ | 
					
						
							|  |  |  | 	val |= (upper_32_bits(mbox_mem->dma) >> 2) << 2; | 
					
						
							|  |  |  | 	iowrite32(val, db); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* wait for ready to be set */ | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:56 +00:00
										 |  |  | 	status = be_mbox_db_ready_wait(adapter, db); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	if (status != 0) | 
					
						
							|  |  |  | 		return status; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	val = 0; | 
					
						
							|  |  |  | 	/* at bits 2 - 31 place mbox dma addr lsb bits 4 - 33 */ | 
					
						
							|  |  |  | 	val |= (u32)(mbox_mem->dma >> 4) << 2; | 
					
						
							|  |  |  | 	iowrite32(val, db); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:56 +00:00
										 |  |  | 	status = be_mbox_db_ready_wait(adapter, db); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	if (status != 0) | 
					
						
							|  |  |  | 		return status; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-18 00:02:59 +00:00
										 |  |  | 	/* A cq entry has been made now */ | 
					
						
							| 
									
										
										
										
											2009-07-27 22:53:10 +00:00
										 |  |  | 	if (be_mcc_compl_is_new(compl)) { | 
					
						
							|  |  |  | 		status = be_mcc_compl_process(adapter, &mbox->compl); | 
					
						
							|  |  |  | 		be_mcc_compl_use(compl); | 
					
						
							| 
									
										
										
										
											2009-06-18 00:02:59 +00:00
										 |  |  | 		if (status) | 
					
						
							|  |  |  | 			return status; | 
					
						
							|  |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:56 +00:00
										 |  |  | 		dev_err(&adapter->pdev->dev, "invalid mailbox completion\n"); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-06-18 00:02:59 +00:00
										 |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-05 22:23:20 +00:00
										 |  |  | static u16 be_POST_stage_get(struct be_adapter *adapter) | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-11-21 23:25:50 +00:00
										 |  |  | 	u32 sem; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-05 22:23:20 +00:00
										 |  |  | 	if (BEx_chip(adapter)) | 
					
						
							|  |  |  | 		sem  = ioread32(adapter->csr + SLIPORT_SEMAPHORE_OFFSET_BEx); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	else | 
					
						
							| 
									
										
										
										
											2013-03-05 22:23:20 +00:00
										 |  |  | 		pci_read_config_dword(adapter->pdev, | 
					
						
							|  |  |  | 				      SLIPORT_SEMAPHORE_OFFSET_SH, &sem); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return sem & POST_STAGE_MASK; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-29 17:30:57 +08:00
										 |  |  | static int lancer_wait_ready(struct be_adapter *adapter) | 
					
						
							| 
									
										
										
										
											2012-07-12 03:56:58 +00:00
										 |  |  | { | 
					
						
							|  |  |  | #define SLIPORT_READY_TIMEOUT 30
 | 
					
						
							|  |  |  | 	u32 sliport_status; | 
					
						
							|  |  |  | 	int status = 0, i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (i = 0; i < SLIPORT_READY_TIMEOUT; i++) { | 
					
						
							|  |  |  | 		sliport_status = ioread32(adapter->db + SLIPORT_STATUS_OFFSET); | 
					
						
							|  |  |  | 		if (sliport_status & SLIPORT_STATUS_RDY_MASK) | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		msleep(1000); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (i == SLIPORT_READY_TIMEOUT) | 
					
						
							|  |  |  | 		status = -1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-20 06:02:27 +00:00
										 |  |  | static bool lancer_provisioning_error(struct be_adapter *adapter) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	u32 sliport_status = 0, sliport_err1 = 0, sliport_err2 = 0; | 
					
						
							| 
									
										
										
										
											2014-09-19 15:46:56 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-20 06:02:27 +00:00
										 |  |  | 	sliport_status = ioread32(adapter->db + SLIPORT_STATUS_OFFSET); | 
					
						
							|  |  |  | 	if (sliport_status & SLIPORT_STATUS_ERR_MASK) { | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 		sliport_err1 = ioread32(adapter->db + SLIPORT_ERROR1_OFFSET); | 
					
						
							|  |  |  | 		sliport_err2 = ioread32(adapter->db + SLIPORT_ERROR2_OFFSET); | 
					
						
							| 
									
										
										
										
											2012-10-20 06:02:27 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if (sliport_err1 == SLIPORT_ERROR_NO_RESOURCE1 && | 
					
						
							|  |  |  | 		    sliport_err2 == SLIPORT_ERROR_NO_RESOURCE2) | 
					
						
							|  |  |  | 			return true; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return false; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-12 03:56:58 +00:00
										 |  |  | int lancer_test_and_set_rdy_state(struct be_adapter *adapter) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int status; | 
					
						
							|  |  |  | 	u32 sliport_status, err, reset_needed; | 
					
						
							| 
									
										
										
										
											2012-10-20 06:02:27 +00:00
										 |  |  | 	bool resource_error; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	resource_error = lancer_provisioning_error(adapter); | 
					
						
							|  |  |  | 	if (resource_error) | 
					
						
							| 
									
										
										
										
											2013-05-29 22:56:17 +00:00
										 |  |  | 		return -EAGAIN; | 
					
						
							| 
									
										
										
										
											2012-10-20 06:02:27 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-12 03:56:58 +00:00
										 |  |  | 	status = lancer_wait_ready(adapter); | 
					
						
							|  |  |  | 	if (!status) { | 
					
						
							|  |  |  | 		sliport_status = ioread32(adapter->db + SLIPORT_STATUS_OFFSET); | 
					
						
							|  |  |  | 		err = sliport_status & SLIPORT_STATUS_ERR_MASK; | 
					
						
							|  |  |  | 		reset_needed = sliport_status & SLIPORT_STATUS_RN_MASK; | 
					
						
							|  |  |  | 		if (err && reset_needed) { | 
					
						
							|  |  |  | 			iowrite32(SLI_PORT_CONTROL_IP_MASK, | 
					
						
							|  |  |  | 				  adapter->db + SLIPORT_CONTROL_OFFSET); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			/* check adapter has corrected the error */ | 
					
						
							|  |  |  | 			status = lancer_wait_ready(adapter); | 
					
						
							|  |  |  | 			sliport_status = ioread32(adapter->db + | 
					
						
							|  |  |  | 						  SLIPORT_STATUS_OFFSET); | 
					
						
							|  |  |  | 			sliport_status &= (SLIPORT_STATUS_ERR_MASK | | 
					
						
							|  |  |  | 						SLIPORT_STATUS_RN_MASK); | 
					
						
							|  |  |  | 			if (status || sliport_status) | 
					
						
							|  |  |  | 				status = -1; | 
					
						
							|  |  |  | 		} else if (err || reset_needed) { | 
					
						
							|  |  |  | 			status = -1; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-10-20 06:02:27 +00:00
										 |  |  | 	/* Stop error recovery if error is not recoverable.
 | 
					
						
							|  |  |  | 	 * No resource error is temporary errors and will go away | 
					
						
							|  |  |  | 	 * when PF provisions resources. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	resource_error = lancer_provisioning_error(adapter); | 
					
						
							| 
									
										
										
										
											2013-05-29 22:56:17 +00:00
										 |  |  | 	if (resource_error) | 
					
						
							|  |  |  | 		status = -EAGAIN; | 
					
						
							| 
									
										
										
										
											2012-10-20 06:02:27 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-12 03:56:58 +00:00
										 |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int be_fw_wait_ready(struct be_adapter *adapter) | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-10-14 20:21:17 +00:00
										 |  |  | 	u16 stage; | 
					
						
							|  |  |  | 	int status, timeout = 0; | 
					
						
							| 
									
										
										
										
											2011-05-12 19:32:15 +00:00
										 |  |  | 	struct device *dev = &adapter->pdev->dev; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-12 03:56:58 +00:00
										 |  |  | 	if (lancer_chip(adapter)) { | 
					
						
							|  |  |  | 		status = lancer_wait_ready(adapter); | 
					
						
							|  |  |  | 		return status; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-14 20:21:17 +00:00
										 |  |  | 	do { | 
					
						
							| 
									
										
										
										
											2013-03-05 22:23:20 +00:00
										 |  |  | 		stage = be_POST_stage_get(adapter); | 
					
						
							| 
									
										
										
										
											2013-03-03 21:48:46 +00:00
										 |  |  | 		if (stage == POST_STAGE_ARMFW_RDY) | 
					
						
							| 
									
										
										
										
											2009-10-14 20:21:17 +00:00
										 |  |  | 			return 0; | 
					
						
							| 
									
										
										
										
											2013-03-03 21:48:46 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 		dev_info(dev, "Waiting for POST, %ds elapsed\n", timeout); | 
					
						
							| 
									
										
										
										
											2013-03-03 21:48:46 +00:00
										 |  |  | 		if (msleep_interruptible(2000)) { | 
					
						
							|  |  |  | 			dev_err(dev, "Waiting for POST aborted\n"); | 
					
						
							|  |  |  | 			return -EINTR; | 
					
						
							| 
									
										
										
										
											2009-10-14 20:21:17 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2013-03-03 21:48:46 +00:00
										 |  |  | 		timeout += 2; | 
					
						
							| 
									
										
										
										
											2011-10-03 08:10:57 +00:00
										 |  |  | 	} while (timeout < 60); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-12 19:32:15 +00:00
										 |  |  | 	dev_err(dev, "POST timeout; stage=0x%x\n", stage); | 
					
						
							| 
									
										
										
										
											2009-10-14 20:21:17 +00:00
										 |  |  | 	return -1; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static inline struct be_sge *nonembedded_sgl(struct be_mcc_wrb *wrb) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return &wrb->payload.sgl[0]; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | static inline void fill_wrb_tags(struct be_mcc_wrb *wrb, unsigned long addr) | 
					
						
							| 
									
										
										
										
											2013-08-27 16:57:33 +05:30
										 |  |  | { | 
					
						
							|  |  |  | 	wrb->tag0 = addr & 0xFFFFFFFF; | 
					
						
							|  |  |  | 	wrb->tag1 = upper_32_bits(addr); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Don't touch the hdr after it's prepared */ | 
					
						
							| 
									
										
										
										
											2011-10-27 07:12:13 +00:00
										 |  |  | /* mem will be NULL for embedded commands */ | 
					
						
							|  |  |  | static void be_wrb_cmd_hdr_prepare(struct be_cmd_req_hdr *req_hdr, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 				   u8 subsystem, u8 opcode, int cmd_len, | 
					
						
							|  |  |  | 				   struct be_mcc_wrb *wrb, | 
					
						
							|  |  |  | 				   struct be_dma_mem *mem) | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-10-27 07:12:13 +00:00
										 |  |  | 	struct be_sge *sge; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	req_hdr->opcode = opcode; | 
					
						
							|  |  |  | 	req_hdr->subsystem = subsystem; | 
					
						
							|  |  |  | 	req_hdr->request_length = cpu_to_le32(cmd_len - sizeof(*req_hdr)); | 
					
						
							| 
									
										
										
										
											2010-02-16 00:18:46 +00:00
										 |  |  | 	req_hdr->version = 0; | 
					
						
							| 
									
										
										
										
											2013-08-27 16:57:33 +05:30
										 |  |  | 	fill_wrb_tags(wrb, (ulong) req_hdr); | 
					
						
							| 
									
										
										
										
											2011-10-27 07:12:13 +00:00
										 |  |  | 	wrb->payload_length = cmd_len; | 
					
						
							|  |  |  | 	if (mem) { | 
					
						
							|  |  |  | 		wrb->embedded |= (1 & MCC_WRB_SGE_CNT_MASK) << | 
					
						
							|  |  |  | 			MCC_WRB_SGE_CNT_SHIFT; | 
					
						
							|  |  |  | 		sge = nonembedded_sgl(wrb); | 
					
						
							|  |  |  | 		sge->pa_hi = cpu_to_le32(upper_32_bits(mem->dma)); | 
					
						
							|  |  |  | 		sge->pa_lo = cpu_to_le32(mem->dma & 0xFFFFFFFF); | 
					
						
							|  |  |  | 		sge->len = cpu_to_le32(mem->size); | 
					
						
							|  |  |  | 	} else | 
					
						
							|  |  |  | 		wrb->embedded |= MCC_WRB_EMBEDDED_MASK; | 
					
						
							|  |  |  | 	be_dws_cpu_to_le(wrb, 8); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void be_cmd_page_addrs_prepare(struct phys_addr *pages, u32 max_pages, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 				      struct be_dma_mem *mem) | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	int i, buf_pages = min(PAGES_4K_SPANNED(mem->va, mem->size), max_pages); | 
					
						
							|  |  |  | 	u64 dma = (u64)mem->dma; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (i = 0; i < buf_pages; i++) { | 
					
						
							|  |  |  | 		pages[i].lo = cpu_to_le32(dma & 0xFFFFFFFF); | 
					
						
							|  |  |  | 		pages[i].hi = cpu_to_le32(upper_32_bits(dma)); | 
					
						
							|  |  |  | 		dma += PAGE_SIZE_4K; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | static inline struct be_mcc_wrb *wrb_from_mbox(struct be_adapter *adapter) | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	struct be_dma_mem *mbox_mem = &adapter->mbox_mem; | 
					
						
							|  |  |  | 	struct be_mcc_wrb *wrb | 
					
						
							|  |  |  | 		= &((struct be_mcc_mailbox *)(mbox_mem->va))->wrb; | 
					
						
							|  |  |  | 	memset(wrb, 0, sizeof(*wrb)); | 
					
						
							|  |  |  | 	return wrb; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | static struct be_mcc_wrb *wrb_from_mccq(struct be_adapter *adapter) | 
					
						
							| 
									
										
										
										
											2009-06-18 00:02:59 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	struct be_queue_info *mccq = &adapter->mcc_obj.q; | 
					
						
							|  |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-20 06:03:25 +00:00
										 |  |  | 	if (!mccq->created) | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-21 23:28:15 +00:00
										 |  |  | 	if (atomic_read(&mccq->used) >= mccq->len) | 
					
						
							| 
									
										
										
										
											2009-11-22 22:02:45 +00:00
										 |  |  | 		return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	wrb = queue_head_node(mccq); | 
					
						
							|  |  |  | 	queue_head_inc(mccq); | 
					
						
							|  |  |  | 	atomic_inc(&mccq->used); | 
					
						
							|  |  |  | 	memset(wrb, 0, sizeof(*wrb)); | 
					
						
							| 
									
										
										
										
											2009-06-18 00:02:59 +00:00
										 |  |  | 	return wrb; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-27 16:57:33 +05:30
										 |  |  | static bool use_mcc(struct be_adapter *adapter) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return adapter->mcc_obj.q.created; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Must be used only in process context */ | 
					
						
							|  |  |  | static int be_cmd_lock(struct be_adapter *adapter) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (use_mcc(adapter)) { | 
					
						
							|  |  |  | 		spin_lock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		return mutex_lock_interruptible(&adapter->mbox_lock); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Must be used only in process context */ | 
					
						
							|  |  |  | static void be_cmd_unlock(struct be_adapter *adapter) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (use_mcc(adapter)) | 
					
						
							|  |  |  | 		spin_unlock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		return mutex_unlock(&adapter->mbox_lock); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct be_mcc_wrb *be_cmd_copy(struct be_adapter *adapter, | 
					
						
							|  |  |  | 				      struct be_mcc_wrb *wrb) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct be_mcc_wrb *dest_wrb; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (use_mcc(adapter)) { | 
					
						
							|  |  |  | 		dest_wrb = wrb_from_mccq(adapter); | 
					
						
							|  |  |  | 		if (!dest_wrb) | 
					
						
							|  |  |  | 			return NULL; | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		dest_wrb = wrb_from_mbox(adapter); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	memcpy(dest_wrb, wrb, sizeof(*wrb)); | 
					
						
							|  |  |  | 	if (wrb->embedded & cpu_to_le32(MCC_WRB_EMBEDDED_MASK)) | 
					
						
							|  |  |  | 		fill_wrb_tags(dest_wrb, (ulong) embedded_payload(wrb)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return dest_wrb; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Must be used only in process context */ | 
					
						
							|  |  |  | static int be_cmd_notify_wait(struct be_adapter *adapter, | 
					
						
							|  |  |  | 			      struct be_mcc_wrb *wrb) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct be_mcc_wrb *dest_wrb; | 
					
						
							|  |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	status = be_cmd_lock(adapter); | 
					
						
							|  |  |  | 	if (status) | 
					
						
							|  |  |  | 		return status; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	dest_wrb = be_cmd_copy(adapter, wrb); | 
					
						
							|  |  |  | 	if (!dest_wrb) | 
					
						
							|  |  |  | 		return -EBUSY; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (use_mcc(adapter)) | 
					
						
							|  |  |  | 		status = be_mcc_notify_wait(adapter); | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		status = be_mbox_notify_wait(adapter); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!status) | 
					
						
							|  |  |  | 		memcpy(wrb, dest_wrb, sizeof(*wrb)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	be_cmd_unlock(adapter); | 
					
						
							|  |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-22 22:02:03 +00:00
										 |  |  | /* Tell fw we're about to start firing cmds by writing a
 | 
					
						
							|  |  |  |  * special pattern across the wrb hdr; uses mbox | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | int be_cmd_fw_init(struct be_adapter *adapter) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	u8 *wrb; | 
					
						
							|  |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-12 03:56:58 +00:00
										 |  |  | 	if (lancer_chip(adapter)) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-14 05:43:19 +00:00
										 |  |  | 	if (mutex_lock_interruptible(&adapter->mbox_lock)) | 
					
						
							|  |  |  | 		return -1; | 
					
						
							| 
									
										
										
										
											2009-11-22 22:02:03 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	wrb = (u8 *)wrb_from_mbox(adapter); | 
					
						
							| 
									
										
										
										
											2010-12-01 01:03:36 +00:00
										 |  |  | 	*wrb++ = 0xFF; | 
					
						
							|  |  |  | 	*wrb++ = 0x12; | 
					
						
							|  |  |  | 	*wrb++ = 0x34; | 
					
						
							|  |  |  | 	*wrb++ = 0xFF; | 
					
						
							|  |  |  | 	*wrb++ = 0xFF; | 
					
						
							|  |  |  | 	*wrb++ = 0x56; | 
					
						
							|  |  |  | 	*wrb++ = 0x78; | 
					
						
							|  |  |  | 	*wrb = 0xFF; | 
					
						
							| 
									
										
										
										
											2009-11-22 22:02:03 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	status = be_mbox_notify_wait(adapter); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-14 05:43:19 +00:00
										 |  |  | 	mutex_unlock(&adapter->mbox_lock); | 
					
						
							| 
									
										
										
										
											2009-11-22 22:02:03 +00:00
										 |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Tell fw we're done with firing cmds by writing a
 | 
					
						
							|  |  |  |  * special pattern across the wrb hdr; uses mbox | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | int be_cmd_fw_clean(struct be_adapter *adapter) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	u8 *wrb; | 
					
						
							|  |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-12 03:56:58 +00:00
										 |  |  | 	if (lancer_chip(adapter)) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-14 05:43:19 +00:00
										 |  |  | 	if (mutex_lock_interruptible(&adapter->mbox_lock)) | 
					
						
							|  |  |  | 		return -1; | 
					
						
							| 
									
										
										
										
											2009-11-22 22:02:03 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	wrb = (u8 *)wrb_from_mbox(adapter); | 
					
						
							|  |  |  | 	*wrb++ = 0xFF; | 
					
						
							|  |  |  | 	*wrb++ = 0xAA; | 
					
						
							|  |  |  | 	*wrb++ = 0xBB; | 
					
						
							|  |  |  | 	*wrb++ = 0xFF; | 
					
						
							|  |  |  | 	*wrb++ = 0xFF; | 
					
						
							|  |  |  | 	*wrb++ = 0xCC; | 
					
						
							|  |  |  | 	*wrb++ = 0xDD; | 
					
						
							|  |  |  | 	*wrb = 0xFF; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	status = be_mbox_notify_wait(adapter); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-14 05:43:19 +00:00
										 |  |  | 	mutex_unlock(&adapter->mbox_lock); | 
					
						
							| 
									
										
										
										
											2009-11-22 22:02:03 +00:00
										 |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2012-07-12 03:56:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-27 16:57:30 +05:30
										 |  |  | int be_cmd_eq_create(struct be_adapter *adapter, struct be_eq_obj *eqo) | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							|  |  |  | 	struct be_cmd_req_eq_create *req; | 
					
						
							| 
									
										
										
										
											2013-08-27 16:57:30 +05:30
										 |  |  | 	struct be_dma_mem *q_mem = &eqo->q.dma_mem; | 
					
						
							|  |  |  | 	int status, ver = 0; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-14 05:43:19 +00:00
										 |  |  | 	if (mutex_lock_interruptible(&adapter->mbox_lock)) | 
					
						
							|  |  |  | 		return -1; | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	wrb = wrb_from_mbox(adapter); | 
					
						
							|  |  |  | 	req = embedded_payload(wrb); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-27 07:12:13 +00:00
										 |  |  | 	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 			       OPCODE_COMMON_EQ_CREATE, sizeof(*req), wrb, | 
					
						
							|  |  |  | 			       NULL); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-27 16:57:30 +05:30
										 |  |  | 	/* Support for EQ_CREATEv2 available only SH-R onwards */ | 
					
						
							|  |  |  | 	if (!(BEx_chip(adapter) || lancer_chip(adapter))) | 
					
						
							|  |  |  | 		ver = 2; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	req->hdr.version = ver; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	req->num_pages =  cpu_to_le16(PAGES_4K_SPANNED(q_mem->va, q_mem->size)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	AMAP_SET_BITS(struct amap_eq_context, valid, req->context, 1); | 
					
						
							|  |  |  | 	/* 4byte eqe*/ | 
					
						
							|  |  |  | 	AMAP_SET_BITS(struct amap_eq_context, size, req->context, 0); | 
					
						
							|  |  |  | 	AMAP_SET_BITS(struct amap_eq_context, count, req->context, | 
					
						
							| 
									
										
										
										
											2013-08-27 16:57:30 +05:30
										 |  |  | 		      __ilog2_u32(eqo->q.len / 256)); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	be_dws_cpu_to_le(req->context, sizeof(req->context)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	be_cmd_page_addrs_prepare(req->pages, ARRAY_SIZE(req->pages), q_mem); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	status = be_mbox_notify_wait(adapter); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	if (!status) { | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 		struct be_cmd_resp_eq_create *resp = embedded_payload(wrb); | 
					
						
							| 
									
										
										
										
											2014-09-19 15:46:56 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-27 16:57:30 +05:30
										 |  |  | 		eqo->q.id = le16_to_cpu(resp->eq_id); | 
					
						
							|  |  |  | 		eqo->msix_idx = | 
					
						
							|  |  |  | 			(ver == 2) ? le16_to_cpu(resp->msix_idx) : eqo->idx; | 
					
						
							|  |  |  | 		eqo->q.created = true; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-14 05:43:19 +00:00
										 |  |  | 	mutex_unlock(&adapter->mbox_lock); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-24 02:45:01 +00:00
										 |  |  | /* Use MCC */ | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | int be_cmd_mac_addr_query(struct be_adapter *adapter, u8 *mac_addr, | 
					
						
							| 
									
										
										
										
											2012-09-28 04:39:41 +00:00
										 |  |  | 			  bool permanent, u32 if_handle, u32 pmac_id) | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							|  |  |  | 	struct be_cmd_req_mac_query *req; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-24 02:45:01 +00:00
										 |  |  | 	spin_lock_bh(&adapter->mcc_lock); | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-24 02:45:01 +00:00
										 |  |  | 	wrb = wrb_from_mccq(adapter); | 
					
						
							|  |  |  | 	if (!wrb) { | 
					
						
							|  |  |  | 		status = -EBUSY; | 
					
						
							|  |  |  | 		goto err; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	req = embedded_payload(wrb); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-27 07:12:13 +00:00
										 |  |  | 	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 			       OPCODE_COMMON_NTWK_MAC_QUERY, sizeof(*req), wrb, | 
					
						
							|  |  |  | 			       NULL); | 
					
						
							| 
									
										
										
										
											2012-09-28 04:39:41 +00:00
										 |  |  | 	req->type = MAC_ADDRESS_TYPE_NETWORK; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	if (permanent) { | 
					
						
							|  |  |  | 		req->permanent = 1; | 
					
						
							|  |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2014-09-19 15:47:00 +05:30
										 |  |  | 		req->if_id = cpu_to_le16((u16)if_handle); | 
					
						
							| 
									
										
										
										
											2011-11-25 05:47:26 +00:00
										 |  |  | 		req->pmac_id = cpu_to_le32(pmac_id); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 		req->permanent = 0; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-24 02:45:01 +00:00
										 |  |  | 	status = be_mcc_notify_wait(adapter); | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	if (!status) { | 
					
						
							|  |  |  | 		struct be_cmd_resp_mac_query *resp = embedded_payload(wrb); | 
					
						
							| 
									
										
										
										
											2014-09-19 15:46:56 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 		memcpy(mac_addr, resp->mac.addr, ETH_ALEN); | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-24 02:45:01 +00:00
										 |  |  | err: | 
					
						
							|  |  |  | 	spin_unlock_bh(&adapter->mcc_lock); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | /* Uses synchronous MCCQ */ | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | int be_cmd_pmac_add(struct be_adapter *adapter, u8 *mac_addr, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 		    u32 if_id, u32 *pmac_id, u32 domain) | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							|  |  |  | 	struct be_cmd_req_pmac_add *req; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	spin_lock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wrb = wrb_from_mccq(adapter); | 
					
						
							| 
									
										
										
										
											2009-11-22 22:02:45 +00:00
										 |  |  | 	if (!wrb) { | 
					
						
							|  |  |  | 		status = -EBUSY; | 
					
						
							|  |  |  | 		goto err; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	req = embedded_payload(wrb); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-27 07:12:13 +00:00
										 |  |  | 	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 			       OPCODE_COMMON_NTWK_PMAC_ADD, sizeof(*req), wrb, | 
					
						
							|  |  |  | 			       NULL); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-11 13:36:37 +00:00
										 |  |  | 	req->hdr.domain = domain; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	req->if_id = cpu_to_le32(if_id); | 
					
						
							|  |  |  | 	memcpy(req->mac_address, mac_addr, ETH_ALEN); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	status = be_mcc_notify_wait(adapter); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	if (!status) { | 
					
						
							|  |  |  | 		struct be_cmd_resp_pmac_add *resp = embedded_payload(wrb); | 
					
						
							| 
									
										
										
										
											2014-09-19 15:46:56 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 		*pmac_id = le32_to_cpu(resp->pmac_id); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-22 22:02:45 +00:00
										 |  |  | err: | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	spin_unlock_bh(&adapter->mcc_lock); | 
					
						
							| 
									
										
										
										
											2011-10-27 07:14:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	 if (status == MCC_STATUS_UNAUTHORIZED_REQUEST) | 
					
						
							|  |  |  | 		status = -EPERM; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | /* Uses synchronous MCCQ */ | 
					
						
							| 
									
										
										
										
											2011-11-10 19:17:57 +00:00
										 |  |  | int be_cmd_pmac_del(struct be_adapter *adapter, u32 if_id, int pmac_id, u32 dom) | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							|  |  |  | 	struct be_cmd_req_pmac_del *req; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-10 19:17:57 +00:00
										 |  |  | 	if (pmac_id == -1) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	spin_lock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wrb = wrb_from_mccq(adapter); | 
					
						
							| 
									
										
										
										
											2009-11-22 22:02:45 +00:00
										 |  |  | 	if (!wrb) { | 
					
						
							|  |  |  | 		status = -EBUSY; | 
					
						
							|  |  |  | 		goto err; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	req = embedded_payload(wrb); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-27 07:12:13 +00:00
										 |  |  | 	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							| 
									
										
										
										
											2014-09-19 15:47:02 +05:30
										 |  |  | 			       OPCODE_COMMON_NTWK_PMAC_DEL, sizeof(*req), | 
					
						
							|  |  |  | 			       wrb, NULL); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-11 13:36:37 +00:00
										 |  |  | 	req->hdr.domain = dom; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	req->if_id = cpu_to_le32(if_id); | 
					
						
							|  |  |  | 	req->pmac_id = cpu_to_le32(pmac_id); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	status = be_mcc_notify_wait(adapter); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-22 22:02:45 +00:00
										 |  |  | err: | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	spin_unlock_bh(&adapter->mcc_lock); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | /* Uses Mbox */ | 
					
						
							| 
									
										
										
										
											2012-02-09 18:05:27 +00:00
										 |  |  | int be_cmd_cq_create(struct be_adapter *adapter, struct be_queue_info *cq, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 		     struct be_queue_info *eq, bool no_delay, int coalesce_wm) | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							|  |  |  | 	struct be_cmd_req_cq_create *req; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	struct be_dma_mem *q_mem = &cq->dma_mem; | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	void *ctxt; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-14 05:43:19 +00:00
										 |  |  | 	if (mutex_lock_interruptible(&adapter->mbox_lock)) | 
					
						
							|  |  |  | 		return -1; | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	wrb = wrb_from_mbox(adapter); | 
					
						
							|  |  |  | 	req = embedded_payload(wrb); | 
					
						
							|  |  |  | 	ctxt = &req->context; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-27 07:12:13 +00:00
										 |  |  | 	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 			       OPCODE_COMMON_CQ_CREATE, sizeof(*req), wrb, | 
					
						
							|  |  |  | 			       NULL); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	req->num_pages =  cpu_to_le16(PAGES_4K_SPANNED(q_mem->va, q_mem->size)); | 
					
						
							| 
									
										
										
										
											2013-05-01 09:37:17 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (BEx_chip(adapter)) { | 
					
						
							| 
									
										
										
										
											2010-11-21 23:25:50 +00:00
										 |  |  | 		AMAP_SET_BITS(struct amap_cq_context_be, coalescwm, ctxt, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 			      coalesce_wm); | 
					
						
							| 
									
										
										
										
											2010-11-21 23:25:50 +00:00
										 |  |  | 		AMAP_SET_BITS(struct amap_cq_context_be, nodelay, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 			      ctxt, no_delay); | 
					
						
							| 
									
										
										
										
											2010-11-21 23:25:50 +00:00
										 |  |  | 		AMAP_SET_BITS(struct amap_cq_context_be, count, ctxt, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 			      __ilog2_u32(cq->len / 256)); | 
					
						
							| 
									
										
										
										
											2010-11-21 23:25:50 +00:00
										 |  |  | 		AMAP_SET_BITS(struct amap_cq_context_be, valid, ctxt, 1); | 
					
						
							|  |  |  | 		AMAP_SET_BITS(struct amap_cq_context_be, eventable, ctxt, 1); | 
					
						
							|  |  |  | 		AMAP_SET_BITS(struct amap_cq_context_be, eqid, ctxt, eq->id); | 
					
						
							| 
									
										
										
										
											2013-05-01 09:37:17 +00:00
										 |  |  | 	} else { | 
					
						
							|  |  |  | 		req->hdr.version = 2; | 
					
						
							|  |  |  | 		req->page_size = 1; /* 1 for 4K */ | 
					
						
							| 
									
										
										
										
											2013-11-22 12:51:20 -06:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		/* coalesce-wm field in this cmd is not relevant to Lancer.
 | 
					
						
							|  |  |  | 		 * Lancer uses COMMON_MODIFY_CQ to set this field | 
					
						
							|  |  |  | 		 */ | 
					
						
							|  |  |  | 		if (!lancer_chip(adapter)) | 
					
						
							|  |  |  | 			AMAP_SET_BITS(struct amap_cq_context_v2, coalescwm, | 
					
						
							|  |  |  | 				      ctxt, coalesce_wm); | 
					
						
							| 
									
										
										
										
											2013-05-01 09:37:17 +00:00
										 |  |  | 		AMAP_SET_BITS(struct amap_cq_context_v2, nodelay, ctxt, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 			      no_delay); | 
					
						
							| 
									
										
										
										
											2013-05-01 09:37:17 +00:00
										 |  |  | 		AMAP_SET_BITS(struct amap_cq_context_v2, count, ctxt, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 			      __ilog2_u32(cq->len / 256)); | 
					
						
							| 
									
										
										
										
											2013-05-01 09:37:17 +00:00
										 |  |  | 		AMAP_SET_BITS(struct amap_cq_context_v2, valid, ctxt, 1); | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 		AMAP_SET_BITS(struct amap_cq_context_v2, eventable, ctxt, 1); | 
					
						
							|  |  |  | 		AMAP_SET_BITS(struct amap_cq_context_v2, eqid, ctxt, eq->id); | 
					
						
							| 
									
										
										
										
											2010-11-21 23:25:50 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	be_dws_cpu_to_le(ctxt, sizeof(req->context)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	be_cmd_page_addrs_prepare(req->pages, ARRAY_SIZE(req->pages), q_mem); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	status = be_mbox_notify_wait(adapter); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	if (!status) { | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 		struct be_cmd_resp_cq_create *resp = embedded_payload(wrb); | 
					
						
							| 
									
										
										
										
											2014-09-19 15:46:56 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 		cq->id = le16_to_cpu(resp->cq_id); | 
					
						
							|  |  |  | 		cq->created = true; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-14 05:43:19 +00:00
										 |  |  | 	mutex_unlock(&adapter->mbox_lock); | 
					
						
							| 
									
										
										
										
											2009-06-18 00:02:59 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static u32 be_encoded_q_len(int q_len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	u32 len_encoded = fls(q_len); /* log2(len) + 1 */ | 
					
						
							| 
									
										
										
										
											2014-09-19 15:46:56 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-18 00:02:59 +00:00
										 |  |  | 	if (len_encoded == 16) | 
					
						
							|  |  |  | 		len_encoded = 0; | 
					
						
							|  |  |  | 	return len_encoded; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-05 18:02:02 +09:00
										 |  |  | static int be_cmd_mccq_ext_create(struct be_adapter *adapter, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 				  struct be_queue_info *mccq, | 
					
						
							|  |  |  | 				  struct be_queue_info *cq) | 
					
						
							| 
									
										
										
										
											2009-06-18 00:02:59 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							| 
									
										
										
										
											2011-06-01 00:33:22 +00:00
										 |  |  | 	struct be_cmd_req_mcc_ext_create *req; | 
					
						
							| 
									
										
										
										
											2009-06-18 00:02:59 +00:00
										 |  |  | 	struct be_dma_mem *q_mem = &mccq->dma_mem; | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	void *ctxt; | 
					
						
							| 
									
										
										
										
											2009-06-18 00:02:59 +00:00
										 |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-14 05:43:19 +00:00
										 |  |  | 	if (mutex_lock_interruptible(&adapter->mbox_lock)) | 
					
						
							|  |  |  | 		return -1; | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	wrb = wrb_from_mbox(adapter); | 
					
						
							|  |  |  | 	req = embedded_payload(wrb); | 
					
						
							|  |  |  | 	ctxt = &req->context; | 
					
						
							| 
									
										
										
										
											2009-06-18 00:02:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-27 07:12:13 +00:00
										 |  |  | 	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 			       OPCODE_COMMON_MCC_CREATE_EXT, sizeof(*req), wrb, | 
					
						
							|  |  |  | 			       NULL); | 
					
						
							| 
									
										
										
										
											2009-06-18 00:02:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-11 01:35:59 +00:00
										 |  |  | 	req->num_pages = cpu_to_le16(PAGES_4K_SPANNED(q_mem->va, q_mem->size)); | 
					
						
							| 
									
										
										
										
											2014-01-15 13:23:31 +05:30
										 |  |  | 	if (BEx_chip(adapter)) { | 
					
						
							| 
									
										
										
										
											2010-11-21 23:25:50 +00:00
										 |  |  | 		AMAP_SET_BITS(struct amap_mcc_context_be, valid, ctxt, 1); | 
					
						
							|  |  |  | 		AMAP_SET_BITS(struct amap_mcc_context_be, ring_size, ctxt, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 			      be_encoded_q_len(mccq->len)); | 
					
						
							| 
									
										
										
										
											2010-11-21 23:25:50 +00:00
										 |  |  | 		AMAP_SET_BITS(struct amap_mcc_context_be, cq_id, ctxt, cq->id); | 
					
						
							| 
									
										
										
										
											2014-01-15 13:23:31 +05:30
										 |  |  | 	} else { | 
					
						
							|  |  |  | 		req->hdr.version = 1; | 
					
						
							|  |  |  | 		req->cq_id = cpu_to_le16(cq->id); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		AMAP_SET_BITS(struct amap_mcc_context_v1, ring_size, ctxt, | 
					
						
							|  |  |  | 			      be_encoded_q_len(mccq->len)); | 
					
						
							|  |  |  | 		AMAP_SET_BITS(struct amap_mcc_context_v1, valid, ctxt, 1); | 
					
						
							|  |  |  | 		AMAP_SET_BITS(struct amap_mcc_context_v1, async_cq_id, | 
					
						
							|  |  |  | 			      ctxt, cq->id); | 
					
						
							|  |  |  | 		AMAP_SET_BITS(struct amap_mcc_context_v1, async_cq_valid, | 
					
						
							|  |  |  | 			      ctxt, 1); | 
					
						
							| 
									
										
										
										
											2010-11-21 23:25:50 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-06-18 00:02:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-21 07:11:14 -07:00
										 |  |  | 	/* Subscribe to Link State and Group 5 Events(bits 1 and 5 set) */ | 
					
						
							| 
									
										
										
										
											2010-11-21 23:25:50 +00:00
										 |  |  | 	req->async_event_bitmap[0] = cpu_to_le32(0x00000022); | 
					
						
							| 
									
										
										
										
											2013-04-24 11:52:50 +00:00
										 |  |  | 	req->async_event_bitmap[0] |= cpu_to_le32(1 << ASYNC_EVENT_CODE_QNQ); | 
					
						
							| 
									
										
										
										
											2009-06-18 00:02:59 +00:00
										 |  |  | 	be_dws_cpu_to_le(ctxt, sizeof(req->context)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	be_cmd_page_addrs_prepare(req->pages, ARRAY_SIZE(req->pages), q_mem); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	status = be_mbox_notify_wait(adapter); | 
					
						
							| 
									
										
										
										
											2009-06-18 00:02:59 +00:00
										 |  |  | 	if (!status) { | 
					
						
							|  |  |  | 		struct be_cmd_resp_mcc_create *resp = embedded_payload(wrb); | 
					
						
							| 
									
										
										
										
											2014-09-19 15:46:56 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-18 00:02:59 +00:00
										 |  |  | 		mccq->id = le16_to_cpu(resp->id); | 
					
						
							|  |  |  | 		mccq->created = true; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-12-14 05:43:19 +00:00
										 |  |  | 	mutex_unlock(&adapter->mbox_lock); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-05 18:02:02 +09:00
										 |  |  | static int be_cmd_mccq_org_create(struct be_adapter *adapter, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 				  struct be_queue_info *mccq, | 
					
						
							|  |  |  | 				  struct be_queue_info *cq) | 
					
						
							| 
									
										
										
										
											2011-06-01 00:33:22 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							|  |  |  | 	struct be_cmd_req_mcc_create *req; | 
					
						
							|  |  |  | 	struct be_dma_mem *q_mem = &mccq->dma_mem; | 
					
						
							|  |  |  | 	void *ctxt; | 
					
						
							|  |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (mutex_lock_interruptible(&adapter->mbox_lock)) | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wrb = wrb_from_mbox(adapter); | 
					
						
							|  |  |  | 	req = embedded_payload(wrb); | 
					
						
							|  |  |  | 	ctxt = &req->context; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-27 07:12:13 +00:00
										 |  |  | 	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 			       OPCODE_COMMON_MCC_CREATE, sizeof(*req), wrb, | 
					
						
							|  |  |  | 			       NULL); | 
					
						
							| 
									
										
										
										
											2011-06-01 00:33:22 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	req->num_pages = cpu_to_le16(PAGES_4K_SPANNED(q_mem->va, q_mem->size)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	AMAP_SET_BITS(struct amap_mcc_context_be, valid, ctxt, 1); | 
					
						
							|  |  |  | 	AMAP_SET_BITS(struct amap_mcc_context_be, ring_size, ctxt, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 		      be_encoded_q_len(mccq->len)); | 
					
						
							| 
									
										
										
										
											2011-06-01 00:33:22 +00:00
										 |  |  | 	AMAP_SET_BITS(struct amap_mcc_context_be, cq_id, ctxt, cq->id); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	be_dws_cpu_to_le(ctxt, sizeof(req->context)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	be_cmd_page_addrs_prepare(req->pages, ARRAY_SIZE(req->pages), q_mem); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	status = be_mbox_notify_wait(adapter); | 
					
						
							|  |  |  | 	if (!status) { | 
					
						
							|  |  |  | 		struct be_cmd_resp_mcc_create *resp = embedded_payload(wrb); | 
					
						
							| 
									
										
										
										
											2014-09-19 15:46:56 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-01 00:33:22 +00:00
										 |  |  | 		mccq->id = le16_to_cpu(resp->id); | 
					
						
							|  |  |  | 		mccq->created = true; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	mutex_unlock(&adapter->mbox_lock); | 
					
						
							|  |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int be_cmd_mccq_create(struct be_adapter *adapter, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 		       struct be_queue_info *mccq, struct be_queue_info *cq) | 
					
						
							| 
									
										
										
										
											2011-06-01 00:33:22 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	status = be_cmd_mccq_ext_create(adapter, mccq, cq); | 
					
						
							| 
									
										
										
										
											2014-01-15 13:23:31 +05:30
										 |  |  | 	if (status && BEx_chip(adapter)) { | 
					
						
							| 
									
										
										
										
											2011-06-01 00:33:22 +00:00
										 |  |  | 		dev_warn(&adapter->pdev->dev, "Upgrade to F/W ver 2.102.235.0 " | 
					
						
							|  |  |  | 			"or newer to avoid conflicting priorities between NIC " | 
					
						
							|  |  |  | 			"and FCoE traffic"); | 
					
						
							|  |  |  | 		status = be_cmd_mccq_org_create(adapter, mccq, cq); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-21 23:28:14 +00:00
										 |  |  | int be_cmd_txq_create(struct be_adapter *adapter, struct be_tx_obj *txo) | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-08-27 16:57:34 +05:30
										 |  |  | 	struct be_mcc_wrb wrb = {0}; | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	struct be_cmd_req_eth_tx_create *req; | 
					
						
							| 
									
										
										
										
											2013-04-21 23:28:14 +00:00
										 |  |  | 	struct be_queue_info *txq = &txo->q; | 
					
						
							|  |  |  | 	struct be_queue_info *cq = &txo->cq; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	struct be_dma_mem *q_mem = &txq->dma_mem; | 
					
						
							| 
									
										
										
										
											2013-04-21 23:28:14 +00:00
										 |  |  | 	int status, ver = 0; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-27 16:57:34 +05:30
										 |  |  | 	req = embedded_payload(&wrb); | 
					
						
							| 
									
										
										
										
											2011-10-27 07:12:13 +00:00
										 |  |  | 	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_ETH, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 			       OPCODE_ETH_TX_CREATE, sizeof(*req), &wrb, NULL); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-07 03:08:52 +00:00
										 |  |  | 	if (lancer_chip(adapter)) { | 
					
						
							|  |  |  | 		req->hdr.version = 1; | 
					
						
							| 
									
										
										
										
											2013-04-21 23:28:14 +00:00
										 |  |  | 	} else if (BEx_chip(adapter)) { | 
					
						
							|  |  |  | 		if (adapter->function_caps & BE_FUNCTION_CAPS_SUPER_NIC) | 
					
						
							|  |  |  | 			req->hdr.version = 2; | 
					
						
							|  |  |  | 	} else { /* For SH */ | 
					
						
							|  |  |  | 		req->hdr.version = 2; | 
					
						
							| 
									
										
										
										
											2011-03-07 03:08:52 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-01 15:59:57 +05:30
										 |  |  | 	if (req->hdr.version > 0) | 
					
						
							|  |  |  | 		req->if_id = cpu_to_le16(adapter->if_handle); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	req->num_pages = PAGES_4K_SPANNED(q_mem->va, q_mem->size); | 
					
						
							|  |  |  | 	req->ulp_num = BE_ULP1_NUM; | 
					
						
							|  |  |  | 	req->type = BE_ETH_TX_RING_TYPE_STANDARD; | 
					
						
							| 
									
										
										
										
											2013-04-21 23:28:14 +00:00
										 |  |  | 	req->cq_id = cpu_to_le16(cq->id); | 
					
						
							|  |  |  | 	req->queue_size = be_encoded_q_len(txq->len); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	be_cmd_page_addrs_prepare(req->pages, ARRAY_SIZE(req->pages), q_mem); | 
					
						
							| 
									
										
										
										
											2013-04-21 23:28:14 +00:00
										 |  |  | 	ver = req->hdr.version; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-27 16:57:34 +05:30
										 |  |  | 	status = be_cmd_notify_wait(adapter, &wrb); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	if (!status) { | 
					
						
							| 
									
										
										
										
											2013-08-27 16:57:34 +05:30
										 |  |  | 		struct be_cmd_resp_eth_tx_create *resp = embedded_payload(&wrb); | 
					
						
							| 
									
										
										
										
											2014-09-19 15:46:56 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 		txq->id = le16_to_cpu(resp->cid); | 
					
						
							| 
									
										
										
										
											2013-04-21 23:28:14 +00:00
										 |  |  | 		if (ver == 2) | 
					
						
							|  |  |  | 			txo->db_offset = le32_to_cpu(resp->db_offset); | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 			txo->db_offset = DB_TXULP1_OFFSET; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 		txq->created = true; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-29 23:33:17 +00:00
										 |  |  | /* Uses MCC */ | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | int be_cmd_rxq_create(struct be_adapter *adapter, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 		      struct be_queue_info *rxq, u16 cq_id, u16 frag_size, | 
					
						
							|  |  |  | 		      u32 if_id, u32 rss, u8 *rss_id) | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							|  |  |  | 	struct be_cmd_req_eth_rx_create *req; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	struct be_dma_mem *q_mem = &rxq->dma_mem; | 
					
						
							|  |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-29 23:33:17 +00:00
										 |  |  | 	spin_lock_bh(&adapter->mcc_lock); | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-29 23:33:17 +00:00
										 |  |  | 	wrb = wrb_from_mccq(adapter); | 
					
						
							|  |  |  | 	if (!wrb) { | 
					
						
							|  |  |  | 		status = -EBUSY; | 
					
						
							|  |  |  | 		goto err; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	req = embedded_payload(wrb); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-27 07:12:13 +00:00
										 |  |  | 	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_ETH, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 			       OPCODE_ETH_RX_CREATE, sizeof(*req), wrb, NULL); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	req->cq_id = cpu_to_le16(cq_id); | 
					
						
							|  |  |  | 	req->frag_size = fls(frag_size) - 1; | 
					
						
							|  |  |  | 	req->num_pages = 2; | 
					
						
							|  |  |  | 	be_cmd_page_addrs_prepare(req->pages, ARRAY_SIZE(req->pages), q_mem); | 
					
						
							|  |  |  | 	req->interface_id = cpu_to_le32(if_id); | 
					
						
							| 
									
										
										
										
											2012-02-09 18:05:27 +00:00
										 |  |  | 	req->max_frame_size = cpu_to_le16(BE_MAX_JUMBO_FRAME_SIZE); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	req->rss_queue = cpu_to_le32(rss); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-29 23:33:17 +00:00
										 |  |  | 	status = be_mcc_notify_wait(adapter); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	if (!status) { | 
					
						
							|  |  |  | 		struct be_cmd_resp_eth_rx_create *resp = embedded_payload(wrb); | 
					
						
							| 
									
										
										
										
											2014-09-19 15:46:56 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 		rxq->id = le16_to_cpu(resp->id); | 
					
						
							|  |  |  | 		rxq->created = true; | 
					
						
							| 
									
										
										
										
											2010-10-03 22:12:27 -07:00
										 |  |  | 		*rss_id = resp->rss_id; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-29 23:33:17 +00:00
										 |  |  | err: | 
					
						
							|  |  |  | 	spin_unlock_bh(&adapter->mcc_lock); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | /* Generic destroyer function for all types of queues
 | 
					
						
							|  |  |  |  * Uses Mbox | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | int be_cmd_q_destroy(struct be_adapter *adapter, struct be_queue_info *q, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 		     int queue_type) | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							|  |  |  | 	struct be_cmd_req_q_destroy *req; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	u8 subsys = 0, opcode = 0; | 
					
						
							|  |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-14 05:43:19 +00:00
										 |  |  | 	if (mutex_lock_interruptible(&adapter->mbox_lock)) | 
					
						
							|  |  |  | 		return -1; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	wrb = wrb_from_mbox(adapter); | 
					
						
							|  |  |  | 	req = embedded_payload(wrb); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	switch (queue_type) { | 
					
						
							|  |  |  | 	case QTYPE_EQ: | 
					
						
							|  |  |  | 		subsys = CMD_SUBSYSTEM_COMMON; | 
					
						
							|  |  |  | 		opcode = OPCODE_COMMON_EQ_DESTROY; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case QTYPE_CQ: | 
					
						
							|  |  |  | 		subsys = CMD_SUBSYSTEM_COMMON; | 
					
						
							|  |  |  | 		opcode = OPCODE_COMMON_CQ_DESTROY; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case QTYPE_TXQ: | 
					
						
							|  |  |  | 		subsys = CMD_SUBSYSTEM_ETH; | 
					
						
							|  |  |  | 		opcode = OPCODE_ETH_TX_DESTROY; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case QTYPE_RXQ: | 
					
						
							|  |  |  | 		subsys = CMD_SUBSYSTEM_ETH; | 
					
						
							|  |  |  | 		opcode = OPCODE_ETH_RX_DESTROY; | 
					
						
							|  |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2009-06-18 00:02:59 +00:00
										 |  |  | 	case QTYPE_MCCQ: | 
					
						
							|  |  |  | 		subsys = CMD_SUBSYSTEM_COMMON; | 
					
						
							|  |  |  | 		opcode = OPCODE_COMMON_MCC_DESTROY; | 
					
						
							|  |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	default: | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:56 +00:00
										 |  |  | 		BUG(); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-12-03 06:12:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-27 07:12:13 +00:00
										 |  |  | 	be_wrb_cmd_hdr_prepare(&req->hdr, subsys, opcode, sizeof(*req), wrb, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 			       NULL); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	req->id = cpu_to_le16(q->id); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	status = be_mbox_notify_wait(adapter); | 
					
						
							| 
									
										
										
										
											2012-10-20 06:03:25 +00:00
										 |  |  | 	q->created = false; | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-14 05:43:19 +00:00
										 |  |  | 	mutex_unlock(&adapter->mbox_lock); | 
					
						
							| 
									
										
										
										
											2011-06-29 23:33:17 +00:00
										 |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-29 23:33:17 +00:00
										 |  |  | /* Uses MCC */ | 
					
						
							|  |  |  | int be_cmd_rxq_destroy(struct be_adapter *adapter, struct be_queue_info *q) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							|  |  |  | 	struct be_cmd_req_q_destroy *req; | 
					
						
							|  |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	spin_lock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wrb = wrb_from_mccq(adapter); | 
					
						
							|  |  |  | 	if (!wrb) { | 
					
						
							|  |  |  | 		status = -EBUSY; | 
					
						
							|  |  |  | 		goto err; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	req = embedded_payload(wrb); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-27 07:12:13 +00:00
										 |  |  | 	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_ETH, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 			       OPCODE_ETH_RX_DESTROY, sizeof(*req), wrb, NULL); | 
					
						
							| 
									
										
										
										
											2011-06-29 23:33:17 +00:00
										 |  |  | 	req->id = cpu_to_le16(q->id); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	status = be_mcc_notify_wait(adapter); | 
					
						
							| 
									
										
										
										
											2012-10-20 06:03:25 +00:00
										 |  |  | 	q->created = false; | 
					
						
							| 
									
										
										
										
											2011-06-29 23:33:17 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | err: | 
					
						
							|  |  |  | 	spin_unlock_bh(&adapter->mcc_lock); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | /* Create an rx filtering policy configuration on an i/f
 | 
					
						
							| 
									
										
										
										
											2013-08-27 16:57:33 +05:30
										 |  |  |  * Will use MBOX only if MCCQ has not been created. | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2009-10-14 20:20:42 +00:00
										 |  |  | int be_cmd_if_create(struct be_adapter *adapter, u32 cap_flags, u32 en_flags, | 
					
						
							| 
									
										
										
										
											2012-06-07 04:37:08 +00:00
										 |  |  | 		     u32 *if_handle, u32 domain) | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-08-27 16:57:33 +05:30
										 |  |  | 	struct be_mcc_wrb wrb = {0}; | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	struct be_cmd_req_if_create *req; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-27 16:57:33 +05:30
										 |  |  | 	req = embedded_payload(&wrb); | 
					
						
							| 
									
										
										
										
											2011-10-27 07:12:13 +00:00
										 |  |  | 	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 			       OPCODE_COMMON_NTWK_INTERFACE_CREATE, | 
					
						
							|  |  |  | 			       sizeof(*req), &wrb, NULL); | 
					
						
							| 
									
										
										
										
											2010-03-31 02:56:12 +00:00
										 |  |  | 	req->hdr.domain = domain; | 
					
						
							| 
									
										
										
										
											2009-10-14 20:20:42 +00:00
										 |  |  | 	req->capability_flags = cpu_to_le32(cap_flags); | 
					
						
							|  |  |  | 	req->enable_flags = cpu_to_le32(en_flags); | 
					
						
							| 
									
										
										
										
											2012-06-07 04:37:08 +00:00
										 |  |  | 	req->pmac_invalid = true; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-27 16:57:33 +05:30
										 |  |  | 	status = be_cmd_notify_wait(adapter, &wrb); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	if (!status) { | 
					
						
							| 
									
										
										
										
											2013-08-27 16:57:33 +05:30
										 |  |  | 		struct be_cmd_resp_if_create *resp = embedded_payload(&wrb); | 
					
						
							| 
									
										
										
										
											2014-09-19 15:46:56 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 		*if_handle = le32_to_cpu(resp->interface_id); | 
					
						
							| 
									
										
										
										
											2013-07-23 15:25:01 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  | 		/* Hack to retrieve VF's pmac-id on BE3 */ | 
					
						
							|  |  |  | 		if (BE3_chip(adapter) && !be_physfn(adapter)) | 
					
						
							|  |  |  | 			adapter->pmac_id[0] = le32_to_cpu(resp->pmac_id); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-24 02:45:01 +00:00
										 |  |  | /* Uses MCCQ */ | 
					
						
							| 
									
										
										
										
											2011-11-10 19:17:57 +00:00
										 |  |  | int be_cmd_if_destroy(struct be_adapter *adapter, int interface_id, u32 domain) | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							|  |  |  | 	struct be_cmd_req_if_destroy *req; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-10 19:17:57 +00:00
										 |  |  | 	if (interface_id == -1) | 
					
						
							| 
									
										
										
										
											2011-10-24 02:45:01 +00:00
										 |  |  | 		return 0; | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-24 02:45:01 +00:00
										 |  |  | 	spin_lock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wrb = wrb_from_mccq(adapter); | 
					
						
							|  |  |  | 	if (!wrb) { | 
					
						
							|  |  |  | 		status = -EBUSY; | 
					
						
							|  |  |  | 		goto err; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	req = embedded_payload(wrb); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-27 07:12:13 +00:00
										 |  |  | 	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 			       OPCODE_COMMON_NTWK_INTERFACE_DESTROY, | 
					
						
							|  |  |  | 			       sizeof(*req), wrb, NULL); | 
					
						
							| 
									
										
										
										
											2011-02-11 13:34:46 +00:00
										 |  |  | 	req->hdr.domain = domain; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	req->interface_id = cpu_to_le32(interface_id); | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-24 02:45:01 +00:00
										 |  |  | 	status = be_mcc_notify_wait(adapter); | 
					
						
							|  |  |  | err: | 
					
						
							|  |  |  | 	spin_unlock_bh(&adapter->mcc_lock); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Get stats is a non embedded command: the request is not embedded inside
 | 
					
						
							|  |  |  |  * WRB but is a separate dma memory block | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  |  * Uses asynchronous MCC | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | int be_cmd_get_stats(struct be_adapter *adapter, struct be_dma_mem *nonemb_cmd) | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							| 
									
										
										
										
											2011-05-16 07:36:18 +00:00
										 |  |  | 	struct be_cmd_req_hdr *hdr; | 
					
						
							| 
									
										
										
										
											2009-11-22 22:02:45 +00:00
										 |  |  | 	int status = 0; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	spin_lock_bh(&adapter->mcc_lock); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	wrb = wrb_from_mccq(adapter); | 
					
						
							| 
									
										
										
										
											2009-11-22 22:02:45 +00:00
										 |  |  | 	if (!wrb) { | 
					
						
							|  |  |  | 		status = -EBUSY; | 
					
						
							|  |  |  | 		goto err; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-05-16 07:36:18 +00:00
										 |  |  | 	hdr = nonemb_cmd->va; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-27 07:12:13 +00:00
										 |  |  | 	be_wrb_cmd_hdr_prepare(hdr, CMD_SUBSYSTEM_ETH, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 			       OPCODE_ETH_GET_STATISTICS, nonemb_cmd->size, wrb, | 
					
						
							|  |  |  | 			       nonemb_cmd); | 
					
						
							| 
									
										
										
										
											2011-05-16 07:36:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-06 17:48:56 +00:00
										 |  |  | 	/* version 1 of the cmd is not supported only by BE2 */ | 
					
						
							| 
									
										
										
										
											2013-10-03 16:16:33 -05:00
										 |  |  | 	if (BE2_chip(adapter)) | 
					
						
							|  |  |  | 		hdr->version = 0; | 
					
						
							|  |  |  | 	if (BE3_chip(adapter) || lancer_chip(adapter)) | 
					
						
							| 
									
										
										
										
											2011-05-16 07:36:18 +00:00
										 |  |  | 		hdr->version = 1; | 
					
						
							| 
									
										
										
										
											2013-10-03 16:16:33 -05:00
										 |  |  | 	else | 
					
						
							|  |  |  | 		hdr->version = 2; | 
					
						
							| 
									
										
										
										
											2011-05-16 07:36:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	be_mcc_notify(adapter); | 
					
						
							| 
									
										
										
										
											2011-02-20 11:41:39 +00:00
										 |  |  | 	adapter->stats_cmd_sent = true; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-22 22:02:45 +00:00
										 |  |  | err: | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	spin_unlock_bh(&adapter->mcc_lock); | 
					
						
							| 
									
										
										
										
											2009-11-22 22:02:45 +00:00
										 |  |  | 	return status; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-16 07:36:35 +00:00
										 |  |  | /* Lancer Stats */ | 
					
						
							|  |  |  | int lancer_cmd_get_pport_stats(struct be_adapter *adapter, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 			       struct be_dma_mem *nonemb_cmd) | 
					
						
							| 
									
										
										
										
											2011-05-16 07:36:35 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							|  |  |  | 	struct lancer_cmd_req_pport_stats *req; | 
					
						
							|  |  |  | 	int status = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-20 06:02:52 +00:00
										 |  |  | 	if (!be_cmd_allowed(adapter, OPCODE_ETH_GET_PPORT_STATS, | 
					
						
							|  |  |  | 			    CMD_SUBSYSTEM_ETH)) | 
					
						
							|  |  |  | 		return -EPERM; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-16 07:36:35 +00:00
										 |  |  | 	spin_lock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wrb = wrb_from_mccq(adapter); | 
					
						
							|  |  |  | 	if (!wrb) { | 
					
						
							|  |  |  | 		status = -EBUSY; | 
					
						
							|  |  |  | 		goto err; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	req = nonemb_cmd->va; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-27 07:12:13 +00:00
										 |  |  | 	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_ETH, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 			       OPCODE_ETH_GET_PPORT_STATS, nonemb_cmd->size, | 
					
						
							|  |  |  | 			       wrb, nonemb_cmd); | 
					
						
							| 
									
										
										
										
											2011-05-16 07:36:35 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-25 01:46:52 +00:00
										 |  |  | 	req->cmd_params.params.pport_num = cpu_to_le16(adapter->hba_port_num); | 
					
						
							| 
									
										
										
										
											2011-05-16 07:36:35 +00:00
										 |  |  | 	req->cmd_params.params.reset_stats = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	be_mcc_notify(adapter); | 
					
						
							|  |  |  | 	adapter->stats_cmd_sent = true; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | err: | 
					
						
							|  |  |  | 	spin_unlock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-28 04:39:43 +00:00
										 |  |  | static int be_mac_to_link_speed(int mac_speed) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	switch (mac_speed) { | 
					
						
							|  |  |  | 	case PHY_LINK_SPEED_ZERO: | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 	case PHY_LINK_SPEED_10MBPS: | 
					
						
							|  |  |  | 		return 10; | 
					
						
							|  |  |  | 	case PHY_LINK_SPEED_100MBPS: | 
					
						
							|  |  |  | 		return 100; | 
					
						
							|  |  |  | 	case PHY_LINK_SPEED_1GBPS: | 
					
						
							|  |  |  | 		return 1000; | 
					
						
							|  |  |  | 	case PHY_LINK_SPEED_10GBPS: | 
					
						
							|  |  |  | 		return 10000; | 
					
						
							| 
									
										
										
										
											2013-08-06 09:27:15 +05:30
										 |  |  | 	case PHY_LINK_SPEED_20GBPS: | 
					
						
							|  |  |  | 		return 20000; | 
					
						
							|  |  |  | 	case PHY_LINK_SPEED_25GBPS: | 
					
						
							|  |  |  | 		return 25000; | 
					
						
							|  |  |  | 	case PHY_LINK_SPEED_40GBPS: | 
					
						
							|  |  |  | 		return 40000; | 
					
						
							| 
									
										
										
										
											2012-09-28 04:39:43 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Uses synchronous mcc
 | 
					
						
							|  |  |  |  * Returns link_speed in Mbps | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | int be_cmd_link_status_query(struct be_adapter *adapter, u16 *link_speed, | 
					
						
							|  |  |  | 			     u8 *link_status, u32 dom) | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							|  |  |  | 	struct be_cmd_req_link_status *req; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	spin_lock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-30 12:15:40 +00:00
										 |  |  | 	if (link_status) | 
					
						
							|  |  |  | 		*link_status = LINK_DOWN; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	wrb = wrb_from_mccq(adapter); | 
					
						
							| 
									
										
										
										
											2009-11-22 22:02:45 +00:00
										 |  |  | 	if (!wrb) { | 
					
						
							|  |  |  | 		status = -EBUSY; | 
					
						
							|  |  |  | 		goto err; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	req = embedded_payload(wrb); | 
					
						
							| 
									
										
										
										
											2009-06-18 00:10:27 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-03 09:49:46 +00:00
										 |  |  | 	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 			       OPCODE_COMMON_NTWK_LINK_STATUS_QUERY, | 
					
						
							|  |  |  | 			       sizeof(*req), wrb, NULL); | 
					
						
							| 
									
										
										
										
											2012-02-03 09:49:46 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-06 17:48:56 +00:00
										 |  |  | 	/* version 1 of the cmd is not supported only by BE2 */ | 
					
						
							|  |  |  | 	if (!BE2_chip(adapter)) | 
					
						
							| 
									
										
										
										
											2011-11-16 02:03:45 +00:00
										 |  |  | 		req->hdr.version = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-03 09:49:46 +00:00
										 |  |  | 	req->hdr.domain = dom; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	status = be_mcc_notify_wait(adapter); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	if (!status) { | 
					
						
							|  |  |  | 		struct be_cmd_resp_link_status *resp = embedded_payload(wrb); | 
					
						
							| 
									
										
										
										
											2014-09-19 15:46:56 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-28 04:39:43 +00:00
										 |  |  | 		if (link_speed) { | 
					
						
							|  |  |  | 			*link_speed = resp->link_speed ? | 
					
						
							|  |  |  | 				      le16_to_cpu(resp->link_speed) * 10 : | 
					
						
							|  |  |  | 				      be_mac_to_link_speed(resp->mac_speed); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (!resp->logical_link_status) | 
					
						
							|  |  |  | 				*link_speed = 0; | 
					
						
							| 
									
										
										
										
											2009-10-28 04:15:20 -07:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2011-12-30 12:15:40 +00:00
										 |  |  | 		if (link_status) | 
					
						
							|  |  |  | 			*link_status = resp->logical_link_status; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-22 22:02:45 +00:00
										 |  |  | err: | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	spin_unlock_bh(&adapter->mcc_lock); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-20 11:42:07 +00:00
										 |  |  | /* Uses synchronous mcc */ | 
					
						
							|  |  |  | int be_cmd_get_die_temperature(struct be_adapter *adapter) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							|  |  |  | 	struct be_cmd_req_get_cntl_addnl_attribs *req; | 
					
						
							| 
									
										
										
										
											2013-08-06 09:27:20 +05:30
										 |  |  | 	int status = 0; | 
					
						
							| 
									
										
										
										
											2011-02-20 11:42:07 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	spin_lock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wrb = wrb_from_mccq(adapter); | 
					
						
							|  |  |  | 	if (!wrb) { | 
					
						
							|  |  |  | 		status = -EBUSY; | 
					
						
							|  |  |  | 		goto err; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	req = embedded_payload(wrb); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-27 07:12:13 +00:00
										 |  |  | 	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 			       OPCODE_COMMON_GET_CNTL_ADDITIONAL_ATTRIBUTES, | 
					
						
							|  |  |  | 			       sizeof(*req), wrb, NULL); | 
					
						
							| 
									
										
										
										
											2011-02-20 11:42:07 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-30 07:25:05 +00:00
										 |  |  | 	be_mcc_notify(adapter); | 
					
						
							| 
									
										
										
										
											2011-02-20 11:42:07 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | err: | 
					
						
							|  |  |  | 	spin_unlock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-16 21:22:43 +00:00
										 |  |  | /* Uses synchronous mcc */ | 
					
						
							|  |  |  | int be_cmd_get_reg_len(struct be_adapter *adapter, u32 *log_size) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							|  |  |  | 	struct be_cmd_req_get_fat *req; | 
					
						
							|  |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	spin_lock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wrb = wrb_from_mccq(adapter); | 
					
						
							|  |  |  | 	if (!wrb) { | 
					
						
							|  |  |  | 		status = -EBUSY; | 
					
						
							|  |  |  | 		goto err; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	req = embedded_payload(wrb); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-27 07:12:13 +00:00
										 |  |  | 	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 			       OPCODE_COMMON_MANAGE_FAT, sizeof(*req), wrb, | 
					
						
							|  |  |  | 			       NULL); | 
					
						
							| 
									
										
										
										
											2011-03-16 21:22:43 +00:00
										 |  |  | 	req->fat_operation = cpu_to_le32(QUERY_FAT); | 
					
						
							|  |  |  | 	status = be_mcc_notify_wait(adapter); | 
					
						
							|  |  |  | 	if (!status) { | 
					
						
							|  |  |  | 		struct be_cmd_resp_get_fat *resp = embedded_payload(wrb); | 
					
						
							| 
									
										
										
										
											2014-09-19 15:46:56 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-16 21:22:43 +00:00
										 |  |  | 		if (log_size && resp->log_size) | 
					
						
							| 
									
										
										
										
											2011-04-21 03:18:12 +00:00
										 |  |  | 			*log_size = le32_to_cpu(resp->log_size) - | 
					
						
							|  |  |  | 					sizeof(u32); | 
					
						
							| 
									
										
										
										
											2011-03-16 21:22:43 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | err: | 
					
						
							|  |  |  | 	spin_unlock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-02 09:56:54 +05:30
										 |  |  | int be_cmd_get_regs(struct be_adapter *adapter, u32 buf_len, void *buf) | 
					
						
							| 
									
										
										
										
											2011-03-16 21:22:43 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct be_dma_mem get_fat_cmd; | 
					
						
							|  |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							|  |  |  | 	struct be_cmd_req_get_fat *req; | 
					
						
							| 
									
										
										
										
											2011-04-21 03:18:12 +00:00
										 |  |  | 	u32 offset = 0, total_size, buf_size, | 
					
						
							|  |  |  | 				log_offset = sizeof(u32), payload_len; | 
					
						
							| 
									
										
										
										
											2014-09-02 09:56:54 +05:30
										 |  |  | 	int status = 0; | 
					
						
							| 
									
										
										
										
											2011-03-16 21:22:43 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (buf_len == 0) | 
					
						
							| 
									
										
										
										
											2014-09-02 09:56:54 +05:30
										 |  |  | 		return -EIO; | 
					
						
							| 
									
										
										
										
											2011-03-16 21:22:43 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	total_size = buf_len; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-21 03:18:12 +00:00
										 |  |  | 	get_fat_cmd.size = sizeof(struct be_cmd_req_get_fat) + 60*1024; | 
					
						
							|  |  |  | 	get_fat_cmd.va = pci_alloc_consistent(adapter->pdev, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 					      get_fat_cmd.size, | 
					
						
							|  |  |  | 					      &get_fat_cmd.dma); | 
					
						
							| 
									
										
										
										
											2011-04-21 03:18:12 +00:00
										 |  |  | 	if (!get_fat_cmd.va) { | 
					
						
							|  |  |  | 		dev_err(&adapter->pdev->dev, | 
					
						
							| 
									
										
										
										
											2014-09-19 15:47:02 +05:30
										 |  |  | 			"Memory allocation failure while reading FAT data\n"); | 
					
						
							| 
									
										
										
										
											2014-09-02 09:56:54 +05:30
										 |  |  | 		return -ENOMEM; | 
					
						
							| 
									
										
										
										
											2011-04-21 03:18:12 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-16 21:22:43 +00:00
										 |  |  | 	spin_lock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	while (total_size) { | 
					
						
							|  |  |  | 		buf_size = min(total_size, (u32)60*1024); | 
					
						
							|  |  |  | 		total_size -= buf_size; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-21 03:18:12 +00:00
										 |  |  | 		wrb = wrb_from_mccq(adapter); | 
					
						
							|  |  |  | 		if (!wrb) { | 
					
						
							|  |  |  | 			status = -EBUSY; | 
					
						
							| 
									
										
										
										
											2011-03-16 21:22:43 +00:00
										 |  |  | 			goto err; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		req = get_fat_cmd.va; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-21 03:18:12 +00:00
										 |  |  | 		payload_len = sizeof(struct be_cmd_req_get_fat) + buf_size; | 
					
						
							| 
									
										
										
										
											2011-10-27 07:12:13 +00:00
										 |  |  | 		be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 				       OPCODE_COMMON_MANAGE_FAT, payload_len, | 
					
						
							|  |  |  | 				       wrb, &get_fat_cmd); | 
					
						
							| 
									
										
										
										
											2011-03-16 21:22:43 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		req->fat_operation = cpu_to_le32(RETRIEVE_FAT); | 
					
						
							|  |  |  | 		req->read_log_offset = cpu_to_le32(log_offset); | 
					
						
							|  |  |  | 		req->read_log_length = cpu_to_le32(buf_size); | 
					
						
							|  |  |  | 		req->data_buffer_size = cpu_to_le32(buf_size); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		status = be_mcc_notify_wait(adapter); | 
					
						
							|  |  |  | 		if (!status) { | 
					
						
							|  |  |  | 			struct be_cmd_resp_get_fat *resp = get_fat_cmd.va; | 
					
						
							| 
									
										
										
										
											2014-09-19 15:46:56 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-16 21:22:43 +00:00
										 |  |  | 			memcpy(buf + offset, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 			       resp->data_buffer, | 
					
						
							|  |  |  | 			       le32_to_cpu(resp->read_log_length)); | 
					
						
							| 
									
										
										
										
											2011-04-21 03:18:12 +00:00
										 |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2011-03-16 21:22:43 +00:00
										 |  |  | 			dev_err(&adapter->pdev->dev, "FAT Table Retrieve error\n"); | 
					
						
							| 
									
										
										
										
											2011-04-21 03:18:12 +00:00
										 |  |  | 			goto err; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2011-03-16 21:22:43 +00:00
										 |  |  | 		offset += buf_size; | 
					
						
							|  |  |  | 		log_offset += buf_size; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | err: | 
					
						
							| 
									
										
										
										
											2011-04-21 03:18:12 +00:00
										 |  |  | 	pci_free_consistent(adapter->pdev, get_fat_cmd.size, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 			    get_fat_cmd.va, get_fat_cmd.dma); | 
					
						
							| 
									
										
										
										
											2011-03-16 21:22:43 +00:00
										 |  |  | 	spin_unlock_bh(&adapter->mcc_lock); | 
					
						
							| 
									
										
										
										
											2014-09-02 09:56:54 +05:30
										 |  |  | 	return status; | 
					
						
							| 
									
										
										
										
											2011-03-16 21:22:43 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-27 13:30:27 -04:00
										 |  |  | /* Uses synchronous mcc */ | 
					
						
							| 
									
										
										
										
											2014-07-17 16:20:26 +05:30
										 |  |  | int be_cmd_get_fw_ver(struct be_adapter *adapter) | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							|  |  |  | 	struct be_cmd_req_get_fw_version *req; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-27 13:30:27 -04:00
										 |  |  | 	spin_lock_bh(&adapter->mcc_lock); | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-27 13:30:27 -04:00
										 |  |  | 	wrb = wrb_from_mccq(adapter); | 
					
						
							|  |  |  | 	if (!wrb) { | 
					
						
							|  |  |  | 		status = -EBUSY; | 
					
						
							|  |  |  | 		goto err; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-27 13:30:27 -04:00
										 |  |  | 	req = embedded_payload(wrb); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-27 07:12:13 +00:00
										 |  |  | 	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 			       OPCODE_COMMON_GET_FW_VERSION, sizeof(*req), wrb, | 
					
						
							|  |  |  | 			       NULL); | 
					
						
							| 
									
										
										
										
											2011-09-27 13:30:27 -04:00
										 |  |  | 	status = be_mcc_notify_wait(adapter); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	if (!status) { | 
					
						
							|  |  |  | 		struct be_cmd_resp_get_fw_version *resp = embedded_payload(wrb); | 
					
						
							| 
									
										
										
										
											2014-09-02 09:56:46 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-12 17:39:15 +05:30
										 |  |  | 		strlcpy(adapter->fw_ver, resp->firmware_version_string, | 
					
						
							|  |  |  | 			sizeof(adapter->fw_ver)); | 
					
						
							|  |  |  | 		strlcpy(adapter->fw_on_flash, resp->fw_on_flash_version_string, | 
					
						
							|  |  |  | 			sizeof(adapter->fw_on_flash)); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-09-27 13:30:27 -04:00
										 |  |  | err: | 
					
						
							|  |  |  | 	spin_unlock_bh(&adapter->mcc_lock); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | /* set the EQ delay interval of an EQ to specified value
 | 
					
						
							|  |  |  |  * Uses async mcc | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2014-09-19 15:46:51 +05:30
										 |  |  | static int __be_cmd_modify_eqd(struct be_adapter *adapter, | 
					
						
							|  |  |  | 			       struct be_set_eqd *set_eqd, int num) | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							|  |  |  | 	struct be_cmd_req_modify_eq_delay *req; | 
					
						
							| 
									
										
										
										
											2013-10-01 16:00:00 +05:30
										 |  |  | 	int status = 0, i; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	spin_lock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wrb = wrb_from_mccq(adapter); | 
					
						
							| 
									
										
										
										
											2009-11-22 22:02:45 +00:00
										 |  |  | 	if (!wrb) { | 
					
						
							|  |  |  | 		status = -EBUSY; | 
					
						
							|  |  |  | 		goto err; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	req = embedded_payload(wrb); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-27 07:12:13 +00:00
										 |  |  | 	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 			       OPCODE_COMMON_MODIFY_EQ_DELAY, sizeof(*req), wrb, | 
					
						
							|  |  |  | 			       NULL); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-01 16:00:00 +05:30
										 |  |  | 	req->num_eq = cpu_to_le32(num); | 
					
						
							|  |  |  | 	for (i = 0; i < num; i++) { | 
					
						
							|  |  |  | 		req->set_eqd[i].eq_id = cpu_to_le32(set_eqd[i].eq_id); | 
					
						
							|  |  |  | 		req->set_eqd[i].phase = 0; | 
					
						
							|  |  |  | 		req->set_eqd[i].delay_multiplier = | 
					
						
							|  |  |  | 				cpu_to_le32(set_eqd[i].delay_multiplier); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	be_mcc_notify(adapter); | 
					
						
							| 
									
										
										
										
											2009-11-22 22:02:45 +00:00
										 |  |  | err: | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	spin_unlock_bh(&adapter->mcc_lock); | 
					
						
							| 
									
										
										
										
											2009-11-22 22:02:45 +00:00
										 |  |  | 	return status; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-12 17:39:20 +05:30
										 |  |  | int be_cmd_modify_eqd(struct be_adapter *adapter, struct be_set_eqd *set_eqd, | 
					
						
							|  |  |  | 		      int num) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int num_eqs, i = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (lancer_chip(adapter) && num > 8) { | 
					
						
							|  |  |  | 		while (num) { | 
					
						
							|  |  |  | 			num_eqs = min(num, 8); | 
					
						
							|  |  |  | 			__be_cmd_modify_eqd(adapter, &set_eqd[i], num_eqs); | 
					
						
							|  |  |  | 			i += num_eqs; | 
					
						
							|  |  |  | 			num -= num_eqs; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		__be_cmd_modify_eqd(adapter, set_eqd, num); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | /* Uses sycnhronous mcc */ | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | int be_cmd_vlan_config(struct be_adapter *adapter, u32 if_id, u16 *vtag_array, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:17 +05:30
										 |  |  | 		       u32 num) | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							|  |  |  | 	struct be_cmd_req_vlan_config *req; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	spin_lock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wrb = wrb_from_mccq(adapter); | 
					
						
							| 
									
										
										
										
											2009-11-22 22:02:45 +00:00
										 |  |  | 	if (!wrb) { | 
					
						
							|  |  |  | 		status = -EBUSY; | 
					
						
							|  |  |  | 		goto err; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	req = embedded_payload(wrb); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-27 07:12:13 +00:00
										 |  |  | 	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 			       OPCODE_COMMON_NTWK_VLAN_CONFIG, sizeof(*req), | 
					
						
							|  |  |  | 			       wrb, NULL); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	req->interface_id = if_id; | 
					
						
							| 
									
										
										
										
											2013-11-18 10:44:24 -06:00
										 |  |  | 	req->untagged = BE_IF_FLAGS_UNTAGGED & be_if_cap_flags(adapter) ? 1 : 0; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	req->num_vlan = num; | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:17 +05:30
										 |  |  | 	memcpy(req->normal_vlan, vtag_array, | 
					
						
							|  |  |  | 	       req->num_vlan * sizeof(vtag_array[0])); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	status = be_mcc_notify_wait(adapter); | 
					
						
							| 
									
										
										
										
											2009-11-22 22:02:45 +00:00
										 |  |  | err: | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	spin_unlock_bh(&adapter->mcc_lock); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-02 19:57:44 +00:00
										 |  |  | int be_cmd_rx_filter(struct be_adapter *adapter, u32 flags, u32 value) | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-06-18 00:05:54 +00:00
										 |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							| 
									
										
										
										
											2011-08-02 19:57:44 +00:00
										 |  |  | 	struct be_dma_mem *mem = &adapter->rx_filter; | 
					
						
							|  |  |  | 	struct be_cmd_req_rx_filter *req = mem->va; | 
					
						
							| 
									
										
										
										
											2009-11-22 22:01:10 +00:00
										 |  |  | 	int status; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | 	spin_lock_bh(&adapter->mcc_lock); | 
					
						
							| 
									
										
										
										
											2009-06-18 00:05:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	wrb = wrb_from_mccq(adapter); | 
					
						
							| 
									
										
										
										
											2009-11-22 22:02:45 +00:00
										 |  |  | 	if (!wrb) { | 
					
						
							|  |  |  | 		status = -EBUSY; | 
					
						
							|  |  |  | 		goto err; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-08-02 19:57:44 +00:00
										 |  |  | 	memset(req, 0, sizeof(*req)); | 
					
						
							| 
									
										
										
										
											2011-10-27 07:12:13 +00:00
										 |  |  | 	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 			       OPCODE_COMMON_NTWK_RX_FILTER, sizeof(*req), | 
					
						
							|  |  |  | 			       wrb, mem); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-02 19:57:44 +00:00
										 |  |  | 	req->if_id = cpu_to_le32(adapter->if_handle); | 
					
						
							|  |  |  | 	if (flags & IFF_PROMISC) { | 
					
						
							|  |  |  | 		req->if_flags_mask = cpu_to_le32(BE_IF_FLAGS_PROMISCUOUS | | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 						 BE_IF_FLAGS_VLAN_PROMISCUOUS | | 
					
						
							|  |  |  | 						 BE_IF_FLAGS_MCAST_PROMISCUOUS); | 
					
						
							| 
									
										
										
										
											2011-08-02 19:57:44 +00:00
										 |  |  | 		if (value == ON) | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 			req->if_flags = | 
					
						
							|  |  |  | 				cpu_to_le32(BE_IF_FLAGS_PROMISCUOUS | | 
					
						
							|  |  |  | 					    BE_IF_FLAGS_VLAN_PROMISCUOUS | | 
					
						
							|  |  |  | 					    BE_IF_FLAGS_MCAST_PROMISCUOUS); | 
					
						
							| 
									
										
										
										
											2011-08-02 19:57:44 +00:00
										 |  |  | 	} else if (flags & IFF_ALLMULTI) { | 
					
						
							| 
									
										
										
										
											2014-09-19 15:47:01 +05:30
										 |  |  | 		req->if_flags_mask = cpu_to_le32(BE_IF_FLAGS_MCAST_PROMISCUOUS); | 
					
						
							|  |  |  | 		req->if_flags =	cpu_to_le32(BE_IF_FLAGS_MCAST_PROMISCUOUS); | 
					
						
							| 
									
										
										
										
											2013-09-27 15:17:58 -05:00
										 |  |  | 	} else if (flags & BE_FLAGS_VLAN_PROMISC) { | 
					
						
							|  |  |  | 		req->if_flags_mask = cpu_to_le32(BE_IF_FLAGS_VLAN_PROMISCUOUS); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (value == ON) | 
					
						
							|  |  |  | 			req->if_flags = | 
					
						
							|  |  |  | 				cpu_to_le32(BE_IF_FLAGS_VLAN_PROMISCUOUS); | 
					
						
							| 
									
										
										
										
											2011-08-02 19:57:44 +00:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2010-04-01 21:22:57 +00:00
										 |  |  | 		struct netdev_hw_addr *ha; | 
					
						
							| 
									
										
										
										
											2011-08-02 19:57:44 +00:00
										 |  |  | 		int i = 0; | 
					
						
							| 
									
										
										
										
											2009-06-18 00:09:25 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-19 15:47:01 +05:30
										 |  |  | 		req->if_flags_mask = cpu_to_le32(BE_IF_FLAGS_MULTICAST); | 
					
						
							|  |  |  | 		req->if_flags =	cpu_to_le32(BE_IF_FLAGS_MULTICAST); | 
					
						
							| 
									
										
										
										
											2011-11-03 01:49:27 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		/* Reset mcast promisc mode if already set by setting mask
 | 
					
						
							|  |  |  | 		 * and not setting flags field | 
					
						
							|  |  |  | 		 */ | 
					
						
							| 
									
										
										
										
											2012-10-20 06:01:41 +00:00
										 |  |  | 		req->if_flags_mask |= | 
					
						
							|  |  |  | 			cpu_to_le32(BE_IF_FLAGS_MCAST_PROMISCUOUS & | 
					
						
							| 
									
										
										
										
											2013-08-27 16:57:32 +05:30
										 |  |  | 				    be_if_cap_flags(adapter)); | 
					
						
							| 
									
										
										
										
											2011-11-03 01:49:13 +00:00
										 |  |  | 		req->mcast_num = cpu_to_le32(netdev_mc_count(adapter->netdev)); | 
					
						
							| 
									
										
										
										
											2011-08-02 19:57:44 +00:00
										 |  |  | 		netdev_for_each_mc_addr(ha, adapter->netdev) | 
					
						
							|  |  |  | 			memcpy(req->mcast_mac[i++].byte, ha->addr, ETH_ALEN); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-18 10:44:24 -06:00
										 |  |  | 	if ((req->if_flags_mask & cpu_to_le32(be_if_cap_flags(adapter))) != | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 	    req->if_flags_mask) { | 
					
						
							| 
									
										
										
										
											2013-11-18 10:44:24 -06:00
										 |  |  | 		dev_warn(&adapter->pdev->dev, | 
					
						
							|  |  |  | 			 "Cannot set rx filter flags 0x%x\n", | 
					
						
							|  |  |  | 			 req->if_flags_mask); | 
					
						
							|  |  |  | 		dev_warn(&adapter->pdev->dev, | 
					
						
							|  |  |  | 			 "Interface is capable of 0x%x flags only\n", | 
					
						
							|  |  |  | 			 be_if_cap_flags(adapter)); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	req->if_flags_mask &= cpu_to_le32(be_if_cap_flags(adapter)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-03 05:19:27 -07:00
										 |  |  | 	status = be_mcc_notify_wait(adapter); | 
					
						
							| 
									
										
										
										
											2013-11-18 10:44:24 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-22 22:02:45 +00:00
										 |  |  | err: | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | 	spin_unlock_bh(&adapter->mcc_lock); | 
					
						
							| 
									
										
										
										
											2009-11-22 22:01:10 +00:00
										 |  |  | 	return status; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | /* Uses synchrounous mcc */ | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | int be_cmd_set_flow_control(struct be_adapter *adapter, u32 tx_fc, u32 rx_fc) | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							|  |  |  | 	struct be_cmd_req_set_flow_control *req; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-20 06:02:52 +00:00
										 |  |  | 	if (!be_cmd_allowed(adapter, OPCODE_COMMON_SET_FLOW_CONTROL, | 
					
						
							|  |  |  | 			    CMD_SUBSYSTEM_COMMON)) | 
					
						
							|  |  |  | 		return -EPERM; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	spin_lock_bh(&adapter->mcc_lock); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	wrb = wrb_from_mccq(adapter); | 
					
						
							| 
									
										
										
										
											2009-11-22 22:02:45 +00:00
										 |  |  | 	if (!wrb) { | 
					
						
							|  |  |  | 		status = -EBUSY; | 
					
						
							|  |  |  | 		goto err; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	req = embedded_payload(wrb); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-27 07:12:13 +00:00
										 |  |  | 	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 			       OPCODE_COMMON_SET_FLOW_CONTROL, sizeof(*req), | 
					
						
							|  |  |  | 			       wrb, NULL); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-12 17:39:17 +05:30
										 |  |  | 	req->hdr.version = 1; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	req->tx_flow_control = cpu_to_le16((u16)tx_fc); | 
					
						
							|  |  |  | 	req->rx_flow_control = cpu_to_le16((u16)rx_fc); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	status = be_mcc_notify_wait(adapter); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-22 22:02:45 +00:00
										 |  |  | err: | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	spin_unlock_bh(&adapter->mcc_lock); | 
					
						
							| 
									
										
										
										
											2014-09-12 17:39:17 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (base_status(status) == MCC_STATUS_FEATURE_NOT_SUPPORTED) | 
					
						
							|  |  |  | 		return  -EOPNOTSUPP; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | /* Uses sycn mcc */ | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | int be_cmd_get_flow_control(struct be_adapter *adapter, u32 *tx_fc, u32 *rx_fc) | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							|  |  |  | 	struct be_cmd_req_get_flow_control *req; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-20 06:02:52 +00:00
										 |  |  | 	if (!be_cmd_allowed(adapter, OPCODE_COMMON_GET_FLOW_CONTROL, | 
					
						
							|  |  |  | 			    CMD_SUBSYSTEM_COMMON)) | 
					
						
							|  |  |  | 		return -EPERM; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	spin_lock_bh(&adapter->mcc_lock); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	wrb = wrb_from_mccq(adapter); | 
					
						
							| 
									
										
										
										
											2009-11-22 22:02:45 +00:00
										 |  |  | 	if (!wrb) { | 
					
						
							|  |  |  | 		status = -EBUSY; | 
					
						
							|  |  |  | 		goto err; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	req = embedded_payload(wrb); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-27 07:12:13 +00:00
										 |  |  | 	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 			       OPCODE_COMMON_GET_FLOW_CONTROL, sizeof(*req), | 
					
						
							|  |  |  | 			       wrb, NULL); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	status = be_mcc_notify_wait(adapter); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	if (!status) { | 
					
						
							|  |  |  | 		struct be_cmd_resp_get_flow_control *resp = | 
					
						
							|  |  |  | 						embedded_payload(wrb); | 
					
						
							| 
									
										
										
										
											2014-09-19 15:46:56 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 		*tx_fc = le16_to_cpu(resp->tx_flow_control); | 
					
						
							|  |  |  | 		*rx_fc = le16_to_cpu(resp->rx_flow_control); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-22 22:02:45 +00:00
										 |  |  | err: | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	spin_unlock_bh(&adapter->mcc_lock); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | /* Uses mbox */ | 
					
						
							| 
									
										
										
										
											2014-07-17 16:20:26 +05:30
										 |  |  | int be_cmd_query_fw_cfg(struct be_adapter *adapter) | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							|  |  |  | 	struct be_cmd_req_query_fw_cfg *req; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-14 05:43:19 +00:00
										 |  |  | 	if (mutex_lock_interruptible(&adapter->mbox_lock)) | 
					
						
							|  |  |  | 		return -1; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	wrb = wrb_from_mbox(adapter); | 
					
						
							|  |  |  | 	req = embedded_payload(wrb); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-27 07:12:13 +00:00
										 |  |  | 	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 			       OPCODE_COMMON_QUERY_FIRMWARE_CONFIG, | 
					
						
							|  |  |  | 			       sizeof(*req), wrb, NULL); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	status = be_mbox_notify_wait(adapter); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	if (!status) { | 
					
						
							|  |  |  | 		struct be_cmd_resp_query_fw_cfg *resp = embedded_payload(wrb); | 
					
						
							| 
									
										
										
										
											2014-09-19 15:46:56 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-17 16:20:26 +05:30
										 |  |  | 		adapter->port_num = le32_to_cpu(resp->phys_port); | 
					
						
							|  |  |  | 		adapter->function_mode = le32_to_cpu(resp->function_mode); | 
					
						
							|  |  |  | 		adapter->function_caps = le32_to_cpu(resp->function_caps); | 
					
						
							|  |  |  | 		adapter->asic_rev = le32_to_cpu(resp->asic_revision) & 0xFF; | 
					
						
							| 
									
										
										
										
											2014-09-02 09:56:46 +05:30
										 |  |  | 		dev_info(&adapter->pdev->dev, | 
					
						
							|  |  |  | 			 "FW config: function_mode=0x%x, function_caps=0x%x\n", | 
					
						
							|  |  |  | 			 adapter->function_mode, adapter->function_caps); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-14 05:43:19 +00:00
										 |  |  | 	mutex_unlock(&adapter->mbox_lock); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2009-08-05 13:05:24 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | /* Uses mbox */ | 
					
						
							| 
									
										
										
										
											2009-08-05 13:05:24 -07:00
										 |  |  | int be_cmd_reset_function(struct be_adapter *adapter) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							|  |  |  | 	struct be_cmd_req_hdr *req; | 
					
						
							| 
									
										
										
										
											2009-08-05 13:05:24 -07:00
										 |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-12 03:56:58 +00:00
										 |  |  | 	if (lancer_chip(adapter)) { | 
					
						
							|  |  |  | 		status = lancer_wait_ready(adapter); | 
					
						
							|  |  |  | 		if (!status) { | 
					
						
							|  |  |  | 			iowrite32(SLI_PORT_CONTROL_IP_MASK, | 
					
						
							|  |  |  | 				  adapter->db + SLIPORT_CONTROL_OFFSET); | 
					
						
							|  |  |  | 			status = lancer_test_and_set_rdy_state(adapter); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if (status) { | 
					
						
							|  |  |  | 			dev_err(&adapter->pdev->dev, | 
					
						
							|  |  |  | 				"Adapter in non recoverable error\n"); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		return status; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-14 05:43:19 +00:00
										 |  |  | 	if (mutex_lock_interruptible(&adapter->mbox_lock)) | 
					
						
							|  |  |  | 		return -1; | 
					
						
							| 
									
										
										
										
											2009-08-05 13:05:24 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	wrb = wrb_from_mbox(adapter); | 
					
						
							|  |  |  | 	req = embedded_payload(wrb); | 
					
						
							| 
									
										
										
										
											2009-08-05 13:05:24 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-27 07:12:13 +00:00
										 |  |  | 	be_wrb_cmd_hdr_prepare(req, CMD_SUBSYSTEM_COMMON, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 			       OPCODE_COMMON_FUNCTION_RESET, sizeof(*req), wrb, | 
					
						
							|  |  |  | 			       NULL); | 
					
						
							| 
									
										
										
										
											2009-08-05 13:05:24 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	status = be_mbox_notify_wait(adapter); | 
					
						
							| 
									
										
										
										
											2009-08-05 13:05:24 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-14 05:43:19 +00:00
										 |  |  | 	mutex_unlock(&adapter->mbox_lock); | 
					
						
							| 
									
										
										
										
											2009-08-05 13:05:24 -07:00
										 |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2009-09-04 03:12:16 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-25 23:03:20 +00:00
										 |  |  | int be_cmd_rss_config(struct be_adapter *adapter, u8 *rsstable, | 
					
						
							| 
									
										
										
										
											2014-05-15 02:01:23 +01:00
										 |  |  | 		      u32 rss_hash_opts, u16 table_size, const u8 *rss_hkey) | 
					
						
							| 
									
										
										
										
											2010-10-03 22:12:27 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							|  |  |  | 	struct be_cmd_req_rss_config *req; | 
					
						
							|  |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-06 13:02:23 +05:30
										 |  |  | 	if (!(be_if_cap_flags(adapter) & BE_IF_FLAGS_RSS)) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:19 +05:30
										 |  |  | 	spin_lock_bh(&adapter->mcc_lock); | 
					
						
							| 
									
										
										
										
											2010-10-03 22:12:27 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:19 +05:30
										 |  |  | 	wrb = wrb_from_mccq(adapter); | 
					
						
							|  |  |  | 	if (!wrb) { | 
					
						
							|  |  |  | 		status = -EBUSY; | 
					
						
							|  |  |  | 		goto err; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-10-03 22:12:27 -07:00
										 |  |  | 	req = embedded_payload(wrb); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-27 07:12:13 +00:00
										 |  |  | 	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_ETH, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 			       OPCODE_ETH_RSS_CONFIG, sizeof(*req), wrb, NULL); | 
					
						
							| 
									
										
										
										
											2010-10-03 22:12:27 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	req->if_id = cpu_to_le32(adapter->if_handle); | 
					
						
							| 
									
										
										
										
											2013-04-25 23:03:20 +00:00
										 |  |  | 	req->enable_rss = cpu_to_le16(rss_hash_opts); | 
					
						
							|  |  |  | 	req->cpu_table_size_log2 = cpu_to_le16(fls(table_size) - 1); | 
					
						
							| 
									
										
										
										
											2012-07-12 03:57:47 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:19 +05:30
										 |  |  | 	if (!BEx_chip(adapter)) | 
					
						
							| 
									
										
										
										
											2012-07-12 03:57:47 +00:00
										 |  |  | 		req->hdr.version = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-03 22:12:27 -07:00
										 |  |  | 	memcpy(req->cpu_table, rsstable, table_size); | 
					
						
							| 
									
										
										
										
											2014-04-21 15:38:00 +05:30
										 |  |  | 	memcpy(req->hash, rss_hkey, RSS_HASH_KEY_LEN); | 
					
						
							| 
									
										
										
										
											2010-10-03 22:12:27 -07:00
										 |  |  | 	be_dws_cpu_to_le(req->hash, sizeof(req->hash)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:19 +05:30
										 |  |  | 	status = be_mcc_notify_wait(adapter); | 
					
						
							|  |  |  | err: | 
					
						
							|  |  |  | 	spin_unlock_bh(&adapter->mcc_lock); | 
					
						
							| 
									
										
										
										
											2010-10-03 22:12:27 -07:00
										 |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-12 04:23:15 -07:00
										 |  |  | /* Uses sync mcc */ | 
					
						
							|  |  |  | int be_cmd_set_beacon_state(struct be_adapter *adapter, u8 port_num, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 			    u8 bcn, u8 sts, u8 state) | 
					
						
							| 
									
										
										
										
											2009-10-12 04:23:15 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							|  |  |  | 	struct be_cmd_req_enable_disable_beacon *req; | 
					
						
							|  |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	spin_lock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wrb = wrb_from_mccq(adapter); | 
					
						
							| 
									
										
										
										
											2009-11-22 22:02:45 +00:00
										 |  |  | 	if (!wrb) { | 
					
						
							|  |  |  | 		status = -EBUSY; | 
					
						
							|  |  |  | 		goto err; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-10-12 04:23:15 -07:00
										 |  |  | 	req = embedded_payload(wrb); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-27 07:12:13 +00:00
										 |  |  | 	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 			       OPCODE_COMMON_ENABLE_DISABLE_BEACON, | 
					
						
							|  |  |  | 			       sizeof(*req), wrb, NULL); | 
					
						
							| 
									
										
										
										
											2009-10-12 04:23:15 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	req->port_num = port_num; | 
					
						
							|  |  |  | 	req->beacon_state = state; | 
					
						
							|  |  |  | 	req->beacon_duration = bcn; | 
					
						
							|  |  |  | 	req->status_duration = sts; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	status = be_mcc_notify_wait(adapter); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-22 22:02:45 +00:00
										 |  |  | err: | 
					
						
							| 
									
										
										
										
											2009-10-12 04:23:15 -07:00
										 |  |  | 	spin_unlock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Uses sync mcc */ | 
					
						
							|  |  |  | int be_cmd_get_beacon_state(struct be_adapter *adapter, u8 port_num, u32 *state) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							|  |  |  | 	struct be_cmd_req_get_beacon_state *req; | 
					
						
							|  |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	spin_lock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wrb = wrb_from_mccq(adapter); | 
					
						
							| 
									
										
										
										
											2009-11-22 22:02:45 +00:00
										 |  |  | 	if (!wrb) { | 
					
						
							|  |  |  | 		status = -EBUSY; | 
					
						
							|  |  |  | 		goto err; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-10-12 04:23:15 -07:00
										 |  |  | 	req = embedded_payload(wrb); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-27 07:12:13 +00:00
										 |  |  | 	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 			       OPCODE_COMMON_GET_BEACON_STATE, sizeof(*req), | 
					
						
							|  |  |  | 			       wrb, NULL); | 
					
						
							| 
									
										
										
										
											2009-10-12 04:23:15 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	req->port_num = port_num; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	status = be_mcc_notify_wait(adapter); | 
					
						
							|  |  |  | 	if (!status) { | 
					
						
							|  |  |  | 		struct be_cmd_resp_get_beacon_state *resp = | 
					
						
							|  |  |  | 						embedded_payload(wrb); | 
					
						
							| 
									
										
										
										
											2014-09-19 15:46:56 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-12 04:23:15 -07:00
										 |  |  | 		*state = resp->beacon_state; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-22 22:02:45 +00:00
										 |  |  | err: | 
					
						
							| 
									
										
										
										
											2009-10-12 04:23:15 -07:00
										 |  |  | 	spin_unlock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-12 17:39:18 +05:30
										 |  |  | /* Uses sync mcc */ | 
					
						
							|  |  |  | int be_cmd_read_port_transceiver_data(struct be_adapter *adapter, | 
					
						
							|  |  |  | 				      u8 page_num, u8 *data) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct be_dma_mem cmd; | 
					
						
							|  |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							|  |  |  | 	struct be_cmd_req_port_type *req; | 
					
						
							|  |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (page_num > TR_PAGE_A2) | 
					
						
							|  |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	cmd.size = sizeof(struct be_cmd_resp_port_type); | 
					
						
							|  |  |  | 	cmd.va = pci_alloc_consistent(adapter->pdev, cmd.size, &cmd.dma); | 
					
						
							|  |  |  | 	if (!cmd.va) { | 
					
						
							|  |  |  | 		dev_err(&adapter->pdev->dev, "Memory allocation failed\n"); | 
					
						
							|  |  |  | 		return -ENOMEM; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	memset(cmd.va, 0, cmd.size); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	spin_lock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wrb = wrb_from_mccq(adapter); | 
					
						
							|  |  |  | 	if (!wrb) { | 
					
						
							|  |  |  | 		status = -EBUSY; | 
					
						
							|  |  |  | 		goto err; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	req = cmd.va; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							|  |  |  | 			       OPCODE_COMMON_READ_TRANSRECV_DATA, | 
					
						
							|  |  |  | 			       cmd.size, wrb, &cmd); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	req->port = cpu_to_le32(adapter->hba_port_num); | 
					
						
							|  |  |  | 	req->page_num = cpu_to_le32(page_num); | 
					
						
							|  |  |  | 	status = be_mcc_notify_wait(adapter); | 
					
						
							|  |  |  | 	if (!status) { | 
					
						
							|  |  |  | 		struct be_cmd_resp_port_type *resp = cmd.va; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		memcpy(data, resp->page_data, PAGE_DATA_LEN); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | err: | 
					
						
							|  |  |  | 	spin_unlock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 	pci_free_consistent(adapter->pdev, cmd.size, cmd.va, cmd.dma); | 
					
						
							|  |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-16 07:36:59 +00:00
										 |  |  | int lancer_cmd_write_object(struct be_adapter *adapter, struct be_dma_mem *cmd, | 
					
						
							| 
									
										
										
										
											2012-07-12 03:57:09 +00:00
										 |  |  | 			    u32 data_size, u32 data_offset, | 
					
						
							|  |  |  | 			    const char *obj_name, u32 *data_written, | 
					
						
							|  |  |  | 			    u8 *change_status, u8 *addn_status) | 
					
						
							| 
									
										
										
										
											2011-05-16 07:36:59 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							|  |  |  | 	struct lancer_cmd_req_write_object *req; | 
					
						
							|  |  |  | 	struct lancer_cmd_resp_write_object *resp; | 
					
						
							|  |  |  | 	void *ctxt = NULL; | 
					
						
							|  |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	spin_lock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 	adapter->flash_status = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wrb = wrb_from_mccq(adapter); | 
					
						
							|  |  |  | 	if (!wrb) { | 
					
						
							|  |  |  | 		status = -EBUSY; | 
					
						
							|  |  |  | 		goto err_unlock; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	req = embedded_payload(wrb); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-27 07:12:13 +00:00
										 |  |  | 	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 			       OPCODE_COMMON_WRITE_OBJECT, | 
					
						
							|  |  |  | 			       sizeof(struct lancer_cmd_req_write_object), wrb, | 
					
						
							|  |  |  | 			       NULL); | 
					
						
							| 
									
										
										
										
											2011-05-16 07:36:59 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	ctxt = &req->context; | 
					
						
							|  |  |  | 	AMAP_SET_BITS(struct amap_lancer_write_obj_context, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 		      write_length, ctxt, data_size); | 
					
						
							| 
									
										
										
										
											2011-05-16 07:36:59 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (data_size == 0) | 
					
						
							|  |  |  | 		AMAP_SET_BITS(struct amap_lancer_write_obj_context, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 			      eof, ctxt, 1); | 
					
						
							| 
									
										
										
										
											2011-05-16 07:36:59 +00:00
										 |  |  | 	else | 
					
						
							|  |  |  | 		AMAP_SET_BITS(struct amap_lancer_write_obj_context, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 			      eof, ctxt, 0); | 
					
						
							| 
									
										
										
										
											2011-05-16 07:36:59 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	be_dws_cpu_to_le(ctxt, sizeof(req->context)); | 
					
						
							|  |  |  | 	req->write_offset = cpu_to_le32(data_offset); | 
					
						
							| 
									
										
										
										
											2014-09-12 17:39:15 +05:30
										 |  |  | 	strlcpy(req->object_name, obj_name, sizeof(req->object_name)); | 
					
						
							| 
									
										
										
										
											2011-05-16 07:36:59 +00:00
										 |  |  | 	req->descriptor_count = cpu_to_le32(1); | 
					
						
							|  |  |  | 	req->buf_len = cpu_to_le32(data_size); | 
					
						
							|  |  |  | 	req->addr_low = cpu_to_le32((cmd->dma + | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 				     sizeof(struct lancer_cmd_req_write_object)) | 
					
						
							|  |  |  | 				    & 0xFFFFFFFF); | 
					
						
							| 
									
										
										
										
											2011-05-16 07:36:59 +00:00
										 |  |  | 	req->addr_high = cpu_to_le32(upper_32_bits(cmd->dma + | 
					
						
							|  |  |  | 				sizeof(struct lancer_cmd_req_write_object))); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	be_mcc_notify(adapter); | 
					
						
							|  |  |  | 	spin_unlock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-06 13:02:24 +05:30
										 |  |  | 	if (!wait_for_completion_timeout(&adapter->et_cmd_compl, | 
					
						
							| 
									
										
										
										
											2013-05-02 03:36:34 +00:00
										 |  |  | 					 msecs_to_jiffies(60000))) | 
					
						
							| 
									
										
										
										
											2014-07-17 16:20:21 +05:30
										 |  |  | 		status = -ETIMEDOUT; | 
					
						
							| 
									
										
										
										
											2011-05-16 07:36:59 +00:00
										 |  |  | 	else | 
					
						
							|  |  |  | 		status = adapter->flash_status; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	resp = embedded_payload(wrb); | 
					
						
							| 
									
										
										
										
											2012-07-12 03:57:09 +00:00
										 |  |  | 	if (!status) { | 
					
						
							| 
									
										
										
										
											2011-05-16 07:36:59 +00:00
										 |  |  | 		*data_written = le32_to_cpu(resp->actual_write_len); | 
					
						
							| 
									
										
										
										
											2012-07-12 03:57:09 +00:00
										 |  |  | 		*change_status = resp->change_status; | 
					
						
							|  |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2011-05-16 07:36:59 +00:00
										 |  |  | 		*addn_status = resp->additional_status; | 
					
						
							| 
									
										
										
										
											2012-07-12 03:57:09 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-05-16 07:36:59 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return status; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | err_unlock: | 
					
						
							|  |  |  | 	spin_unlock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-12 17:39:19 +05:30
										 |  |  | int be_cmd_query_cable_type(struct be_adapter *adapter) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	u8 page_data[PAGE_DATA_LEN]; | 
					
						
							|  |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	status = be_cmd_read_port_transceiver_data(adapter, TR_PAGE_A0, | 
					
						
							|  |  |  | 						   page_data); | 
					
						
							|  |  |  | 	if (!status) { | 
					
						
							|  |  |  | 		switch (adapter->phy.interface_type) { | 
					
						
							|  |  |  | 		case PHY_TYPE_QSFP: | 
					
						
							|  |  |  | 			adapter->phy.cable_type = | 
					
						
							|  |  |  | 				page_data[QSFP_PLUS_CABLE_TYPE_OFFSET]; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case PHY_TYPE_SFP_PLUS_10GB: | 
					
						
							|  |  |  | 			adapter->phy.cable_type = | 
					
						
							|  |  |  | 				page_data[SFP_PLUS_CABLE_TYPE_OFFSET]; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		default: | 
					
						
							|  |  |  | 			adapter->phy.cable_type = 0; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-01 17:47:32 +05:30
										 |  |  | int lancer_cmd_delete_object(struct be_adapter *adapter, const char *obj_name) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct lancer_cmd_req_delete_object *req; | 
					
						
							|  |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							|  |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	spin_lock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wrb = wrb_from_mccq(adapter); | 
					
						
							|  |  |  | 	if (!wrb) { | 
					
						
							|  |  |  | 		status = -EBUSY; | 
					
						
							|  |  |  | 		goto err; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	req = embedded_payload(wrb); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							|  |  |  | 			       OPCODE_COMMON_DELETE_OBJECT, | 
					
						
							|  |  |  | 			       sizeof(*req), wrb, NULL); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-12 17:39:15 +05:30
										 |  |  | 	strlcpy(req->object_name, obj_name, sizeof(req->object_name)); | 
					
						
							| 
									
										
										
										
											2014-08-01 17:47:32 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  | 	status = be_mcc_notify_wait(adapter); | 
					
						
							|  |  |  | err: | 
					
						
							|  |  |  | 	spin_unlock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-16 02:02:43 +00:00
										 |  |  | int lancer_cmd_read_object(struct be_adapter *adapter, struct be_dma_mem *cmd, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 			   u32 data_size, u32 data_offset, const char *obj_name, | 
					
						
							|  |  |  | 			   u32 *data_read, u32 *eof, u8 *addn_status) | 
					
						
							| 
									
										
										
										
											2011-11-16 02:02:43 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							|  |  |  | 	struct lancer_cmd_req_read_object *req; | 
					
						
							|  |  |  | 	struct lancer_cmd_resp_read_object *resp; | 
					
						
							|  |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	spin_lock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wrb = wrb_from_mccq(adapter); | 
					
						
							|  |  |  | 	if (!wrb) { | 
					
						
							|  |  |  | 		status = -EBUSY; | 
					
						
							|  |  |  | 		goto err_unlock; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	req = embedded_payload(wrb); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 			       OPCODE_COMMON_READ_OBJECT, | 
					
						
							|  |  |  | 			       sizeof(struct lancer_cmd_req_read_object), wrb, | 
					
						
							|  |  |  | 			       NULL); | 
					
						
							| 
									
										
										
										
											2011-11-16 02:02:43 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	req->desired_read_len = cpu_to_le32(data_size); | 
					
						
							|  |  |  | 	req->read_offset = cpu_to_le32(data_offset); | 
					
						
							|  |  |  | 	strcpy(req->object_name, obj_name); | 
					
						
							|  |  |  | 	req->descriptor_count = cpu_to_le32(1); | 
					
						
							|  |  |  | 	req->buf_len = cpu_to_le32(data_size); | 
					
						
							|  |  |  | 	req->addr_low = cpu_to_le32((cmd->dma & 0xFFFFFFFF)); | 
					
						
							|  |  |  | 	req->addr_high = cpu_to_le32(upper_32_bits(cmd->dma)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	status = be_mcc_notify_wait(adapter); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	resp = embedded_payload(wrb); | 
					
						
							|  |  |  | 	if (!status) { | 
					
						
							|  |  |  | 		*data_read = le32_to_cpu(resp->actual_read_len); | 
					
						
							|  |  |  | 		*eof = le32_to_cpu(resp->eof); | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		*addn_status = resp->additional_status; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | err_unlock: | 
					
						
							|  |  |  | 	spin_unlock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-04 03:12:16 +00:00
										 |  |  | int be_cmd_write_flashrom(struct be_adapter *adapter, struct be_dma_mem *cmd, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 			  u32 flash_type, u32 flash_opcode, u32 buf_size) | 
					
						
							| 
									
										
										
										
											2009-09-04 03:12:16 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							| 
									
										
										
										
											2010-02-09 01:30:35 +00:00
										 |  |  | 	struct be_cmd_write_flashrom *req; | 
					
						
							| 
									
										
										
										
											2009-09-04 03:12:16 +00:00
										 |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	spin_lock_bh(&adapter->mcc_lock); | 
					
						
							| 
									
										
										
										
											2010-05-25 16:16:32 -07:00
										 |  |  | 	adapter->flash_status = 0; | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	wrb = wrb_from_mccq(adapter); | 
					
						
							| 
									
										
										
										
											2009-11-22 22:02:45 +00:00
										 |  |  | 	if (!wrb) { | 
					
						
							|  |  |  | 		status = -EBUSY; | 
					
						
							| 
									
										
										
										
											2010-05-26 04:46:35 +00:00
										 |  |  | 		goto err_unlock; | 
					
						
							| 
									
										
										
										
											2009-11-22 22:02:45 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	req = cmd->va; | 
					
						
							| 
									
										
										
										
											2009-09-04 03:12:16 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-27 07:12:13 +00:00
										 |  |  | 	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 			       OPCODE_COMMON_WRITE_FLASHROM, cmd->size, wrb, | 
					
						
							|  |  |  | 			       cmd); | 
					
						
							| 
									
										
										
										
											2009-09-04 03:12:16 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	req->params.op_type = cpu_to_le32(flash_type); | 
					
						
							|  |  |  | 	req->params.op_code = cpu_to_le32(flash_opcode); | 
					
						
							|  |  |  | 	req->params.data_buf_size = cpu_to_le32(buf_size); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-25 16:16:32 -07:00
										 |  |  | 	be_mcc_notify(adapter); | 
					
						
							|  |  |  | 	spin_unlock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-06 13:02:24 +05:30
										 |  |  | 	if (!wait_for_completion_timeout(&adapter->et_cmd_compl, | 
					
						
							|  |  |  | 					 msecs_to_jiffies(40000))) | 
					
						
							| 
									
										
										
										
											2014-07-17 16:20:21 +05:30
										 |  |  | 		status = -ETIMEDOUT; | 
					
						
							| 
									
										
										
										
											2010-05-25 16:16:32 -07:00
										 |  |  | 	else | 
					
						
							|  |  |  | 		status = adapter->flash_status; | 
					
						
							| 
									
										
										
										
											2009-09-04 03:12:16 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-26 04:46:35 +00:00
										 |  |  | 	return status; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | err_unlock: | 
					
						
							|  |  |  | 	spin_unlock_bh(&adapter->mcc_lock); | 
					
						
							| 
									
										
										
										
											2009-09-04 03:12:16 +00:00
										 |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2009-11-20 14:23:47 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-09 01:30:35 +00:00
										 |  |  | int be_cmd_get_flash_crc(struct be_adapter *adapter, u8 *flashed_crc, | 
					
						
							| 
									
										
										
										
											2014-09-19 15:47:02 +05:30
										 |  |  | 			 u16 optype, int offset) | 
					
						
							| 
									
										
										
										
											2009-11-20 14:23:47 -08:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							| 
									
										
										
										
											2012-10-22 23:02:44 +00:00
										 |  |  | 	struct be_cmd_read_flash_crc *req; | 
					
						
							| 
									
										
										
										
											2009-11-20 14:23:47 -08:00
										 |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	spin_lock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wrb = wrb_from_mccq(adapter); | 
					
						
							| 
									
										
										
										
											2009-11-22 22:02:45 +00:00
										 |  |  | 	if (!wrb) { | 
					
						
							|  |  |  | 		status = -EBUSY; | 
					
						
							|  |  |  | 		goto err; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-11-20 14:23:47 -08:00
										 |  |  | 	req = embedded_payload(wrb); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-27 07:12:13 +00:00
										 |  |  | 	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							| 
									
										
										
										
											2012-10-22 23:02:44 +00:00
										 |  |  | 			       OPCODE_COMMON_READ_FLASHROM, sizeof(*req), | 
					
						
							|  |  |  | 			       wrb, NULL); | 
					
						
							| 
									
										
										
										
											2009-11-20 14:23:47 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-30 19:06:25 +05:30
										 |  |  | 	req->params.op_type = cpu_to_le32(optype); | 
					
						
							| 
									
										
										
										
											2009-11-20 14:23:47 -08:00
										 |  |  | 	req->params.op_code = cpu_to_le32(FLASHROM_OPER_REPORT); | 
					
						
							| 
									
										
										
										
											2010-03-31 01:57:10 +00:00
										 |  |  | 	req->params.offset = cpu_to_le32(offset); | 
					
						
							|  |  |  | 	req->params.data_buf_size = cpu_to_le32(0x4); | 
					
						
							| 
									
										
										
										
											2009-11-20 14:23:47 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	status = be_mcc_notify_wait(adapter); | 
					
						
							|  |  |  | 	if (!status) | 
					
						
							| 
									
										
										
										
											2012-10-22 23:02:44 +00:00
										 |  |  | 		memcpy(flashed_crc, req->crc, 4); | 
					
						
							| 
									
										
										
										
											2009-11-20 14:23:47 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-22 22:02:45 +00:00
										 |  |  | err: | 
					
						
							| 
									
										
										
										
											2009-11-20 14:23:47 -08:00
										 |  |  | 	spin_unlock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2009-12-03 06:16:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-26 04:47:39 +00:00
										 |  |  | int be_cmd_enable_magic_wol(struct be_adapter *adapter, u8 *mac, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 			    struct be_dma_mem *nonemb_cmd) | 
					
						
							| 
									
										
										
										
											2009-12-03 06:16:59 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							|  |  |  | 	struct be_cmd_req_acpi_wol_magic_config *req; | 
					
						
							|  |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	spin_lock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wrb = wrb_from_mccq(adapter); | 
					
						
							|  |  |  | 	if (!wrb) { | 
					
						
							|  |  |  | 		status = -EBUSY; | 
					
						
							|  |  |  | 		goto err; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	req = nonemb_cmd->va; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-27 07:12:13 +00:00
										 |  |  | 	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_ETH, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 			       OPCODE_ETH_ACPI_WOL_MAGIC_CONFIG, sizeof(*req), | 
					
						
							|  |  |  | 			       wrb, nonemb_cmd); | 
					
						
							| 
									
										
										
										
											2009-12-03 06:16:59 +00:00
										 |  |  | 	memcpy(req->magic_mac, mac, ETH_ALEN); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	status = be_mcc_notify_wait(adapter); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | err: | 
					
						
							|  |  |  | 	spin_unlock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2009-12-03 16:15:52 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-23 04:41:44 +00:00
										 |  |  | int be_cmd_set_loopback(struct be_adapter *adapter, u8 port_num, | 
					
						
							|  |  |  | 			u8 loopback_type, u8 enable) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							|  |  |  | 	struct be_cmd_req_set_lmode *req; | 
					
						
							|  |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	spin_lock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wrb = wrb_from_mccq(adapter); | 
					
						
							|  |  |  | 	if (!wrb) { | 
					
						
							|  |  |  | 		status = -EBUSY; | 
					
						
							|  |  |  | 		goto err; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	req = embedded_payload(wrb); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-27 07:12:13 +00:00
										 |  |  | 	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_LOWLEVEL, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 			       OPCODE_LOWLEVEL_SET_LOOPBACK_MODE, sizeof(*req), | 
					
						
							|  |  |  | 			       wrb, NULL); | 
					
						
							| 
									
										
										
										
											2009-12-23 04:41:44 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	req->src_port = port_num; | 
					
						
							|  |  |  | 	req->dest_port = port_num; | 
					
						
							|  |  |  | 	req->loopback_type = loopback_type; | 
					
						
							|  |  |  | 	req->loopback_state = enable; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	status = be_mcc_notify_wait(adapter); | 
					
						
							|  |  |  | err: | 
					
						
							|  |  |  | 	spin_unlock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-03 16:15:52 -08:00
										 |  |  | int be_cmd_loopback_test(struct be_adapter *adapter, u32 port_num, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 			 u32 loopback_type, u32 pkt_size, u32 num_pkts, | 
					
						
							|  |  |  | 			 u64 pattern) | 
					
						
							| 
									
										
										
										
											2009-12-03 16:15:52 -08:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							|  |  |  | 	struct be_cmd_req_loopback_test *req; | 
					
						
							| 
									
										
										
										
											2014-01-06 13:02:24 +05:30
										 |  |  | 	struct be_cmd_resp_loopback_test *resp; | 
					
						
							| 
									
										
										
										
											2009-12-03 16:15:52 -08:00
										 |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	spin_lock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wrb = wrb_from_mccq(adapter); | 
					
						
							|  |  |  | 	if (!wrb) { | 
					
						
							|  |  |  | 		status = -EBUSY; | 
					
						
							|  |  |  | 		goto err; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	req = embedded_payload(wrb); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-27 07:12:13 +00:00
										 |  |  | 	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_LOWLEVEL, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 			       OPCODE_LOWLEVEL_LOOPBACK_TEST, sizeof(*req), wrb, | 
					
						
							|  |  |  | 			       NULL); | 
					
						
							| 
									
										
										
										
											2009-12-03 16:15:52 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-06 13:02:24 +05:30
										 |  |  | 	req->hdr.timeout = cpu_to_le32(15); | 
					
						
							| 
									
										
										
										
											2009-12-03 16:15:52 -08:00
										 |  |  | 	req->pattern = cpu_to_le64(pattern); | 
					
						
							|  |  |  | 	req->src_port = cpu_to_le32(port_num); | 
					
						
							|  |  |  | 	req->dest_port = cpu_to_le32(port_num); | 
					
						
							|  |  |  | 	req->pkt_size = cpu_to_le32(pkt_size); | 
					
						
							|  |  |  | 	req->num_pkts = cpu_to_le32(num_pkts); | 
					
						
							|  |  |  | 	req->loopback_type = cpu_to_le32(loopback_type); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-06 13:02:24 +05:30
										 |  |  | 	be_mcc_notify(adapter); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	spin_unlock_bh(&adapter->mcc_lock); | 
					
						
							| 
									
										
										
										
											2009-12-03 16:15:52 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-06 13:02:24 +05:30
										 |  |  | 	wait_for_completion(&adapter->et_cmd_compl); | 
					
						
							|  |  |  | 	resp = embedded_payload(wrb); | 
					
						
							|  |  |  | 	status = le32_to_cpu(resp->status); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return status; | 
					
						
							| 
									
										
										
										
											2009-12-03 16:15:52 -08:00
										 |  |  | err: | 
					
						
							|  |  |  | 	spin_unlock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int be_cmd_ddr_dma_test(struct be_adapter *adapter, u64 pattern, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 			u32 byte_cnt, struct be_dma_mem *cmd) | 
					
						
							| 
									
										
										
										
											2009-12-03 16:15:52 -08:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							|  |  |  | 	struct be_cmd_req_ddrdma_test *req; | 
					
						
							|  |  |  | 	int status; | 
					
						
							|  |  |  | 	int i, j = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	spin_lock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wrb = wrb_from_mccq(adapter); | 
					
						
							|  |  |  | 	if (!wrb) { | 
					
						
							|  |  |  | 		status = -EBUSY; | 
					
						
							|  |  |  | 		goto err; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	req = cmd->va; | 
					
						
							| 
									
										
										
										
											2011-10-27 07:12:13 +00:00
										 |  |  | 	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_LOWLEVEL, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 			       OPCODE_LOWLEVEL_HOST_DDR_DMA, cmd->size, wrb, | 
					
						
							|  |  |  | 			       cmd); | 
					
						
							| 
									
										
										
										
											2009-12-03 16:15:52 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	req->pattern = cpu_to_le64(pattern); | 
					
						
							|  |  |  | 	req->byte_count = cpu_to_le32(byte_cnt); | 
					
						
							|  |  |  | 	for (i = 0; i < byte_cnt; i++) { | 
					
						
							|  |  |  | 		req->snd_buff[i] = (u8)(pattern >> (j*8)); | 
					
						
							|  |  |  | 		j++; | 
					
						
							|  |  |  | 		if (j > 7) | 
					
						
							|  |  |  | 			j = 0; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	status = be_mcc_notify_wait(adapter); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!status) { | 
					
						
							|  |  |  | 		struct be_cmd_resp_ddrdma_test *resp; | 
					
						
							| 
									
										
										
										
											2014-09-19 15:46:56 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-03 16:15:52 -08:00
										 |  |  | 		resp = cmd->va; | 
					
						
							|  |  |  | 		if ((memcmp(resp->rcv_buff, req->snd_buff, byte_cnt) != 0) || | 
					
						
							| 
									
										
										
										
											2014-09-19 15:47:02 +05:30
										 |  |  | 		    resp->snd_err) { | 
					
						
							| 
									
										
										
										
											2009-12-03 16:15:52 -08:00
										 |  |  | 			status = -1; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | err: | 
					
						
							|  |  |  | 	spin_unlock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2010-01-08 00:07:27 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-26 04:47:39 +00:00
										 |  |  | int be_cmd_get_seeprom_data(struct be_adapter *adapter, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 			    struct be_dma_mem *nonemb_cmd) | 
					
						
							| 
									
										
										
										
											2010-01-08 00:07:27 -08:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							|  |  |  | 	struct be_cmd_req_seeprom_read *req; | 
					
						
							|  |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	spin_lock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wrb = wrb_from_mccq(adapter); | 
					
						
							| 
									
										
										
										
											2011-02-04 17:18:28 +00:00
										 |  |  | 	if (!wrb) { | 
					
						
							|  |  |  | 		status = -EBUSY; | 
					
						
							|  |  |  | 		goto err; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-01-08 00:07:27 -08:00
										 |  |  | 	req = nonemb_cmd->va; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-27 07:12:13 +00:00
										 |  |  | 	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 			       OPCODE_COMMON_SEEPROM_READ, sizeof(*req), wrb, | 
					
						
							|  |  |  | 			       nonemb_cmd); | 
					
						
							| 
									
										
										
										
											2010-01-08 00:07:27 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	status = be_mcc_notify_wait(adapter); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-04 17:18:28 +00:00
										 |  |  | err: | 
					
						
							| 
									
										
										
										
											2010-01-08 00:07:27 -08:00
										 |  |  | 	spin_unlock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2010-07-01 03:51:00 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-21 18:53:22 +00:00
										 |  |  | int be_cmd_get_phy_info(struct be_adapter *adapter) | 
					
						
							| 
									
										
										
										
											2010-07-01 03:51:00 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							|  |  |  | 	struct be_cmd_req_get_phy_info *req; | 
					
						
							| 
									
										
										
										
											2011-08-02 19:57:45 +00:00
										 |  |  | 	struct be_dma_mem cmd; | 
					
						
							| 
									
										
										
										
											2010-07-01 03:51:00 +00:00
										 |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-20 06:02:52 +00:00
										 |  |  | 	if (!be_cmd_allowed(adapter, OPCODE_COMMON_GET_PHY_DETAILS, | 
					
						
							|  |  |  | 			    CMD_SUBSYSTEM_COMMON)) | 
					
						
							|  |  |  | 		return -EPERM; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-01 03:51:00 +00:00
										 |  |  | 	spin_lock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wrb = wrb_from_mccq(adapter); | 
					
						
							|  |  |  | 	if (!wrb) { | 
					
						
							|  |  |  | 		status = -EBUSY; | 
					
						
							|  |  |  | 		goto err; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-08-02 19:57:45 +00:00
										 |  |  | 	cmd.size = sizeof(struct be_cmd_req_get_phy_info); | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 	cmd.va = pci_alloc_consistent(adapter->pdev, cmd.size, &cmd.dma); | 
					
						
							| 
									
										
										
										
											2011-08-02 19:57:45 +00:00
										 |  |  | 	if (!cmd.va) { | 
					
						
							|  |  |  | 		dev_err(&adapter->pdev->dev, "Memory alloc failure\n"); | 
					
						
							|  |  |  | 		status = -ENOMEM; | 
					
						
							|  |  |  | 		goto err; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-07-01 03:51:00 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-02 19:57:45 +00:00
										 |  |  | 	req = cmd.va; | 
					
						
							| 
									
										
										
										
											2010-07-01 03:51:00 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-27 07:12:13 +00:00
										 |  |  | 	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 			       OPCODE_COMMON_GET_PHY_DETAILS, sizeof(*req), | 
					
						
							|  |  |  | 			       wrb, &cmd); | 
					
						
							| 
									
										
										
										
											2010-07-01 03:51:00 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	status = be_mcc_notify_wait(adapter); | 
					
						
							| 
									
										
										
										
											2011-08-02 19:57:45 +00:00
										 |  |  | 	if (!status) { | 
					
						
							|  |  |  | 		struct be_phy_info *resp_phy_info = | 
					
						
							|  |  |  | 				cmd.va + sizeof(struct be_cmd_req_hdr); | 
					
						
							| 
									
										
										
										
											2014-09-19 15:46:56 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-21 18:53:22 +00:00
										 |  |  | 		adapter->phy.phy_type = le16_to_cpu(resp_phy_info->phy_type); | 
					
						
							|  |  |  | 		adapter->phy.interface_type = | 
					
						
							| 
									
										
										
										
											2011-08-02 19:57:45 +00:00
										 |  |  | 			le16_to_cpu(resp_phy_info->interface_type); | 
					
						
							| 
									
										
										
										
											2012-04-21 18:53:22 +00:00
										 |  |  | 		adapter->phy.auto_speeds_supported = | 
					
						
							|  |  |  | 			le16_to_cpu(resp_phy_info->auto_speeds_supported); | 
					
						
							|  |  |  | 		adapter->phy.fixed_speeds_supported = | 
					
						
							|  |  |  | 			le16_to_cpu(resp_phy_info->fixed_speeds_supported); | 
					
						
							|  |  |  | 		adapter->phy.misc_params = | 
					
						
							|  |  |  | 			le32_to_cpu(resp_phy_info->misc_params); | 
					
						
							| 
									
										
										
										
											2013-08-06 09:27:18 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  | 		if (BE2_chip(adapter)) { | 
					
						
							|  |  |  | 			adapter->phy.fixed_speeds_supported = | 
					
						
							|  |  |  | 				BE_SUPPORTED_SPEED_10GBPS | | 
					
						
							|  |  |  | 				BE_SUPPORTED_SPEED_1GBPS; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2011-08-02 19:57:45 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 	pci_free_consistent(adapter->pdev, cmd.size, cmd.va, cmd.dma); | 
					
						
							| 
									
										
										
										
											2010-07-01 03:51:00 +00:00
										 |  |  | err: | 
					
						
							|  |  |  | 	spin_unlock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2010-07-23 01:52:13 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | int be_cmd_set_qos(struct be_adapter *adapter, u32 bps, u32 domain) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							|  |  |  | 	struct be_cmd_req_set_qos *req; | 
					
						
							|  |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	spin_lock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wrb = wrb_from_mccq(adapter); | 
					
						
							|  |  |  | 	if (!wrb) { | 
					
						
							|  |  |  | 		status = -EBUSY; | 
					
						
							|  |  |  | 		goto err; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	req = embedded_payload(wrb); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-27 07:12:13 +00:00
										 |  |  | 	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 			       OPCODE_COMMON_SET_QOS, sizeof(*req), wrb, NULL); | 
					
						
							| 
									
										
										
										
											2010-07-23 01:52:13 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	req->hdr.domain = domain; | 
					
						
							| 
									
										
										
										
											2011-02-11 13:33:02 +00:00
										 |  |  | 	req->valid_bits = cpu_to_le32(BE_QOS_BITS_NIC); | 
					
						
							|  |  |  | 	req->max_bps_nic = cpu_to_le32(bps); | 
					
						
							| 
									
										
										
										
											2010-07-23 01:52:13 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	status = be_mcc_notify_wait(adapter); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | err: | 
					
						
							|  |  |  | 	spin_unlock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2011-02-20 11:42:22 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | int be_cmd_get_cntl_attributes(struct be_adapter *adapter) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							|  |  |  | 	struct be_cmd_req_cntl_attribs *req; | 
					
						
							|  |  |  | 	struct be_cmd_resp_cntl_attribs *resp; | 
					
						
							|  |  |  | 	int status; | 
					
						
							|  |  |  | 	int payload_len = max(sizeof(*req), sizeof(*resp)); | 
					
						
							|  |  |  | 	struct mgmt_controller_attrib *attribs; | 
					
						
							|  |  |  | 	struct be_dma_mem attribs_cmd; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-25 00:56:55 +00:00
										 |  |  | 	if (mutex_lock_interruptible(&adapter->mbox_lock)) | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-20 11:42:22 +00:00
										 |  |  | 	memset(&attribs_cmd, 0, sizeof(struct be_dma_mem)); | 
					
						
							|  |  |  | 	attribs_cmd.size = sizeof(struct be_cmd_resp_cntl_attribs); | 
					
						
							|  |  |  | 	attribs_cmd.va = pci_alloc_consistent(adapter->pdev, attribs_cmd.size, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 					      &attribs_cmd.dma); | 
					
						
							| 
									
										
										
										
											2011-02-20 11:42:22 +00:00
										 |  |  | 	if (!attribs_cmd.va) { | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 		dev_err(&adapter->pdev->dev, "Memory allocation failure\n"); | 
					
						
							| 
									
										
										
										
											2013-04-25 00:56:55 +00:00
										 |  |  | 		status = -ENOMEM; | 
					
						
							|  |  |  | 		goto err; | 
					
						
							| 
									
										
										
										
											2011-02-20 11:42:22 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wrb = wrb_from_mbox(adapter); | 
					
						
							|  |  |  | 	if (!wrb) { | 
					
						
							|  |  |  | 		status = -EBUSY; | 
					
						
							|  |  |  | 		goto err; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	req = attribs_cmd.va; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-27 07:12:13 +00:00
										 |  |  | 	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 			       OPCODE_COMMON_GET_CNTL_ATTRIBUTES, payload_len, | 
					
						
							|  |  |  | 			       wrb, &attribs_cmd); | 
					
						
							| 
									
										
										
										
											2011-02-20 11:42:22 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	status = be_mbox_notify_wait(adapter); | 
					
						
							|  |  |  | 	if (!status) { | 
					
						
							| 
									
										
										
										
											2011-06-16 19:08:06 +00:00
										 |  |  | 		attribs = attribs_cmd.va + sizeof(struct be_cmd_resp_hdr); | 
					
						
							| 
									
										
										
										
											2011-02-20 11:42:22 +00:00
										 |  |  | 		adapter->hba_port_num = attribs->hba_attribs.phy_port; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | err: | 
					
						
							|  |  |  | 	mutex_unlock(&adapter->mbox_lock); | 
					
						
							| 
									
										
										
										
											2013-04-25 00:56:55 +00:00
										 |  |  | 	if (attribs_cmd.va) | 
					
						
							|  |  |  | 		pci_free_consistent(adapter->pdev, attribs_cmd.size, | 
					
						
							|  |  |  | 				    attribs_cmd.va, attribs_cmd.dma); | 
					
						
							| 
									
										
										
										
											2011-02-20 11:42:22 +00:00
										 |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2011-03-11 02:49:26 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Uses mbox */ | 
					
						
							| 
									
										
										
										
											2011-07-19 19:52:33 +00:00
										 |  |  | int be_cmd_req_native_mode(struct be_adapter *adapter) | 
					
						
							| 
									
										
										
										
											2011-03-11 02:49:26 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							|  |  |  | 	struct be_cmd_req_set_func_cap *req; | 
					
						
							|  |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (mutex_lock_interruptible(&adapter->mbox_lock)) | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wrb = wrb_from_mbox(adapter); | 
					
						
							|  |  |  | 	if (!wrb) { | 
					
						
							|  |  |  | 		status = -EBUSY; | 
					
						
							|  |  |  | 		goto err; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	req = embedded_payload(wrb); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-27 07:12:13 +00:00
										 |  |  | 	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 			       OPCODE_COMMON_SET_DRIVER_FUNCTION_CAP, | 
					
						
							|  |  |  | 			       sizeof(*req), wrb, NULL); | 
					
						
							| 
									
										
										
										
											2011-03-11 02:49:26 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	req->valid_cap_flags = cpu_to_le32(CAPABILITY_SW_TIMESTAMPS | | 
					
						
							|  |  |  | 				CAPABILITY_BE3_NATIVE_ERX_API); | 
					
						
							|  |  |  | 	req->cap_flags = cpu_to_le32(CAPABILITY_BE3_NATIVE_ERX_API); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	status = be_mbox_notify_wait(adapter); | 
					
						
							|  |  |  | 	if (!status) { | 
					
						
							|  |  |  | 		struct be_cmd_resp_set_func_cap *resp = embedded_payload(wrb); | 
					
						
							| 
									
										
										
										
											2014-09-19 15:46:56 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-11 02:49:26 +00:00
										 |  |  | 		adapter->be3_native = le32_to_cpu(resp->cap_flags) & | 
					
						
							|  |  |  | 					CAPABILITY_BE3_NATIVE_ERX_API; | 
					
						
							| 
									
										
										
										
											2012-09-28 04:39:44 +00:00
										 |  |  | 		if (!adapter->be3_native) | 
					
						
							|  |  |  | 			dev_warn(&adapter->pdev->dev, | 
					
						
							|  |  |  | 				 "adapter not in advanced mode\n"); | 
					
						
							| 
									
										
										
										
											2011-03-11 02:49:26 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | err: | 
					
						
							|  |  |  | 	mutex_unlock(&adapter->mbox_lock); | 
					
						
							|  |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2011-11-25 05:47:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-20 06:02:52 +00:00
										 |  |  | /* Get privilege(s) for a function */ | 
					
						
							|  |  |  | int be_cmd_get_fn_privileges(struct be_adapter *adapter, u32 *privilege, | 
					
						
							|  |  |  | 			     u32 domain) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							|  |  |  | 	struct be_cmd_req_get_fn_privileges *req; | 
					
						
							|  |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	spin_lock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wrb = wrb_from_mccq(adapter); | 
					
						
							|  |  |  | 	if (!wrb) { | 
					
						
							|  |  |  | 		status = -EBUSY; | 
					
						
							|  |  |  | 		goto err; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	req = embedded_payload(wrb); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							|  |  |  | 			       OPCODE_COMMON_GET_FN_PRIVILEGES, sizeof(*req), | 
					
						
							|  |  |  | 			       wrb, NULL); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	req->hdr.domain = domain; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	status = be_mcc_notify_wait(adapter); | 
					
						
							|  |  |  | 	if (!status) { | 
					
						
							|  |  |  | 		struct be_cmd_resp_get_fn_privileges *resp = | 
					
						
							|  |  |  | 						embedded_payload(wrb); | 
					
						
							| 
									
										
										
										
											2014-09-19 15:46:56 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-20 06:02:52 +00:00
										 |  |  | 		*privilege = le32_to_cpu(resp->privilege_mask); | 
					
						
							| 
									
										
										
										
											2014-01-15 13:23:36 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  | 		/* In UMC mode FW does not return right privileges.
 | 
					
						
							|  |  |  | 		 * Override with correct privilege equivalent to PF. | 
					
						
							|  |  |  | 		 */ | 
					
						
							|  |  |  | 		if (BEx_chip(adapter) && be_is_mc(adapter) && | 
					
						
							|  |  |  | 		    be_physfn(adapter)) | 
					
						
							|  |  |  | 			*privilege = MAX_PRIVILEGES; | 
					
						
							| 
									
										
										
										
											2012-10-20 06:02:52 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | err: | 
					
						
							|  |  |  | 	spin_unlock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-23 15:25:00 +05:30
										 |  |  | /* Set privilege(s) for a function */ | 
					
						
							|  |  |  | int be_cmd_set_fn_privileges(struct be_adapter *adapter, u32 privileges, | 
					
						
							|  |  |  | 			     u32 domain) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							|  |  |  | 	struct be_cmd_req_set_fn_privileges *req; | 
					
						
							|  |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	spin_lock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wrb = wrb_from_mccq(adapter); | 
					
						
							|  |  |  | 	if (!wrb) { | 
					
						
							|  |  |  | 		status = -EBUSY; | 
					
						
							|  |  |  | 		goto err; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	req = embedded_payload(wrb); | 
					
						
							|  |  |  | 	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							|  |  |  | 			       OPCODE_COMMON_SET_FN_PRIVILEGES, sizeof(*req), | 
					
						
							|  |  |  | 			       wrb, NULL); | 
					
						
							|  |  |  | 	req->hdr.domain = domain; | 
					
						
							|  |  |  | 	if (lancer_chip(adapter)) | 
					
						
							|  |  |  | 		req->privileges_lancer = cpu_to_le32(privileges); | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		req->privileges = cpu_to_le32(privileges); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	status = be_mcc_notify_wait(adapter); | 
					
						
							|  |  |  | err: | 
					
						
							|  |  |  | 	spin_unlock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-23 15:24:59 +05:30
										 |  |  | /* pmac_id_valid: true => pmac_id is supplied and MAC address is requested.
 | 
					
						
							|  |  |  |  * pmac_id_valid: false => pmac_id or MAC address is requested. | 
					
						
							|  |  |  |  *		  If pmac_id is returned, pmac_id_valid is returned as true | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2012-06-07 04:37:08 +00:00
										 |  |  | int be_cmd_get_mac_from_list(struct be_adapter *adapter, u8 *mac, | 
					
						
							| 
									
										
										
										
											2014-01-15 13:23:39 +05:30
										 |  |  | 			     bool *pmac_id_valid, u32 *pmac_id, u32 if_handle, | 
					
						
							|  |  |  | 			     u8 domain) | 
					
						
							| 
									
										
										
										
											2011-11-25 05:47:26 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							|  |  |  | 	struct be_cmd_req_get_mac_list *req; | 
					
						
							|  |  |  | 	int status; | 
					
						
							|  |  |  | 	int mac_count; | 
					
						
							| 
									
										
										
										
											2012-02-03 09:50:17 +00:00
										 |  |  | 	struct be_dma_mem get_mac_list_cmd; | 
					
						
							|  |  |  | 	int i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	memset(&get_mac_list_cmd, 0, sizeof(struct be_dma_mem)); | 
					
						
							|  |  |  | 	get_mac_list_cmd.size = sizeof(struct be_cmd_resp_get_mac_list); | 
					
						
							|  |  |  | 	get_mac_list_cmd.va = pci_alloc_consistent(adapter->pdev, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 						   get_mac_list_cmd.size, | 
					
						
							|  |  |  | 						   &get_mac_list_cmd.dma); | 
					
						
							| 
									
										
										
										
											2012-02-03 09:50:17 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (!get_mac_list_cmd.va) { | 
					
						
							|  |  |  | 		dev_err(&adapter->pdev->dev, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 			"Memory allocation failure during GET_MAC_LIST\n"); | 
					
						
							| 
									
										
										
										
											2012-02-03 09:50:17 +00:00
										 |  |  | 		return -ENOMEM; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-11-25 05:47:26 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	spin_lock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wrb = wrb_from_mccq(adapter); | 
					
						
							|  |  |  | 	if (!wrb) { | 
					
						
							|  |  |  | 		status = -EBUSY; | 
					
						
							| 
									
										
										
										
											2012-02-03 09:50:17 +00:00
										 |  |  | 		goto out; | 
					
						
							| 
									
										
										
										
											2011-11-25 05:47:26 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-02-03 09:50:17 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	req = get_mac_list_cmd.va; | 
					
						
							| 
									
										
										
										
											2011-11-25 05:47:26 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							| 
									
										
										
										
											2013-05-08 02:05:48 +00:00
										 |  |  | 			       OPCODE_COMMON_GET_MAC_LIST, | 
					
						
							|  |  |  | 			       get_mac_list_cmd.size, wrb, &get_mac_list_cmd); | 
					
						
							| 
									
										
										
										
											2011-11-25 05:47:26 +00:00
										 |  |  | 	req->hdr.domain = domain; | 
					
						
							| 
									
										
										
										
											2012-02-03 09:50:17 +00:00
										 |  |  | 	req->mac_type = MAC_ADDRESS_TYPE_NETWORK; | 
					
						
							| 
									
										
										
										
											2013-07-23 15:24:59 +05:30
										 |  |  | 	if (*pmac_id_valid) { | 
					
						
							|  |  |  | 		req->mac_id = cpu_to_le32(*pmac_id); | 
					
						
							| 
									
										
										
										
											2014-01-15 13:23:39 +05:30
										 |  |  | 		req->iface_id = cpu_to_le16(if_handle); | 
					
						
							| 
									
										
										
										
											2013-07-23 15:24:59 +05:30
										 |  |  | 		req->perm_override = 0; | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		req->perm_override = 1; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-11-25 05:47:26 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	status = be_mcc_notify_wait(adapter); | 
					
						
							|  |  |  | 	if (!status) { | 
					
						
							|  |  |  | 		struct be_cmd_resp_get_mac_list *resp = | 
					
						
							| 
									
										
										
										
											2012-02-03 09:50:17 +00:00
										 |  |  | 						get_mac_list_cmd.va; | 
					
						
							| 
									
										
										
										
											2013-07-23 15:24:59 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  | 		if (*pmac_id_valid) { | 
					
						
							|  |  |  | 			memcpy(mac, resp->macid_macaddr.mac_addr_id.macaddr, | 
					
						
							|  |  |  | 			       ETH_ALEN); | 
					
						
							|  |  |  | 			goto out; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-03 09:50:17 +00:00
										 |  |  | 		mac_count = resp->true_mac_count + resp->pseudo_mac_count; | 
					
						
							|  |  |  | 		/* Mac list returned could contain one or more active mac_ids
 | 
					
						
							| 
									
										
										
										
											2012-06-07 04:37:08 +00:00
										 |  |  | 		 * or one or more true or pseudo permanant mac addresses. | 
					
						
							|  |  |  | 		 * If an active mac_id is present, return first active mac_id | 
					
						
							|  |  |  | 		 * found. | 
					
						
							| 
									
										
										
										
											2012-02-03 09:50:17 +00:00
										 |  |  | 		 */ | 
					
						
							| 
									
										
										
										
											2011-11-25 05:47:26 +00:00
										 |  |  | 		for (i = 0; i < mac_count; i++) { | 
					
						
							| 
									
										
										
										
											2012-02-03 09:50:17 +00:00
										 |  |  | 			struct get_list_macaddr *mac_entry; | 
					
						
							|  |  |  | 			u16 mac_addr_size; | 
					
						
							|  |  |  | 			u32 mac_id; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			mac_entry = &resp->macaddr_list[i]; | 
					
						
							|  |  |  | 			mac_addr_size = le16_to_cpu(mac_entry->mac_addr_size); | 
					
						
							|  |  |  | 			/* mac_id is a 32 bit value and mac_addr size
 | 
					
						
							|  |  |  | 			 * is 6 bytes | 
					
						
							|  |  |  | 			 */ | 
					
						
							|  |  |  | 			if (mac_addr_size == sizeof(u32)) { | 
					
						
							| 
									
										
										
										
											2013-07-23 15:24:59 +05:30
										 |  |  | 				*pmac_id_valid = true; | 
					
						
							| 
									
										
										
										
											2012-02-03 09:50:17 +00:00
										 |  |  | 				mac_id = mac_entry->mac_addr_id.s_mac_id.mac_id; | 
					
						
							|  |  |  | 				*pmac_id = le32_to_cpu(mac_id); | 
					
						
							|  |  |  | 				goto out; | 
					
						
							| 
									
										
										
										
											2011-11-25 05:47:26 +00:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2012-06-07 04:37:08 +00:00
										 |  |  | 		/* If no active mac_id found, return first mac addr */ | 
					
						
							| 
									
										
										
										
											2013-07-23 15:24:59 +05:30
										 |  |  | 		*pmac_id_valid = false; | 
					
						
							| 
									
										
										
										
											2012-02-03 09:50:17 +00:00
										 |  |  | 		memcpy(mac, resp->macaddr_list[0].mac_addr_id.macaddr, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 		       ETH_ALEN); | 
					
						
							| 
									
										
										
										
											2011-11-25 05:47:26 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-03 09:50:17 +00:00
										 |  |  | out: | 
					
						
							| 
									
										
										
										
											2011-11-25 05:47:26 +00:00
										 |  |  | 	spin_unlock_bh(&adapter->mcc_lock); | 
					
						
							| 
									
										
										
										
											2012-02-03 09:50:17 +00:00
										 |  |  | 	pci_free_consistent(adapter->pdev, get_mac_list_cmd.size, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 			    get_mac_list_cmd.va, get_mac_list_cmd.dma); | 
					
						
							| 
									
										
										
										
											2011-11-25 05:47:26 +00:00
										 |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | int be_cmd_get_active_mac(struct be_adapter *adapter, u32 curr_pmac_id, | 
					
						
							|  |  |  | 			  u8 *mac, u32 if_handle, bool active, u32 domain) | 
					
						
							| 
									
										
										
										
											2013-07-23 15:24:59 +05:30
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2014-01-15 13:23:39 +05:30
										 |  |  | 	if (!active) | 
					
						
							|  |  |  | 		be_cmd_get_mac_from_list(adapter, mac, &active, &curr_pmac_id, | 
					
						
							|  |  |  | 					 if_handle, domain); | 
					
						
							| 
									
										
										
										
											2013-07-23 15:25:03 +05:30
										 |  |  | 	if (BEx_chip(adapter)) | 
					
						
							| 
									
										
										
										
											2013-07-23 15:24:59 +05:30
										 |  |  | 		return be_cmd_mac_addr_query(adapter, mac, false, | 
					
						
							| 
									
										
										
										
											2014-01-15 13:23:39 +05:30
										 |  |  | 					     if_handle, curr_pmac_id); | 
					
						
							| 
									
										
										
										
											2013-07-23 15:25:03 +05:30
										 |  |  | 	else | 
					
						
							|  |  |  | 		/* Fetch the MAC address using pmac_id */ | 
					
						
							|  |  |  | 		return be_cmd_get_mac_from_list(adapter, mac, &active, | 
					
						
							| 
									
										
										
										
											2014-01-15 13:23:39 +05:30
										 |  |  | 						&curr_pmac_id, | 
					
						
							|  |  |  | 						if_handle, domain); | 
					
						
							| 
									
										
										
										
											2013-07-23 15:24:59 +05:30
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-23 15:25:02 +05:30
										 |  |  | int be_cmd_get_perm_mac(struct be_adapter *adapter, u8 *mac) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int status; | 
					
						
							|  |  |  | 	bool pmac_valid = false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	memset(mac, 0, ETH_ALEN); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-23 15:25:03 +05:30
										 |  |  | 	if (BEx_chip(adapter)) { | 
					
						
							|  |  |  | 		if (be_physfn(adapter)) | 
					
						
							|  |  |  | 			status = be_cmd_mac_addr_query(adapter, mac, true, 0, | 
					
						
							|  |  |  | 						       0); | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 			status = be_cmd_mac_addr_query(adapter, mac, false, | 
					
						
							|  |  |  | 						       adapter->if_handle, 0); | 
					
						
							|  |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2013-07-23 15:25:02 +05:30
										 |  |  | 		status = be_cmd_get_mac_from_list(adapter, mac, &pmac_valid, | 
					
						
							| 
									
										
										
										
											2014-01-15 13:23:39 +05:30
										 |  |  | 						  NULL, adapter->if_handle, 0); | 
					
						
							| 
									
										
										
										
											2013-07-23 15:25:03 +05:30
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-23 15:25:02 +05:30
										 |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-25 05:47:26 +00:00
										 |  |  | /* Uses synchronous MCCQ */ | 
					
						
							|  |  |  | int be_cmd_set_mac_list(struct be_adapter *adapter, u8 *mac_array, | 
					
						
							|  |  |  | 			u8 mac_count, u32 domain) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							|  |  |  | 	struct be_cmd_req_set_mac_list *req; | 
					
						
							|  |  |  | 	int status; | 
					
						
							|  |  |  | 	struct be_dma_mem cmd; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	memset(&cmd, 0, sizeof(struct be_dma_mem)); | 
					
						
							|  |  |  | 	cmd.size = sizeof(struct be_cmd_req_set_mac_list); | 
					
						
							|  |  |  | 	cmd.va = dma_alloc_coherent(&adapter->pdev->dev, cmd.size, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 				    &cmd.dma, GFP_KERNEL); | 
					
						
							| 
									
										
										
										
											2013-03-14 13:07:21 +00:00
										 |  |  | 	if (!cmd.va) | 
					
						
							| 
									
										
										
										
											2011-11-25 05:47:26 +00:00
										 |  |  | 		return -ENOMEM; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	spin_lock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wrb = wrb_from_mccq(adapter); | 
					
						
							|  |  |  | 	if (!wrb) { | 
					
						
							|  |  |  | 		status = -EBUSY; | 
					
						
							|  |  |  | 		goto err; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	req = cmd.va; | 
					
						
							|  |  |  | 	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 			       OPCODE_COMMON_SET_MAC_LIST, sizeof(*req), | 
					
						
							|  |  |  | 			       wrb, &cmd); | 
					
						
							| 
									
										
										
										
											2011-11-25 05:47:26 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	req->hdr.domain = domain; | 
					
						
							|  |  |  | 	req->mac_count = mac_count; | 
					
						
							|  |  |  | 	if (mac_count) | 
					
						
							|  |  |  | 		memcpy(req->mac, mac_array, ETH_ALEN*mac_count); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	status = be_mcc_notify_wait(adapter); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | err: | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 	dma_free_coherent(&adapter->pdev->dev, cmd.size, cmd.va, cmd.dma); | 
					
						
							| 
									
										
										
										
											2011-11-25 05:47:26 +00:00
										 |  |  | 	spin_unlock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2012-03-18 06:23:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-23 15:25:03 +05:30
										 |  |  | /* Wrapper to delete any active MACs and provision the new mac.
 | 
					
						
							|  |  |  |  * Changes to MAC_LIST are allowed iff none of the MAC addresses in the | 
					
						
							|  |  |  |  * current list are active. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | int be_cmd_set_mac(struct be_adapter *adapter, u8 *mac, int if_id, u32 dom) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	bool active_mac = false; | 
					
						
							|  |  |  | 	u8 old_mac[ETH_ALEN]; | 
					
						
							|  |  |  | 	u32 pmac_id; | 
					
						
							|  |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	status = be_cmd_get_mac_from_list(adapter, old_mac, &active_mac, | 
					
						
							| 
									
										
										
										
											2014-01-15 13:23:39 +05:30
										 |  |  | 					  &pmac_id, if_id, dom); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-23 15:25:03 +05:30
										 |  |  | 	if (!status && active_mac) | 
					
						
							|  |  |  | 		be_cmd_pmac_del(adapter, if_id, pmac_id, dom); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return be_cmd_set_mac_list(adapter, mac, mac ? 1 : 0, dom); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-18 06:23:41 +00:00
										 |  |  | int be_cmd_set_hsw_config(struct be_adapter *adapter, u16 pvid, | 
					
						
							| 
									
										
										
										
											2013-08-30 15:01:16 -05:00
										 |  |  | 			  u32 domain, u16 intf_id, u16 hsw_mode) | 
					
						
							| 
									
										
										
										
											2012-03-18 06:23:41 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							|  |  |  | 	struct be_cmd_req_set_hsw_config *req; | 
					
						
							|  |  |  | 	void *ctxt; | 
					
						
							|  |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	spin_lock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wrb = wrb_from_mccq(adapter); | 
					
						
							|  |  |  | 	if (!wrb) { | 
					
						
							|  |  |  | 		status = -EBUSY; | 
					
						
							|  |  |  | 		goto err; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	req = embedded_payload(wrb); | 
					
						
							|  |  |  | 	ctxt = &req->context; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 			       OPCODE_COMMON_SET_HSW_CONFIG, sizeof(*req), wrb, | 
					
						
							|  |  |  | 			       NULL); | 
					
						
							| 
									
										
										
										
											2012-03-18 06:23:41 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	req->hdr.domain = domain; | 
					
						
							|  |  |  | 	AMAP_SET_BITS(struct amap_set_hsw_context, interface_id, ctxt, intf_id); | 
					
						
							|  |  |  | 	if (pvid) { | 
					
						
							|  |  |  | 		AMAP_SET_BITS(struct amap_set_hsw_context, pvid_valid, ctxt, 1); | 
					
						
							|  |  |  | 		AMAP_SET_BITS(struct amap_set_hsw_context, pvid, ctxt, pvid); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-08-30 15:01:16 -05:00
										 |  |  | 	if (!BEx_chip(adapter) && hsw_mode) { | 
					
						
							|  |  |  | 		AMAP_SET_BITS(struct amap_set_hsw_context, interface_id, | 
					
						
							|  |  |  | 			      ctxt, adapter->hba_port_num); | 
					
						
							|  |  |  | 		AMAP_SET_BITS(struct amap_set_hsw_context, pport, ctxt, 1); | 
					
						
							|  |  |  | 		AMAP_SET_BITS(struct amap_set_hsw_context, port_fwd_type, | 
					
						
							|  |  |  | 			      ctxt, hsw_mode); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-03-18 06:23:41 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	be_dws_cpu_to_le(req->context, sizeof(req->context)); | 
					
						
							|  |  |  | 	status = be_mcc_notify_wait(adapter); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | err: | 
					
						
							|  |  |  | 	spin_unlock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Get Hyper switch config */ | 
					
						
							|  |  |  | int be_cmd_get_hsw_config(struct be_adapter *adapter, u16 *pvid, | 
					
						
							| 
									
										
										
										
											2013-08-30 15:01:16 -05:00
										 |  |  | 			  u32 domain, u16 intf_id, u8 *mode) | 
					
						
							| 
									
										
										
										
											2012-03-18 06:23:41 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							|  |  |  | 	struct be_cmd_req_get_hsw_config *req; | 
					
						
							|  |  |  | 	void *ctxt; | 
					
						
							|  |  |  | 	int status; | 
					
						
							|  |  |  | 	u16 vid; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	spin_lock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wrb = wrb_from_mccq(adapter); | 
					
						
							|  |  |  | 	if (!wrb) { | 
					
						
							|  |  |  | 		status = -EBUSY; | 
					
						
							|  |  |  | 		goto err; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	req = embedded_payload(wrb); | 
					
						
							|  |  |  | 	ctxt = &req->context; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 			       OPCODE_COMMON_GET_HSW_CONFIG, sizeof(*req), wrb, | 
					
						
							|  |  |  | 			       NULL); | 
					
						
							| 
									
										
										
										
											2012-03-18 06:23:41 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	req->hdr.domain = domain; | 
					
						
							| 
									
										
										
										
											2013-08-30 15:01:16 -05:00
										 |  |  | 	AMAP_SET_BITS(struct amap_get_hsw_req_context, interface_id, | 
					
						
							|  |  |  | 		      ctxt, intf_id); | 
					
						
							| 
									
										
										
										
											2012-03-18 06:23:41 +00:00
										 |  |  | 	AMAP_SET_BITS(struct amap_get_hsw_req_context, pvid_valid, ctxt, 1); | 
					
						
							| 
									
										
										
										
											2013-08-30 15:01:16 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-15 13:23:32 +05:30
										 |  |  | 	if (!BEx_chip(adapter) && mode) { | 
					
						
							| 
									
										
										
										
											2013-08-30 15:01:16 -05:00
										 |  |  | 		AMAP_SET_BITS(struct amap_get_hsw_req_context, interface_id, | 
					
						
							|  |  |  | 			      ctxt, adapter->hba_port_num); | 
					
						
							|  |  |  | 		AMAP_SET_BITS(struct amap_get_hsw_req_context, pport, ctxt, 1); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-03-18 06:23:41 +00:00
										 |  |  | 	be_dws_cpu_to_le(req->context, sizeof(req->context)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	status = be_mcc_notify_wait(adapter); | 
					
						
							|  |  |  | 	if (!status) { | 
					
						
							|  |  |  | 		struct be_cmd_resp_get_hsw_config *resp = | 
					
						
							|  |  |  | 						embedded_payload(wrb); | 
					
						
							| 
									
										
										
										
											2014-09-19 15:46:56 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 		be_dws_le_to_cpu(&resp->context, sizeof(resp->context)); | 
					
						
							| 
									
										
										
										
											2012-03-18 06:23:41 +00:00
										 |  |  | 		vid = AMAP_GET_BITS(struct amap_get_hsw_resp_context, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 				    pvid, &resp->context); | 
					
						
							| 
									
										
										
										
											2013-08-30 15:01:16 -05:00
										 |  |  | 		if (pvid) | 
					
						
							|  |  |  | 			*pvid = le16_to_cpu(vid); | 
					
						
							|  |  |  | 		if (mode) | 
					
						
							|  |  |  | 			*mode = AMAP_GET_BITS(struct amap_get_hsw_resp_context, | 
					
						
							|  |  |  | 					      port_fwd_type, &resp->context); | 
					
						
							| 
									
										
										
										
											2012-03-18 06:23:41 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | err: | 
					
						
							|  |  |  | 	spin_unlock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-18 06:23:11 +00:00
										 |  |  | int be_cmd_get_acpi_wol_cap(struct be_adapter *adapter) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							|  |  |  | 	struct be_cmd_req_acpi_wol_magic_config_v1 *req; | 
					
						
							| 
									
										
										
										
											2014-01-15 13:23:40 +05:30
										 |  |  | 	int status = 0; | 
					
						
							| 
									
										
										
										
											2012-03-18 06:23:11 +00:00
										 |  |  | 	struct be_dma_mem cmd; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-20 06:02:52 +00:00
										 |  |  | 	if (!be_cmd_allowed(adapter, OPCODE_ETH_ACPI_WOL_MAGIC_CONFIG, | 
					
						
							|  |  |  | 			    CMD_SUBSYSTEM_ETH)) | 
					
						
							|  |  |  | 		return -EPERM; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-15 13:23:40 +05:30
										 |  |  | 	if (be_is_wol_excluded(adapter)) | 
					
						
							|  |  |  | 		return status; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-25 00:56:55 +00:00
										 |  |  | 	if (mutex_lock_interruptible(&adapter->mbox_lock)) | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-18 06:23:11 +00:00
										 |  |  | 	memset(&cmd, 0, sizeof(struct be_dma_mem)); | 
					
						
							|  |  |  | 	cmd.size = sizeof(struct be_cmd_resp_acpi_wol_magic_config_v1); | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 	cmd.va = pci_alloc_consistent(adapter->pdev, cmd.size, &cmd.dma); | 
					
						
							| 
									
										
										
										
											2012-03-18 06:23:11 +00:00
										 |  |  | 	if (!cmd.va) { | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 		dev_err(&adapter->pdev->dev, "Memory allocation failure\n"); | 
					
						
							| 
									
										
										
										
											2013-04-25 00:56:55 +00:00
										 |  |  | 		status = -ENOMEM; | 
					
						
							|  |  |  | 		goto err; | 
					
						
							| 
									
										
										
										
											2012-03-18 06:23:11 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wrb = wrb_from_mbox(adapter); | 
					
						
							|  |  |  | 	if (!wrb) { | 
					
						
							|  |  |  | 		status = -EBUSY; | 
					
						
							|  |  |  | 		goto err; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	req = cmd.va; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_ETH, | 
					
						
							|  |  |  | 			       OPCODE_ETH_ACPI_WOL_MAGIC_CONFIG, | 
					
						
							| 
									
										
										
										
											2014-01-15 13:23:40 +05:30
										 |  |  | 			       sizeof(*req), wrb, &cmd); | 
					
						
							| 
									
										
										
										
											2012-03-18 06:23:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	req->hdr.version = 1; | 
					
						
							|  |  |  | 	req->query_options = BE_GET_WOL_CAP; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	status = be_mbox_notify_wait(adapter); | 
					
						
							|  |  |  | 	if (!status) { | 
					
						
							|  |  |  | 		struct be_cmd_resp_acpi_wol_magic_config_v1 *resp; | 
					
						
							| 
									
										
										
										
											2014-09-19 15:46:56 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-19 15:47:00 +05:30
										 |  |  | 		resp = (struct be_cmd_resp_acpi_wol_magic_config_v1 *)cmd.va; | 
					
						
							| 
									
										
										
										
											2012-03-18 06:23:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		adapter->wol_cap = resp->wol_settings; | 
					
						
							| 
									
										
										
										
											2014-01-15 13:23:40 +05:30
										 |  |  | 		if (adapter->wol_cap & BE_WOL_CAP) | 
					
						
							|  |  |  | 			adapter->wol_en = true; | 
					
						
							| 
									
										
										
										
											2012-03-18 06:23:11 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | err: | 
					
						
							|  |  |  | 	mutex_unlock(&adapter->mbox_lock); | 
					
						
							| 
									
										
										
										
											2013-04-25 00:56:55 +00:00
										 |  |  | 	if (cmd.va) | 
					
						
							|  |  |  | 		pci_free_consistent(adapter->pdev, cmd.size, cmd.va, cmd.dma); | 
					
						
							| 
									
										
										
										
											2012-03-18 06:23:11 +00:00
										 |  |  | 	return status; | 
					
						
							| 
									
										
										
										
											2012-05-17 22:59:03 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2014-01-15 13:23:34 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  | int be_cmd_set_fw_log_level(struct be_adapter *adapter, u32 level) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct be_dma_mem extfat_cmd; | 
					
						
							|  |  |  | 	struct be_fat_conf_params *cfgs; | 
					
						
							|  |  |  | 	int status; | 
					
						
							|  |  |  | 	int i, j; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	memset(&extfat_cmd, 0, sizeof(struct be_dma_mem)); | 
					
						
							|  |  |  | 	extfat_cmd.size = sizeof(struct be_cmd_resp_get_ext_fat_caps); | 
					
						
							|  |  |  | 	extfat_cmd.va = pci_alloc_consistent(adapter->pdev, extfat_cmd.size, | 
					
						
							|  |  |  | 					     &extfat_cmd.dma); | 
					
						
							|  |  |  | 	if (!extfat_cmd.va) | 
					
						
							|  |  |  | 		return -ENOMEM; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	status = be_cmd_get_ext_fat_capabilites(adapter, &extfat_cmd); | 
					
						
							|  |  |  | 	if (status) | 
					
						
							|  |  |  | 		goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	cfgs = (struct be_fat_conf_params *) | 
					
						
							|  |  |  | 			(extfat_cmd.va + sizeof(struct be_cmd_resp_hdr)); | 
					
						
							|  |  |  | 	for (i = 0; i < le32_to_cpu(cfgs->num_modules); i++) { | 
					
						
							|  |  |  | 		u32 num_modes = le32_to_cpu(cfgs->module[i].num_modes); | 
					
						
							| 
									
										
										
										
											2014-09-19 15:46:56 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-15 13:23:34 +05:30
										 |  |  | 		for (j = 0; j < num_modes; j++) { | 
					
						
							|  |  |  | 			if (cfgs->module[i].trace_lvl[j].mode == MODE_UART) | 
					
						
							|  |  |  | 				cfgs->module[i].trace_lvl[j].dbg_lvl = | 
					
						
							|  |  |  | 							cpu_to_le32(level); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	status = be_cmd_set_ext_fat_capabilites(adapter, &extfat_cmd, cfgs); | 
					
						
							|  |  |  | err: | 
					
						
							|  |  |  | 	pci_free_consistent(adapter->pdev, extfat_cmd.size, extfat_cmd.va, | 
					
						
							|  |  |  | 			    extfat_cmd.dma); | 
					
						
							|  |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int be_cmd_get_fw_log_level(struct be_adapter *adapter) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct be_dma_mem extfat_cmd; | 
					
						
							|  |  |  | 	struct be_fat_conf_params *cfgs; | 
					
						
							|  |  |  | 	int status, j; | 
					
						
							|  |  |  | 	int level = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	memset(&extfat_cmd, 0, sizeof(struct be_dma_mem)); | 
					
						
							|  |  |  | 	extfat_cmd.size = sizeof(struct be_cmd_resp_get_ext_fat_caps); | 
					
						
							|  |  |  | 	extfat_cmd.va = pci_alloc_consistent(adapter->pdev, extfat_cmd.size, | 
					
						
							|  |  |  | 					     &extfat_cmd.dma); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!extfat_cmd.va) { | 
					
						
							|  |  |  | 		dev_err(&adapter->pdev->dev, "%s: Memory allocation failure\n", | 
					
						
							|  |  |  | 			__func__); | 
					
						
							|  |  |  | 		goto err; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	status = be_cmd_get_ext_fat_capabilites(adapter, &extfat_cmd); | 
					
						
							|  |  |  | 	if (!status) { | 
					
						
							|  |  |  | 		cfgs = (struct be_fat_conf_params *)(extfat_cmd.va + | 
					
						
							|  |  |  | 						sizeof(struct be_cmd_resp_hdr)); | 
					
						
							| 
									
										
										
										
											2014-09-19 15:46:56 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-15 13:23:34 +05:30
										 |  |  | 		for (j = 0; j < le32_to_cpu(cfgs->module[0].num_modes); j++) { | 
					
						
							|  |  |  | 			if (cfgs->module[0].trace_lvl[j].mode == MODE_UART) | 
					
						
							|  |  |  | 				level = cfgs->module[0].trace_lvl[j].dbg_lvl; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	pci_free_consistent(adapter->pdev, extfat_cmd.size, extfat_cmd.va, | 
					
						
							|  |  |  | 			    extfat_cmd.dma); | 
					
						
							|  |  |  | err: | 
					
						
							|  |  |  | 	return level; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-17 22:59:03 +00:00
										 |  |  | int be_cmd_get_ext_fat_capabilites(struct be_adapter *adapter, | 
					
						
							|  |  |  | 				   struct be_dma_mem *cmd) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							|  |  |  | 	struct be_cmd_req_get_ext_fat_caps *req; | 
					
						
							|  |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (mutex_lock_interruptible(&adapter->mbox_lock)) | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wrb = wrb_from_mbox(adapter); | 
					
						
							|  |  |  | 	if (!wrb) { | 
					
						
							|  |  |  | 		status = -EBUSY; | 
					
						
							|  |  |  | 		goto err; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	req = cmd->va; | 
					
						
							|  |  |  | 	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							|  |  |  | 			       OPCODE_COMMON_GET_EXT_FAT_CAPABILITES, | 
					
						
							|  |  |  | 			       cmd->size, wrb, cmd); | 
					
						
							|  |  |  | 	req->parameter_type = cpu_to_le32(1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	status = be_mbox_notify_wait(adapter); | 
					
						
							|  |  |  | err: | 
					
						
							|  |  |  | 	mutex_unlock(&adapter->mbox_lock); | 
					
						
							|  |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int be_cmd_set_ext_fat_capabilites(struct be_adapter *adapter, | 
					
						
							|  |  |  | 				   struct be_dma_mem *cmd, | 
					
						
							|  |  |  | 				   struct be_fat_conf_params *configs) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							|  |  |  | 	struct be_cmd_req_set_ext_fat_caps *req; | 
					
						
							|  |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	spin_lock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wrb = wrb_from_mccq(adapter); | 
					
						
							|  |  |  | 	if (!wrb) { | 
					
						
							|  |  |  | 		status = -EBUSY; | 
					
						
							|  |  |  | 		goto err; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	req = cmd->va; | 
					
						
							|  |  |  | 	memcpy(&req->set_params, configs, sizeof(struct be_fat_conf_params)); | 
					
						
							|  |  |  | 	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							|  |  |  | 			       OPCODE_COMMON_SET_EXT_FAT_CAPABILITES, | 
					
						
							|  |  |  | 			       cmd->size, wrb, cmd); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	status = be_mcc_notify_wait(adapter); | 
					
						
							|  |  |  | err: | 
					
						
							|  |  |  | 	spin_unlock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 	return status; | 
					
						
							| 
									
										
										
										
											2012-03-18 06:23:11 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2012-03-26 14:27:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-12 03:57:35 +00:00
										 |  |  | int be_cmd_query_port_name(struct be_adapter *adapter, u8 *port_name) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							|  |  |  | 	struct be_cmd_req_get_port_name *req; | 
					
						
							|  |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!lancer_chip(adapter)) { | 
					
						
							|  |  |  | 		*port_name = adapter->hba_port_num + '0'; | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	spin_lock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wrb = wrb_from_mccq(adapter); | 
					
						
							|  |  |  | 	if (!wrb) { | 
					
						
							|  |  |  | 		status = -EBUSY; | 
					
						
							|  |  |  | 		goto err; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	req = embedded_payload(wrb); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							|  |  |  | 			       OPCODE_COMMON_GET_PORT_NAME, sizeof(*req), wrb, | 
					
						
							|  |  |  | 			       NULL); | 
					
						
							|  |  |  | 	req->hdr.version = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	status = be_mcc_notify_wait(adapter); | 
					
						
							|  |  |  | 	if (!status) { | 
					
						
							|  |  |  | 		struct be_cmd_resp_get_port_name *resp = embedded_payload(wrb); | 
					
						
							| 
									
										
										
										
											2014-09-19 15:46:56 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-12 03:57:35 +00:00
										 |  |  | 		*port_name = resp->port_name[adapter->hba_port_num]; | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		*port_name = adapter->hba_port_num + '0'; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | err: | 
					
						
							|  |  |  | 	spin_unlock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-30 13:01:31 +05:30
										 |  |  | /* Descriptor type */ | 
					
						
							|  |  |  | enum { | 
					
						
							|  |  |  | 	FUNC_DESC = 1, | 
					
						
							|  |  |  | 	VFT_DESC = 2 | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct be_nic_res_desc *be_get_nic_desc(u8 *buf, u32 desc_count, | 
					
						
							|  |  |  | 					       int desc_type) | 
					
						
							| 
									
										
										
										
											2012-10-20 06:01:41 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-08-27 16:57:31 +05:30
										 |  |  | 	struct be_res_desc_hdr *hdr = (struct be_res_desc_hdr *)buf; | 
					
						
							| 
									
										
										
										
											2014-06-30 13:01:31 +05:30
										 |  |  | 	struct be_nic_res_desc *nic; | 
					
						
							| 
									
										
										
										
											2012-10-20 06:01:41 +00:00
										 |  |  | 	int i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (i = 0; i < desc_count; i++) { | 
					
						
							| 
									
										
										
										
											2013-08-27 16:57:31 +05:30
										 |  |  | 		if (hdr->desc_type == NIC_RESOURCE_DESC_TYPE_V0 || | 
					
						
							| 
									
										
										
										
											2014-06-30 13:01:31 +05:30
										 |  |  | 		    hdr->desc_type == NIC_RESOURCE_DESC_TYPE_V1) { | 
					
						
							|  |  |  | 			nic = (struct be_nic_res_desc *)hdr; | 
					
						
							|  |  |  | 			if (desc_type == FUNC_DESC || | 
					
						
							|  |  |  | 			    (desc_type == VFT_DESC && | 
					
						
							|  |  |  | 			     nic->flags & (1 << VFT_SHIFT))) | 
					
						
							|  |  |  | 				return nic; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2012-10-20 06:01:41 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-27 16:57:31 +05:30
										 |  |  | 		hdr->desc_len = hdr->desc_len ? : RESOURCE_DESC_SIZE_V0; | 
					
						
							|  |  |  | 		hdr = (void *)hdr + hdr->desc_len; | 
					
						
							| 
									
										
										
										
											2012-10-20 06:01:41 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-08-27 16:57:31 +05:30
										 |  |  | 	return NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-30 13:01:31 +05:30
										 |  |  | static struct be_nic_res_desc *be_get_vft_desc(u8 *buf, u32 desc_count) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return be_get_nic_desc(buf, desc_count, VFT_DESC); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct be_nic_res_desc *be_get_func_nic_desc(u8 *buf, u32 desc_count) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return be_get_nic_desc(buf, desc_count, FUNC_DESC); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-27 16:57:31 +05:30
										 |  |  | static struct be_pcie_res_desc *be_get_pcie_desc(u8 devfn, u8 *buf, | 
					
						
							|  |  |  | 						 u32 desc_count) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct be_res_desc_hdr *hdr = (struct be_res_desc_hdr *)buf; | 
					
						
							|  |  |  | 	struct be_pcie_res_desc *pcie; | 
					
						
							|  |  |  | 	int i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (i = 0; i < desc_count; i++) { | 
					
						
							|  |  |  | 		if ((hdr->desc_type == PCIE_RESOURCE_DESC_TYPE_V0 || | 
					
						
							|  |  |  | 		     hdr->desc_type == PCIE_RESOURCE_DESC_TYPE_V1)) { | 
					
						
							|  |  |  | 			pcie = (struct be_pcie_res_desc	*)hdr; | 
					
						
							|  |  |  | 			if (pcie->pf_num == devfn) | 
					
						
							|  |  |  | 				return pcie; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2012-10-20 06:01:41 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-27 16:57:31 +05:30
										 |  |  | 		hdr->desc_len = hdr->desc_len ? : RESOURCE_DESC_SIZE_V0; | 
					
						
							|  |  |  | 		hdr = (void *)hdr + hdr->desc_len; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-05-22 15:58:22 +00:00
										 |  |  | 	return NULL; | 
					
						
							| 
									
										
										
										
											2012-10-20 06:01:41 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-12 16:09:25 +05:30
										 |  |  | static struct be_port_res_desc *be_get_port_desc(u8 *buf, u32 desc_count) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct be_res_desc_hdr *hdr = (struct be_res_desc_hdr *)buf; | 
					
						
							|  |  |  | 	int i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (i = 0; i < desc_count; i++) { | 
					
						
							|  |  |  | 		if (hdr->desc_type == PORT_RESOURCE_DESC_TYPE_V1) | 
					
						
							|  |  |  | 			return (struct be_port_res_desc *)hdr; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		hdr->desc_len = hdr->desc_len ? : RESOURCE_DESC_SIZE_V0; | 
					
						
							|  |  |  | 		hdr = (void *)hdr + hdr->desc_len; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-27 16:57:32 +05:30
										 |  |  | static void be_copy_nic_desc(struct be_resources *res, | 
					
						
							|  |  |  | 			     struct be_nic_res_desc *desc) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	res->max_uc_mac = le16_to_cpu(desc->unicast_mac_count); | 
					
						
							|  |  |  | 	res->max_vlans = le16_to_cpu(desc->vlan_count); | 
					
						
							|  |  |  | 	res->max_mcast_mac = le16_to_cpu(desc->mcast_mac_count); | 
					
						
							|  |  |  | 	res->max_tx_qs = le16_to_cpu(desc->txq_count); | 
					
						
							|  |  |  | 	res->max_rss_qs = le16_to_cpu(desc->rssq_count); | 
					
						
							|  |  |  | 	res->max_rx_qs = le16_to_cpu(desc->rq_count); | 
					
						
							|  |  |  | 	res->max_evt_qs = le16_to_cpu(desc->eq_count); | 
					
						
							|  |  |  | 	/* Clear flags that driver is not interested in */ | 
					
						
							|  |  |  | 	res->if_cap_flags = le32_to_cpu(desc->cap_flags) & | 
					
						
							|  |  |  | 				BE_IF_CAP_FLAGS_WANT; | 
					
						
							|  |  |  | 	/* Need 1 RXQ as the default RXQ */ | 
					
						
							|  |  |  | 	if (res->max_rss_qs && res->max_rss_qs == res->max_rx_qs) | 
					
						
							|  |  |  | 		res->max_rss_qs -= 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-20 06:01:41 +00:00
										 |  |  | /* Uses Mbox */ | 
					
						
							| 
									
										
										
										
											2013-08-27 16:57:32 +05:30
										 |  |  | int be_cmd_get_func_config(struct be_adapter *adapter, struct be_resources *res) | 
					
						
							| 
									
										
										
										
											2012-10-20 06:01:41 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							|  |  |  | 	struct be_cmd_req_get_func_config *req; | 
					
						
							|  |  |  | 	int status; | 
					
						
							|  |  |  | 	struct be_dma_mem cmd; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-25 00:56:55 +00:00
										 |  |  | 	if (mutex_lock_interruptible(&adapter->mbox_lock)) | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-20 06:01:41 +00:00
										 |  |  | 	memset(&cmd, 0, sizeof(struct be_dma_mem)); | 
					
						
							|  |  |  | 	cmd.size = sizeof(struct be_cmd_resp_get_func_config); | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 	cmd.va = pci_alloc_consistent(adapter->pdev, cmd.size, &cmd.dma); | 
					
						
							| 
									
										
										
										
											2012-10-20 06:01:41 +00:00
										 |  |  | 	if (!cmd.va) { | 
					
						
							|  |  |  | 		dev_err(&adapter->pdev->dev, "Memory alloc failure\n"); | 
					
						
							| 
									
										
										
										
											2013-04-25 00:56:55 +00:00
										 |  |  | 		status = -ENOMEM; | 
					
						
							|  |  |  | 		goto err; | 
					
						
							| 
									
										
										
										
											2012-10-20 06:01:41 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wrb = wrb_from_mbox(adapter); | 
					
						
							|  |  |  | 	if (!wrb) { | 
					
						
							|  |  |  | 		status = -EBUSY; | 
					
						
							|  |  |  | 		goto err; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	req = cmd.va; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							|  |  |  | 			       OPCODE_COMMON_GET_FUNC_CONFIG, | 
					
						
							|  |  |  | 			       cmd.size, wrb, &cmd); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-28 22:21:13 +00:00
										 |  |  | 	if (skyhawk_chip(adapter)) | 
					
						
							|  |  |  | 		req->hdr.version = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-20 06:01:41 +00:00
										 |  |  | 	status = be_mbox_notify_wait(adapter); | 
					
						
							|  |  |  | 	if (!status) { | 
					
						
							|  |  |  | 		struct be_cmd_resp_get_func_config *resp = cmd.va; | 
					
						
							|  |  |  | 		u32 desc_count = le32_to_cpu(resp->desc_count); | 
					
						
							| 
									
										
										
										
											2013-08-27 16:57:31 +05:30
										 |  |  | 		struct be_nic_res_desc *desc; | 
					
						
							| 
									
										
										
										
											2012-10-20 06:01:41 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-30 13:01:31 +05:30
										 |  |  | 		desc = be_get_func_nic_desc(resp->func_param, desc_count); | 
					
						
							| 
									
										
										
										
											2012-10-20 06:01:41 +00:00
										 |  |  | 		if (!desc) { | 
					
						
							|  |  |  | 			status = -EINVAL; | 
					
						
							|  |  |  | 			goto err; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-20 06:01:53 +00:00
										 |  |  | 		adapter->pf_number = desc->pf_num; | 
					
						
							| 
									
										
										
										
											2013-08-27 16:57:32 +05:30
										 |  |  | 		be_copy_nic_desc(res, desc); | 
					
						
							| 
									
										
										
										
											2012-10-20 06:01:41 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | err: | 
					
						
							|  |  |  | 	mutex_unlock(&adapter->mbox_lock); | 
					
						
							| 
									
										
										
										
											2013-04-25 00:56:55 +00:00
										 |  |  | 	if (cmd.va) | 
					
						
							|  |  |  | 		pci_free_consistent(adapter->pdev, cmd.size, cmd.va, cmd.dma); | 
					
						
							| 
									
										
										
										
											2012-10-20 06:01:41 +00:00
										 |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-30 13:01:30 +05:30
										 |  |  | /* Will use MBOX only if MCCQ has not been created */ | 
					
						
							| 
									
										
										
										
											2013-08-27 16:57:32 +05:30
										 |  |  | int be_cmd_get_profile_config(struct be_adapter *adapter, | 
					
						
							|  |  |  | 			      struct be_resources *res, u8 domain) | 
					
						
							| 
									
										
										
										
											2013-04-21 23:28:17 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-08-27 16:57:31 +05:30
										 |  |  | 	struct be_cmd_resp_get_profile_config *resp; | 
					
						
							| 
									
										
										
										
											2014-06-30 13:01:30 +05:30
										 |  |  | 	struct be_cmd_req_get_profile_config *req; | 
					
						
							| 
									
										
										
										
											2014-06-30 13:01:31 +05:30
										 |  |  | 	struct be_nic_res_desc *vf_res; | 
					
						
							| 
									
										
										
										
											2013-08-27 16:57:31 +05:30
										 |  |  | 	struct be_pcie_res_desc *pcie; | 
					
						
							| 
									
										
										
										
											2014-02-12 16:09:25 +05:30
										 |  |  | 	struct be_port_res_desc *port; | 
					
						
							| 
									
										
										
										
											2013-08-27 16:57:31 +05:30
										 |  |  | 	struct be_nic_res_desc *nic; | 
					
						
							| 
									
										
										
										
											2014-06-30 13:01:30 +05:30
										 |  |  | 	struct be_mcc_wrb wrb = {0}; | 
					
						
							| 
									
										
										
										
											2013-04-21 23:28:17 +00:00
										 |  |  | 	struct be_dma_mem cmd; | 
					
						
							| 
									
										
										
										
											2013-08-27 16:57:31 +05:30
										 |  |  | 	u32 desc_count; | 
					
						
							| 
									
										
										
										
											2013-04-21 23:28:17 +00:00
										 |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	memset(&cmd, 0, sizeof(struct be_dma_mem)); | 
					
						
							| 
									
										
										
										
											2013-08-27 16:57:31 +05:30
										 |  |  | 	cmd.size = sizeof(struct be_cmd_resp_get_profile_config); | 
					
						
							|  |  |  | 	cmd.va = pci_alloc_consistent(adapter->pdev, cmd.size, &cmd.dma); | 
					
						
							|  |  |  | 	if (!cmd.va) | 
					
						
							| 
									
										
										
										
											2013-04-21 23:28:17 +00:00
										 |  |  | 		return -ENOMEM; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-30 13:01:30 +05:30
										 |  |  | 	req = cmd.va; | 
					
						
							|  |  |  | 	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							|  |  |  | 			       OPCODE_COMMON_GET_PROFILE_CONFIG, | 
					
						
							|  |  |  | 			       cmd.size, &wrb, &cmd); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	req->hdr.domain = domain; | 
					
						
							|  |  |  | 	if (!lancer_chip(adapter)) | 
					
						
							|  |  |  | 		req->hdr.version = 1; | 
					
						
							|  |  |  | 	req->type = ACTIVE_PROFILE_TYPE; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	status = be_cmd_notify_wait(adapter, &wrb); | 
					
						
							| 
									
										
										
										
											2013-08-27 16:57:31 +05:30
										 |  |  | 	if (status) | 
					
						
							|  |  |  | 		goto err; | 
					
						
							| 
									
										
										
										
											2012-10-20 06:01:41 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-27 16:57:31 +05:30
										 |  |  | 	resp = cmd.va; | 
					
						
							|  |  |  | 	desc_count = le32_to_cpu(resp->desc_count); | 
					
						
							| 
									
										
										
										
											2012-10-20 06:01:41 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 	pcie = be_get_pcie_desc(adapter->pdev->devfn, resp->func_param, | 
					
						
							|  |  |  | 				desc_count); | 
					
						
							| 
									
										
										
										
											2013-08-27 16:57:31 +05:30
										 |  |  | 	if (pcie) | 
					
						
							| 
									
										
										
										
											2013-08-27 16:57:32 +05:30
										 |  |  | 		res->max_vfs = le16_to_cpu(pcie->num_vfs); | 
					
						
							| 
									
										
										
										
											2013-08-27 16:57:31 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-12 16:09:25 +05:30
										 |  |  | 	port = be_get_port_desc(resp->func_param, desc_count); | 
					
						
							|  |  |  | 	if (port) | 
					
						
							|  |  |  | 		adapter->mc_type = port->mc_type; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-30 13:01:31 +05:30
										 |  |  | 	nic = be_get_func_nic_desc(resp->func_param, desc_count); | 
					
						
							| 
									
										
										
										
											2013-08-27 16:57:32 +05:30
										 |  |  | 	if (nic) | 
					
						
							|  |  |  | 		be_copy_nic_desc(res, nic); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-30 13:01:31 +05:30
										 |  |  | 	vf_res = be_get_vft_desc(resp->func_param, desc_count); | 
					
						
							|  |  |  | 	if (vf_res) | 
					
						
							|  |  |  | 		res->vf_if_cap_flags = vf_res->cap_flags; | 
					
						
							| 
									
										
										
										
											2012-10-20 06:01:41 +00:00
										 |  |  | err: | 
					
						
							| 
									
										
										
										
											2013-04-21 23:28:17 +00:00
										 |  |  | 	if (cmd.va) | 
					
						
							| 
									
										
										
										
											2013-08-27 16:57:31 +05:30
										 |  |  | 		pci_free_consistent(adapter->pdev, cmd.size, cmd.va, cmd.dma); | 
					
						
							| 
									
										
										
										
											2012-10-20 06:01:41 +00:00
										 |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-30 13:01:32 +05:30
										 |  |  | /* Will use MBOX only if MCCQ has not been created */ | 
					
						
							|  |  |  | static int be_cmd_set_profile_config(struct be_adapter *adapter, void *desc, | 
					
						
							|  |  |  | 				     int size, int count, u8 version, u8 domain) | 
					
						
							| 
									
										
										
										
											2012-10-20 06:01:53 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct be_cmd_req_set_profile_config *req; | 
					
						
							| 
									
										
										
										
											2014-06-30 13:01:32 +05:30
										 |  |  | 	struct be_mcc_wrb wrb = {0}; | 
					
						
							|  |  |  | 	struct be_dma_mem cmd; | 
					
						
							| 
									
										
										
										
											2012-10-20 06:01:53 +00:00
										 |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-30 13:01:32 +05:30
										 |  |  | 	memset(&cmd, 0, sizeof(struct be_dma_mem)); | 
					
						
							|  |  |  | 	cmd.size = sizeof(struct be_cmd_req_set_profile_config); | 
					
						
							|  |  |  | 	cmd.va = pci_alloc_consistent(adapter->pdev, cmd.size, &cmd.dma); | 
					
						
							|  |  |  | 	if (!cmd.va) | 
					
						
							|  |  |  | 		return -ENOMEM; | 
					
						
							| 
									
										
										
										
											2012-10-20 06:01:53 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-30 13:01:32 +05:30
										 |  |  | 	req = cmd.va; | 
					
						
							| 
									
										
										
										
											2012-10-20 06:01:53 +00:00
										 |  |  | 	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							| 
									
										
										
										
											2014-06-30 13:01:32 +05:30
										 |  |  | 			       OPCODE_COMMON_SET_PROFILE_CONFIG, cmd.size, | 
					
						
							|  |  |  | 			       &wrb, &cmd); | 
					
						
							| 
									
										
										
										
											2014-03-27 10:46:18 +05:30
										 |  |  | 	req->hdr.version = version; | 
					
						
							| 
									
										
										
										
											2012-10-20 06:01:53 +00:00
										 |  |  | 	req->hdr.domain = domain; | 
					
						
							| 
									
										
										
										
											2014-06-30 13:01:32 +05:30
										 |  |  | 	req->desc_count = cpu_to_le32(count); | 
					
						
							| 
									
										
										
										
											2014-03-27 10:46:18 +05:30
										 |  |  | 	memcpy(req->desc, desc, size); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-30 13:01:32 +05:30
										 |  |  | 	status = be_cmd_notify_wait(adapter, &wrb); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (cmd.va) | 
					
						
							|  |  |  | 		pci_free_consistent(adapter->pdev, cmd.size, cmd.va, cmd.dma); | 
					
						
							| 
									
										
										
										
											2012-10-20 06:01:53 +00:00
										 |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-27 10:46:18 +05:30
										 |  |  | /* Mark all fields invalid */ | 
					
						
							| 
									
										
										
										
											2014-06-30 13:01:32 +05:30
										 |  |  | static void be_reset_nic_desc(struct be_nic_res_desc *nic) | 
					
						
							| 
									
										
										
										
											2014-03-27 10:46:18 +05:30
										 |  |  | { | 
					
						
							|  |  |  | 	memset(nic, 0, sizeof(*nic)); | 
					
						
							|  |  |  | 	nic->unicast_mac_count = 0xFFFF; | 
					
						
							|  |  |  | 	nic->mcc_count = 0xFFFF; | 
					
						
							|  |  |  | 	nic->vlan_count = 0xFFFF; | 
					
						
							|  |  |  | 	nic->mcast_mac_count = 0xFFFF; | 
					
						
							|  |  |  | 	nic->txq_count = 0xFFFF; | 
					
						
							|  |  |  | 	nic->rq_count = 0xFFFF; | 
					
						
							|  |  |  | 	nic->rssq_count = 0xFFFF; | 
					
						
							|  |  |  | 	nic->lro_count = 0xFFFF; | 
					
						
							|  |  |  | 	nic->cq_count = 0xFFFF; | 
					
						
							|  |  |  | 	nic->toe_conn_count = 0xFFFF; | 
					
						
							|  |  |  | 	nic->eq_count = 0xFFFF; | 
					
						
							| 
									
										
										
										
											2014-05-30 19:06:24 +05:30
										 |  |  | 	nic->iface_count = 0xFFFF; | 
					
						
							| 
									
										
										
										
											2014-03-27 10:46:18 +05:30
										 |  |  | 	nic->link_param = 0xFF; | 
					
						
							| 
									
										
										
										
											2014-05-30 19:06:24 +05:30
										 |  |  | 	nic->channel_id_param = cpu_to_le16(0xF000); | 
					
						
							| 
									
										
										
										
											2014-03-27 10:46:18 +05:30
										 |  |  | 	nic->acpi_params = 0xFF; | 
					
						
							|  |  |  | 	nic->wol_param = 0x0F; | 
					
						
							| 
									
										
										
										
											2014-05-30 19:06:24 +05:30
										 |  |  | 	nic->tunnel_iface_count = 0xFFFF; | 
					
						
							|  |  |  | 	nic->direct_tenant_iface_count = 0xFFFF; | 
					
						
							| 
									
										
										
										
											2014-06-30 13:01:32 +05:30
										 |  |  | 	nic->bw_min = 0xFFFFFFFF; | 
					
						
							| 
									
										
										
										
											2014-03-27 10:46:18 +05:30
										 |  |  | 	nic->bw_max = 0xFFFFFFFF; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-30 13:01:32 +05:30
										 |  |  | /* Mark all fields invalid */ | 
					
						
							|  |  |  | static void be_reset_pcie_desc(struct be_pcie_res_desc *pcie) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	memset(pcie, 0, sizeof(*pcie)); | 
					
						
							|  |  |  | 	pcie->sriov_state = 0xFF; | 
					
						
							|  |  |  | 	pcie->pf_state = 0xFF; | 
					
						
							|  |  |  | 	pcie->pf_type = 0xFF; | 
					
						
							|  |  |  | 	pcie->num_vfs = 0xFFFF; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-30 19:06:24 +05:30
										 |  |  | int be_cmd_config_qos(struct be_adapter *adapter, u32 max_rate, u16 link_speed, | 
					
						
							|  |  |  | 		      u8 domain) | 
					
						
							| 
									
										
										
										
											2014-03-27 10:46:18 +05:30
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2014-05-30 19:06:24 +05:30
										 |  |  | 	struct be_nic_res_desc nic_desc; | 
					
						
							|  |  |  | 	u32 bw_percent; | 
					
						
							|  |  |  | 	u16 version = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (BE3_chip(adapter)) | 
					
						
							|  |  |  | 		return be_cmd_set_qos(adapter, max_rate / 10, domain); | 
					
						
							| 
									
										
										
										
											2014-03-27 10:46:18 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-30 19:06:24 +05:30
										 |  |  | 	be_reset_nic_desc(&nic_desc); | 
					
						
							|  |  |  | 	nic_desc.pf_num = adapter->pf_number; | 
					
						
							|  |  |  | 	nic_desc.vf_num = domain; | 
					
						
							|  |  |  | 	if (lancer_chip(adapter)) { | 
					
						
							| 
									
										
										
										
											2014-03-27 10:46:18 +05:30
										 |  |  | 		nic_desc.hdr.desc_type = NIC_RESOURCE_DESC_TYPE_V0; | 
					
						
							|  |  |  | 		nic_desc.hdr.desc_len = RESOURCE_DESC_SIZE_V0; | 
					
						
							|  |  |  | 		nic_desc.flags = (1 << QUN_SHIFT) | (1 << IMM_SHIFT) | | 
					
						
							|  |  |  | 					(1 << NOSV_SHIFT); | 
					
						
							| 
									
										
										
										
											2014-05-30 19:06:24 +05:30
										 |  |  | 		nic_desc.bw_max = cpu_to_le32(max_rate / 10); | 
					
						
							| 
									
										
										
										
											2014-03-27 10:46:18 +05:30
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2014-05-30 19:06:24 +05:30
										 |  |  | 		version = 1; | 
					
						
							|  |  |  | 		nic_desc.hdr.desc_type = NIC_RESOURCE_DESC_TYPE_V1; | 
					
						
							|  |  |  | 		nic_desc.hdr.desc_len = RESOURCE_DESC_SIZE_V1; | 
					
						
							|  |  |  | 		nic_desc.flags = (1 << IMM_SHIFT) | (1 << NOSV_SHIFT); | 
					
						
							|  |  |  | 		bw_percent = max_rate ? (max_rate * 100) / link_speed : 100; | 
					
						
							|  |  |  | 		nic_desc.bw_max = cpu_to_le32(bw_percent); | 
					
						
							| 
									
										
										
										
											2014-03-27 10:46:18 +05:30
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-05-30 19:06:24 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  | 	return be_cmd_set_profile_config(adapter, &nic_desc, | 
					
						
							|  |  |  | 					 nic_desc.hdr.desc_len, | 
					
						
							| 
									
										
										
										
											2014-06-30 13:01:32 +05:30
										 |  |  | 					 1, version, domain); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int be_cmd_set_sriov_config(struct be_adapter *adapter, | 
					
						
							|  |  |  | 			    struct be_resources res, u16 num_vfs) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct { | 
					
						
							|  |  |  | 		struct be_pcie_res_desc pcie; | 
					
						
							|  |  |  | 		struct be_nic_res_desc nic_vft; | 
					
						
							|  |  |  | 	} __packed desc; | 
					
						
							|  |  |  | 	u16 vf_q_count; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (BEx_chip(adapter) || lancer_chip(adapter)) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* PF PCIE descriptor */ | 
					
						
							|  |  |  | 	be_reset_pcie_desc(&desc.pcie); | 
					
						
							|  |  |  | 	desc.pcie.hdr.desc_type = PCIE_RESOURCE_DESC_TYPE_V1; | 
					
						
							|  |  |  | 	desc.pcie.hdr.desc_len = RESOURCE_DESC_SIZE_V1; | 
					
						
							|  |  |  | 	desc.pcie.flags = (1 << IMM_SHIFT) | (1 << NOSV_SHIFT); | 
					
						
							|  |  |  | 	desc.pcie.pf_num = adapter->pdev->devfn; | 
					
						
							|  |  |  | 	desc.pcie.sriov_state = num_vfs ? 1 : 0; | 
					
						
							|  |  |  | 	desc.pcie.num_vfs = cpu_to_le16(num_vfs); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* VF NIC Template descriptor */ | 
					
						
							|  |  |  | 	be_reset_nic_desc(&desc.nic_vft); | 
					
						
							|  |  |  | 	desc.nic_vft.hdr.desc_type = NIC_RESOURCE_DESC_TYPE_V1; | 
					
						
							|  |  |  | 	desc.nic_vft.hdr.desc_len = RESOURCE_DESC_SIZE_V1; | 
					
						
							|  |  |  | 	desc.nic_vft.flags = (1 << VFT_SHIFT) | (1 << IMM_SHIFT) | | 
					
						
							|  |  |  | 				(1 << NOSV_SHIFT); | 
					
						
							|  |  |  | 	desc.nic_vft.pf_num = adapter->pdev->devfn; | 
					
						
							|  |  |  | 	desc.nic_vft.vf_num = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (num_vfs && res.vf_if_cap_flags & BE_IF_FLAGS_RSS) { | 
					
						
							|  |  |  | 		/* If number of VFs requested is 8 less than max supported,
 | 
					
						
							|  |  |  | 		 * assign 8 queue pairs to the PF and divide the remaining | 
					
						
							|  |  |  | 		 * resources evenly among the VFs | 
					
						
							|  |  |  | 		 */ | 
					
						
							|  |  |  | 		if (num_vfs < (be_max_vfs(adapter) - 8)) | 
					
						
							|  |  |  | 			vf_q_count = (res.max_rss_qs - 8) / num_vfs; | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 			vf_q_count = res.max_rss_qs / num_vfs; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		desc.nic_vft.rq_count = cpu_to_le16(vf_q_count); | 
					
						
							|  |  |  | 		desc.nic_vft.txq_count = cpu_to_le16(vf_q_count); | 
					
						
							|  |  |  | 		desc.nic_vft.rssq_count = cpu_to_le16(vf_q_count - 1); | 
					
						
							|  |  |  | 		desc.nic_vft.cq_count = cpu_to_le16(3 * vf_q_count); | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		desc.nic_vft.txq_count = cpu_to_le16(1); | 
					
						
							|  |  |  | 		desc.nic_vft.rq_count = cpu_to_le16(1); | 
					
						
							|  |  |  | 		desc.nic_vft.rssq_count = cpu_to_le16(0); | 
					
						
							|  |  |  | 		/* One CQ for each TX, RX and MCCQ */ | 
					
						
							|  |  |  | 		desc.nic_vft.cq_count = cpu_to_le16(3); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return be_cmd_set_profile_config(adapter, &desc, | 
					
						
							|  |  |  | 					 2 * RESOURCE_DESC_SIZE_V1, 2, 1, 0); | 
					
						
							| 
									
										
										
										
											2014-03-27 10:46:18 +05:30
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int be_cmd_manage_iface(struct be_adapter *adapter, u32 iface, u8 op) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							|  |  |  | 	struct be_cmd_req_manage_iface_filters *req; | 
					
						
							|  |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (iface == 0xFFFFFFFF) | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	spin_lock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wrb = wrb_from_mccq(adapter); | 
					
						
							|  |  |  | 	if (!wrb) { | 
					
						
							|  |  |  | 		status = -EBUSY; | 
					
						
							|  |  |  | 		goto err; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	req = embedded_payload(wrb); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							|  |  |  | 			       OPCODE_COMMON_MANAGE_IFACE_FILTERS, sizeof(*req), | 
					
						
							|  |  |  | 			       wrb, NULL); | 
					
						
							|  |  |  | 	req->op = op; | 
					
						
							|  |  |  | 	req->target_iface_id = cpu_to_le32(iface); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	status = be_mcc_notify_wait(adapter); | 
					
						
							|  |  |  | err: | 
					
						
							|  |  |  | 	spin_unlock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int be_cmd_set_vxlan_port(struct be_adapter *adapter, __be16 port) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct be_port_res_desc port_desc; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	memset(&port_desc, 0, sizeof(port_desc)); | 
					
						
							|  |  |  | 	port_desc.hdr.desc_type = PORT_RESOURCE_DESC_TYPE_V1; | 
					
						
							|  |  |  | 	port_desc.hdr.desc_len = RESOURCE_DESC_SIZE_V1; | 
					
						
							|  |  |  | 	port_desc.flags = (1 << IMM_SHIFT) | (1 << NOSV_SHIFT); | 
					
						
							|  |  |  | 	port_desc.link_num = adapter->hba_port_num; | 
					
						
							|  |  |  | 	if (port) { | 
					
						
							|  |  |  | 		port_desc.nv_flags = NV_TYPE_VXLAN | (1 << SOCVID_SHIFT) | | 
					
						
							|  |  |  | 					(1 << RCVID_SHIFT); | 
					
						
							|  |  |  | 		port_desc.nv_port = swab16(port); | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		port_desc.nv_flags = NV_TYPE_DISABLED; | 
					
						
							|  |  |  | 		port_desc.nv_port = 0; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return be_cmd_set_profile_config(adapter, &port_desc, | 
					
						
							| 
									
										
										
										
											2014-06-30 13:01:32 +05:30
										 |  |  | 					 RESOURCE_DESC_SIZE_V1, 1, 1, 0); | 
					
						
							| 
									
										
										
										
											2014-03-27 10:46:18 +05:30
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-03 20:30:11 +00:00
										 |  |  | int be_cmd_get_if_id(struct be_adapter *adapter, struct be_vf_cfg *vf_cfg, | 
					
						
							|  |  |  | 		     int vf_num) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							|  |  |  | 	struct be_cmd_req_get_iface_list *req; | 
					
						
							|  |  |  | 	struct be_cmd_resp_get_iface_list *resp; | 
					
						
							|  |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	spin_lock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wrb = wrb_from_mccq(adapter); | 
					
						
							|  |  |  | 	if (!wrb) { | 
					
						
							|  |  |  | 		status = -EBUSY; | 
					
						
							|  |  |  | 		goto err; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	req = embedded_payload(wrb); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							|  |  |  | 			       OPCODE_COMMON_GET_IFACE_LIST, sizeof(*resp), | 
					
						
							|  |  |  | 			       wrb, NULL); | 
					
						
							|  |  |  | 	req->hdr.domain = vf_num + 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	status = be_mcc_notify_wait(adapter); | 
					
						
							|  |  |  | 	if (!status) { | 
					
						
							|  |  |  | 		resp = (struct be_cmd_resp_get_iface_list *)req; | 
					
						
							|  |  |  | 		vf_cfg->if_handle = le32_to_cpu(resp->if_desc.if_id); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | err: | 
					
						
							|  |  |  | 	spin_unlock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-30 02:52:23 +00:00
										 |  |  | static int lancer_wait_idle(struct be_adapter *adapter) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | #define SLIPORT_IDLE_TIMEOUT 30
 | 
					
						
							|  |  |  | 	u32 reg_val; | 
					
						
							|  |  |  | 	int status = 0, i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (i = 0; i < SLIPORT_IDLE_TIMEOUT; i++) { | 
					
						
							|  |  |  | 		reg_val = ioread32(adapter->db + PHYSDEV_CONTROL_OFFSET); | 
					
						
							|  |  |  | 		if ((reg_val & PHYSDEV_CONTROL_INP_MASK) == 0) | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		ssleep(1); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (i == SLIPORT_IDLE_TIMEOUT) | 
					
						
							|  |  |  | 		status = -1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int lancer_physdev_ctrl(struct be_adapter *adapter, u32 mask) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int status = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	status = lancer_wait_idle(adapter); | 
					
						
							|  |  |  | 	if (status) | 
					
						
							|  |  |  | 		return status; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	iowrite32(mask, adapter->db + PHYSDEV_CONTROL_OFFSET); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Routine to check whether dump image is present or not */ | 
					
						
							|  |  |  | bool dump_present(struct be_adapter *adapter) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	u32 sliport_status = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	sliport_status = ioread32(adapter->db + SLIPORT_STATUS_OFFSET); | 
					
						
							|  |  |  | 	return !!(sliport_status & SLIPORT_STATUS_DIP_MASK); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int lancer_initiate_dump(struct be_adapter *adapter) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2014-08-01 17:47:32 +05:30
										 |  |  | 	struct device *dev = &adapter->pdev->dev; | 
					
						
							| 
									
										
										
										
											2013-05-30 02:52:23 +00:00
										 |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-01 17:47:32 +05:30
										 |  |  | 	if (dump_present(adapter)) { | 
					
						
							|  |  |  | 		dev_info(dev, "Previous dump not cleared, not forcing dump\n"); | 
					
						
							|  |  |  | 		return -EEXIST; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-30 02:52:23 +00:00
										 |  |  | 	/* give firmware reset and diagnostic dump */ | 
					
						
							|  |  |  | 	status = lancer_physdev_ctrl(adapter, PHYSDEV_CONTROL_FW_RESET_MASK | | 
					
						
							|  |  |  | 				     PHYSDEV_CONTROL_DD_MASK); | 
					
						
							|  |  |  | 	if (status < 0) { | 
					
						
							| 
									
										
										
										
											2014-08-01 17:47:32 +05:30
										 |  |  | 		dev_err(dev, "FW reset failed\n"); | 
					
						
							| 
									
										
										
										
											2013-05-30 02:52:23 +00:00
										 |  |  | 		return status; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	status = lancer_wait_idle(adapter); | 
					
						
							|  |  |  | 	if (status) | 
					
						
							|  |  |  | 		return status; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!dump_present(adapter)) { | 
					
						
							| 
									
										
										
										
											2014-08-01 17:47:32 +05:30
										 |  |  | 		dev_err(dev, "FW dump not generated\n"); | 
					
						
							|  |  |  | 		return -EIO; | 
					
						
							| 
									
										
										
										
											2013-05-30 02:52:23 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-01 17:47:32 +05:30
										 |  |  | int lancer_delete_dump(struct be_adapter *adapter) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	status = lancer_cmd_delete_object(adapter, LANCER_FW_DUMP_FILE); | 
					
						
							|  |  |  | 	return be_cmd_status(status); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-20 06:03:49 +00:00
										 |  |  | /* Uses sync mcc */ | 
					
						
							|  |  |  | int be_cmd_enable_vf(struct be_adapter *adapter, u8 domain) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							|  |  |  | 	struct be_cmd_enable_disable_vf *req; | 
					
						
							|  |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-01 15:59:59 +05:30
										 |  |  | 	if (BEx_chip(adapter)) | 
					
						
							| 
									
										
										
										
											2012-10-20 06:03:49 +00:00
										 |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	spin_lock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wrb = wrb_from_mccq(adapter); | 
					
						
							|  |  |  | 	if (!wrb) { | 
					
						
							|  |  |  | 		status = -EBUSY; | 
					
						
							|  |  |  | 		goto err; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	req = embedded_payload(wrb); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							|  |  |  | 			       OPCODE_COMMON_ENABLE_DISABLE_VF, sizeof(*req), | 
					
						
							|  |  |  | 			       wrb, NULL); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	req->hdr.domain = domain; | 
					
						
							|  |  |  | 	req->enable = 1; | 
					
						
							|  |  |  | 	status = be_mcc_notify_wait(adapter); | 
					
						
							|  |  |  | err: | 
					
						
							|  |  |  | 	spin_unlock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-14 02:42:07 +00:00
										 |  |  | int be_cmd_intr_set(struct be_adapter *adapter, bool intr_enable) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							|  |  |  | 	struct be_cmd_req_intr_set *req; | 
					
						
							|  |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (mutex_lock_interruptible(&adapter->mbox_lock)) | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wrb = wrb_from_mbox(adapter); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	req = embedded_payload(wrb); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							|  |  |  | 			       OPCODE_COMMON_SET_INTERRUPT_ENABLE, sizeof(*req), | 
					
						
							|  |  |  | 			       wrb, NULL); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	req->intr_enabled = intr_enable; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	status = be_mbox_notify_wait(adapter); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	mutex_unlock(&adapter->mbox_lock); | 
					
						
							|  |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-15 13:23:33 +05:30
										 |  |  | /* Uses MBOX */ | 
					
						
							|  |  |  | int be_cmd_get_active_profile(struct be_adapter *adapter, u16 *profile_id) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct be_cmd_req_get_active_profile *req; | 
					
						
							|  |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							|  |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (mutex_lock_interruptible(&adapter->mbox_lock)) | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wrb = wrb_from_mbox(adapter); | 
					
						
							|  |  |  | 	if (!wrb) { | 
					
						
							|  |  |  | 		status = -EBUSY; | 
					
						
							|  |  |  | 		goto err; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	req = embedded_payload(wrb); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							|  |  |  | 			       OPCODE_COMMON_GET_ACTIVE_PROFILE, sizeof(*req), | 
					
						
							|  |  |  | 			       wrb, NULL); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	status = be_mbox_notify_wait(adapter); | 
					
						
							|  |  |  | 	if (!status) { | 
					
						
							|  |  |  | 		struct be_cmd_resp_get_active_profile *resp = | 
					
						
							|  |  |  | 							embedded_payload(wrb); | 
					
						
							| 
									
										
										
										
											2014-09-19 15:46:56 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-15 13:23:33 +05:30
										 |  |  | 		*profile_id = le16_to_cpu(resp->active_profile_id); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | err: | 
					
						
							|  |  |  | 	mutex_unlock(&adapter->mbox_lock); | 
					
						
							|  |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-11 18:53:04 +05:30
										 |  |  | int be_cmd_set_logical_link_config(struct be_adapter *adapter, | 
					
						
							|  |  |  | 				   int link_state, u8 domain) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							|  |  |  | 	struct be_cmd_req_set_ll_link *req; | 
					
						
							|  |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (BEx_chip(adapter) || lancer_chip(adapter)) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	spin_lock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wrb = wrb_from_mccq(adapter); | 
					
						
							|  |  |  | 	if (!wrb) { | 
					
						
							|  |  |  | 		status = -EBUSY; | 
					
						
							|  |  |  | 		goto err; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	req = embedded_payload(wrb); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							|  |  |  | 			       OPCODE_COMMON_SET_LOGICAL_LINK_CONFIG, | 
					
						
							|  |  |  | 			       sizeof(*req), wrb, NULL); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	req->hdr.version = 1; | 
					
						
							|  |  |  | 	req->hdr.domain = domain; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (link_state == IFLA_VF_LINK_STATE_ENABLE) | 
					
						
							|  |  |  | 		req->link_config |= 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (link_state == IFLA_VF_LINK_STATE_AUTO) | 
					
						
							|  |  |  | 		req->link_config |= 1 << PLINK_TRACK_SHIFT; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	status = be_mcc_notify_wait(adapter); | 
					
						
							|  |  |  | err: | 
					
						
							|  |  |  | 	spin_unlock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-26 14:27:12 +00:00
										 |  |  | int be_roce_mcc_cmd(void *netdev_handle, void *wrb_payload, | 
					
						
							| 
									
										
										
										
											2014-05-09 13:29:14 +05:30
										 |  |  | 		    int wrb_payload_size, u16 *cmd_status, u16 *ext_status) | 
					
						
							| 
									
										
										
										
											2012-03-26 14:27:12 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct be_adapter *adapter = netdev_priv(netdev_handle); | 
					
						
							|  |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							| 
									
										
										
										
											2014-09-19 15:47:00 +05:30
										 |  |  | 	struct be_cmd_req_hdr *hdr = (struct be_cmd_req_hdr *)wrb_payload; | 
					
						
							| 
									
										
										
										
											2012-03-26 14:27:12 +00:00
										 |  |  | 	struct be_cmd_req_hdr *req; | 
					
						
							|  |  |  | 	struct be_cmd_resp_hdr *resp; | 
					
						
							|  |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	spin_lock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wrb = wrb_from_mccq(adapter); | 
					
						
							|  |  |  | 	if (!wrb) { | 
					
						
							|  |  |  | 		status = -EBUSY; | 
					
						
							|  |  |  | 		goto err; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	req = embedded_payload(wrb); | 
					
						
							|  |  |  | 	resp = embedded_payload(wrb); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	be_wrb_cmd_hdr_prepare(req, hdr->subsystem, | 
					
						
							|  |  |  | 			       hdr->opcode, wrb_payload_size, wrb, NULL); | 
					
						
							|  |  |  | 	memcpy(req, wrb_payload, wrb_payload_size); | 
					
						
							|  |  |  | 	be_dws_cpu_to_le(req, wrb_payload_size); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	status = be_mcc_notify_wait(adapter); | 
					
						
							|  |  |  | 	if (cmd_status) | 
					
						
							|  |  |  | 		*cmd_status = (status & 0xffff); | 
					
						
							|  |  |  | 	if (ext_status) | 
					
						
							|  |  |  | 		*ext_status = 0; | 
					
						
							|  |  |  | 	memcpy(wrb_payload, resp, sizeof(*resp) + resp->response_length); | 
					
						
							|  |  |  | 	be_dws_le_to_cpu(wrb_payload, sizeof(*resp) + resp->response_length); | 
					
						
							|  |  |  | err: | 
					
						
							|  |  |  | 	spin_unlock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | EXPORT_SYMBOL(be_roce_mcc_cmd); |