cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

nvm.h (830B)


      1/* SPDX-License-Identifier: GPL-2.0 */
      2/* Copyright(c) 1999 - 2018 Intel Corporation. */
      3
      4#ifndef _E1000E_NVM_H_
      5#define _E1000E_NVM_H_
      6
      7s32 e1000e_acquire_nvm(struct e1000_hw *hw);
      8
      9s32 e1000e_poll_eerd_eewr_done(struct e1000_hw *hw, int ee_reg);
     10s32 e1000_read_mac_addr_generic(struct e1000_hw *hw);
     11s32 e1000_read_pba_string_generic(struct e1000_hw *hw, u8 *pba_num,
     12				  u32 pba_num_size);
     13s32 e1000e_read_nvm_eerd(struct e1000_hw *hw, u16 offset, u16 words, u16 *data);
     14s32 e1000e_valid_led_default(struct e1000_hw *hw, u16 *data);
     15s32 e1000e_validate_nvm_checksum_generic(struct e1000_hw *hw);
     16s32 e1000e_write_nvm_spi(struct e1000_hw *hw, u16 offset, u16 words, u16 *data);
     17s32 e1000e_update_nvm_checksum_generic(struct e1000_hw *hw);
     18void e1000e_release_nvm(struct e1000_hw *hw);
     19
     20#define E1000_STM_OPCODE	0xDB00
     21
     22#endif