mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
ab40561268
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
361 B
C
14 lines
361 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/* Copyright (c) 2018 Intel Corporation */
|
|
|
|
#ifndef _IGC_I225_H_
|
|
#define _IGC_I225_H_
|
|
|
|
s32 igc_acquire_swfw_sync_i225(struct igc_hw *hw, u16 mask);
|
|
void igc_release_swfw_sync_i225(struct igc_hw *hw, u16 mask);
|
|
|
|
s32 igc_init_nvm_params_i225(struct igc_hw *hw);
|
|
bool igc_get_flash_presence_i225(struct igc_hw *hw);
|
|
|
|
#endif
|