Lines Matching refs: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
51 * @hw: pointer to the HW struct
61 * Returns a status code on failure. Note that the data pointer may be
112 * @hw: pointer to the HW struct
113 * @module_typeid: module pointer location in words from the NVM beginning
119 * @cd: pointer to command details structure or NULL
156 * @hw: pointer to the HW struct
157 * @module_typeid: module pointer location in words from the NVM beginning
158 * @cd: pointer to command details structure or NULL
181 * @hw: pointer to the HW structure
207 * @hw: pointer to the HW structure
222 * @hw: pointer to the HW structure
236 * @hw: pointer to the HW structure
304 * @hw: pointer to the HW structure
346 * @hw: pointer to the HW structure
370 * @hw: pointer to the HW structure
400 * @hw: pointer to the HW structure
423 * @hw: pointer to the HW structure
444 * @hw: pointer to hardware structure
445 * @module_tlv: pointer to module TLV to return
446 * @module_tlv_len: pointer to module TLV length to return
450 * Area (PFA) and returns the TLV pointer and length. The caller can
462 ice_debug(hw, ICE_DBG_INIT, "Preserved Field Array pointer.\n");
524 * @hw: pointer to hardware structure
582 * @hw: pointer to the HW struct
584 * @nvm: pointer to NVM info structure
622 * @hw: pointer to the HW structure
636 * @hw: pointer to the HW struct
714 * @hw: pointer to the HW struct
716 * @orom: pointer to Option ROM info structure
745 * @hw: pointer to the HW structure
759 * @hw: pointer to the HW struct
761 * @netlist: pointer to netlist version info structure
836 * @hw: pointer to the HW struct
837 * @netlist: pointer to netlist version info structure
850 * @hw: pointer to the HW struct
898 * ice_read_sr_pointer - Read the value of a Shadow RAM pointer word
899 * @hw: pointer to the HW structure
901 * @pointer: pointer value read from Shadow RAM
903 * Read the given Shadow RAM word, and convert it to a pointer value specified
904 * in bytes. This function assumes the specified offset is a valid pointer
907 * Each pointer word specifies whether it is stored in word size or 4KB
908 * sector size by using the highest bit. The reported pointer value will be in
911 static int ice_read_sr_pointer(struct ice_hw *hw, u16 offset, u32 *pointer)
920 /* Determine if the pointer is in 4KB or word units */
922 *pointer = (value & ~ICE_SR_NVM_PTR_4KB_UNITS) * 4 * 1024;
924 *pointer = value * 2;
931 * @hw: pointer to the HW structure
959 * @hw: pointer to the HW struct
963 * pointer and size. These values are then cached into the ice_flash_info
1003 ice_debug(hw, ICE_DBG_NVM, "Failed to read NVM bank pointer\n");
1015 ice_debug(hw, ICE_DBG_NVM, "Failed to read OROM bank pointer\n");
1027 ice_debug(hw, ICE_DBG_NVM, "Failed to read Netlist bank pointer\n");
1042 * @hw: pointer to the HW struct
1080 * @hw: pointer to the HW struct
1108 * @hw: pointer to the HW struct
1178 * @hw: pointer to the HW struct
1209 * @hw: pointer to the HW struct
1248 * @hw: pointer to the HW struct
1263 * @hw: pointer to the HW struct
1267 * @data: pointer to buffer
1269 * @cd: pointer to command details structure or NULL
1298 * @hw: pointer to the HW struct
1299 * @data: pointer to buffer
1302 * @comp_response: a pointer to the response from the 0x070B AQC.
1303 * @comp_response_code: a pointer to the response code from the 0x070B AQC.
1304 * @cd: pointer to command details structure or NULL