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/e1000/e1000_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   SPDX-License-Identifier: BSD-3-Clause
    3 
    4   Copyright (c) 2001-2020, Intel Corporation
    5   All rights reserved.
    6 
    7   Redistribution and use in source and binary forms, with or without
    8   modification, are permitted provided that the following conditions are met:
    9 
   10    1. Redistributions of source code must retain the above copyright notice,
   11       this list of conditions and the following disclaimer.
   12 
   13    2. Redistributions in binary form must reproduce the above copyright
   14       notice, this list of conditions and the following disclaimer in the
   15       documentation and/or other materials provided with the distribution.
   16 
   17    3. Neither the name of the Intel Corporation nor the names of its
   18       contributors may be used to endorse or promote products derived from
   19       this software without specific prior written permission.
   20 
   21   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   22   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   23   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   24   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
   25   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   26   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   27   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   28   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   29   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   30   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   31   POSSIBILITY OF SUCH DAMAGE.
   32 
   33 ******************************************************************************/
   34 /*$FreeBSD$*/
   35 
   36 #ifndef _E1000_NVM_H_
   37 #define _E1000_NVM_H_
   38 
   39 struct e1000_pba {
   40         u16 word[2];
   41         u16 *pba_block;
   42 };
   43 
   44 struct e1000_fw_version {
   45         u32 etrack_id;
   46         u16 eep_major;
   47         u16 eep_minor;
   48         u16 eep_build;
   49 
   50         u8 invm_major;
   51         u8 invm_minor;
   52         u8 invm_img_type;
   53 
   54         bool or_valid;
   55         u16 or_major;
   56         u16 or_build;
   57         u16 or_patch;
   58 };
   59 
   60 
   61 void e1000_init_nvm_ops_generic(struct e1000_hw *hw);
   62 s32  e1000_null_read_nvm(struct e1000_hw *hw, u16 a, u16 b, u16 *c);
   63 void e1000_null_nvm_generic(struct e1000_hw *hw);
   64 s32  e1000_null_led_default(struct e1000_hw *hw, u16 *data);
   65 s32  e1000_null_write_nvm(struct e1000_hw *hw, u16 a, u16 b, u16 *c);
   66 s32  e1000_acquire_nvm_generic(struct e1000_hw *hw);
   67 
   68 s32  e1000_poll_eerd_eewr_done(struct e1000_hw *hw, int ee_reg);
   69 s32  e1000_read_mac_addr_generic(struct e1000_hw *hw);
   70 s32  e1000_read_pba_num_generic(struct e1000_hw *hw, u32 *pba_num);
   71 s32  e1000_read_pba_string_generic(struct e1000_hw *hw, u8 *pba_num,
   72                                    u32 pba_num_size);
   73 s32  e1000_read_pba_length_generic(struct e1000_hw *hw, u32 *pba_num_size);
   74 s32 e1000_read_pba_raw(struct e1000_hw *hw, u16 *eeprom_buf,
   75                        u32 eeprom_buf_size, u16 max_pba_block_size,
   76                        struct e1000_pba *pba);
   77 s32 e1000_write_pba_raw(struct e1000_hw *hw, u16 *eeprom_buf,
   78                         u32 eeprom_buf_size, struct e1000_pba *pba);
   79 s32 e1000_get_pba_block_size(struct e1000_hw *hw, u16 *eeprom_buf,
   80                              u32 eeprom_buf_size, u16 *pba_block_size);
   81 s32  e1000_read_nvm_spi(struct e1000_hw *hw, u16 offset, u16 words, u16 *data);
   82 s32  e1000_read_nvm_microwire(struct e1000_hw *hw, u16 offset,
   83                               u16 words, u16 *data);
   84 s32  e1000_read_nvm_eerd(struct e1000_hw *hw, u16 offset, u16 words,
   85                          u16 *data);
   86 s32  e1000_valid_led_default_generic(struct e1000_hw *hw, u16 *data);
   87 s32  e1000_validate_nvm_checksum_generic(struct e1000_hw *hw);
   88 s32  e1000_write_nvm_microwire(struct e1000_hw *hw, u16 offset,
   89                                u16 words, u16 *data);
   90 s32  e1000_write_nvm_spi(struct e1000_hw *hw, u16 offset, u16 words,
   91                          u16 *data);
   92 s32  e1000_update_nvm_checksum_generic(struct e1000_hw *hw);
   93 void e1000_stop_nvm(struct e1000_hw *hw);
   94 void e1000_release_nvm_generic(struct e1000_hw *hw);
   95 void e1000_get_fw_version(struct e1000_hw *hw,
   96                           struct e1000_fw_version *fw_vers);
   97 
   98 #define E1000_STM_OPCODE        0xDB00
   99 
  100 #endif

Cache object: 9e039c3bece901072d0e125ef5fb4041


[ 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.