| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright (C) 2005 - 2009 ServerEngines | 
					
						
							|  |  |  |  * 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: | 
					
						
							|  |  |  |  * linux-drivers@serverengines.com | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * ServerEngines | 
					
						
							|  |  |  |  * 209 N. Fair Oaks Ave | 
					
						
							|  |  |  |  * Sunnyvale, CA 94085 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "be.h"
 | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | #include "be_cmds.h"
 | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07: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; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	val |= mccq->id & DB_MCCQ_RING_ID_MASK; | 
					
						
							|  |  |  | 	val |= 1 << DB_MCCQ_NUM_POSTED_SHIFT; | 
					
						
							| 
									
										
										
										
											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
										 |  |  | { | 
					
						
							|  |  |  | 	if (compl->flags != 0) { | 
					
						
							|  |  |  | 		compl->flags = le32_to_cpu(compl->flags); | 
					
						
							|  |  |  | 		BUG_ON((compl->flags & CQE_FLAGS_VALID_MASK) == 0); | 
					
						
							|  |  |  | 		return true; | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		return false; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* 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; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | static int be_mcc_compl_process(struct be_adapter *adapter, | 
					
						
							| 
									
										
										
										
											2009-07-27 22:53:10 +00:00
										 |  |  | 	struct be_mcc_compl *compl) | 
					
						
							| 
									
										
										
										
											2009-06-18 00:02:59 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	u16 compl_status, extd_status; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Just swap the status to host endian; mcc tag is opaquely copied
 | 
					
						
							|  |  |  | 	 * from mcc_wrb */ | 
					
						
							|  |  |  | 	be_dws_le_to_cpu(compl, 4); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	compl_status = (compl->status >> CQE_STATUS_COMPL_SHIFT) & | 
					
						
							|  |  |  | 				CQE_STATUS_COMPL_MASK; | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	if (compl_status == MCC_STATUS_SUCCESS) { | 
					
						
							|  |  |  | 		if (compl->tag0 == OPCODE_ETH_GET_STATISTICS) { | 
					
						
							|  |  |  | 			struct be_cmd_resp_get_stats *resp = | 
					
						
							|  |  |  | 						adapter->stats.cmd.va; | 
					
						
							|  |  |  | 			be_dws_le_to_cpu(&resp->hw_stats, | 
					
						
							|  |  |  | 						sizeof(resp->hw_stats)); | 
					
						
							|  |  |  | 			netdev_stats_update(adapter); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} else if (compl_status != MCC_STATUS_NOT_SUPPORTED) { | 
					
						
							| 
									
										
										
										
											2009-06-18 00:02:59 +00:00
										 |  |  | 		extd_status = (compl->status >> CQE_STATUS_EXTD_SHIFT) & | 
					
						
							|  |  |  | 				CQE_STATUS_EXTD_MASK; | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:56 +00:00
										 |  |  | 		dev_warn(&adapter->pdev->dev, | 
					
						
							|  |  |  | 			"Error in cmd completion: status(compl/extd)=%d/%d\n", | 
					
						
							| 
									
										
										
										
											2009-06-18 00:02:59 +00:00
										 |  |  | 			compl_status, extd_status); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	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, | 
					
						
							| 
									
										
										
										
											2009-06-18 00:10:27 +00:00
										 |  |  | 		struct be_async_event_link_state *evt) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | 	be_link_status_update(adapter, | 
					
						
							|  |  |  | 		evt->port_link_status == ASYNC_EVENT_LINK_UP); | 
					
						
							| 
									
										
										
										
											2009-06-18 00:10:27 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static inline bool is_link_state_evt(u32 trailer) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return (((trailer >> ASYNC_TRAILER_EVENT_CODE_SHIFT) & | 
					
						
							|  |  |  | 		ASYNC_TRAILER_EVENT_CODE_MASK) == | 
					
						
							|  |  |  | 				ASYNC_EVENT_CODE_LINK_STATE); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2009-06-18 00:02:59 +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; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07: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; | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	int num = 0, status = 0; | 
					
						
							| 
									
										
										
										
											2009-06-18 00:02:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | 	spin_lock_bh(&adapter->mcc_cq_lock); | 
					
						
							|  |  |  | 	while ((compl = be_mcc_compl_get(adapter))) { | 
					
						
							| 
									
										
										
										
											2009-06-18 00:10:27 +00:00
										 |  |  | 		if (compl->flags & CQE_FLAGS_ASYNC_MASK) { | 
					
						
							|  |  |  | 			/* Interpret flags as an async trailer */ | 
					
						
							|  |  |  | 			BUG_ON(!is_link_state_evt(compl->flags)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			/* Interpret compl as a async link evt */ | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | 			be_async_link_state_process(adapter, | 
					
						
							| 
									
										
										
										
											2009-06-18 00:10:27 +00:00
										 |  |  | 				(struct be_async_event_link_state *) compl); | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 		} else if (compl->flags & CQE_FLAGS_COMPLETED_MASK) { | 
					
						
							|  |  |  | 				status = be_mcc_compl_process(adapter, compl); | 
					
						
							|  |  |  | 				atomic_dec(&adapter->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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-18 00:02:59 +00:00
										 |  |  | 	if (num) | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | 		be_cq_notify(adapter, adapter->mcc_obj.cq.id, true, num); | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | 	spin_unlock_bh(&adapter->mcc_cq_lock); | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07: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 */
 | 
					
						
							|  |  |  | 	int i, status; | 
					
						
							| 
									
										
										
										
											2009-06-18 00:05:54 +00:00
										 |  |  | 	for (i = 0; i < mcc_timeout; i++) { | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 		status = be_process_mcc(adapter); | 
					
						
							|  |  |  | 		if (status) | 
					
						
							|  |  |  | 			return status; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | 		if (atomic_read(&adapter->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) { | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:56 +00:00
										 |  |  | 		dev_err(&adapter->pdev->dev, "mccq poll timed out\n"); | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											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
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | 	be_mcc_notify(adapter); | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	return be_mcc_wait_compl(adapter); | 
					
						
							| 
									
										
										
										
											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
										 |  |  | { | 
					
						
							|  |  |  | 	int cnt = 0, wait = 5; | 
					
						
							|  |  |  | 	u32 ready; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	do { | 
					
						
							|  |  |  | 		ready = ioread32(db) & MPU_MAILBOX_DB_RDY_MASK; | 
					
						
							|  |  |  | 		if (ready) | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-04 03:12:16 +00:00
										 |  |  | 		if (cnt > 4000000) { | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:56 +00:00
										 |  |  | 			dev_err(&adapter->pdev->dev, "mbox poll timed out\n"); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 			return -1; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (cnt > 50) | 
					
						
							|  |  |  | 			wait = 200; | 
					
						
							|  |  |  | 		cnt += wait; | 
					
						
							|  |  |  | 		udelay(wait); | 
					
						
							|  |  |  | 	} 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
										 |  |  | 
 | 
					
						
							|  |  |  | 	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
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | static int be_POST_stage_get(struct be_adapter *adapter, u16 *stage) | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | 	u32 sem = ioread32(adapter->csr + MPU_EP_SEMAPHORE_OFFSET); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	*stage = sem & EP_SEMAPHORE_POST_STAGE_MASK; | 
					
						
							|  |  |  | 	if ((sem >> EP_SEMAPHORE_POST_ERR_SHIFT) & EP_SEMAPHORE_POST_ERR_MASK) | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | int be_cmd_POST(struct be_adapter *adapter) | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	u16 stage, error; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | 	error = be_POST_stage_get(adapter, &stage); | 
					
						
							| 
									
										
										
										
											2009-07-27 22:53:30 +00:00
										 |  |  | 	if (error || stage != POST_STAGE_ARMFW_RDY) { | 
					
						
							|  |  |  | 		dev_err(&adapter->pdev->dev, "POST failed.\n"); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static inline void *embedded_payload(struct be_mcc_wrb *wrb) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return wrb->payload.embedded_payload; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static inline struct be_sge *nonembedded_sgl(struct be_mcc_wrb *wrb) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return &wrb->payload.sgl[0]; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Don't touch the hdr after it's prepared */ | 
					
						
							|  |  |  | static void be_wrb_hdr_prepare(struct be_mcc_wrb *wrb, int payload_len, | 
					
						
							|  |  |  | 				bool embedded, u8 sge_cnt) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (embedded) | 
					
						
							|  |  |  | 		wrb->embedded |= MCC_WRB_EMBEDDED_MASK; | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		wrb->embedded |= (sge_cnt & MCC_WRB_SGE_CNT_MASK) << | 
					
						
							|  |  |  | 				MCC_WRB_SGE_CNT_SHIFT; | 
					
						
							|  |  |  | 	wrb->payload_length = payload_len; | 
					
						
							|  |  |  | 	be_dws_cpu_to_le(wrb, 20); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Don't touch the hdr after it's prepared */ | 
					
						
							|  |  |  | static void be_cmd_hdr_prepare(struct be_cmd_req_hdr *req_hdr, | 
					
						
							|  |  |  | 				u8 subsystem, u8 opcode, int cmd_len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	req_hdr->opcode = opcode; | 
					
						
							|  |  |  | 	req_hdr->subsystem = subsystem; | 
					
						
							|  |  |  | 	req_hdr->request_length = cpu_to_le32(cmd_len - sizeof(*req_hdr)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void be_cmd_page_addrs_prepare(struct phys_addr *pages, u32 max_pages, | 
					
						
							|  |  |  | 			struct be_dma_mem *mem) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	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; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Converts interrupt delay in microseconds to multiplier value */ | 
					
						
							|  |  |  | static u32 eq_delay_to_mult(u32 usec_delay) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | #define MAX_INTR_RATE			651042
 | 
					
						
							|  |  |  | 	const u32 round = 10; | 
					
						
							|  |  |  | 	u32 multiplier; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (usec_delay == 0) | 
					
						
							|  |  |  | 		multiplier = 0; | 
					
						
							|  |  |  | 	else { | 
					
						
							|  |  |  | 		u32 interrupt_rate = 1000000 / usec_delay; | 
					
						
							|  |  |  | 		/* Max delay, corresponding to the lowest interrupt rate */ | 
					
						
							|  |  |  | 		if (interrupt_rate == 0) | 
					
						
							|  |  |  | 			multiplier = 1023; | 
					
						
							|  |  |  | 		else { | 
					
						
							|  |  |  | 			multiplier = (MAX_INTR_RATE - interrupt_rate) * round; | 
					
						
							|  |  |  | 			multiplier /= interrupt_rate; | 
					
						
							|  |  |  | 			/* Round the multiplier to the closest value.*/ | 
					
						
							|  |  |  | 			multiplier = (multiplier + round/2) / round; | 
					
						
							|  |  |  | 			multiplier = min(multiplier, (u32)1023); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return multiplier; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BUG_ON(atomic_read(&mccq->used) >= mccq->len); | 
					
						
							|  |  |  | 	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; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | int be_cmd_eq_create(struct be_adapter *adapter, | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 		struct be_queue_info *eq, int eq_delay) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							|  |  |  | 	struct be_cmd_req_eq_create *req; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	struct be_dma_mem *q_mem = &eq->dma_mem; | 
					
						
							|  |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | 	spin_lock(&adapter->mbox_lock); | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							|  |  |  | 	be_wrb_hdr_prepare(wrb, sizeof(*req), true, 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	be_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							|  |  |  | 		OPCODE_COMMON_EQ_CREATE, sizeof(*req)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	req->num_pages =  cpu_to_le16(PAGES_4K_SPANNED(q_mem->va, q_mem->size)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	AMAP_SET_BITS(struct amap_eq_context, func, req->context, | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:23 +00:00
										 |  |  | 			be_pci_func(adapter)); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	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, | 
					
						
							|  |  |  | 			__ilog2_u32(eq->len/256)); | 
					
						
							|  |  |  | 	AMAP_SET_BITS(struct amap_eq_context, delaymult, req->context, | 
					
						
							|  |  |  | 			eq_delay_to_mult(eq_delay)); | 
					
						
							|  |  |  | 	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); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 		eq->id = le16_to_cpu(resp->eq_id); | 
					
						
							|  |  |  | 		eq->created = true; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | 	spin_unlock(&adapter->mbox_lock); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | /* Uses mbox */ | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | int be_cmd_mac_addr_query(struct be_adapter *adapter, u8 *mac_addr, | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 			u8 type, bool permanent, u32 if_handle) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | 	spin_lock(&adapter->mbox_lock); | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							|  |  |  | 	be_wrb_hdr_prepare(wrb, sizeof(*req), true, 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	be_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							|  |  |  | 		OPCODE_COMMON_NTWK_MAC_QUERY, sizeof(*req)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	req->type = type; | 
					
						
							|  |  |  | 	if (permanent) { | 
					
						
							|  |  |  | 		req->permanent = 1; | 
					
						
							|  |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 		req->if_id = cpu_to_le16((u16) if_handle); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 		req->permanent = 0; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	status = be_mbox_notify_wait(adapter); | 
					
						
							|  |  |  | 	if (!status) { | 
					
						
							|  |  |  | 		struct be_cmd_resp_mac_query *resp = embedded_payload(wrb); | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | 	spin_unlock(&adapter->mbox_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, | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 		u32 if_id, u32 *pmac_id) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											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); | 
					
						
							|  |  |  | 	req = embedded_payload(wrb); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	be_wrb_hdr_prepare(wrb, sizeof(*req), true, 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	be_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							|  |  |  | 		OPCODE_COMMON_NTWK_PMAC_ADD, sizeof(*req)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	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); | 
					
						
							|  |  |  | 		*pmac_id = le32_to_cpu(resp->pmac_id); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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 synchronous MCCQ */ | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | int be_cmd_pmac_del(struct be_adapter *adapter, u32 if_id, 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_pmac_del *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); | 
					
						
							|  |  |  | 	req = embedded_payload(wrb); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	be_wrb_hdr_prepare(wrb, sizeof(*req), true, 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	be_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							|  |  |  | 		OPCODE_COMMON_NTWK_PMAC_DEL, sizeof(*req)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	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); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	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 */ | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | int be_cmd_cq_create(struct be_adapter *adapter, | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 		struct be_queue_info *cq, struct be_queue_info *eq, | 
					
						
							|  |  |  | 		bool sol_evts, bool no_delay, int coalesce_wm) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | 	spin_lock(&adapter->mbox_lock); | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							|  |  |  | 	be_wrb_hdr_prepare(wrb, sizeof(*req), true, 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	be_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							|  |  |  | 		OPCODE_COMMON_CQ_CREATE, sizeof(*req)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	req->num_pages =  cpu_to_le16(PAGES_4K_SPANNED(q_mem->va, q_mem->size)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	AMAP_SET_BITS(struct amap_cq_context, coalescwm, ctxt, coalesce_wm); | 
					
						
							|  |  |  | 	AMAP_SET_BITS(struct amap_cq_context, nodelay, ctxt, no_delay); | 
					
						
							|  |  |  | 	AMAP_SET_BITS(struct amap_cq_context, count, ctxt, | 
					
						
							|  |  |  | 			__ilog2_u32(cq->len/256)); | 
					
						
							|  |  |  | 	AMAP_SET_BITS(struct amap_cq_context, valid, ctxt, 1); | 
					
						
							|  |  |  | 	AMAP_SET_BITS(struct amap_cq_context, solevent, ctxt, sol_evts); | 
					
						
							|  |  |  | 	AMAP_SET_BITS(struct amap_cq_context, eventable, ctxt, 1); | 
					
						
							|  |  |  | 	AMAP_SET_BITS(struct amap_cq_context, eqid, ctxt, eq->id); | 
					
						
							| 
									
										
										
										
											2009-06-18 00:02:59 +00:00
										 |  |  | 	AMAP_SET_BITS(struct amap_cq_context, armed, ctxt, 1); | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:23 +00:00
										 |  |  | 	AMAP_SET_BITS(struct amap_cq_context, func, ctxt, be_pci_func(adapter)); | 
					
						
							| 
									
										
										
										
											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); | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | 	spin_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 */ | 
					
						
							|  |  |  | 	if (len_encoded == 16) | 
					
						
							|  |  |  | 		len_encoded = 0; | 
					
						
							|  |  |  | 	return len_encoded; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | int be_cmd_mccq_create(struct be_adapter *adapter, | 
					
						
							| 
									
										
										
										
											2009-06-18 00:02:59 +00:00
										 |  |  | 			struct be_queue_info *mccq, | 
					
						
							|  |  |  | 			struct be_queue_info *cq) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							|  |  |  | 	struct be_cmd_req_mcc_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; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | 	spin_lock(&adapter->mbox_lock); | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							|  |  |  | 	be_wrb_hdr_prepare(wrb, sizeof(*req), true, 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	be_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							|  |  |  | 			OPCODE_COMMON_MCC_CREATE, sizeof(*req)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	req->num_pages = PAGES_4K_SPANNED(q_mem->va, q_mem->size); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:23 +00:00
										 |  |  | 	AMAP_SET_BITS(struct amap_mcc_context, fid, ctxt, be_pci_func(adapter)); | 
					
						
							| 
									
										
										
										
											2009-06-18 00:02:59 +00:00
										 |  |  | 	AMAP_SET_BITS(struct amap_mcc_context, valid, ctxt, 1); | 
					
						
							|  |  |  | 	AMAP_SET_BITS(struct amap_mcc_context, ring_size, ctxt, | 
					
						
							|  |  |  | 		be_encoded_q_len(mccq->len)); | 
					
						
							|  |  |  | 	AMAP_SET_BITS(struct amap_mcc_context, 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); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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); | 
					
						
							|  |  |  | 		mccq->id = le16_to_cpu(resp->id); | 
					
						
							|  |  |  | 		mccq->created = true; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | 	spin_unlock(&adapter->mbox_lock); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | int be_cmd_txq_create(struct be_adapter *adapter, | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 			struct be_queue_info *txq, | 
					
						
							|  |  |  | 			struct be_queue_info *cq) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							|  |  |  | 	struct be_cmd_req_eth_tx_create *req; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	struct be_dma_mem *q_mem = &txq->dma_mem; | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	void *ctxt; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | 	spin_lock(&adapter->mbox_lock); | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							|  |  |  | 	be_wrb_hdr_prepare(wrb, sizeof(*req), true, 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	be_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_ETH, OPCODE_ETH_TX_CREATE, | 
					
						
							|  |  |  | 		sizeof(*req)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	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; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	AMAP_SET_BITS(struct amap_tx_context, tx_ring_size, ctxt, | 
					
						
							|  |  |  | 		be_encoded_q_len(txq->len)); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	AMAP_SET_BITS(struct amap_tx_context, pci_func_id, ctxt, | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:23 +00:00
										 |  |  | 			be_pci_func(adapter)); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	AMAP_SET_BITS(struct amap_tx_context, ctx_valid, ctxt, 1); | 
					
						
							|  |  |  | 	AMAP_SET_BITS(struct amap_tx_context, cq_id_send, 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); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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_eth_tx_create *resp = embedded_payload(wrb); | 
					
						
							|  |  |  | 		txq->id = le16_to_cpu(resp->cid); | 
					
						
							|  |  |  | 		txq->created = true; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | 	spin_unlock(&adapter->mbox_lock); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | /* Uses mbox */ | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | int be_cmd_rxq_create(struct be_adapter *adapter, | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 		struct be_queue_info *rxq, u16 cq_id, u16 frag_size, | 
					
						
							|  |  |  | 		u16 max_frame_size, u32 if_id, u32 rss) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | 	spin_lock(&adapter->mbox_lock); | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							|  |  |  | 	be_wrb_hdr_prepare(wrb, sizeof(*req), true, 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	be_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_ETH, OPCODE_ETH_RX_CREATE, | 
					
						
							|  |  |  | 		sizeof(*req)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	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); | 
					
						
							|  |  |  | 	req->max_frame_size = cpu_to_le16(max_frame_size); | 
					
						
							|  |  |  | 	req->rss_queue = cpu_to_le32(rss); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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_eth_rx_create *resp = embedded_payload(wrb); | 
					
						
							|  |  |  | 		rxq->id = le16_to_cpu(resp->id); | 
					
						
							|  |  |  | 		rxq->created = true; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | 	spin_unlock(&adapter->mbox_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, | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 		int queue_type) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | 	spin_lock(&adapter->mbox_lock); | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 	be_wrb_hdr_prepare(wrb, sizeof(*req), true, 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	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
										 |  |  | 	} | 
					
						
							|  |  |  | 	be_cmd_hdr_prepare(&req->hdr, subsys, opcode, sizeof(*req)); | 
					
						
							|  |  |  | 	req->id = cpu_to_le16(q->id); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	status = be_mbox_notify_wait(adapter); | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | 	spin_unlock(&adapter->mbox_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
 | 
					
						
							|  |  |  |  * Uses mbox | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | int be_cmd_if_create(struct be_adapter *adapter, u32 flags, u8 *mac, | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 		bool pmac_invalid, u32 *if_handle, u32 *pmac_id) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							|  |  |  | 	struct be_cmd_req_if_create *req; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | 	spin_lock(&adapter->mbox_lock); | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							|  |  |  | 	be_wrb_hdr_prepare(wrb, sizeof(*req), true, 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	be_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							|  |  |  | 		OPCODE_COMMON_NTWK_INTERFACE_CREATE, sizeof(*req)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	req->capability_flags = cpu_to_le32(flags); | 
					
						
							|  |  |  | 	req->enable_flags = cpu_to_le32(flags); | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	req->pmac_invalid = pmac_invalid; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	if (!pmac_invalid) | 
					
						
							|  |  |  | 		memcpy(req->mac_addr, mac, ETH_ALEN); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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_if_create *resp = embedded_payload(wrb); | 
					
						
							|  |  |  | 		*if_handle = le32_to_cpu(resp->interface_id); | 
					
						
							|  |  |  | 		if (!pmac_invalid) | 
					
						
							|  |  |  | 			*pmac_id = le32_to_cpu(resp->pmac_id); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | 	spin_unlock(&adapter->mbox_lock); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | /* Uses mbox */ | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | int be_cmd_if_destroy(struct be_adapter *adapter, u32 interface_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_if_destroy *req; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | 	spin_lock(&adapter->mbox_lock); | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							|  |  |  | 	be_wrb_hdr_prepare(wrb, sizeof(*req), true, 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	be_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							|  |  |  | 		OPCODE_COMMON_NTWK_INTERFACE_DESTROY, sizeof(*req)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	req->interface_id = cpu_to_le32(interface_id); | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	status = be_mbox_notify_wait(adapter); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | 	spin_unlock(&adapter->mbox_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; | 
					
						
							|  |  |  | 	struct be_cmd_req_get_stats *req; | 
					
						
							|  |  |  | 	struct be_sge *sge; | 
					
						
							| 
									
										
										
										
											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); | 
					
						
							|  |  |  | 	req = nonemb_cmd->va; | 
					
						
							|  |  |  | 	sge = nonembedded_sgl(wrb); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	be_wrb_hdr_prepare(wrb, sizeof(*req), false, 1); | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	wrb->tag0 = OPCODE_ETH_GET_STATISTICS; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	be_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_ETH, | 
					
						
							|  |  |  | 		OPCODE_ETH_GET_STATISTICS, sizeof(*req)); | 
					
						
							|  |  |  | 	sge->pa_hi = cpu_to_le32(upper_32_bits(nonemb_cmd->dma)); | 
					
						
							|  |  |  | 	sge->pa_lo = cpu_to_le32(nonemb_cmd->dma & 0xFFFFFFFF); | 
					
						
							|  |  |  | 	sge->len = cpu_to_le32(nonemb_cmd->size); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	be_mcc_notify(adapter); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	spin_unlock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | /* Uses synchronous mcc */ | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | int be_cmd_link_status_query(struct be_adapter *adapter, | 
					
						
							| 
									
										
										
										
											2009-06-18 00:10:27 +00:00
										 |  |  | 			bool *link_up) | 
					
						
							| 
									
										
										
										
											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); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wrb = wrb_from_mccq(adapter); | 
					
						
							|  |  |  | 	req = embedded_payload(wrb); | 
					
						
							| 
									
										
										
										
											2009-06-18 00:10:27 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	*link_up = false; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	be_wrb_hdr_prepare(wrb, sizeof(*req), true, 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	be_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							|  |  |  | 		OPCODE_COMMON_NTWK_LINK_STATUS_QUERY, sizeof(*req)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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); | 
					
						
							| 
									
										
										
										
											2009-06-18 00:10:27 +00:00
										 |  |  | 		if (resp->mac_speed != PHY_LINK_SPEED_ZERO) | 
					
						
							|  |  |  | 			*link_up = true; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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 */ | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | int be_cmd_get_fw_ver(struct be_adapter *adapter, char *fw_ver) | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | 	spin_lock(&adapter->mbox_lock); | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							|  |  |  | 	be_wrb_hdr_prepare(wrb, sizeof(*req), true, 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	be_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							|  |  |  | 		OPCODE_COMMON_GET_FW_VERSION, sizeof(*req)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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_get_fw_version *resp = embedded_payload(wrb); | 
					
						
							|  |  |  | 		strncpy(fw_ver, resp->firmware_version_string, FW_VER_LEN); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | 	spin_unlock(&adapter->mbox_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 | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | int be_cmd_modify_eqd(struct be_adapter *adapter, u32 eq_id, u32 eqd) | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							| 
									
										
										
										
											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); | 
					
						
							|  |  |  | 	req = embedded_payload(wrb); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	be_wrb_hdr_prepare(wrb, sizeof(*req), true, 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	be_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							|  |  |  | 		OPCODE_COMMON_MODIFY_EQ_DELAY, sizeof(*req)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	req->num_eq = cpu_to_le32(1); | 
					
						
							|  |  |  | 	req->delay[0].eq_id = cpu_to_le32(eq_id); | 
					
						
							|  |  |  | 	req->delay[0].phase = 0; | 
					
						
							|  |  |  | 	req->delay[0].delay_multiplier = cpu_to_le32(eqd); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	be_mcc_notify(adapter); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	spin_unlock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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, | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 			u32 num, bool untagged, bool promiscuous) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											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); | 
					
						
							|  |  |  | 	req = embedded_payload(wrb); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	be_wrb_hdr_prepare(wrb, sizeof(*req), true, 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	be_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							|  |  |  | 		OPCODE_COMMON_NTWK_VLAN_CONFIG, sizeof(*req)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	req->interface_id = if_id; | 
					
						
							|  |  |  | 	req->promiscuous = promiscuous; | 
					
						
							|  |  |  | 	req->untagged = untagged; | 
					
						
							|  |  |  | 	req->num_vlan = num; | 
					
						
							|  |  |  | 	if (!promiscuous) { | 
					
						
							|  |  |  | 		memcpy(req->normal_vlan, vtag_array, | 
					
						
							|  |  |  | 			req->num_vlan * sizeof(vtag_array[0])); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	status = be_mcc_notify_wait(adapter); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											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 MCC for this command as it may be called in BH context
 | 
					
						
							|  |  |  |  * Uses synchronous mcc | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | int be_cmd_promiscuous_config(struct be_adapter *adapter, u8 port_num, bool en) | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-06-18 00:05:54 +00:00
										 |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							|  |  |  | 	struct be_cmd_req_promiscuous_config *req; | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07: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-06-18 00:05:54 +00:00
										 |  |  | 	req = embedded_payload(wrb); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	be_wrb_hdr_prepare(wrb, sizeof(*req), true, 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	be_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_ETH, | 
					
						
							|  |  |  | 		OPCODE_ETH_PROMISCUOUS, sizeof(*req)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (port_num) | 
					
						
							|  |  |  | 		req->port1_promiscuous = en; | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		req->port0_promiscuous = en; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	status = be_mcc_notify_wait(adapter); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | 	spin_unlock_bh(&adapter->mcc_lock); | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	return status; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-18 00:05:54 +00:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  |  * Uses MCC for this command as it may be called in BH context | 
					
						
							| 
									
										
										
										
											2009-06-18 00:05:54 +00:00
										 |  |  |  * (mc == NULL) => multicast promiscous | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | int be_cmd_multicast_set(struct be_adapter *adapter, u32 if_id, | 
					
						
							| 
									
										
										
										
											2009-06-18 00:09:25 +00:00
										 |  |  | 		struct dev_mc_list *mc_list, u32 mc_count) | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-06-18 00:05:54 +00:00
										 |  |  | #define BE_MAX_MC		32 /* set mcast promisc if > 32 */
 | 
					
						
							|  |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							|  |  |  | 	struct be_cmd_req_mcast_mac_config *req; | 
					
						
							| 
									
										
										
										
											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-06-18 00:05:54 +00:00
										 |  |  | 	req = embedded_payload(wrb); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	be_wrb_hdr_prepare(wrb, sizeof(*req), true, 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	be_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							|  |  |  | 		OPCODE_COMMON_NTWK_MULTICAST_SET, sizeof(*req)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	req->interface_id = if_id; | 
					
						
							| 
									
										
										
										
											2009-06-18 00:09:25 +00:00
										 |  |  | 	if (mc_list && mc_count <= BE_MAX_MC) { | 
					
						
							|  |  |  | 		int i; | 
					
						
							|  |  |  | 		struct dev_mc_list *mc; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		req->num_mac = cpu_to_le16(mc_count); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		for (mc = mc_list, i = 0; mc; mc = mc->next, i++) | 
					
						
							|  |  |  | 			memcpy(req->mac[i].byte, mc->dmi_addr, ETH_ALEN); | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		req->promiscuous = 1; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | 	be_mcc_notify_wait(adapter); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | 	spin_unlock_bh(&adapter->mcc_lock); | 
					
						
							| 
									
										
										
										
											2009-06-18 00:05:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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); | 
					
						
							|  |  |  | 	req = embedded_payload(wrb); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	be_wrb_hdr_prepare(wrb, sizeof(*req), true, 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	be_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							|  |  |  | 		OPCODE_COMMON_SET_FLOW_CONTROL, sizeof(*req)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	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-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 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; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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); | 
					
						
							|  |  |  | 	req = embedded_payload(wrb); | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	be_wrb_hdr_prepare(wrb, sizeof(*req), true, 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	be_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							|  |  |  | 		OPCODE_COMMON_GET_FLOW_CONTROL, sizeof(*req)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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); | 
					
						
							|  |  |  | 		*tx_fc = le16_to_cpu(resp->tx_flow_control); | 
					
						
							|  |  |  | 		*rx_fc = le16_to_cpu(resp->rx_flow_control); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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 */ | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | int be_cmd_query_fw_cfg(struct be_adapter *adapter, u32 *port_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_query_fw_cfg *req; | 
					
						
							| 
									
										
										
										
											2009-03-11 23:32:03 -07:00
										 |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | 	spin_lock(&adapter->mbox_lock); | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							|  |  |  | 	be_wrb_hdr_prepare(wrb, sizeof(*req), true, 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	be_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							|  |  |  | 		OPCODE_COMMON_QUERY_FIRMWARE_CONFIG, sizeof(*req)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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); | 
					
						
							|  |  |  | 		*port_num = le32_to_cpu(resp->phys_port); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-27 22:52:03 +00:00
										 |  |  | 	spin_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; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	spin_lock(&adapter->mbox_lock); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							|  |  |  | 	be_wrb_hdr_prepare(wrb, sizeof(*req), true, 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	be_cmd_hdr_prepare(req, CMD_SUBSYSTEM_COMMON, | 
					
						
							|  |  |  | 		OPCODE_COMMON_FUNCTION_RESET, sizeof(*req)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	status = be_mbox_notify_wait(adapter); | 
					
						
							| 
									
										
										
										
											2009-08-05 13:05:24 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	spin_unlock(&adapter->mbox_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, | 
					
						
							|  |  |  | 			u32 flash_type, u32 flash_opcode, u32 buf_size) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	struct be_mcc_wrb *wrb; | 
					
						
							| 
									
										
										
										
											2009-09-04 03:12:16 +00:00
										 |  |  | 	struct be_cmd_write_flashrom *req = cmd->va; | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	struct be_sge *sge; | 
					
						
							| 
									
										
										
										
											2009-09-04 03:12:16 +00:00
										 |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	spin_lock_bh(&adapter->mcc_lock); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wrb = wrb_from_mccq(adapter); | 
					
						
							|  |  |  | 	req = embedded_payload(wrb); | 
					
						
							|  |  |  | 	sge = nonembedded_sgl(wrb); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-04 03:12:16 +00:00
										 |  |  | 	be_wrb_hdr_prepare(wrb, cmd->size, false, 1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	be_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, | 
					
						
							|  |  |  | 		OPCODE_COMMON_WRITE_FLASHROM, cmd->size); | 
					
						
							|  |  |  | 	sge->pa_hi = cpu_to_le32(upper_32_bits(cmd->dma)); | 
					
						
							|  |  |  | 	sge->pa_lo = cpu_to_le32(cmd->dma & 0xFFFFFFFF); | 
					
						
							|  |  |  | 	sge->len = cpu_to_le32(cmd->size); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	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); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	status = be_mcc_notify_wait(adapter); | 
					
						
							| 
									
										
										
										
											2009-09-04 03:12:16 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-17 10:30:13 -07:00
										 |  |  | 	spin_unlock_bh(&adapter->mcc_lock); | 
					
						
							| 
									
										
										
										
											2009-09-04 03:12:16 +00:00
										 |  |  | 	return status; | 
					
						
							|  |  |  | } |