The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/dev/igc/igc_nvm.h

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /*-
    2  * Copyright 2021 Intel Corp
    3  * Copyright 2021 Rubicon Communications, LLC (Netgate)
    4  * SPDX-License-Identifier: BSD-3-Clause
    5  *
    6  * $FreeBSD$
    7  */
    8 
    9 #ifndef _IGC_NVM_H_
   10 #define _IGC_NVM_H_
   11 
   12 void igc_init_nvm_ops_generic(struct igc_hw *hw);
   13 s32  igc_null_read_nvm(struct igc_hw *hw, u16 a, u16 b, u16 *c);
   14 void igc_null_nvm_generic(struct igc_hw *hw);
   15 s32  igc_null_led_default(struct igc_hw *hw, u16 *data);
   16 s32  igc_null_write_nvm(struct igc_hw *hw, u16 a, u16 b, u16 *c);
   17 s32  igc_acquire_nvm_generic(struct igc_hw *hw);
   18 
   19 s32  igc_poll_eerd_eewr_done(struct igc_hw *hw, int ee_reg);
   20 s32  igc_read_mac_addr_generic(struct igc_hw *hw);
   21 s32  igc_read_pba_string_generic(struct igc_hw *hw, u8 *pba_num,
   22                                    u32 pba_num_size);
   23 s32  igc_read_nvm_eerd(struct igc_hw *hw, u16 offset, u16 words,
   24                          u16 *data);
   25 s32  igc_valid_led_default_generic(struct igc_hw *hw, u16 *data);
   26 s32  igc_validate_nvm_checksum_generic(struct igc_hw *hw);
   27 s32  igc_write_nvm_spi(struct igc_hw *hw, u16 offset, u16 words,
   28                          u16 *data);
   29 s32  igc_update_nvm_checksum_generic(struct igc_hw *hw);
   30 void igc_release_nvm_generic(struct igc_hw *hw);
   31 
   32 #endif

Cache object: 39c56ee1c7dc262d9e99958fa5405f81


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.