forked from mirrors/linux
		
	ice: Add support for unified NVM update flow capability
Extends function parsing response from Discover Device Capability AQC to check if the device supports unified NVM update flow. Signed-off-by: Jacek Naczyk <jacek.naczyk@intel.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
		
							parent
							
								
									b8265621f4
								
							
						
					
					
						commit
						de9b277ee0
					
				
					 3 changed files with 11 additions and 0 deletions
				
			
		| 
						 | 
					@ -109,6 +109,7 @@ struct ice_aqc_list_caps_elem {
 | 
				
			||||||
#define ICE_AQC_CAPS_MSIX				0x0043
 | 
					#define ICE_AQC_CAPS_MSIX				0x0043
 | 
				
			||||||
#define ICE_AQC_CAPS_FD					0x0045
 | 
					#define ICE_AQC_CAPS_FD					0x0045
 | 
				
			||||||
#define ICE_AQC_CAPS_MAX_MTU				0x0047
 | 
					#define ICE_AQC_CAPS_MAX_MTU				0x0047
 | 
				
			||||||
 | 
					#define ICE_AQC_CAPS_NVM_MGMT				0x0080
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	u8 major_ver;
 | 
						u8 major_ver;
 | 
				
			||||||
	u8 minor_ver;
 | 
						u8 minor_ver;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1857,6 +1857,13 @@ ice_parse_common_caps(struct ice_hw *hw, struct ice_hw_common_caps *caps,
 | 
				
			||||||
			  "%s: msix_vector_first_id = %d\n", prefix,
 | 
								  "%s: msix_vector_first_id = %d\n", prefix,
 | 
				
			||||||
			  caps->msix_vector_first_id);
 | 
								  caps->msix_vector_first_id);
 | 
				
			||||||
		break;
 | 
							break;
 | 
				
			||||||
 | 
						case ICE_AQC_CAPS_NVM_MGMT:
 | 
				
			||||||
 | 
							caps->nvm_unified_update =
 | 
				
			||||||
 | 
								(number & ICE_NVM_MGMT_UNIFIED_UPD_SUPPORT) ?
 | 
				
			||||||
 | 
								true : false;
 | 
				
			||||||
 | 
							ice_debug(hw, ICE_DBG_INIT, "%s: nvm_unified_update = %d\n", prefix,
 | 
				
			||||||
 | 
								  caps->nvm_unified_update);
 | 
				
			||||||
 | 
							break;
 | 
				
			||||||
	case ICE_AQC_CAPS_MAX_MTU:
 | 
						case ICE_AQC_CAPS_MAX_MTU:
 | 
				
			||||||
		caps->max_mtu = number;
 | 
							caps->max_mtu = number;
 | 
				
			||||||
		ice_debug(hw, ICE_DBG_INIT, "%s: max_mtu = %d\n",
 | 
							ice_debug(hw, ICE_DBG_INIT, "%s: max_mtu = %d\n",
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -244,6 +244,9 @@ struct ice_hw_common_caps {
 | 
				
			||||||
	u8 rss_table_entry_width;	/* RSS Entry width in bits */
 | 
						u8 rss_table_entry_width;	/* RSS Entry width in bits */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	u8 dcb;
 | 
						u8 dcb;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						bool nvm_unified_update;
 | 
				
			||||||
 | 
					#define ICE_NVM_MGMT_UNIFIED_UPD_SUPPORT	BIT(3)
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/* Function specific capabilities */
 | 
					/* Function specific capabilities */
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue