Lines Matching full:pointer

10  * @hw: pointer to the HW struct
11 * @module_typeid: module pointer location in words from the NVM beginning
17 * @cd: pointer to command details structure or NULL
52 * @hw: pointer to the HW struct
62 * Returns a status code on failure. Note that the data pointer may be
113 * @hw: pointer to the HW struct
114 * @module_typeid: module pointer location in words from the NVM beginning
120 * @cd: pointer to command details structure or NULL
157 * @hw: pointer to the HW struct
158 * @module_typeid: module pointer location in words from the NVM beginning
159 * @cd: pointer to command details structure or NULL
182 * @hw: pointer to the HW structure
208 * @hw: pointer to the HW structure
223 * @hw: pointer to the HW structure
237 * @hw: pointer to the HW structure
305 * @hw: pointer to the HW structure
347 * @hw: pointer to the HW structure
371 * @hw: pointer to the HW structure
387 * @hw: pointer to the HW structure
410 * @hw: pointer to the HW structure
431 * @hw: pointer to hardware structure
432 * @module_tlv: pointer to module TLV to return
433 * @module_tlv_len: pointer to module TLV length to return
437 * Area (PFA) and returns the TLV pointer and length. The caller can
450 ice_debug(hw, ICE_DBG_INIT, "Preserved Field Array pointer.\n"); in ice_get_pfa_module_tlv()
486 /* Check next TLV, i.e. current TLV pointer + length + 2 words in ice_get_pfa_module_tlv()
497 * @hw: pointer to hardware structure
555 * @hw: pointer to the HW struct
557 * @nvm: pointer to NVM info structure
595 * @hw: pointer to the HW structure
609 * @hw: pointer to the HW struct
687 * @hw: pointer to the HW struct
689 * @orom: pointer to Option ROM info structure
718 * @hw: pointer to the HW structure
732 * @hw: pointer to the HW struct
734 * @netlist: pointer to netlist version info structure
809 * @hw: pointer to the HW struct
810 * @netlist: pointer to netlist version info structure
823 * @hw: pointer to the HW struct
871 * ice_read_sr_pointer - Read the value of a Shadow RAM pointer word
872 * @hw: pointer to the HW structure
874 * @pointer: pointer value read from Shadow RAM
876 * Read the given Shadow RAM word, and convert it to a pointer value specified
877 * in bytes. This function assumes the specified offset is a valid pointer
880 * Each pointer word specifies whether it is stored in word size or 4KB
881 * sector size by using the highest bit. The reported pointer value will be in
884 static int ice_read_sr_pointer(struct ice_hw *hw, u16 offset, u32 *pointer) in ice_read_sr_pointer() argument
893 /* Determine if the pointer is in 4KB or word units */ in ice_read_sr_pointer()
895 *pointer = (value & ~ICE_SR_NVM_PTR_4KB_UNITS) * 4 * 1024; in ice_read_sr_pointer()
897 *pointer = value * 2; in ice_read_sr_pointer()
904 * @hw: pointer to the HW structure
932 * @hw: pointer to the HW struct
936 * pointer and size. These values are then cached into the ice_flash_info
975 ice_debug(hw, ICE_DBG_NVM, "Failed to read NVM bank pointer\n"); in ice_determine_active_flash_banks()
987 ice_debug(hw, ICE_DBG_NVM, "Failed to read OROM bank pointer\n"); in ice_determine_active_flash_banks()
999 ice_debug(hw, ICE_DBG_NVM, "Failed to read Netlist bank pointer\n"); in ice_determine_active_flash_banks()
1014 * @hw: pointer to the HW struct
1078 * @hw: pointer to the HW struct
1109 * @hw: pointer to the HW struct
1148 * @hw: pointer to the HW struct
1163 * @hw: pointer to the HW struct
1167 * @data: pointer to buffer
1169 * @cd: pointer to command details structure or NULL
1198 * @hw: pointer to the HW struct
1199 * @data: pointer to buffer
1202 * @comp_response: a pointer to the response from the 0x070B AQC.
1203 * @comp_response_code: a pointer to the response code from the 0x070B AQC.
1204 * @cd: pointer to command details structure or NULL