mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	Add code for NVM support and get MAC address, complete probe method. Signed-off-by: Sasha Neftin <sasha.neftin@intel.com> Signed-off-by: Alexander Duyck <alexander.h.duyck@intel.com> Tested-by: Aaron Brown <aaron.f.brown@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			430 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			430 B
		
	
	
	
		
			C
		
	
	
	
	
	
/* SPDX-License-Identifier: GPL-2.0 */
 | 
						|
/* Copyright (c)  2018 Intel Corporation */
 | 
						|
 | 
						|
#ifndef _IGC_NVM_H_
 | 
						|
#define _IGC_NVM_H_
 | 
						|
 | 
						|
s32 igc_acquire_nvm(struct igc_hw *hw);
 | 
						|
void igc_release_nvm(struct igc_hw *hw);
 | 
						|
s32 igc_read_mac_addr(struct igc_hw *hw);
 | 
						|
s32 igc_read_nvm_eerd(struct igc_hw *hw, u16 offset, u16 words, u16 *data);
 | 
						|
s32 igc_validate_nvm_checksum(struct igc_hw *hw);
 | 
						|
s32 igc_update_nvm_checksum(struct igc_hw *hw);
 | 
						|
 | 
						|
#endif
 |