Home
last modified time | relevance | path

Searched refs:minsrevs (Results 1 – 4 of 4) sorted by relevance

/freebsd/sys/dev/ice/
H A Dice_nvm.c1802 * @minsrevs: structure to store NVM and OROM minsrev values in ice_get_nvm_minsrevs()
1808 ice_get_nvm_minsrevs(struct ice_hw *hw, struct ice_minsrev_info *minsrevs) in ice_get_nvm_minsrevs()
1837 minsrevs->nvm = minsrev_h << 16 | minsrev_l; in ice_get_nvm_minsrevs()
1838 minsrevs->nvm_valid = true; in ice_get_nvm_minsrevs()
1848 minsrevs->orom = minsrev_h << 16 | minsrev_l;
1849 minsrevs->orom_valid = true;
1858 * @minsrevs: minimum security revision information in ice_update_nvm_minsrevs()
1861 * area of the flash. Reads the minsrevs->nvm_valid and minsrevs->orom_valid in ice_update_nvm_minsrevs()
1866 ice_update_nvm_minsrevs(struct ice_hw *hw, struct ice_minsrev_info *minsrevs) in ice_update_nvm_minsrevs()
1798 ice_get_nvm_minsrevs(struct ice_hw * hw,struct ice_minsrev_info * minsrevs) ice_get_nvm_minsrevs() argument
1856 ice_update_nvm_minsrevs(struct ice_hw * hw,struct ice_minsrev_info * minsrevs) ice_update_nvm_minsrevs() argument
[all...]
H A Dice_nvm.h126 ice_get_nvm_minsrevs(struct ice_hw *hw, struct ice_minsrev_info *minsrevs);
128 ice_update_nvm_minsrevs(struct ice_hw *hw, struct ice_minsrev_info *minsrevs);
/freebsd/sys/dev/ixgbe/
H A Dixgbe_e610.c2662 struct ixgbe_minsrev_info *minsrevs) in ixgbe_get_nvm_minsrevs() argument
2688 minsrevs->nvm = minsrev_h << 16 | minsrev_l; in ixgbe_get_nvm_minsrevs()
2689 minsrevs->nvm_valid = true; in ixgbe_get_nvm_minsrevs()
2697 minsrevs->orom = minsrev_h << 16 | minsrev_l; in ixgbe_get_nvm_minsrevs()
2698 minsrevs->orom_valid = true; in ixgbe_get_nvm_minsrevs()
2717 struct ixgbe_minsrev_info *minsrevs) in ixgbe_update_nvm_minsrevs() argument
2722 if (!minsrevs->nvm_valid && !minsrevs->orom_valid) { in ixgbe_update_nvm_minsrevs()
2736 if (minsrevs->nvm_valid) { in ixgbe_update_nvm_minsrevs()
2737 data.nvm_minsrev_l = IXGBE_CPU_TO_LE16(minsrevs->nvm & 0xFFFF); in ixgbe_update_nvm_minsrevs()
2738 data.nvm_minsrev_h = IXGBE_CPU_TO_LE16(minsrevs->nvm >> 16); in ixgbe_update_nvm_minsrevs()
[all …]
H A Dixgbe_e610.h132 s32 ixgbe_get_nvm_minsrevs(struct ixgbe_hw *hw, struct ixgbe_minsrev_info *minsrevs);
133 s32 ixgbe_update_nvm_minsrevs(struct ixgbe_hw *hw, struct ixgbe_minsrev_info *minsrevs);